]> git.lizzy.rs Git - minetest.git/blob - doc/lua_api.txt
e017df88069064a3360939abdc28afddc505c052
[minetest.git] / doc / lua_api.txt
1 Minetest Lua Modding API Reference
2 ==================================
3
4 * More information at <http://www.minetest.net/>
5 * Developer Wiki: <http://dev.minetest.net/>
6 * (Unofficial) Minetest Modding Book by rubenwardy: <https://rubenwardy.com/minetest_modding_book/>
7
8 Introduction
9 ------------
10
11 Content and functionality can be added to Minetest using Lua scripting
12 in run-time loaded mods.
13
14 A mod is a self-contained bunch of scripts, textures and other related
15 things, which is loaded by and interfaces with Minetest.
16
17 Mods are contained and ran solely on the server side. Definitions and media
18 files are automatically transferred to the client.
19
20 If you see a deficiency in the API, feel free to attempt to add the
21 functionality in the engine and API, and to document it here.
22
23 Programming in Lua
24 ------------------
25
26 If you have any difficulty in understanding this, please read
27 [Programming in Lua](http://www.lua.org/pil/).
28
29 Startup
30 -------
31
32 Mods are loaded during server startup from the mod load paths by running
33 the `init.lua` scripts in a shared environment.
34
35 Paths
36 -----
37
38 Minetest keeps and looks for files mostly in two paths. `path_share` or `path_user`.
39
40 `path_share` contains possibly read-only content for the engine (incl. games and mods).
41 `path_user` contains mods or games installed by the user but also the users
42 worlds or settings.
43
44 With a local build (`RUN_IN_PLACE=1`) `path_share` and `path_user` both point to
45 the build directory. For system-wide builds on Linux the share path is usually at
46 `/usr/share/minetest` while the user path resides in `.minetest` in the home directory.
47 Paths on other operating systems will differ.
48
49 Games
50 =====
51
52 Games are looked up from:
53
54 * `$path_share/games/<gameid>/`
55 * `$path_user/games/<gameid>/`
56
57 Where `<gameid>` is unique to each game.
58
59 The game directory can contain the following files:
60
61 * `game.conf`, with the following keys:
62     * `title`: Required, a human-readable title to address the game, e.g. `title = Minetest Game`.
63     * `name`: (Deprecated) same as title.
64     * `description`: Short description to be shown in the content tab
65     * `allowed_mapgens = <comma-separated mapgens>`
66       e.g. `allowed_mapgens = v5,v6,flat`
67       Mapgens not in this list are removed from the list of mapgens for the
68       game.
69       If not specified, all mapgens are allowed.
70     * `disallowed_mapgens = <comma-separated mapgens>`
71       e.g. `disallowed_mapgens = v5,v6,flat`
72       These mapgens are removed from the list of mapgens for the game.
73       When both `allowed_mapgens` and `disallowed_mapgens` are
74       specified, `allowed_mapgens` is applied before
75       `disallowed_mapgens`.
76     * `disallowed_mapgen_settings= <comma-separated mapgen settings>`
77       e.g. `disallowed_mapgen_settings = mgv5_spflags`
78       These mapgen settings are hidden for this game in the world creation
79       dialog and game start menu. Add `seed` to hide the seed input field.
80     * `disabled_settings = <comma-separated settings>`
81       e.g. `disabled_settings = enable_damage, creative_mode`
82       These settings are hidden for this game in the "Start game" tab
83       and will be initialized as `false` when the game is started.
84       Prepend a setting name with an exclamation mark to initialize it to `true`
85       (this does not work for `enable_server`).
86       Only these settings are supported:
87           `enable_damage`, `creative_mode`, `enable_server`.
88     * `map_persistent`: Specifies whether newly created worlds should use
89       a persistent map backend. Defaults to `true` (= "sqlite3")
90     * `author`: The author of the game. It only appears when downloaded from
91                 ContentDB.
92     * `release`: Ignore this: Should only ever be set by ContentDB, as it is
93                  an internal ID used to track versions.
94 * `minetest.conf`:
95   Used to set default settings when running this game.
96 * `settingtypes.txt`:
97   In the same format as the one in builtin.
98   This settingtypes.txt will be parsed by the menu and the settings will be
99   displayed in the "Games" category in the advanced settings tab.
100 * If the game contains a folder called `textures` the server will load it as a
101   texturepack, overriding mod textures.
102   Any server texturepack will override mod textures and the game texturepack.
103
104 Menu images
105 -----------
106
107 Games can provide custom main menu images. They are put inside a `menu`
108 directory inside the game directory.
109
110 The images are named `$identifier.png`, where `$identifier` is one of
111 `overlay`, `background`, `footer`, `header`.
112 If you want to specify multiple images for one identifier, add additional
113 images named like `$identifier.$n.png`, with an ascending number $n starting
114 with 1, and a random image will be chosen from the provided ones.
115
116 Menu music
117 -----------
118
119 Games can provide custom main menu music. They are put inside a `menu`
120 directory inside the game directory.
121
122 The music files are named `theme.ogg`.
123 If you want to specify multiple music files for one game, add additional
124 images named like `theme.$n.ogg`, with an ascending number $n starting
125 with 1 (max 10), and a random music file will be chosen from the provided ones.
126
127 Mods
128 ====
129
130 Mod load path
131 -------------
132
133 Paths are relative to the directories listed in the [Paths] section above.
134
135 * `games/<gameid>/mods/`
136 * `mods/`
137 * `worlds/<worldname>/worldmods/`
138
139 World-specific games
140 --------------------
141
142 It is possible to include a game in a world; in this case, no mods or
143 games are loaded or checked from anywhere else.
144
145 This is useful for e.g. adventure worlds and happens if the `<worldname>/game/`
146 directory exists.
147
148 Mods should then be placed in `<worldname>/game/mods/`.
149
150 Modpacks
151 --------
152
153 Mods can be put in a subdirectory, if the parent directory, which otherwise
154 should be a mod, contains a file named `modpack.conf`.
155 The file is a key-value store of modpack details.
156
157 * `name`: The modpack name. Allows Minetest to determine the modpack name even
158           if the folder is wrongly named.
159 * `description`: Description of mod to be shown in the Mods tab of the main
160                  menu.
161 * `author`: The author of the modpack. It only appears when downloaded from
162             ContentDB.
163 * `release`: Ignore this: Should only ever be set by ContentDB, as it is an
164              internal ID used to track versions.
165 * `title`: A human-readable title to address the modpack.
166
167 Note: to support 0.4.x, please also create an empty modpack.txt file.
168
169 Mod directory structure
170 -----------------------
171
172     mods
173     ├── modname
174     │   ├── mod.conf
175     │   ├── screenshot.png
176     │   ├── settingtypes.txt
177     │   ├── init.lua
178     │   ├── models
179     │   ├── textures
180     │   │   ├── modname_stuff.png
181     │   │   ├── modname_stuff_normal.png
182     │   │   ├── modname_something_else.png
183     │   │   ├── subfolder_foo
184     │   │   │   ├── modname_more_stuff.png
185     │   │   │   └── another_subfolder
186     │   │   └── bar_subfolder
187     │   ├── sounds
188     │   ├── media
189     │   ├── locale
190     │   └── <custom data>
191     └── another
192
193 ### modname
194
195 The location of this directory can be fetched by using
196 `minetest.get_modpath(modname)`.
197
198 ### mod.conf
199
200 A `Settings` file that provides meta information about the mod.
201
202 * `name`: The mod name. Allows Minetest to determine the mod name even if the
203           folder is wrongly named.
204 * `description`: Description of mod to be shown in the Mods tab of the main
205                  menu.
206 * `depends`: A comma separated list of dependencies. These are mods that must be
207              loaded before this mod.
208 * `optional_depends`: A comma separated list of optional dependencies.
209                       Like a dependency, but no error if the mod doesn't exist.
210 * `author`: The author of the mod. It only appears when downloaded from
211             ContentDB.
212 * `release`: Ignore this: Should only ever be set by ContentDB, as it is an
213              internal ID used to track versions.
214 * `title`: A human-readable title to address the mod.
215
216 ### `screenshot.png`
217
218 A screenshot shown in the mod manager within the main menu. It should
219 have an aspect ratio of 3:2 and a minimum size of 300×200 pixels.
220
221 ### `depends.txt`
222
223 **Deprecated:** you should use mod.conf instead.
224
225 This file is used if there are no dependencies in mod.conf.
226
227 List of mods that have to be loaded before loading this mod.
228
229 A single line contains a single modname.
230
231 Optional dependencies can be defined by appending a question mark
232 to a single modname. This means that if the specified mod
233 is missing, it does not prevent this mod from being loaded.
234
235 ### `description.txt`
236
237 **Deprecated:** you should use mod.conf instead.
238
239 This file is used if there is no description in mod.conf.
240
241 A file containing a description to be shown in the Mods tab of the main menu.
242
243 ### `settingtypes.txt`
244
245 The format is documented in `builtin/settingtypes.txt`.
246 It is parsed by the main menu settings dialogue to list mod-specific
247 settings in the "Mods" category.
248
249 ### `init.lua`
250
251 The main Lua script. Running this script should register everything it
252 wants to register. Subsequent execution depends on minetest calling the
253 registered callbacks.
254
255 `minetest.settings` can be used to read custom or existing settings at load
256 time, if necessary. (See [`Settings`])
257
258 ### `textures`, `sounds`, `media`, `models`, `locale`
259
260 Media files (textures, sounds, whatever) that will be transferred to the
261 client and will be available for use by the mod and translation files for
262 the clients (see [Translations]).
263
264 It is suggested to use the folders for the purpose they are thought for,
265 eg. put textures into `textures`, translation files into `locale`,
266 models for entities or meshnodes into `models` et cetera.
267
268 These folders and subfolders can contain subfolders.
269 Subfolders with names starting with `_` or `.` are ignored.
270 If a subfolder contains a media file with the same name as a media file
271 in one of its parents, the parent's file is used.
272
273 Although it is discouraged, a mod can overwrite a media file of any mod that it
274 depends on by supplying a file with an equal name.
275
276 Naming conventions
277 ------------------
278
279 Registered names should generally be in this format:
280
281     modname:<whatever>
282
283 `<whatever>` can have these characters:
284
285     a-zA-Z0-9_
286
287 This is to prevent conflicting names from corrupting maps and is
288 enforced by the mod loader.
289
290 Registered names can be overridden by prefixing the name with `:`. This can
291 be used for overriding the registrations of some other mod.
292
293 The `:` prefix can also be used for maintaining backwards compatibility.
294
295 ### Example
296
297 In the mod `experimental`, there is the ideal item/node/entity name `tnt`.
298 So the name should be `experimental:tnt`.
299
300 Any mod can redefine `experimental:tnt` by using the name
301
302     :experimental:tnt
303
304 when registering it. For this to work correctly, that mod must have
305 `experimental` as a dependency.
306
307
308
309
310 Aliases
311 =======
312
313 Aliases of itemnames can be added by using
314 `minetest.register_alias(alias, original_name)` or
315 `minetest.register_alias_force(alias, original_name)`.
316
317 This adds an alias `alias` for the item called `original_name`.
318 From now on, you can use `alias` to refer to the item `original_name`.
319
320 The only difference between `minetest.register_alias` and
321 `minetest.register_alias_force` is that if an item named `alias` already exists,
322 `minetest.register_alias` will do nothing while
323 `minetest.register_alias_force` will unregister it.
324
325 This can be used for maintaining backwards compatibility.
326
327 This can also set quick access names for things, e.g. if
328 you have an item called `epiclylongmodname:stuff`, you could do
329
330     minetest.register_alias("stuff", "epiclylongmodname:stuff")
331
332 and be able to use `/giveme stuff`.
333
334 Mapgen aliases
335 --------------
336
337 In a game, a certain number of these must be set to tell core mapgens which
338 of the game's nodes are to be used for core mapgen generation. For example:
339
340     minetest.register_alias("mapgen_stone", "default:stone")
341
342 ### Aliases for non-V6 mapgens
343
344 #### Essential aliases
345
346 * `mapgen_stone`
347 * `mapgen_water_source`
348 * `mapgen_river_water_source`
349
350 `mapgen_river_water_source` is required for mapgens with sloping rivers where
351 it is necessary to have a river liquid node with a short `liquid_range` and
352 `liquid_renewable = false` to avoid flooding.
353
354 #### Optional aliases
355
356 * `mapgen_lava_source`
357
358 Fallback lava node used if cave liquids are not defined in biome definitions.
359 Deprecated, define cave liquids in biome definitions instead.
360
361 * `mapgen_cobble`
362
363 Fallback node used if dungeon nodes are not defined in biome definitions.
364 Deprecated, define dungeon nodes in biome definitions instead.
365
366 ### Aliases for Mapgen V6
367
368 #### Essential
369
370 * `mapgen_stone`
371 * `mapgen_water_source`
372 * `mapgen_lava_source`
373 * `mapgen_dirt`
374 * `mapgen_dirt_with_grass`
375 * `mapgen_sand`
376
377 * `mapgen_tree`
378 * `mapgen_leaves`
379 * `mapgen_apple`
380
381 * `mapgen_cobble`
382
383 #### Optional
384
385 * `mapgen_gravel` (falls back to stone)
386 * `mapgen_desert_stone` (falls back to stone)
387 * `mapgen_desert_sand` (falls back to sand)
388 * `mapgen_dirt_with_snow` (falls back to dirt_with_grass)
389 * `mapgen_snowblock` (falls back to dirt_with_grass)
390 * `mapgen_snow` (not placed if missing)
391 * `mapgen_ice` (falls back to water_source)
392
393 * `mapgen_jungletree` (falls back to tree)
394 * `mapgen_jungleleaves` (falls back to leaves)
395 * `mapgen_junglegrass` (not placed if missing)
396 * `mapgen_pine_tree` (falls back to tree)
397 * `mapgen_pine_needles` (falls back to leaves)
398
399 * `mapgen_stair_cobble` (falls back to cobble)
400 * `mapgen_mossycobble` (falls back to cobble)
401 * `mapgen_stair_desert_stone` (falls back to desert_stone)
402
403 ### Setting the node used in Mapgen Singlenode
404
405 By default the world is filled with air nodes. To set a different node use e.g.:
406
407     minetest.register_alias("mapgen_singlenode", "default:stone")
408
409
410
411
412 Textures
413 ========
414
415 Mods should generally prefix their textures with `modname_`, e.g. given
416 the mod name `foomod`, a texture could be called:
417
418     foomod_foothing.png
419
420 Textures are referred to by their complete name, or alternatively by
421 stripping out the file extension:
422
423 * e.g. `foomod_foothing.png`
424 * e.g. `foomod_foothing`
425
426 Supported texture formats are PNG (`.png`), JPEG (`.jpg`), Bitmap (`.bmp`)
427 and Targa (`.tga`).
428 Since better alternatives exist, the latter two may be removed in the future.
429
430 Texture modifiers
431 -----------------
432
433 There are various texture modifiers that can be used
434 to let the client generate textures on-the-fly.
435 The modifiers are applied directly in sRGB colorspace,
436 i.e. without gamma-correction.
437
438 ### Texture overlaying
439
440 Textures can be overlaid by putting a `^` between them.
441
442 Example:
443
444     default_dirt.png^default_grass_side.png
445
446 `default_grass_side.png` is overlaid over `default_dirt.png`.
447 The texture with the lower resolution will be automatically upscaled to
448 the higher resolution texture.
449
450 ### Texture grouping
451
452 Textures can be grouped together by enclosing them in `(` and `)`.
453
454 Example: `cobble.png^(thing1.png^thing2.png)`
455
456 A texture for `thing1.png^thing2.png` is created and the resulting
457 texture is overlaid on top of `cobble.png`.
458
459 ### Escaping
460
461 Modifiers that accept texture names (e.g. `[combine`) accept escaping to allow
462 passing complex texture names as arguments. Escaping is done with backslash and
463 is required for `^` and `:`.
464
465 Example: `cobble.png^[lowpart:50:color.png\^[mask\:trans.png`
466
467 The lower 50 percent of `color.png^[mask:trans.png` are overlaid
468 on top of `cobble.png`.
469
470 ### Advanced texture modifiers
471
472 #### Crack
473
474 * `[crack:<n>:<p>`
475 * `[cracko:<n>:<p>`
476 * `[crack:<t>:<n>:<p>`
477 * `[cracko:<t>:<n>:<p>`
478
479 Parameters:
480
481 * `<t>`: tile count (in each direction)
482 * `<n>`: animation frame count
483 * `<p>`: current animation frame
484
485 Draw a step of the crack animation on the texture.
486 `crack` draws it normally, while `cracko` lays it over, keeping transparent
487 pixels intact.
488
489 Example:
490
491     default_cobble.png^[crack:10:1
492
493 #### `[combine:<w>x<h>:<x1>,<y1>=<file1>:<x2>,<y2>=<file2>:...`
494
495 * `<w>`: width
496 * `<h>`: height
497 * `<x>`: x position
498 * `<y>`: y position
499 * `<file>`: texture to combine
500
501 Creates a texture of size `<w>` times `<h>` and blits the listed files to their
502 specified coordinates.
503
504 Example:
505
506     [combine:16x32:0,0=default_cobble.png:0,16=default_wood.png
507
508 #### `[resize:<w>x<h>`
509
510 Resizes the texture to the given dimensions.
511
512 Example:
513
514     default_sandstone.png^[resize:16x16
515
516 #### `[opacity:<r>`
517
518 Makes the base image transparent according to the given ratio.
519
520 `r` must be between 0 (transparent) and 255 (opaque).
521
522 Example:
523
524     default_sandstone.png^[opacity:127
525
526 #### `[invert:<mode>`
527
528 Inverts the given channels of the base image.
529 Mode may contain the characters "r", "g", "b", "a".
530 Only the channels that are mentioned in the mode string will be inverted.
531
532 Example:
533
534     default_apple.png^[invert:rgb
535
536 #### `[brighten`
537
538 Brightens the texture.
539
540 Example:
541
542     tnt_tnt_side.png^[brighten
543
544 #### `[noalpha`
545
546 Makes the texture completely opaque.
547
548 Example:
549
550     default_leaves.png^[noalpha
551
552 #### `[makealpha:<r>,<g>,<b>`
553
554 Convert one color to transparency.
555
556 Example:
557
558     default_cobble.png^[makealpha:128,128,128
559
560 #### `[transform<t>`
561
562 * `<t>`: transformation(s) to apply
563
564 Rotates and/or flips the image.
565
566 `<t>` can be a number (between 0 and 7) or a transform name.
567 Rotations are counter-clockwise.
568
569     0  I      identity
570     1  R90    rotate by 90 degrees
571     2  R180   rotate by 180 degrees
572     3  R270   rotate by 270 degrees
573     4  FX     flip X
574     5  FXR90  flip X then rotate by 90 degrees
575     6  FY     flip Y
576     7  FYR90  flip Y then rotate by 90 degrees
577
578 Example:
579
580     default_stone.png^[transformFXR90
581
582 #### `[inventorycube{<top>{<left>{<right>`
583
584 Escaping does not apply here and `^` is replaced by `&` in texture names
585 instead.
586
587 Create an inventory cube texture using the side textures.
588
589 Example:
590
591     [inventorycube{grass.png{dirt.png&grass_side.png{dirt.png&grass_side.png
592
593 Creates an inventorycube with `grass.png`, `dirt.png^grass_side.png` and
594 `dirt.png^grass_side.png` textures
595
596 #### `[lowpart:<percent>:<file>`
597
598 Blit the lower `<percent>`% part of `<file>` on the texture.
599
600 Example:
601
602     base.png^[lowpart:25:overlay.png
603
604 #### `[verticalframe:<t>:<n>`
605
606 * `<t>`: animation frame count
607 * `<n>`: current animation frame
608
609 Crops the texture to a frame of a vertical animation.
610
611 Example:
612
613     default_torch_animated.png^[verticalframe:16:8
614
615 #### `[mask:<file>`
616
617 Apply a mask to the base image.
618
619 The mask is applied using binary AND.
620
621 #### `[sheet:<w>x<h>:<x>,<y>`
622
623 Retrieves a tile at position x,y from the base image
624 which it assumes to be a tilesheet with dimensions w,h.
625
626 #### `[colorize:<color>:<ratio>`
627
628 Colorize the textures with the given color.
629 `<color>` is specified as a `ColorString`.
630 `<ratio>` is an int ranging from 0 to 255 or the word "`alpha`".  If
631 it is an int, then it specifies how far to interpolate between the
632 colors where 0 is only the texture color and 255 is only `<color>`. If
633 omitted, the alpha of `<color>` will be used as the ratio.  If it is
634 the word "`alpha`", then each texture pixel will contain the RGB of
635 `<color>` and the alpha of `<color>` multiplied by the alpha of the
636 texture pixel.
637
638 #### `[multiply:<color>`
639
640 Multiplies texture colors with the given color.
641 `<color>` is specified as a `ColorString`.
642 Result is more like what you'd expect if you put a color on top of another
643 color, meaning white surfaces get a lot of your new color while black parts
644 don't change very much.
645
646 #### `[png:<base64>`
647
648 Embed a base64 encoded PNG image in the texture string.
649 You can produce a valid string for this by calling
650 `minetest.encode_base64(minetest.encode_png(tex))`,
651 refer to the documentation of these functions for details.
652 You can use this to send disposable images such as captchas
653 to individual clients, or render things that would be too
654 expensive to compose with `[combine:`.
655
656 IMPORTANT: Avoid sending large images this way.
657 This is not a replacement for asset files, do not use it to do anything
658 that you could instead achieve by just using a file.
659 In particular consider `minetest.dynamic_add_media` and test whether
660 using other texture modifiers could result in a shorter string than
661 embedding a whole image, this may vary by use case.
662
663 Hardware coloring
664 -----------------
665
666 The goal of hardware coloring is to simplify the creation of
667 colorful nodes. If your textures use the same pattern, and they only
668 differ in their color (like colored wool blocks), you can use hardware
669 coloring instead of creating and managing many texture files.
670 All of these methods use color multiplication (so a white-black texture
671 with red coloring will result in red-black color).
672
673 ### Static coloring
674
675 This method is useful if you wish to create nodes/items with
676 the same texture, in different colors, each in a new node/item definition.
677
678 #### Global color
679
680 When you register an item or node, set its `color` field (which accepts a
681 `ColorSpec`) to the desired color.
682
683 An `ItemStack`'s static color can be overwritten by the `color` metadata
684 field. If you set that field to a `ColorString`, that color will be used.
685
686 #### Tile color
687
688 Each tile may have an individual static color, which overwrites every
689 other coloring method. To disable the coloring of a face,
690 set its color to white (because multiplying with white does nothing).
691 You can set the `color` property of the tiles in the node's definition
692 if the tile is in table format.
693
694 ### Palettes
695
696 For nodes and items which can have many colors, a palette is more
697 suitable. A palette is a texture, which can contain up to 256 pixels.
698 Each pixel is one possible color for the node/item.
699 You can register one node/item, which can have up to 256 colors.
700
701 #### Palette indexing
702
703 When using palettes, you always provide a pixel index for the given
704 node or `ItemStack`. The palette is read from left to right and from
705 top to bottom. If the palette has less than 256 pixels, then it is
706 stretched to contain exactly 256 pixels (after arranging the pixels
707 to one line). The indexing starts from 0.
708
709 Examples:
710
711 * 16x16 palette, index = 0: the top left corner
712 * 16x16 palette, index = 4: the fifth pixel in the first row
713 * 16x16 palette, index = 16: the pixel below the top left corner
714 * 16x16 palette, index = 255: the bottom right corner
715 * 2 (width) x 4 (height) palette, index = 31: the top left corner.
716   The palette has 8 pixels, so each pixel is stretched to 32 pixels,
717   to ensure the total 256 pixels.
718 * 2x4 palette, index = 32: the top right corner
719 * 2x4 palette, index = 63: the top right corner
720 * 2x4 palette, index = 64: the pixel below the top left corner
721
722 #### Using palettes with items
723
724 When registering an item, set the item definition's `palette` field to
725 a texture. You can also use texture modifiers.
726
727 The `ItemStack`'s color depends on the `palette_index` field of the
728 stack's metadata. `palette_index` is an integer, which specifies the
729 index of the pixel to use.
730
731 #### Linking palettes with nodes
732
733 When registering a node, set the item definition's `palette` field to
734 a texture. You can also use texture modifiers.
735 The node's color depends on its `param2`, so you also must set an
736 appropriate `paramtype2`:
737
738 * `paramtype2 = "color"` for nodes which use their full `param2` for
739   palette indexing. These nodes can have 256 different colors.
740   The palette should contain 256 pixels.
741 * `paramtype2 = "colorwallmounted"` for nodes which use the first
742   five bits (most significant) of `param2` for palette indexing.
743   The remaining three bits are describing rotation, as in `wallmounted`
744   paramtype2. Division by 8 yields the palette index (without stretching the
745   palette). These nodes can have 32 different colors, and the palette
746   should contain 32 pixels.
747   Examples:
748     * `param2 = 17` is 2 * 8 + 1, so the rotation is 1 and the third (= 2 + 1)
749       pixel will be picked from the palette.
750     * `param2 = 35` is 4 * 8 + 3, so the rotation is 3 and the fifth (= 4 + 1)
751       pixel will be picked from the palette.
752 * `paramtype2 = "colorfacedir"` for nodes which use the first
753   three bits of `param2` for palette indexing. The remaining
754   five bits are describing rotation, as in `facedir` paramtype2.
755   Division by 32 yields the palette index (without stretching the
756   palette). These nodes can have 8 different colors, and the
757   palette should contain 8 pixels.
758   Examples:
759     * `param2 = 17` is 0 * 32 + 17, so the rotation is 17 and the
760       first (= 0 + 1) pixel will be picked from the palette.
761     * `param2 = 35` is 1 * 32 + 3, so the rotation is 3 and the
762       second (= 1 + 1) pixel will be picked from the palette.
763 * `paramtype2 = "color4dir"` for nodes which use the first
764   six bits of `param2` for palette indexing. The remaining
765   two bits are describing rotation, as in `4dir` paramtype2.
766   Division by 4 yields the palette index (without stretching the
767   palette). These nodes can have 64 different colors, and the
768   palette should contain 64 pixels.
769   Examples:
770     * `param2 = 17` is 4 * 4 + 1, so the rotation is 1 and the
771       fifth (= 4 + 1) pixel will be picked from the palette.
772     * `param2 = 35` is 8 * 4 + 3, so the rotation is 3 and the
773       ninth (= 8 + 1) pixel will be picked from the palette.
774
775 To colorize a node on the map, set its `param2` value (according
776 to the node's paramtype2).
777
778 ### Conversion between nodes in the inventory and on the map
779
780 Static coloring is the same for both cases, there is no need
781 for conversion.
782
783 If the `ItemStack`'s metadata contains the `color` field, it will be
784 lost on placement, because nodes on the map can only use palettes.
785
786 If the `ItemStack`'s metadata contains the `palette_index` field, it is
787 automatically transferred between node and item forms by the engine,
788 when a player digs or places a colored node.
789 You can disable this feature by setting the `drop` field of the node
790 to itself (without metadata).
791 To transfer the color to a special drop, you need a drop table.
792
793 Example:
794
795     minetest.register_node("mod:stone", {
796         description = "Stone",
797         tiles = {"default_stone.png"},
798         paramtype2 = "color",
799         palette = "palette.png",
800         drop = {
801             items = {
802                 -- assume that mod:cobblestone also has the same palette
803                 {items = {"mod:cobblestone"}, inherit_color = true },
804             }
805         }
806     })
807
808 ### Colored items in craft recipes
809
810 Craft recipes only support item strings, but fortunately item strings
811 can also contain metadata. Example craft recipe registration:
812
813     minetest.register_craft({
814         output = minetest.itemstring_with_palette("wool:block", 3),
815         type = "shapeless",
816         recipe = {
817             "wool:block",
818             "dye:red",
819         },
820     })
821
822 To set the `color` field, you can use `minetest.itemstring_with_color`.
823
824 Metadata field filtering in the `recipe` field are not supported yet,
825 so the craft output is independent of the color of the ingredients.
826
827 Soft texture overlay
828 --------------------
829
830 Sometimes hardware coloring is not enough, because it affects the
831 whole tile. Soft texture overlays were added to Minetest to allow
832 the dynamic coloring of only specific parts of the node's texture.
833 For example a grass block may have colored grass, while keeping the
834 dirt brown.
835
836 These overlays are 'soft', because unlike texture modifiers, the layers
837 are not merged in the memory, but they are simply drawn on top of each
838 other. This allows different hardware coloring, but also means that
839 tiles with overlays are drawn slower. Using too much overlays might
840 cause FPS loss.
841
842 For inventory and wield images you can specify overlays which
843 hardware coloring does not modify. You have to set `inventory_overlay`
844 and `wield_overlay` fields to an image name.
845
846 To define a node overlay, simply set the `overlay_tiles` field of the node
847 definition. These tiles are defined in the same way as plain tiles:
848 they can have a texture name, color etc.
849 To skip one face, set that overlay tile to an empty string.
850
851 Example (colored grass block):
852
853     minetest.register_node("default:dirt_with_grass", {
854         description = "Dirt with Grass",
855         -- Regular tiles, as usual
856         -- The dirt tile disables palette coloring
857         tiles = {{name = "default_grass.png"},
858             {name = "default_dirt.png", color = "white"}},
859         -- Overlay tiles: define them in the same style
860         -- The top and bottom tile does not have overlay
861         overlay_tiles = {"", "",
862             {name = "default_grass_side.png"}},
863         -- Global color, used in inventory
864         color = "green",
865         -- Palette in the world
866         paramtype2 = "color",
867         palette = "default_foilage.png",
868     })
869
870
871
872
873 Sounds
874 ======
875
876 Only Ogg Vorbis files are supported.
877
878 For positional playing of sounds, only single-channel (mono) files are
879 supported. Otherwise OpenAL will play them non-positionally.
880
881 Mods should generally prefix their sounds with `modname_`, e.g. given
882 the mod name "`foomod`", a sound could be called:
883
884     foomod_foosound.ogg
885
886 Sounds are referred to by their name with a dot, a single digit and the
887 file extension stripped out. When a sound is played, the actual sound file
888 is chosen randomly from the matching sounds.
889
890 When playing the sound `foomod_foosound`, the sound is chosen randomly
891 from the available ones of the following files:
892
893 * `foomod_foosound.ogg`
894 * `foomod_foosound.0.ogg`
895 * `foomod_foosound.1.ogg`
896 * (...)
897 * `foomod_foosound.9.ogg`
898
899 Examples of sound parameter tables:
900
901     -- Play locationless on all clients
902     {
903         gain = 1.0,   -- default
904         fade = 0.0,   -- default, change to a value > 0 to fade the sound in
905         pitch = 1.0,  -- default
906     }
907     -- Play locationless to one player
908     {
909         to_player = name,
910         gain = 1.0,   -- default
911         fade = 0.0,   -- default, change to a value > 0 to fade the sound in
912         pitch = 1.0,  -- default
913     }
914     -- Play locationless to one player, looped
915     {
916         to_player = name,
917         gain = 1.0,  -- default
918         loop = true,
919     }
920     -- Play at a location
921     {
922         pos = {x = 1, y = 2, z = 3},
923         gain = 1.0,  -- default
924         max_hear_distance = 32,  -- default, uses a Euclidean metric
925     }
926     -- Play connected to an object, looped
927     {
928         object = <an ObjectRef>,
929         gain = 1.0,  -- default
930         max_hear_distance = 32,  -- default, uses a Euclidean metric
931         loop = true,
932     }
933     -- Play at a location, heard by anyone *but* the given player
934     {
935         pos = {x = 32, y = 0, z = 100},
936         max_hear_distance = 40,
937         exclude_player = name,
938     }
939
940 Looped sounds must either be connected to an object or played locationless to
941 one player using `to_player = name`.
942
943 A positional sound will only be heard by players that are within
944 `max_hear_distance` of the sound position, at the start of the sound.
945
946 `exclude_player = name` can be applied to locationless, positional and object-
947 bound sounds to exclude a single player from hearing them.
948
949 `SimpleSoundSpec`
950 -----------------
951
952 Specifies a sound name, gain (=volume) and pitch.
953 This is either a string or a table.
954
955 In string form, you just specify the sound name or
956 the empty string for no sound.
957
958 Table form has the following fields:
959
960 * `name`: Sound name
961 * `gain`: Volume (`1.0` = 100%)
962 * `pitch`: Pitch (`1.0` = 100%)
963
964 `gain` and `pitch` are optional and default to `1.0`.
965
966 Examples:
967
968 * `""`: No sound
969 * `{}`: No sound
970 * `"default_place_node"`: Play e.g. `default_place_node.ogg`
971 * `{name = "default_place_node"}`: Same as above
972 * `{name = "default_place_node", gain = 0.5}`: 50% volume
973 * `{name = "default_place_node", gain = 0.9, pitch = 1.1}`: 90% volume, 110% pitch
974
975 Special sound files
976 -------------------
977
978 These sound files are played back by the engine if provided.
979
980  * `player_damage`: Played when the local player takes damage (gain = 0.5)
981  * `player_falling_damage`: Played when the local player takes
982    damage by falling (gain = 0.5)
983  * `player_jump`: Played when the local player jumps
984  * `default_dig_<groupname>`: Default node digging sound
985    (see node sound definition for details)
986
987 Registered definitions
988 ======================
989
990 Anything added using certain [Registration functions] gets added to one or more
991 of the global [Registered definition tables].
992
993 Note that in some cases you will stumble upon things that are not contained
994 in these tables (e.g. when a mod has been removed). Always check for
995 existence before trying to access the fields.
996
997 Example:
998
999 All nodes registered with `minetest.register_node` get added to the table
1000 `minetest.registered_nodes`.
1001
1002 If you want to check the drawtype of a node, you could do it like this:
1003
1004     local def = minetest.registered_nodes[nodename]
1005     local drawtype = def and def.drawtype
1006
1007
1008
1009
1010 Nodes
1011 =====
1012
1013 Nodes are the bulk data of the world: cubes and other things that take the
1014 space of a cube. Huge amounts of them are handled efficiently, but they
1015 are quite static.
1016
1017 The definition of a node is stored and can be accessed by using
1018
1019     minetest.registered_nodes[node.name]
1020
1021 See [Registered definitions].
1022
1023 Nodes are passed by value between Lua and the engine.
1024 They are represented by a table:
1025
1026     {name="name", param1=num, param2=num}
1027
1028 `param1` and `param2` are 8-bit integers ranging from 0 to 255. The engine uses
1029 them for certain automated functions. If you don't use these functions, you can
1030 use them to store arbitrary values.
1031
1032 Node paramtypes
1033 ---------------
1034
1035 The functions of `param1` and `param2` are determined by certain fields in the
1036 node definition.
1037
1038 The function of `param1` is determined by `paramtype` in node definition.
1039 `param1` is reserved for the engine when `paramtype != "none"`.
1040
1041 * `paramtype = "light"`
1042     * The value stores light with and without sun in its lower and upper 4 bits
1043       respectively.
1044     * Required by a light source node to enable spreading its light.
1045     * Required by the following drawtypes as they determine their visual
1046       brightness from their internal light value:
1047         * torchlike
1048         * signlike
1049         * firelike
1050         * fencelike
1051         * raillike
1052         * nodebox
1053         * mesh
1054         * plantlike
1055         * plantlike_rooted
1056 * `paramtype = "none"`
1057     * `param1` will not be used by the engine and can be used to store
1058       an arbitrary value
1059
1060 The function of `param2` is determined by `paramtype2` in node definition.
1061 `param2` is reserved for the engine when `paramtype2 != "none"`.
1062
1063 * `paramtype2 = "flowingliquid"`
1064     * Used by `drawtype = "flowingliquid"` and `liquidtype = "flowing"`
1065     * The liquid level and a flag of the liquid are stored in `param2`
1066     * Bits 0-2: Liquid level (0-7). The higher, the more liquid is in this node;
1067       see `minetest.get_node_level`, `minetest.set_node_level` and `minetest.add_node_level`
1068       to access/manipulate the content of this field
1069     * Bit 3: If set, liquid is flowing downwards (no graphical effect)
1070 * `paramtype2 = "wallmounted"`
1071     * Supported drawtypes: "torchlike", "signlike", "plantlike",
1072       "plantlike_rooted", "normal", "nodebox", "mesh"
1073     * The rotation of the node is stored in `param2`
1074     * Node is 'mounted'/facing towards one of 6 directions
1075     * You can make this value by using `minetest.dir_to_wallmounted()`
1076     * Values range 0 - 5
1077     * The value denotes at which direction the node is "mounted":
1078       0 = y+,   1 = y-,   2 = x+,   3 = x-,   4 = z+,   5 = z-
1079     * By default, on placement the param2 is automatically set to the
1080       appropriate rotation, depending on which side was pointed at
1081 * `paramtype2 = "facedir"`
1082     * Supported drawtypes: "normal", "nodebox", "mesh"
1083     * The rotation of the node is stored in `param2`.
1084     * Node is rotated around face and axis; 24 rotations in total.
1085     * Can be made by using `minetest.dir_to_facedir()`.
1086     * Chests and furnaces can be rotated that way, and also 'flipped'
1087     * Values range 0 - 23
1088     * facedir / 4 = axis direction:
1089       0 = y+,   1 = z+,   2 = z-,   3 = x+,   4 = x-,   5 = y-
1090     * The node is rotated 90 degrees around the X or Z axis so that its top face
1091       points in the desired direction. For the y- direction, it's rotated 180
1092       degrees around the Z axis.
1093     * facedir modulo 4 = left-handed rotation around the specified axis, in 90° steps.
1094     * By default, on placement the param2 is automatically set to the
1095       horizontal direction the player was looking at (values 0-3)
1096     * Special case: If the node is a connected nodebox, the nodebox
1097       will NOT rotate, only the textures will.
1098 * `paramtype2 = "4dir"`
1099     * Supported drawtypes: "normal", "nodebox", "mesh"
1100     * The rotation of the node is stored in `param2`.
1101     * Allows node to be rotated horizontally, 4 rotations in total
1102     * Can be made by using `minetest.dir_to_fourdir()`.
1103     * Chests and furnaces can be rotated that way, but not flipped
1104     * Values range 0 - 3
1105     * 4dir modulo 4 = rotation
1106     * Otherwise, behavior is identical to facedir
1107 * `paramtype2 = "leveled"`
1108     * Only valid for "nodebox" with 'type = "leveled"', and "plantlike_rooted".
1109         * Leveled nodebox:
1110             * The level of the top face of the nodebox is stored in `param2`.
1111             * The other faces are defined by 'fixed = {}' like 'type = "fixed"'
1112               nodeboxes.
1113             * The nodebox height is (`param2` / 64) nodes.
1114             * The maximum accepted value of `param2` is 127.
1115         * Rooted plantlike:
1116             * The height of the 'plantlike' section is stored in `param2`.
1117             * The height is (`param2` / 16) nodes.
1118 * `paramtype2 = "degrotate"`
1119     * Valid for `plantlike` and `mesh` drawtypes. The rotation of the node is
1120       stored in `param2`.
1121     * Values range 0–239. The value stored in `param2` is multiplied by 1.5 to
1122       get the actual rotation in degrees of the node.
1123 * `paramtype2 = "meshoptions"`
1124     * Only valid for "plantlike" drawtype. `param2` encodes the shape and
1125       optional modifiers of the "plant". `param2` is a bitfield.
1126     * Bits 0 to 2 select the shape.
1127       Use only one of the values below:
1128         * 0 = an "x" shaped plant (ordinary plant)
1129         * 1 = a "+" shaped plant (just rotated 45 degrees)
1130         * 2 = a "*" shaped plant with 3 faces instead of 2
1131         * 3 = a "#" shaped plant with 4 faces instead of 2
1132         * 4 = a "#" shaped plant with 4 faces that lean outwards
1133         * 5-7 are unused and reserved for future meshes.
1134     * Bits 3 to 7 are used to enable any number of optional modifiers.
1135       Just add the corresponding value(s) below to `param2`:
1136         * 8  - Makes the plant slightly vary placement horizontally
1137         * 16 - Makes the plant mesh 1.4x larger
1138         * 32 - Moves each face randomly a small bit down (1/8 max)
1139         * values 64 and 128 (bits 6-7) are reserved for future use.
1140     * Example: `param2 = 0` selects a normal "x" shaped plant
1141     * Example: `param2 = 17` selects a "+" shaped plant, 1.4x larger (1+16)
1142 * `paramtype2 = "color"`
1143     * `param2` tells which color is picked from the palette.
1144       The palette should have 256 pixels.
1145 * `paramtype2 = "colorfacedir"`
1146     * Same as `facedir`, but with colors.
1147     * The first three bits of `param2` tells which color is picked from the
1148       palette. The palette should have 8 pixels.
1149 * `paramtype2 = "color4dir"`
1150     * Same as `facedir`, but with colors.
1151     * The first six bits of `param2` tells which color is picked from the
1152       palette. The palette should have 64 pixels.
1153 * `paramtype2 = "colorwallmounted"`
1154     * Same as `wallmounted`, but with colors.
1155     * The first five bits of `param2` tells which color is picked from the
1156       palette. The palette should have 32 pixels.
1157 * `paramtype2 = "glasslikeliquidlevel"`
1158     * Only valid for "glasslike_framed" or "glasslike_framed_optional"
1159       drawtypes. "glasslike_framed_optional" nodes are only affected if the
1160       "Connected Glass" setting is enabled.
1161     * Bits 0-5 define 64 levels of internal liquid, 0 being empty and 63 being
1162       full.
1163     * Bits 6 and 7 modify the appearance of the frame and node faces. One or
1164       both of these values may be added to `param2`:
1165         * 64  - Makes the node not connect with neighbors above or below it.
1166         * 128 - Makes the node not connect with neighbors to its sides.
1167     * Liquid texture is defined using `special_tiles = {"modname_tilename.png"}`
1168 * `paramtype2 = "colordegrotate"`
1169     * Same as `degrotate`, but with colors.
1170     * The first (most-significant) three bits of `param2` tells which color
1171       is picked from the palette. The palette should have 8 pixels.
1172     * Remaining 5 bits store rotation in range 0–23 (i.e. in 15° steps)
1173 * `paramtype2 = "none"`
1174     * `param2` will not be used by the engine and can be used to store
1175       an arbitrary value
1176
1177 Nodes can also contain extra data. See [Node Metadata].
1178
1179 Node drawtypes
1180 --------------
1181
1182 There are a bunch of different looking node types.
1183
1184 Look for examples in `games/devtest` or `games/minetest_game`.
1185
1186 * `normal`
1187     * A node-sized cube.
1188 * `airlike`
1189     * Invisible, uses no texture.
1190 * `liquid`
1191     * The cubic source node for a liquid.
1192     * Faces bordering to the same node are never rendered.
1193     * Connects to node specified in `liquid_alternative_flowing`.
1194     * You *must* set `liquid_alternative_source` to the node's own name.
1195     * Use `backface_culling = false` for the tiles you want to make
1196       visible when inside the node.
1197 * `flowingliquid`
1198     * The flowing version of a liquid, appears with various heights and slopes.
1199     * Faces bordering to the same node are never rendered.
1200     * Connects to node specified in `liquid_alternative_source`.
1201     * You *must* set `liquid_alternative_flowing` to the node's own name.
1202     * Node textures are defined with `special_tiles` where the first tile
1203       is for the top and bottom faces and the second tile is for the side
1204       faces.
1205     * `tiles` is used for the item/inventory/wield image rendering.
1206     * Use `backface_culling = false` for the special tiles you want to make
1207       visible when inside the node
1208 * `glasslike`
1209     * Often used for partially-transparent nodes.
1210     * Only external sides of textures are visible.
1211 * `glasslike_framed`
1212     * All face-connected nodes are drawn as one volume within a surrounding
1213       frame.
1214     * The frame appearance is generated from the edges of the first texture
1215       specified in `tiles`. The width of the edges used are 1/16th of texture
1216       size: 1 pixel for 16x16, 2 pixels for 32x32 etc.
1217     * The glass 'shine' (or other desired detail) on each node face is supplied
1218       by the second texture specified in `tiles`.
1219 * `glasslike_framed_optional`
1220     * This switches between the above 2 drawtypes according to the menu setting
1221       'Connected Glass'.
1222 * `allfaces`
1223     * Often used for partially-transparent nodes.
1224     * External and internal sides of textures are visible.
1225 * `allfaces_optional`
1226     * Often used for leaves nodes.
1227     * This switches between `normal`, `glasslike` and `allfaces` according to
1228       the menu setting: Opaque Leaves / Simple Leaves / Fancy Leaves.
1229     * With 'Simple Leaves' selected, the texture specified in `special_tiles`
1230       is used instead, if present. This allows a visually thicker texture to be
1231       used to compensate for how `glasslike` reduces visual thickness.
1232 * `torchlike`
1233     * A single vertical texture.
1234     * If `paramtype2="[color]wallmounted"`:
1235         * If placed on top of a node, uses the first texture specified in `tiles`.
1236         * If placed against the underside of a node, uses the second texture
1237           specified in `tiles`.
1238         * If placed on the side of a node, uses the third texture specified in
1239           `tiles` and is perpendicular to that node.
1240     * If `paramtype2="none"`:
1241         * Will be rendered as if placed on top of a node (see
1242           above) and only the first texture is used.
1243 * `signlike`
1244     * A single texture parallel to, and mounted against, the top, underside or
1245       side of a node.
1246     * If `paramtype2="[color]wallmounted"`, it rotates according to `param2`
1247     * If `paramtype2="none"`, it will always be on the floor.
1248 * `plantlike`
1249     * Two vertical and diagonal textures at right-angles to each other.
1250     * See `paramtype2 = "meshoptions"` above for other options.
1251 * `firelike`
1252     * When above a flat surface, appears as 6 textures, the central 2 as
1253       `plantlike` plus 4 more surrounding those.
1254     * If not above a surface the central 2 do not appear, but the texture
1255       appears against the faces of surrounding nodes if they are present.
1256 * `fencelike`
1257     * A 3D model suitable for a wooden fence.
1258     * One placed node appears as a single vertical post.
1259     * Adjacently-placed nodes cause horizontal bars to appear between them.
1260 * `raillike`
1261     * Often used for tracks for mining carts.
1262     * Requires 4 textures to be specified in `tiles`, in order: Straight,
1263       curved, t-junction, crossing.
1264     * Each placed node automatically switches to a suitable rotated texture
1265       determined by the adjacent `raillike` nodes, in order to create a
1266       continuous track network.
1267     * Becomes a sloping node if placed against stepped nodes.
1268 * `nodebox`
1269     * Often used for stairs and slabs.
1270     * Allows defining nodes consisting of an arbitrary number of boxes.
1271     * See [Node boxes] below for more information.
1272 * `mesh`
1273     * Uses models for nodes.
1274     * Tiles should hold model materials textures.
1275     * Only static meshes are implemented.
1276     * For supported model formats see Irrlicht engine documentation.
1277 * `plantlike_rooted`
1278     * Enables underwater `plantlike` without air bubbles around the nodes.
1279     * Consists of a base cube at the co-ordinates of the node plus a
1280       `plantlike` extension above
1281     * If `paramtype2="leveled", the `plantlike` extension has a height
1282       of `param2 / 16` nodes, otherwise it's the height of 1 node
1283     * If `paramtype2="wallmounted"`, the `plantlike` extension
1284       will be at one of the corresponding 6 sides of the base cube.
1285       Also, the base cube rotates like a `normal` cube would
1286     * The `plantlike` extension visually passes through any nodes above the
1287       base cube without affecting them.
1288     * The base cube texture tiles are defined as normal, the `plantlike`
1289       extension uses the defined special tile, for example:
1290       `special_tiles = {{name = "default_papyrus.png"}},`
1291
1292 `*_optional` drawtypes need less rendering time if deactivated
1293 (always client-side).
1294
1295 Node boxes
1296 ----------
1297
1298 Node selection boxes are defined using "node boxes".
1299
1300 A nodebox is defined as any of:
1301
1302     {
1303         -- A normal cube; the default in most things
1304         type = "regular"
1305     }
1306     {
1307         -- A fixed box (or boxes) (facedir param2 is used, if applicable)
1308         type = "fixed",
1309         fixed = box OR {box1, box2, ...}
1310     }
1311     {
1312         -- A variable height box (or boxes) with the top face position defined
1313         -- by the node parameter 'leveled = ', or if 'paramtype2 == "leveled"'
1314         -- by param2.
1315         -- Other faces are defined by 'fixed = {}' as with 'type = "fixed"'.
1316         type = "leveled",
1317         fixed = box OR {box1, box2, ...}
1318     }
1319     {
1320         -- A box like the selection box for torches
1321         -- (wallmounted param2 is used, if applicable)
1322         type = "wallmounted",
1323         wall_top = box,
1324         wall_bottom = box,
1325         wall_side = box
1326     }
1327     {
1328         -- A node that has optional boxes depending on neighboring nodes'
1329         -- presence and type. See also `connects_to`.
1330         type = "connected",
1331         fixed = box OR {box1, box2, ...}
1332         connect_top = box OR {box1, box2, ...}
1333         connect_bottom = box OR {box1, box2, ...}
1334         connect_front = box OR {box1, box2, ...}
1335         connect_left = box OR {box1, box2, ...}
1336         connect_back = box OR {box1, box2, ...}
1337         connect_right = box OR {box1, box2, ...}
1338         -- The following `disconnected_*` boxes are the opposites of the
1339         -- `connect_*` ones above, i.e. when a node has no suitable neighbor
1340         -- on the respective side, the corresponding disconnected box is drawn.
1341         disconnected_top = box OR {box1, box2, ...}
1342         disconnected_bottom = box OR {box1, box2, ...}
1343         disconnected_front = box OR {box1, box2, ...}
1344         disconnected_left = box OR {box1, box2, ...}
1345         disconnected_back = box OR {box1, box2, ...}
1346         disconnected_right = box OR {box1, box2, ...}
1347         disconnected = box OR {box1, box2, ...} -- when there is *no* neighbor
1348         disconnected_sides = box OR {box1, box2, ...} -- when there are *no*
1349                                                       -- neighbors to the sides
1350     }
1351
1352 A `box` is defined as:
1353
1354     {x1, y1, z1, x2, y2, z2}
1355
1356 A box of a regular node would look like:
1357
1358     {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
1359
1360 To avoid collision issues, keep each value within the range of +/- 1.45.
1361 This also applies to leveled nodeboxes, where the final height shall not
1362 exceed this soft limit.
1363
1364
1365
1366 Map terminology and coordinates
1367 ===============================
1368
1369 Nodes, mapblocks, mapchunks
1370 ---------------------------
1371
1372 A 'node' is the fundamental cubic unit of a world and appears to a player as
1373 roughly 1x1x1 meters in size.
1374
1375 A 'mapblock' (often abbreviated to 'block') is 16x16x16 nodes and is the
1376 fundamental region of a world that is stored in the world database, sent to
1377 clients and handled by many parts of the engine.
1378 'mapblock' is preferred terminology to 'block' to help avoid confusion with
1379 'node', however 'block' often appears in the API.
1380
1381 A 'mapchunk' (sometimes abbreviated to 'chunk') is usually 5x5x5 mapblocks
1382 (80x80x80 nodes) and is the volume of world generated in one operation by
1383 the map generator.
1384 The size in mapblocks has been chosen to optimize map generation.
1385
1386 Coordinates
1387 -----------
1388
1389 ### Orientation of axes
1390
1391 For node and mapblock coordinates, +X is East, +Y is up, +Z is North.
1392
1393 ### Node coordinates
1394
1395 Almost all positions used in the API use node coordinates.
1396
1397 ### Mapblock coordinates
1398
1399 Occasionally the API uses 'blockpos' which refers to mapblock coordinates that
1400 specify a particular mapblock.
1401 For example blockpos (0,0,0) specifies the mapblock that extends from
1402 node position (0,0,0) to node position (15,15,15).
1403
1404 #### Converting node position to the containing blockpos
1405
1406 To calculate the blockpos of the mapblock that contains the node at 'nodepos',
1407 for each axis:
1408
1409 * blockpos = math.floor(nodepos / 16)
1410
1411 #### Converting blockpos to min/max node positions
1412
1413 To calculate the min/max node positions contained in the mapblock at 'blockpos',
1414 for each axis:
1415
1416 * Minimum:
1417   nodepos = blockpos * 16
1418 * Maximum:
1419   nodepos = blockpos * 16 + 15
1420
1421
1422
1423
1424 HUD
1425 ===
1426
1427 HUD element types
1428 -----------------
1429
1430 The position field is used for all element types.
1431 To account for differing resolutions, the position coordinates are the
1432 percentage of the screen, ranging in value from `0` to `1`.
1433
1434 The `name` field is not yet used, but should contain a description of what the
1435 HUD element represents.
1436
1437 The `direction` field is the direction in which something is drawn.
1438 `0` draws from left to right, `1` draws from right to left, `2` draws from
1439 top to bottom, and `3` draws from bottom to top.
1440
1441 The `alignment` field specifies how the item will be aligned. It is a table
1442 where `x` and `y` range from `-1` to `1`, with `0` being central. `-1` is
1443 moved to the left/up, and `1` is to the right/down. Fractional values can be
1444 used.
1445
1446 The `offset` field specifies a pixel offset from the position. Contrary to
1447 position, the offset is not scaled to screen size. This allows for some
1448 precisely positioned items in the HUD.
1449
1450 **Note**: `offset` _will_ adapt to screen DPI as well as user defined scaling
1451 factor!
1452
1453 The `z_index` field specifies the order of HUD elements from back to front.
1454 Lower z-index elements are displayed behind higher z-index elements. Elements
1455 with same z-index are displayed in an arbitrary order. Default 0.
1456 Supports negative values. By convention, the following values are recommended:
1457
1458 *  -400: Graphical effects, such as vignette
1459 *  -300: Name tags, waypoints
1460 *  -200: Wieldhand
1461 *  -100: Things that block the player's view, e.g. masks
1462 *     0: Default. For standard in-game HUD elements like crosshair, hotbar,
1463          minimap, builtin statbars, etc.
1464 *   100: Temporary text messages or notification icons
1465 *  1000: Full-screen effects such as full-black screen or credits.
1466          This includes effects that cover the entire screen
1467
1468 If your HUD element doesn't fit into any category, pick a number
1469 between the suggested values
1470
1471 Below are the specific uses for fields in each type; fields not listed for that
1472 type are ignored.
1473
1474 ### `image`
1475
1476 Displays an image on the HUD.
1477
1478 * `scale`: The scale of the image, with 1 being the original texture size.
1479   Only the X coordinate scale is used (positive values).
1480   Negative values represent that percentage of the screen it
1481   should take; e.g. `x=-100` means 100% (width).
1482 * `text`: The name of the texture that is displayed.
1483 * `alignment`: The alignment of the image.
1484 * `offset`: offset in pixels from position.
1485
1486 ### `text`
1487
1488 Displays text on the HUD.
1489
1490 * `scale`: Defines the bounding rectangle of the text.
1491   A value such as `{x=100, y=100}` should work.
1492 * `text`: The text to be displayed in the HUD element.
1493 * `number`: An integer containing the RGB value of the color used to draw the
1494   text. Specify `0xFFFFFF` for white text, `0xFF0000` for red, and so on.
1495 * `alignment`: The alignment of the text.
1496 * `offset`: offset in pixels from position.
1497 * `size`: size of the text.
1498   The player-set font size is multiplied by size.x (y value isn't used).
1499 * `style`: determines font style
1500   Bitfield with 1 = bold, 2 = italic, 4 = monospace
1501
1502 ### `statbar`
1503
1504 Displays a horizontal bar made up of half-images with an optional background.
1505
1506 * `text`: The name of the texture to use.
1507 * `text2`: Optional texture name to enable a background / "off state"
1508   texture (useful to visualize the maximal value). Both textures
1509   must have the same size.
1510 * `number`: The number of half-textures that are displayed.
1511   If odd, will end with a vertically center-split texture.
1512 * `item`: Same as `number` but for the "off state" texture
1513 * `direction`: To which direction the images will extend to
1514 * `offset`: offset in pixels from position.
1515 * `size`: If used, will force full-image size to this value (override texture
1516   pack image size)
1517
1518 ### `inventory`
1519
1520 * `text`: The name of the inventory list to be displayed.
1521 * `number`: Number of items in the inventory to be displayed.
1522 * `item`: Position of item that is selected.
1523 * `direction`: Direction the list will be displayed in
1524 * `offset`: offset in pixels from position.
1525
1526 ### `waypoint`
1527
1528 Displays distance to selected world position.
1529
1530 * `name`: The name of the waypoint.
1531 * `text`: Distance suffix. Can be blank.
1532 * `precision`: Waypoint precision, integer >= 0. Defaults to 10.
1533   If set to 0, distance is not shown. Shown value is `floor(distance*precision)/precision`.
1534   When the precision is an integer multiple of 10, there will be `log_10(precision)` digits after the decimal point.
1535   `precision = 1000`, for example, will show 3 decimal places (eg: `0.999`).
1536   `precision = 2` will show multiples of `0.5`; precision = 5 will show multiples of `0.2` and so on:
1537   `precision = n` will show multiples of `1/n`
1538 * `number:` An integer containing the RGB value of the color used to draw the
1539   text.
1540 * `world_pos`: World position of the waypoint.
1541 * `offset`: offset in pixels from position.
1542 * `alignment`: The alignment of the waypoint.
1543
1544 ### `image_waypoint`
1545
1546 Same as `image`, but does not accept a `position`; the position is instead determined by `world_pos`, the world position of the waypoint.
1547
1548 * `scale`: The scale of the image, with 1 being the original texture size.
1549   Only the X coordinate scale is used (positive values).
1550   Negative values represent that percentage of the screen it
1551   should take; e.g. `x=-100` means 100% (width).
1552 * `text`: The name of the texture that is displayed.
1553 * `alignment`: The alignment of the image.
1554 * `world_pos`: World position of the waypoint.
1555 * `offset`: offset in pixels from position.
1556
1557 ### `compass`
1558
1559 Displays an image oriented or translated according to current heading direction.
1560
1561 * `size`: The size of this element. Negative values represent percentage
1562   of the screen; e.g. `x=-100` means 100% (width).
1563 * `scale`: Scale of the translated image (used only for dir = 2 or dir = 3).
1564 * `text`: The name of the texture to use.
1565 * `alignment`: The alignment of the image.
1566 * `offset`: Offset in pixels from position.
1567 * `direction`: How the image is rotated/translated:
1568   * 0 - Rotate as heading direction
1569   * 1 - Rotate in reverse direction
1570   * 2 - Translate as landscape direction
1571   * 3 - Translate in reverse direction
1572
1573 If translation is chosen, texture is repeated horizontally to fill the whole element.
1574
1575 ### `minimap`
1576
1577 Displays a minimap on the HUD.
1578
1579 * `size`: Size of the minimap to display. Minimap should be a square to avoid
1580   distortion.
1581 * `alignment`: The alignment of the minimap.
1582 * `offset`: offset in pixels from position.
1583
1584 Representations of simple things
1585 ================================
1586
1587 Vector (ie. a position)
1588 -----------------------
1589
1590     vector.new(x, y, z)
1591
1592 See [Spatial Vectors] for details.
1593
1594 `pointed_thing`
1595 ---------------
1596
1597 * `{type="nothing"}`
1598 * `{type="node", under=pos, above=pos}`
1599     * Indicates a pointed node selection box.
1600     * `under` refers to the node position behind the pointed face.
1601     * `above` refers to the node position in front of the pointed face.
1602 * `{type="object", ref=ObjectRef}`
1603
1604 Exact pointing location (currently only `Raycast` supports these fields):
1605
1606 * `pointed_thing.intersection_point`: The absolute world coordinates of the
1607   point on the selection box which is pointed at. May be in the selection box
1608   if the pointer is in the box too.
1609 * `pointed_thing.box_id`: The ID of the pointed selection box (counting starts
1610   from 1).
1611 * `pointed_thing.intersection_normal`: Unit vector, points outwards of the
1612   selected selection box. This specifies which face is pointed at.
1613   Is a null vector `vector.zero()` when the pointer is inside the selection box.
1614   For entities with rotated selection boxes, this will be rotated properly
1615   by the entity's rotation - it will always be in absolute world space.
1616
1617
1618
1619
1620 Flag Specifier Format
1621 =====================
1622
1623 Flags using the standardized flag specifier format can be specified in either
1624 of two ways, by string or table.
1625
1626 The string format is a comma-delimited set of flag names; whitespace and
1627 unrecognized flag fields are ignored. Specifying a flag in the string sets the
1628 flag, and specifying a flag prefixed by the string `"no"` explicitly
1629 clears the flag from whatever the default may be.
1630
1631 In addition to the standard string flag format, the schematic flags field can
1632 also be a table of flag names to boolean values representing whether or not the
1633 flag is set. Additionally, if a field with the flag name prefixed with `"no"`
1634 is present, mapped to a boolean of any value, the specified flag is unset.
1635
1636 E.g. A flag field of value
1637
1638     {place_center_x = true, place_center_y=false, place_center_z=true}
1639
1640 is equivalent to
1641
1642     {place_center_x = true, noplace_center_y=true, place_center_z=true}
1643
1644 which is equivalent to
1645
1646     "place_center_x, noplace_center_y, place_center_z"
1647
1648 or even
1649
1650     "place_center_x, place_center_z"
1651
1652 since, by default, no schematic attributes are set.
1653
1654
1655
1656
1657 Items
1658 =====
1659
1660 Items are things that can be held by players, dropped in the map and
1661 stored in inventories.
1662 Items come in the form of item stacks, which are collections of equal
1663 items that occupy a single inventory slot.
1664
1665 Item types
1666 ----------
1667
1668 There are three kinds of items: nodes, tools and craftitems.
1669
1670 * Node: Placeable item form of a node in the world's voxel grid
1671 * Tool: Has a changeable wear property but cannot be stacked
1672 * Craftitem: Has no special properties
1673
1674 Every registered node (the voxel in the world) has a corresponding
1675 item form (the thing in your inventory) that comes along with it.
1676 This item form can be placed which will create a node in the
1677 world (by default).
1678 Both the 'actual' node and its item form share the same identifier.
1679 For all practical purposes, you can treat the node and its item form
1680 interchangeably. We usually just say 'node' to the item form of
1681 the node as well.
1682
1683 Note the definition of tools is purely technical. The only really
1684 unique thing about tools is their wear, and that's basically it.
1685 Beyond that, you can't make any gameplay-relevant assumptions
1686 about tools or non-tools. It is perfectly valid to register something
1687 that acts as tool in a gameplay sense as a craftitem, and vice-versa.
1688
1689 Craftitems can be used for items that neither need to be a node
1690 nor a tool.
1691
1692 Amount and wear
1693 ---------------
1694
1695 All item stacks have an amount between 0 and 65535. It is 1 by
1696 default. Tool item stacks cannot have an amount greater than 1.
1697
1698 Tools use a wear (damage) value ranging from 0 to 65535. The
1699 value 0 is the default and is used for unworn tools. The values
1700 1 to 65535 are used for worn tools, where a higher value stands for
1701 a higher wear. Non-tools technically also have a wear property,
1702 but it is always 0. There is also a special 'toolrepair' crafting
1703 recipe that is only available to tools.
1704
1705 Item formats
1706 ------------
1707
1708 Items and item stacks can exist in three formats: Serializes, table format
1709 and `ItemStack`.
1710
1711 When an item must be passed to a function, it can usually be in any of
1712 these formats.
1713
1714 ### Serialized
1715
1716 This is called "stackstring" or "itemstring". It is a simple string with
1717 1-4 components:
1718
1719 1. Full item identifier ("item name")
1720 2. Optional amount
1721 3. Optional wear value
1722 4. Optional item metadata
1723
1724 Syntax:
1725
1726     <identifier> [<amount>[ <wear>[ <metadata>]]]
1727
1728 Examples:
1729
1730 * `"default:apple"`: 1 apple
1731 * `"default:dirt 5"`: 5 dirt
1732 * `"default:pick_stone"`: a new stone pickaxe
1733 * `"default:pick_wood 1 21323"`: a wooden pickaxe, ca. 1/3 worn out
1734 * `[[default:pick_wood 1 21323 "\u0001description\u0002My worn out pick\u0003"]]`:
1735   * a wooden pickaxe from the `default` mod,
1736   * amount must be 1 (pickaxe is a tool), ca. 1/3 worn out (it's a tool),
1737   * with the `description` field set to `"My worn out pick"` in its metadata
1738 * `[[default:dirt 5 0 "\u0001description\u0002Special dirt\u0003"]]`:
1739   * analogous to the above example
1740   * note how the wear is set to `0` as dirt is not a tool
1741
1742 You should ideally use the `ItemStack` format to build complex item strings
1743 (especially if they use item metadata)
1744 without relying on the serialization format. Example:
1745
1746     local stack = ItemStack("default:pick_wood")
1747     stack:set_wear(21323)
1748     stack:get_meta():set_string("description", "My worn out pick")
1749     local itemstring = stack:to_string()
1750
1751 Additionally the methods `minetest.itemstring_with_palette(item, palette_index)`
1752 and `minetest.itemstring_with_color(item, colorstring)` may be used to create
1753 item strings encoding color information in their metadata.
1754
1755 ### Table format
1756
1757 Examples:
1758
1759 5 dirt nodes:
1760
1761     {name="default:dirt", count=5, wear=0, metadata=""}
1762
1763 A wooden pick about 1/3 worn out:
1764
1765     {name="default:pick_wood", count=1, wear=21323, metadata=""}
1766
1767 An apple:
1768
1769     {name="default:apple", count=1, wear=0, metadata=""}
1770
1771 ### `ItemStack`
1772
1773 A native C++ format with many helper methods. Useful for converting
1774 between formats. See the [Class reference] section for details.
1775
1776
1777
1778
1779 Groups
1780 ======
1781
1782 In a number of places, there is a group table. Groups define the
1783 properties of a thing (item, node, armor of entity, tool capabilities)
1784 in such a way that the engine and other mods can can interact with
1785 the thing without actually knowing what the thing is.
1786
1787 Usage
1788 -----
1789
1790 Groups are stored in a table, having the group names with keys and the
1791 group ratings as values. Group ratings are integer values within the
1792 range [-32767, 32767]. For example:
1793
1794     -- Default dirt
1795     groups = {crumbly=3, soil=1}
1796
1797     -- A more special dirt-kind of thing
1798     groups = {crumbly=2, soil=1, level=2, outerspace=1}
1799
1800 Groups always have a rating associated with them. If there is no
1801 useful meaning for a rating for an enabled group, it shall be `1`.
1802
1803 When not defined, the rating of a group defaults to `0`. Thus when you
1804 read groups, you must interpret `nil` and `0` as the same value, `0`.
1805
1806 You can read the rating of a group for an item or a node by using
1807
1808     minetest.get_item_group(itemname, groupname)
1809
1810 Groups of items
1811 ---------------
1812
1813 Groups of items can define what kind of an item it is (e.g. wool).
1814
1815 Groups of nodes
1816 ---------------
1817
1818 In addition to the general item things, groups are used to define whether
1819 a node is destroyable and how long it takes to destroy by a tool.
1820
1821 Groups of entities
1822 ------------------
1823
1824 For entities, groups are, as of now, used only for calculating damage.
1825 The rating is the percentage of damage caused by items with this damage group.
1826 See [Entity damage mechanism].
1827
1828     object:get_armor_groups() --> a group-rating table (e.g. {fleshy=100})
1829     object:set_armor_groups({fleshy=30, cracky=80})
1830
1831 Groups of tool capabilities
1832 ---------------------------
1833
1834 Groups in tool capabilities define which groups of nodes and entities they
1835 are effective towards.
1836
1837 Groups in crafting recipes
1838 --------------------------
1839
1840 In crafting recipes, you can specify a group as an input item.
1841 This means that any item in that group will be accepted as input.
1842
1843 The basic syntax is:
1844
1845     "group:<group_name>"
1846
1847 For example, `"group:meat"` will accept any item in the `meat` group.
1848
1849 It is also possible to require an input item to be in
1850 multiple groups at once. The syntax for that is:
1851
1852     "group:<group_name_1>,<group_name_2>,(...),<group_name_n>"
1853
1854 For example, `"group:leaves,birch,trimmed"` accepts any item which is member
1855 of *all* the groups `leaves` *and* `birch` *and* `trimmed`.
1856
1857 An example recipe: Craft a raw meat soup from any meat, any water and any bowl:
1858
1859     {
1860         output = "food:meat_soup_raw",
1861         recipe = {
1862             {"group:meat"},
1863             {"group:water"},
1864             {"group:bowl"},
1865         },
1866     }
1867
1868 Another example: Craft red wool from white wool and red dye
1869 (here, "red dye" is defined as any item which is member of
1870 *both* the groups `dye` and `basecolor_red`).
1871
1872     {
1873         type = "shapeless",
1874         output = "wool:red",
1875         recipe = {"wool:white", "group:dye,basecolor_red"},
1876     }
1877
1878 Special groups
1879 --------------
1880
1881 The asterisk `(*)` after a group name describes that there is no engine
1882 functionality bound to it, and implementation is left up as a suggestion
1883 to games.
1884
1885 ### Node and item groups
1886
1887 * `not_in_creative_inventory`: (*) Special group for inventory mods to indicate
1888   that the item should be hidden in item lists.
1889
1890
1891 ### Node-only groups
1892
1893 * `attached_node`: the node is 'attached' to a neighboring node. It checks
1894                    whether the node it is attached to is walkable. If it
1895                    isn't, the node will drop as an item.
1896     * `1`: if the node is wallmounted, the node is attached in the wallmounted
1897            direction. Otherwise, the node is attached to the node below.
1898     * `2`: if the node is facedir or 4dir, the facedir or 4dir direction is checked.
1899            No effect for other nodes.
1900            Note: The "attaching face" of this node is tile no. 5 (back face).
1901     * `3`: the node is always attached to the node below.
1902     * `4`: the node is always attached to the node above.
1903 * `bouncy`: value is bounce speed in percent.
1904   If positive, jump/sneak on floor impact will increase/decrease bounce height.
1905   Negative value is the same bounciness, but non-controllable.
1906 * `connect_to_raillike`: makes nodes of raillike drawtype with same group value
1907   connect to each other
1908 * `dig_immediate`: Player can always pick up node without reducing tool wear
1909     * `2`: the node always gets the digging time 0.5 seconds (rail, sign)
1910     * `3`: the node always gets the digging time 0 seconds (torch)
1911 * `disable_jump`: Player (and possibly other things) cannot jump from node
1912   or if their feet are in the node. Note: not supported for `new_move = false`
1913 * `fall_damage_add_percent`: modifies the fall damage suffered when hitting
1914   the top of this node. There's also an armor group with the same name.
1915   The final player damage is determined by the following formula:
1916     damage =
1917       collision speed
1918       * ((node_fall_damage_add_percent   + 100) / 100) -- node group
1919       * ((player_fall_damage_add_percent + 100) / 100) -- player armor group
1920       - (14)                                           -- constant tolerance
1921   Negative damage values are discarded as no damage.
1922 * `falling_node`: if there is no walkable block under the node it will fall
1923 * `float`: the node will not fall through liquids (`liquidtype ~= "none"`)
1924 * `level`: Can be used to give an additional sense of progression in the game.
1925      * A larger level will cause e.g. a weapon of a lower level make much less
1926        damage, and get worn out much faster, or not be able to get drops
1927        from destroyed nodes.
1928      * `0` is something that is directly accessible at the start of gameplay
1929      * There is no upper limit
1930      * See also: `leveldiff` in [Tool Capabilities]
1931 * `slippery`: Players and items will slide on the node.
1932   Slipperiness rises steadily with `slippery` value, starting at 1.
1933
1934
1935 ### Tool-only groups
1936
1937 * `disable_repair`: If set to 1 for a tool, it cannot be repaired using the
1938   `"toolrepair"` crafting recipe
1939
1940
1941 ### `ObjectRef` armor groups
1942
1943 * `immortal`: Skips all damage and breath handling for an object. This group
1944   will also hide the integrated HUD status bars for players. It is
1945   automatically set to all players when damage is disabled on the server and
1946   cannot be reset (subject to change).
1947 * `fall_damage_add_percent`: Modifies the fall damage suffered by players
1948   when they hit the ground. It is analog to the node group with the same
1949   name. See the node group above for the exact calculation.
1950 * `punch_operable`: For entities; disables the regular damage mechanism for
1951   players punching it by hand or a non-tool item, so that it can do something
1952   else than take damage.
1953
1954
1955
1956 Known damage and digging time defining groups
1957 ---------------------------------------------
1958
1959 * `crumbly`: dirt, sand
1960 * `cracky`: tough but crackable stuff like stone.
1961 * `snappy`: something that can be cut using things like scissors, shears,
1962   bolt cutters and the like, e.g. leaves, small plants, wire, sheets of metal
1963 * `choppy`: something that can be cut using force; e.g. trees, wooden planks
1964 * `fleshy`: Living things like animals and the player. This could imply
1965   some blood effects when hitting.
1966 * `explody`: Especially prone to explosions
1967 * `oddly_breakable_by_hand`:
1968    Can be added to nodes that shouldn't logically be breakable by the
1969    hand but are. Somewhat similar to `dig_immediate`, but times are more
1970    like `{[1]=3.50,[2]=2.00,[3]=0.70}` and this does not override the
1971    digging speed of an item if it can dig at a faster speed than this
1972    suggests for the hand.
1973
1974 Examples of custom groups
1975 -------------------------
1976
1977 Item groups are often used for defining, well, _groups of items_.
1978
1979 * `meat`: any meat-kind of a thing (rating might define the size or healing
1980   ability or be irrelevant -- it is not defined as of yet)
1981 * `eatable`: anything that can be eaten. Rating might define HP gain in half
1982   hearts.
1983 * `flammable`: can be set on fire. Rating might define the intensity of the
1984   fire, affecting e.g. the speed of the spreading of an open fire.
1985 * `wool`: any wool (any origin, any color)
1986 * `metal`: any metal
1987 * `weapon`: any weapon
1988 * `heavy`: anything considerably heavy
1989
1990 Digging time calculation specifics
1991 ----------------------------------
1992
1993 Groups such as `crumbly`, `cracky` and `snappy` are used for this
1994 purpose. Rating is `1`, `2` or `3`. A higher rating for such a group implies
1995 faster digging time.
1996
1997 The `level` group is used to limit the toughness of nodes an item capable
1998 of digging can dig and to scale the digging times / damage to a greater extent.
1999
2000 **Please do understand this**, otherwise you cannot use the system to it's
2001 full potential.
2002
2003 Items define their properties by a list of parameters for groups. They
2004 cannot dig other groups; thus it is important to use a standard bunch of
2005 groups to enable interaction with items.
2006
2007
2008
2009
2010 Tool Capabilities
2011 =================
2012
2013 'Tool capabilities' is a property of items that defines two things:
2014
2015 1) Which nodes it can dig and how fast
2016 2) Which objects it can hurt by punching and by how much
2017
2018 Tool capabilities are available for all items, not just tools.
2019 But only tools can receive wear from digging and punching.
2020
2021 Missing or incomplete tool capabilities will default to the
2022 player's hand.
2023
2024 Tool capabilities definition
2025 ----------------------------
2026
2027 Tool capabilities define:
2028
2029 * Full punch interval
2030 * Maximum drop level
2031 * For an arbitrary list of node groups:
2032     * Uses (until the tool breaks)
2033     * Maximum level (usually `0`, `1`, `2` or `3`)
2034     * Digging times
2035 * Damage groups
2036 * Punch attack uses (until the tool breaks)
2037
2038 ### Full punch interval `full_punch_interval`
2039
2040 When used as a weapon, the item will do full damage if this time is spent
2041 between punches. If e.g. half the time is spent, the item will do half
2042 damage.
2043
2044 ### Maximum drop level `max_drop_level`
2045
2046 Suggests the maximum level of node, when dug with the item, that will drop
2047 its useful item. (e.g. iron ore to drop a lump of iron).
2048
2049 This value is not used in the engine; it is the responsibility of the game/mod
2050 code to implement this.
2051
2052 ### Uses `uses` (tools only)
2053
2054 Determines how many uses the tool has when it is used for digging a node,
2055 of this group, of the maximum level. The maximum supported number of
2056 uses is 65535. The special number 0 is used for infinite uses.
2057 For lower leveled nodes, the use count is multiplied by `3^leveldiff`.
2058 `leveldiff` is the difference of the tool's `maxlevel` `groupcaps` and the
2059 node's `level` group. The node cannot be dug if `leveldiff` is less than zero.
2060
2061 * `uses=10, leveldiff=0`: actual uses: 10
2062 * `uses=10, leveldiff=1`: actual uses: 30
2063 * `uses=10, leveldiff=2`: actual uses: 90
2064
2065 For non-tools, this has no effect.
2066
2067 ### Maximum level `maxlevel`
2068
2069 Tells what is the maximum level of a node of this group that the item will
2070 be able to dig.
2071
2072 ### Digging times `times`
2073
2074 List of digging times for different ratings of the group, for nodes of the
2075 maximum level.
2076
2077 For example, as a Lua table, `times={[2]=2.00, [3]=0.70}`. This would
2078 result in the item to be able to dig nodes that have a rating of `2` or `3`
2079 for this group, and unable to dig the rating `1`, which is the toughest.
2080 Unless there is a matching group that enables digging otherwise.
2081
2082 If the result digging time is 0, a delay of 0.15 seconds is added between
2083 digging nodes; If the player releases LMB after digging, this delay is set to 0,
2084 i.e. players can more quickly click the nodes away instead of holding LMB.
2085
2086 ### Damage groups
2087
2088 List of damage for groups of entities. See [Entity damage mechanism].
2089
2090 ### Punch attack uses (tools only)
2091
2092 Determines how many uses (before breaking) the tool has when dealing damage
2093 to an object, when the full punch interval (see above) was always
2094 waited out fully.
2095
2096 Wear received by the tool is proportional to the time spent, scaled by
2097 the full punch interval.
2098
2099 For non-tools, this has no effect.
2100
2101 Example definition of the capabilities of an item
2102 -------------------------------------------------
2103
2104     tool_capabilities = {
2105         groupcaps={
2106             crumbly={maxlevel=2, uses=20, times={[1]=1.60, [2]=1.20, [3]=0.80}}
2107         },
2108     }
2109
2110 This makes the item capable of digging nodes that fulfill both of these:
2111
2112 * Have the `crumbly` group
2113 * Have a `level` group less or equal to `2`
2114
2115 Table of resulting digging times:
2116
2117     crumbly        0     1     2     3     4  <- level
2118          ->  0     -     -     -     -     -
2119              1  0.80  1.60  1.60     -     -
2120              2  0.60  1.20  1.20     -     -
2121              3  0.40  0.80  0.80     -     -
2122
2123     level diff:    2     1     0    -1    -2
2124
2125 Table of resulting tool uses:
2126
2127     ->  0     -     -     -     -     -
2128         1   180    60    20     -     -
2129         2   180    60    20     -     -
2130         3   180    60    20     -     -
2131
2132 **Notes**:
2133
2134 * At `crumbly==0`, the node is not diggable.
2135 * At `crumbly==3`, the level difference digging time divider kicks in and makes
2136   easy nodes to be quickly breakable.
2137 * At `level > 2`, the node is not diggable, because it's `level > maxlevel`
2138
2139
2140
2141
2142 Entity damage mechanism
2143 =======================
2144
2145 Damage calculation:
2146
2147     damage = 0
2148     foreach group in cap.damage_groups:
2149         damage += cap.damage_groups[group]
2150             * limit(actual_interval / cap.full_punch_interval, 0.0, 1.0)
2151             * (object.armor_groups[group] / 100.0)
2152             -- Where object.armor_groups[group] is 0 for inexistent values
2153     return damage
2154
2155 Client predicts damage based on damage groups. Because of this, it is able to
2156 give an immediate response when an entity is damaged or dies; the response is
2157 pre-defined somehow (e.g. by defining a sprite animation) (not implemented;
2158 TODO).
2159 Currently a smoke puff will appear when an entity dies.
2160
2161 The group `immortal` completely disables normal damage.
2162
2163 Entities can define a special armor group, which is `punch_operable`. This
2164 group disables the regular damage mechanism for players punching it by hand or
2165 a non-tool item, so that it can do something else than take damage.
2166
2167 On the Lua side, every punch calls:
2168
2169     entity:on_punch(puncher, time_from_last_punch, tool_capabilities, direction,
2170                     damage)
2171
2172 This should never be called directly, because damage is usually not handled by
2173 the entity itself.
2174
2175 * `puncher` is the object performing the punch. Can be `nil`. Should never be
2176   accessed unless absolutely required, to encourage interoperability.
2177 * `time_from_last_punch` is time from last punch (by `puncher`) or `nil`.
2178 * `tool_capabilities` can be `nil`.
2179 * `direction` is a unit vector, pointing from the source of the punch to
2180    the punched object.
2181 * `damage` damage that will be done to entity
2182 Return value of this function will determine if damage is done by this function
2183 (retval true) or shall be done by engine (retval false)
2184
2185 To punch an entity/object in Lua, call:
2186
2187   object:punch(puncher, time_from_last_punch, tool_capabilities, direction)
2188
2189 * Return value is tool wear.
2190 * Parameters are equal to the above callback.
2191 * If `direction` equals `nil` and `puncher` does not equal `nil`, `direction`
2192   will be automatically filled in based on the location of `puncher`.
2193
2194
2195
2196
2197 Metadata
2198 ========
2199
2200 Node Metadata
2201 -------------
2202
2203 The instance of a node in the world normally only contains the three values
2204 mentioned in [Nodes]. However, it is possible to insert extra data into a node.
2205 It is called "node metadata"; See `NodeMetaRef`.
2206
2207 Node metadata contains two things:
2208
2209 * A key-value store
2210 * An inventory
2211
2212 Some of the values in the key-value store are handled specially:
2213
2214 * `formspec`: Defines an inventory menu that is opened with the
2215               'place/use' key. Only works if no `on_rightclick` was
2216               defined for the node. See also [Formspec].
2217 * `infotext`: Text shown on the screen when the node is pointed at.
2218               Line-breaks will be applied automatically.
2219               If the infotext is very long, it will be truncated.
2220
2221 Example:
2222
2223     local meta = minetest.get_meta(pos)
2224     meta:set_string("formspec",
2225             "size[8,9]"..
2226             "list[context;main;0,0;8,4;]"..
2227             "list[current_player;main;0,5;8,4;]")
2228     meta:set_string("infotext", "Chest");
2229     local inv = meta:get_inventory()
2230     inv:set_size("main", 8*4)
2231     print(dump(meta:to_table()))
2232     meta:from_table({
2233         inventory = {
2234             main = {[1] = "default:dirt", [2] = "", [3] = "", [4] = "",
2235                     [5] = "", [6] = "", [7] = "", [8] = "", [9] = "",
2236                     [10] = "", [11] = "", [12] = "", [13] = "",
2237                     [14] = "default:cobble", [15] = "", [16] = "", [17] = "",
2238                     [18] = "", [19] = "", [20] = "default:cobble", [21] = "",
2239                     [22] = "", [23] = "", [24] = "", [25] = "", [26] = "",
2240                     [27] = "", [28] = "", [29] = "", [30] = "", [31] = "",
2241                     [32] = ""}
2242         },
2243         fields = {
2244             formspec = "size[8,9]list[context;main;0,0;8,4;]list[current_player;main;0,5;8,4;]",
2245             infotext = "Chest"
2246         }
2247     })
2248
2249 Item Metadata
2250 -------------
2251
2252 Item stacks can store metadata too. See [`ItemStackMetaRef`].
2253
2254 Item metadata only contains a key-value store.
2255
2256 Some of the values in the key-value store are handled specially:
2257
2258 * `description`: Set the item stack's description.
2259   See also: `get_description` in [`ItemStack`]
2260 * `short_description`: Set the item stack's short description.
2261   See also: `get_short_description` in [`ItemStack`]
2262 * `color`: A `ColorString`, which sets the stack's color.
2263 * `palette_index`: If the item has a palette, this is used to get the
2264   current color from the palette.
2265 * `count_meta`: Replace the displayed count with any string.
2266 * `count_alignment`: Set the alignment of the displayed count value. This is an
2267   int value. The lowest 2 bits specify the alignment in x-direction, the 3rd and
2268   4th bit specify the alignment in y-direction:
2269   0 = default, 1 = left / up, 2 = middle, 3 = right / down
2270   The default currently is the same as right/down.
2271   Example: 6 = 2 + 1*4 = middle,up
2272
2273 Example:
2274
2275     local meta = stack:get_meta()
2276     meta:set_string("key", "value")
2277     print(dump(meta:to_table()))
2278
2279 Example manipulations of "description" and expected output behaviors:
2280
2281     print(ItemStack("default:pick_steel"):get_description()) --> Steel Pickaxe
2282     print(ItemStack("foobar"):get_description()) --> Unknown Item
2283
2284     local stack = ItemStack("default:stone")
2285     stack:get_meta():set_string("description", "Custom description\nAnother line")
2286     print(stack:get_description()) --> Custom description\nAnother line
2287     print(stack:get_short_description()) --> Custom description
2288
2289     stack:get_meta():set_string("short_description", "Short")
2290     print(stack:get_description()) --> Custom description\nAnother line
2291     print(stack:get_short_description()) --> Short
2292
2293     print(ItemStack("mod:item_with_no_desc"):get_description()) --> mod:item_with_no_desc
2294
2295
2296
2297 Formspec
2298 ========
2299
2300 Formspec defines a menu. This supports inventories and some of the
2301 typical widgets like buttons, checkboxes, text input fields, etc.
2302 It is a string, with a somewhat strange format.
2303
2304 A formspec is made out of formspec elements, which includes widgets
2305 like buttons but also can be used to set stuff like background color.
2306
2307 Many formspec elements have a `name`, which is a unique identifier which
2308 is used when the server receives user input. You must not use the name
2309 "quit" for formspec elements.
2310
2311 Spaces and newlines can be inserted between the blocks, as is used in the
2312 examples.
2313
2314 Position and size units are inventory slots unless the new coordinate system
2315 is enabled. `X` and `Y` position the formspec element relative to the top left
2316 of the menu or container. `W` and `H` are its width and height values.
2317
2318 If the new system is enabled, all elements have unified coordinates for all
2319 elements with no padding or spacing in between. This is highly recommended
2320 for new forms. See `real_coordinates[<bool>]` and `Migrating to Real
2321 Coordinates`.
2322
2323 Inventories with a `player:<name>` inventory location are only sent to the
2324 player named `<name>`.
2325
2326 When displaying text which can contain formspec code, e.g. text set by a player,
2327 use `minetest.formspec_escape`.
2328 For colored text you can use `minetest.colorize`.
2329
2330 Since formspec version 3, elements drawn in the order they are defined. All
2331 background elements are drawn before all other elements.
2332
2333 **WARNING**: do _not_ use an element name starting with `key_`; those names are
2334 reserved to pass key press events to formspec!
2335
2336 **WARNING**: Minetest allows you to add elements to every single formspec instance
2337 using `player:set_formspec_prepend()`, which may be the reason backgrounds are
2338 appearing when you don't expect them to, or why things are styled differently
2339 to normal. See [`no_prepend[]`] and [Styling Formspecs].
2340
2341 Examples
2342 --------
2343
2344 ### Chest
2345
2346     size[8,9]
2347     list[context;main;0,0;8,4;]
2348     list[current_player;main;0,5;8,4;]
2349
2350 ### Furnace
2351
2352     size[8,9]
2353     list[context;fuel;2,3;1,1;]
2354     list[context;src;2,1;1,1;]
2355     list[context;dst;5,1;2,2;]
2356     list[current_player;main;0,5;8,4;]
2357
2358 ### Minecraft-like player inventory
2359
2360     size[8,7.5]
2361     image[1,0.6;1,2;player.png]
2362     list[current_player;main;0,3.5;8,4;]
2363     list[current_player;craft;3,0;3,3;]
2364     list[current_player;craftpreview;7,1;1,1;]
2365
2366 Version History
2367 ---------------
2368
2369 * Formspec version 1 (pre-5.1.0):
2370   * (too much)
2371 * Formspec version 2 (5.1.0):
2372   * Forced real coordinates
2373   * background9[]: 9-slice scaling parameters
2374 * Formspec version 3 (5.2.0):
2375   * Formspec elements are drawn in the order of definition
2376   * bgcolor[]: use 3 parameters (bgcolor, formspec (now an enum), fbgcolor)
2377   * box[] and image[] elements enable clipping by default
2378   * new element: scroll_container[]
2379 * Formspec version 4 (5.4.0):
2380   * Allow dropdown indexing events
2381 * Formspec version 5 (5.5.0):
2382   * Added padding[] element
2383 * Formspec version 6 (5.6.0):
2384   * Add nine-slice images, animated_image, and fgimg_middle
2385
2386 Elements
2387 --------
2388
2389 ### `formspec_version[<version>]`
2390
2391 * Set the formspec version to a certain number. If not specified,
2392   version 1 is assumed.
2393 * Must be specified before `size` element.
2394 * Clients older than this version can neither show newer elements nor display
2395   elements with new arguments correctly.
2396 * Available since feature `formspec_version_element`.
2397 * See also: [Version History]
2398
2399 ### `size[<W>,<H>,<fixed_size>]`
2400
2401 * Define the size of the menu in inventory slots
2402 * `fixed_size`: `true`/`false` (optional)
2403 * deprecated: `invsize[<W>,<H>;]`
2404
2405 ### `position[<X>,<Y>]`
2406
2407 * Must be used after `size` element.
2408 * Defines the position on the game window of the formspec's `anchor` point.
2409 * For X and Y, 0.0 and 1.0 represent opposite edges of the game window,
2410   for example:
2411     * [0.0, 0.0] sets the position to the top left corner of the game window.
2412     * [1.0, 1.0] sets the position to the bottom right of the game window.
2413 * Defaults to the center of the game window [0.5, 0.5].
2414
2415 ### `anchor[<X>,<Y>]`
2416
2417 * Must be used after both `size` and `position` (if present) elements.
2418 * Defines the location of the anchor point within the formspec.
2419 * For X and Y, 0.0 and 1.0 represent opposite edges of the formspec,
2420   for example:
2421     * [0.0, 1.0] sets the anchor to the bottom left corner of the formspec.
2422     * [1.0, 0.0] sets the anchor to the top right of the formspec.
2423 * Defaults to the center of the formspec [0.5, 0.5].
2424
2425 * `position` and `anchor` elements need suitable values to avoid a formspec
2426   extending off the game window due to particular game window sizes.
2427
2428 ### `padding[<X>,<Y>]`
2429
2430 * Must be used after the `size`, `position`, and `anchor` elements (if present).
2431 * Defines how much space is padded around the formspec if the formspec tries to
2432   increase past the size of the screen and coordinates have to be shrunk.
2433 * For X and Y, 0.0 represents no padding (the formspec can touch the edge of the
2434   screen), and 0.5 represents half the screen (which forces the coordinate size
2435   to 0). If negative, the formspec can extend off the edge of the screen.
2436 * Defaults to [0.05, 0.05].
2437
2438 ### `no_prepend[]`
2439
2440 * Must be used after the `size`, `position`, `anchor`, and `padding` elements
2441   (if present).
2442 * Disables player:set_formspec_prepend() from applying to this formspec.
2443
2444 ### `real_coordinates[<bool>]`
2445
2446 * INFORMATION: Enable it automatically using `formspec_version` version 2 or newer.
2447 * When set to true, all following formspec elements will use the new coordinate system.
2448 * If used immediately after `size`, `position`, `anchor`, and `no_prepend` elements
2449   (if present), the form size will use the new coordinate system.
2450 * **Note**: Formspec prepends are not affected by the coordinates in the main form.
2451   They must enable it explicitly.
2452 * For information on converting forms to the new coordinate system, see `Migrating
2453   to Real Coordinates`.
2454
2455 ### `container[<X>,<Y>]`
2456
2457 * Start of a container block, moves all physical elements in the container by
2458   (X, Y).
2459 * Must have matching `container_end`
2460 * Containers can be nested, in which case the offsets are added
2461   (child containers are relative to parent containers)
2462
2463 ### `container_end[]`
2464
2465 * End of a container, following elements are no longer relative to this
2466   container.
2467
2468 ### `scroll_container[<X>,<Y>;<W>,<H>;<scrollbar name>;<orientation>;<scroll factor>]`
2469
2470 * Start of a scroll_container block. All contained elements will ...
2471   * take the scroll_container coordinate as position origin,
2472   * be additionally moved by the current value of the scrollbar with the name
2473     `scrollbar name` times `scroll factor` along the orientation `orientation` and
2474   * be clipped to the rectangle defined by `X`, `Y`, `W` and `H`.
2475 * `orientation`: possible values are `vertical` and `horizontal`.
2476 * `scroll factor`: optional, defaults to `0.1`.
2477 * Nesting is possible.
2478 * Some elements might work a little different if they are in a scroll_container.
2479 * Note: If you want the scroll_container to actually work, you also need to add a
2480   scrollbar element with the specified name. Furthermore, it is highly recommended
2481   to use a scrollbaroptions element on this scrollbar.
2482
2483 ### `scroll_container_end[]`
2484
2485 * End of a scroll_container, following elements are no longer bound to this
2486   container.
2487
2488 ### `list[<inventory location>;<list name>;<X>,<Y>;<W>,<H>;<starting item index>]`
2489
2490 * Show an inventory list if it has been sent to the client.
2491 * If the inventory list changes (eg. it didn't exist before, it's resized, or its items
2492   are moved) while the formspec is open, the formspec element may (but is not guaranteed
2493   to) adapt to the new inventory list.
2494 * Item slots are drawn in a grid from left to right, then up to down, ordered
2495   according to the slot index.
2496 * `W` and `H` are in inventory slots, not in coordinates.
2497 * `starting item index` (Optional): The index of the first (upper-left) item to draw.
2498   Indices start at `0`. Default is `0`.
2499 * The number of shown slots is the minimum of `W*H` and the inventory list's size minus
2500   `starting item index`.
2501 * **Note**: With the new coordinate system, the spacing between inventory
2502   slots is one-fourth the size of an inventory slot by default. Also see
2503   [Styling Formspecs] for changing the size of slots and spacing.
2504
2505 ### `listring[<inventory location>;<list name>]`
2506
2507 * Appends to an internal ring of inventory lists.
2508 * Shift-clicking on items in one element of the ring
2509   will send them to the next inventory list inside the ring
2510 * The first occurrence of an element inside the ring will
2511   determine the inventory where items will be sent to
2512
2513 ### `listring[]`
2514
2515 * Shorthand for doing `listring[<inventory location>;<list name>]`
2516   for the last two inventory lists added by list[...]
2517
2518 ### `listcolors[<slot_bg_normal>;<slot_bg_hover>]`
2519
2520 * Sets background color of slots as `ColorString`
2521 * Sets background color of slots on mouse hovering
2522
2523 ### `listcolors[<slot_bg_normal>;<slot_bg_hover>;<slot_border>]`
2524
2525 * Sets background color of slots as `ColorString`
2526 * Sets background color of slots on mouse hovering
2527 * Sets color of slots border
2528
2529 ### `listcolors[<slot_bg_normal>;<slot_bg_hover>;<slot_border>;<tooltip_bgcolor>;<tooltip_fontcolor>]`
2530
2531 * Sets background color of slots as `ColorString`
2532 * Sets background color of slots on mouse hovering
2533 * Sets color of slots border
2534 * Sets default background color of tooltips
2535 * Sets default font color of tooltips
2536
2537 ### `tooltip[<gui_element_name>;<tooltip_text>;<bgcolor>;<fontcolor>]`
2538
2539 * Adds tooltip for an element
2540 * `bgcolor` tooltip background color as `ColorString` (optional)
2541 * `fontcolor` tooltip font color as `ColorString` (optional)
2542
2543 ### `tooltip[<X>,<Y>;<W>,<H>;<tooltip_text>;<bgcolor>;<fontcolor>]`
2544
2545 * Adds tooltip for an area. Other tooltips will take priority when present.
2546 * `bgcolor` tooltip background color as `ColorString` (optional)
2547 * `fontcolor` tooltip font color as `ColorString` (optional)
2548
2549 ### `image[<X>,<Y>;<W>,<H>;<texture name>;<middle>]`
2550
2551 * Show an image.
2552 * `middle` (optional): Makes the image render in 9-sliced mode and defines the middle rect.
2553     * Requires formspec version >= 6.
2554     * See `background9[]` documentation for more information.
2555
2556 ### `animated_image[<X>,<Y>;<W>,<H>;<name>;<texture name>;<frame count>;<frame duration>;<frame start>;<middle>]`
2557
2558 * Show an animated image. The image is drawn like a "vertical_frames" tile
2559   animation (See [Tile animation definition]), but uses a frame count/duration for simplicity
2560 * `name`: Element name to send when an event occurs. The event value is the index of the current frame.
2561 * `texture name`: The image to use.
2562 * `frame count`: The number of frames animating the image.
2563 * `frame duration`: Milliseconds between each frame. `0` means the frames don't advance.
2564 * `frame start` (optional): The index of the frame to start on. Default `1`.
2565 * `middle` (optional): Makes the image render in 9-sliced mode and defines the middle rect.
2566     * Requires formspec version >= 6.
2567     * See `background9[]` documentation for more information.
2568
2569 ### `model[<X>,<Y>;<W>,<H>;<name>;<mesh>;<textures>;<rotation X,Y>;<continuous>;<mouse control>;<frame loop range>;<animation speed>]`
2570
2571 * Show a mesh model.
2572 * `name`: Element name that can be used for styling
2573 * `mesh`: The mesh model to use.
2574 * `textures`: The mesh textures to use according to the mesh materials.
2575    Texture names must be separated by commas.
2576 * `rotation {X,Y}` (Optional): Initial rotation of the camera.
2577   The axes are euler angles in degrees.
2578 * `continuous` (Optional): Whether the rotation is continuous. Default `false`.
2579 * `mouse control` (Optional): Whether the model can be controlled with the mouse. Default `true`.
2580 * `frame loop range` (Optional): Range of the animation frames.
2581     * Defaults to the full range of all available frames.
2582     * Syntax: `<begin>,<end>`
2583 * `animation speed` (Optional): Sets the animation speed. Default 0 FPS.
2584
2585 ### `item_image[<X>,<Y>;<W>,<H>;<item name>]`
2586
2587 * Show an inventory image of registered item/node
2588
2589 ### `bgcolor[<bgcolor>;<fullscreen>;<fbgcolor>]`
2590
2591 * Sets background color of formspec.
2592 * `bgcolor` and `fbgcolor` (optional) are `ColorString`s, they define the color
2593   of the non-fullscreen and the fullscreen background.
2594 * `fullscreen` (optional) can be one of the following:
2595   * `false`: Only the non-fullscreen background color is drawn. (default)
2596   * `true`: Only the fullscreen background color is drawn.
2597   * `both`: The non-fullscreen and the fullscreen background color are drawn.
2598   * `neither`: No background color is drawn.
2599 * Note: Leave a parameter empty to not modify the value.
2600 * Note: `fbgcolor`, leaving parameters empty and values for `fullscreen` that
2601   are not bools are only available since formspec version 3.
2602
2603 ### `background[<X>,<Y>;<W>,<H>;<texture name>]`
2604
2605 * Example for formspec 8x4 in 16x resolution: image shall be sized
2606   8 times 16px  times  4 times 16px.
2607
2608 ### `background[<X>,<Y>;<W>,<H>;<texture name>;<auto_clip>]`
2609
2610 * Example for formspec 8x4 in 16x resolution:
2611   image shall be sized 8 times 16px  times  4 times 16px
2612 * If `auto_clip` is `true`, the background is clipped to the formspec size
2613   (`x` and `y` are used as offset values, `w` and `h` are ignored)
2614
2615 ### `background9[<X>,<Y>;<W>,<H>;<texture name>;<auto_clip>;<middle>]`
2616
2617 * 9-sliced background. See https://en.wikipedia.org/wiki/9-slice_scaling
2618 * Middle is a rect which defines the middle of the 9-slice.
2619     * `x` - The middle will be x pixels from all sides.
2620     * `x,y` - The middle will be x pixels from the horizontal and y from the vertical.
2621     * `x,y,x2,y2` - The middle will start at x,y, and end at x2, y2. Negative x2 and y2 values
2622         will be added to the width and height of the texture, allowing it to be used as the
2623         distance from the far end.
2624     * All numbers in middle are integers.
2625 * If `auto_clip` is `true`, the background is clipped to the formspec size
2626   (`x` and `y` are used as offset values, `w` and `h` are ignored)
2627 * Available since formspec version 2
2628
2629 ### `pwdfield[<X>,<Y>;<W>,<H>;<name>;<label>]`
2630
2631 * Textual password style field; will be sent to server when a button is clicked
2632 * When enter is pressed in field, fields.key_enter_field will be sent with the
2633   name of this field.
2634 * With the old coordinate system, fields are a set height, but will be vertically
2635   centered on `H`. With the new coordinate system, `H` will modify the height.
2636 * `name` is the name of the field as returned in fields to `on_receive_fields`
2637 * `label`, if not blank, will be text printed on the top left above the field
2638 * See `field_close_on_enter` to stop enter closing the formspec
2639
2640 ### `field[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]`
2641
2642 * Textual field; will be sent to server when a button is clicked
2643 * When enter is pressed in field, `fields.key_enter_field` will be sent with
2644   the name of this field.
2645 * With the old coordinate system, fields are a set height, but will be vertically
2646   centered on `H`. With the new coordinate system, `H` will modify the height.
2647 * `name` is the name of the field as returned in fields to `on_receive_fields`
2648 * `label`, if not blank, will be text printed on the top left above the field
2649 * `default` is the default value of the field
2650     * `default` may contain variable references such as `${text}` which
2651       will fill the value from the metadata value `text`
2652     * **Note**: no extra text or more than a single variable is supported ATM.
2653 * See `field_close_on_enter` to stop enter closing the formspec
2654
2655 ### `field[<name>;<label>;<default>]`
2656
2657 * As above, but without position/size units
2658 * When enter is pressed in field, `fields.key_enter_field` will be sent with
2659   the name of this field.
2660 * Special field for creating simple forms, such as sign text input
2661 * Must be used without a `size[]` element
2662 * A "Proceed" button will be added automatically
2663 * See `field_close_on_enter` to stop enter closing the formspec
2664
2665 ### `field_close_on_enter[<name>;<close_on_enter>]`
2666
2667 * <name> is the name of the field
2668 * if <close_on_enter> is false, pressing enter in the field will submit the
2669   form but not close it.
2670 * defaults to true when not specified (ie: no tag for a field)
2671
2672 ### `textarea[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]`
2673
2674 * Same as fields above, but with multi-line input
2675 * If the text overflows, a vertical scrollbar is added.
2676 * If the name is empty, the textarea is read-only and
2677   the background is not shown, which corresponds to a multi-line label.
2678
2679 ### `label[<X>,<Y>;<label>]`
2680
2681 * The label formspec element displays the text set in `label`
2682   at the specified position.
2683 * **Note**: If the new coordinate system is enabled, labels are
2684   positioned from the center of the text, not the top.
2685 * The text is displayed directly without automatic line breaking,
2686   so label should not be used for big text chunks.  Newlines can be
2687   used to make labels multiline.
2688 * **Note**: With the new coordinate system, newlines are spaced with
2689   half a coordinate.  With the old system, newlines are spaced 2/5 of
2690   an inventory slot.
2691
2692 ### `hypertext[<X>,<Y>;<W>,<H>;<name>;<text>]`
2693 * Displays a static formatted text with hyperlinks.
2694 * **Note**: This element is currently unstable and subject to change.
2695 * `x`, `y`, `w` and `h` work as per field
2696 * `name` is the name of the field as returned in fields to `on_receive_fields` in case of action in text.
2697 * `text` is the formatted text using `Markup Language` described below.
2698
2699 ### `vertlabel[<X>,<Y>;<label>]`
2700 * Textual label drawn vertically
2701 * `label` is the text on the label
2702 * **Note**: If the new coordinate system is enabled, vertlabels are
2703   positioned from the center of the text, not the left.
2704
2705 ### `button[<X>,<Y>;<W>,<H>;<name>;<label>]`
2706
2707 * Clickable button. When clicked, fields will be sent.
2708 * With the old coordinate system, buttons are a set height, but will be vertically
2709   centered on `H`. With the new coordinate system, `H` will modify the height.
2710 * `label` is the text on the button
2711
2712 ### `image_button[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>]`
2713
2714 * `texture name` is the filename of an image
2715 * **Note**: Height is supported on both the old and new coordinate systems
2716   for image_buttons.
2717
2718 ### `image_button[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>;<noclip>;<drawborder>;<pressed texture name>]`
2719
2720 * `texture name` is the filename of an image
2721 * `noclip=true` means the image button doesn't need to be within specified
2722   formsize.
2723 * `drawborder`: draw button border or not
2724 * `pressed texture name` is the filename of an image on pressed state
2725
2726 ### `item_image_button[<X>,<Y>;<W>,<H>;<item name>;<name>;<label>]`
2727
2728 * `item name` is the registered name of an item/node
2729 * The item description will be used as the tooltip. This can be overridden with
2730   a tooltip element.
2731
2732 ### `button_exit[<X>,<Y>;<W>,<H>;<name>;<label>]`
2733
2734 * When clicked, fields will be sent and the form will quit.
2735 * Same as `button` in all other respects.
2736
2737 ### `image_button_exit[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>]`
2738
2739 * When clicked, fields will be sent and the form will quit.
2740 * Same as `image_button` in all other respects.
2741
2742 ### `textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>]`
2743
2744 * Scrollable item list showing arbitrary text elements
2745 * `name` fieldname sent to server on doubleclick value is current selected
2746   element.
2747 * `listelements` can be prepended by #color in hexadecimal format RRGGBB
2748   (only).
2749     * if you want a listelement to start with "#" write "##".
2750
2751 ### `textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>;<selected idx>;<transparent>]`
2752
2753 * Scrollable itemlist showing arbitrary text elements
2754 * `name` fieldname sent to server on doubleclick value is current selected
2755   element.
2756 * `listelements` can be prepended by #RRGGBB (only) in hexadecimal format
2757     * if you want a listelement to start with "#" write "##"
2758 * Index to be selected within textlist
2759 * `true`/`false`: draw transparent background
2760 * See also `minetest.explode_textlist_event`
2761   (main menu: `core.explode_textlist_event`).
2762
2763 ### `tabheader[<X>,<Y>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]`
2764
2765 * Show a tab**header** at specific position (ignores formsize)
2766 * `X` and `Y`: position of the tabheader
2767 * *Note*: Width and height are automatically chosen with this syntax
2768 * `name` fieldname data is transferred to Lua
2769 * `caption 1`...: name shown on top of tab
2770 * `current_tab`: index of selected tab 1...
2771 * `transparent` (optional): if true, tabs are semi-transparent
2772 * `draw_border` (optional): if true, draw a thin line at tab base
2773
2774 ### `tabheader[<X>,<Y>;<H>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]`
2775
2776 * Show a tab**header** at specific position (ignores formsize)
2777 * **Important note**: This syntax for tabheaders can only be used with the
2778   new coordinate system.
2779 * `X` and `Y`: position of the tabheader
2780 * `H`: height of the tabheader. Width is automatically determined with this syntax.
2781 * `name` fieldname data is transferred to Lua
2782 * `caption 1`...: name shown on top of tab
2783 * `current_tab`: index of selected tab 1...
2784 * `transparent` (optional): show transparent
2785 * `draw_border` (optional): draw border
2786
2787 ### `tabheader[<X>,<Y>;<W>,<H>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]`
2788
2789 * Show a tab**header** at specific position (ignores formsize)
2790 * **Important note**: This syntax for tabheaders can only be used with the
2791   new coordinate system.
2792 * `X` and `Y`: position of the tabheader
2793 * `W` and `H`: width and height of the tabheader
2794 * `name` fieldname data is transferred to Lua
2795 * `caption 1`...: name shown on top of tab
2796 * `current_tab`: index of selected tab 1...
2797 * `transparent` (optional): show transparent
2798 * `draw_border` (optional): draw border
2799
2800 ### `box[<X>,<Y>;<W>,<H>;<color>]`
2801
2802 * Simple colored box
2803 * `color` is color specified as a `ColorString`.
2804   If the alpha component is left blank, the box will be semitransparent.
2805   If the color is not specified, the box will use the options specified by
2806   its style. If the color is specified, all styling options will be ignored.
2807
2808 ### `dropdown[<X>,<Y>;<W>;<name>;<item 1>,<item 2>, ...,<item n>;<selected idx>;<index event>]`
2809
2810 * Show a dropdown field
2811 * **Important note**: There are two different operation modes:
2812     1. handle directly on change (only changed dropdown is submitted)
2813     2. read the value on pressing a button (all dropdown values are available)
2814 * `X` and `Y`: position of the dropdown
2815 * `W`: width of the dropdown. Height is automatically chosen with this syntax.
2816 * Fieldname data is transferred to Lua
2817 * Items to be shown in dropdown
2818 * Index of currently selected dropdown item
2819 * `index event` (optional, allowed parameter since formspec version 4): Specifies the
2820   event field value for selected items.
2821     * `true`: Selected item index
2822     * `false` (default): Selected item value
2823
2824 ### `dropdown[<X>,<Y>;<W>,<H>;<name>;<item 1>,<item 2>, ...,<item n>;<selected idx>;<index event>]`
2825
2826 * Show a dropdown field
2827 * **Important note**: This syntax for dropdowns can only be used with the
2828   new coordinate system.
2829 * **Important note**: There are two different operation modes:
2830     1. handle directly on change (only changed dropdown is submitted)
2831     2. read the value on pressing a button (all dropdown values are available)
2832 * `X` and `Y`: position of the dropdown
2833 * `W` and `H`: width and height of the dropdown
2834 * Fieldname data is transferred to Lua
2835 * Items to be shown in dropdown
2836 * Index of currently selected dropdown item
2837 * `index event` (optional, allowed parameter since formspec version 4): Specifies the
2838   event field value for selected items.
2839     * `true`: Selected item index
2840     * `false` (default): Selected item value
2841
2842 ### `checkbox[<X>,<Y>;<name>;<label>;<selected>]`
2843
2844 * Show a checkbox
2845 * `name` fieldname data is transferred to Lua
2846 * `label` to be shown left of checkbox
2847 * `selected` (optional): `true`/`false`
2848 * **Note**: If the new coordinate system is enabled, checkboxes are
2849   positioned from the center of the checkbox, not the top.
2850
2851 ### `scrollbar[<X>,<Y>;<W>,<H>;<orientation>;<name>;<value>]`
2852
2853 * Show a scrollbar using options defined by the previous `scrollbaroptions[]`
2854 * There are two ways to use it:
2855     1. handle the changed event (only changed scrollbar is available)
2856     2. read the value on pressing a button (all scrollbars are available)
2857 * `orientation`: `vertical`/`horizontal`. Default horizontal.
2858 * Fieldname data is transferred to Lua
2859 * Value of this trackbar is set to (`0`-`1000`) by default
2860 * See also `minetest.explode_scrollbar_event`
2861   (main menu: `core.explode_scrollbar_event`).
2862
2863 ### `scrollbaroptions[opt1;opt2;...]`
2864 * Sets options for all following `scrollbar[]` elements
2865 * `min=<int>`
2866     * Sets scrollbar minimum value, defaults to `0`.
2867 * `max=<int>`
2868     * Sets scrollbar maximum value, defaults to `1000`.
2869       If the max is equal to the min, the scrollbar will be disabled.
2870 * `smallstep=<int>`
2871     * Sets scrollbar step value when the arrows are clicked or the mouse wheel is
2872       scrolled.
2873     * If this is set to a negative number, the value will be reset to `10`.
2874 * `largestep=<int>`
2875     * Sets scrollbar step value used by page up and page down.
2876     * If this is set to a negative number, the value will be reset to `100`.
2877 * `thumbsize=<int>`
2878     * Sets size of the thumb on the scrollbar. Size is calculated in the number of
2879       units the thumb spans out of the range of the scrollbar values.
2880     * Example: If a scrollbar has a `min` of 1 and a `max` of 100, a thumbsize of 10
2881       would span a tenth of the scrollbar space.
2882     * If this is set to zero or less, the value will be reset to `1`.
2883 * `arrows=<show/hide/default>`
2884     * Whether to show the arrow buttons on the scrollbar. `default` hides the arrows
2885       when the scrollbar gets too small, but shows them otherwise.
2886
2887 ### `table[<X>,<Y>;<W>,<H>;<name>;<cell 1>,<cell 2>,...,<cell n>;<selected idx>]`
2888
2889 * Show scrollable table using options defined by the previous `tableoptions[]`
2890 * Displays cells as defined by the previous `tablecolumns[]`
2891 * `name`: fieldname sent to server on row select or doubleclick
2892 * `cell 1`...`cell n`: cell contents given in row-major order
2893 * `selected idx`: index of row to be selected within table (first row = `1`)
2894 * See also `minetest.explode_table_event`
2895   (main menu: `core.explode_table_event`).
2896
2897 ### `tableoptions[<opt 1>;<opt 2>;...]`
2898
2899 * Sets options for `table[]`
2900 * `color=#RRGGBB`
2901     * default text color (`ColorString`), defaults to `#FFFFFF`
2902 * `background=#RRGGBB`
2903     * table background color (`ColorString`), defaults to `#000000`
2904 * `border=<true/false>`
2905     * should the table be drawn with a border? (default: `true`)
2906 * `highlight=#RRGGBB`
2907     * highlight background color (`ColorString`), defaults to `#466432`
2908 * `highlight_text=#RRGGBB`
2909     * highlight text color (`ColorString`), defaults to `#FFFFFF`
2910 * `opendepth=<value>`
2911     * all subtrees up to `depth < value` are open (default value = `0`)
2912     * only useful when there is a column of type "tree"
2913
2914 ### `tablecolumns[<type 1>,<opt 1a>,<opt 1b>,...;<type 2>,<opt 2a>,<opt 2b>;...]`
2915
2916 * Sets columns for `table[]`
2917 * Types: `text`, `image`, `color`, `indent`, `tree`
2918     * `text`:   show cell contents as text
2919     * `image`:  cell contents are an image index, use column options to define
2920                 images.
2921     * `color`:  cell contents are a ColorString and define color of following
2922                 cell.
2923     * `indent`: cell contents are a number and define indentation of following
2924                 cell.
2925     * `tree`:   same as indent, but user can open and close subtrees
2926                 (treeview-like).
2927 * Column options:
2928     * `align=<value>`
2929         * for `text` and `image`: content alignment within cells.
2930           Available values: `left` (default), `center`, `right`, `inline`
2931     * `width=<value>`
2932         * for `text` and `image`: minimum width in em (default: `0`)
2933         * for `indent` and `tree`: indent width in em (default: `1.5`)
2934     * `padding=<value>`: padding left of the column, in em (default `0.5`).
2935       Exception: defaults to 0 for indent columns
2936     * `tooltip=<value>`: tooltip text (default: empty)
2937     * `image` column options:
2938         * `0=<value>` sets image for image index 0
2939         * `1=<value>` sets image for image index 1
2940         * `2=<value>` sets image for image index 2
2941         * and so on; defined indices need not be contiguous empty or
2942           non-numeric cells are treated as `0`.
2943     * `color` column options:
2944         * `span=<value>`: number of following columns to affect
2945           (default: infinite).
2946
2947 ### `style[<selector 1>,<selector 2>,...;<prop1>;<prop2>;...]`
2948
2949 * Set the style for the element(s) matching `selector` by name.
2950 * `selector` can be one of:
2951     * `<name>` - An element name. Includes `*`, which represents every element.
2952     * `<name>:<state>` - An element name, a colon, and one or more states.
2953 * `state` is a list of states separated by the `+` character.
2954     * If a state is provided, the style will only take effect when the element is in that state.
2955     * All provided states must be active for the style to apply.
2956 * Note: this **must** be before the element is defined.
2957 * See [Styling Formspecs].
2958
2959
2960 ### `style_type[<selector 1>,<selector 2>,...;<prop1>;<prop2>;...]`
2961
2962 * Set the style for the element(s) matching `selector` by type.
2963 * `selector` can be one of:
2964     * `<type>` - An element type. Includes `*`, which represents every element.
2965     * `<type>:<state>` - An element type, a colon, and one or more states.
2966 * `state` is a list of states separated by the `+` character.
2967     * If a state is provided, the style will only take effect when the element is in that state.
2968     * All provided states must be active for the style to apply.
2969 * See [Styling Formspecs].
2970
2971 ### `set_focus[<name>;<force>]`
2972
2973 * Sets the focus to the element with the same `name` parameter.
2974 * **Note**: This element must be placed before the element it focuses.
2975 * `force` (optional, default `false`): By default, focus is not applied for
2976   re-sent formspecs with the same name so that player-set focus is kept.
2977   `true` sets the focus to the specified element for every sent formspec.
2978 * The following elements have the ability to be focused:
2979     * checkbox
2980     * button
2981     * button_exit
2982     * image_button
2983     * image_button_exit
2984     * item_image_button
2985     * table
2986     * textlist
2987     * dropdown
2988     * field
2989     * pwdfield
2990     * textarea
2991     * scrollbar
2992
2993 Migrating to Real Coordinates
2994 -----------------------------
2995
2996 In the old system, positions included padding and spacing. Padding is a gap between
2997 the formspec window edges and content, and spacing is the gaps between items. For
2998 example, two `1x1` elements at `0,0` and `1,1` would have a spacing of `5/4` between them,
2999 and a padding of `3/8` from the formspec edge. It may be easiest to recreate old layouts
3000 in the new coordinate system from scratch.
3001
3002 To recreate an old layout with padding, you'll need to pass the positions and sizes
3003 through the following formula to re-introduce padding:
3004
3005 ```
3006 pos = (oldpos + 1)*spacing + padding
3007 where
3008     padding = 3/8
3009     spacing = 5/4
3010 ```
3011
3012 You'll need to change the `size[]` tag like this:
3013
3014 ```
3015 size = (oldsize-1)*spacing + padding*2 + 1
3016 ```
3017
3018 A few elements had random offsets in the old system. Here is a table which shows these
3019 offsets when migrating:
3020
3021 | Element |  Position  |  Size   | Notes
3022 |---------|------------|---------|-------
3023 | box     | +0.3, +0.1 | 0, -0.4 |
3024 | button  |            |         | Buttons now support height, so set h = 2 * 15/13 * 0.35, and reposition if h ~= 15/13 * 0.35 before
3025 | list    |            |         | Spacing is now 0.25 for both directions, meaning lists will be taller in height
3026 | label   | 0, +0.3    |         | The first line of text is now positioned centered exactly at the position specified
3027
3028 Styling Formspecs
3029 -----------------
3030
3031 Formspec elements can be themed using the style elements:
3032
3033     style[<name 1>,<name 2>,...;<prop1>;<prop2>;...]
3034     style[<name 1>:<state>,<name 2>:<state>,...;<prop1>;<prop2>;...]
3035     style_type[<type 1>,<type 2>,...;<prop1>;<prop2>;...]
3036     style_type[<type 1>:<state>,<type 2>:<state>,...;<prop1>;<prop2>;...]
3037
3038 Where a prop is:
3039
3040     property_name=property_value
3041
3042 For example:
3043
3044     style_type[button;bgcolor=#006699]
3045     style[world_delete;bgcolor=red;textcolor=yellow]
3046     button[4,3.95;2.6,1;world_delete;Delete]
3047
3048 A name/type can optionally be a comma separated list of names/types, like so:
3049
3050     world_delete,world_create,world_configure
3051     button,image_button
3052
3053 A `*` type can be used to select every element in the formspec.
3054
3055 Any name/type in the list can also be accompanied by a `+`-separated list of states, like so:
3056
3057     world_delete:hovered+pressed
3058     button:pressed
3059
3060 States allow you to apply styles in response to changes in the element, instead of applying at all times.
3061
3062 Setting a property to nothing will reset it to the default value. For example:
3063
3064     style_type[button;bgimg=button.png;bgimg_pressed=button_pressed.png;border=false]
3065     style[btn_exit;bgimg=;bgimg_pressed=;border=;bgcolor=red]
3066
3067
3068 ### Supported Element Types
3069
3070 Some types may inherit styles from parent types.
3071
3072 * animated_image, inherits from image
3073 * box
3074 * button
3075 * button_exit, inherits from button
3076 * checkbox
3077 * dropdown
3078 * field
3079 * image
3080 * image_button
3081 * item_image_button
3082 * label
3083 * list
3084 * model
3085 * pwdfield, inherits from field
3086 * scrollbar
3087 * tabheader
3088 * table
3089 * textarea
3090 * textlist
3091 * vertlabel, inherits from label
3092
3093
3094 ### Valid Properties
3095
3096 * animated_image
3097     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3098 * box
3099     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3100         * Defaults to false in formspec_version version 3 or higher
3101     * **Note**: `colors`, `bordercolors`, and `borderwidths` accept multiple input types:
3102         * Single value (e.g. `#FF0`): All corners/borders.
3103         * Two values (e.g. `red,#FFAAFF`): top-left and bottom-right,top-right and bottom-left/
3104           top and bottom,left and right.
3105         * Four values (e.g. `blue,#A0F,green,#FFFA`): top-left/top and rotates clockwise.
3106         * These work similarly to CSS borders.
3107     * colors - `ColorString`. Sets the color(s) of the box corners. Default `black`.
3108     * bordercolors - `ColorString`. Sets the color(s) of the borders. Default `black`.
3109     * borderwidths - Integer. Sets the width(s) of the borders in pixels. If the width is
3110       negative, the border will extend inside the box, whereas positive extends outside
3111       the box. A width of zero results in no border; this is default.
3112 * button, button_exit, image_button, item_image_button
3113     * alpha - boolean, whether to draw alpha in bgimg. Default true.
3114     * bgcolor - color, sets button tint.
3115     * bgcolor_hovered - color when hovered. Defaults to a lighter bgcolor when not provided.
3116         * This is deprecated, use states instead.
3117     * bgcolor_pressed - color when pressed. Defaults to a darker bgcolor when not provided.
3118         * This is deprecated, use states instead.
3119     * bgimg - standard background image. Defaults to none.
3120     * bgimg_hovered - background image when hovered. Defaults to bgimg when not provided.
3121         * This is deprecated, use states instead.
3122     * bgimg_middle - Makes the bgimg textures render in 9-sliced mode and defines the middle rect.
3123                      See background9[] documentation for more details. This property also pads the
3124                      button's content when set.
3125     * bgimg_pressed - background image when pressed. Defaults to bgimg when not provided.
3126         * This is deprecated, use states instead.
3127     * font - Sets font type. This is a comma separated list of options. Valid options:
3128       * Main font type options. These cannot be combined with each other:
3129         * `normal`: Default font
3130         * `mono`: Monospaced font
3131       * Font modification options. If used without a main font type, `normal` is used:
3132         * `bold`: Makes font bold.
3133         * `italic`: Makes font italic.
3134       Default `normal`.
3135     * font_size - Sets font size. Default is user-set. Can have multiple values:
3136       * `<number>`: Sets absolute font size to `number`.
3137       * `+<number>`/`-<number>`: Offsets default font size by `number` points.
3138       * `*<number>`: Multiplies default font size by `number`, similar to CSS `em`.
3139     * border - boolean, draw border. Set to false to hide the bevelled button pane. Default true.
3140     * content_offset - 2d vector, shifts the position of the button's content without resizing it.
3141     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3142     * padding - rect, adds space between the edges of the button and the content. This value is
3143                 relative to bgimg_middle.
3144     * sound - a sound to be played when triggered.
3145     * textcolor - color, default white.
3146 * checkbox
3147     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3148     * sound - a sound to be played when triggered.
3149 * dropdown
3150     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3151     * sound - a sound to be played when the entry is changed.
3152 * field, pwdfield, textarea
3153     * border - set to false to hide the textbox background and border. Default true.
3154     * font - Sets font type. See button `font` property for more information.
3155     * font_size - Sets font size. See button `font_size` property for more information.
3156     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3157     * textcolor - color. Default white.
3158 * model
3159     * bgcolor - color, sets background color.
3160     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3161         * Default to false in formspec_version version 3 or higher
3162 * image
3163     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3164         * Default to false in formspec_version version 3 or higher
3165 * item_image
3166     * noclip - boolean, set to true to allow the element to exceed formspec bounds. Default to false.
3167 * label, vertlabel
3168     * font - Sets font type. See button `font` property for more information.
3169     * font_size - Sets font size. See button `font_size` property for more information.
3170     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3171 * list
3172     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3173     * size - 2d vector, sets the size of inventory slots in coordinates.
3174     * spacing - 2d vector, sets the space between inventory slots in coordinates.
3175 * image_button (additional properties)
3176     * fgimg - standard image. Defaults to none.
3177     * fgimg_hovered - image when hovered. Defaults to fgimg when not provided.
3178         * This is deprecated, use states instead.
3179     * fgimg_pressed - image when pressed. Defaults to fgimg when not provided.
3180         * This is deprecated, use states instead.
3181     * fgimg_middle - Makes the fgimg textures render in 9-sliced mode and defines the middle rect.
3182                      See background9[] documentation for more details.
3183     * NOTE: The parameters of any given image_button will take precedence over fgimg/fgimg_pressed
3184     * sound - a sound to be played when triggered.
3185 * scrollbar
3186     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3187 * tabheader
3188     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3189     * sound - a sound to be played when a different tab is selected.
3190     * textcolor - color. Default white.
3191 * table, textlist
3192     * font - Sets font type. See button `font` property for more information.
3193     * font_size - Sets font size. See button `font_size` property for more information.
3194     * noclip - boolean, set to true to allow the element to exceed formspec bounds.
3195
3196 ### Valid States
3197
3198 * *all elements*
3199     * default - Equivalent to providing no states
3200 * button, button_exit, image_button, item_image_button
3201     * hovered - Active when the mouse is hovering over the element
3202     * pressed - Active when the button is pressed
3203
3204 Markup Language
3205 ---------------
3206
3207 Markup language used in `hypertext[]` elements uses tags that look like HTML tags.
3208 The markup language is currently unstable and subject to change. Use with caution.
3209 Some tags can enclose text, they open with `<tagname>` and close with `</tagname>`.
3210 Tags can have attributes, in that case, attributes are in the opening tag in
3211 form of a key/value separated with equal signs. Attribute values should not be quoted.
3212
3213 If you want to insert a literal greater-than sign or a backslash into the text,
3214 you must escape it by preceding it with a backslash.
3215
3216 These are the technically basic tags but see below for usual tags. Base tags are:
3217
3218 `<style color=... font=... size=...>...</style>`
3219
3220 Changes the style of the text.
3221
3222 * `color`: Text color. Given color is a `colorspec`.
3223 * `size`: Text size.
3224 * `font`: Text font (`mono` or `normal`).
3225
3226 `<global background=... margin=... valign=... color=... hovercolor=... size=... font=... halign=... >`
3227
3228 Sets global style.
3229
3230 Global only styles:
3231 * `background`: Text background, a `colorspec` or `none`.
3232 * `margin`: Page margins in pixel.
3233 * `valign`: Text vertical alignment (`top`, `middle`, `bottom`).
3234
3235 Inheriting styles (affects child elements):
3236 * `color`: Default text color. Given color is a `colorspec`.
3237 * `hovercolor`: Color of <action> tags when mouse is over.
3238 * `size`: Default text size.
3239 * `font`: Default text font (`mono` or `normal`).
3240 * `halign`: Default text horizontal alignment (`left`, `right`, `center`, `justify`).
3241
3242 This tag needs to be placed only once as it changes the global settings of the
3243 text. Anyway, if several tags are placed, each changed will be made in the order
3244 tags appear.
3245
3246 `<tag name=... color=... hovercolor=... font=... size=...>`
3247
3248 Defines or redefines tag style. This can be used to define new tags.
3249 * `name`: Name of the tag to define or change.
3250 * `color`: Text color. Given color is a `colorspec`.
3251 * `hovercolor`: Text color when element hovered (only for `action` tags). Given color is a `colorspec`.
3252 * `size`: Text size.
3253 * `font`: Text font (`mono` or `normal`).
3254
3255 Following tags are the usual tags for text layout. They are defined by default.
3256 Other tags can be added using `<tag ...>` tag.
3257
3258 `<normal>...</normal>`: Normal size text
3259
3260 `<big>...</big>`: Big text
3261
3262 `<bigger>...</bigger>`: Bigger text
3263
3264 `<center>...</center>`: Centered text
3265
3266 `<left>...</left>`: Left-aligned text
3267
3268 `<right>...</right>`: Right-aligned text
3269
3270 `<justify>...</justify>`: Justified text
3271
3272 `<mono>...</mono>`: Monospaced font
3273
3274 `<b>...</b>`, `<i>...</i>`, `<u>...</u>`: Bold, italic, underline styles.
3275
3276 `<action name=...>...</action>`
3277
3278 Make that text a clickable text triggering an action.
3279
3280 * `name`: Name of the action (mandatory).
3281
3282 When clicked, the formspec is send to the server. The value of the text field
3283 sent to `on_player_receive_fields` will be "action:" concatenated to the action
3284 name.
3285
3286 `<img name=... float=... width=... height=...>`
3287
3288 Draws an image which is present in the client media cache.
3289
3290 * `name`: Name of the texture (mandatory).
3291 * `float`: If present, makes the image floating (`left` or `right`).
3292 * `width`: Force image width instead of taking texture width.
3293 * `height`: Force image height instead of taking texture height.
3294
3295 If only width or height given, texture aspect is kept.
3296
3297 `<item name=... float=... width=... height=... rotate=...>`
3298
3299 Draws an item image.
3300
3301 * `name`: Item string of the item to draw (mandatory).
3302 * `float`: If present, makes the image floating (`left` or `right`).
3303 * `width`: Item image width.
3304 * `height`: Item image height.
3305 * `rotate`: Rotate item image if set to `yes` or `X,Y,Z`. X, Y and Z being
3306 rotation speeds in percent of standard speed (-1000 to 1000). Works only if
3307 `inventory_items_animations` is set to true.
3308 * `angle`: Angle in which the item image is shown. Value has `X,Y,Z` form.
3309 X, Y and Z being angles around each three axes. Works only if
3310 `inventory_items_animations` is set to true.
3311
3312 Inventory
3313 =========
3314
3315 Inventory locations
3316 -------------------
3317
3318 * `"context"`: Selected node metadata (deprecated: `"current_name"`)
3319 * `"current_player"`: Player to whom the menu is shown
3320 * `"player:<name>"`: Any player
3321 * `"nodemeta:<X>,<Y>,<Z>"`: Any node metadata
3322 * `"detached:<name>"`: A detached inventory
3323
3324 Player Inventory lists
3325 ----------------------
3326
3327 * `main`: list containing the default inventory
3328 * `craft`: list containing the craft input
3329 * `craftpreview`: list containing the craft prediction
3330 * `craftresult`: list containing the crafted output
3331 * `hand`: list containing an override for the empty hand
3332     * Is not created automatically, use `InvRef:set_size`
3333     * Is only used to enhance the empty hand's tool capabilities
3334
3335 Colors
3336 ======
3337
3338 `ColorString`
3339 -------------
3340
3341 `#RGB` defines a color in hexadecimal format.
3342
3343 `#RGBA` defines a color in hexadecimal format and alpha channel.
3344
3345 `#RRGGBB` defines a color in hexadecimal format.
3346
3347 `#RRGGBBAA` defines a color in hexadecimal format and alpha channel.
3348
3349 Named colors are also supported and are equivalent to
3350 [CSS Color Module Level 4](https://www.w3.org/TR/css-color-4/#named-color).
3351 To specify the value of the alpha channel, append `#A` or `#AA` to the end of
3352 the color name (e.g. `colorname#08`).
3353
3354 `ColorSpec`
3355 -----------
3356
3357 A ColorSpec specifies a 32-bit color. It can be written in any of the following
3358 forms:
3359
3360 * table form: Each element ranging from 0..255 (a, if absent, defaults to 255):
3361     * `colorspec = {a=255, r=0, g=255, b=0}`
3362 * numerical form: The raw integer value of an ARGB8 quad:
3363     * `colorspec = 0xFF00FF00`
3364 * string form: A ColorString (defined above):
3365     * `colorspec = "green"`
3366
3367
3368
3369
3370 Escape sequences
3371 ================
3372
3373 Most text can contain escape sequences, that can for example color the text.
3374 There are a few exceptions: tab headers, dropdowns and vertical labels can't.
3375 The following functions provide escape sequences:
3376
3377 * `minetest.get_color_escape_sequence(color)`:
3378     * `color` is a ColorString
3379     * The escape sequence sets the text color to `color`
3380 * `minetest.colorize(color, message)`:
3381     * Equivalent to:
3382       `minetest.get_color_escape_sequence(color) ..
3383       message ..
3384       minetest.get_color_escape_sequence("#ffffff")`
3385 * `minetest.get_background_escape_sequence(color)`
3386     * `color` is a ColorString
3387     * The escape sequence sets the background of the whole text element to
3388       `color`. Only defined for item descriptions and tooltips.
3389 * `minetest.strip_foreground_colors(str)`
3390     * Removes foreground colors added by `get_color_escape_sequence`.
3391 * `minetest.strip_background_colors(str)`
3392     * Removes background colors added by `get_background_escape_sequence`.
3393 * `minetest.strip_colors(str)`
3394     * Removes all color escape sequences.
3395
3396
3397
3398
3399 Spatial Vectors
3400 ===============
3401
3402 Minetest stores 3-dimensional spatial vectors in Lua as tables of 3 coordinates,
3403 and has a class to represent them (`vector.*`), which this chapter is about.
3404 For details on what a spatial vectors is, please refer to Wikipedia:
3405 https://en.wikipedia.org/wiki/Euclidean_vector.
3406
3407 Spatial vectors are used for various things, including, but not limited to:
3408
3409 * any 3D spatial vector (x/y/z-directions)
3410 * Euler angles (pitch/yaw/roll in radians) (Spatial vectors have no real semantic
3411   meaning here. Therefore, most vector operations make no sense in this use case.)
3412
3413 Note that they are *not* used for:
3414
3415 * n-dimensional vectors where n is not 3 (ie. n=2)
3416 * arrays of the form `{num, num, num}`
3417
3418 The API documentation may refer to spatial vectors, as produced by `vector.new`,
3419 by any of the following notations:
3420
3421 * `(x, y, z)` (Used rarely, and only if it's clear that it's a vector.)
3422 * `vector.new(x, y, z)`
3423 * `{x=num, y=num, z=num}` (Even here you are still supposed to use `vector.new`.)
3424
3425 Compatibility notes
3426 -------------------
3427
3428 Vectors used to be defined as tables of the form `{x = num, y = num, z = num}`.
3429 Since Minetest 5.5.0, vectors additionally have a metatable to enable easier use.
3430 Note: Those old-style vectors can still be found in old mod code. Hence, mod and
3431 engine APIs still need to be able to cope with them in many places.
3432
3433 Manually constructed tables are deprecated and highly discouraged. This interface
3434 should be used to ensure seamless compatibility between mods and the Minetest API.
3435 This is especially important to callback function parameters and functions overwritten
3436 by mods.
3437 Also, though not likely, the internal implementation of a vector might change in
3438 the future.
3439 In your own code, or if you define your own API, you can, of course, still use
3440 other representations of vectors.
3441
3442 Vectors provided by API functions will provide an instance of this class if not
3443 stated otherwise. Mods should adapt this for convenience reasons.
3444
3445 Special properties of the class
3446 -------------------------------
3447
3448 Vectors can be indexed with numbers and allow method and operator syntax.
3449
3450 All these forms of addressing a vector `v` are valid:
3451 `v[1]`, `v[3]`, `v.x`, `v[1] = 42`, `v.y = 13`
3452 Note: Prefer letter over number indexing for performance and compatibility reasons.
3453
3454 Where `v` is a vector and `foo` stands for any function name, `v:foo(...)` does
3455 the same as `vector.foo(v, ...)`, apart from deprecated functionality.
3456
3457 `tostring` is defined for vectors, see `vector.to_string`.
3458
3459 The metatable that is used for vectors can be accessed via `vector.metatable`.
3460 Do not modify it!
3461
3462 All `vector.*` functions allow vectors `{x = X, y = Y, z = Z}` without metatables.
3463 Returned vectors always have a metatable set.
3464
3465 Common functions and methods
3466 ----------------------------
3467
3468 For the following functions (and subchapters),
3469 `v`, `v1`, `v2` are vectors,
3470 `p1`, `p2` are position vectors,
3471 `s` is a scalar (a number),
3472 vectors are written like this: `(x, y, z)`:
3473
3474 * `vector.new([a[, b, c]])`:
3475     * Returns a new vector `(a, b, c)`.
3476     * Deprecated: `vector.new()` does the same as `vector.zero()` and
3477       `vector.new(v)` does the same as `vector.copy(v)`
3478 * `vector.zero()`:
3479     * Returns a new vector `(0, 0, 0)`.
3480 * `vector.copy(v)`:
3481     * Returns a copy of the vector `v`.
3482 * `vector.from_string(s[, init])`:
3483     * Returns `v, np`, where `v` is a vector read from the given string `s` and
3484       `np` is the next position in the string after the vector.
3485     * Returns `nil` on failure.
3486     * `s`: Has to begin with a substring of the form `"(x, y, z)"`. Additional
3487            spaces, leaving away commas and adding an additional comma to the end
3488            is allowed.
3489     * `init`: If given starts looking for the vector at this string index.
3490 * `vector.to_string(v)`:
3491     * Returns a string of the form `"(x, y, z)"`.
3492     *  `tostring(v)` does the same.
3493 * `vector.direction(p1, p2)`:
3494     * Returns a vector of length 1 with direction `p1` to `p2`.
3495     * If `p1` and `p2` are identical, returns `(0, 0, 0)`.
3496 * `vector.distance(p1, p2)`:
3497     * Returns zero or a positive number, the distance between `p1` and `p2`.
3498 * `vector.length(v)`:
3499     * Returns zero or a positive number, the length of vector `v`.
3500 * `vector.normalize(v)`:
3501     * Returns a vector of length 1 with direction of vector `v`.
3502     * If `v` has zero length, returns `(0, 0, 0)`.
3503 * `vector.floor(v)`:
3504     * Returns a vector, each dimension rounded down.
3505 * `vector.round(v)`:
3506     * Returns a vector, each dimension rounded to nearest integer.
3507     * At a multiple of 0.5, rounds away from zero.
3508 * `vector.apply(v, func)`:
3509     * Returns a vector where the function `func` has been applied to each
3510       component.
3511 * `vector.combine(v, w, func)`:
3512         * Returns a vector where the function `func` has combined both components of `v` and `w`
3513           for each component
3514 * `vector.equals(v1, v2)`:
3515     * Returns a boolean, `true` if the vectors are identical.
3516 * `vector.sort(v1, v2)`:
3517     * Returns in order minp, maxp vectors of the cuboid defined by `v1`, `v2`.
3518 * `vector.angle(v1, v2)`:
3519     * Returns the angle between `v1` and `v2` in radians.
3520 * `vector.dot(v1, v2)`:
3521     * Returns the dot product of `v1` and `v2`.
3522 * `vector.cross(v1, v2)`:
3523     * Returns the cross product of `v1` and `v2`.
3524 * `vector.offset(v, x, y, z)`:
3525     * Returns the sum of the vectors `v` and `(x, y, z)`.
3526 * `vector.check(v)`:
3527     * Returns a boolean value indicating whether `v` is a real vector, eg. created
3528       by a `vector.*` function.
3529     * Returns `false` for anything else, including tables like `{x=3,y=1,z=4}`.
3530
3531 For the following functions `x` can be either a vector or a number:
3532
3533 * `vector.add(v, x)`:
3534     * Returns a vector.
3535     * If `x` is a vector: Returns the sum of `v` and `x`.
3536     * If `x` is a number: Adds `x` to each component of `v`.
3537 * `vector.subtract(v, x)`:
3538     * Returns a vector.
3539     * If `x` is a vector: Returns the difference of `v` subtracted by `x`.
3540     * If `x` is a number: Subtracts `x` from each component of `v`.
3541 * `vector.multiply(v, s)`:
3542     * Returns a scaled vector.
3543     * Deprecated: If `s` is a vector: Returns the Schur product.
3544 * `vector.divide(v, s)`:
3545     * Returns a scaled vector.
3546     * Deprecated: If `s` is a vector: Returns the Schur quotient.
3547
3548 Operators
3549 ---------
3550
3551 Operators can be used if all of the involved vectors have metatables:
3552 * `v1 == v2`:
3553     * Returns whether `v1` and `v2` are identical.
3554 * `-v`:
3555     * Returns the additive inverse of v.
3556 * `v1 + v2`:
3557     * Returns the sum of both vectors.
3558     * Note: `+` cannot be used together with scalars.
3559 * `v1 - v2`:
3560     * Returns the difference of `v1` subtracted by `v2`.
3561     * Note: `-` cannot be used together with scalars.
3562 * `v * s` or `s * v`:
3563     * Returns `v` scaled by `s`.
3564 * `v / s`:
3565     * Returns `v` scaled by `1 / s`.
3566
3567 Rotation-related functions
3568 --------------------------
3569
3570 For the following functions `a` is an angle in radians and `r` is a rotation
3571 vector (`{x = <pitch>, y = <yaw>, z = <roll>}`) where pitch, yaw and roll are
3572 angles in radians.
3573
3574 * `vector.rotate(v, r)`:
3575     * Applies the rotation `r` to `v` and returns the result.
3576     * `vector.rotate(vector.new(0, 0, 1), r)` and
3577       `vector.rotate(vector.new(0, 1, 0), r)` return vectors pointing
3578       forward and up relative to an entity's rotation `r`.
3579 * `vector.rotate_around_axis(v1, v2, a)`:
3580     * Returns `v1` rotated around axis `v2` by `a` radians according to
3581       the right hand rule.
3582 * `vector.dir_to_rotation(direction[, up])`:
3583     * Returns a rotation vector for `direction` pointing forward using `up`
3584       as the up vector.
3585     * If `up` is omitted, the roll of the returned vector defaults to zero.
3586     * Otherwise `direction` and `up` need to be vectors in a 90 degree angle to each other.
3587
3588 Further helpers
3589 ---------------
3590
3591 There are more helper functions involving vectors, but they are listed elsewhere
3592 because they only work on specific sorts of vectors or involve things that are not
3593 vectors.
3594
3595 For example:
3596
3597 * `minetest.hash_node_position` (Only works on node positions.)
3598 * `minetest.dir_to_wallmounted` (Involves wallmounted param2 values.)
3599
3600
3601
3602
3603 Helper functions
3604 ================
3605
3606 * `dump2(obj, name, dumped)`: returns a string which makes `obj`
3607   human-readable, handles reference loops.
3608     * `obj`: arbitrary variable
3609     * `name`: string, default: `"_"`
3610     * `dumped`: table, default: `{}`
3611 * `dump(obj, dumped)`: returns a string which makes `obj` human-readable
3612     * `obj`: arbitrary variable
3613     * `dumped`: table, default: `{}`
3614 * `math.hypot(x, y)`
3615     * Get the hypotenuse of a triangle with legs x and y.
3616       Useful for distance calculation.
3617 * `math.sign(x, tolerance)`: returns `-1`, `0` or `1`
3618     * Get the sign of a number.
3619     * tolerance: number, default: `0.0`
3620     * If the absolute value of `x` is within the `tolerance` or `x` is NaN,
3621       `0` is returned.
3622 * `math.factorial(x)`: returns the factorial of `x`
3623 * `math.round(x)`: Returns `x` rounded to the nearest integer.
3624     * At a multiple of 0.5, rounds away from zero.
3625 * `string.split(str, separator, include_empty, max_splits, sep_is_pattern)`
3626     * `separator`: string, default: `","`
3627     * `include_empty`: boolean, default: `false`
3628     * `max_splits`: number, if it's negative, splits aren't limited,
3629       default: `-1`
3630     * `sep_is_pattern`: boolean, it specifies whether separator is a plain
3631       string or a pattern (regex), default: `false`
3632     * e.g. `"a,b":split","` returns `{"a","b"}`
3633 * `string:trim()`: returns the string without whitespace pre- and suffixes
3634     * e.g. `"\n \t\tfoo bar\t ":trim()` returns `"foo bar"`
3635 * `minetest.wrap_text(str, limit, as_table)`: returns a string or table
3636     * Adds newlines to the string to keep it within the specified character
3637       limit
3638     * Note that the returned lines may be longer than the limit since it only
3639       splits at word borders.
3640     * `limit`: number, maximal amount of characters in one line
3641     * `as_table`: boolean, if set to true, a table of lines instead of a string
3642       is returned, default: `false`
3643 * `minetest.pos_to_string(pos, decimal_places)`: returns string `"(X,Y,Z)"`
3644     * `pos`: table {x=X, y=Y, z=Z}
3645     * Converts the position `pos` to a human-readable, printable string
3646     * `decimal_places`: number, if specified, the x, y and z values of
3647       the position are rounded to the given decimal place.
3648 * `minetest.string_to_pos(string)`: returns a position or `nil`
3649     * Same but in reverse.
3650     * If the string can't be parsed to a position, nothing is returned.
3651 * `minetest.string_to_area("(X1, Y1, Z1) (X2, Y2, Z2)", relative_to)`:
3652     * returns two positions
3653     * Converts a string representing an area box into two positions
3654     * X1, Y1, ... Z2 are coordinates
3655     * `relative_to`: Optional. If set to a position, each coordinate
3656       can use the tilde notation for relative positions
3657     * Tilde notation: "~": Relative coordinate
3658                       "~<number>": Relative coordinate plus <number>
3659     * Example: `minetest.string_to_area("(1,2,3) (~5,~-5,~)", {x=10,y=10,z=10})`
3660       returns `{x=1,y=2,z=3}, {x=15,y=5,z=10}`
3661 * `minetest.formspec_escape(string)`: returns a string
3662     * escapes the characters "[", "]", "\", "," and ";", which cannot be used
3663       in formspecs.
3664 * `minetest.is_yes(arg)`
3665     * returns true if passed 'y', 'yes', 'true' or a number that isn't zero.
3666 * `minetest.is_nan(arg)`
3667     * returns true when the passed number represents NaN.
3668 * `minetest.get_us_time()`
3669     * returns time with microsecond precision. May not return wall time.
3670 * `table.copy(table)`: returns a table
3671     * returns a deep copy of `table`
3672 * `table.indexof(list, val)`: returns the smallest numerical index containing
3673       the value `val` in the table `list`. Non-numerical indices are ignored.
3674       If `val` could not be found, `-1` is returned. `list` must not have
3675       negative indices.
3676 * `table.insert_all(table, other_table)`:
3677     * Appends all values in `other_table` to `table` - uses `#table + 1` to
3678       find new indices.
3679 * `table.key_value_swap(t)`: returns a table with keys and values swapped
3680     * If multiple keys in `t` map to the same value, it is unspecified which
3681       value maps to that key.
3682 * `table.shuffle(table, [from], [to], [random_func])`:
3683     * Shuffles elements `from` to `to` in `table` in place
3684     * `from` defaults to `1`
3685     * `to` defaults to `#table`
3686     * `random_func` defaults to `math.random`. This function receives two
3687       integers as arguments and should return a random integer inclusively
3688       between them.
3689 * `minetest.pointed_thing_to_face_pos(placer, pointed_thing)`: returns a
3690   position.
3691     * returns the exact position on the surface of a pointed node
3692 * `minetest.get_tool_wear_after_use(uses [, initial_wear])`
3693     * Simulates a tool being used once and returns the added wear,
3694       such that, if only this function is used to calculate wear,
3695       the tool will break exactly after `uses` times of uses
3696     * `uses`: Number of times the tool can be used
3697     * `initial_wear`: The initial wear the tool starts with (default: 0)
3698 * `minetest.get_dig_params(groups, tool_capabilities [, wear])`:
3699     Simulates an item that digs a node.
3700     Returns a table with the following fields:
3701     * `diggable`: `true` if node can be dug, `false` otherwise.
3702     * `time`: Time it would take to dig the node.
3703     * `wear`: How much wear would be added to the tool (ignored for non-tools).
3704     `time` and `wear` are meaningless if node's not diggable
3705     Parameters:
3706     * `groups`: Table of the node groups of the node that would be dug
3707     * `tool_capabilities`: Tool capabilities table of the item
3708     * `wear`: Amount of wear the tool starts with (default: 0)
3709 * `minetest.get_hit_params(groups, tool_capabilities [, time_from_last_punch [, wear]])`:
3710     Simulates an item that punches an object.
3711     Returns a table with the following fields:
3712     * `hp`: How much damage the punch would cause (between -65535 and 65535).
3713     * `wear`: How much wear would be added to the tool (ignored for non-tools).
3714     Parameters:
3715     * `groups`: Damage groups of the object
3716     * `tool_capabilities`: Tool capabilities table of the item
3717     * `time_from_last_punch`: time in seconds since last punch action
3718     * `wear`: Amount of wear the item starts with (default: 0)
3719
3720
3721
3722
3723 Translations
3724 ============
3725
3726 Texts can be translated client-side with the help of `minetest.translate` and
3727 translation files.
3728
3729 Consider using the tool [update_translations](https://github.com/minetest-tools/update_translations)
3730 to generate and update translation files automatically from the Lua source.
3731
3732 Translating a string
3733 --------------------
3734
3735 Two functions are provided to translate strings: `minetest.translate` and
3736 `minetest.get_translator`.
3737
3738 * `minetest.get_translator(textdomain)` is a simple wrapper around
3739   `minetest.translate`, and `minetest.get_translator(textdomain)(str, ...)` is
3740   equivalent to `minetest.translate(textdomain, str, ...)`.
3741   It is intended to be used in the following way, so that it avoids verbose
3742   repetitions of `minetest.translate`:
3743
3744       local S = minetest.get_translator(textdomain)
3745       S(str, ...)
3746
3747   As an extra commodity, if `textdomain` is nil, it is assumed to be "" instead.
3748
3749 * `minetest.translate(textdomain, str, ...)` translates the string `str` with
3750   the given `textdomain` for disambiguation. The textdomain must match the
3751   textdomain specified in the translation file in order to get the string
3752   translated. This can be used so that a string is translated differently in
3753   different contexts.
3754   It is advised to use the name of the mod as textdomain whenever possible, to
3755   avoid clashes with other mods.
3756   This function must be given a number of arguments equal to the number of
3757   arguments the translated string expects.
3758   Arguments are literal strings -- they will not be translated, so if you want
3759   them to be, they need to come as outputs of `minetest.translate` as well.
3760
3761   For instance, suppose we want to translate "@1 Wool" with "@1" being replaced
3762   by the translation of "Red". We can do the following:
3763
3764       local S = minetest.get_translator()
3765       S("@1 Wool", S("Red"))
3766
3767   This will be displayed as "Red Wool" on old clients and on clients that do
3768   not have localization enabled. However, if we have for instance a translation
3769   file named `wool.fr.tr` containing the following:
3770
3771       @1 Wool=Laine @1
3772       Red=Rouge
3773
3774   this will be displayed as "Laine Rouge" on clients with a French locale.
3775
3776 Operations on translated strings
3777 --------------------------------
3778
3779 The output of `minetest.translate` is a string, with escape sequences adding
3780 additional information to that string so that it can be translated on the
3781 different clients. In particular, you can't expect operations like string.length
3782 to work on them like you would expect them to, or string.gsub to work in the
3783 expected manner. However, string concatenation will still work as expected
3784 (note that you should only use this for things like formspecs; do not translate
3785 sentences by breaking them into parts; arguments should be used instead), and
3786 operations such as `minetest.colorize` which are also concatenation.
3787
3788 Translation file format
3789 -----------------------
3790
3791 A translation file has the suffix `.[lang].tr`, where `[lang]` is the language
3792 it corresponds to. It must be put into the `locale` subdirectory of the mod.
3793 The file should be a text file, with the following format:
3794
3795 * Lines beginning with `# textdomain:` (the space is significant) can be used
3796   to specify the text domain of all following translations in the file.
3797 * All other empty lines or lines beginning with `#` are ignored.
3798 * Other lines should be in the format `original=translated`. Both `original`
3799   and `translated` can contain escape sequences beginning with `@` to insert
3800   arguments, literal `@`, `=` or newline (See [Escapes] below).
3801   There must be no extraneous whitespace around the `=` or at the beginning or
3802   the end of the line.
3803
3804 Escapes
3805 -------
3806
3807 Strings that need to be translated can contain several escapes, preceded by `@`.
3808
3809 * `@@` acts as a literal `@`.
3810 * `@n`, where `n` is a digit between 1 and 9, is an argument for the translated
3811   string that will be inlined when translated. Due to how translations are
3812   implemented, the original translation string **must** have its arguments in
3813   increasing order, without gaps or repetitions, starting from 1.
3814 * `@=` acts as a literal `=`. It is not required in strings given to
3815   `minetest.translate`, but is in translation files to avoid being confused
3816   with the `=` separating the original from the translation.
3817 * `@\n` (where the `\n` is a literal newline) acts as a literal newline.
3818   As with `@=`, this escape is not required in strings given to
3819   `minetest.translate`, but is in translation files.
3820 * `@n` acts as a literal newline as well.
3821
3822 Server side translations
3823 ------------------------
3824
3825 On some specific cases, server translation could be useful. For example, filter
3826 a list on labels and send results to client. A method is supplied to achieve
3827 that:
3828
3829 `minetest.get_translated_string(lang_code, string)`: Translates `string` using
3830 translations for `lang_code` language. It gives the same result as if the string
3831 was translated by the client.
3832
3833 The `lang_code` to use for a given player can be retrieved from
3834 the table returned by `minetest.get_player_information(name)`.
3835
3836 IMPORTANT: This functionality should only be used for sorting, filtering or similar purposes.
3837 You do not need to use this to get translated strings to show up on the client.
3838
3839 Perlin noise
3840 ============
3841
3842 Perlin noise creates a continuously-varying value depending on the input values.
3843 Usually in Minetest the input values are either 2D or 3D co-ordinates in nodes.
3844 The result is used during map generation to create the terrain shape, vary heat
3845 and humidity to distribute biomes, vary the density of decorations or vary the
3846 structure of ores.
3847
3848 Structure of perlin noise
3849 -------------------------
3850
3851 An 'octave' is a simple noise generator that outputs a value between -1 and 1.
3852 The smooth wavy noise it generates has a single characteristic scale, almost
3853 like a 'wavelength', so on its own does not create fine detail.
3854 Due to this perlin noise combines several octaves to create variation on
3855 multiple scales. Each additional octave has a smaller 'wavelength' than the
3856 previous.
3857
3858 This combination results in noise varying very roughly between -2.0 and 2.0 and
3859 with an average value of 0.0, so `scale` and `offset` are then used to multiply
3860 and offset the noise variation.
3861
3862 The final perlin noise variation is created as follows:
3863
3864 noise = offset + scale * (octave1 +
3865                           octave2 * persistence +
3866                           octave3 * persistence ^ 2 +
3867                           octave4 * persistence ^ 3 +
3868                           ...)
3869
3870 Noise Parameters
3871 ----------------
3872
3873 Noise Parameters are commonly called `NoiseParams`.
3874
3875 ### `offset`
3876
3877 After the multiplication by `scale` this is added to the result and is the final
3878 step in creating the noise value.
3879 Can be positive or negative.
3880
3881 ### `scale`
3882
3883 Once all octaves have been combined, the result is multiplied by this.
3884 Can be positive or negative.
3885
3886 ### `spread`
3887
3888 For octave1, this is roughly the change of input value needed for a very large
3889 variation in the noise value generated by octave1. It is almost like a
3890 'wavelength' for the wavy noise variation.
3891 Each additional octave has a 'wavelength' that is smaller than the previous
3892 octave, to create finer detail. `spread` will therefore roughly be the typical
3893 size of the largest structures in the final noise variation.
3894
3895 `spread` is a vector with values for x, y, z to allow the noise variation to be
3896 stretched or compressed in the desired axes.
3897 Values are positive numbers.
3898
3899 ### `seed`
3900
3901 This is a whole number that determines the entire pattern of the noise
3902 variation. Altering it enables different noise patterns to be created.
3903 With other parameters equal, different seeds produce different noise patterns
3904 and identical seeds produce identical noise patterns.
3905
3906 For this parameter you can randomly choose any whole number. Usually it is
3907 preferable for this to be different from other seeds, but sometimes it is useful
3908 to be able to create identical noise patterns.
3909
3910 In some noise APIs the world seed is added to the seed specified in noise
3911 parameters. This is done to make the resulting noise pattern vary in different
3912 worlds, and be 'world-specific'.
3913
3914 ### `octaves`
3915
3916 The number of simple noise generators that are combined.
3917 A whole number, 1 or more.
3918 Each additional octave adds finer detail to the noise but also increases the
3919 noise calculation load.
3920 3 is a typical minimum for a high quality, complex and natural-looking noise
3921 variation. 1 octave has a slight 'gridlike' appearance.
3922
3923 Choose the number of octaves according to the `spread` and `lacunarity`, and the
3924 size of the finest detail you require. For example:
3925 if `spread` is 512 nodes, `lacunarity` is 2.0 and finest detail required is 16
3926 nodes, octaves will be 6 because the 'wavelengths' of the octaves will be
3927 512, 256, 128, 64, 32, 16 nodes.
3928 Warning: If the 'wavelength' of any octave falls below 1 an error will occur.
3929
3930 ### `persistence`
3931
3932 Each additional octave has an amplitude that is the amplitude of the previous
3933 octave multiplied by `persistence`, to reduce the amplitude of finer details,
3934 as is often helpful and natural to do so.
3935 Since this controls the balance of fine detail to large-scale detail
3936 `persistence` can be thought of as the 'roughness' of the noise.
3937
3938 A positive or negative non-zero number, often between 0.3 and 1.0.
3939 A common medium value is 0.5, such that each octave has half the amplitude of
3940 the previous octave.
3941 This may need to be tuned when altering `lacunarity`; when doing so consider
3942 that a common medium value is 1 / lacunarity.
3943
3944 ### `lacunarity`
3945
3946 Each additional octave has a 'wavelength' that is the 'wavelength' of the
3947 previous octave multiplied by 1 / lacunarity, to create finer detail.
3948 'lacunarity' is often 2.0 so 'wavelength' often halves per octave.
3949
3950 A positive number no smaller than 1.0.
3951 Values below 2.0 create higher quality noise at the expense of requiring more
3952 octaves to cover a particular range of 'wavelengths'.
3953
3954 ### `flags`
3955
3956 Leave this field unset for no special handling.
3957 Currently supported are `defaults`, `eased` and `absvalue`:
3958
3959 #### `defaults`
3960
3961 Specify this if you would like to keep auto-selection of eased/not-eased while
3962 specifying some other flags.
3963
3964 #### `eased`
3965
3966 Maps noise gradient values onto a quintic S-curve before performing
3967 interpolation. This results in smooth, rolling noise.
3968 Disable this (`noeased`) for sharp-looking noise with a slightly gridded
3969 appearance.
3970 If no flags are specified (or defaults is), 2D noise is eased and 3D noise is
3971 not eased.
3972 Easing a 3D noise significantly increases the noise calculation load, so use
3973 with restraint.
3974
3975 #### `absvalue`
3976
3977 The absolute value of each octave's noise variation is used when combining the
3978 octaves. The final perlin noise variation is created as follows:
3979
3980 noise = offset + scale * (abs(octave1) +
3981                           abs(octave2) * persistence +
3982                           abs(octave3) * persistence ^ 2 +
3983                           abs(octave4) * persistence ^ 3 +
3984                           ...)
3985
3986 ### Format example
3987
3988 For 2D or 3D perlin noise or perlin noise maps:
3989
3990     np_terrain = {
3991         offset = 0,
3992         scale = 1,
3993         spread = {x = 500, y = 500, z = 500},
3994         seed = 571347,
3995         octaves = 5,
3996         persistence = 0.63,
3997         lacunarity = 2.0,
3998         flags = "defaults, absvalue",
3999     }
4000
4001 For 2D noise the Z component of `spread` is still defined but is ignored.
4002 A single noise parameter table can be used for 2D or 3D noise.
4003
4004
4005
4006
4007 Ores
4008 ====
4009
4010 Ore types
4011 ---------
4012
4013 These tell in what manner the ore is generated.
4014
4015 All default ores are of the uniformly-distributed scatter type.
4016
4017 ### `scatter`
4018
4019 Randomly chooses a location and generates a cluster of ore.
4020
4021 If `noise_params` is specified, the ore will be placed if the 3D perlin noise
4022 at that point is greater than the `noise_threshold`, giving the ability to
4023 create a non-equal distribution of ore.
4024
4025 ### `sheet`
4026
4027 Creates a sheet of ore in a blob shape according to the 2D perlin noise
4028 described by `noise_params` and `noise_threshold`. This is essentially an
4029 improved version of the so-called "stratus" ore seen in some unofficial mods.
4030
4031 This sheet consists of vertical columns of uniform randomly distributed height,
4032 varying between the inclusive range `column_height_min` and `column_height_max`.
4033 If `column_height_min` is not specified, this parameter defaults to 1.
4034 If `column_height_max` is not specified, this parameter defaults to `clust_size`
4035 for reverse compatibility. New code should prefer `column_height_max`.
4036
4037 The `column_midpoint_factor` parameter controls the position of the column at
4038 which ore emanates from.
4039 If 1, columns grow upward. If 0, columns grow downward. If 0.5, columns grow
4040 equally starting from each direction.
4041 `column_midpoint_factor` is a decimal number ranging in value from 0 to 1. If
4042 this parameter is not specified, the default is 0.5.
4043
4044 The ore parameters `clust_scarcity` and `clust_num_ores` are ignored for this
4045 ore type.
4046
4047 ### `puff`
4048
4049 Creates a sheet of ore in a cloud-like puff shape.
4050
4051 As with the `sheet` ore type, the size and shape of puffs are described by
4052 `noise_params` and `noise_threshold` and are placed at random vertical
4053 positions within the currently generated chunk.
4054
4055 The vertical top and bottom displacement of each puff are determined by the
4056 noise parameters `np_puff_top` and `np_puff_bottom`, respectively.
4057
4058 ### `blob`
4059
4060 Creates a deformed sphere of ore according to 3d perlin noise described by
4061 `noise_params`. The maximum size of the blob is `clust_size`, and
4062 `clust_scarcity` has the same meaning as with the `scatter` type.
4063
4064 ### `vein`
4065
4066 Creates veins of ore varying in density by according to the intersection of two
4067 instances of 3d perlin noise with different seeds, both described by
4068 `noise_params`.
4069
4070 `random_factor` varies the influence random chance has on placement of an ore
4071 inside the vein, which is `1` by default. Note that modifying this parameter
4072 may require adjusting `noise_threshold`.
4073
4074 The parameters `clust_scarcity`, `clust_num_ores`, and `clust_size` are ignored
4075 by this ore type.
4076
4077 This ore type is difficult to control since it is sensitive to small changes.
4078 The following is a decent set of parameters to work from:
4079
4080     noise_params = {
4081         offset  = 0,
4082         scale   = 3,
4083         spread  = {x=200, y=200, z=200},
4084         seed    = 5390,
4085         octaves = 4,
4086         persistence = 0.5,
4087         lacunarity = 2.0,
4088         flags = "eased",
4089     },
4090     noise_threshold = 1.6
4091
4092 **WARNING**: Use this ore type *very* sparingly since it is ~200x more
4093 computationally expensive than any other ore.
4094
4095 ### `stratum`
4096
4097 Creates a single undulating ore stratum that is continuous across mapchunk
4098 borders and horizontally spans the world.
4099
4100 The 2D perlin noise described by `noise_params` defines the Y co-ordinate of
4101 the stratum midpoint. The 2D perlin noise described by `np_stratum_thickness`
4102 defines the stratum's vertical thickness (in units of nodes). Due to being
4103 continuous across mapchunk borders the stratum's vertical thickness is
4104 unlimited.
4105
4106 If the noise parameter `noise_params` is omitted the ore will occur from y_min
4107 to y_max in a simple horizontal stratum.
4108
4109 A parameter `stratum_thickness` can be provided instead of the noise parameter
4110 `np_stratum_thickness`, to create a constant thickness.
4111
4112 Leaving out one or both noise parameters makes the ore generation less
4113 intensive, useful when adding multiple strata.
4114
4115 `y_min` and `y_max` define the limits of the ore generation and for performance
4116 reasons should be set as close together as possible but without clipping the
4117 stratum's Y variation.
4118
4119 Each node in the stratum has a 1-in-`clust_scarcity` chance of being ore, so a
4120 solid-ore stratum would require a `clust_scarcity` of 1.
4121
4122 The parameters `clust_num_ores`, `clust_size`, `noise_threshold` and
4123 `random_factor` are ignored by this ore type.
4124
4125 Ore attributes
4126 --------------
4127
4128 See section [Flag Specifier Format].
4129
4130 Currently supported flags:
4131 `puff_cliffs`, `puff_additive_composition`.
4132
4133 ### `puff_cliffs`
4134
4135 If set, puff ore generation will not taper down large differences in
4136 displacement when approaching the edge of a puff. This flag has no effect for
4137 ore types other than `puff`.
4138
4139 ### `puff_additive_composition`
4140
4141 By default, when noise described by `np_puff_top` or `np_puff_bottom` results
4142 in a negative displacement, the sub-column at that point is not generated. With
4143 this attribute set, puff ore generation will instead generate the absolute
4144 difference in noise displacement values. This flag has no effect for ore types
4145 other than `puff`.
4146
4147
4148
4149
4150 Decoration types
4151 ================
4152
4153 The varying types of decorations that can be placed.
4154
4155 `simple`
4156 --------
4157
4158 Creates a 1 times `H` times 1 column of a specified node (or a random node from
4159 a list, if a decoration list is specified). Can specify a certain node it must
4160 spawn next to, such as water or lava, for example. Can also generate a
4161 decoration of random height between a specified lower and upper bound.
4162 This type of decoration is intended for placement of grass, flowers, cacti,
4163 papyri, waterlilies and so on.
4164
4165 `schematic`
4166 -----------
4167
4168 Copies a box of `MapNodes` from a specified schematic file (or raw description).
4169 Can specify a probability of a node randomly appearing when placed.
4170 This decoration type is intended to be used for multi-node sized discrete
4171 structures, such as trees, cave spikes, rocks, and so on.
4172
4173
4174
4175
4176 Schematics
4177 ==========
4178
4179 Schematic specifier
4180 --------------------
4181
4182 A schematic specifier identifies a schematic by either a filename to a
4183 Minetest Schematic file (`.mts`) or through raw data supplied through Lua,
4184 in the form of a table.  This table specifies the following fields:
4185
4186 * The `size` field is a 3D vector containing the dimensions of the provided
4187   schematic. (required field)
4188 * The `yslice_prob` field is a table of {ypos, prob} slice tables. A slice table
4189   sets the probability of a particular horizontal slice of the schematic being
4190   placed. (optional field)
4191   `ypos` = 0 for the lowest horizontal slice of a schematic.
4192   The default of `prob` is 255.
4193 * The `data` field is a flat table of MapNode tables making up the schematic,
4194   in the order of `[z [y [x]]]`. (required field)
4195   Each MapNode table contains:
4196     * `name`: the name of the map node to place (required)
4197     * `prob` (alias `param1`): the probability of this node being placed
4198       (default: 255)
4199     * `param2`: the raw param2 value of the node being placed onto the map
4200       (default: 0)
4201     * `force_place`: boolean representing if the node should forcibly overwrite
4202       any previous contents (default: false)
4203
4204 About probability values:
4205
4206 * A probability value of `0` or `1` means that node will never appear
4207   (0% chance).
4208 * A probability value of `254` or `255` means the node will always appear
4209   (100% chance).
4210 * If the probability value `p` is greater than `1`, then there is a
4211   `(p / 256 * 100)` percent chance that node will appear when the schematic is
4212   placed on the map.
4213
4214 Schematic attributes
4215 --------------------
4216
4217 See section [Flag Specifier Format].
4218
4219 Currently supported flags: `place_center_x`, `place_center_y`, `place_center_z`,
4220                            `force_placement`.
4221
4222 * `place_center_x`: Placement of this decoration is centered along the X axis.
4223 * `place_center_y`: Placement of this decoration is centered along the Y axis.
4224 * `place_center_z`: Placement of this decoration is centered along the Z axis.
4225 * `force_placement`: Schematic nodes other than "ignore" will replace existing
4226   nodes.
4227
4228
4229
4230
4231 Lua Voxel Manipulator
4232 =====================
4233
4234 About VoxelManip
4235 ----------------
4236
4237 VoxelManip is a scripting interface to the internal 'Map Voxel Manipulator'
4238 facility. The purpose of this object is for fast, low-level, bulk access to
4239 reading and writing Map content. As such, setting map nodes through VoxelManip
4240 will lack many of the higher level features and concepts you may be used to
4241 with other methods of setting nodes. For example, nodes will not have their
4242 construction and destruction callbacks run, and no rollback information is
4243 logged.
4244
4245 It is important to note that VoxelManip is designed for speed, and *not* ease
4246 of use or flexibility. If your mod requires a map manipulation facility that
4247 will handle 100% of all edge cases, or the use of high level node placement
4248 features, perhaps `minetest.set_node()` is better suited for the job.
4249
4250 In addition, VoxelManip might not be faster, or could even be slower, for your
4251 specific use case. VoxelManip is most effective when setting large areas of map
4252 at once - for example, if only setting a 3x3x3 node area, a
4253 `minetest.set_node()` loop may be more optimal. Always profile code using both
4254 methods of map manipulation to determine which is most appropriate for your
4255 usage.
4256
4257 A recent simple test of setting cubic areas showed that `minetest.set_node()`
4258 is faster than a VoxelManip for a 3x3x3 node cube or smaller.
4259
4260 Using VoxelManip
4261 ----------------
4262
4263 A VoxelManip object can be created any time using either:
4264 `VoxelManip([p1, p2])`, or `minetest.get_voxel_manip([p1, p2])`.
4265
4266 If the optional position parameters are present for either of these routines,
4267 the specified region will be pre-loaded into the VoxelManip object on creation.
4268 Otherwise, the area of map you wish to manipulate must first be loaded into the
4269 VoxelManip object using `VoxelManip:read_from_map()`.
4270
4271 Note that `VoxelManip:read_from_map()` returns two position vectors. The region
4272 formed by these positions indicate the minimum and maximum (respectively)
4273 positions of the area actually loaded in the VoxelManip, which may be larger
4274 than the area requested. For convenience, the loaded area coordinates can also
4275 be queried any time after loading map data with `VoxelManip:get_emerged_area()`.
4276
4277 Now that the VoxelManip object is populated with map data, your mod can fetch a
4278 copy of this data using either of two methods. `VoxelManip:get_node_at()`,
4279 which retrieves an individual node in a MapNode formatted table at the position
4280 requested is the simplest method to use, but also the slowest.
4281
4282 Nodes in a VoxelManip object may also be read in bulk to a flat array table
4283 using:
4284
4285 * `VoxelManip:get_data()` for node content (in Content ID form, see section
4286   [Content IDs]),
4287 * `VoxelManip:get_light_data()` for node light levels, and
4288 * `VoxelManip:get_param2_data()` for the node type-dependent "param2" values.
4289
4290 See section [Flat array format] for more details.
4291
4292 It is very important to understand that the tables returned by any of the above
4293 three functions represent a snapshot of the VoxelManip's internal state at the
4294 time of the call. This copy of the data will not magically update itself if
4295 another function modifies the internal VoxelManip state.
4296 Any functions that modify a VoxelManip's contents work on the VoxelManip's
4297 internal state unless otherwise explicitly stated.
4298
4299 Once the bulk data has been edited to your liking, the internal VoxelManip
4300 state can be set using:
4301
4302 * `VoxelManip:set_data()` for node content (in Content ID form, see section
4303   [Content IDs]),
4304 * `VoxelManip:set_light_data()` for node light levels, and
4305 * `VoxelManip:set_param2_data()` for the node type-dependent `param2` values.
4306
4307 The parameter to each of the above three functions can use any table at all in
4308 the same flat array format as produced by `get_data()` etc. and is not required
4309 to be a table retrieved from `get_data()`.
4310
4311 Once the internal VoxelManip state has been modified to your liking, the
4312 changes can be committed back to the map by calling `VoxelManip:write_to_map()`
4313
4314 ### Flat array format
4315
4316 Let
4317     `Nx = p2.X - p1.X + 1`,
4318     `Ny = p2.Y - p1.Y + 1`, and
4319     `Nz = p2.Z - p1.Z + 1`.
4320
4321 Then, for a loaded region of p1..p2, this array ranges from `1` up to and
4322 including the value of the expression `Nx * Ny * Nz`.
4323
4324 Positions offset from p1 are present in the array with the format of:
4325
4326     [
4327         (0, 0, 0),   (1, 0, 0),   (2, 0, 0),   ... (Nx, 0, 0),
4328         (0, 1, 0),   (1, 1, 0),   (2, 1, 0),   ... (Nx, 1, 0),
4329         ...
4330         (0, Ny, 0),  (1, Ny, 0),  (2, Ny, 0),  ... (Nx, Ny, 0),
4331         (0, 0, 1),   (1, 0, 1),   (2, 0, 1),   ... (Nx, 0, 1),
4332         ...
4333         (0, Ny, 2),  (1, Ny, 2),  (2, Ny, 2),  ... (Nx, Ny, 2),
4334         ...
4335         (0, Ny, Nz), (1, Ny, Nz), (2, Ny, Nz), ... (Nx, Ny, Nz)
4336     ]
4337
4338 and the array index for a position p contained completely in p1..p2 is:
4339
4340 `(p.Z - p1.Z) * Ny * Nx + (p.Y - p1.Y) * Nx + (p.X - p1.X) + 1`
4341
4342 Note that this is the same "flat 3D array" format as
4343 `PerlinNoiseMap:get3dMap_flat()`.
4344 VoxelArea objects (see section [`VoxelArea`]) can be used to simplify calculation
4345 of the index for a single point in a flat VoxelManip array.
4346
4347 ### Content IDs
4348
4349 A Content ID is a unique integer identifier for a specific node type.
4350 These IDs are used by VoxelManip in place of the node name string for
4351 `VoxelManip:get_data()` and `VoxelManip:set_data()`. You can use
4352 `minetest.get_content_id()` to look up the Content ID for the specified node
4353 name, and `minetest.get_name_from_content_id()` to look up the node name string
4354 for a given Content ID.
4355 After registration of a node, its Content ID will remain the same throughout
4356 execution of the mod.
4357 Note that the node being queried needs to have already been been registered.
4358
4359 The following builtin node types have their Content IDs defined as constants:
4360
4361 * `minetest.CONTENT_UNKNOWN`: ID for "unknown" nodes
4362 * `minetest.CONTENT_AIR`:     ID for "air" nodes
4363 * `minetest.CONTENT_IGNORE`:  ID for "ignore" nodes
4364
4365 ### Mapgen VoxelManip objects
4366
4367 Inside of `on_generated()` callbacks, it is possible to retrieve the same
4368 VoxelManip object used by the core's Map Generator (commonly abbreviated
4369 Mapgen). Most of the rules previously described still apply but with a few
4370 differences:
4371
4372 * The Mapgen VoxelManip object is retrieved using:
4373   `minetest.get_mapgen_object("voxelmanip")`
4374 * This VoxelManip object already has the region of map just generated loaded
4375   into it; it's not necessary to call `VoxelManip:read_from_map()`.
4376   Note that the region of map it has loaded is NOT THE SAME as the `minp`, `maxp`
4377   parameters of `on_generated()`. Refer to `minetest.get_mapgen_object` docs.
4378 * The `on_generated()` callbacks of some mods may place individual nodes in the
4379   generated area using non-VoxelManip map modification methods. Because the
4380   same Mapgen VoxelManip object is passed through each `on_generated()`
4381   callback, it becomes necessary for the Mapgen VoxelManip object to maintain
4382   consistency with the current map state. For this reason, calling any of
4383   `minetest.add_node()`, `minetest.set_node()` or `minetest.swap_node()`
4384   will also update the Mapgen VoxelManip object's internal state active on the
4385   current thread.
4386 * After modifying the Mapgen VoxelManip object's internal buffer, it may be
4387   necessary to update lighting information using either:
4388   `VoxelManip:calc_lighting()` or `VoxelManip:set_lighting()`.
4389
4390 ### Other API functions operating on a VoxelManip
4391
4392 If any VoxelManip contents were set to a liquid node (`liquidtype ~= "none"`),
4393 `VoxelManip:update_liquids()` must be called for these liquid nodes to begin
4394 flowing. It is recommended to call this function only after having written all
4395 buffered data back to the VoxelManip object, save for special situations where
4396 the modder desires to only have certain liquid nodes begin flowing.
4397
4398 The functions `minetest.generate_ores()` and `minetest.generate_decorations()`
4399 will generate all registered decorations and ores throughout the full area
4400 inside of the specified VoxelManip object.
4401
4402 `minetest.place_schematic_on_vmanip()` is otherwise identical to
4403 `minetest.place_schematic()`, except instead of placing the specified schematic
4404 directly on the map at the specified position, it will place the schematic
4405 inside the VoxelManip.
4406
4407 ### Notes
4408
4409 * Attempting to read data from a VoxelManip object before map is read will
4410   result in a zero-length array table for `VoxelManip:get_data()`, and an
4411   "ignore" node at any position for `VoxelManip:get_node_at()`.
4412 * If either a region of map has not yet been generated or is out-of-bounds of
4413   the map, that region is filled with "ignore" nodes.
4414 * Other mods, or the core itself, could possibly modify the area of map
4415   currently loaded into a VoxelManip object. With the exception of Mapgen
4416   VoxelManips (see above section), the internal buffers are not updated. For
4417   this reason, it is strongly encouraged to complete the usage of a particular
4418   VoxelManip object in the same callback it had been created.
4419 * If a VoxelManip object will be used often, such as in an `on_generated()`
4420   callback, consider passing a file-scoped table as the optional parameter to
4421   `VoxelManip:get_data()`, which serves as a static buffer the function can use
4422   to write map data to instead of returning a new table each call. This greatly
4423   enhances performance by avoiding unnecessary memory allocations.
4424
4425 Methods
4426 -------
4427
4428 * `read_from_map(p1, p2)`:  Loads a chunk of map into the VoxelManip object
4429   containing the region formed by `p1` and `p2`.
4430     * returns actual emerged `pmin`, actual emerged `pmax`
4431 * `write_to_map([light])`: Writes the data loaded from the `VoxelManip` back to
4432   the map.
4433     * **important**: data must be set using `VoxelManip:set_data()` before
4434       calling this.
4435     * if `light` is true, then lighting is automatically recalculated.
4436       The default value is true.
4437       If `light` is false, no light calculations happen, and you should correct
4438       all modified blocks with `minetest.fix_light()` as soon as possible.
4439       Keep in mind that modifying the map where light is incorrect can cause
4440       more lighting bugs.
4441 * `get_node_at(pos)`: Returns a `MapNode` table of the node currently loaded in
4442   the `VoxelManip` at that position
4443 * `set_node_at(pos, node)`: Sets a specific `MapNode` in the `VoxelManip` at
4444   that position.
4445 * `get_data([buffer])`: Retrieves the node content data loaded into the
4446   `VoxelManip` object.
4447     * returns raw node data in the form of an array of node content IDs
4448     * if the param `buffer` is present, this table will be used to store the
4449       result instead.
4450 * `set_data(data)`: Sets the data contents of the `VoxelManip` object
4451 * `update_map()`: Does nothing, kept for compatibility.
4452 * `set_lighting(light, [p1, p2])`: Set the lighting within the `VoxelManip` to
4453   a uniform value.
4454     * `light` is a table, `{day=<0...15>, night=<0...15>}`
4455     * To be used only by a `VoxelManip` object from
4456       `minetest.get_mapgen_object`.
4457     * (`p1`, `p2`) is the area in which lighting is set, defaults to the whole
4458       area if left out.
4459 * `get_light_data([buffer])`: Gets the light data read into the
4460   `VoxelManip` object
4461     * Returns an array (indices 1 to volume) of integers ranging from `0` to
4462       `255`.
4463     * Each value is the bitwise combination of day and night light values
4464       (`0` to `15` each).
4465     * `light = day + (night * 16)`
4466     * If the param `buffer` is present, this table will be used to store the
4467       result instead.
4468 * `set_light_data(light_data)`: Sets the `param1` (light) contents of each node
4469   in the `VoxelManip`.
4470     * expects lighting data in the same format that `get_light_data()` returns
4471 * `get_param2_data([buffer])`: Gets the raw `param2` data read into the
4472   `VoxelManip` object.
4473     * Returns an array (indices 1 to volume) of integers ranging from `0` to
4474       `255`.
4475     * If the param `buffer` is present, this table will be used to store the
4476       result instead.
4477 * `set_param2_data(param2_data)`: Sets the `param2` contents of each node in
4478   the `VoxelManip`.
4479 * `calc_lighting([p1, p2], [propagate_shadow])`:  Calculate lighting within the
4480   `VoxelManip`.
4481     * To be used only by a `VoxelManip` object from
4482       `minetest.get_mapgen_object`.
4483     * (`p1`, `p2`) is the area in which lighting is set, defaults to the whole
4484       area if left out or nil. For almost all uses these should be left out
4485       or nil to use the default.
4486     * `propagate_shadow` is an optional boolean deciding whether shadows in a
4487       generated mapchunk above are propagated down into the mapchunk, defaults
4488       to `true` if left out.
4489 * `update_liquids()`: Update liquid flow
4490 * `was_modified()`: Returns `true` or `false` if the data in the voxel
4491   manipulator had been modified since the last read from map, due to a call to
4492   `minetest.set_data()` on the loaded area elsewhere.
4493 * `get_emerged_area()`: Returns actual emerged minimum and maximum positions.
4494
4495 `VoxelArea`
4496 -----------
4497
4498 A helper class for voxel areas.
4499 It can be created via `VoxelArea(pmin, pmax)` or
4500 `VoxelArea:new({MinEdge = pmin, MaxEdge = pmax})`.
4501 The coordinates are *inclusive*, like most other things in Minetest.
4502
4503 ### Methods
4504
4505 * `getExtent()`: returns a 3D vector containing the size of the area formed by
4506   `MinEdge` and `MaxEdge`.
4507 * `getVolume()`: returns the volume of the area formed by `MinEdge` and
4508   `MaxEdge`.
4509 * `index(x, y, z)`: returns the index of an absolute position in a flat array
4510   starting at `1`.
4511     * `x`, `y` and `z` must be integers to avoid an incorrect index result.
4512     * The position (x, y, z) is not checked for being inside the area volume,
4513       being outside can cause an incorrect index result.
4514     * Useful for things like `VoxelManip`, raw Schematic specifiers,
4515       `PerlinNoiseMap:get2d`/`3dMap`, and so on.
4516 * `indexp(p)`: same functionality as `index(x, y, z)` but takes a vector.
4517     * As with `index(x, y, z)`, the components of `p` must be integers, and `p`
4518       is not checked for being inside the area volume.
4519 * `position(i)`: returns the absolute position vector corresponding to index
4520   `i`.
4521 * `contains(x, y, z)`: check if (`x`,`y`,`z`) is inside area formed by
4522   `MinEdge` and `MaxEdge`.
4523 * `containsp(p)`: same as above, except takes a vector
4524 * `containsi(i)`: same as above, except takes an index `i`
4525 * `iter(minx, miny, minz, maxx, maxy, maxz)`: returns an iterator that returns
4526   indices.
4527     * from (`minx`,`miny`,`minz`) to (`maxx`,`maxy`,`maxz`) in the order of
4528       `[z [y [x]]]`.
4529 * `iterp(minp, maxp)`: same as above, except takes a vector
4530
4531 ### Y stride and z stride of a flat array
4532
4533 For a particular position in a voxel area, whose flat array index is known,
4534 it is often useful to know the index of a neighboring or nearby position.
4535 The table below shows the changes of index required for 1 node movements along
4536 the axes in a voxel area:
4537
4538     Movement    Change of index
4539     +x          +1
4540     -x          -1
4541     +y          +ystride
4542     -y          -ystride
4543     +z          +zstride
4544     -z          -zstride
4545
4546 If, for example:
4547
4548     local area = VoxelArea(emin, emax)
4549
4550 The values of `ystride` and `zstride` can be obtained using `area.ystride` and
4551 `area.zstride`.
4552
4553
4554
4555
4556 Mapgen objects
4557 ==============
4558
4559 A mapgen object is a construct used in map generation. Mapgen objects can be
4560 used by an `on_generate` callback to speed up operations by avoiding
4561 unnecessary recalculations, these can be retrieved using the
4562 `minetest.get_mapgen_object()` function. If the requested Mapgen object is
4563 unavailable, or `get_mapgen_object()` was called outside of an `on_generate()`
4564 callback, `nil` is returned.
4565
4566 The following Mapgen objects are currently available:
4567
4568 ### `voxelmanip`
4569
4570 This returns three values; the `VoxelManip` object to be used, minimum and
4571 maximum emerged position, in that order. All mapgens support this object.
4572
4573 ### `heightmap`
4574
4575 Returns an array containing the y coordinates of the ground levels of nodes in
4576 the most recently generated chunk by the current mapgen.
4577
4578 ### `biomemap`
4579
4580 Returns an array containing the biome IDs of nodes in the most recently
4581 generated chunk by the current mapgen.
4582
4583 ### `heatmap`
4584
4585 Returns an array containing the temperature values of nodes in the most
4586 recently generated chunk by the current mapgen.
4587
4588 ### `humiditymap`
4589
4590 Returns an array containing the humidity values of nodes in the most recently
4591 generated chunk by the current mapgen.
4592
4593 ### `gennotify`
4594
4595 Returns a table mapping requested generation notification types to arrays of
4596 positions at which the corresponding generated structures are located within
4597 the current chunk. To enable the capture of positions of interest to be recorded
4598 call `minetest.set_gen_notify()` first.
4599
4600 Possible fields of the returned table are:
4601
4602 * `dungeon`: bottom center position of dungeon rooms
4603 * `temple`: as above but for desert temples (mgv6 only)
4604 * `cave_begin`
4605 * `cave_end`
4606 * `large_cave_begin`
4607 * `large_cave_end`
4608 * `decoration#id` (see below)
4609
4610 Decorations have a key in the format of `"decoration#id"`, where `id` is the
4611 numeric unique decoration ID as returned by `minetest.get_decoration_id()`.
4612 For example, `decoration#123`.
4613
4614 The returned positions are the ground surface 'place_on' nodes,
4615 not the decorations themselves. A 'simple' type decoration is often 1
4616 node above the returned position and possibly displaced by 'place_offset_y'.
4617
4618
4619 Registered entities
4620 ===================
4621
4622 Functions receive a "luaentity" table as `self`:
4623
4624 * It has the member `name`, which is the registered name `("mod:thing")`
4625 * It has the member `object`, which is an `ObjectRef` pointing to the object
4626 * The original prototype is visible directly via a metatable
4627
4628 Callbacks:
4629
4630 * `on_activate(self, staticdata, dtime_s)`
4631     * Called when the object is instantiated.
4632     * `dtime_s` is the time passed since the object was unloaded, which can be
4633       used for updating the entity state.
4634 * `on_deactivate(self, removal)`
4635     * Called when the object is about to get removed or unloaded.
4636         * `removal`: boolean indicating whether the object is about to get removed.
4637           Calling `object:remove()` on an active object will call this with `removal=true`.
4638           The mapblock the entity resides in being unloaded will call this with `removal=false`.
4639         * Note that this won't be called if the object hasn't been activated in the first place.
4640           In particular, `minetest.clear_objects({mode = "full"})` won't call this,
4641           whereas `minetest.clear_objects({mode = "quick"})` might call this.
4642 * `on_step(self, dtime, moveresult)`
4643     * Called on every server tick, after movement and collision processing.
4644     * `dtime`: elapsed time since last call
4645     * `moveresult`: table with collision info (only available if physical=true)
4646 * `on_punch(self, puncher, time_from_last_punch, tool_capabilities, dir, damage)`
4647     * Called when somebody punches the object.
4648     * Note that you probably want to handle most punches using the automatic
4649       armor group system.
4650     * `puncher`: an `ObjectRef` (can be `nil`)
4651     * `time_from_last_punch`: Meant for disallowing spamming of clicks
4652       (can be `nil`).
4653     * `tool_capabilities`: capability table of used item (can be `nil`)
4654     * `dir`: unit vector of direction of punch. Always defined. Points from the
4655       puncher to the punched.
4656     * `damage`: damage that will be done to entity.
4657     * Can return `true` to prevent the default damage mechanism.
4658 * `on_death(self, killer)`
4659     * Called when the object dies.
4660     * `killer`: an `ObjectRef` (can be `nil`)
4661 * `on_rightclick(self, clicker)`
4662     * Called when `clicker` pressed the 'place/use' key while pointing
4663       to the object (not necessarily an actual rightclick)
4664     * `clicker`: an `ObjectRef` (may or may not be a player)
4665 * `on_attach_child(self, child)`
4666     * `child`: an `ObjectRef` of the child that attaches
4667 * `on_detach_child(self, child)`
4668     * `child`: an `ObjectRef` of the child that detaches
4669 * `on_detach(self, parent)`
4670     * `parent`: an `ObjectRef` (can be `nil`) from where it got detached
4671     * This happens before the parent object is removed from the world
4672 * `get_staticdata(self)`
4673     * Should return a string that will be passed to `on_activate` when the
4674       object is instantiated the next time.
4675
4676 Collision info passed to `on_step` (`moveresult` argument):
4677
4678     {
4679         touching_ground = boolean,
4680         -- Note that touching_ground is only true if the entity was moving and
4681         -- collided with ground.
4682
4683         collides = boolean,
4684         standing_on_object = boolean,
4685
4686         collisions = {
4687             {
4688                 type = string, -- "node" or "object",
4689                 axis = string, -- "x", "y" or "z"
4690                 node_pos = vector, -- if type is "node"
4691                 object = ObjectRef, -- if type is "object"
4692                 old_velocity = vector,
4693                 new_velocity = vector,
4694             },
4695             ...
4696         }
4697         -- `collisions` does not contain data of unloaded mapblock collisions
4698         -- or when the velocity changes are negligibly small
4699     }
4700
4701
4702
4703 L-system trees
4704 ==============
4705
4706 Tree definition
4707 ---------------
4708
4709     treedef={
4710         axiom,         --string  initial tree axiom
4711         rules_a,       --string  rules set A
4712         rules_b,       --string  rules set B
4713         rules_c,       --string  rules set C
4714         rules_d,       --string  rules set D
4715         trunk,         --string  trunk node name
4716         leaves,        --string  leaves node name
4717         leaves2,       --string  secondary leaves node name
4718         leaves2_chance,--num     chance (0-100) to replace leaves with leaves2
4719         angle,         --num     angle in deg
4720         iterations,    --num     max # of iterations, usually 2 -5
4721         random_level,  --num     factor to lower number of iterations, usually 0 - 3
4722         trunk_type,    --string  single/double/crossed) type of trunk: 1 node,
4723                        --        2x2 nodes or 3x3 in cross shape
4724         thin_branches, --boolean true -> use thin (1 node) branches
4725         fruit,         --string  fruit node name
4726         fruit_chance,  --num     chance (0-100) to replace leaves with fruit node
4727         seed,          --num     random seed, if no seed is provided, the engine
4728                                  will create one.
4729     }
4730
4731 Key for special L-System symbols used in axioms
4732 -----------------------------------------------
4733
4734 * `G`: move forward one unit with the pen up
4735 * `F`: move forward one unit with the pen down drawing trunks and branches
4736 * `f`: move forward one unit with the pen down drawing leaves (100% chance)
4737 * `T`: move forward one unit with the pen down drawing trunks only
4738 * `R`: move forward one unit with the pen down placing fruit
4739 * `A`: replace with rules set A
4740 * `B`: replace with rules set B
4741 * `C`: replace with rules set C
4742 * `D`: replace with rules set D
4743 * `a`: replace with rules set A, chance 90%
4744 * `b`: replace with rules set B, chance 80%
4745 * `c`: replace with rules set C, chance 70%
4746 * `d`: replace with rules set D, chance 60%
4747 * `+`: yaw the turtle right by `angle` parameter
4748 * `-`: yaw the turtle left by `angle` parameter
4749 * `&`: pitch the turtle down by `angle` parameter
4750 * `^`: pitch the turtle up by `angle` parameter
4751 * `/`: roll the turtle to the right by `angle` parameter
4752 * `*`: roll the turtle to the left by `angle` parameter
4753 * `[`: save in stack current state info
4754 * `]`: recover from stack state info
4755
4756 Example
4757 -------
4758
4759 Spawn a small apple tree:
4760
4761     pos = {x=230,y=20,z=4}
4762     apple_tree={
4763         axiom="FFFFFAFFBF",
4764         rules_a="[&&&FFFFF&&FFFF][&&&++++FFFFF&&FFFF][&&&----FFFFF&&FFFF]",
4765         rules_b="[&&&++FFFFF&&FFFF][&&&--FFFFF&&FFFF][&&&------FFFFF&&FFFF]",
4766         trunk="default:tree",
4767         leaves="default:leaves",
4768         angle=30,
4769         iterations=2,
4770         random_level=0,
4771         trunk_type="single",
4772         thin_branches=true,
4773         fruit_chance=10,
4774         fruit="default:apple"
4775     }
4776     minetest.spawn_tree(pos,apple_tree)
4777
4778
4779 Privileges
4780 ==========
4781
4782 Privileges provide a means for server administrators to give certain players
4783 access to special abilities in the engine, games or mods.
4784 For example, game moderators may need to travel instantly to any place in the world,
4785 this ability is implemented in `/teleport` command which requires `teleport` privilege.
4786
4787 Registering privileges
4788 ----------------------
4789
4790 A mod can register a custom privilege using `minetest.register_privilege` function
4791 to give server administrators fine-grained access control over mod functionality.
4792
4793 For consistency and practical reasons, privileges should strictly increase the abilities of the user.
4794 Do not register custom privileges that e.g. restrict the player from certain in-game actions.
4795
4796 Checking privileges
4797 -------------------
4798
4799 A mod can call `minetest.check_player_privs` to test whether a player has privileges
4800 to perform an operation.
4801 Also, when registering a chat command with `minetest.register_chatcommand` a mod can
4802 declare privileges that the command requires using the `privs` field of the command
4803 definition.
4804
4805 Managing player privileges
4806 --------------------------
4807
4808 A mod can update player privileges using `minetest.set_player_privs` function.
4809 Players holding the `privs` privilege can see and manage privileges for all
4810 players on the server.
4811
4812 A mod can subscribe to changes in player privileges using `minetest.register_on_priv_grant`
4813 and `minetest.register_on_priv_revoke` functions.
4814
4815 Built-in privileges
4816 -------------------
4817
4818 Minetest includes a set of built-in privileges that control capabilities
4819 provided by the Minetest engine and can be used by mods:
4820
4821   * Basic privileges are normally granted to all players:
4822       * `shout`: can communicate using the in-game chat.
4823       * `interact`: can modify the world by digging, building and interacting
4824         with the nodes, entities and other players. Players without the `interact`
4825         privilege can only travel and observe the world.
4826
4827   * Advanced privileges allow bypassing certain aspects of the gameplay:
4828       * `fast`: can use "fast mode" to move with maximum speed.
4829       * `fly`: can use "fly mode" to move freely above the ground without falling.
4830       * `noclip`: can use "noclip mode" to fly through solid nodes (e.g. walls).
4831       * `teleport`: can use `/teleport` command to move to any point in the world.
4832       * `creative`: can access creative inventory.
4833       * `bring`: can teleport other players to oneself.
4834       * `give`: can use `/give` and `/giveme` commands to give any item
4835         in the game to oneself or others.
4836       * `settime`: can use `/time` command to change current in-game time.
4837       * `debug`: can enable wireframe rendering mode.
4838
4839   * Security-related privileges:
4840       * `privs`: can modify privileges of the players using `/grant[me]` and
4841         `/revoke[me]` commands.
4842       * `basic_privs`: can grant and revoke basic privileges as defined by
4843         the `basic_privs` setting.
4844       * `kick`: can kick other players from the server using `/kick` command.
4845       * `ban`: can ban other players using `/ban` command.
4846       * `password`: can use `/setpassword` and `/clearpassword` commands
4847         to manage players' passwords.
4848       * `protection_bypass`: can bypass node protection. Note that the engine does not act upon this privilege,
4849         it is only an implementation suggestion for games.
4850
4851   * Administrative privileges:
4852       * `server`: can use `/fixlight`, `/deleteblocks` and `/deleteobjects`
4853         commands. Can clear inventory of other players using `/clearinv` command.
4854       * `rollback`: can use `/rollback_check` and `/rollback` commands.
4855
4856 Related settings
4857 ----------------
4858
4859 Minetest includes the following settings to control behavior of privileges:
4860
4861    * `default_privs`: defines privileges granted to new players.
4862    * `basic_privs`: defines privileges that can be granted/revoked by players having
4863     the `basic_privs` privilege. This can be used, for example, to give
4864     limited moderation powers to selected users.
4865
4866 'minetest' namespace reference
4867 ==============================
4868
4869 Utilities
4870 ---------
4871
4872 * `minetest.get_current_modname()`: returns the currently loading mod's name,
4873   when loading a mod.
4874 * `minetest.get_modpath(modname)`: returns the directory path for a mod,
4875   e.g. `"/home/user/.minetest/usermods/modname"`.
4876     * Returns nil if the mod is not enabled or does not exist (not installed).
4877     * Works regardless of whether the mod has been loaded yet.
4878     * Useful for loading additional `.lua` modules or static data from a mod,
4879   or checking if a mod is enabled.
4880 * `minetest.get_modnames()`: returns a list of enabled mods, sorted alphabetically.
4881     * Does not include disabled mods, even if they are installed.
4882 * `minetest.get_game_info()`: returns a table containing information about the
4883   current game. Note that other meta information (e.g. version/release number)
4884   can be manually read from `game.conf` in the game's root directory.
4885
4886       {
4887           id = string,
4888           title = string,
4889           author = string,
4890           -- The root directory of the game
4891           path = string,
4892       }
4893
4894 * `minetest.get_worldpath()`: returns e.g. `"/home/user/.minetest/world"`
4895     * Useful for storing custom data
4896 * `minetest.is_singleplayer()`
4897 * `minetest.features`: Table containing API feature flags
4898
4899       {
4900           glasslike_framed = true,  -- 0.4.7
4901           nodebox_as_selectionbox = true,  -- 0.4.7
4902           get_all_craft_recipes_works = true,  -- 0.4.7
4903           -- The transparency channel of textures can optionally be used on
4904           -- nodes (0.4.7)
4905           use_texture_alpha = true,
4906           -- Tree and grass ABMs are no longer done from C++ (0.4.8)
4907           no_legacy_abms = true,
4908           -- Texture grouping is possible using parentheses (0.4.11)
4909           texture_names_parens = true,
4910           -- Unique Area ID for AreaStore:insert_area (0.4.14)
4911           area_store_custom_ids = true,
4912           -- add_entity supports passing initial staticdata to on_activate
4913           -- (0.4.16)
4914           add_entity_with_staticdata = true,
4915           -- Chat messages are no longer predicted (0.4.16)
4916           no_chat_message_prediction = true,
4917           -- The transparency channel of textures can optionally be used on
4918           -- objects (ie: players and lua entities) (5.0.0)
4919           object_use_texture_alpha = true,
4920           -- Object selectionbox is settable independently from collisionbox
4921           -- (5.0.0)
4922           object_independent_selectionbox = true,
4923           -- Specifies whether binary data can be uploaded or downloaded using
4924           -- the HTTP API (5.1.0)
4925           httpfetch_binary_data = true,
4926           -- Whether formspec_version[<version>] may be used (5.1.0)
4927           formspec_version_element = true,
4928           -- Whether AreaStore's IDs are kept on save/load (5.1.0)
4929           area_store_persistent_ids = true,
4930           -- Whether minetest.find_path is functional (5.2.0)
4931           pathfinder_works = true,
4932           -- Whether Collision info is available to an objects' on_step (5.3.0)
4933           object_step_has_moveresult = true,
4934           -- Whether get_velocity() and add_velocity() can be used on players (5.4.0)
4935           direct_velocity_on_players = true,
4936           -- nodedef's use_texture_alpha accepts new string modes (5.4.0)
4937           use_texture_alpha_string_modes = true,
4938           -- degrotate param2 rotates in units of 1.5° instead of 2°
4939           -- thus changing the range of values from 0-179 to 0-240 (5.5.0)
4940           degrotate_240_steps = true,
4941           -- ABM supports min_y and max_y fields in definition (5.5.0)
4942           abm_min_max_y = true,
4943           -- dynamic_add_media supports passing a table with options (5.5.0)
4944           dynamic_add_media_table = true,
4945           -- particlespawners support texpools and animation of properties,
4946           -- particle textures support smooth fade and scale animations, and
4947           -- sprite-sheet particle animations can by synced to the lifetime
4948           -- of individual particles (5.6.0)
4949           particlespawner_tweenable = true,
4950           -- allows get_sky to return a table instead of separate values (5.6.0)
4951           get_sky_as_table = true,
4952           -- VoxelManip:get_light_data accepts an optional buffer argument (5.7.0)
4953           get_light_data_buffer = true,
4954           -- When using a mod storage backend that is not "files" or "dummy",
4955           -- the amount of data in mod storage is not constrained by
4956           -- the amount of RAM available. (5.7.0)
4957           mod_storage_on_disk = true,
4958           -- "zstd" method for compress/decompress (5.7.0)
4959           compress_zstd = true,
4960       }
4961
4962 * `minetest.has_feature(arg)`: returns `boolean, missing_features`
4963     * `arg`: string or table in format `{foo=true, bar=true}`
4964     * `missing_features`: `{foo=true, bar=true}`
4965 * `minetest.get_player_information(player_name)`: Table containing information
4966   about a player. Example return value:
4967
4968       {
4969           address = "127.0.0.1",     -- IP address of client
4970           ip_version = 4,            -- IPv4 / IPv6
4971           connection_uptime = 200,   -- seconds since client connected
4972           protocol_version = 32,     -- protocol version used by client
4973           formspec_version = 2,      -- supported formspec version
4974           lang_code = "fr"           -- Language code used for translation
4975           -- the following keys can be missing if no stats have been collected yet
4976           min_rtt = 0.01,            -- minimum round trip time
4977           max_rtt = 0.2,             -- maximum round trip time
4978           avg_rtt = 0.02,            -- average round trip time
4979           min_jitter = 0.01,         -- minimum packet time jitter
4980           max_jitter = 0.5,          -- maximum packet time jitter
4981           avg_jitter = 0.03,         -- average packet time jitter
4982           -- the following information is available in a debug build only!!!
4983           -- DO NOT USE IN MODS
4984           --ser_vers = 26,             -- serialization version used by client
4985           --major = 0,                 -- major version number
4986           --minor = 4,                 -- minor version number
4987           --patch = 10,                -- patch version number
4988           --vers_string = "0.4.9-git", -- full version string
4989           --state = "Active"           -- current client state
4990       }
4991
4992 * `minetest.mkdir(path)`: returns success.
4993     * Creates a directory specified by `path`, creating parent directories
4994       if they don't exist.
4995 * `minetest.rmdir(path, recursive)`: returns success.
4996     * Removes a directory specified by `path`.
4997     * If `recursive` is set to `true`, the directory is recursively removed.
4998       Otherwise, the directory will only be removed if it is empty.
4999     * Returns true on success, false on failure.
5000 * `minetest.cpdir(source, destination)`: returns success.
5001     * Copies a directory specified by `path` to `destination`
5002     * Any files in `destination` will be overwritten if they already exist.
5003     * Returns true on success, false on failure.
5004 * `minetest.mvdir(source, destination)`: returns success.
5005     * Moves a directory specified by `path` to `destination`.
5006     * If the `destination` is a non-empty directory, then the move will fail.
5007     * Returns true on success, false on failure.
5008 * `minetest.get_dir_list(path, [is_dir])`: returns list of entry names
5009     * is_dir is one of:
5010         * nil: return all entries,
5011         * true: return only subdirectory names, or
5012         * false: return only file names.
5013 * `minetest.safe_file_write(path, content)`: returns boolean indicating success
5014     * Replaces contents of file at path with new contents in a safe (atomic)
5015       way. Use this instead of below code when writing e.g. database files:
5016       `local f = io.open(path, "wb"); f:write(content); f:close()`
5017 * `minetest.get_version()`: returns a table containing components of the
5018    engine version.  Components:
5019     * `project`: Name of the project, eg, "Minetest"
5020     * `string`: Simple version, eg, "1.2.3-dev"
5021     * `hash`: Full git version (only set if available),
5022       eg, "1.2.3-dev-01234567-dirty".
5023     * `is_dev`: Boolean value indicating whether it's a development build
5024   Use this for informational purposes only. The information in the returned
5025   table does not represent the capabilities of the engine, nor is it
5026   reliable or verifiable. Compatible forks will have a different name and
5027   version entirely. To check for the presence of engine features, test
5028   whether the functions exported by the wanted features exist. For example:
5029   `if minetest.check_for_falling then ... end`.
5030 * `minetest.sha1(data, [raw])`: returns the sha1 hash of data
5031     * `data`: string of data to hash
5032     * `raw`: return raw bytes instead of hex digits, default: false
5033 * `minetest.colorspec_to_colorstring(colorspec)`: Converts a ColorSpec to a
5034   ColorString. If the ColorSpec is invalid, returns `nil`.
5035     * `colorspec`: The ColorSpec to convert
5036 * `minetest.colorspec_to_bytes(colorspec)`: Converts a ColorSpec to a raw
5037   string of four bytes in an RGBA layout, returned as a string.
5038   * `colorspec`: The ColorSpec to convert
5039 * `minetest.encode_png(width, height, data, [compression])`: Encode a PNG
5040   image and return it in string form.
5041     * `width`: Width of the image
5042     * `height`: Height of the image
5043     * `data`: Image data, one of:
5044         * array table of ColorSpec, length must be width*height
5045         * string with raw RGBA pixels, length must be width*height*4
5046     * `compression`: Optional zlib compression level, number in range 0 to 9.
5047   The data is one-dimensional, starting in the upper left corner of the image
5048   and laid out in scanlines going from left to right, then top to bottom.
5049   Please note that it's not safe to use string.char to generate raw data,
5050   use `colorspec_to_bytes` to generate raw RGBA values in a predictable way.
5051   The resulting PNG image is always 32-bit. Palettes are not supported at the moment.
5052   You may use this to procedurally generate textures during server init.
5053
5054 Logging
5055 -------
5056
5057 * `minetest.debug(...)`
5058     * Equivalent to `minetest.log(table.concat({...}, "\t"))`
5059 * `minetest.log([level,] text)`
5060     * `level` is one of `"none"`, `"error"`, `"warning"`, `"action"`,
5061       `"info"`, or `"verbose"`.  Default is `"none"`.
5062
5063 Registration functions
5064 ----------------------
5065
5066 Call these functions only at load time!
5067
5068 ### Environment
5069
5070 * `minetest.register_node(name, node definition)`
5071 * `minetest.register_craftitem(name, item definition)`
5072 * `minetest.register_tool(name, item definition)`
5073 * `minetest.override_item(name, redefinition)`
5074     * Overrides fields of an item registered with register_node/tool/craftitem.
5075     * Note: Item must already be defined, (opt)depend on the mod defining it.
5076     * Example: `minetest.override_item("default:mese",
5077       {light_source=minetest.LIGHT_MAX})`
5078 * `minetest.unregister_item(name)`
5079     * Unregisters the item from the engine, and deletes the entry with key
5080       `name` from `minetest.registered_items` and from the associated item table
5081       according to its nature: `minetest.registered_nodes`, etc.
5082 * `minetest.register_entity(name, entity definition)`
5083 * `minetest.register_abm(abm definition)`
5084 * `minetest.register_lbm(lbm definition)`
5085 * `minetest.register_alias(alias, original_name)`
5086     * Also use this to set the 'mapgen aliases' needed in a game for the core
5087       mapgens. See [Mapgen aliases] section above.
5088 * `minetest.register_alias_force(alias, original_name)`
5089 * `minetest.register_ore(ore definition)`
5090     * Returns an integer object handle uniquely identifying the registered
5091       ore on success.
5092     * The order of ore registrations determines the order of ore generation.
5093 * `minetest.register_biome(biome definition)`
5094     * Returns an integer object handle uniquely identifying the registered
5095       biome on success. To get the biome ID, use `minetest.get_biome_id`.
5096 * `minetest.unregister_biome(name)`
5097     * Unregisters the biome from the engine, and deletes the entry with key
5098       `name` from `minetest.registered_biomes`.
5099     * Warning: This alters the biome to biome ID correspondences, so any
5100       decorations or ores using the 'biomes' field must afterwards be cleared
5101       and re-registered.
5102 * `minetest.register_decoration(decoration definition)`
5103     * Returns an integer object handle uniquely identifying the registered
5104       decoration on success. To get the decoration ID, use
5105       `minetest.get_decoration_id`.
5106     * The order of decoration registrations determines the order of decoration
5107       generation.
5108 * `minetest.register_schematic(schematic definition)`
5109     * Returns an integer object handle uniquely identifying the registered
5110       schematic on success.
5111     * If the schematic is loaded from a file, the `name` field is set to the
5112       filename.
5113     * If the function is called when loading the mod, and `name` is a relative
5114       path, then the current mod path will be prepended to the schematic
5115       filename.
5116 * `minetest.clear_registered_biomes()`
5117     * Clears all biomes currently registered.
5118     * Warning: Clearing and re-registering biomes alters the biome to biome ID
5119       correspondences, so any decorations or ores using the 'biomes' field must
5120       afterwards be cleared and re-registered.
5121 * `minetest.clear_registered_decorations()`
5122     * Clears all decorations currently registered.
5123 * `minetest.clear_registered_ores()`
5124     * Clears all ores currently registered.
5125 * `minetest.clear_registered_schematics()`
5126     * Clears all schematics currently registered.
5127
5128 ### Gameplay
5129
5130 * `minetest.register_craft(recipe)`
5131     * Check recipe table syntax for different types below.
5132 * `minetest.clear_craft(recipe)`
5133     * Will erase existing craft based either on output item or on input recipe.
5134     * Specify either output or input only. If you specify both, input will be
5135       ignored. For input use the same recipe table syntax as for
5136       `minetest.register_craft(recipe)`. For output specify only the item,
5137       without a quantity.
5138     * Returns false if no erase candidate could be found, otherwise returns true.
5139     * **Warning**! The type field ("shaped", "cooking" or any other) will be
5140       ignored if the recipe contains output. Erasing is then done independently
5141       from the crafting method.
5142 * `minetest.register_chatcommand(cmd, chatcommand definition)`
5143 * `minetest.override_chatcommand(name, redefinition)`
5144     * Overrides fields of a chatcommand registered with `register_chatcommand`.
5145 * `minetest.unregister_chatcommand(name)`
5146     * Unregisters a chatcommands registered with `register_chatcommand`.
5147 * `minetest.register_privilege(name, definition)`
5148     * `definition` can be a description or a definition table (see [Privilege
5149       definition]).
5150     * If it is a description, the priv will be granted to singleplayer and admin
5151       by default.
5152     * To allow players with `basic_privs` to grant, see the `basic_privs`
5153       minetest.conf setting.
5154 * `minetest.register_authentication_handler(authentication handler definition)`
5155     * Registers an auth handler that overrides the builtin one.
5156     * This function can be called by a single mod once only.
5157
5158 Global callback registration functions
5159 --------------------------------------
5160
5161 Call these functions only at load time!
5162
5163 * `minetest.register_globalstep(function(dtime))`
5164     * Called every server step, usually interval of 0.1s
5165 * `minetest.register_on_mods_loaded(function())`
5166     * Called after mods have finished loading and before the media is cached or the
5167       aliases handled.
5168 * `minetest.register_on_shutdown(function())`
5169     * Called before server shutdown
5170     * **Warning**: If the server terminates abnormally (i.e. crashes), the
5171       registered callbacks **will likely not be run**. Data should be saved at
5172       semi-frequent intervals as well as on server shutdown.
5173 * `minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack, pointed_thing))`
5174     * Called when a node has been placed
5175     * If return `true` no item is taken from `itemstack`
5176     * `placer` may be any valid ObjectRef or nil.
5177     * **Not recommended**; use `on_construct` or `after_place_node` in node
5178       definition whenever possible.
5179 * `minetest.register_on_dignode(function(pos, oldnode, digger))`
5180     * Called when a node has been dug.
5181     * **Not recommended**; Use `on_destruct` or `after_dig_node` in node
5182       definition whenever possible.
5183 * `minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing))`
5184     * Called when a node is punched
5185 * `minetest.register_on_generated(function(minp, maxp, blockseed))`
5186     * Called after generating a piece of world. Modifying nodes inside the area
5187       is a bit faster than usual.
5188 * `minetest.register_on_newplayer(function(ObjectRef))`
5189     * Called when a new player enters the world for the first time
5190 * `minetest.register_on_punchplayer(function(player, hitter, time_from_last_punch, tool_capabilities, dir, damage))`
5191     * Called when a player is punched
5192     * Note: This callback is invoked even if the punched player is dead.
5193     * `player`: ObjectRef - Player that was punched
5194     * `hitter`: ObjectRef - Player that hit
5195     * `time_from_last_punch`: Meant for disallowing spamming of clicks
5196       (can be nil).
5197     * `tool_capabilities`: Capability table of used item (can be nil)
5198     * `dir`: Unit vector of direction of punch. Always defined. Points from
5199       the puncher to the punched.
5200     * `damage`: Number that represents the damage calculated by the engine
5201     * should return `true` to prevent the default damage mechanism
5202 * `minetest.register_on_rightclickplayer(function(player, clicker))`
5203     * Called when the 'place/use' key was used while pointing a player
5204       (not necessarily an actual rightclick)
5205     * `player`: ObjectRef - Player that is acted upon
5206     * `clicker`: ObjectRef - Object that acted upon `player`, may or may not be a player
5207 * `minetest.register_on_player_hpchange(function(player, hp_change, reason), modifier)`
5208     * Called when the player gets damaged or healed
5209     * `player`: ObjectRef of the player
5210     * `hp_change`: the amount of change. Negative when it is damage.
5211     * `reason`: a PlayerHPChangeReason table.
5212         * The `type` field will have one of the following values:
5213             * `set_hp`: A mod or the engine called `set_hp` without
5214                         giving a type - use this for custom damage types.
5215             * `punch`: Was punched. `reason.object` will hold the puncher, or nil if none.
5216             * `fall`
5217             * `node_damage`: `damage_per_second` from a neighboring node.
5218                              `reason.node` will hold the node name or nil.
5219             * `drown`
5220             * `respawn`
5221         * Any of the above types may have additional fields from mods.
5222         * `reason.from` will be `mod` or `engine`.
5223     * `modifier`: when true, the function should return the actual `hp_change`.
5224        Note: modifiers only get a temporary `hp_change` that can be modified by later modifiers.
5225        Modifiers can return true as a second argument to stop the execution of further functions.
5226        Non-modifiers receive the final HP change calculated by the modifiers.
5227 * `minetest.register_on_dieplayer(function(ObjectRef, reason))`
5228     * Called when a player dies
5229     * `reason`: a PlayerHPChangeReason table, see register_on_player_hpchange
5230 * `minetest.register_on_respawnplayer(function(ObjectRef))`
5231     * Called when player is to be respawned
5232     * Called _before_ repositioning of player occurs
5233     * return true in func to disable regular player placement
5234 * `minetest.register_on_prejoinplayer(function(name, ip))`
5235     * Called when a client connects to the server, prior to authentication
5236     * If it returns a string, the client is disconnected with that string as
5237       reason.
5238 * `minetest.register_on_joinplayer(function(ObjectRef, last_login))`
5239     * Called when a player joins the game
5240     * `last_login`: The timestamp of the previous login, or nil if player is new
5241 * `minetest.register_on_leaveplayer(function(ObjectRef, timed_out))`
5242     * Called when a player leaves the game
5243     * `timed_out`: True for timeout, false for other reasons.
5244 * `minetest.register_on_authplayer(function(name, ip, is_success))`
5245     * Called when a client attempts to log into an account.
5246     * `name`: The name of the account being authenticated.
5247     * `ip`: The IP address of the client
5248     * `is_success`: Whether the client was successfully authenticated
5249     * For newly registered accounts, `is_success` will always be true
5250 * `minetest.register_on_auth_fail(function(name, ip))`
5251     * Deprecated: use `minetest.register_on_authplayer(name, ip, is_success)` instead.
5252 * `minetest.register_on_cheat(function(ObjectRef, cheat))`
5253     * Called when a player cheats
5254     * `cheat`: `{type=<cheat_type>}`, where `<cheat_type>` is one of:
5255         * `moved_too_fast`
5256         * `interacted_too_far`
5257         * `interacted_with_self`
5258         * `interacted_while_dead`
5259         * `finished_unknown_dig`
5260         * `dug_unbreakable`
5261         * `dug_too_fast`
5262 * `minetest.register_on_chat_message(function(name, message))`
5263     * Called always when a player says something
5264     * Return `true` to mark the message as handled, which means that it will
5265       not be sent to other players.
5266 * `minetest.register_on_chatcommand(function(name, command, params))`
5267     * Called always when a chatcommand is triggered, before `minetest.registered_chatcommands`
5268       is checked to see if the command exists, but after the input is parsed.
5269     * Return `true` to mark the command as handled, which means that the default
5270       handlers will be prevented.
5271 * `minetest.register_on_player_receive_fields(function(player, formname, fields))`
5272     * Called when the server received input from `player` in a formspec with
5273       the given `formname`. Specifically, this is called on any of the
5274       following events:
5275           * a button was pressed,
5276           * Enter was pressed while the focus was on a text field
5277           * a checkbox was toggled,
5278           * something was selected in a dropdown list,
5279           * a different tab was selected,
5280           * selection was changed in a textlist or table,
5281           * an entry was double-clicked in a textlist or table,
5282           * a scrollbar was moved, or
5283           * the form was actively closed by the player.
5284     * Fields are sent for formspec elements which define a field. `fields`
5285       is a table containing each formspecs element value (as string), with
5286       the `name` parameter as index for each. The value depends on the
5287       formspec element type:
5288         * `animated_image`: Returns the index of the current frame.
5289         * `button` and variants: If pressed, contains the user-facing button
5290           text as value. If not pressed, is `nil`
5291         * `field`, `textarea` and variants: Text in the field
5292         * `dropdown`: Either the index or value, depending on the `index event`
5293           dropdown argument.
5294         * `tabheader`: Tab index, starting with `"1"` (only if tab changed)
5295         * `checkbox`: `"true"` if checked, `"false"` if unchecked
5296         * `textlist`: See `minetest.explode_textlist_event`
5297         * `table`: See `minetest.explode_table_event`
5298         * `scrollbar`: See `minetest.explode_scrollbar_event`
5299         * Special case: `["quit"]="true"` is sent when the user actively
5300           closed the form by mouse click, keypress or through a button_exit[]
5301           element.
5302         * Special case: `["key_enter"]="true"` is sent when the user pressed
5303           the Enter key and the focus was either nowhere (causing the formspec
5304           to be closed) or on a button. If the focus was on a text field,
5305           additionally, the index `key_enter_field` contains the name of the
5306           text field. See also: `field_close_on_enter`.
5307     * Newest functions are called first
5308     * If function returns `true`, remaining functions are not called
5309 * `minetest.register_on_craft(function(itemstack, player, old_craft_grid, craft_inv))`
5310     * Called when `player` crafts something
5311     * `itemstack` is the output
5312     * `old_craft_grid` contains the recipe (Note: the one in the inventory is
5313       cleared).
5314     * `craft_inv` is the inventory with the crafting grid
5315     * Return either an `ItemStack`, to replace the output, or `nil`, to not
5316       modify it.
5317 * `minetest.register_craft_predict(function(itemstack, player, old_craft_grid, craft_inv))`
5318     * The same as before, except that it is called before the player crafts, to
5319       make craft prediction, and it should not change anything.
5320 * `minetest.register_allow_player_inventory_action(function(player, action, inventory, inventory_info))`
5321     * Determines how much of a stack may be taken, put or moved to a
5322       player inventory.
5323     * `player` (type `ObjectRef`) is the player who modified the inventory
5324       `inventory` (type `InvRef`).
5325     * List of possible `action` (string) values and their
5326       `inventory_info` (table) contents:
5327         * `move`: `{from_list=string, to_list=string, from_index=number, to_index=number, count=number}`
5328         * `put`:  `{listname=string, index=number, stack=ItemStack}`
5329         * `take`: Same as `put`
5330     * Return a numeric value to limit the amount of items to be taken, put or
5331       moved. A value of `-1` for `take` will make the source stack infinite.
5332 * `minetest.register_on_player_inventory_action(function(player, action, inventory, inventory_info))`
5333     * Called after a take, put or move event from/to/in a player inventory
5334     * Function arguments: see `minetest.register_allow_player_inventory_action`
5335     * Does not accept or handle any return value.
5336 * `minetest.register_on_protection_violation(function(pos, name))`
5337     * Called by `builtin` and mods when a player violates protection at a
5338       position (eg, digs a node or punches a protected entity).
5339     * The registered functions can be called using
5340       `minetest.record_protection_violation`.
5341     * The provided function should check that the position is protected by the
5342       mod calling this function before it prints a message, if it does, to
5343       allow for multiple protection mods.
5344 * `minetest.register_on_item_eat(function(hp_change, replace_with_item, itemstack, user, pointed_thing))`
5345     * Called when an item is eaten, by `minetest.item_eat`
5346     * Return `itemstack` to cancel the default item eat response (i.e.: hp increase).
5347 * `minetest.register_on_item_pickup(function(itemstack, picker, pointed_thing, time_from_last_punch,  ...))`
5348     * Called by `minetest.item_pickup` before an item is picked up.
5349     * Function is added to `minetest.registered_on_item_pickups`.
5350     * Oldest functions are called first.
5351     * Parameters are the same as in the `on_pickup` callback.
5352     * Return an itemstack to cancel the default item pick-up response (i.e.: adding
5353       the item into inventory).
5354 * `minetest.register_on_priv_grant(function(name, granter, priv))`
5355     * Called when `granter` grants the priv `priv` to `name`.
5356     * Note that the callback will be called twice if it's done by a player,
5357       once with granter being the player name, and again with granter being nil.
5358 * `minetest.register_on_priv_revoke(function(name, revoker, priv))`
5359     * Called when `revoker` revokes the priv `priv` from `name`.
5360     * Note that the callback will be called twice if it's done by a player,
5361       once with revoker being the player name, and again with revoker being nil.
5362 * `minetest.register_can_bypass_userlimit(function(name, ip))`
5363     * Called when `name` user connects with `ip`.
5364     * Return `true` to by pass the player limit
5365 * `minetest.register_on_modchannel_message(function(channel_name, sender, message))`
5366     * Called when an incoming mod channel message is received
5367     * You should have joined some channels to receive events.
5368     * If message comes from a server mod, `sender` field is an empty string.
5369 * `minetest.register_on_liquid_transformed(function(pos_list, node_list))`
5370     * Called after liquid nodes (`liquidtype ~= "none"`) are modified by the
5371       engine's liquid transformation process.
5372     * `pos_list` is an array of all modified positions.
5373     * `node_list` is an array of the old node that was previously at the position
5374       with the corresponding index in pos_list.
5375
5376 Setting-related
5377 ---------------
5378
5379 * `minetest.settings`: Settings object containing all of the settings from the
5380   main config file (`minetest.conf`).
5381 * `minetest.setting_get_pos(name)`: Loads a setting from the main settings and
5382   parses it as a position (in the format `(1,2,3)`). Returns a position or nil.
5383
5384 Authentication
5385 --------------
5386
5387 * `minetest.string_to_privs(str[, delim])`:
5388     * Converts string representation of privs into table form
5389     * `delim`: String separating the privs. Defaults to `","`.
5390     * Returns `{ priv1 = true, ... }`
5391 * `minetest.privs_to_string(privs[, delim])`:
5392     * Returns the string representation of `privs`
5393     * `delim`: String to delimit privs. Defaults to `","`.
5394 * `minetest.get_player_privs(name) -> {priv1=true,...}`
5395 * `minetest.check_player_privs(player_or_name, ...)`:
5396   returns `bool, missing_privs`
5397     * A quickhand for checking privileges.
5398     * `player_or_name`: Either a Player object or the name of a player.
5399     * `...` is either a list of strings, e.g. `"priva", "privb"` or
5400       a table, e.g. `{ priva = true, privb = true }`.
5401
5402 * `minetest.check_password_entry(name, entry, password)`
5403     * Returns true if the "password entry" for a player with name matches given
5404       password, false otherwise.
5405     * The "password entry" is the password representation generated by the
5406       engine as returned as part of a `get_auth()` call on the auth handler.
5407     * Only use this function for making it possible to log in via password from
5408       external protocols such as IRC, other uses are frowned upon.
5409 * `minetest.get_password_hash(name, raw_password)`
5410     * Convert a name-password pair to a password hash that Minetest can use.
5411     * The returned value alone is not a good basis for password checks based
5412       on comparing the password hash in the database with the password hash
5413       from the function, with an externally provided password, as the hash
5414       in the db might use the new SRP verifier format.
5415     * For this purpose, use `minetest.check_password_entry` instead.
5416 * `minetest.get_player_ip(name)`: returns an IP address string for the player
5417   `name`.
5418     * The player needs to be online for this to be successful.
5419
5420 * `minetest.get_auth_handler()`: Return the currently active auth handler
5421     * See the [Authentication handler definition]
5422     * Use this to e.g. get the authentication data for a player:
5423       `local auth_data = minetest.get_auth_handler().get_auth(playername)`
5424 * `minetest.notify_authentication_modified(name)`
5425     * Must be called by the authentication handler for privilege changes.
5426     * `name`: string; if omitted, all auth data should be considered modified
5427 * `minetest.set_player_password(name, password_hash)`: Set password hash of
5428   player `name`.
5429 * `minetest.set_player_privs(name, {priv1=true,...})`: Set privileges of player
5430   `name`.
5431 * `minetest.auth_reload()`
5432     * See `reload()` in authentication handler definition
5433
5434 `minetest.set_player_password`, `minetest.set_player_privs`,
5435 `minetest.get_player_privs` and `minetest.auth_reload` call the authentication
5436 handler.
5437
5438 Chat
5439 ----
5440
5441 * `minetest.chat_send_all(text)`
5442 * `minetest.chat_send_player(name, text)`
5443 * `minetest.format_chat_message(name, message)`
5444     * Used by the server to format a chat message, based on the setting `chat_message_format`.
5445       Refer to the documentation of the setting for a list of valid placeholders.
5446     * Takes player name and message, and returns the formatted string to be sent to players.
5447     * Can be redefined by mods if required, for things like colored names or messages.
5448     * **Only** the first occurrence of each placeholder will be replaced.
5449
5450 Environment access
5451 ------------------
5452
5453 * `minetest.set_node(pos, node)`
5454 * `minetest.add_node(pos, node)`: alias to `minetest.set_node`
5455     * Set node at position `pos`
5456     * `node`: table `{name=string, param1=number, param2=number}`
5457     * If param1 or param2 is omitted, it's set to `0`.
5458     * e.g. `minetest.set_node({x=0, y=10, z=0}, {name="default:wood"})`
5459 * `minetest.bulk_set_node({pos1, pos2, pos3, ...}, node)`
5460     * Set node on all positions set in the first argument.
5461     * e.g. `minetest.bulk_set_node({{x=0, y=1, z=1}, {x=1, y=2, z=2}}, {name="default:stone"})`
5462     * For node specification or position syntax see `minetest.set_node` call
5463     * Faster than set_node due to single call, but still considerably slower
5464       than Lua Voxel Manipulators (LVM) for large numbers of nodes.
5465       Unlike LVMs, this will call node callbacks. It also allows setting nodes
5466       in spread out positions which would cause LVMs to waste memory.
5467       For setting a cube, this is 1.3x faster than set_node whereas LVM is 20
5468       times faster.
5469 * `minetest.swap_node(pos, node)`
5470     * Set node at position, but don't remove metadata
5471 * `minetest.remove_node(pos)`
5472     * By default it does the same as `minetest.set_node(pos, {name="air"})`
5473 * `minetest.get_node(pos)`
5474     * Returns the node at the given position as table in the format
5475       `{name="node_name", param1=0, param2=0}`,
5476       returns `{name="ignore", param1=0, param2=0}` for unloaded areas.
5477 * `minetest.get_node_or_nil(pos)`
5478     * Same as `get_node` but returns `nil` for unloaded areas.
5479 * `minetest.get_node_light(pos, timeofday)`
5480     * Gets the light value at the given position. Note that the light value
5481       "inside" the node at the given position is returned, so you usually want
5482       to get the light value of a neighbor.
5483     * `pos`: The position where to measure the light.
5484     * `timeofday`: `nil` for current time, `0` for night, `0.5` for day
5485     * Returns a number between `0` and `15` or `nil`
5486     * `nil` is returned e.g. when the map isn't loaded at `pos`
5487 * `minetest.get_natural_light(pos[, timeofday])`
5488     * Figures out the sunlight (or moonlight) value at pos at the given time of
5489       day.
5490     * `pos`: The position of the node
5491     * `timeofday`: `nil` for current time, `0` for night, `0.5` for day
5492     * Returns a number between `0` and `15` or `nil`
5493     * This function tests 203 nodes in the worst case, which happens very
5494       unlikely
5495 * `minetest.get_artificial_light(param1)`
5496     * Calculates the artificial light (light from e.g. torches) value from the
5497       `param1` value.
5498     * `param1`: The param1 value of a `paramtype = "light"` node.
5499     * Returns a number between `0` and `15`
5500     * Currently it's the same as `math.floor(param1 / 16)`, except that it
5501       ensures compatibility.
5502 * `minetest.place_node(pos, node)`
5503     * Place node with the same effects that a player would cause
5504 * `minetest.dig_node(pos)`
5505     * Dig node with the same effects that a player would cause
5506     * Returns `true` if successful, `false` on failure (e.g. protected location)
5507 * `minetest.punch_node(pos)`
5508     * Punch node with the same effects that a player would cause
5509 * `minetest.spawn_falling_node(pos)`
5510     * Change node into falling node
5511     * Returns `true` and the ObjectRef of the spawned entity if successful, `false` on failure
5512
5513 * `minetest.find_nodes_with_meta(pos1, pos2)`
5514     * Get a table of positions of nodes that have metadata within a region
5515       {pos1, pos2}.
5516 * `minetest.get_meta(pos)`
5517     * Get a `NodeMetaRef` at that position
5518 * `minetest.get_node_timer(pos)`
5519     * Get `NodeTimerRef`
5520
5521 * `minetest.add_entity(pos, name, [staticdata])`: Spawn Lua-defined entity at
5522   position.
5523     * Returns `ObjectRef`, or `nil` if failed
5524 * `minetest.add_item(pos, item)`: Spawn item
5525     * Returns `ObjectRef`, or `nil` if failed
5526 * `minetest.get_player_by_name(name)`: Get an `ObjectRef` to a player
5527 * `minetest.get_objects_inside_radius(pos, radius)`: returns a list of
5528   ObjectRefs.
5529     * `radius`: using a Euclidean metric
5530 * `minetest.get_objects_in_area(pos1, pos2)`: returns a list of
5531   ObjectRefs.
5532      * `pos1` and `pos2` are the min and max positions of the area to search.
5533 * `minetest.set_timeofday(val)`
5534     * `val` is between `0` and `1`; `0` for midnight, `0.5` for midday
5535 * `minetest.get_timeofday()`
5536 * `minetest.get_gametime()`: returns the time, in seconds, since the world was
5537   created.
5538 * `minetest.get_day_count()`: returns number days elapsed since world was
5539   created.
5540     * accounts for time changes.
5541 * `minetest.find_node_near(pos, radius, nodenames, [search_center])`: returns
5542   pos or `nil`.
5543     * `radius`: using a maximum metric
5544     * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
5545     * `search_center` is an optional boolean (default: `false`)
5546       If true `pos` is also checked for the nodes
5547 * `minetest.find_nodes_in_area(pos1, pos2, nodenames, [grouped])`
5548     * `pos1` and `pos2` are the min and max positions of the area to search.
5549     * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
5550     * If `grouped` is true the return value is a table indexed by node name
5551       which contains lists of positions.
5552     * If `grouped` is false or absent the return values are as follows:
5553       first value: Table with all node positions
5554       second value: Table with the count of each node with the node name
5555       as index
5556     * Area volume is limited to 4,096,000 nodes
5557 * `minetest.find_nodes_in_area_under_air(pos1, pos2, nodenames)`: returns a
5558   list of positions.
5559     * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
5560     * Return value: Table with all node positions with a node air above
5561     * Area volume is limited to 4,096,000 nodes
5562 * `minetest.get_perlin(noiseparams)`
5563     * Return world-specific perlin noise.
5564     * The actual seed used is the noiseparams seed plus the world seed.
5565 * `minetest.get_perlin(seeddiff, octaves, persistence, spread)`
5566     * Deprecated: use `minetest.get_perlin(noiseparams)` instead.
5567     * Return world-specific perlin noise.
5568 * `minetest.get_voxel_manip([pos1, pos2])`
5569     * Return voxel manipulator object.
5570     * Loads the manipulator from the map if positions are passed.
5571 * `minetest.set_gen_notify(flags, {deco_ids})`
5572     * Set the types of on-generate notifications that should be collected.
5573     * `flags` is a flag field with the available flags:
5574         * dungeon
5575         * temple
5576         * cave_begin
5577         * cave_end
5578         * large_cave_begin
5579         * large_cave_end
5580         * decoration
5581     * The second parameter is a list of IDs of decorations which notification
5582       is requested for.
5583 * `minetest.get_gen_notify()`
5584     * Returns a flagstring and a table with the `deco_id`s.
5585 * `minetest.get_decoration_id(decoration_name)`
5586     * Returns the decoration ID number for the provided decoration name string,
5587       or `nil` on failure.
5588 * `minetest.get_mapgen_object(objectname)`
5589     * Return requested mapgen object if available (see [Mapgen objects])
5590 * `minetest.get_heat(pos)`
5591     * Returns the heat at the position, or `nil` on failure.
5592 * `minetest.get_humidity(pos)`
5593     * Returns the humidity at the position, or `nil` on failure.
5594 * `minetest.get_biome_data(pos)`
5595     * Returns a table containing:
5596         * `biome` the biome id of the biome at that position
5597         * `heat` the heat at the position
5598         * `humidity` the humidity at the position
5599     * Or returns `nil` on failure.
5600 * `minetest.get_biome_id(biome_name)`
5601     * Returns the biome id, as used in the biomemap Mapgen object and returned
5602       by `minetest.get_biome_data(pos)`, for a given biome_name string.
5603 * `minetest.get_biome_name(biome_id)`
5604     * Returns the biome name string for the provided biome id, or `nil` on
5605       failure.
5606     * If no biomes have been registered, such as in mgv6, returns `default`.
5607 * `minetest.get_mapgen_params()`
5608     * Deprecated: use `minetest.get_mapgen_setting(name)` instead.
5609     * Returns a table containing:
5610         * `mgname`
5611         * `seed`
5612         * `chunksize`
5613         * `water_level`
5614         * `flags`
5615 * `minetest.set_mapgen_params(MapgenParams)`
5616     * Deprecated: use `minetest.set_mapgen_setting(name, value, override)`
5617       instead.
5618     * Set map generation parameters.
5619     * Function cannot be called after the registration period.
5620     * Takes a table as an argument with the fields:
5621         * `mgname`
5622         * `seed`
5623         * `chunksize`
5624         * `water_level`
5625         * `flags`
5626     * Leave field unset to leave that parameter unchanged.
5627     * `flags` contains a comma-delimited string of flags to set, or if the
5628       prefix `"no"` is attached, clears instead.
5629     * `flags` is in the same format and has the same options as `mg_flags` in
5630       `minetest.conf`.
5631 * `minetest.get_mapgen_edges([mapgen_limit[, chunksize]])`
5632     * Returns the minimum and maximum possible generated node positions
5633       in that order.
5634     * `mapgen_limit` is an optional number. If it is absent, its value is that
5635       of the *active* mapgen setting `"mapgen_limit"`.
5636     * `chunksize` is an optional number. If it is absent, its value is that
5637       of the *active* mapgen setting `"chunksize"`.
5638 * `minetest.get_mapgen_setting(name)`
5639     * Gets the *active* mapgen setting (or nil if none exists) in string
5640       format with the following order of precedence:
5641         1) Settings loaded from map_meta.txt or overrides set during mod
5642            execution.
5643         2) Settings set by mods without a metafile override
5644         3) Settings explicitly set in the user config file, minetest.conf
5645         4) Settings set as the user config default
5646 * `minetest.get_mapgen_setting_noiseparams(name)`
5647     * Same as above, but returns the value as a NoiseParams table if the
5648       setting `name` exists and is a valid NoiseParams.
5649 * `minetest.set_mapgen_setting(name, value, [override_meta])`
5650     * Sets a mapgen param to `value`, and will take effect if the corresponding
5651       mapgen setting is not already present in map_meta.txt.
5652     * `override_meta` is an optional boolean (default: `false`). If this is set
5653       to true, the setting will become the active setting regardless of the map
5654       metafile contents.
5655     * Note: to set the seed, use `"seed"`, not `"fixed_map_seed"`.
5656 * `minetest.set_mapgen_setting_noiseparams(name, value, [override_meta])`
5657     * Same as above, except value is a NoiseParams table.
5658 * `minetest.set_noiseparams(name, noiseparams, set_default)`
5659     * Sets the noiseparams setting of `name` to the noiseparams table specified
5660       in `noiseparams`.
5661     * `set_default` is an optional boolean (default: `true`) that specifies
5662       whether the setting should be applied to the default config or current
5663       active config.
5664 * `minetest.get_noiseparams(name)`
5665     * Returns a table of the noiseparams for name.
5666 * `minetest.generate_ores(vm, pos1, pos2)`
5667     * Generate all registered ores within the VoxelManip `vm` and in the area
5668       from `pos1` to `pos2`.
5669     * `pos1` and `pos2` are optional and default to mapchunk minp and maxp.
5670 * `minetest.generate_decorations(vm, pos1, pos2)`
5671     * Generate all registered decorations within the VoxelManip `vm` and in the
5672       area from `pos1` to `pos2`.
5673     * `pos1` and `pos2` are optional and default to mapchunk minp and maxp.
5674 * `minetest.clear_objects([options])`
5675     * Clear all objects in the environment
5676     * Takes an optional table as an argument with the field `mode`.
5677         * mode = `"full"`: Load and go through every mapblock, clearing
5678                             objects (default).
5679         * mode = `"quick"`: Clear objects immediately in loaded mapblocks,
5680                             clear objects in unloaded mapblocks only when the
5681                             mapblocks are next activated.
5682 * `minetest.load_area(pos1[, pos2])`
5683     * Load the mapblocks containing the area from `pos1` to `pos2`.
5684       `pos2` defaults to `pos1` if not specified.
5685     * This function does not trigger map generation.
5686 * `minetest.emerge_area(pos1, pos2, [callback], [param])`
5687     * Queue all blocks in the area from `pos1` to `pos2`, inclusive, to be
5688       asynchronously fetched from memory, loaded from disk, or if inexistent,
5689       generates them.
5690     * If `callback` is a valid Lua function, this will be called for each block
5691       emerged.
5692     * The function signature of callback is:
5693       `function EmergeAreaCallback(blockpos, action, calls_remaining, param)`
5694         * `blockpos` is the *block* coordinates of the block that had been
5695           emerged.
5696         * `action` could be one of the following constant values:
5697             * `minetest.EMERGE_CANCELLED`
5698             * `minetest.EMERGE_ERRORED`
5699             * `minetest.EMERGE_FROM_MEMORY`
5700             * `minetest.EMERGE_FROM_DISK`
5701             * `minetest.EMERGE_GENERATED`
5702         * `calls_remaining` is the number of callbacks to be expected after
5703           this one.
5704         * `param` is the user-defined parameter passed to emerge_area (or
5705           nil if the parameter was absent).
5706 * `minetest.delete_area(pos1, pos2)`
5707     * delete all mapblocks in the area from pos1 to pos2, inclusive
5708 * `minetest.line_of_sight(pos1, pos2)`: returns `boolean, pos`
5709     * Checks if there is anything other than air between pos1 and pos2.
5710     * Returns false if something is blocking the sight.
5711     * Returns the position of the blocking node when `false`
5712     * `pos1`: First position
5713     * `pos2`: Second position
5714 * `minetest.raycast(pos1, pos2, objects, liquids)`: returns `Raycast`
5715     * Creates a `Raycast` object.
5716     * `pos1`: start of the ray
5717     * `pos2`: end of the ray
5718     * `objects`: if false, only nodes will be returned. Default is `true`.
5719     * `liquids`: if false, liquid nodes (`liquidtype ~= "none"`) won't be
5720                  returned. Default is `false`.
5721 * `minetest.find_path(pos1,pos2,searchdistance,max_jump,max_drop,algorithm)`
5722     * returns table containing path that can be walked on
5723     * returns a table of 3D points representing a path from `pos1` to `pos2` or
5724       `nil` on failure.
5725     * Reasons for failure:
5726         * No path exists at all
5727         * No path exists within `searchdistance` (see below)
5728         * Start or end pos is buried in land
5729     * `pos1`: start position
5730     * `pos2`: end position
5731     * `searchdistance`: maximum distance from the search positions to search in.
5732       In detail: Path must be completely inside a cuboid. The minimum
5733       `searchdistance` of 1 will confine search between `pos1` and `pos2`.
5734       Larger values will increase the size of this cuboid in all directions
5735     * `max_jump`: maximum height difference to consider walkable
5736     * `max_drop`: maximum height difference to consider droppable
5737     * `algorithm`: One of `"A*_noprefetch"` (default), `"A*"`, `"Dijkstra"`.
5738       Difference between `"A*"` and `"A*_noprefetch"` is that
5739       `"A*"` will pre-calculate the cost-data, the other will calculate it
5740       on-the-fly
5741 * `minetest.spawn_tree (pos, {treedef})`
5742     * spawns L-system tree at given `pos` with definition in `treedef` table
5743 * `minetest.transforming_liquid_add(pos)`
5744     * add node to liquid flow update queue
5745 * `minetest.get_node_max_level(pos)`
5746     * get max available level for leveled node
5747 * `minetest.get_node_level(pos)`
5748     * get level of leveled node (water, snow)
5749 * `minetest.set_node_level(pos, level)`
5750     * set level of leveled node, default `level` equals `1`
5751     * if `totallevel > maxlevel`, returns rest (`total-max`).
5752 * `minetest.add_node_level(pos, level)`
5753     * increase level of leveled node by level, default `level` equals `1`
5754     * if `totallevel > maxlevel`, returns rest (`total-max`)
5755     * `level` must be between -127 and 127
5756 * `minetest.fix_light(pos1, pos2)`: returns `true`/`false`
5757     * resets the light in a cuboid-shaped part of
5758       the map and removes lighting bugs.
5759     * Loads the area if it is not loaded.
5760     * `pos1` is the corner of the cuboid with the least coordinates
5761       (in node coordinates), inclusive.
5762     * `pos2` is the opposite corner of the cuboid, inclusive.
5763     * The actual updated cuboid might be larger than the specified one,
5764       because only whole map blocks can be updated.
5765       The actual updated area consists of those map blocks that intersect
5766       with the given cuboid.
5767     * However, the neighborhood of the updated area might change
5768       as well, as light can spread out of the cuboid, also light
5769       might be removed.
5770     * returns `false` if the area is not fully generated,
5771       `true` otherwise
5772 * `minetest.check_single_for_falling(pos)`
5773     * causes an unsupported `group:falling_node` node to fall and causes an
5774       unattached `group:attached_node` node to fall.
5775     * does not spread these updates to neighbors.
5776 * `minetest.check_for_falling(pos)`
5777     * causes an unsupported `group:falling_node` node to fall and causes an
5778       unattached `group:attached_node` node to fall.
5779     * spread these updates to neighbors and can cause a cascade
5780       of nodes to fall.
5781 * `minetest.get_spawn_level(x, z)`
5782     * Returns a player spawn y co-ordinate for the provided (x, z)
5783       co-ordinates, or `nil` for an unsuitable spawn point.
5784     * For most mapgens a 'suitable spawn point' is one with y between
5785       `water_level` and `water_level + 16`, and in mgv7 well away from rivers,
5786       so `nil` will be returned for many (x, z) co-ordinates.
5787     * The spawn level returned is for a player spawn in unmodified terrain.
5788     * The spawn level is intentionally above terrain level to cope with
5789       full-node biome 'dust' nodes.
5790
5791 Mod channels
5792 ------------
5793
5794 You can find mod channels communication scheme in `doc/mod_channels.png`.
5795
5796 * `minetest.mod_channel_join(channel_name)`
5797     * Server joins channel `channel_name`, and creates it if necessary. You
5798       should listen for incoming messages with
5799       `minetest.register_on_modchannel_message`
5800
5801 Inventory
5802 ---------
5803
5804 `minetest.get_inventory(location)`: returns an `InvRef`
5805
5806 * `location` = e.g.
5807     * `{type="player", name="celeron55"}`
5808     * `{type="node", pos={x=, y=, z=}}`
5809     * `{type="detached", name="creative"}`
5810 * `minetest.create_detached_inventory(name, callbacks, [player_name])`: returns
5811   an `InvRef`.
5812     * `callbacks`: See [Detached inventory callbacks]
5813     * `player_name`: Make detached inventory available to one player
5814       exclusively, by default they will be sent to every player (even if not
5815       used).
5816       Note that this parameter is mostly just a workaround and will be removed
5817       in future releases.
5818     * Creates a detached inventory. If it already exists, it is cleared.
5819 * `minetest.remove_detached_inventory(name)`
5820     * Returns a `boolean` indicating whether the removal succeeded.
5821 * `minetest.do_item_eat(hp_change, replace_with_item, itemstack, user, pointed_thing)`:
5822   returns leftover ItemStack or nil to indicate no inventory change
5823     * See `minetest.item_eat` and `minetest.register_on_item_eat`
5824
5825 Formspec
5826 --------
5827
5828 * `minetest.show_formspec(playername, formname, formspec)`
5829     * `playername`: name of player to show formspec
5830     * `formname`: name passed to `on_player_receive_fields` callbacks.
5831       It should follow the `"modname:<whatever>"` naming convention
5832     * `formspec`: formspec to display
5833 * `minetest.close_formspec(playername, formname)`
5834     * `playername`: name of player to close formspec
5835     * `formname`: has to exactly match the one given in `show_formspec`, or the
5836       formspec will not close.
5837     * calling `show_formspec(playername, formname, "")` is equal to this
5838       expression.
5839     * to close a formspec regardless of the formname, call
5840       `minetest.close_formspec(playername, "")`.
5841       **USE THIS ONLY WHEN ABSOLUTELY NECESSARY!**
5842 * `minetest.formspec_escape(string)`: returns a string
5843     * escapes the characters "[", "]", "\", "," and ";", which cannot be used
5844       in formspecs.
5845 * `minetest.explode_table_event(string)`: returns a table
5846     * returns e.g. `{type="CHG", row=1, column=2}`
5847     * `type` is one of:
5848         * `"INV"`: no row selected
5849         * `"CHG"`: selected
5850         * `"DCL"`: double-click
5851 * `minetest.explode_textlist_event(string)`: returns a table
5852     * returns e.g. `{type="CHG", index=1}`
5853     * `type` is one of:
5854         * `"INV"`: no row selected
5855         * `"CHG"`: selected
5856         * `"DCL"`: double-click
5857 * `minetest.explode_scrollbar_event(string)`: returns a table
5858     * returns e.g. `{type="CHG", value=500}`
5859     * `type` is one of:
5860         * `"INV"`: something failed
5861         * `"CHG"`: has been changed
5862         * `"VAL"`: not changed
5863
5864 Item handling
5865 -------------
5866
5867 * `minetest.inventorycube(img1, img2, img3)`
5868     * Returns a string for making an image of a cube (useful as an item image)
5869 * `minetest.get_pointed_thing_position(pointed_thing, above)`
5870     * Returns the position of a `pointed_thing` or `nil` if the `pointed_thing`
5871       does not refer to a node or entity.
5872     * If the optional `above` parameter is true and the `pointed_thing` refers
5873       to a node, then it will return the `above` position of the `pointed_thing`.
5874 * `minetest.dir_to_facedir(dir, is6d)`
5875     * Convert a vector to a facedir value, used in `param2` for
5876       `paramtype2="facedir"`.
5877     * passing something non-`nil`/`false` for the optional second parameter
5878       causes it to take the y component into account.
5879 * `minetest.facedir_to_dir(facedir)`
5880     * Convert a facedir back into a vector aimed directly out the "back" of a
5881       node.
5882 * `minetest.dir_to_fourdir(dir)`
5883     * Convert a vector to a 4dir value, used in `param2` for
5884       `paramtype2="4dir"`.
5885 * `minetest.fourdir_to_dir(fourdir)`
5886     * Convert a 4dir back into a vector aimed directly out the "back" of a
5887       node.
5888 * `minetest.dir_to_wallmounted(dir)`
5889     * Convert a vector to a wallmounted value, used for
5890       `paramtype2="wallmounted"`.
5891 * `minetest.wallmounted_to_dir(wallmounted)`
5892     * Convert a wallmounted value back into a vector aimed directly out the
5893       "back" of a node.
5894 * `minetest.dir_to_yaw(dir)`
5895     * Convert a vector into a yaw (angle)
5896 * `minetest.yaw_to_dir(yaw)`
5897     * Convert yaw (angle) to a vector
5898 * `minetest.is_colored_paramtype(ptype)`
5899     * Returns a boolean. Returns `true` if the given `paramtype2` contains
5900       color information (`color`, `colorwallmounted`, `colorfacedir`, etc.).
5901 * `minetest.strip_param2_color(param2, paramtype2)`
5902     * Removes everything but the color information from the
5903       given `param2` value.
5904     * Returns `nil` if the given `paramtype2` does not contain color
5905       information.
5906 * `minetest.get_node_drops(node, toolname)`
5907     * Returns list of itemstrings that are dropped by `node` when dug
5908       with the item `toolname` (not limited to tools).
5909     * `node`: node as table or node name
5910     * `toolname`: name of the item used to dig (can be `nil`)
5911 * `minetest.get_craft_result(input)`: returns `output, decremented_input`
5912     * `input.method` = `"normal"` or `"cooking"` or `"fuel"`
5913     * `input.width` = for example `3`
5914     * `input.items` = for example
5915       `{stack1, stack2, stack3, stack4, stack 5, stack 6, stack 7, stack 8, stack 9}`
5916     * `output.item` = `ItemStack`, if unsuccessful: empty `ItemStack`
5917     * `output.time` = a number, if unsuccessful: `0`
5918     * `output.replacements` = List of replacement `ItemStack`s that couldn't be
5919       placed in `decremented_input.items`. Replacements can be placed in
5920       `decremented_input` if the stack of the replaced item has a count of 1.
5921     * `decremented_input` = like `input`
5922 * `minetest.get_craft_recipe(output)`: returns input
5923     * returns last registered recipe for output item (node)
5924     * `output` is a node or item type such as `"default:torch"`
5925     * `input.method` = `"normal"` or `"cooking"` or `"fuel"`
5926     * `input.width` = for example `3`
5927     * `input.items` = for example
5928       `{stack1, stack2, stack3, stack4, stack 5, stack 6, stack 7, stack 8, stack 9}`
5929         * `input.items` = `nil` if no recipe found
5930 * `minetest.get_all_craft_recipes(query item)`: returns a table or `nil`
5931     * returns indexed table with all registered recipes for query item (node)
5932       or `nil` if no recipe was found.
5933     * recipe entry table:
5934         * `method`: 'normal' or 'cooking' or 'fuel'
5935         * `width`: 0-3, 0 means shapeless recipe
5936         * `items`: indexed [1-9] table with recipe items
5937         * `output`: string with item name and quantity
5938     * Example result for `"default:gold_ingot"` with two recipes:
5939
5940           {
5941               {
5942                   method = "cooking", width = 3,
5943                   output = "default:gold_ingot", items = {"default:gold_lump"}
5944               },
5945               {
5946                   method = "normal", width = 1,
5947                   output = "default:gold_ingot 9", items = {"default:goldblock"}
5948               }
5949           }
5950
5951 * `minetest.handle_node_drops(pos, drops, digger)`
5952     * `drops`: list of itemstrings
5953     * Handles drops from nodes after digging: Default action is to put them
5954       into digger's inventory.
5955     * Can be overridden to get different functionality (e.g. dropping items on
5956       ground)
5957 * `minetest.itemstring_with_palette(item, palette_index)`: returns an item
5958   string.
5959     * Creates an item string which contains palette index information
5960       for hardware colorization. You can use the returned string
5961       as an output in a craft recipe.
5962     * `item`: the item stack which becomes colored. Can be in string,
5963       table and native form.
5964     * `palette_index`: this index is added to the item stack
5965 * `minetest.itemstring_with_color(item, colorstring)`: returns an item string
5966     * Creates an item string which contains static color information
5967       for hardware colorization. Use this method if you wish to colorize
5968       an item that does not own a palette. You can use the returned string
5969       as an output in a craft recipe.
5970     * `item`: the item stack which becomes colored. Can be in string,
5971       table and native form.
5972     * `colorstring`: the new color of the item stack
5973
5974 Rollback
5975 --------
5976
5977 * `minetest.rollback_get_node_actions(pos, range, seconds, limit)`:
5978   returns `{{actor, pos, time, oldnode, newnode}, ...}`
5979     * Find who has done something to a node, or near a node
5980     * `actor`: `"player:<name>"`, also `"liquid"`.
5981 * `minetest.rollback_revert_actions_by(actor, seconds)`: returns
5982   `boolean, log_messages`.
5983     * Revert latest actions of someone
5984     * `actor`: `"player:<name>"`, also `"liquid"`.
5985
5986 Defaults for the `on_place` and `on_drop` item definition functions
5987 -------------------------------------------------------------------
5988
5989 * `minetest.item_place_node(itemstack, placer, pointed_thing[, param2, prevent_after_place])`
5990     * Place item as a node
5991     * `param2` overrides `facedir` and wallmounted `param2`
5992     * `prevent_after_place`: if set to `true`, `after_place_node` is not called
5993       for the newly placed node to prevent a callback and placement loop
5994     * returns `itemstack, position`
5995       * `position`: the location the node was placed to. `nil` if nothing was placed.
5996 * `minetest.item_place_object(itemstack, placer, pointed_thing)`
5997     * Place item as-is
5998     * returns the leftover itemstack
5999     * **Note**: This function is deprecated and will never be called.
6000 * `minetest.item_place(itemstack, placer, pointed_thing[, param2])`
6001     * Wrapper that calls `minetest.item_place_node` if appropriate
6002     * Calls `on_rightclick` of `pointed_thing.under` if defined instead
6003     * **Note**: is not called when wielded item overrides `on_place`
6004     * `param2` overrides facedir and wallmounted `param2`
6005     * returns `itemstack, position`
6006       * `position`: the location the node was placed to. `nil` if nothing was placed.
6007 * `minetest.item_pickup(itemstack, picker, pointed_thing, time_from_last_punch, ...)`
6008     * Runs callbacks registered by `minetest.register_on_item_pickup` and adds
6009       the item to the picker's `"main"` inventory list.
6010     * Parameters are the same as in `on_pickup`.
6011     * Returns the leftover itemstack.
6012 * `minetest.item_drop(itemstack, dropper, pos)`
6013     * Drop the item
6014     * returns the leftover itemstack
6015 * `minetest.item_eat(hp_change[, replace_with_item])`
6016     * Returns `function(itemstack, user, pointed_thing)` as a
6017       function wrapper for `minetest.do_item_eat`.
6018     * `replace_with_item` is the itemstring which is added to the inventory.
6019       If the player is eating a stack, then replace_with_item goes to a
6020       different spot.
6021
6022 Defaults for the `on_punch` and `on_dig` node definition callbacks
6023 ------------------------------------------------------------------
6024
6025 * `minetest.node_punch(pos, node, puncher, pointed_thing)`
6026     * Calls functions registered by `minetest.register_on_punchnode()`
6027 * `minetest.node_dig(pos, node, digger)`
6028     * Checks if node can be dug, puts item into inventory, removes node
6029     * Calls functions registered by `minetest.registered_on_dignodes()`
6030
6031 Sounds
6032 ------
6033
6034 * `minetest.sound_play(spec, parameters, [ephemeral])`: returns a handle
6035     * `spec` is a `SimpleSoundSpec`
6036     * `parameters` is a sound parameter table
6037     * `ephemeral` is a boolean (default: false)
6038       Ephemeral sounds will not return a handle and can't be stopped or faded.
6039       It is recommend to use this for short sounds that happen in response to
6040       player actions (e.g. door closing).
6041 * `minetest.sound_stop(handle)`
6042     * `handle` is a handle returned by `minetest.sound_play`
6043 * `minetest.sound_fade(handle, step, gain)`
6044     * `handle` is a handle returned by `minetest.sound_play`
6045     * `step` determines how fast a sound will fade.
6046       The gain will change by this much per second,
6047       until it reaches the target gain.
6048       Note: Older versions used a signed step. This is deprecated, but old
6049       code will still work. (the client uses abs(step) to correct it)
6050     * `gain` the target gain for the fade.
6051       Fading to zero will delete the sound.
6052
6053 Timing
6054 ------
6055
6056 * `minetest.after(time, func, ...)`: returns job table to use as below.
6057     * Call the function `func` after `time` seconds, may be fractional
6058     * Optional: Variable number of arguments that are passed to `func`
6059
6060 * `job:cancel()`
6061     * Cancels the job function from being called
6062
6063 Async environment
6064 -----------------
6065
6066 The engine allows you to submit jobs to be ran in an isolated environment
6067 concurrently with normal server operation.
6068 A job consists of a function to be ran in the async environment, any amount of
6069 arguments (will be serialized) and a callback that will be called with the return
6070 value of the job function once it is finished.
6071
6072 The async environment does *not* have access to the map, entities, players or any
6073 globals defined in the 'usual' environment. Consequently, functions like
6074 `minetest.get_node()` or `minetest.get_player_by_name()` simply do not exist in it.
6075
6076 Arguments and return values passed through this can contain certain userdata
6077 objects that will be seamlessly copied (not shared) to the async environment.
6078 This allows you easy interoperability for delegating work to jobs.
6079
6080 * `minetest.handle_async(func, callback, ...)`:
6081     * Queue the function `func` to be ran in an async environment.
6082       Note that there are multiple persistent workers and any of them may
6083       end up running a given job. The engine will scale the amount of
6084       worker threads automatically.
6085     * When `func` returns the callback is called (in the normal environment)
6086       with all of the return values as arguments.
6087     * Optional: Variable number of arguments that are passed to `func`
6088 * `minetest.register_async_dofile(path)`:
6089     * Register a path to a Lua file to be imported when an async environment
6090       is initialized. You can use this to preload code which you can then call
6091       later using `minetest.handle_async()`.
6092
6093 ### List of APIs available in an async environment
6094
6095 Classes:
6096 * `ItemStack`
6097 * `PerlinNoise`
6098 * `PerlinNoiseMap`
6099 * `PseudoRandom`
6100 * `PcgRandom`
6101 * `SecureRandom`
6102 * `VoxelArea`
6103 * `VoxelManip`
6104     * only if transferred into environment; can't read/write to map
6105 * `Settings`
6106
6107 Class instances that can be transferred between environments:
6108 * `ItemStack`
6109 * `PerlinNoise`
6110 * `PerlinNoiseMap`
6111 * `VoxelManip`
6112
6113 Functions:
6114 * Standalone helpers such as logging, filesystem, encoding,
6115   hashing or compression APIs
6116 * `minetest.request_insecure_environment` (same restrictions apply)
6117
6118 Variables:
6119 * `minetest.settings`
6120 * `minetest.registered_items`, `registered_nodes`, `registered_tools`,
6121   `registered_craftitems` and `registered_aliases`
6122     * with all functions and userdata values replaced by `true`, calling any
6123       callbacks here is obviously not possible
6124
6125 Server
6126 ------
6127
6128 * `minetest.request_shutdown([message],[reconnect],[delay])`: request for
6129   server shutdown. Will display `message` to clients.
6130     * `reconnect` == true displays a reconnect button
6131     * `delay` adds an optional delay (in seconds) before shutdown.
6132       Negative delay cancels the current active shutdown.
6133       Zero delay triggers an immediate shutdown.
6134 * `minetest.cancel_shutdown_requests()`: cancel current delayed shutdown
6135 * `minetest.get_server_status(name, joined)`
6136     * Returns the server status string when a player joins or when the command
6137       `/status` is called. Returns `nil` or an empty string when the message is
6138       disabled.
6139     * `joined`: Boolean value, indicates whether the function was called when
6140       a player joined.
6141     * This function may be overwritten by mods to customize the status message.
6142 * `minetest.get_server_uptime()`: returns the server uptime in seconds
6143 * `minetest.get_server_max_lag()`: returns the current maximum lag
6144   of the server in seconds or nil if server is not fully loaded yet
6145 * `minetest.remove_player(name)`: remove player from database (if they are not
6146   connected).
6147     * As auth data is not removed, minetest.player_exists will continue to
6148       return true. Call the below method as well if you want to remove auth
6149       data too.
6150     * Returns a code (0: successful, 1: no such player, 2: player is connected)
6151 * `minetest.remove_player_auth(name)`: remove player authentication data
6152     * Returns boolean indicating success (false if player nonexistent)
6153 * `minetest.dynamic_add_media(options, callback)`
6154     * `options`: table containing the following parameters
6155         * `filepath`: path to a media file on the filesystem
6156         * `to_player`: name of the player the media should be sent to instead of
6157                        all players (optional)
6158         * `ephemeral`: boolean that marks the media as ephemeral,
6159                        it will not be cached on the client (optional, default false)
6160     * `callback`: function with arguments `name`, which is a player name
6161     * Pushes the specified media file to client(s). (details below)
6162       The file must be a supported image, sound or model format.
6163       Dynamically added media is not persisted between server restarts.
6164     * Returns false on error, true if the request was accepted
6165     * The given callback will be called for every player as soon as the
6166       media is available on the client.
6167     * Details/Notes:
6168       * If `ephemeral`=false and `to_player` is unset the file is added to the media
6169         sent to clients on startup, this means the media will appear even on
6170         old clients if they rejoin the server.
6171       * If `ephemeral`=false the file must not be modified, deleted, moved or
6172         renamed after calling this function.
6173       * Regardless of any use of `ephemeral`, adding media files with the same
6174         name twice is not possible/guaranteed to work. An exception to this is the
6175         use of `to_player` to send the same, already existent file to multiple
6176         chosen players.
6177     * Clients will attempt to fetch files added this way via remote media,
6178       this can make transfer of bigger files painless (if set up). Nevertheless
6179       it is advised not to use dynamic media for big media files.
6180
6181 Bans
6182 ----
6183
6184 * `minetest.get_ban_list()`: returns a list of all bans formatted as string
6185 * `minetest.get_ban_description(ip_or_name)`: returns list of bans matching
6186   IP address or name formatted as string
6187 * `minetest.ban_player(name)`: ban the IP of a currently connected player
6188     * Returns boolean indicating success
6189 * `minetest.unban_player_or_ip(ip_or_name)`: remove ban record matching
6190   IP address or name
6191 * `minetest.kick_player(name, [reason])`: disconnect a player with an optional
6192   reason.
6193     * Returns boolean indicating success (false if player nonexistent)
6194 * `minetest.disconnect_player(name, [reason])`: disconnect a player with an
6195   optional reason, this will not prefix with 'Kicked: ' like kick_player.
6196   If no reason is given, it will default to 'Disconnected.'
6197     * Returns boolean indicating success (false if player nonexistent)
6198
6199 Particles
6200 ---------
6201
6202 * `minetest.add_particle(particle definition)`
6203     * Deprecated: `minetest.add_particle(pos, velocity, acceleration,
6204       expirationtime, size, collisiondetection, texture, playername)`
6205
6206 * `minetest.add_particlespawner(particlespawner definition)`
6207     * Add a `ParticleSpawner`, an object that spawns an amount of particles
6208       over `time` seconds.
6209     * Returns an `id`, and -1 if adding didn't succeed
6210     * Deprecated: `minetest.add_particlespawner(amount, time,
6211       minpos, maxpos,
6212       minvel, maxvel,
6213       minacc, maxacc,
6214       minexptime, maxexptime,
6215       minsize, maxsize,
6216       collisiondetection, texture, playername)`
6217
6218 * `minetest.delete_particlespawner(id, player)`
6219     * Delete `ParticleSpawner` with `id` (return value from
6220       `minetest.add_particlespawner`).
6221     * If playername is specified, only deletes on the player's client,
6222       otherwise on all clients.
6223
6224 Schematics
6225 ----------
6226
6227 * `minetest.create_schematic(p1, p2, probability_list, filename, slice_prob_list)`
6228     * Create a schematic from the volume of map specified by the box formed by
6229       p1 and p2.
6230     * Apply the specified probability and per-node force-place to the specified
6231       nodes according to the `probability_list`.
6232         * `probability_list` is an array of tables containing two fields, `pos`
6233           and `prob`.
6234             * `pos` is the 3D vector specifying the absolute coordinates of the
6235               node being modified,
6236             * `prob` is an integer value from `0` to `255` that encodes
6237               probability and per-node force-place. Probability has levels
6238               0-127, then 128 may be added to encode per-node force-place.
6239               For probability stated as 0-255, divide by 2 and round down to
6240               get values 0-127, then add 128 to apply per-node force-place.
6241             * If there are two or more entries with the same pos value, the
6242               last entry is used.
6243             * If `pos` is not inside the box formed by `p1` and `p2`, it is
6244               ignored.
6245             * If `probability_list` equals `nil`, no probabilities are applied.
6246     * Apply the specified probability to the specified horizontal slices
6247       according to the `slice_prob_list`.
6248         * `slice_prob_list` is an array of tables containing two fields, `ypos`
6249           and `prob`.
6250             * `ypos` indicates the y position of the slice with a probability
6251               applied, the lowest slice being `ypos = 0`.
6252             * If slice probability list equals `nil`, no slice probabilities
6253               are applied.
6254     * Saves schematic in the Minetest Schematic format to filename.
6255
6256 * `minetest.place_schematic(pos, schematic, rotation, replacements, force_placement, flags)`
6257     * Place the schematic specified by schematic (see [Schematic specifier]) at
6258       `pos`.
6259     * `rotation` can equal `"0"`, `"90"`, `"180"`, `"270"`, or `"random"`.
6260     * If the `rotation` parameter is omitted, the schematic is not rotated.
6261     * `replacements` = `{["old_name"] = "convert_to", ...}`
6262     * `force_placement` is a boolean indicating whether nodes other than `air`
6263       and `ignore` are replaced by the schematic.
6264     * Returns nil if the schematic could not be loaded.
6265     * **Warning**: Once you have loaded a schematic from a file, it will be
6266       cached. Future calls will always use the cached version and the
6267       replacement list defined for it, regardless of whether the file or the
6268       replacement list parameter have changed. The only way to load the file
6269       anew is to restart the server.
6270     * `flags` is a flag field with the available flags:
6271         * place_center_x
6272         * place_center_y
6273         * place_center_z
6274
6275 * `minetest.place_schematic_on_vmanip(vmanip, pos, schematic, rotation, replacement, force_placement, flags)`:
6276     * This function is analogous to minetest.place_schematic, but places a
6277       schematic onto the specified VoxelManip object `vmanip` instead of the
6278       map.
6279     * Returns false if any part of the schematic was cut-off due to the
6280       VoxelManip not containing the full area required, and true if the whole
6281       schematic was able to fit.
6282     * Returns nil if the schematic could not be loaded.
6283     * After execution, any external copies of the VoxelManip contents are
6284       invalidated.
6285     * `flags` is a flag field with the available flags:
6286         * place_center_x
6287         * place_center_y
6288         * place_center_z
6289
6290 * `minetest.serialize_schematic(schematic, format, options)`
6291     * Return the serialized schematic specified by schematic
6292       (see [Schematic specifier])
6293     * in the `format` of either "mts" or "lua".
6294     * "mts" - a string containing the binary MTS data used in the MTS file
6295       format.
6296     * "lua" - a string containing Lua code representing the schematic in table
6297       format.
6298     * `options` is a table containing the following optional parameters:
6299         * If `lua_use_comments` is true and `format` is "lua", the Lua code
6300           generated will have (X, Z) position comments for every X row
6301           generated in the schematic data for easier reading.
6302         * If `lua_num_indent_spaces` is a nonzero number and `format` is "lua",
6303           the Lua code generated will use that number of spaces as indentation
6304           instead of a tab character.
6305
6306 * `minetest.read_schematic(schematic, options)`
6307     * Returns a Lua table representing the schematic (see: [Schematic specifier])
6308     * `schematic` is the schematic to read (see: [Schematic specifier])
6309     * `options` is a table containing the following optional parameters:
6310         * `write_yslice_prob`: string value:
6311             * `none`: no `write_yslice_prob` table is inserted,
6312             * `low`: only probabilities that are not 254 or 255 are written in
6313               the `write_ylisce_prob` table,
6314             * `all`: write all probabilities to the `write_yslice_prob` table.
6315             * The default for this option is `all`.
6316             * Any invalid value will be interpreted as `all`.
6317
6318 HTTP Requests
6319 -------------
6320
6321 * `minetest.request_http_api()`:
6322     * returns `HTTPApiTable` containing http functions if the calling mod has
6323       been granted access by being listed in the `secure.http_mods` or
6324       `secure.trusted_mods` setting, otherwise returns `nil`.
6325     * The returned table contains the functions `fetch`, `fetch_async` and
6326       `fetch_async_get` described below.
6327     * Only works at init time and must be called from the mod's main scope
6328       (not from a function).
6329     * Function only exists if minetest server was built with cURL support.
6330     * **DO NOT ALLOW ANY OTHER MODS TO ACCESS THE RETURNED TABLE, STORE IT IN
6331       A LOCAL VARIABLE!**
6332 * `HTTPApiTable.fetch(HTTPRequest req, callback)`
6333     * Performs given request asynchronously and calls callback upon completion
6334     * callback: `function(HTTPRequestResult res)`
6335     * Use this HTTP function if you are unsure, the others are for advanced use
6336 * `HTTPApiTable.fetch_async(HTTPRequest req)`: returns handle
6337     * Performs given request asynchronously and returns handle for
6338       `HTTPApiTable.fetch_async_get`
6339 * `HTTPApiTable.fetch_async_get(handle)`: returns HTTPRequestResult
6340     * Return response data for given asynchronous HTTP request
6341
6342 Storage API
6343 -----------
6344
6345 * `minetest.get_mod_storage()`:
6346     * returns reference to mod private `StorageRef`
6347     * must be called during mod load time
6348
6349 Misc.
6350 -----
6351
6352 * `minetest.get_connected_players()`: returns list of `ObjectRefs`
6353 * `minetest.is_player(obj)`: boolean, whether `obj` is a player
6354 * `minetest.player_exists(name)`: boolean, whether player exists
6355   (regardless of online status)
6356 * `minetest.hud_replace_builtin(name, hud_definition)`
6357     * Replaces definition of a builtin hud element
6358     * `name`: `"breath"` or `"health"`
6359     * `hud_definition`: definition to replace builtin definition
6360 * `minetest.parse_relative_number(arg, relative_to)`: returns number or nil
6361     * Helper function for chat commands.
6362     * For parsing an optionally relative number of a chat command
6363       parameter, using the chat command tilde notation.
6364     * `arg`: String snippet containing the number; possible values:
6365         * `"<number>"`: return as number
6366         * `"~<number>"`: return `relative_to + <number>`
6367         * `"~"`: return `relative_to`
6368         * Anything else will return `nil`
6369     * `relative_to`: Number to which the `arg` number might be relative to
6370     * Examples:
6371         * `minetest.parse_relative_number("5", 10)` returns 5
6372         * `minetest.parse_relative_number("~5", 10)` returns 15
6373         * `minetest.parse_relative_number("~", 10)` returns 10
6374 * `minetest.send_join_message(player_name)`
6375     * This function can be overridden by mods to change the join message.
6376 * `minetest.send_leave_message(player_name, timed_out)`
6377     * This function can be overridden by mods to change the leave message.
6378 * `minetest.hash_node_position(pos)`: returns a 48-bit integer
6379     * `pos`: table {x=number, y=number, z=number},
6380     * Gives a unique hash number for a node position (16+16+16=48bit)
6381 * `minetest.get_position_from_hash(hash)`: returns a position
6382     * Inverse transform of `minetest.hash_node_position`
6383 * `minetest.get_item_group(name, group)`: returns a rating
6384     * Get rating of a group of an item. (`0` means: not in group)
6385 * `minetest.get_node_group(name, group)`: returns a rating
6386     * Deprecated: An alias for the former.
6387 * `minetest.raillike_group(name)`: returns a rating
6388     * Returns rating of the connect_to_raillike group corresponding to name
6389     * If name is not yet the name of a connect_to_raillike group, a new group
6390       id is created, with that name.
6391 * `minetest.get_content_id(name)`: returns an integer
6392     * Gets the internal content ID of `name`
6393 * `minetest.get_name_from_content_id(content_id)`: returns a string
6394     * Gets the name of the content with that content ID
6395 * `minetest.parse_json(string[, nullvalue])`: returns something
6396     * Convert a string containing JSON data into the Lua equivalent
6397     * `nullvalue`: returned in place of the JSON null; defaults to `nil`
6398     * On success returns a table, a string, a number, a boolean or `nullvalue`
6399     * On failure outputs an error message and returns `nil`
6400     * Example: `parse_json("[10, {\"a\":false}]")`, returns `{10, {a = false}}`
6401 * `minetest.write_json(data[, styled])`: returns a string or `nil` and an error
6402   message.
6403     * Convert a Lua table into a JSON string
6404     * styled: Outputs in a human-readable format if this is set, defaults to
6405       false.
6406     * Unserializable things like functions and userdata will cause an error.
6407     * **Warning**: JSON is more strict than the Lua table format.
6408         1. You can only use strings and positive integers of at least one as
6409            keys.
6410         2. You cannot mix string and integer keys.
6411            This is due to the fact that JSON has two distinct array and object
6412            values.
6413     * Example: `write_json({10, {a = false}})`,
6414       returns `'[10, {"a": false}]'`
6415 * `minetest.serialize(table)`: returns a string
6416     * Convert a table containing tables, strings, numbers, booleans and `nil`s
6417       into string form readable by `minetest.deserialize`
6418     * Example: `serialize({foo="bar"})`, returns `'return { ["foo"] = "bar" }'`
6419 * `minetest.deserialize(string[, safe])`: returns a table
6420     * Convert a string returned by `minetest.serialize` into a table
6421     * `string` is loaded in an empty sandbox environment.
6422     * Will load functions if safe is false or omitted. Although these functions
6423       cannot directly access the global environment, they could bypass this
6424       restriction with maliciously crafted Lua bytecode if mod security is
6425       disabled.
6426     * This function should not be used on untrusted data, regardless of the
6427      value of `safe`. It is fine to serialize then deserialize user-provided
6428      data, but directly providing user input to deserialize is always unsafe.
6429     * Example: `deserialize('return { ["foo"] = "bar" }')`,
6430       returns `{foo="bar"}`
6431     * Example: `deserialize('print("foo")')`, returns `nil`
6432       (function call fails), returns
6433       `error:[string "print("foo")"]:1: attempt to call global 'print' (a nil value)`
6434 * `minetest.compress(data, method, ...)`: returns `compressed_data`
6435     * Compress a string of data.
6436     * `method` is a string identifying the compression method to be used.
6437     * Supported compression methods:
6438         * Deflate (zlib): `"deflate"`
6439         * Zstandard: `"zstd"`
6440     * `...` indicates method-specific arguments. Currently defined arguments
6441       are:
6442         * Deflate: `level` - Compression level, `0`-`9` or `nil`.
6443         * Zstandard: `level` - Compression level. Integer or `nil`. Default `3`.
6444         Note any supported Zstandard compression level could be used here,
6445         but these are subject to change between Zstandard versions.
6446 * `minetest.decompress(compressed_data, method, ...)`: returns data
6447     * Decompress a string of data using the algorithm specified by `method`.
6448     * See documentation on `minetest.compress()` for supported compression
6449       methods.
6450     * `...` indicates method-specific arguments. Currently, no methods use this
6451 * `minetest.rgba(red, green, blue[, alpha])`: returns a string
6452     * Each argument is an 8 Bit unsigned integer
6453     * Returns the ColorString from rgb or rgba values
6454     * Example: `minetest.rgba(10, 20, 30, 40)`, returns `"#0A141E28"`
6455 * `minetest.encode_base64(string)`: returns string encoded in base64
6456     * Encodes a string in base64.
6457 * `minetest.decode_base64(string)`: returns string or nil on failure
6458     * Padding characters are only supported starting at version 5.4.0, where
6459       5.5.0 and newer perform proper checks.
6460     * Decodes a string encoded in base64.
6461 * `minetest.is_protected(pos, name)`: returns boolean
6462     * Returning `true` restricts the player `name` from modifying (i.e. digging,
6463        placing) the node at position `pos`.
6464     * `name` will be `""` for non-players or unknown players.
6465     * This function should be overridden by protection mods. It is highly
6466       recommended to grant access to players with the `protection_bypass` privilege.
6467     * Cache and call the old version of this function if the position is
6468       not protected by the mod. This will allow using multiple protection mods.
6469     * Example:
6470
6471           local old_is_protected = minetest.is_protected
6472           function minetest.is_protected(pos, name)
6473               if mymod:position_protected_from(pos, name) then
6474                   return true
6475               end
6476               return old_is_protected(pos, name)
6477           end
6478 * `minetest.record_protection_violation(pos, name)`
6479     * This function calls functions registered with
6480       `minetest.register_on_protection_violation`.
6481 * `minetest.is_creative_enabled(name)`: returns boolean
6482     * Returning `true` means that Creative Mode is enabled for player `name`.
6483     * `name` will be `""` for non-players or if the player is unknown.
6484     * This function should be overridden by Creative Mode-related mods to
6485       implement a per-player Creative Mode.
6486     * By default, this function returns `true` if the setting
6487       `creative_mode` is `true` and `false` otherwise.
6488 * `minetest.is_area_protected(pos1, pos2, player_name, interval)`
6489     * Returns the position of the first node that `player_name` may not modify
6490       in the specified cuboid between `pos1` and `pos2`.
6491     * Returns `false` if no protections were found.
6492     * Applies `is_protected()` to a 3D lattice of points in the defined volume.
6493       The points are spaced evenly throughout the volume and have a spacing
6494       similar to, but no larger than, `interval`.
6495     * All corners and edges of the defined volume are checked.
6496     * `interval` defaults to 4.
6497     * `interval` should be carefully chosen and maximized to avoid an excessive
6498       number of points being checked.
6499     * Like `minetest.is_protected`, this function may be extended or
6500       overwritten by mods to provide a faster implementation to check the
6501       cuboid for intersections.
6502 * `minetest.rotate_and_place(itemstack, placer, pointed_thing[, infinitestacks,
6503   orient_flags, prevent_after_place])`
6504     * Attempt to predict the desired orientation of the facedir-capable node
6505       defined by `itemstack`, and place it accordingly (on-wall, on the floor,
6506       or hanging from the ceiling).
6507     * `infinitestacks`: if `true`, the itemstack is not changed. Otherwise the
6508       stacks are handled normally.
6509     * `orient_flags`: Optional table containing extra tweaks to the placement code:
6510         * `invert_wall`:   if `true`, place wall-orientation on the ground and
6511           ground-orientation on the wall.
6512         * `force_wall`:    if `true`, always place the node in wall orientation.
6513         * `force_ceiling`: if `true`, always place on the ceiling.
6514         * `force_floor`:   if `true`, always place the node on the floor.
6515         * `force_facedir`: if `true`, forcefully reset the facedir to north
6516           when placing on the floor or ceiling.
6517         * The first four options are mutually-exclusive; the last in the list
6518           takes precedence over the first.
6519     * `prevent_after_place` is directly passed to `minetest.item_place_node`
6520     * Returns the new itemstack after placement
6521 * `minetest.rotate_node(itemstack, placer, pointed_thing)`
6522     * calls `rotate_and_place()` with `infinitestacks` set according to the state
6523       of the creative mode setting, checks for "sneak" to set the `invert_wall`
6524       parameter and `prevent_after_place` set to `true`.
6525
6526 * `minetest.calculate_knockback(player, hitter, time_from_last_punch,
6527   tool_capabilities, dir, distance, damage)`
6528     * Returns the amount of knockback applied on the punched player.
6529     * Arguments are equivalent to `register_on_punchplayer`, except the following:
6530         * `distance`: distance between puncher and punched player
6531     * This function can be overridden by mods that wish to modify this behavior.
6532     * You may want to cache and call the old function to allow multiple mods to
6533       change knockback behavior.
6534
6535 * `minetest.forceload_block(pos[, transient[, limit]])`
6536     * forceloads the position `pos`.
6537     * returns `true` if area could be forceloaded
6538     * If `transient` is `false` or absent, the forceload will be persistent
6539       (saved between server runs). If `true`, the forceload will be transient
6540       (not saved between server runs).
6541     * `limit` is an optional limit on the number of blocks that can be
6542       forceloaded at once. If `limit` is negative, there is no limit. If it is
6543       absent, the limit is the value of the setting `"max_forceloaded_blocks"`.
6544       If the call would put the number of blocks over the limit, the call fails.
6545
6546 * `minetest.forceload_free_block(pos[, transient])`
6547     * stops forceloading the position `pos`
6548     * If `transient` is `false` or absent, frees a persistent forceload.
6549       If `true`, frees a transient forceload.
6550
6551 * `minetest.compare_block_status(pos, condition)`
6552     * Checks whether the mapblock at position `pos` is in the wanted condition.
6553     * `condition` may be one of the following values:
6554         * `"unknown"`: not in memory
6555         * `"emerging"`: in the queue for loading from disk or generating
6556         * `"loaded"`: in memory but inactive (no ABMs are executed)
6557         * `"active"`: in memory and active
6558         * Other values are reserved for future functionality extensions
6559     * Return value, the comparison status:
6560         * `false`: Mapblock does not fulfill the wanted condition
6561         * `true`: Mapblock meets the requirement
6562         * `nil`: Unsupported `condition` value
6563
6564 * `minetest.request_insecure_environment()`: returns an environment containing
6565   insecure functions if the calling mod has been listed as trusted in the
6566   `secure.trusted_mods` setting or security is disabled, otherwise returns
6567   `nil`.
6568     * Only works at init time and must be called from the mod's main scope
6569       (ie: the init.lua of the mod, not from another Lua file or within a function).
6570     * **DO NOT ALLOW ANY OTHER MODS TO ACCESS THE RETURNED ENVIRONMENT, STORE
6571       IT IN A LOCAL VARIABLE!**
6572
6573 * `minetest.global_exists(name)`
6574     * Checks if a global variable has been set, without triggering a warning.
6575
6576 Global objects
6577 --------------
6578
6579 * `minetest.env`: `EnvRef` of the server environment and world.
6580     * Any function in the minetest namespace can be called using the syntax
6581       `minetest.env:somefunction(somearguments)`
6582       instead of `minetest.somefunction(somearguments)`
6583     * Deprecated, but support is not to be dropped soon
6584
6585 Global tables
6586 -------------
6587
6588 ### Registered definition tables
6589
6590 * `minetest.registered_items`
6591     * Map of registered items, indexed by name
6592 * `minetest.registered_nodes`
6593     * Map of registered node definitions, indexed by name
6594 * `minetest.registered_craftitems`
6595     * Map of registered craft item definitions, indexed by name
6596 * `minetest.registered_tools`
6597     * Map of registered tool definitions, indexed by name
6598 * `minetest.registered_entities`
6599     * Map of registered entity prototypes, indexed by name
6600     * Values in this table may be modified directly.
6601       Note: changes to initial properties will only affect entities spawned afterwards,
6602       as they are only read when spawning.
6603 * `minetest.object_refs`
6604     * Map of object references, indexed by active object id
6605 * `minetest.luaentities`
6606     * Map of Lua entities, indexed by active object id
6607 * `minetest.registered_abms`
6608     * List of ABM definitions
6609 * `minetest.registered_lbms`
6610     * List of LBM definitions
6611 * `minetest.registered_aliases`
6612     * Map of registered aliases, indexed by name
6613 * `minetest.registered_ores`
6614     * Map of registered ore definitions, indexed by the `name` field.
6615     * If `name` is nil, the key is the object handle returned by
6616       `minetest.register_ore`.
6617 * `minetest.registered_biomes`
6618     * Map of registered biome definitions, indexed by the `name` field.
6619     * If `name` is nil, the key is the object handle returned by
6620       `minetest.register_biome`.
6621 * `minetest.registered_decorations`
6622     * Map of registered decoration definitions, indexed by the `name` field.
6623     * If `name` is nil, the key is the object handle returned by
6624       `minetest.register_decoration`.
6625 * `minetest.registered_schematics`
6626     * Map of registered schematic definitions, indexed by the `name` field.
6627     * If `name` is nil, the key is the object handle returned by
6628       `minetest.register_schematic`.
6629 * `minetest.registered_chatcommands`
6630     * Map of registered chat command definitions, indexed by name
6631 * `minetest.registered_privileges`
6632     * Map of registered privilege definitions, indexed by name
6633     * Registered privileges can be modified directly in this table.
6634
6635 ### Registered callback tables
6636
6637 All callbacks registered with [Global callback registration functions] are added
6638 to corresponding `minetest.registered_*` tables.
6639
6640
6641
6642
6643 Class reference
6644 ===============
6645
6646 Sorted alphabetically.
6647
6648 `AreaStore`
6649 -----------
6650
6651 AreaStore is a data structure to calculate intersections of 3D cuboid volumes
6652 and points. The `data` field (string) may be used to store and retrieve any
6653 mod-relevant information to the specified area.
6654
6655 Despite its name, mods must take care of persisting AreaStore data. They may
6656 use the provided load and write functions for this.
6657
6658
6659 ### Methods
6660
6661 * `AreaStore(type_name)`
6662     * Returns a new AreaStore instance
6663     * `type_name`: optional, forces the internally used API.
6664         * Possible values: `"LibSpatial"` (default).
6665         * When other values are specified, or SpatialIndex is not available,
6666           the custom Minetest functions are used.
6667 * `get_area(id, include_corners, include_data)`
6668     * Returns the area information about the specified ID.
6669     * Returned values are either of these:
6670
6671             nil  -- Area not found
6672             true -- Without `include_corners` and `include_data`
6673             {
6674                 min = pos, max = pos -- `include_corners == true`
6675                 data = string        -- `include_data == true`
6676             }
6677
6678 * `get_areas_for_pos(pos, include_corners, include_data)`
6679     * Returns all areas as table, indexed by the area ID.
6680     * Table values: see `get_area`.
6681 * `get_areas_in_area(corner1, corner2, accept_overlap, include_corners, include_data)`
6682     * Returns all areas that contain all nodes inside the area specified by`
6683       `corner1 and `corner2` (inclusive).
6684     * `accept_overlap`: if `true`, areas are returned that have nodes in
6685       common (intersect) with the specified area.
6686     * Returns the same values as `get_areas_for_pos`.
6687 * `insert_area(corner1, corner2, data, [id])`: inserts an area into the store.
6688     * Returns the new area's ID, or nil if the insertion failed.
6689     * The (inclusive) positions `corner1` and `corner2` describe the area.
6690     * `data` is a string stored with the area.
6691     * `id` (optional): will be used as the internal area ID if it is a unique
6692       number between 0 and 2^32-2.
6693 * `reserve(count)`
6694     * Requires SpatialIndex, no-op function otherwise.
6695     * Reserves resources for `count` many contained areas to improve
6696       efficiency when working with many area entries. Additional areas can still
6697       be inserted afterwards at the usual complexity.
6698 * `remove_area(id)`: removes the area with the given id from the store, returns
6699   success.
6700 * `set_cache_params(params)`: sets params for the included prefiltering cache.
6701   Calling invalidates the cache, so that its elements have to be newly
6702   generated.
6703     * `params` is a table with the following fields:
6704
6705           enabled = boolean,   -- Whether to enable, default true
6706           block_radius = int,  -- The radius (in nodes) of the areas the cache
6707                                -- generates prefiltered lists for, minimum 16,
6708                                -- default 64
6709           limit = int,         -- The cache size, minimum 20, default 1000
6710 * `to_string()`: Experimental. Returns area store serialized as a (binary)
6711   string.
6712 * `to_file(filename)`: Experimental. Like `to_string()`, but writes the data to
6713   a file.
6714 * `from_string(str)`: Experimental. Deserializes string and loads it into the
6715   AreaStore.
6716   Returns success and, optionally, an error message.
6717 * `from_file(filename)`: Experimental. Like `from_string()`, but reads the data
6718   from a file.
6719
6720 `InvRef`
6721 --------
6722
6723 An `InvRef` is a reference to an inventory.
6724
6725 ### Methods
6726
6727 * `is_empty(listname)`: return `true` if list is empty
6728 * `get_size(listname)`: get size of a list
6729 * `set_size(listname, size)`: set size of a list
6730     * returns `false` on error (e.g. invalid `listname` or `size`)
6731 * `get_width(listname)`: get width of a list
6732 * `set_width(listname, width)`: set width of list; currently used for crafting
6733 * `get_stack(listname, i)`: get a copy of stack index `i` in list
6734 * `set_stack(listname, i, stack)`: copy `stack` to index `i` in list
6735 * `get_list(listname)`: return full list (list of `ItemStack`s)
6736 * `set_list(listname, list)`: set full list (size will not change)
6737 * `get_lists()`: returns table that maps listnames to inventory lists
6738 * `set_lists(lists)`: sets inventory lists (size will not change)
6739 * `add_item(listname, stack)`: add item somewhere in list, returns leftover
6740   `ItemStack`.
6741 * `room_for_item(listname, stack):` returns `true` if the stack of items
6742   can be fully added to the list
6743 * `contains_item(listname, stack, [match_meta])`: returns `true` if
6744   the stack of items can be fully taken from the list.
6745   If `match_meta` is false, only the items' names are compared
6746   (default: `false`).
6747 * `remove_item(listname, stack)`: take as many items as specified from the
6748   list, returns the items that were actually removed (as an `ItemStack`)
6749   -- note that any item metadata is ignored, so attempting to remove a specific
6750   unique item this way will likely remove the wrong one -- to do that use
6751   `set_stack` with an empty `ItemStack`.
6752 * `get_location()`: returns a location compatible to
6753   `minetest.get_inventory(location)`.
6754     * returns `{type="undefined"}` in case location is not known
6755
6756 ### Callbacks
6757
6758 Detached & nodemeta inventories provide the following callbacks for move actions:
6759
6760 #### Before
6761
6762 The `allow_*` callbacks return how many items can be moved.
6763
6764 * `allow_move`/`allow_metadata_inventory_move`: Moving items in the inventory
6765 * `allow_take`/`allow_metadata_inventory_take`: Taking items from the inventory
6766 * `allow_put`/`allow_metadata_inventory_put`: Putting items to the inventory
6767
6768 #### After
6769
6770 The `on_*` callbacks are called after the items have been placed in the inventories.
6771
6772 * `on_move`/`on_metadata_inventory_move`: Moving items in the inventory
6773 * `on_take`/`on_metadata_inventory_take`: Taking items from the inventory
6774 * `on_put`/`on_metadata_inventory_put`: Putting items to the inventory
6775
6776 #### Swapping
6777
6778 When a player tries to put an item to a place where another item is, the items are *swapped*.
6779 This means that all callbacks will be called twice (once for each action).
6780
6781 `ItemStack`
6782 -----------
6783
6784 An `ItemStack` is a stack of items.
6785
6786 It can be created via `ItemStack(x)`, where x is an `ItemStack`,
6787 an itemstring, a table or `nil`.
6788
6789 ### Methods
6790
6791 * `is_empty()`: returns `true` if stack is empty.
6792 * `get_name()`: returns item name (e.g. `"default:stone"`).
6793 * `set_name(item_name)`: returns a boolean indicating whether the item was
6794   cleared.
6795 * `get_count()`: Returns number of items on the stack.
6796 * `set_count(count)`: returns a boolean indicating whether the item was cleared
6797     * `count`: number, unsigned 16 bit integer
6798 * `get_wear()`: returns tool wear (`0`-`65535`), `0` for non-tools.
6799 * `set_wear(wear)`: returns boolean indicating whether item was cleared
6800     * `wear`: number, unsigned 16 bit integer
6801 * `get_meta()`: returns ItemStackMetaRef. See section for more details
6802 * `get_metadata()`: (DEPRECATED) Returns metadata (a string attached to an item
6803   stack).
6804 * `set_metadata(metadata)`: (DEPRECATED) Returns true.
6805 * `get_description()`: returns the description shown in inventory list tooltips.
6806     * The engine uses this when showing item descriptions in tooltips.
6807     * Fields for finding the description, in order:
6808         * `description` in item metadata (See [Item Metadata].)
6809         * `description` in item definition
6810         * item name
6811 * `get_short_description()`: returns the short description or nil.
6812     * Unlike the description, this does not include new lines.
6813     * Fields for finding the short description, in order:
6814         * `short_description` in item metadata (See [Item Metadata].)
6815         * `short_description` in item definition
6816         * first line of the description (From item meta or def, see `get_description()`.)
6817         * Returns nil if none of the above are set
6818 * `clear()`: removes all items from the stack, making it empty.
6819 * `replace(item)`: replace the contents of this stack.
6820     * `item` can also be an itemstring or table.
6821 * `to_string()`: returns the stack in itemstring form.
6822 * `to_table()`: returns the stack in Lua table form.
6823 * `get_stack_max()`: returns the maximum size of the stack (depends on the
6824   item).
6825 * `get_free_space()`: returns `get_stack_max() - get_count()`.
6826 * `is_known()`: returns `true` if the item name refers to a defined item type.
6827 * `get_definition()`: returns the item definition table.
6828 * `get_tool_capabilities()`: returns the digging properties of the item,
6829   or those of the hand if none are defined for this item type
6830 * `add_wear(amount)`
6831     * Increases wear by `amount` if the item is a tool, otherwise does nothing
6832     * Valid `amount` range is [0,65536]
6833     * `amount`: number, integer
6834 * `add_wear_by_uses(max_uses)`
6835     * Increases wear in such a way that, if only this function is called,
6836       the item breaks after `max_uses` times
6837     * Valid `max_uses` range is [0,65536]
6838     * Does nothing if item is not a tool or if `max_uses` is 0
6839 * `add_item(item)`: returns leftover `ItemStack`
6840     * Put some item or stack onto this stack
6841 * `item_fits(item)`: returns `true` if item or stack can be fully added to
6842   this one.
6843 * `take_item(n)`: returns taken `ItemStack`
6844     * Take (and remove) up to `n` items from this stack
6845     * `n`: number, default: `1`
6846 * `peek_item(n)`: returns taken `ItemStack`
6847     * Copy (don't remove) up to `n` items from this stack
6848     * `n`: number, default: `1`
6849 * `equals(other)`:
6850     * returns `true` if this stack is identical to `other`.
6851     * Note: `stack1:to_string() == stack2:to_string()` is not reliable,
6852       as stack metadata can be serialized in arbitrary order.
6853     * Note: if `other` is an itemstring or table representation of an
6854       ItemStack, this will always return false, even if it is
6855       "equivalent".
6856
6857 ### Operators
6858
6859 * `stack1 == stack2`:
6860     * Returns whether `stack1` and `stack2` are identical.
6861     * Note: `stack1:to_string() == stack2:to_string()` is not reliable,
6862       as stack metadata can be serialized in arbitrary order.
6863     * Note: if `stack2` is an itemstring or table representation of an
6864       ItemStack, this will always return false, even if it is
6865       "equivalent".
6866
6867 `ItemStackMetaRef`
6868 ------------------
6869
6870 ItemStack metadata: reference extra data and functionality stored in a stack.
6871 Can be obtained via `item:get_meta()`.
6872
6873 ### Methods
6874
6875 * All methods in MetaDataRef
6876 * `set_tool_capabilities([tool_capabilities])`
6877     * Overrides the item's tool capabilities
6878     * A nil value will clear the override data and restore the original
6879       behavior.
6880
6881 `MetaDataRef`
6882 -------------
6883
6884 Base class used by [`StorageRef`], [`NodeMetaRef`], [`ItemStackMetaRef`],
6885 and [`PlayerMetaRef`].
6886
6887 Note: If a metadata value is in the format `${k}`, an attempt to get the value
6888 will return the value associated with key `k`. There is a low recursion limit.
6889 This behavior is **deprecated** and will be removed in a future version. Usage
6890 of the `${k}` syntax in formspecs is not deprecated.
6891
6892 ### Methods
6893
6894 * `contains(key)`: Returns true if key present, otherwise false.
6895     * Returns `nil` when the MetaData is inexistent.
6896 * `get(key)`: Returns `nil` if key not present, else the stored string.
6897 * `set_string(key, value)`: Value of `""` will delete the key.
6898 * `get_string(key)`: Returns `""` if key not present.
6899 * `set_int(key, value)`
6900 * `get_int(key)`: Returns `0` if key not present.
6901 * `set_float(key, value)`
6902 * `get_float(key)`: Returns `0` if key not present.
6903 * `get_keys()`: returns a list of all keys in the metadata.
6904 * `to_table()`: returns `nil` or a table with keys:
6905     * `fields`: key-value storage
6906     * `inventory`: `{list1 = {}, ...}}` (NodeMetaRef only)
6907 * `from_table(nil or {})`
6908     * Any non-table value will clear the metadata
6909     * See [Node Metadata] for an example
6910     * returns `true` on success
6911 * `equals(other)`
6912     * returns `true` if this metadata has the same key-value pairs as `other`
6913
6914 `ModChannel`
6915 ------------
6916
6917 An interface to use mod channels on client and server
6918
6919 ### Methods
6920
6921 * `leave()`: leave the mod channel.
6922     * Server leaves channel `channel_name`.
6923     * No more incoming or outgoing messages can be sent to this channel from
6924       server mods.
6925     * This invalidate all future object usage.
6926     * Ensure you set mod_channel to nil after that to free Lua resources.
6927 * `is_writeable()`: returns true if channel is writeable and mod can send over
6928   it.
6929 * `send_all(message)`: Send `message` though the mod channel.
6930     * If mod channel is not writeable or invalid, message will be dropped.
6931     * Message size is limited to 65535 characters by protocol.
6932
6933 `NodeMetaRef`
6934 -------------
6935
6936 Node metadata: reference extra data and functionality stored in a node.
6937 Can be obtained via `minetest.get_meta(pos)`.
6938
6939 ### Methods
6940
6941 * All methods in MetaDataRef
6942 * `get_inventory()`: returns `InvRef`
6943 * `mark_as_private(name or {name1, name2, ...})`: Mark specific vars as private
6944   This will prevent them from being sent to the client. Note that the "private"
6945   status will only be remembered if an associated key-value pair exists,
6946   meaning it's best to call this when initializing all other meta (e.g.
6947   `on_construct`).
6948
6949 `NodeTimerRef`
6950 --------------
6951
6952 Node Timers: a high resolution persistent per-node timer.
6953 Can be gotten via `minetest.get_node_timer(pos)`.
6954
6955 ### Methods
6956
6957 * `set(timeout,elapsed)`
6958     * set a timer's state
6959     * `timeout` is in seconds, and supports fractional values (0.1 etc)
6960     * `elapsed` is in seconds, and supports fractional values (0.1 etc)
6961     * will trigger the node's `on_timer` function after `(timeout - elapsed)`
6962       seconds.
6963 * `start(timeout)`
6964     * start a timer
6965     * equivalent to `set(timeout,0)`
6966 * `stop()`
6967     * stops the timer
6968 * `get_timeout()`: returns current timeout in seconds
6969     * if `timeout` equals `0`, timer is inactive
6970 * `get_elapsed()`: returns current elapsed time in seconds
6971     * the node's `on_timer` function will be called after `(timeout - elapsed)`
6972       seconds.
6973 * `is_started()`: returns boolean state of timer
6974     * returns `true` if timer is started, otherwise `false`
6975
6976 `ObjectRef`
6977 -----------
6978
6979 Moving things in the game are generally these.
6980 This is basically a reference to a C++ `ServerActiveObject`.
6981
6982 ### Advice on handling `ObjectRefs`
6983
6984 When you receive an `ObjectRef` as a callback argument or from another API
6985 function, it is possible to store the reference somewhere and keep it around.
6986 It will keep functioning until the object is unloaded or removed.
6987
6988 However, doing this is **NOT** recommended as there is (intentionally) no method
6989 to test if a previously acquired `ObjectRef` is still valid.
6990 Instead, `ObjectRefs` should be "let go" of as soon as control is returned from
6991 Lua back to the engine.
6992 Doing so is much less error-prone and you will never need to wonder if the
6993 object you are working with still exists.
6994
6995 ### Attachments
6996
6997 It is possible to attach objects to other objects (`set_attach` method).
6998
6999 When an object is attached, it is positioned relative to the parent's position
7000 and rotation. `get_pos` and `get_rotation` will always return the parent's
7001 values and changes via their setter counterparts are ignored.
7002
7003 To change position or rotation call `set_attach` again with the new values.
7004
7005 **Note**: Just like model dimensions, the relative position in `set_attach`
7006 must be multiplied by 10 compared to world positions.
7007
7008 It is also possible to attach to a bone of the parent object. In that case the
7009 child will follow movement and rotation of that bone.
7010
7011 ### Methods
7012
7013 * `get_pos()`: returns `{x=num, y=num, z=num}`
7014 * `set_pos(pos)`: `pos`=`{x=num, y=num, z=num}`
7015 * `get_velocity()`: returns the velocity, a vector.
7016 * `add_velocity(vel)`
7017     * `vel` is a vector, e.g. `{x=0.0, y=2.3, z=1.0}`
7018     * In comparison to using get_velocity, adding the velocity and then using
7019       set_velocity, add_velocity is supposed to avoid synchronization problems.
7020       Additionally, players also do not support set_velocity.
7021     * If a player:
7022         * Does not apply during free_move.
7023         * Note that since the player speed is normalized at each move step,
7024           increasing e.g. Y velocity beyond what would usually be achieved
7025           (see: physics overrides) will cause existing X/Z velocity to be reduced.
7026         * Example: `add_velocity({x=0, y=6.5, z=0})` is equivalent to
7027           pressing the jump key (assuming default settings)
7028 * `move_to(pos, continuous=false)`
7029     * Does an interpolated move for Lua entities for visually smooth transitions.
7030     * If `continuous` is true, the Lua entity will not be moved to the current
7031       position before starting the interpolated move.
7032     * For players this does the same as `set_pos`,`continuous` is ignored.
7033 * `punch(puncher, time_from_last_punch, tool_capabilities, direction)`
7034     * `puncher` = another `ObjectRef`,
7035     * `time_from_last_punch` = time since last punch action of the puncher
7036     * `direction`: can be `nil`
7037 * `right_click(clicker)`; `clicker` is another `ObjectRef`
7038 * `get_hp()`: returns number of health points
7039 * `set_hp(hp, reason)`: set number of health points
7040     * See reason in register_on_player_hpchange
7041     * Is limited to the range of 0 ... 65535 (2^16 - 1)
7042     * For players: HP are also limited by `hp_max` specified in object properties
7043 * `get_inventory()`: returns an `InvRef` for players, otherwise returns `nil`
7044 * `get_wield_list()`: returns the name of the inventory list the wielded item
7045    is in.
7046 * `get_wield_index()`: returns the index of the wielded item
7047 * `get_wielded_item()`: returns an `ItemStack`
7048 * `set_wielded_item(item)`: replaces the wielded item, returns `true` if
7049   successful.
7050 * `set_armor_groups({group1=rating, group2=rating, ...})`
7051 * `get_armor_groups()`: returns a table with the armor group ratings
7052 * `set_animation(frame_range, frame_speed, frame_blend, frame_loop)`
7053     * `frame_range`: table {x=num, y=num}, default: `{x=1, y=1}`
7054     * `frame_speed`: number, default: `15.0`
7055     * `frame_blend`: number, default: `0.0`
7056     * `frame_loop`: boolean, default: `true`
7057 * `get_animation()`: returns `range`, `frame_speed`, `frame_blend` and
7058   `frame_loop`.
7059 * `set_animation_frame_speed(frame_speed)`
7060     * `frame_speed`: number, default: `15.0`
7061 * `set_attach(parent[, bone, position, rotation, forced_visible])`
7062     * `parent`: `ObjectRef` to attach to
7063     * `bone`: default `""` (the root bone)
7064     * `position`: relative position, default `{x=0, y=0, z=0}`
7065     * `rotation`: relative rotation in degrees, default `{x=0, y=0, z=0}`
7066     * `forced_visible`: Boolean to control whether the attached entity
7067        should appear in first person, default `false`.
7068     * Please also read the [Attachments] section above.
7069     * This command may fail silently (do nothing) when it would result
7070       in circular attachments.
7071 * `get_attach()`: returns parent, bone, position, rotation, forced_visible,
7072     or nil if it isn't attached.
7073 * `get_children()`: returns a list of ObjectRefs that are attached to the
7074     object.
7075 * `set_detach()`
7076 * `set_bone_position([bone, position, rotation])`
7077     * `bone`: string. Default is `""`, the root bone
7078     * `position`: `{x=num, y=num, z=num}`, relative, `default {x=0, y=0, z=0}`
7079     * `rotation`: `{x=num, y=num, z=num}`, default `{x=0, y=0, z=0}`
7080 * `get_bone_position(bone)`: returns position and rotation of the bone
7081 * `set_properties(object property table)`
7082 * `get_properties()`: returns object property table
7083 * `is_player()`: returns true for players, false otherwise
7084 * `get_nametag_attributes()`
7085     * returns a table with the attributes of the nametag of an object
7086     * {
7087         text = "",
7088         color = {a=0..255, r=0..255, g=0..255, b=0..255},
7089         bgcolor = {a=0..255, r=0..255, g=0..255, b=0..255},
7090       }
7091 * `set_nametag_attributes(attributes)`
7092     * sets the attributes of the nametag of an object
7093     * `attributes`:
7094       {
7095         text = "My Nametag",
7096         color = ColorSpec,
7097         -- ^ Text color
7098         bgcolor = ColorSpec or false,
7099         -- ^ Sets background color of nametag
7100         -- `false` will cause the background to be set automatically based on user settings
7101         -- Default: false
7102       }
7103
7104 #### Lua entity only (no-op for other objects)
7105
7106 * `remove()`: remove object
7107     * The object is removed after returning from Lua. However the `ObjectRef`
7108       itself instantly becomes unusable with all further method calls having
7109       no effect and returning `nil`.
7110 * `set_velocity(vel)`
7111     * `vel` is a vector, e.g. `{x=0.0, y=2.3, z=1.0}`
7112 * `set_acceleration(acc)`
7113     * `acc` is a vector
7114 * `get_acceleration()`: returns the acceleration, a vector
7115 * `set_rotation(rot)`
7116     * `rot` is a vector (radians). X is pitch (elevation), Y is yaw (heading)
7117       and Z is roll (bank).
7118     * Does not reset rotation incurred through `automatic_rotate`.
7119       Remove & readd your objects to force a certain rotation.
7120 * `get_rotation()`: returns the rotation, a vector (radians)
7121 * `set_yaw(yaw)`: sets the yaw in radians (heading).
7122 * `get_yaw()`: returns number in radians
7123 * `set_texture_mod(mod)`
7124     * Set a texture modifier to the base texture, for sprites and meshes.
7125     * When calling `set_texture_mod` again, the previous one is discarded.
7126     * `mod` the texture modifier. See [Texture modifiers].
7127 * `get_texture_mod()` returns current texture modifier
7128 * `set_sprite(start_frame, num_frames, framelength, select_x_by_camera)`
7129     * Specifies and starts a sprite animation
7130     * Animations iterate along the frame `y` position.
7131     * `start_frame`: {x=column number, y=row number}, the coordinate of the
7132       first frame, default: `{x=0, y=0}`
7133     * `num_frames`: Total frames in the texture, default: `1`
7134     * `framelength`: Time per animated frame in seconds, default: `0.2`
7135     * `select_x_by_camera`: Only for visual = `sprite`. Changes the frame `x`
7136       position according to the view direction. default: `false`.
7137         * First column:  subject facing the camera
7138         * Second column: subject looking to the left
7139         * Third column:  subject backing the camera
7140         * Fourth column: subject looking to the right
7141         * Fifth column:  subject viewed from above
7142         * Sixth column:  subject viewed from below
7143 * `get_entity_name()` (**Deprecated**: Will be removed in a future version, use the field `self.name` instead)
7144 * `get_luaentity()`
7145
7146 #### Player only (no-op for other objects)
7147
7148 * `get_player_name()`: returns `""` if is not a player
7149 * `get_player_velocity()`: **DEPRECATED**, use get_velocity() instead.
7150   table {x, y, z} representing the player's instantaneous velocity in nodes/s
7151 * `add_player_velocity(vel)`: **DEPRECATED**, use add_velocity(vel) instead.
7152 * `get_look_dir()`: get camera direction as a unit vector
7153 * `get_look_vertical()`: pitch in radians
7154     * Angle ranges between -pi/2 and pi/2, which are straight up and down
7155       respectively.
7156 * `get_look_horizontal()`: yaw in radians
7157     * Angle is counter-clockwise from the +z direction.
7158 * `set_look_vertical(radians)`: sets look pitch
7159     * radians: Angle from looking forward, where positive is downwards.
7160 * `set_look_horizontal(radians)`: sets look yaw
7161     * radians: Angle from the +z direction, where positive is counter-clockwise.
7162 * `get_look_pitch()`: pitch in radians - Deprecated as broken. Use
7163   `get_look_vertical`.
7164     * Angle ranges between -pi/2 and pi/2, which are straight down and up
7165       respectively.
7166 * `get_look_yaw()`: yaw in radians - Deprecated as broken. Use
7167   `get_look_horizontal`.
7168     * Angle is counter-clockwise from the +x direction.
7169 * `set_look_pitch(radians)`: sets look pitch - Deprecated. Use
7170   `set_look_vertical`.
7171 * `set_look_yaw(radians)`: sets look yaw - Deprecated. Use
7172   `set_look_horizontal`.
7173 * `get_breath()`: returns player's breath
7174 * `set_breath(value)`: sets player's breath
7175     * values:
7176         * `0`: player is drowning
7177         * max: bubbles bar is not shown
7178         * See [Object properties] for more information
7179     * Is limited to range 0 ... 65535 (2^16 - 1)
7180 * `set_fov(fov, is_multiplier, transition_time)`: Sets player's FOV
7181     * `fov`: FOV value.
7182     * `is_multiplier`: Set to `true` if the FOV value is a multiplier.
7183       Defaults to `false`.
7184     * `transition_time`: If defined, enables smooth FOV transition.
7185       Interpreted as the time (in seconds) to reach target FOV.
7186       If set to 0, FOV change is instantaneous. Defaults to 0.
7187     * Set `fov` to 0 to clear FOV override.
7188 * `get_fov()`: Returns the following:
7189     * Server-sent FOV value. Returns 0 if an FOV override doesn't exist.
7190     * Boolean indicating whether the FOV value is a multiplier.
7191     * Time (in seconds) taken for the FOV transition. Set by `set_fov`.
7192 * `set_attribute(attribute, value)`:  DEPRECATED, use get_meta() instead
7193     * Sets an extra attribute with value on player.
7194     * `value` must be a string, or a number which will be converted to a
7195       string.
7196     * If `value` is `nil`, remove attribute from player.
7197 * `get_attribute(attribute)`:  DEPRECATED, use get_meta() instead
7198     * Returns value (a string) for extra attribute.
7199     * Returns `nil` if no attribute found.
7200 * `get_meta()`: Returns a PlayerMetaRef.
7201 * `set_inventory_formspec(formspec)`
7202     * Redefine player's inventory form
7203     * Should usually be called in `on_joinplayer`
7204     * If `formspec` is `""`, the player's inventory is disabled.
7205 * `get_inventory_formspec()`: returns a formspec string
7206 * `set_formspec_prepend(formspec)`:
7207     * the formspec string will be added to every formspec shown to the user,
7208       except for those with a no_prepend[] tag.
7209     * This should be used to set style elements such as background[] and
7210       bgcolor[], any non-style elements (eg: label) may result in weird behavior.
7211     * Only affects formspecs shown after this is called.
7212 * `get_formspec_prepend(formspec)`: returns a formspec string.
7213 * `get_player_control()`: returns table with player pressed keys
7214     * The table consists of fields with the following boolean values
7215       representing the pressed keys: `up`, `down`, `left`, `right`, `jump`,
7216       `aux1`, `sneak`, `dig`, `place`, `LMB`, `RMB`, and `zoom`.
7217     * The fields `LMB` and `RMB` are equal to `dig` and `place` respectively,
7218       and exist only to preserve backwards compatibility.
7219     * Returns an empty table `{}` if the object is not a player.
7220 * `get_player_control_bits()`: returns integer with bit packed player pressed
7221   keys.
7222     * Bits:
7223         * 0 - up
7224         * 1 - down
7225         * 2 - left
7226         * 3 - right
7227         * 4 - jump
7228         * 5 - aux1
7229         * 6 - sneak
7230         * 7 - dig
7231         * 8 - place
7232         * 9 - zoom
7233     * Returns `0` (no bits set) if the object is not a player.
7234 * `set_physics_override(override_table)`
7235     * `override_table` is a table with the following fields:
7236         * `speed`: multiplier to default walking speed value (default: `1`)
7237         * `jump`: multiplier to default jump value (default: `1`)
7238         * `gravity`: multiplier to default gravity value (default: `1`)
7239         * `sneak`: whether player can sneak (default: `true`)
7240         * `sneak_glitch`: whether player can use the new move code replications
7241           of the old sneak side-effects: sneak ladders and 2 node sneak jump
7242           (default: `false`)
7243         * `new_move`: use new move/sneak code. When `false` the exact old code
7244           is used for the specific old sneak behavior (default: `true`)
7245 * `get_physics_override()`: returns the table given to `set_physics_override`
7246 * `hud_add(hud definition)`: add a HUD element described by HUD def, returns ID
7247    number on success
7248 * `hud_remove(id)`: remove the HUD element of the specified id
7249 * `hud_change(id, stat, value)`: change a value of a previously added HUD
7250   element.
7251     * `stat` supports the same keys as in the hud definition table except for
7252       `"hud_elem_type"`.
7253 * `hud_get(id)`: gets the HUD element definition structure of the specified ID
7254 * `hud_set_flags(flags)`: sets specified HUD flags of player.
7255     * `flags`: A table with the following fields set to boolean values
7256         * `hotbar`
7257         * `healthbar`
7258         * `crosshair`
7259         * `wielditem`
7260         * `breathbar`
7261         * `minimap`: Modifies the client's permission to view the minimap.
7262           The client may locally elect to not view the minimap.
7263         * `minimap_radar`: is only usable when `minimap` is true
7264         * `basic_debug`: Allow showing basic debug info that might give a gameplay advantage.
7265           This includes map seed, player position, look direction, the pointed node and block bounds.
7266           Does not affect players with the `debug` privilege.
7267     * If a flag equals `nil`, the flag is not modified
7268 * `hud_get_flags()`: returns a table of player HUD flags with boolean values.
7269     * See `hud_set_flags` for a list of flags that can be toggled.
7270 * `hud_set_hotbar_itemcount(count)`: sets number of items in builtin hotbar
7271     * `count`: number of items, must be between `1` and `32`
7272 * `hud_get_hotbar_itemcount`: returns number of visible items
7273 * `hud_set_hotbar_image(texturename)`
7274     * sets background image for hotbar
7275 * `hud_get_hotbar_image`: returns texturename
7276 * `hud_set_hotbar_selected_image(texturename)`
7277     * sets image for selected item of hotbar
7278 * `hud_get_hotbar_selected_image`: returns texturename
7279 * `set_minimap_modes({mode, mode, ...}, selected_mode)`
7280     * Overrides the available minimap modes (and toggle order), and changes the
7281     selected mode.
7282     * `mode` is a table consisting of up to four fields:
7283         * `type`: Available type:
7284             * `off`: Minimap off
7285             * `surface`: Minimap in surface mode
7286             * `radar`: Minimap in radar mode
7287             * `texture`: Texture to be displayed instead of terrain map
7288               (texture is centered around 0,0 and can be scaled).
7289               Texture size is limited to 512 x 512 pixel.
7290         * `label`: Optional label to display on minimap mode toggle
7291           The translation must be handled within the mod.
7292         * `size`: Sidelength or diameter, in number of nodes, of the terrain
7293           displayed in minimap
7294         * `texture`: Only for texture type, name of the texture to display
7295         * `scale`: Only for texture type, scale of the texture map in nodes per
7296           pixel (for example a `scale` of 2 means each pixel represents a 2x2
7297           nodes square)
7298     * `selected_mode` is the mode index to be selected after modes have been changed
7299     (0 is the first mode).
7300 * `set_sky(sky_parameters)`
7301     * The presence of the function `set_sun`, `set_moon` or `set_stars` indicates
7302       whether `set_sky` accepts this format. Check the legacy format otherwise.
7303     * Passing no arguments resets the sky to its default values.
7304     * `sky_parameters` is a table with the following optional fields:
7305         * `base_color`: ColorSpec, changes fog in "skybox" and "plain".
7306           (default: `#ffffff`)
7307         * `type`: Available types:
7308             * `"regular"`: Uses 0 textures, `base_color` ignored
7309             * `"skybox"`: Uses 6 textures, `base_color` used as fog.
7310             * `"plain"`: Uses 0 textures, `base_color` used as both fog and sky.
7311             (default: `"regular"`)
7312         * `textures`: A table containing up to six textures in the following
7313             order: Y+ (top), Y- (bottom), X- (west), X+ (east), Z+ (north), Z- (south).
7314         * `clouds`: Boolean for whether clouds appear. (default: `true`)
7315         * `sky_color`: A table used in `"regular"` type only, containing the
7316           following values (alpha is ignored):
7317             * `day_sky`: ColorSpec, for the top half of the sky during the day.
7318               (default: `#61b5f5`)
7319             * `day_horizon`: ColorSpec, for the bottom half of the sky during the day.
7320               (default: `#90d3f6`)
7321             * `dawn_sky`: ColorSpec, for the top half of the sky during dawn/sunset.
7322               (default: `#b4bafa`)
7323               The resulting sky color will be a darkened version of the ColorSpec.
7324               Warning: The darkening of the ColorSpec is subject to change.
7325             * `dawn_horizon`: ColorSpec, for the bottom half of the sky during dawn/sunset.
7326               (default: `#bac1f0`)
7327               The resulting sky color will be a darkened version of the ColorSpec.
7328               Warning: The darkening of the ColorSpec is subject to change.
7329             * `night_sky`: ColorSpec, for the top half of the sky during the night.
7330               (default: `#006bff`)
7331               The resulting sky color will be a dark version of the ColorSpec.
7332               Warning: The darkening of the ColorSpec is subject to change.
7333             * `night_horizon`: ColorSpec, for the bottom half of the sky during the night.
7334               (default: `#4090ff`)
7335               The resulting sky color will be a dark version of the ColorSpec.
7336               Warning: The darkening of the ColorSpec is subject to change.
7337             * `indoors`: ColorSpec, for when you're either indoors or underground.
7338               (default: `#646464`)
7339             * `fog_sun_tint`: ColorSpec, changes the fog tinting for the sun
7340               at sunrise and sunset. (default: `#f47d1d`)
7341             * `fog_moon_tint`: ColorSpec, changes the fog tinting for the moon
7342               at sunrise and sunset. (default: `#7f99cc`)
7343             * `fog_tint_type`: string, changes which mode the directional fog
7344                 abides by, `"custom"` uses `sun_tint` and `moon_tint`, while
7345                 `"default"` uses the classic Minetest sun and moon tinting.
7346                 Will use tonemaps, if set to `"default"`. (default: `"default"`)
7347 * `set_sky(base_color, type, {texture names}, clouds)`
7348     * Deprecated. Use `set_sky(sky_parameters)`
7349     * `base_color`: ColorSpec, defaults to white
7350     * `type`: Available types:
7351         * `"regular"`: Uses 0 textures, `bgcolor` ignored
7352         * `"skybox"`: Uses 6 textures, `bgcolor` used
7353         * `"plain"`: Uses 0 textures, `bgcolor` used
7354     * `clouds`: Boolean for whether clouds appear in front of `"skybox"` or
7355       `"plain"` custom skyboxes (default: `true`)
7356 * `get_sky(as_table)`:
7357     * `as_table`: boolean that determines whether the deprecated version of this
7358     function is being used.
7359         * `true` returns a table containing sky parameters as defined in `set_sky(sky_parameters)`.
7360         * Deprecated: `false` or `nil` returns base_color, type, table of textures,
7361         clouds.
7362 * `get_sky_color()`:
7363     * Deprecated: Use `get_sky(as_table)` instead.
7364     * returns a table with the `sky_color` parameters as in `set_sky`.
7365 * `set_sun(sun_parameters)`:
7366     * Passing no arguments resets the sun to its default values.
7367     * `sun_parameters` is a table with the following optional fields:
7368         * `visible`: Boolean for whether the sun is visible.
7369             (default: `true`)
7370         * `texture`: A regular texture for the sun. Setting to `""`
7371             will re-enable the mesh sun. (default: "sun.png", if it exists)
7372             The texture appears non-rotated at sunrise and rotated 180 degrees
7373             (upside down) at sunset.
7374         * `tonemap`: A 512x1 texture containing the tonemap for the sun
7375             (default: `"sun_tonemap.png"`)
7376         * `sunrise`: A regular texture for the sunrise texture.
7377             (default: `"sunrisebg.png"`)
7378         * `sunrise_visible`: Boolean for whether the sunrise texture is visible.
7379             (default: `true`)
7380         * `scale`: Float controlling the overall size of the sun. (default: `1`)
7381             Note: For legacy reasons, the sun is bigger than the moon by a factor
7382             of about `1.57` for equal `scale` values.
7383 * `get_sun()`: returns a table with the current sun parameters as in
7384     `set_sun`.
7385 * `set_moon(moon_parameters)`:
7386     * Passing no arguments resets the moon to its default values.
7387     * `moon_parameters` is a table with the following optional fields:
7388         * `visible`: Boolean for whether the moon is visible.
7389             (default: `true`)
7390         * `texture`: A regular texture for the moon. Setting to `""`
7391             will re-enable the mesh moon. (default: `"moon.png"`, if it exists)
7392             The texture appears non-rotated at sunrise / moonset and rotated 180
7393             degrees (upside down) at sunset / moonrise.
7394             Note: Relative to the sun, the moon texture is hence rotated by 180°.
7395             You can use the `^[transformR180` texture modifier to achieve the same orientation.
7396         * `tonemap`: A 512x1 texture containing the tonemap for the moon
7397             (default: `"moon_tonemap.png"`)
7398         * `scale`: Float controlling the overall size of the moon (default: `1`)
7399             Note: For legacy reasons, the sun is bigger than the moon by a factor
7400             of about `1.57` for equal `scale` values.
7401 * `get_moon()`: returns a table with the current moon parameters as in
7402     `set_moon`.
7403 * `set_stars(star_parameters)`:
7404     * Passing no arguments resets stars to their default values.
7405     * `star_parameters` is a table with the following optional fields:
7406         * `visible`: Boolean for whether the stars are visible.
7407             (default: `true`)
7408         * `day_opacity`: Float for maximum opacity of stars at day.
7409             No effect if `visible` is false.
7410             (default: 0.0; maximum: 1.0; minimum: 0.0)
7411         * `count`: Integer number to set the number of stars in
7412             the skybox. Only applies to `"skybox"` and `"regular"` sky types.
7413             (default: `1000`)
7414         * `star_color`: ColorSpec, sets the colors of the stars,
7415             alpha channel is used to set overall star brightness.
7416             (default: `#ebebff69`)
7417         * `scale`: Float controlling the overall size of the stars (default: `1`)
7418 * `get_stars()`: returns a table with the current stars parameters as in
7419     `set_stars`.
7420 * `set_clouds(cloud_parameters)`: set cloud parameters
7421     * Passing no arguments resets clouds to their default values.
7422     * `cloud_parameters` is a table with the following optional fields:
7423         * `density`: from `0` (no clouds) to `1` (full clouds) (default `0.4`)
7424         * `color`: basic cloud color with alpha channel, ColorSpec
7425           (default `#fff0f0e5`).
7426         * `ambient`: cloud color lower bound, use for a "glow at night" effect.
7427           ColorSpec (alpha ignored, default `#000000`)
7428         * `height`: cloud height, i.e. y of cloud base (default per conf,
7429           usually `120`)
7430         * `thickness`: cloud thickness in nodes (default `16`)
7431         * `speed`: 2D cloud speed + direction in nodes per second
7432           (default `{x=0, z=-2}`).
7433 * `get_clouds()`: returns a table with the current cloud parameters as in
7434   `set_clouds`.
7435 * `override_day_night_ratio(ratio or nil)`
7436     * `0`...`1`: Overrides day-night ratio, controlling sunlight to a specific
7437       amount.
7438     * `nil`: Disables override, defaulting to sunlight based on day-night cycle
7439 * `get_day_night_ratio()`: returns the ratio or nil if it isn't overridden
7440 * `set_local_animation(idle, walk, dig, walk_while_dig, frame_speed)`:
7441   set animation for player model in third person view.
7442     * Every animation equals to a `{x=starting frame, y=ending frame}` table.
7443     * `frame_speed` sets the animations frame speed. Default is 30.
7444 * `get_local_animation()`: returns idle, walk, dig, walk_while_dig tables and
7445   `frame_speed`.
7446 * `set_eye_offset([firstperson, thirdperson])`: defines offset vectors for
7447   camera per player. An argument defaults to `{x=0, y=0, z=0}` if unspecified.
7448     * in first person view
7449     * in third person view (max. values `{x=-10/10,y=-10,15,z=-5/5}`)
7450 * `get_eye_offset()`: returns first and third person offsets.
7451 * `send_mapblock(blockpos)`:
7452     * Sends an already loaded mapblock to the player.
7453     * Returns `false` if nothing was sent (note that this can also mean that
7454       the client already has the block)
7455     * Resource intensive - use sparsely
7456 * `set_lighting(light_definition)`: sets lighting for the player
7457     * `light_definition` is a table with the following optional fields:
7458       * `shadows` is a table that controls ambient shadows
7459         * `intensity` sets the intensity of the shadows from 0 (no shadows, default) to 1 (blackness)
7460 * `get_lighting()`: returns the current state of lighting for the player.
7461     * Result is a table with the same fields as `light_definition` in `set_lighting`.
7462 * `respawn()`: Respawns the player using the same mechanism as the death screen,
7463   including calling on_respawnplayer callbacks.
7464
7465 `PcgRandom`
7466 -----------
7467
7468 A 32-bit pseudorandom number generator.
7469 Uses PCG32, an algorithm of the permuted congruential generator family,
7470 offering very strong randomness.
7471
7472 It can be created via `PcgRandom(seed)` or `PcgRandom(seed, sequence)`.
7473
7474 ### Methods
7475
7476 * `next()`: return next integer random number [`-2147483648`...`2147483647`]
7477 * `next(min, max)`: return next integer random number [`min`...`max`]
7478 * `rand_normal_dist(min, max, num_trials=6)`: return normally distributed
7479   random number [`min`...`max`].
7480     * This is only a rough approximation of a normal distribution with:
7481     * `mean = (max - min) / 2`, and
7482     * `variance = (((max - min + 1) ^ 2) - 1) / (12 * num_trials)`
7483     * Increasing `num_trials` improves accuracy of the approximation
7484
7485 `PerlinNoise`
7486 -------------
7487
7488 A perlin noise generator.
7489 It can be created via `PerlinNoise()` or `minetest.get_perlin()`.
7490 For `minetest.get_perlin()`, the actual seed used is the noiseparams seed
7491 plus the world seed, to create world-specific noise.
7492
7493 `PerlinNoise(noiseparams)`
7494 `PerlinNoise(seed, octaves, persistence, spread)` (Deprecated).
7495
7496 `minetest.get_perlin(noiseparams)`
7497 `minetest.get_perlin(seeddiff, octaves, persistence, spread)` (Deprecated).
7498
7499 ### Methods
7500
7501 * `get_2d(pos)`: returns 2D noise value at `pos={x=,y=}`
7502 * `get_3d(pos)`: returns 3D noise value at `pos={x=,y=,z=}`
7503
7504 `PerlinNoiseMap`
7505 ----------------
7506
7507 A fast, bulk perlin noise generator.
7508
7509 It can be created via `PerlinNoiseMap(noiseparams, size)` or
7510 `minetest.get_perlin_map(noiseparams, size)`.
7511 For `minetest.get_perlin_map()`, the actual seed used is the noiseparams seed
7512 plus the world seed, to create world-specific noise.
7513
7514 Format of `size` is `{x=dimx, y=dimy, z=dimz}`. The `z` component is omitted
7515 for 2D noise, and it must be must be larger than 1 for 3D noise (otherwise
7516 `nil` is returned).
7517
7518 For each of the functions with an optional `buffer` parameter: If `buffer` is
7519 not nil, this table will be used to store the result instead of creating a new
7520 table.
7521
7522 ### Methods
7523
7524 * `get_2d_map(pos)`: returns a `<size.x>` times `<size.y>` 2D array of 2D noise
7525   with values starting at `pos={x=,y=}`
7526 * `get_3d_map(pos)`: returns a `<size.x>` times `<size.y>` times `<size.z>`
7527   3D array of 3D noise with values starting at `pos={x=,y=,z=}`.
7528 * `get_2d_map_flat(pos, buffer)`: returns a flat `<size.x * size.y>` element
7529   array of 2D noise with values starting at `pos={x=,y=}`
7530 * `get_3d_map_flat(pos, buffer)`: Same as `get2dMap_flat`, but 3D noise
7531 * `calc_2d_map(pos)`: Calculates the 2d noise map starting at `pos`. The result
7532   is stored internally.
7533 * `calc_3d_map(pos)`: Calculates the 3d noise map starting at `pos`. The result
7534   is stored internally.
7535 * `get_map_slice(slice_offset, slice_size, buffer)`: In the form of an array,
7536   returns a slice of the most recently computed noise results. The result slice
7537   begins at coordinates `slice_offset` and takes a chunk of `slice_size`.
7538   E.g. to grab a 2-slice high horizontal 2d plane of noise starting at buffer
7539   offset y = 20:
7540   `noisevals = noise:get_map_slice({y=20}, {y=2})`
7541   It is important to note that `slice_offset` offset coordinates begin at 1,
7542   and are relative to the starting position of the most recently calculated
7543   noise.
7544   To grab a single vertical column of noise starting at map coordinates
7545   x = 1023, y=1000, z = 1000:
7546   `noise:calc_3d_map({x=1000, y=1000, z=1000})`
7547   `noisevals = noise:get_map_slice({x=24, z=1}, {x=1, z=1})`
7548
7549 `PlayerMetaRef`
7550 ---------------
7551
7552 Player metadata.
7553 Uses the same method of storage as the deprecated player attribute API, so
7554 data there will also be in player meta.
7555 Can be obtained using `player:get_meta()`.
7556
7557 ### Methods
7558
7559 * All methods in MetaDataRef
7560
7561 `PseudoRandom`
7562 --------------
7563
7564 A 16-bit pseudorandom number generator.
7565 Uses a well-known LCG algorithm introduced by K&R.
7566
7567 It can be created via `PseudoRandom(seed)`.
7568
7569 ### Methods
7570
7571 * `next()`: return next integer random number [`0`...`32767`]
7572 * `next(min, max)`: return next integer random number [`min`...`max`]
7573     * `((max - min) == 32767) or ((max-min) <= 6553))` must be true
7574       due to the simple implementation making bad distribution otherwise.
7575
7576 `Raycast`
7577 ---------
7578
7579 A raycast on the map. It works with selection boxes.
7580 Can be used as an iterator in a for loop as:
7581
7582     local ray = Raycast(...)
7583     for pointed_thing in ray do
7584         ...
7585     end
7586
7587 The map is loaded as the ray advances. If the map is modified after the
7588 `Raycast` is created, the changes may or may not have an effect on the object.
7589
7590 It can be created via `Raycast(pos1, pos2, objects, liquids)` or
7591 `minetest.raycast(pos1, pos2, objects, liquids)` where:
7592
7593 * `pos1`: start of the ray
7594 * `pos2`: end of the ray
7595 * `objects`: if false, only nodes will be returned. Default is true.
7596 * `liquids`: if false, liquid nodes (`liquidtype ~= "none"`) won't be
7597              returned. Default is false.
7598
7599 ### Limitations
7600
7601 Raycasts don't always work properly for attached objects as the server has no knowledge of models & bones.
7602
7603 **Rotated selectionboxes paired with `automatic_rotate` are not reliable** either since the server
7604 can't reliably know the total rotation of the objects on different clients (which may differ on a per-client basis).
7605 The server calculates the total rotation incurred through `automatic_rotate` as a "best guess"
7606 assuming the object was active & rotating on the client all the time since its creation.
7607 This may be significantly out of sync with what clients see.
7608 Additionally, network latency and delayed property sending may create a mismatch of client- & server rotations.
7609
7610 In singleplayer mode, raycasts on objects with rotated selectionboxes & automatic rotate will usually only be slightly off;
7611 toggling automatic rotation may however cause errors to add up.
7612
7613 In multiplayer mode, the error may be arbitrarily large.
7614
7615 ### Methods
7616
7617 * `next()`: returns a `pointed_thing` with exact pointing location
7618     * Returns the next thing pointed by the ray or nil.
7619
7620 `SecureRandom`
7621 --------------
7622
7623 Interface for the operating system's crypto-secure PRNG.
7624
7625 It can be created via `SecureRandom()`.  The constructor returns nil if a
7626 secure random device cannot be found on the system.
7627
7628 ### Methods
7629
7630 * `next_bytes([count])`: return next `count` (default 1, capped at 2048) many
7631   random bytes, as a string.
7632
7633 `Settings`
7634 ----------
7635
7636 An interface to read config files in the format of `minetest.conf`.
7637
7638 It can be created via `Settings(filename)`.
7639
7640 ### Methods
7641
7642 * `get(key)`: returns a value
7643 * `get_bool(key, [default])`: returns a boolean
7644     * `default` is the value returned if `key` is not found.
7645     * Returns `nil` if `key` is not found and `default` not specified.
7646 * `get_np_group(key)`: returns a NoiseParams table
7647 * `get_flags(key)`:
7648     * Returns `{flag = true/false, ...}` according to the set flags.
7649     * Is currently limited to mapgen flags `mg_flags` and mapgen-specific
7650       flags like `mgv5_spflags`.
7651 * `set(key, value)`
7652     * Setting names can't contain whitespace or any of `="{}#`.
7653     * Setting values can't contain the sequence `\n"""`.
7654     * Setting names starting with "secure." can't be set on the main settings
7655       object (`minetest.settings`).
7656 * `set_bool(key, value)`
7657     * See documentation for set() above.
7658 * `set_np_group(key, value)`
7659     * `value` is a NoiseParams table.
7660     * Also, see documentation for set() above.
7661 * `remove(key)`: returns a boolean (`true` for success)
7662 * `get_names()`: returns `{key1,...}`
7663 * `write()`: returns a boolean (`true` for success)
7664     * Writes changes to file.
7665 * `to_table()`: returns `{[key1]=value1,...}`
7666
7667 ### Format
7668
7669 The settings have the format `key = value`. Example:
7670
7671     foo = example text
7672     bar = """
7673     Multiline
7674     value
7675     """
7676
7677
7678 `StorageRef`
7679 ------------
7680
7681 Mod metadata: per mod metadata, saved automatically.
7682 Can be obtained via `minetest.get_mod_storage()` during load time.
7683
7684 WARNING: This storage backend is incapable of saving raw binary data due
7685 to restrictions of JSON.
7686
7687 ### Methods
7688
7689 * All methods in MetaDataRef
7690
7691
7692
7693
7694 Definition tables
7695 =================
7696
7697 Object properties
7698 -----------------
7699
7700 Used by `ObjectRef` methods. Part of an Entity definition.
7701 These properties are not persistent, but are applied automatically to the
7702 corresponding Lua entity using the given registration fields.
7703 Player properties need to be saved manually.
7704
7705     {
7706         hp_max = 10,
7707         -- Defines the maximum and default HP of the entity
7708         -- For Lua entities the maximum is not enforced.
7709         -- For players this defaults to `minetest.PLAYER_MAX_HP_DEFAULT`.
7710
7711         breath_max = 0,
7712         -- For players only. Defaults to `minetest.PLAYER_MAX_BREATH_DEFAULT`.
7713
7714         zoom_fov = 0.0,
7715         -- For players only. Zoom FOV in degrees.
7716         -- Note that zoom loads and/or generates world beyond the server's
7717         -- maximum send and generate distances, so acts like a telescope.
7718         -- Smaller zoom_fov values increase the distance loaded/generated.
7719         -- Defaults to 15 in creative mode, 0 in survival mode.
7720         -- zoom_fov = 0 disables zooming for the player.
7721
7722         eye_height = 1.625,
7723         -- For players only. Camera height above feet position in nodes.
7724
7725         physical = false,
7726         -- Collide with `walkable` nodes.
7727
7728         collide_with_objects = true,
7729         -- Collide with other objects if physical = true
7730
7731         collisionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },  -- default
7732         selectionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5, rotate = false },
7733                 -- { xmin, ymin, zmin, xmax, ymax, zmax } in nodes from object position.
7734         -- Collision boxes cannot rotate, setting `rotate = true` on it has no effect.
7735         -- If not set, the selection box copies the collision box, and will also not rotate.
7736         -- If `rotate = false`, the selection box will not rotate with the object itself, remaining fixed to the axes.
7737         -- If `rotate = true`, it will match the object's rotation and any attachment rotations.
7738         -- Raycasts use the selection box and object's rotation, but do *not* obey attachment rotations.
7739         
7740
7741         pointable = true,
7742         -- Whether the object can be pointed at
7743
7744         visual = "cube" / "sprite" / "upright_sprite" / "mesh" / "wielditem" / "item",
7745         -- "cube" is a node-sized cube.
7746         -- "sprite" is a flat texture always facing the player.
7747         -- "upright_sprite" is a vertical flat texture.
7748         -- "mesh" uses the defined mesh model.
7749         -- "wielditem" is used for dropped items.
7750         --   (see builtin/game/item_entity.lua).
7751         --   For this use 'wield_item = itemname' (Deprecated: 'textures = {itemname}').
7752         --   If the item has a 'wield_image' the object will be an extrusion of
7753         --   that, otherwise:
7754         --   If 'itemname' is a cubic node or nodebox the object will appear
7755         --   identical to 'itemname'.
7756         --   If 'itemname' is a plantlike node the object will be an extrusion
7757         --   of its texture.
7758         --   Otherwise for non-node items, the object will be an extrusion of
7759         --   'inventory_image'.
7760         --   If 'itemname' contains a ColorString or palette index (e.g. from
7761         --   `minetest.itemstring_with_palette()`), the entity will inherit the color.
7762         -- "item" is similar to "wielditem" but ignores the 'wield_image' parameter.
7763
7764         visual_size = {x = 1, y = 1, z = 1},
7765         -- Multipliers for the visual size. If `z` is not specified, `x` will be used
7766         -- to scale the entity along both horizontal axes.
7767
7768         mesh = "model.obj",
7769         -- File name of mesh when using "mesh" visual
7770
7771         textures = {},
7772         -- Number of required textures depends on visual.
7773         -- "cube" uses 6 textures just like a node, but all 6 must be defined.
7774         -- "sprite" uses 1 texture.
7775         -- "upright_sprite" uses 2 textures: {front, back}.
7776         -- "wielditem" expects 'textures = {itemname}' (see 'visual' above).
7777         -- "mesh" requires one texture for each mesh buffer/material (in order)
7778
7779         colors = {},
7780         -- Number of required colors depends on visual
7781
7782         use_texture_alpha = false,
7783         -- Use texture's alpha channel.
7784         -- Excludes "upright_sprite" and "wielditem".
7785         -- Note: currently causes visual issues when viewed through other
7786         -- semi-transparent materials such as water.
7787
7788         spritediv = {x = 1, y = 1},
7789         -- Used with spritesheet textures for animation and/or frame selection
7790         -- according to position relative to player.
7791         -- Defines the number of columns and rows in the spritesheet:
7792         -- {columns, rows}.
7793
7794         initial_sprite_basepos = {x = 0, y = 0},
7795         -- Used with spritesheet textures.
7796         -- Defines the {column, row} position of the initially used frame in the
7797         -- spritesheet.
7798
7799         is_visible = true,
7800         -- If false, object is invisible and can't be pointed.
7801
7802         makes_footstep_sound = false,
7803         -- If true, is able to make footstep sounds of nodes
7804         -- (see node sound definition for details).
7805
7806         automatic_rotate = 0,
7807         -- Set constant rotation in radians per second, positive or negative.
7808         -- Object rotates along the local Y-axis, and works with set_rotation.
7809         -- Set to 0 to disable constant rotation.
7810
7811         stepheight = 0,
7812         -- If positive number, object will climb upwards when it moves
7813         -- horizontally against a `walkable` node, if the height difference
7814         -- is within `stepheight`.
7815
7816         automatic_face_movement_dir = 0.0,
7817         -- Automatically set yaw to movement direction, offset in degrees.
7818         -- 'false' to disable.
7819
7820         automatic_face_movement_max_rotation_per_sec = -1,
7821         -- Limit automatic rotation to this value in degrees per second.
7822         -- No limit if value <= 0.
7823
7824         backface_culling = true,
7825         -- Set to false to disable backface_culling for model
7826
7827         glow = 0,
7828         -- Add this much extra lighting when calculating texture color.
7829         -- Value < 0 disables light's effect on texture color.
7830         -- For faking self-lighting, UI style entities, or programmatic coloring
7831         -- in mods.
7832
7833         nametag = "",
7834         -- The name to display on the head of the object. By default empty.
7835         -- If the object is a player, a nil or empty nametag is replaced by the player's name.
7836         -- For all other objects, a nil or empty string removes the nametag.
7837         -- To hide a nametag, set its color alpha to zero. That will disable it entirely.
7838
7839         nametag_color = <ColorSpec>,
7840         -- Sets text color of nametag
7841
7842         nametag_bgcolor = <ColorSpec>,
7843         -- Sets background color of nametag
7844         -- `false` will cause the background to be set automatically based on user settings.
7845         -- Default: false
7846
7847         infotext = "",
7848         -- Same as infotext for nodes. Empty by default
7849
7850         static_save = true,
7851         -- If false, never save this object statically. It will simply be
7852         -- deleted when the block gets unloaded.
7853         -- The get_staticdata() callback is never called then.
7854         -- Defaults to 'true'.
7855
7856         damage_texture_modifier = "^[brighten",
7857         -- Texture modifier to be applied for a short duration when object is hit
7858
7859         shaded = true,
7860         -- Setting this to 'false' disables diffuse lighting of entity
7861
7862         show_on_minimap = false,
7863         -- Defaults to true for players, false for other entities.
7864         -- If set to true the entity will show as a marker on the minimap.
7865     }
7866
7867 Entity definition
7868 -----------------
7869
7870 Used by `minetest.register_entity`.
7871
7872     {
7873         initial_properties = {
7874             visual = "mesh",
7875             mesh = "boats_boat.obj",
7876             ...,
7877         },
7878         -- A table of object properties, see the `Object properties` section.
7879         -- The properties in this table are applied to the object
7880         -- once when it is spawned.
7881
7882         -- Refer to the "Registered entities" section for explanations
7883         on_activate = function(self, staticdata, dtime_s),
7884         on_deactivate = function(self, removal),
7885         on_step = function(self, dtime, moveresult),
7886         on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir, damage),
7887         on_death = function(self, killer),
7888         on_rightclick = function(self, clicker),
7889         on_attach_child = function(self, child),
7890         on_detach_child = function(self, child),
7891         on_detach = function(self, parent),
7892         get_staticdata = function(self),
7893
7894         _custom_field = whatever,
7895         -- You can define arbitrary member variables here (see Item definition
7896         -- for more info) by using a '_' prefix
7897     }
7898
7899
7900 ABM (ActiveBlockModifier) definition
7901 ------------------------------------
7902
7903 Used by `minetest.register_abm`.
7904
7905     {
7906         label = "Lava cooling",
7907         -- Descriptive label for profiling purposes (optional).
7908         -- Definitions with identical labels will be listed as one.
7909
7910         nodenames = {"default:lava_source"},
7911         -- Apply `action` function to these nodes.
7912         -- `group:groupname` can also be used here.
7913
7914         neighbors = {"default:water_source", "default:water_flowing"},
7915         -- Only apply `action` to nodes that have one of, or any
7916         -- combination of, these neighbors.
7917         -- If left out or empty, any neighbor will do.
7918         -- `group:groupname` can also be used here.
7919
7920         interval = 1.0,
7921         -- Operation interval in seconds
7922
7923         chance = 1,
7924         -- Chance of triggering `action` per-node per-interval is 1.0 / this
7925         -- value
7926
7927         min_y = -32768,
7928         max_y = 32767,
7929         -- min and max height levels where ABM will be processed (inclusive)
7930         -- can be used to reduce CPU usage
7931
7932         catch_up = true,
7933         -- If true, catch-up behavior is enabled: The `chance` value is
7934         -- temporarily reduced when returning to an area to simulate time lost
7935         -- by the area being unattended. Note that the `chance` value can often
7936         -- be reduced to 1.
7937
7938         action = function(pos, node, active_object_count, active_object_count_wider),
7939         -- Function triggered for each qualifying node.
7940         -- `active_object_count` is number of active objects in the node's
7941         -- mapblock.
7942         -- `active_object_count_wider` is number of active objects in the node's
7943         -- mapblock plus all 26 neighboring mapblocks. If any neighboring
7944         -- mapblocks are unloaded an estimate is calculated for them based on
7945         -- loaded mapblocks.
7946     }
7947
7948 LBM (LoadingBlockModifier) definition
7949 -------------------------------------
7950
7951 Used by `minetest.register_lbm`.
7952
7953 A loading block modifier (LBM) is used to define a function that is called for
7954 specific nodes (defined by `nodenames`) when a mapblock which contains such nodes
7955 gets activated (not loaded!)
7956
7957     {
7958         label = "Upgrade legacy doors",
7959         -- Descriptive label for profiling purposes (optional).
7960         -- Definitions with identical labels will be listed as one.
7961
7962         name = "modname:replace_legacy_door",
7963         -- Identifier of the LBM, should follow the modname:<whatever> convention
7964
7965         nodenames = {"default:lava_source"},
7966         -- List of node names to trigger the LBM on.
7967         -- Names of non-registered nodes and groups (as group:groupname)
7968         -- will work as well.
7969
7970         run_at_every_load = false,
7971         -- Whether to run the LBM's action every time a block gets activated,
7972         -- and not only the first time the block gets activated after the LBM
7973         -- was introduced.
7974
7975         action = function(pos, node, dtime_s),
7976         -- Function triggered for each qualifying node.
7977         -- `dtime_s` is the in-game time (in seconds) elapsed since the block
7978         -- was last active
7979     }
7980
7981 Tile definition
7982 ---------------
7983
7984 * `"image.png"`
7985 * `{name="image.png", animation={Tile Animation definition}}`
7986 * `{name="image.png", backface_culling=bool, align_style="node"/"world"/"user", scale=int}`
7987     * backface culling enabled by default for most nodes
7988     * align style determines whether the texture will be rotated with the node
7989       or kept aligned with its surroundings. "user" means that client
7990       setting will be used, similar to `glasslike_framed_optional`.
7991       Note: supported by solid nodes and nodeboxes only.
7992     * scale is used to make texture span several (exactly `scale`) nodes,
7993       instead of just one, in each direction. Works for world-aligned
7994       textures only.
7995       Note that as the effect is applied on per-mapblock basis, `16` should
7996       be equally divisible by `scale` or you may get wrong results.
7997 * `{name="image.png", color=ColorSpec}`
7998     * the texture's color will be multiplied with this color.
7999     * the tile's color overrides the owning node's color in all cases.
8000 * deprecated, yet still supported field names:
8001     * `image` (name)
8002
8003 Tile animation definition
8004 -------------------------
8005
8006     {
8007         type = "vertical_frames",
8008
8009         aspect_w = 16,
8010         -- Width of a frame in pixels
8011
8012         aspect_h = 16,
8013         -- Height of a frame in pixels
8014
8015         length = 3.0,
8016         -- Full loop length
8017     }
8018
8019     {
8020         type = "sheet_2d",
8021
8022         frames_w = 5,
8023         -- Width in number of frames
8024
8025         frames_h = 3,
8026         -- Height in number of frames
8027
8028         frame_length = 0.5,
8029         -- Length of a single frame
8030     }
8031
8032 Item definition
8033 ---------------
8034
8035 Used by `minetest.register_node`, `minetest.register_craftitem`, and
8036 `minetest.register_tool`.
8037
8038     {
8039         description = "",
8040         -- Can contain new lines. "\n" has to be used as new line character.
8041         -- See also: `get_description` in [`ItemStack`]
8042
8043         short_description = "",
8044         -- Must not contain new lines.
8045         -- Defaults to nil.
8046         -- Use an [`ItemStack`] to get the short description, e.g.:
8047         --   ItemStack(itemname):get_short_description()
8048
8049         groups = {},
8050         -- key = name, value = rating; rating = <number>.
8051         -- If rating not applicable, use 1.
8052         -- e.g. {wool = 1, fluffy = 3}
8053         --      {soil = 2, outerspace = 1, crumbly = 1}
8054         --      {bendy = 2, snappy = 1},
8055         --      {hard = 1, metal = 1, spikes = 1}
8056
8057         inventory_image = "",
8058         -- Texture shown in the inventory GUI
8059         -- Defaults to a 3D rendering of the node if left empty.
8060
8061         inventory_overlay = "",
8062         -- An overlay texture which is not affected by colorization
8063
8064         wield_image = "",
8065         -- Texture shown when item is held in hand
8066         -- Defaults to a 3D rendering of the node if left empty.
8067
8068         wield_overlay = "",
8069         -- Like inventory_overlay but only used in the same situation as wield_image
8070
8071         wield_scale = {x = 1, y = 1, z = 1},
8072         -- Scale for the item when held in hand
8073
8074         palette = "",
8075         -- An image file containing the palette of a node.
8076         -- You can set the currently used color as the "palette_index" field of
8077         -- the item stack metadata.
8078         -- The palette is always stretched to fit indices between 0 and 255, to
8079         -- ensure compatibility with "colorfacedir" (and similar) nodes.
8080
8081         color = "#ffffffff",
8082         -- Color the item is colorized with. The palette overrides this.
8083
8084         stack_max = 99,
8085         -- Maximum amount of items that can be in a single stack.
8086         -- The default can be changed by the setting `default_stack_max`
8087
8088         range = 4.0,
8089         -- Range of node and object pointing that is possible with this item held
8090
8091         liquids_pointable = false,
8092         -- If true, item can point to all liquid nodes (`liquidtype ~= "none"`),
8093         -- even those for which `pointable = false`
8094
8095         light_source = 0,
8096         -- When used for nodes: Defines amount of light emitted by node.
8097         -- Otherwise: Defines texture glow when viewed as a dropped item
8098         -- To set the maximum (14), use the value 'minetest.LIGHT_MAX'.
8099         -- A value outside the range 0 to minetest.LIGHT_MAX causes undefined
8100         -- behavior.
8101
8102         -- See "Tool Capabilities" section for an example including explanation
8103         tool_capabilities = {
8104             full_punch_interval = 1.0,
8105             max_drop_level = 0,
8106             groupcaps = {
8107                 -- For example:
8108                 choppy = {times = {2.50, 1.40, 1.00}, uses = 20, maxlevel = 2},
8109             },
8110             damage_groups = {groupname = damage},
8111             -- Damage values must be between -32768 and 32767 (2^15)
8112
8113             punch_attack_uses = nil,
8114             -- Amount of uses this tool has for attacking players and entities
8115             -- by punching them (0 = infinite uses).
8116             -- For compatibility, this is automatically set from the first
8117             -- suitable groupcap using the formula "uses * 3^(maxlevel - 1)".
8118             -- It is recommend to set this explicitly instead of relying on the
8119             -- fallback behavior.
8120         },
8121
8122         node_placement_prediction = nil,
8123         -- If nil and item is node, prediction is made automatically.
8124         -- If nil and item is not a node, no prediction is made.
8125         -- If "" and item is anything, no prediction is made.
8126         -- Otherwise should be name of node which the client immediately places
8127         -- on ground when the player places the item. Server will always update
8128         -- with actual result shortly.
8129
8130         node_dig_prediction = "air",
8131         -- if "", no prediction is made.
8132         -- if "air", node is removed.
8133         -- Otherwise should be name of node which the client immediately places
8134         -- upon digging. Server will always update with actual result shortly.
8135
8136         sound = {
8137             -- Definition of item sounds to be played at various events.
8138             -- All fields in this table are optional.
8139
8140             breaks = <SimpleSoundSpec>,
8141             -- When tool breaks due to wear. Ignored for non-tools
8142
8143             eat = <SimpleSoundSpec>,
8144             -- When item is eaten with `minetest.do_item_eat`
8145
8146             punch_use = <SimpleSoundSpec>,
8147             -- When item is used with the 'punch/mine' key pointing at a node or entity
8148
8149             punch_use_air = <SimpleSoundSpec>,
8150             -- When item is used with the 'punch/mine' key pointing at nothing (air)
8151         },
8152
8153         on_place = function(itemstack, placer, pointed_thing),
8154         -- When the 'place' key was pressed with the item in hand
8155         -- and a node was pointed at.
8156         -- Shall place item and return the leftover itemstack
8157         -- or nil to not modify the inventory.
8158         -- The placer may be any ObjectRef or nil.
8159         -- default: minetest.item_place
8160
8161         on_secondary_use = function(itemstack, user, pointed_thing),
8162         -- Same as on_place but called when not pointing at a node.
8163         -- Function must return either nil if inventory shall not be modified,
8164         -- or an itemstack to replace the original itemstack.
8165         -- The user may be any ObjectRef or nil.
8166         -- default: nil
8167
8168         on_drop = function(itemstack, dropper, pos),
8169         -- Shall drop item and return the leftover itemstack.
8170         -- The dropper may be any ObjectRef or nil.
8171         -- default: minetest.item_drop
8172
8173         on_pickup = function(itemstack, picker, pointed_thing, time_from_last_punch, ...),
8174         -- Called when a dropped item is punched by a player.
8175         -- Shall pick-up the item and return the leftover itemstack or nil to not
8176         -- modify the dropped item.
8177         -- Parameters:
8178         -- * `itemstack`: The `ItemStack` to be picked up.
8179         -- * `picker`: Any `ObjectRef` or `nil`.
8180         -- * `pointed_thing` (optional): The dropped item (a `"__builtin:item"`
8181         --   luaentity) as `type="object"` `pointed_thing`.
8182         -- * `time_from_last_punch, ...` (optional): Other parameters from
8183         --   `luaentity:on_punch`.
8184         -- default: `minetest.item_pickup`
8185
8186         on_use = function(itemstack, user, pointed_thing),
8187         -- default: nil
8188         -- When user pressed the 'punch/mine' key with the item in hand.
8189         -- Function must return either nil if inventory shall not be modified,
8190         -- or an itemstack to replace the original itemstack.
8191         -- e.g. itemstack:take_item(); return itemstack
8192         -- Otherwise, the function is free to do what it wants.
8193         -- The user may be any ObjectRef or nil.
8194         -- The default functions handle regular use cases.
8195
8196         after_use = function(itemstack, user, node, digparams),
8197         -- default: nil
8198         -- If defined, should return an itemstack and will be called instead of
8199         -- wearing out the item (if tool). If returns nil, does nothing.
8200         -- If after_use doesn't exist, it is the same as:
8201         --   function(itemstack, user, node, digparams)
8202         --     itemstack:add_wear(digparams.wear)
8203         --     return itemstack
8204         --   end
8205         -- The user may be any ObjectRef or nil.
8206
8207         _custom_field = whatever,
8208         -- Add your own custom fields. By convention, all custom field names
8209         -- should start with `_` to avoid naming collisions with future engine
8210         -- usage.
8211     }
8212
8213 Node definition
8214 ---------------
8215
8216 Used by `minetest.register_node`.
8217
8218     {
8219         -- <all fields allowed in item definitions>
8220
8221         drawtype = "normal",  -- See "Node drawtypes"
8222
8223         visual_scale = 1.0,
8224         -- Supported for drawtypes "plantlike", "signlike", "torchlike",
8225         -- "firelike", "mesh", "nodebox", "allfaces".
8226         -- For plantlike and firelike, the image will start at the bottom of the
8227         -- node. For torchlike, the image will start at the surface to which the
8228         -- node "attaches". For the other drawtypes the image will be centered
8229         -- on the node.
8230
8231         tiles = {tile definition 1, def2, def3, def4, def5, def6},
8232         -- Textures of node; +Y, -Y, +X, -X, +Z, -Z
8233         -- List can be shortened to needed length.
8234
8235         overlay_tiles = {tile definition 1, def2, def3, def4, def5, def6},
8236         -- Same as `tiles`, but these textures are drawn on top of the base
8237         -- tiles. You can use this to colorize only specific parts of your
8238         -- texture. If the texture name is an empty string, that overlay is not
8239         -- drawn. Since such tiles are drawn twice, it is not recommended to use
8240         -- overlays on very common nodes.
8241
8242         special_tiles = {tile definition 1, Tile definition 2},
8243         -- Special textures of node; used rarely.
8244         -- List can be shortened to needed length.
8245
8246         color = ColorSpec,
8247         -- The node's original color will be multiplied with this color.
8248         -- If the node has a palette, then this setting only has an effect in
8249         -- the inventory and on the wield item.
8250
8251         use_texture_alpha = ...,
8252         -- Specifies how the texture's alpha channel will be used for rendering.
8253         -- possible values:
8254         -- * "opaque": Node is rendered opaque regardless of alpha channel
8255         -- * "clip": A given pixel is either fully see-through or opaque
8256         --           depending on the alpha channel being below/above 50% in value
8257         -- * "blend": The alpha channel specifies how transparent a given pixel
8258         --            of the rendered node is
8259         -- The default is "opaque" for drawtypes normal, liquid and flowingliquid;
8260         -- "clip" otherwise.
8261         -- If set to a boolean value (deprecated): true either sets it to blend
8262         -- or clip, false sets it to clip or opaque mode depending on the drawtype.
8263
8264         palette = "",
8265         -- The node's `param2` is used to select a pixel from the image.
8266         -- Pixels are arranged from left to right and from top to bottom.
8267         -- The node's color will be multiplied with the selected pixel's color.
8268         -- Tiles can override this behavior.
8269         -- Only when `paramtype2` supports palettes.
8270
8271         post_effect_color = "#00000000",
8272         -- Screen tint if player is inside node, see "ColorSpec"
8273
8274         paramtype = "none",  -- See "Nodes"
8275
8276         paramtype2 = "none",  -- See "Nodes"
8277
8278         place_param2 = 0,
8279         -- Value for param2 that is set when player places node
8280
8281         is_ground_content = true,
8282         -- If false, the cave generator and dungeon generator will not carve
8283         -- through this node.
8284         -- Specifically, this stops mod-added nodes being removed by caves and
8285         -- dungeons when those generate in a neighbor mapchunk and extend out
8286         -- beyond the edge of that mapchunk.
8287
8288         sunlight_propagates = false,
8289         -- If true, sunlight will go infinitely through this node
8290
8291         walkable = true,  -- If true, objects collide with node
8292
8293         pointable = true,  -- If true, can be pointed at
8294
8295         diggable = true,  -- If false, can never be dug
8296
8297         climbable = false,  -- If true, can be climbed on like a ladder
8298
8299         move_resistance = 0,
8300         -- Slows down movement of players through this node (max. 7).
8301         -- If this is nil, it will be equal to liquid_viscosity.
8302         -- Note: If liquid movement physics apply to the node
8303         -- (see `liquid_move_physics`), the movement speed will also be
8304         -- affected by the `movement_liquid_*` settings.
8305
8306         buildable_to = false,  -- If true, placed nodes can replace this node
8307
8308         floodable = false,
8309         -- If true, liquids flow into and replace this node.
8310         -- Warning: making a liquid node 'floodable' will cause problems.
8311
8312         liquidtype = "none",  -- specifies liquid flowing physics
8313         -- * "none":    no liquid flowing physics
8314         -- * "source":  spawns flowing liquid nodes at all 4 sides and below;
8315         --              recommended drawtype: "liquid".
8316         -- * "flowing": spawned from source, spawns more flowing liquid nodes
8317         --              around it until `liquid_range` is reached;
8318         --              will drain out without a source;
8319         --              recommended drawtype: "flowingliquid".
8320         -- If it's "source" or "flowing", then the
8321         -- `liquid_alternative_*` fields _must_ be specified
8322
8323         liquid_alternative_flowing = "",
8324         liquid_alternative_source = "",
8325         -- These fields may contain node names that represent the
8326         -- flowing version (`liquid_alternative_flowing`) and
8327         -- source version (`liquid_alternative_source`) of a liquid.
8328         --
8329         -- Specifically, these fields are required if any of these is true:
8330         -- * `liquidtype ~= "none" or
8331         -- * `drawtype == "liquid" or
8332         -- * `drawtype == "flowingliquid"
8333         --
8334         -- Liquids consist of up to two nodes: source and flowing.
8335         --
8336         -- There are two ways to define a liquid:
8337         -- 1) Source node and flowing node. This requires both fields to be
8338         --    specified for both nodes.
8339         -- 2) Standalone source node (cannot flow). `liquid_alternative_source`
8340         --    must be specified and `liquid_range` must be set to 0.
8341         --
8342         -- Example:
8343         --     liquid_alternative_flowing = "example:water_flowing",
8344         --     liquid_alternative_source = "example:water_source",
8345
8346         liquid_viscosity = 0,
8347         -- Controls speed at which the liquid spreads/flows (max. 7).
8348         -- 0 is fastest, 7 is slowest.
8349         -- By default, this also slows down movement of players inside the node
8350         -- (can be overridden using `move_resistance`)
8351
8352         liquid_renewable = true,
8353         -- If true, a new liquid source can be created by placing two or more
8354         -- sources nearby
8355
8356         liquid_move_physics = nil, -- specifies movement physics if inside node
8357         -- * false: No liquid movement physics apply.
8358         -- * true: Enables liquid movement physics. Enables things like
8359         --   ability to "swim" up/down, sinking slowly if not moving,
8360         --   smoother speed change when falling into, etc. The `movement_liquid_*`
8361         --   settings apply.
8362         -- * nil: Will be treated as true if `liquidtype ~= "none"`
8363         --   and as false otherwise.
8364
8365         leveled = 0,
8366         -- Only valid for "nodebox" drawtype with 'type = "leveled"'.
8367         -- Allows defining the nodebox height without using param2.
8368         -- The nodebox height is 'leveled' / 64 nodes.
8369         -- The maximum value of 'leveled' is `leveled_max`.
8370
8371         leveled_max = 127,
8372         -- Maximum value for `leveled` (0-127), enforced in
8373         -- `minetest.set_node_level` and `minetest.add_node_level`.
8374         -- Values above 124 might causes collision detection issues.
8375
8376         liquid_range = 8,
8377         -- Maximum distance that flowing liquid nodes can spread around
8378         -- source on flat land;
8379         -- maximum = 8; set to 0 to disable liquid flow
8380
8381         drowning = 0,
8382         -- Player will take this amount of damage if no bubbles are left
8383
8384         damage_per_second = 0,
8385         -- If player is inside node, this damage is caused
8386
8387         node_box = {type = "regular"},  -- See "Node boxes"
8388
8389         connects_to = {},
8390         -- Used for nodebox nodes with the type == "connected".
8391         -- Specifies to what neighboring nodes connections will be drawn.
8392         -- e.g. `{"group:fence", "default:wood"}` or `"default:stone"`
8393
8394         connect_sides = {},
8395         -- Tells connected nodebox nodes to connect only to these sides of this
8396         -- node. possible: "top", "bottom", "front", "left", "back", "right"
8397
8398         mesh = "",
8399         -- File name of mesh when using "mesh" drawtype
8400
8401         selection_box = {
8402             -- see [Node boxes] for possibilities
8403         },
8404         -- Custom selection box definition. Multiple boxes can be defined.
8405         -- If "nodebox" drawtype is used and selection_box is nil, then node_box
8406         -- definition is used for the selection box.
8407
8408         collision_box = {
8409             -- see [Node boxes] for possibilities
8410         },
8411         -- Custom collision box definition. Multiple boxes can be defined.
8412         -- If "nodebox" drawtype is used and collision_box is nil, then node_box
8413         -- definition is used for the collision box.
8414
8415         -- Support maps made in and before January 2012
8416         legacy_facedir_simple = false,
8417         legacy_wallmounted = false,
8418
8419         waving = 0,
8420         -- Valid for drawtypes:
8421         -- mesh, nodebox, plantlike, allfaces_optional, liquid, flowingliquid.
8422         -- 1 - wave node like plants (node top moves side-to-side, bottom is fixed)
8423         -- 2 - wave node like leaves (whole node moves side-to-side)
8424         -- 3 - wave node like liquids (whole node moves up and down)
8425         -- Not all models will properly wave.
8426         -- plantlike drawtype can only wave like plants.
8427         -- allfaces_optional drawtype can only wave like leaves.
8428         -- liquid, flowingliquid drawtypes can only wave like liquids.
8429
8430         sounds = {
8431             -- Definition of node sounds to be played at various events.
8432             -- All fields in this table are optional.
8433
8434             footstep = <SimpleSoundSpec>,
8435             -- If walkable, played when object walks on it. If node is
8436             -- climbable or a liquid, played when object moves through it
8437
8438             dig = <SimpleSoundSpec> or "__group",
8439             -- While digging node.
8440             -- If `"__group"`, then the sound will be
8441             -- `default_dig_<groupname>`, where `<groupname>` is the
8442             -- name of the item's digging group with the fastest digging time.
8443             -- In case of a tie, one of the sounds will be played (but we
8444             -- cannot predict which one)
8445             -- Default value: `"__group"`
8446
8447             dug = <SimpleSoundSpec>,
8448             -- Node was dug
8449
8450             place = <SimpleSoundSpec>,
8451             -- Node was placed. Also played after falling
8452
8453             place_failed = <SimpleSoundSpec>,
8454             -- When node placement failed.
8455             -- Note: This happens if the _built-in_ node placement failed.
8456             -- This sound will still be played if the node is placed in the
8457             -- `on_place` callback manually.
8458
8459             fall = <SimpleSoundSpec>,
8460             -- When node starts to fall or is detached
8461         },
8462
8463         drop = "",
8464         -- Name of dropped item when dug.
8465         -- Default dropped item is the node itself.
8466
8467         -- Using a table allows multiple items, drop chances and item filtering:
8468         drop = {
8469             max_items = 1,
8470             -- Maximum number of item lists to drop.
8471             -- The entries in 'items' are processed in order. For each:
8472             -- Item filtering is applied, chance of drop is applied, if both are
8473             -- successful the entire item list is dropped.
8474             -- Entry processing continues until the number of dropped item lists
8475             -- equals 'max_items'.
8476             -- Therefore, entries should progress from low to high drop chance.
8477             items = {
8478                 -- Examples:
8479                 {
8480                     -- 1 in 1000 chance of dropping a diamond.
8481                     -- Default rarity is '1'.
8482                     rarity = 1000,
8483                     items = {"default:diamond"},
8484                 },
8485                 {
8486                     -- Only drop if using an item whose name is identical to one
8487                     -- of these.
8488                     tools = {"default:shovel_mese", "default:shovel_diamond"},
8489                     rarity = 5,
8490                     items = {"default:dirt"},
8491                     -- Whether all items in the dropped item list inherit the
8492                     -- hardware coloring palette color from the dug node.
8493                     -- Default is 'false'.
8494                     inherit_color = true,
8495                 },
8496                 {
8497                     -- Only drop if using an item whose name contains
8498                     -- "default:shovel_" (this item filtering by string matching
8499                     -- is deprecated, use tool_groups instead).
8500                     tools = {"~default:shovel_"},
8501                     rarity = 2,
8502                     -- The item list dropped.
8503                     items = {"default:sand", "default:desert_sand"},
8504                 },
8505                 {
8506                     -- Only drop if using an item in the "magicwand" group, or
8507                     -- an item that is in both the "pickaxe" and the "lucky"
8508                     -- groups.
8509                     tool_groups = {
8510                         "magicwand",
8511                         {"pickaxe", "lucky"}
8512                     },
8513                     items = {"default:coal_lump"},
8514                 },
8515             },
8516         },
8517
8518         on_construct = function(pos),
8519         -- Node constructor; called after adding node.
8520         -- Can set up metadata and stuff like that.
8521         -- Not called for bulk node placement (i.e. schematics and VoxelManip).
8522         -- Note: Within an on_construct callback, minetest.set_node can cause an
8523         -- infinite loop if it invokes the same callback.
8524         --  Consider using minetest.swap_node instead.
8525         -- default: nil
8526
8527         on_destruct = function(pos),
8528         -- Node destructor; called before removing node.
8529         -- Not called for bulk node placement.
8530         -- default: nil
8531
8532         after_destruct = function(pos, oldnode),
8533         -- Node destructor; called after removing node.
8534         -- Not called for bulk node placement.
8535         -- default: nil
8536
8537         on_flood = function(pos, oldnode, newnode),
8538         -- Called when a liquid (newnode) is about to flood oldnode, if it has
8539         -- `floodable = true` in the nodedef. Not called for bulk node placement
8540         -- (i.e. schematics and VoxelManip) or air nodes. If return true the
8541         -- node is not flooded, but on_flood callback will most likely be called
8542         -- over and over again every liquid update interval.
8543         -- Default: nil
8544         -- Warning: making a liquid node 'floodable' will cause problems.
8545
8546         preserve_metadata = function(pos, oldnode, oldmeta, drops),
8547         -- Called when oldnode is about be converted to an item, but before the
8548         -- node is deleted from the world or the drops are added. This is
8549         -- generally the result of either the node being dug or an attached node
8550         -- becoming detached.
8551         -- oldmeta are the metadata fields (table) of the node before deletion.
8552         -- drops is a table of ItemStacks, so any metadata to be preserved can
8553         -- be added directly to one or more of the dropped items. See
8554         -- "ItemStackMetaRef".
8555         -- default: nil
8556
8557         after_place_node = function(pos, placer, itemstack, pointed_thing),
8558         -- Called after constructing node when node was placed using
8559         -- minetest.item_place_node / minetest.place_node.
8560         -- If return true no item is taken from itemstack.
8561         -- `placer` may be any valid ObjectRef or nil.
8562         -- default: nil
8563
8564         after_dig_node = function(pos, oldnode, oldmetadata, digger),
8565         -- oldmetadata is in table format.
8566         -- Called after destructing node when node was dug using
8567         -- minetest.node_dig / minetest.dig_node.
8568         -- default: nil
8569
8570         can_dig = function(pos, [player]),
8571         -- Returns true if node can be dug, or false if not.
8572         -- default: nil
8573
8574         on_punch = function(pos, node, puncher, pointed_thing),
8575         -- default: minetest.node_punch
8576         -- Called when puncher (an ObjectRef) punches the node at pos.
8577         -- By default calls minetest.register_on_punchnode callbacks.
8578
8579         on_rightclick = function(pos, node, clicker, itemstack, pointed_thing),
8580         -- default: nil
8581         -- Called when clicker (an ObjectRef) used the 'place/build' key
8582         -- (not necessarily an actual rightclick)
8583         -- while pointing at the node at pos with 'node' being the node table.
8584         -- itemstack will hold clicker's wielded item.
8585         -- Shall return the leftover itemstack.
8586         -- Note: pointed_thing can be nil, if a mod calls this function.
8587         -- This function does not get triggered by clients <=0.4.16 if the
8588         -- "formspec" node metadata field is set.
8589
8590         on_dig = function(pos, node, digger),
8591         -- default: minetest.node_dig
8592         -- By default checks privileges, wears out item (if tool) and removes node.
8593         -- return true if the node was dug successfully, false otherwise.
8594         -- Deprecated: returning nil is the same as returning true.
8595
8596         on_timer = function(pos, elapsed),
8597         -- default: nil
8598         -- called by NodeTimers, see minetest.get_node_timer and NodeTimerRef.
8599         -- elapsed is the total time passed since the timer was started.
8600         -- return true to run the timer for another cycle with the same timeout
8601         -- value.
8602
8603         on_receive_fields = function(pos, formname, fields, sender),
8604         -- fields = {name1 = value1, name2 = value2, ...}
8605         -- Called when an UI form (e.g. sign text input) returns data.
8606         -- See minetest.register_on_player_receive_fields for more info.
8607         -- default: nil
8608
8609         allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player),
8610         -- Called when a player wants to move items inside the inventory.
8611         -- Return value: number of items allowed to move.
8612
8613         allow_metadata_inventory_put = function(pos, listname, index, stack, player),
8614         -- Called when a player wants to put something into the inventory.
8615         -- Return value: number of items allowed to put.
8616         -- Return value -1: Allow and don't modify item count in inventory.
8617
8618         allow_metadata_inventory_take = function(pos, listname, index, stack, player),
8619         -- Called when a player wants to take something out of the inventory.
8620         -- Return value: number of items allowed to take.
8621         -- Return value -1: Allow and don't modify item count in inventory.
8622
8623         on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player),
8624         on_metadata_inventory_put = function(pos, listname, index, stack, player),
8625         on_metadata_inventory_take = function(pos, listname, index, stack, player),
8626         -- Called after the actual action has happened, according to what was
8627         -- allowed.
8628         -- No return value.
8629
8630         on_blast = function(pos, intensity),
8631         -- intensity: 1.0 = mid range of regular TNT.
8632         -- If defined, called when an explosion touches the node, instead of
8633         -- removing the node.
8634
8635         mod_origin = "modname",
8636         -- stores which mod actually registered a node
8637         -- If the source could not be determined it contains "??"
8638         -- Useful for getting which mod truly registered something
8639         -- example: if a node is registered as ":othermodname:nodename",
8640         -- nodename will show "othermodname", but mod_origin will say "modname"
8641     }
8642
8643 Crafting recipes
8644 ----------------
8645
8646 Crafting converts one or more inputs to one output itemstack of arbitrary
8647 count (except for fuels, which don't have an output). The conversion reduces
8648 each input ItemStack by 1.
8649
8650 Craft recipes are registered by `minetest.register_craft` and use a
8651 table format. The accepted parameters are listed below.
8652
8653 Recipe input items can either be specified by item name (item count = 1)
8654 or by group (see "Groups in crafting recipes" for details).
8655
8656 The following sections describe the types and syntaxes of recipes.
8657
8658 ### Shaped
8659
8660 This is the default recipe type (when no `type` is specified).
8661
8662 A shaped recipe takes one or multiple items as input and has
8663 a single item stack as output. The input items must be specified
8664 in a 2-dimensional matrix (see parameters below) to specify the
8665 exact arrangement (the "shape") in which the player must place them
8666 in the crafting grid.
8667
8668 For example, for a 3x3 recipe, the `recipes` table must have
8669 3 rows and 3 columns.
8670
8671 In order to craft the recipe, the players' crafting grid must
8672 have equal or larger dimensions (both width and height).
8673
8674 Parameters:
8675
8676 * `type = "shaped"`: (optional) specifies recipe type as shaped
8677 * `output`: Itemstring of output itemstack (item counts >= 1 are allowed)
8678 * `recipe`: A 2-dimensional matrix of items, with a width *w* and height *h*.
8679     * *w* and *h* are chosen by you, they don't have to be equal but must be at least 1
8680     * The matrix is specified as a table containing tables containing itemnames
8681     * The inner tables are the rows. There must be *h* tables, specified from the top to the bottom row
8682     * Values inside of the inner table are the columns.
8683       Each inner table must contain a list of *w* items, specified from left to right
8684     * Empty slots *must* be filled with the empty string
8685 * `replacements`: (optional) Allows you to replace input items with some other items
8686       when something is crafted
8687     * Provided as a list of item pairs of the form `{ old_item, new_item }` where
8688       `old_item` is the input item to replace (same syntax as for a regular input
8689       slot; groups are allowed) and `new_item` is an itemstring for the item stack
8690       it will become
8691     * When the output is crafted, Minetest iterates through the list
8692       of input items if the crafting grid. For each input item stack, it checks if
8693       it matches with an `old_item` in the item pair list.
8694         * If it matches, the item will be replaced. Also, this item pair
8695           will *not* be applied again for the remaining items
8696         * If it does not match, the item is consumed (reduced by 1) normally
8697     * The `new_item` will appear in one of 3 places:
8698         * Crafting grid, if the input stack size was exactly 1
8699         * Player inventory, if input stack size was larger
8700         * Drops as item entity, if it fits neither in craft grid or inventory
8701
8702 #### Examples
8703
8704 A typical shaped recipe:
8705
8706     -- Stone pickaxe
8707     {
8708         output = "example:stone_pickaxe",
8709         -- A 3x3 recipe which needs 3 stone in the 1st row,
8710         -- and 1 stick in the horizontal middle in each of the 2nd and 3nd row.
8711         -- The 4 remaining slots have to be empty.
8712         recipe = {
8713             {"example:stone", "example:stone", "example:stone"}, -- row 1
8714             {"",              "example:stick", ""             }, -- row 2
8715             {"",              "example:stick", ""             }, -- row 3
8716         --   ^ column 1       ^ column 2       ^ column 3
8717         },
8718         -- There is no replacements table, so every input item
8719         -- will be consumed.
8720     }
8721
8722 Simple replacement example:
8723
8724     -- Wet sponge
8725     {
8726         output = "example:wet_sponge",
8727         -- 1x2 recipe with a water bucket above a dry sponge
8728         recipe = {
8729             {"example:water_bucket"},
8730             {"example:dry_sponge"},
8731         },
8732         -- When the wet sponge is crafted, the water bucket
8733         -- in the input slot is replaced with an empty
8734         -- bucket
8735         replacements = {
8736             {"example:water_bucket", "example:empty_bucket"},
8737         },
8738     }
8739
8740 Complex replacement example 1:
8741
8742     -- Very wet sponge
8743     {
8744         output = "example:very_wet_sponge",
8745         -- 3x3 recipe with a wet sponge in the center
8746         -- and 4 water buckets around it
8747         recipe = {
8748             {"","example:water_bucket",""},
8749             {"example:water_bucket","example:wet_sponge","example:water_bucket"},
8750             {"","example:water_bucket",""},
8751         },
8752         -- When the wet sponge is crafted, all water buckets
8753         -- in the input slot become empty
8754         replacements = {
8755             -- Without these repetitions, only the first
8756             -- water bucket would be replaced.
8757             {"example:water_bucket", "example:empty_bucket"},
8758             {"example:water_bucket", "example:empty_bucket"},
8759             {"example:water_bucket", "example:empty_bucket"},
8760             {"example:water_bucket", "example:empty_bucket"},
8761         },
8762     }
8763
8764 Complex replacement example 2:
8765
8766     -- Magic book:
8767     -- 3 magic orbs + 1 book crafts a magic book,
8768     -- and the orbs will be replaced with 3 different runes.
8769     {
8770         output = "example:magic_book",
8771         -- 3x2 recipe
8772         recipe = {
8773             -- 3 items in the group `magic_orb` on top of a book in the middle
8774             {"group:magic_orb", "group:magic_orb", "group:magic_orb"},
8775             {"", "example:book", ""},
8776         },
8777         -- When the book is crafted, the 3 magic orbs will be turned into
8778         -- 3 runes: ice rune, earth rune and fire rune (from left to right)
8779         replacements = {
8780             {"group:magic_orb", "example:ice_rune"},
8781             {"group:magic_orb", "example:earth_rune"},
8782             {"group:magic_orb", "example:fire_rune"},
8783         },
8784     }
8785
8786 ### Shapeless
8787
8788 Takes a list of input items (at least 1). The order or arrangement
8789 of input items does not matter.
8790
8791 In order to craft the recipe, the players' crafting grid must have matching or
8792 larger *count* of slots. The grid dimensions do not matter.
8793
8794 Parameters:
8795
8796 * `type = "shapeless"`: Mandatory
8797 * `output`: Same as for shaped recipe
8798 * `recipe`: List of item names
8799 * `replacements`: Same as for shaped recipe
8800
8801 #### Example
8802
8803     {
8804         -- Craft a mushroom stew from a bowl, a brown mushroom and a red mushroom
8805         -- (no matter where in the input grid the items are placed)
8806         type = "shapeless",
8807         output = "example:mushroom_stew",
8808         recipe = {
8809             "example:bowl",
8810             "example:mushroom_brown",
8811             "example:mushroom_red",
8812         },
8813     }
8814
8815 ### Tool repair
8816
8817 Syntax:
8818
8819     {
8820         type = "toolrepair",
8821         additional_wear = -0.02, -- multiplier of 65536
8822     }
8823
8824 Adds a shapeless recipe for *every* tool that doesn't have the `disable_repair=1`
8825 group. If this recipe is used, repairing is possible with any crafting grid
8826 with at least 2 slots.
8827 The player can put 2 equal tools in the craft grid to get one "repaired" tool
8828 back.
8829 The wear of the output is determined by the wear of both tools, plus a
8830 'repair bonus' given by `additional_wear`. To reduce the wear (i.e. 'repair'),
8831 you want `additional_wear` to be negative.
8832
8833 The formula used to calculate the resulting wear is:
8834
8835     65536 * (1 - ( (1 - tool_1_wear) + (1 - tool_2_wear) + additional_wear))
8836
8837 The result is rounded and can't be lower than 0. If the result is 65536 or higher,
8838 no crafting is possible.
8839
8840 ### Cooking
8841
8842 A cooking recipe has a single input item, a single output item stack
8843 and a cooking time. It represents cooking/baking/smelting/etc. items in
8844 an oven, furnace, or something similar; the exact meaning is up for games
8845 to decide, if they choose to use cooking at all.
8846
8847 The engine does not implement anything specific to cooking recipes, but
8848 the recipes can be retrieved later using `minetest.get_craft_result` to
8849 have a consistent interface across different games/mods.
8850
8851 Parameters:
8852
8853 * `type = "cooking"`: Mandatory
8854 * `output`: Same as for shaped recipe
8855 * `recipe`: An itemname of the single input item
8856 * `cooktime`: (optional) Time it takes to cook this item, in seconds.
8857               A floating-point number. (default: 3.0)
8858 * `replacements`: Same meaning as for shaped recipes, but the mods
8859                   that utilize cooking recipes (e.g. for adding a furnace
8860                   node) need to implement replacements on their own
8861
8862 Note: Games and mods are free to re-interpret the cooktime in special
8863 cases, e.g. for a super furnace that cooks items twice as fast.
8864
8865 #### Example
8866
8867 Cooking sand to glass in 3 seconds:
8868
8869     {
8870         type = "cooking",
8871         output = "example:glass",
8872         recipe = "example:sand",
8873         cooktime = 3.0,
8874     }
8875
8876 ### Fuel
8877
8878 A fuel recipe is an item associated with a "burning time" and an optional
8879 item replacement. There is no output. This is usually used as fuel for
8880 furnaces, ovens, stoves, etc.
8881
8882 Like with cooking recipes, the engine does not do anything specific with
8883 fuel recipes and it's up to games and mods to use them by retrieving
8884 them via `minetest.get_craft_result`.
8885
8886 Parameters:
8887
8888 * `type = "fuel"`: Mandatory
8889 * `recipe`: Itemname of the item to be used as fuel
8890 * `burntime`: (optional) Burning time this item provides, in seconds.
8891               A floating-point number. (default: 1.0)
8892 * `replacements`: Same meaning as for shaped recipes, but the mods
8893                   that utilize fuels need to implement replacements
8894                   on their own
8895
8896 Note: Games and mods are free to re-interpret the burntime in special
8897 cases, e.g. for an efficient furnace in which fuels burn twice as
8898 long.
8899
8900 #### Examples
8901
8902 Coal lump with a burntime of 20 seconds. Will be consumed when used.
8903
8904     {
8905         type = "fuel",
8906         recipe = "example:coal_lump",
8907         burntime = 20.0,
8908     }
8909
8910 Lava bucket with a burn time of 60 seconds. Will become an empty bucket
8911 if used:
8912
8913     {
8914         type = "fuel",
8915         recipe = "example:lava_bucket",
8916         burntime = 60.0,
8917         replacements = {{"example:lava_bucket", "example:empty_bucket"}},
8918     }
8919
8920 Ore definition
8921 --------------
8922
8923 Used by `minetest.register_ore`.
8924
8925 See [Ores] section above for essential information.
8926
8927     {
8928         ore_type = "",
8929         -- Supported: "scatter", "sheet", "puff", "blob", "vein", "stratum"
8930
8931         ore = "",
8932         -- Ore node to place
8933
8934         ore_param2 = 0,
8935         -- Param2 to set for ore (e.g. facedir rotation)
8936
8937         wherein = "",
8938         -- Node to place ore in. Multiple are possible by passing a list.
8939
8940         clust_scarcity = 8 * 8 * 8,
8941         -- Ore has a 1 out of clust_scarcity chance of spawning in a node.
8942         -- If the desired average distance between ores is 'd', set this to
8943         -- d * d * d.
8944
8945         clust_num_ores = 8,
8946         -- Number of ores in a cluster
8947
8948         clust_size = 3,
8949         -- Size of the bounding box of the cluster.
8950         -- In this example, there is a 3 * 3 * 3 cluster where 8 out of the 27
8951         -- nodes are coal ore.
8952
8953         y_min = -31000,
8954         y_max = 31000,
8955         -- Lower and upper limits for ore (inclusive)
8956
8957         flags = "",
8958         -- Attributes for the ore generation, see 'Ore attributes' section above
8959
8960         noise_threshold = 0,
8961         -- If noise is above this threshold, ore is placed. Not needed for a
8962         -- uniform distribution.
8963
8964         noise_params = {
8965             offset = 0,
8966             scale = 1,
8967             spread = {x = 100, y = 100, z = 100},
8968             seed = 23,
8969             octaves = 3,
8970             persistence = 0.7
8971         },
8972         -- NoiseParams structure describing one of the perlin noises used for
8973         -- ore distribution.
8974         -- Needed by "sheet", "puff", "blob" and "vein" ores.
8975         -- Omit from "scatter" ore for a uniform ore distribution.
8976         -- Omit from "stratum" ore for a simple horizontal strata from y_min to
8977         -- y_max.
8978
8979         biomes = {"desert", "rainforest"},
8980         -- List of biomes in which this ore occurs.
8981         -- Occurs in all biomes if this is omitted, and ignored if the Mapgen
8982         -- being used does not support biomes.
8983         -- Can be a list of (or a single) biome names, IDs, or definitions.
8984
8985         -- Type-specific parameters
8986
8987         -- "sheet"
8988         column_height_min = 1,
8989         column_height_max = 16,
8990         column_midpoint_factor = 0.5,
8991
8992         -- "puff"
8993         np_puff_top = {
8994             offset = 4,
8995             scale = 2,
8996             spread = {x = 100, y = 100, z = 100},
8997             seed = 47,
8998             octaves = 3,
8999             persistence = 0.7
9000         },
9001         np_puff_bottom = {
9002             offset = 4,
9003             scale = 2,
9004             spread = {x = 100, y = 100, z = 100},
9005             seed = 11,
9006             octaves = 3,
9007             persistence = 0.7
9008         },
9009
9010         -- "vein"
9011         random_factor = 1.0,
9012
9013         -- "stratum"
9014         np_stratum_thickness = {
9015             offset = 8,
9016             scale = 4,
9017             spread = {x = 100, y = 100, z = 100},
9018             seed = 17,
9019             octaves = 3,
9020             persistence = 0.7
9021         },
9022         stratum_thickness = 8, -- only used if no noise defined
9023     }
9024
9025 Biome definition
9026 ----------------
9027
9028 Used by `minetest.register_biome`.
9029
9030 The maximum number of biomes that can be used is 65535. However, using an
9031 excessive number of biomes will slow down map generation. Depending on desired
9032 performance and computing power the practical limit is much lower.
9033
9034     {
9035         name = "tundra",
9036
9037         node_dust = "default:snow",
9038         -- Node dropped onto upper surface after all else is generated
9039
9040         node_top = "default:dirt_with_snow",
9041         depth_top = 1,
9042         -- Node forming surface layer of biome and thickness of this layer
9043
9044         node_filler = "default:permafrost",
9045         depth_filler = 3,
9046         -- Node forming lower layer of biome and thickness of this layer
9047
9048         node_stone = "default:bluestone",
9049         -- Node that replaces all stone nodes between roughly y_min and y_max.
9050
9051         node_water_top = "default:ice",
9052         depth_water_top = 10,
9053         -- Node forming a surface layer in seawater with the defined thickness
9054
9055         node_water = "",
9056         -- Node that replaces all seawater nodes not in the surface layer
9057
9058         node_river_water = "default:ice",
9059         -- Node that replaces river water in mapgens that use
9060         -- default:river_water
9061
9062         node_riverbed = "default:gravel",
9063         depth_riverbed = 2,
9064         -- Node placed under river water and thickness of this layer
9065
9066         node_cave_liquid = "default:lava_source",
9067         node_cave_liquid = {"default:water_source", "default:lava_source"},
9068         -- Nodes placed inside 50% of the medium size caves.
9069         -- Multiple nodes can be specified, each cave will use a randomly
9070         -- chosen node from the list.
9071         -- If this field is left out or 'nil', cave liquids fall back to
9072         -- classic behavior of lava and water distributed using 3D noise.
9073         -- For no cave liquid, specify "air".
9074
9075         node_dungeon = "default:cobble",
9076         -- Node used for primary dungeon structure.
9077         -- If absent, dungeon nodes fall back to the 'mapgen_cobble' mapgen
9078         -- alias, if that is also absent, dungeon nodes fall back to the biome
9079         -- 'node_stone'.
9080         -- If present, the following two nodes are also used.
9081
9082         node_dungeon_alt = "default:mossycobble",
9083         -- Node used for randomly-distributed alternative structure nodes.
9084         -- If alternative structure nodes are not wanted leave this absent.
9085
9086         node_dungeon_stair = "stairs:stair_cobble",
9087         -- Node used for dungeon stairs.
9088         -- If absent, stairs fall back to 'node_dungeon'.
9089
9090         y_max = 31000,
9091         y_min = 1,
9092         -- Upper and lower limits for biome.
9093         -- Alternatively you can use xyz limits as shown below.
9094
9095         max_pos = {x = 31000, y = 128, z = 31000},
9096         min_pos = {x = -31000, y = 9, z = -31000},
9097         -- xyz limits for biome, an alternative to using 'y_min' and 'y_max'.
9098         -- Biome is limited to a cuboid defined by these positions.
9099         -- Any x, y or z field left undefined defaults to -31000 in 'min_pos' or
9100         -- 31000 in 'max_pos'.
9101
9102         vertical_blend = 8,
9103         -- Vertical distance in nodes above 'y_max' over which the biome will
9104         -- blend with the biome above.
9105         -- Set to 0 for no vertical blend. Defaults to 0.
9106
9107         heat_point = 0,
9108         humidity_point = 50,
9109         -- Characteristic temperature and humidity for the biome.
9110         -- These values create 'biome points' on a voronoi diagram with heat and
9111         -- humidity as axes. The resulting voronoi cells determine the
9112         -- distribution of the biomes.
9113         -- Heat and humidity have average values of 50, vary mostly between
9114         -- 0 and 100 but can exceed these values.
9115     }
9116
9117 Decoration definition
9118 ---------------------
9119
9120 See [Decoration types]. Used by `minetest.register_decoration`.
9121
9122     {
9123         deco_type = "simple",
9124         -- Type. "simple" or "schematic" supported
9125
9126         place_on = "default:dirt_with_grass",
9127         -- Node (or list of nodes) that the decoration can be placed on
9128
9129         sidelen = 8,
9130         -- Size of the square (X / Z) divisions of the mapchunk being generated.
9131         -- Determines the resolution of noise variation if used.
9132         -- If the chunk size is not evenly divisible by sidelen, sidelen is made
9133         -- equal to the chunk size.
9134
9135         fill_ratio = 0.02,
9136         -- The value determines 'decorations per surface node'.
9137         -- Used only if noise_params is not specified.
9138         -- If >= 10.0 complete coverage is enabled and decoration placement uses
9139         -- a different and much faster method.
9140
9141         noise_params = {
9142             offset = 0,
9143             scale = 0.45,
9144             spread = {x = 100, y = 100, z = 100},
9145             seed = 354,
9146             octaves = 3,
9147             persistence = 0.7,
9148             lacunarity = 2.0,
9149             flags = "absvalue"
9150         },
9151         -- NoiseParams structure describing the perlin noise used for decoration
9152         -- distribution.
9153         -- A noise value is calculated for each square division and determines
9154         -- 'decorations per surface node' within each division.
9155         -- If the noise value >= 10.0 complete coverage is enabled and
9156         -- decoration placement uses a different and much faster method.
9157
9158         biomes = {"Oceanside", "Hills", "Plains"},
9159         -- List of biomes in which this decoration occurs. Occurs in all biomes
9160         -- if this is omitted, and ignored if the Mapgen being used does not
9161         -- support biomes.
9162         -- Can be a list of (or a single) biome names, IDs, or definitions.
9163
9164         y_min = -31000,
9165         y_max = 31000,
9166         -- Lower and upper limits for decoration (inclusive).
9167         -- These parameters refer to the Y co-ordinate of the 'place_on' node.
9168
9169         spawn_by = "default:water",
9170         -- Node (or list of nodes) that the decoration only spawns next to.
9171         -- Checks the 8 neighboring nodes on the same Y, and also the ones
9172         -- at Y+1, excluding both center nodes.
9173
9174         num_spawn_by = 1,
9175         -- Number of spawn_by nodes that must be surrounding the decoration
9176         -- position to occur.
9177         -- If absent or -1, decorations occur next to any nodes.
9178
9179         flags = "liquid_surface, force_placement, all_floors, all_ceilings",
9180         -- Flags for all decoration types.
9181         -- "liquid_surface": Instead of placement on the highest solid surface
9182         --   in a mapchunk column, placement is on the highest liquid surface.
9183         --   Placement is disabled if solid nodes are found above the liquid
9184         --   surface.
9185         -- "force_placement": Nodes other than "air" and "ignore" are replaced
9186         --   by the decoration.
9187         -- "all_floors", "all_ceilings": Instead of placement on the highest
9188         --   surface in a mapchunk the decoration is placed on all floor and/or
9189         --   ceiling surfaces, for example in caves and dungeons.
9190         --   Ceiling decorations act as an inversion of floor decorations so the
9191         --   effect of 'place_offset_y' is inverted.
9192         --   Y-slice probabilities do not function correctly for ceiling
9193         --   schematic decorations as the behavior is unchanged.
9194         --   If a single decoration registration has both flags the floor and
9195         --   ceiling decorations will be aligned vertically.
9196
9197         ----- Simple-type parameters
9198
9199         decoration = "default:grass",
9200         -- The node name used as the decoration.
9201         -- If instead a list of strings, a randomly selected node from the list
9202         -- is placed as the decoration.
9203
9204         height = 1,
9205         -- Decoration height in nodes.
9206         -- If height_max is not 0, this is the lower limit of a randomly
9207         -- selected height.
9208
9209         height_max = 0,
9210         -- Upper limit of the randomly selected height.
9211         -- If absent, the parameter 'height' is used as a constant.
9212
9213         param2 = 0,
9214         -- Param2 value of decoration nodes.
9215         -- If param2_max is not 0, this is the lower limit of a randomly
9216         -- selected param2.
9217
9218         param2_max = 0,
9219         -- Upper limit of the randomly selected param2.
9220         -- If absent, the parameter 'param2' is used as a constant.
9221
9222         place_offset_y = 0,
9223         -- Y offset of the decoration base node relative to the standard base
9224         -- node position.
9225         -- Can be positive or negative. Default is 0.
9226         -- Effect is inverted for "all_ceilings" decorations.
9227         -- Ignored by 'y_min', 'y_max' and 'spawn_by' checks, which always refer
9228         -- to the 'place_on' node.
9229
9230         ----- Schematic-type parameters
9231
9232         schematic = "foobar.mts",
9233         -- If schematic is a string, it is the filepath relative to the current
9234         -- working directory of the specified Minetest schematic file.
9235         -- Could also be the ID of a previously registered schematic.
9236
9237         schematic = {
9238             size = {x = 4, y = 6, z = 4},
9239             data = {
9240                 {name = "default:cobble", param1 = 255, param2 = 0},
9241                 {name = "default:dirt_with_grass", param1 = 255, param2 = 0},
9242                 {name = "air", param1 = 255, param2 = 0},
9243                  ...
9244             },
9245             yslice_prob = {
9246                 {ypos = 2, prob = 128},
9247                 {ypos = 5, prob = 64},
9248                  ...
9249             },
9250         },
9251         -- Alternative schematic specification by supplying a table. The fields
9252         -- size and data are mandatory whereas yslice_prob is optional.
9253         -- See 'Schematic specifier' for details.
9254
9255         replacements = {["oldname"] = "convert_to", ...},
9256         -- Map of node names to replace in the schematic after reading it.
9257
9258         flags = "place_center_x, place_center_y, place_center_z",
9259         -- Flags for schematic decorations. See 'Schematic attributes'.
9260
9261         rotation = "90",
9262         -- Rotation can be "0", "90", "180", "270", or "random"
9263
9264         place_offset_y = 0,
9265         -- If the flag 'place_center_y' is set this parameter is ignored.
9266         -- Y offset of the schematic base node layer relative to the 'place_on'
9267         -- node.
9268         -- Can be positive or negative. Default is 0.
9269         -- Effect is inverted for "all_ceilings" decorations.
9270         -- Ignored by 'y_min', 'y_max' and 'spawn_by' checks, which always refer
9271         -- to the 'place_on' node.
9272     }
9273
9274 Chat command definition
9275 -----------------------
9276
9277 Used by `minetest.register_chatcommand`.
9278
9279     {
9280         params = "<name> <privilege>",  -- Short parameter description
9281
9282         description = "Remove privilege from player",  -- Full description
9283
9284         privs = {privs=true},  -- Require the "privs" privilege to run
9285
9286         func = function(name, param),
9287         -- Called when command is run. Returns boolean success and text output.
9288         -- Special case: The help message is shown to the player if `func`
9289         -- returns false without a text output.
9290     }
9291
9292 Note that in params, use of symbols is as follows:
9293
9294 * `<>` signifies a placeholder to be replaced when the command is used. For
9295   example, when a player name is needed: `<name>`
9296 * `[]` signifies param is optional and not required when the command is used.
9297   For example, if you require param1 but param2 is optional:
9298   `<param1> [<param2>]`
9299 * `|` signifies exclusive or. The command requires one param from the options
9300   provided. For example: `<param1> | <param2>`
9301 * `()` signifies grouping. For example, when param1 and param2 are both
9302   required, or only param3 is required: `(<param1> <param2>) | <param3>`
9303
9304 Privilege definition
9305 --------------------
9306
9307 Used by `minetest.register_privilege`.
9308
9309     {
9310         description = "",
9311         -- Privilege description
9312
9313         give_to_singleplayer = true,
9314         -- Whether to grant the privilege to singleplayer.
9315
9316         give_to_admin = true,
9317         -- Whether to grant the privilege to the server admin.
9318         -- Uses value of 'give_to_singleplayer' by default.
9319
9320         on_grant = function(name, granter_name),
9321         -- Called when given to player 'name' by 'granter_name'.
9322         -- 'granter_name' will be nil if the priv was granted by a mod.
9323
9324         on_revoke = function(name, revoker_name),
9325         -- Called when taken from player 'name' by 'revoker_name'.
9326         -- 'revoker_name' will be nil if the priv was revoked by a mod.
9327
9328         -- Note that the above two callbacks will be called twice if a player is
9329         -- responsible, once with the player name, and then with a nil player
9330         -- name.
9331         -- Return true in the above callbacks to stop register_on_priv_grant or
9332         -- revoke being called.
9333     }
9334
9335 Detached inventory callbacks
9336 ----------------------------
9337
9338 Used by `minetest.create_detached_inventory`.
9339
9340     {
9341         allow_move = function(inv, from_list, from_index, to_list, to_index, count, player),
9342         -- Called when a player wants to move items inside the inventory.
9343         -- Return value: number of items allowed to move.
9344
9345         allow_put = function(inv, listname, index, stack, player),
9346         -- Called when a player wants to put something into the inventory.
9347         -- Return value: number of items allowed to put.
9348         -- Return value -1: Allow and don't modify item count in inventory.
9349
9350         allow_take = function(inv, listname, index, stack, player),
9351         -- Called when a player wants to take something out of the inventory.
9352         -- Return value: number of items allowed to take.
9353         -- Return value -1: Allow and don't modify item count in inventory.
9354
9355         on_move = function(inv, from_list, from_index, to_list, to_index, count, player),
9356         on_put = function(inv, listname, index, stack, player),
9357         on_take = function(inv, listname, index, stack, player),
9358         -- Called after the actual action has happened, according to what was
9359         -- allowed.
9360         -- No return value.
9361     }
9362
9363 HUD Definition
9364 --------------
9365
9366 Since most values have multiple different functions, please see the
9367 documentation in [HUD] section.
9368
9369 Used by `ObjectRef:hud_add`. Returned by `ObjectRef:hud_get`.
9370
9371     {
9372         hud_elem_type = "image",
9373         -- Type of element, can be "image", "text", "statbar", "inventory",
9374         -- "waypoint", "image_waypoint", "compass" or "minimap"
9375
9376         position = {x=0.5, y=0.5},
9377         -- Top left corner position of element
9378
9379         name = "<name>",
9380
9381         scale = {x = 1, y = 1},
9382
9383         text = "<text>",
9384
9385         text2 = "<text>",
9386
9387         number = 0,
9388
9389         item = 0,
9390
9391         direction = 0,
9392         -- Direction: 0: left-right, 1: right-left, 2: top-bottom, 3: bottom-top
9393
9394         alignment = {x=0, y=0},
9395
9396         offset = {x=0, y=0},
9397
9398         world_pos = {x=0, y=0, z=0},
9399
9400         size = {x=0, y=0},
9401
9402         z_index = 0,
9403         -- Z index: lower z-index HUDs are displayed behind higher z-index HUDs
9404
9405         style = 0,
9406     }
9407
9408 Particle definition
9409 -------------------
9410
9411 Used by `minetest.add_particle`.
9412
9413     {
9414         pos = {x=0, y=0, z=0},
9415         velocity = {x=0, y=0, z=0},
9416         acceleration = {x=0, y=0, z=0},
9417         -- Spawn particle at pos with velocity and acceleration
9418
9419         expirationtime = 1,
9420         -- Disappears after expirationtime seconds
9421
9422         size = 1,
9423         -- Scales the visual size of the particle texture.
9424         -- If `node` is set, size can be set to 0 to spawn a randomly-sized
9425         -- particle (just like actual node dig particles).
9426
9427         collisiondetection = false,
9428         -- If true collides with `walkable` nodes and, depending on the
9429         -- `object_collision` field, objects too.
9430
9431         collision_removal = false,
9432         -- If true particle is removed when it collides.
9433         -- Requires collisiondetection = true to have any effect.
9434
9435         object_collision = false,
9436         -- If true particle collides with objects that are defined as
9437         -- `physical = true,` and `collide_with_objects = true,`.
9438         -- Requires collisiondetection = true to have any effect.
9439
9440         vertical = false,
9441         -- If true faces player using y axis only
9442
9443         texture = "image.png",
9444         -- The texture of the particle
9445         -- v5.6.0 and later: also supports the table format described in the
9446         -- following section
9447
9448         playername = "singleplayer",
9449         -- Optional, if specified spawns particle only on the player's client
9450
9451         animation = {Tile Animation definition},
9452         -- Optional, specifies how to animate the particle texture
9453
9454         glow = 0
9455         -- Optional, specify particle self-luminescence in darkness.
9456         -- Values 0-14.
9457
9458         node = {name = "ignore", param2 = 0},
9459         -- Optional, if specified the particle will have the same appearance as
9460         -- node dig particles for the given node.
9461         -- `texture` and `animation` will be ignored if this is set.
9462
9463         node_tile = 0,
9464         -- Optional, only valid in combination with `node`
9465         -- If set to a valid number 1-6, specifies the tile from which the
9466         -- particle texture is picked.
9467         -- Otherwise, the default behavior is used. (currently: any random tile)
9468
9469         drag = {x=0, y=0, z=0},
9470         -- v5.6.0 and later: Optional drag value, consult the following section
9471
9472         bounce = {min = ..., max = ..., bias = 0},
9473         -- v5.6.0 and later: Optional bounce range, consult the following section
9474     }
9475
9476
9477 `ParticleSpawner` definition
9478 ----------------------------
9479
9480 Used by `minetest.add_particlespawner`.
9481
9482 Before v5.6.0, particlespawners used a different syntax and had a more limited set
9483 of features. Definition fields that are the same in both legacy and modern versions
9484 are shown in the next listing, and the fields that are used by legacy versions are
9485 shown separated by a comment; the modern fields are too complex to compactly
9486 describe in this manner and are documented after the listing.
9487
9488 The older syntax can be used in combination with the newer syntax (e.g. having
9489 `minpos`, `maxpos`, and `pos` all set) to support older servers. On newer servers,
9490 the new syntax will override the older syntax; on older servers, the newer syntax
9491 will be ignored.
9492
9493     {
9494         -- Common fields (same name and meaning in both new and legacy syntax)
9495
9496         amount = 1,
9497         -- Number of particles spawned over the time period `time`.
9498
9499         time = 1,
9500         -- Lifespan of spawner in seconds.
9501         -- If time is 0 spawner has infinite lifespan and spawns the `amount` on
9502         -- a per-second basis.
9503
9504         collisiondetection = false,
9505         -- If true collide with `walkable` nodes and, depending on the
9506         -- `object_collision` field, objects too.
9507
9508         collision_removal = false,
9509         -- If true particles are removed when they collide.
9510         -- Requires collisiondetection = true to have any effect.
9511
9512         object_collision = false,
9513         -- If true particles collide with objects that are defined as
9514         -- `physical = true,` and `collide_with_objects = true,`.
9515         -- Requires collisiondetection = true to have any effect.
9516
9517         attached = ObjectRef,
9518         -- If defined, particle positions, velocities and accelerations are
9519         -- relative to this object's position and yaw
9520
9521         vertical = false,
9522         -- If true face player using y axis only
9523
9524         texture = "image.png",
9525         -- The texture of the particle
9526
9527         playername = "singleplayer",
9528         -- Optional, if specified spawns particles only on the player's client
9529
9530         animation = {Tile Animation definition},
9531         -- Optional, specifies how to animate the particles' texture
9532         -- v5.6.0 and later: set length to -1 to synchronize the length
9533         -- of the animation with the expiration time of individual particles.
9534         -- (-2 causes the animation to be played twice, and so on)
9535
9536         glow = 0,
9537         -- Optional, specify particle self-luminescence in darkness.
9538         -- Values 0-14.
9539
9540         node = {name = "ignore", param2 = 0},
9541         -- Optional, if specified the particles will have the same appearance as
9542         -- node dig particles for the given node.
9543         -- `texture` and `animation` will be ignored if this is set.
9544
9545         node_tile = 0,
9546         -- Optional, only valid in combination with `node`
9547         -- If set to a valid number 1-6, specifies the tile from which the
9548         -- particle texture is picked.
9549         -- Otherwise, the default behavior is used. (currently: any random tile)
9550
9551         -- Legacy definition fields
9552
9553         minpos = {x=0, y=0, z=0},
9554         maxpos = {x=0, y=0, z=0},
9555         minvel = {x=0, y=0, z=0},
9556         maxvel = {x=0, y=0, z=0},
9557         minacc = {x=0, y=0, z=0},
9558         maxacc = {x=0, y=0, z=0},
9559         minexptime = 1,
9560         maxexptime = 1,
9561         minsize = 1,
9562         maxsize = 1,
9563         -- The particles' properties are random values between the min and max
9564         -- values.
9565         -- applies to: pos, velocity, acceleration, expirationtime, size
9566         -- If `node` is set, min and maxsize can be set to 0 to spawn
9567         -- randomly-sized particles (just like actual node dig particles).
9568     }
9569
9570 ### Modern definition fields
9571
9572 After v5.6.0, spawner properties can be defined in several different ways depending
9573 on the level of control you need. `pos` for instance can be set as a single vector,
9574 in which case all particles will appear at that exact point throughout the lifetime
9575 of the spawner. Alternately, it can be specified as a min-max pair, specifying a
9576 cubic range the particles can appear randomly within. Finally, some properties can
9577 be animated by suffixing their key with `_tween` (e.g. `pos_tween`) and supplying
9578 a tween table.
9579
9580 The following definitions are all equivalent, listed in order of precedence from
9581 lowest (the legacy syntax) to highest (tween tables). If multiple forms of a
9582 property definition are present, the highest-precedence form will be selected
9583 and all lower-precedence fields will be ignored, allowing for graceful
9584 degradation in older clients).
9585
9586     {
9587       -- old syntax
9588       maxpos = {x = 0, y = 0, z = 0},
9589       minpos = {x = 0, y = 0, z = 0},
9590
9591       -- absolute value
9592       pos = 0,
9593       -- all components of every particle's position vector will be set to this
9594       -- value
9595
9596       -- vec3
9597       pos = vector.new(0,0,0),
9598       -- all particles will appear at this exact position throughout the lifetime
9599       -- of the particlespawner
9600
9601       -- vec3 range
9602       pos = {
9603             -- the particle will appear at a position that is picked at random from
9604             -- within a cubic range
9605
9606             min = vector.new(0,0,0),
9607             -- `min` is the minimum value this property will be set to in particles
9608             -- spawned by the generator
9609
9610             max = vector.new(0,0,0),
9611             -- `max` is the minimum value this property will be set to in particles
9612             -- spawned by the generator
9613
9614             bias = 0,
9615             -- when `bias` is 0, all random values are exactly as likely as any
9616             -- other. when it is positive, the higher it is, the more likely values
9617             -- will appear towards the minimum end of the allowed spectrum. when
9618             -- it is negative, the lower it is, the more likely values will appear
9619             -- towards the maximum end of the allowed spectrum. the curve is
9620             -- exponential and there is no particular maximum or minimum value
9621         },
9622
9623         -- tween table
9624         pos_tween = {...},
9625         -- a tween table should consist of a list of frames in the same form as the
9626         -- untweened pos property above, which the engine will interpolate between,
9627         -- and optionally a number of properties that control how the interpolation
9628         -- takes place. currently **only two frames**, the first and the last, are
9629         -- used, but extra frames are accepted for the sake of forward compatibility.
9630         -- any of the above definition styles can be used here as well in any combination
9631         -- supported by the property type
9632
9633         pos_tween = {
9634             style = "fwd",
9635             -- linear animation from first to last frame (default)
9636             style = "rev",
9637             -- linear animation from last to first frame
9638             style = "pulse",
9639             -- linear animation from first to last then back to first again
9640             style = "flicker",
9641             -- like "pulse", but slightly randomized to add a bit of stutter
9642
9643             reps = 1,
9644             -- number of times the animation is played over the particle's lifespan
9645
9646             start = 0.0,
9647             -- point in the spawner's lifespan at which the animation begins. 0 is
9648             -- the very beginning, 1 is the very end
9649
9650             -- frames can be defined in a number of different ways, depending on the
9651             -- underlying type of the property. for now, all but the first and last
9652             -- frame are ignored
9653
9654             -- frames
9655
9656                 -- floats
9657                 0, 0,
9658
9659                 -- vec3s
9660                 vector.new(0,0,0),
9661                 vector.new(0,0,0),
9662
9663                 -- vec3 ranges
9664                 { min = vector.new(0,0,0), max = vector.new(0,0,0), bias = 0 },
9665                 { min = vector.new(0,0,0), max = vector.new(0,0,0), bias = 0 },
9666
9667                 -- mixed
9668                 0, { min = vector.new(0,0,0), max = vector.new(0,0,0), bias = 0 },
9669         },
9670     }
9671
9672 All of the properties that can be defined in this way are listed in the next
9673 section, along with the datatypes they accept.
9674
9675 #### List of particlespawner properties
9676 All of the properties in this list can be animated with `*_tween` tables
9677 unless otherwise specified. For example, `jitter` can be tweened by setting
9678 a `jitter_tween` table instead of (or in addition to) a `jitter` table/value.
9679 Types used are defined in the previous section.
9680
9681 * vec3 range `pos`: the position at which particles can appear
9682 * vec3 range `vel`: the initial velocity of the particle
9683 * vec3 range `acc`: the direction and speed with which the particle
9684   accelerates
9685 * vec3 range `jitter`: offsets the velocity of each particle by a random
9686   amount within the specified range each frame. used to create Brownian motion.
9687 * vec3 range `drag`: the amount by which absolute particle velocity along
9688   each axis is decreased per second.  a value of 1.0 means that the particle
9689   will be slowed to a stop over the space of a second; a value of -1.0 means
9690   that the particle speed will be doubled every second. to avoid interfering
9691   with gravity provided by `acc`, a drag vector like `vector.new(1,0,1)` can
9692   be used instead of a uniform value.
9693 * float range `bounce`: how bouncy the particles are when `collisiondetection`
9694   is turned on. values less than or equal to `0` turn off particle bounce;
9695   `1` makes the particles bounce without losing any velocity, and `2` makes
9696   them double their velocity with every bounce.  `bounce` is not bounded but
9697   values much larger than `1.0` probably aren't very useful.
9698 * float range `exptime`: the number of seconds after which the particle
9699   disappears.
9700 * table `attract`: sets the birth orientation of particles relative to various
9701   shapes defined in world coordinate space. this is an alternative means of
9702   setting the velocity which allows particles to emerge from or enter into
9703   some entity or node on the map, rather than simply being assigned random
9704   velocity values within a range. the velocity calculated by this method will
9705   be **added** to that specified by `vel` if `vel` is also set, so in most
9706   cases **`vel` should be set to 0**. `attract` has the fields:
9707   * string `kind`: selects the kind of shape towards which the particles will
9708     be oriented. it must have one of the following values:
9709     * `"none"`: no attractor is set and the `attractor` table is ignored
9710     * `"point"`: the particles are attracted to a specific point in space.
9711       use this also if you want a sphere-like effect, in combination with
9712       the `radius` property.
9713     * `"line"`: the particles are attracted to an (infinite) line passing
9714       through the points `origin` and `angle`. use this for e.g. beacon
9715       effects, energy beam effects, etc.
9716     * `"plane"`: the particles are attracted to an (infinite) plane on whose
9717       surface `origin` designates a point in world coordinate space. use this
9718       for e.g. particles entering or emerging from a portal.
9719   * float range `strength`: the speed with which particles will move towards
9720     `attractor`. If negative, the particles will instead move away from that
9721     point.
9722   * vec3 `origin`: the origin point of the shape towards which particles will
9723     initially be oriented. functions as an offset if `origin_attached` is also
9724     set.
9725   * vec3 `direction`: sets the direction in which the attractor shape faces. for
9726     lines, this sets the angle of the line; e.g. a vector of (0,1,0) will
9727     create a vertical line that passes through `origin`. for planes, `direction`
9728     is the surface normal of an infinite plane on whose surface `origin` is
9729     a point. functions as an offset if `direction_attached` is also set.
9730   * entity `origin_attached`: allows the origin to be specified as an offset
9731     from the position of an entity rather than a coordinate in world space.
9732   * entity `direction_attached`: allows the direction to be specified as an offset
9733     from the position of an entity rather than a coordinate in world space.
9734   * bool `die_on_contact`: if true, the particles' lifetimes are adjusted so
9735     that they will die as they cross the attractor threshold. this behavior
9736     is the default but is undesirable for some kinds of animations; set it to
9737     false to allow particles to live out their natural lives.
9738 * vec3 range `radius`: if set, particles will be arranged in a sphere around
9739   `pos`. A constant can be used to create a spherical shell of particles, a
9740   vector to create an ovoid shell, and a range to create a volume; e.g.
9741   `{min = 0.5, max = 1, bias = 1}` will allow particles to appear between 0.5
9742   and 1 nodes away from `pos` but will cluster them towards the center of the
9743   sphere. Usually if `radius` is used, `pos` should be a single point, but it
9744   can still be a range if you really know what you're doing (e.g. to create a
9745   "roundcube" emitter volume).
9746
9747 ### Textures
9748
9749 In versions before v5.6.0, particlespawner textures could only be specified as a single
9750 texture string. After v5.6.0, textures can now be specified as a table as well. This
9751 table contains options that allow simple animations to be applied to the texture.
9752
9753     texture = {
9754         name = "mymod_particle_texture.png",
9755         -- the texture specification string
9756
9757         alpha = 1.0,
9758         -- controls how visible the particle is; at 1.0 the particle is fully
9759         -- visible, at 0, it is completely invisible.
9760
9761         alpha_tween = {1, 0},
9762         -- can be used instead of `alpha` to animate the alpha value over the
9763         -- particle's lifetime. these tween tables work identically to the tween
9764         -- tables used in particlespawner properties, except that time references
9765         -- are understood with respect to the particle's lifetime, not the
9766         -- spawner's. {1,0} fades the particle out over its lifetime.
9767
9768         scale = 1,
9769         scale = {x = 1, y = 1},
9770         -- scales the texture onscreen
9771
9772         scale_tween = {
9773             {x = 1, y = 1},
9774             {x = 0, y = 1},
9775         },
9776         -- animates the scale over the particle's lifetime. works like the
9777         -- alpha_tween table, but can accept two-dimensional vectors as well as
9778         -- integer values. the example value would cause the particle to shrink
9779         -- in one dimension over the course of its life until it disappears
9780
9781         blend = "alpha",
9782         -- (default) blends transparent pixels with those they are drawn atop
9783         -- according to the alpha channel of the source texture. useful for
9784         -- e.g. material objects like rocks, dirt, smoke, or node chunks
9785         blend = "add",
9786         -- adds the value of pixels to those underneath them, modulo the sources
9787         -- alpha channel. useful for e.g. bright light effects like sparks or fire
9788         blend = "screen",
9789         -- like "add" but less bright. useful for subtler light effects. note that
9790         -- this is NOT formally equivalent to the "screen" effect used in image
9791         -- editors and compositors, as it does not respect the alpha channel of
9792         -- of the image being blended
9793         blend = "sub",
9794         -- the inverse of "add"; the value of the source pixel is subtracted from
9795         -- the pixel underneath it. a white pixel will turn whatever is underneath
9796         -- it black; a black pixel will be "transparent". useful for creating
9797         -- darkening effects
9798
9799         animation = {Tile Animation definition},
9800         -- overrides the particlespawner's global animation property for a single
9801         -- specific texture
9802     }
9803
9804 Instead of setting a single texture definition, it is also possible to set a
9805 `texpool` property. A `texpool` consists of a list of possible particle textures.
9806 Every time a particle is spawned, the engine will pick a texture at random from
9807 the `texpool` and assign it as that particle's texture. You can also specify a
9808 `texture` in addition to a `texpool`; the `texture` value will be ignored on newer
9809 clients but will be sent to older (pre-v5.6.0) clients that do not implement
9810 texpools.
9811
9812     texpool = {
9813         "mymod_particle_texture.png";
9814         { name = "mymod_spark.png", fade = "out" },
9815         {
9816           name = "mymod_dust.png",
9817           alpha = 0.3,
9818           scale = 1.5,
9819           animation = {
9820                 type = "vertical_frames",
9821                 aspect_w = 16, aspect_h = 16,
9822
9823                 length = 3,
9824                 -- the animation lasts for 3s and then repeats
9825                 length = -3,
9826                 -- repeat the animation three times over the particle's lifetime
9827                 -- (post-v5.6.0 clients only)
9828           },
9829         },
9830   }
9831
9832 #### List of animatable texture properties
9833
9834 While animated particlespawner values vary over the course of the particlespawner's
9835 lifetime, animated texture properties vary over the lifespans of the individual
9836 particles spawned with that texture. So a particle with the texture property
9837
9838     alpha_tween = {
9839         0.0, 1.0,
9840         style = "pulse",
9841         reps = 4,
9842     }
9843
9844 would be invisible at its spawning, pulse visible four times throughout its
9845 lifespan, and then vanish again before expiring.
9846
9847 * float `alpha` (0.0 - 1.0): controls the visibility of the texture
9848 * vec2 `scale`: controls the size of the displayed billboard onscreen. Its units
9849   are multiples of the parent particle's assigned size (see the `size` property above)
9850
9851 `HTTPRequest` definition
9852 ------------------------
9853
9854 Used by `HTTPApiTable.fetch` and `HTTPApiTable.fetch_async`.
9855
9856     {
9857         url = "http://example.org",
9858
9859         timeout = 10,
9860         -- Timeout for request to be completed in seconds. Default depends on engine settings.
9861
9862         method = "GET", "POST", "PUT" or "DELETE"
9863         -- The http method to use. Defaults to "GET".
9864
9865         data = "Raw request data string" OR {field1 = "data1", field2 = "data2"},
9866         -- Data for the POST, PUT or DELETE request.
9867         -- Accepts both a string and a table. If a table is specified, encodes
9868         -- table as x-www-form-urlencoded key-value pairs.
9869
9870         user_agent = "ExampleUserAgent",
9871         -- Optional, if specified replaces the default minetest user agent with
9872         -- given string
9873
9874         extra_headers = { "Accept-Language: en-us", "Accept-Charset: utf-8" },
9875         -- Optional, if specified adds additional headers to the HTTP request.
9876         -- You must make sure that the header strings follow HTTP specification
9877         -- ("Key: Value").
9878
9879         multipart = boolean
9880         -- Optional, if true performs a multipart HTTP request.
9881         -- Default is false.
9882         -- Post only, data must be array
9883
9884         post_data = "Raw POST request data string" OR {field1 = "data1", field2 = "data2"},
9885         -- Deprecated, use `data` instead. Forces `method = "POST"`.
9886     }
9887
9888 `HTTPRequestResult` definition
9889 ------------------------------
9890
9891 Passed to `HTTPApiTable.fetch` callback. Returned by
9892 `HTTPApiTable.fetch_async_get`.
9893
9894     {
9895         completed = true,
9896         -- If true, the request has finished (either succeeded, failed or timed
9897         -- out)
9898
9899         succeeded = true,
9900         -- If true, the request was successful
9901
9902         timeout = false,
9903         -- If true, the request timed out
9904
9905         code = 200,
9906         -- HTTP status code
9907
9908         data = "response"
9909     }
9910
9911 Authentication handler definition
9912 ---------------------------------
9913
9914 Used by `minetest.register_authentication_handler`.
9915
9916     {
9917         get_auth = function(name),
9918         -- Get authentication data for existing player `name` (`nil` if player
9919         -- doesn't exist).
9920         -- Returns following structure:
9921         -- `{password=<string>, privileges=<table>, last_login=<number or nil>}`
9922
9923         create_auth = function(name, password),
9924         -- Create new auth data for player `name`.
9925         -- Note that `password` is not plain-text but an arbitrary
9926         -- representation decided by the engine.
9927
9928         delete_auth = function(name),
9929         -- Delete auth data of player `name`.
9930         -- Returns boolean indicating success (false if player is nonexistent).
9931
9932         set_password = function(name, password),
9933         -- Set password of player `name` to `password`.
9934         -- Auth data should be created if not present.
9935
9936         set_privileges = function(name, privileges),
9937         -- Set privileges of player `name`.
9938         -- `privileges` is in table form, auth data should be created if not
9939         -- present.
9940
9941         reload = function(),
9942         -- Reload authentication data from the storage location.
9943         -- Returns boolean indicating success.
9944
9945         record_login = function(name),
9946         -- Called when player joins, used for keeping track of last_login
9947
9948         iterate = function(),
9949         -- Returns an iterator (use with `for` loops) for all player names
9950         -- currently in the auth database
9951     }
9952
9953 Bit Library
9954 -----------
9955
9956 Functions: bit.tobit, bit.tohex, bit.bnot, bit.band, bit.bor, bit.bxor, bit.lshift, bit.rshift, bit.arshift, bit.rol, bit.ror, bit.bswap
9957
9958 See http://bitop.luajit.org/ for advanced information.