]> git.lizzy.rs Git - minetest.git/blob - doc/lua_api.txt
Error when string.split is given empty separator (#13132)
[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 (gain = 0.5)
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, cannot be empty, 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 * `minetest.register_on_mapblocks_changed(function(modified_blocks, modified_block_count))`
5376     * Called soon after any nodes or node metadata have been modified. No
5377       modifications will be missed, but there may be false positives.
5378     * Will never be called more than once per server step.
5379     * `modified_blocks` is the set of modified mapblock position hashes. These
5380       are in the same format as those produced by `minetest.hash_node_position`,
5381       and can be converted to positions with `minetest.get_position_from_hash`.
5382       The set is a table where the keys are hashes and the values are `true`.
5383     * `modified_block_count` is the number of entries in the set.
5384     * Note: callbacks must be registered at mod load time.
5385
5386 Setting-related
5387 ---------------
5388
5389 * `minetest.settings`: Settings object containing all of the settings from the
5390   main config file (`minetest.conf`).
5391 * `minetest.setting_get_pos(name)`: Loads a setting from the main settings and
5392   parses it as a position (in the format `(1,2,3)`). Returns a position or nil.
5393
5394 Authentication
5395 --------------
5396
5397 * `minetest.string_to_privs(str[, delim])`:
5398     * Converts string representation of privs into table form
5399     * `delim`: String separating the privs. Defaults to `","`.
5400     * Returns `{ priv1 = true, ... }`
5401 * `minetest.privs_to_string(privs[, delim])`:
5402     * Returns the string representation of `privs`
5403     * `delim`: String to delimit privs. Defaults to `","`.
5404 * `minetest.get_player_privs(name) -> {priv1=true,...}`
5405 * `minetest.check_player_privs(player_or_name, ...)`:
5406   returns `bool, missing_privs`
5407     * A quickhand for checking privileges.
5408     * `player_or_name`: Either a Player object or the name of a player.
5409     * `...` is either a list of strings, e.g. `"priva", "privb"` or
5410       a table, e.g. `{ priva = true, privb = true }`.
5411
5412 * `minetest.check_password_entry(name, entry, password)`
5413     * Returns true if the "password entry" for a player with name matches given
5414       password, false otherwise.
5415     * The "password entry" is the password representation generated by the
5416       engine as returned as part of a `get_auth()` call on the auth handler.
5417     * Only use this function for making it possible to log in via password from
5418       external protocols such as IRC, other uses are frowned upon.
5419 * `minetest.get_password_hash(name, raw_password)`
5420     * Convert a name-password pair to a password hash that Minetest can use.
5421     * The returned value alone is not a good basis for password checks based
5422       on comparing the password hash in the database with the password hash
5423       from the function, with an externally provided password, as the hash
5424       in the db might use the new SRP verifier format.
5425     * For this purpose, use `minetest.check_password_entry` instead.
5426 * `minetest.get_player_ip(name)`: returns an IP address string for the player
5427   `name`.
5428     * The player needs to be online for this to be successful.
5429
5430 * `minetest.get_auth_handler()`: Return the currently active auth handler
5431     * See the [Authentication handler definition]
5432     * Use this to e.g. get the authentication data for a player:
5433       `local auth_data = minetest.get_auth_handler().get_auth(playername)`
5434 * `minetest.notify_authentication_modified(name)`
5435     * Must be called by the authentication handler for privilege changes.
5436     * `name`: string; if omitted, all auth data should be considered modified
5437 * `minetest.set_player_password(name, password_hash)`: Set password hash of
5438   player `name`.
5439 * `minetest.set_player_privs(name, {priv1=true,...})`: Set privileges of player
5440   `name`.
5441 * `minetest.auth_reload()`
5442     * See `reload()` in authentication handler definition
5443
5444 `minetest.set_player_password`, `minetest.set_player_privs`,
5445 `minetest.get_player_privs` and `minetest.auth_reload` call the authentication
5446 handler.
5447
5448 Chat
5449 ----
5450
5451 * `minetest.chat_send_all(text)`
5452 * `minetest.chat_send_player(name, text)`
5453 * `minetest.format_chat_message(name, message)`
5454     * Used by the server to format a chat message, based on the setting `chat_message_format`.
5455       Refer to the documentation of the setting for a list of valid placeholders.
5456     * Takes player name and message, and returns the formatted string to be sent to players.
5457     * Can be redefined by mods if required, for things like colored names or messages.
5458     * **Only** the first occurrence of each placeholder will be replaced.
5459
5460 Environment access
5461 ------------------
5462
5463 * `minetest.set_node(pos, node)`
5464 * `minetest.add_node(pos, node)`: alias to `minetest.set_node`
5465     * Set node at position `pos`
5466     * `node`: table `{name=string, param1=number, param2=number}`
5467     * If param1 or param2 is omitted, it's set to `0`.
5468     * e.g. `minetest.set_node({x=0, y=10, z=0}, {name="default:wood"})`
5469 * `minetest.bulk_set_node({pos1, pos2, pos3, ...}, node)`
5470     * Set node on all positions set in the first argument.
5471     * e.g. `minetest.bulk_set_node({{x=0, y=1, z=1}, {x=1, y=2, z=2}}, {name="default:stone"})`
5472     * For node specification or position syntax see `minetest.set_node` call
5473     * Faster than set_node due to single call, but still considerably slower
5474       than Lua Voxel Manipulators (LVM) for large numbers of nodes.
5475       Unlike LVMs, this will call node callbacks. It also allows setting nodes
5476       in spread out positions which would cause LVMs to waste memory.
5477       For setting a cube, this is 1.3x faster than set_node whereas LVM is 20
5478       times faster.
5479 * `minetest.swap_node(pos, node)`
5480     * Set node at position, but don't remove metadata
5481 * `minetest.remove_node(pos)`
5482     * By default it does the same as `minetest.set_node(pos, {name="air"})`
5483 * `minetest.get_node(pos)`
5484     * Returns the node at the given position as table in the format
5485       `{name="node_name", param1=0, param2=0}`,
5486       returns `{name="ignore", param1=0, param2=0}` for unloaded areas.
5487 * `minetest.get_node_or_nil(pos)`
5488     * Same as `get_node` but returns `nil` for unloaded areas.
5489 * `minetest.get_node_light(pos, timeofday)`
5490     * Gets the light value at the given position. Note that the light value
5491       "inside" the node at the given position is returned, so you usually want
5492       to get the light value of a neighbor.
5493     * `pos`: The position where to measure the light.
5494     * `timeofday`: `nil` for current time, `0` for night, `0.5` for day
5495     * Returns a number between `0` and `15` or `nil`
5496     * `nil` is returned e.g. when the map isn't loaded at `pos`
5497 * `minetest.get_natural_light(pos[, timeofday])`
5498     * Figures out the sunlight (or moonlight) value at pos at the given time of
5499       day.
5500     * `pos`: The position of the node
5501     * `timeofday`: `nil` for current time, `0` for night, `0.5` for day
5502     * Returns a number between `0` and `15` or `nil`
5503     * This function tests 203 nodes in the worst case, which happens very
5504       unlikely
5505 * `minetest.get_artificial_light(param1)`
5506     * Calculates the artificial light (light from e.g. torches) value from the
5507       `param1` value.
5508     * `param1`: The param1 value of a `paramtype = "light"` node.
5509     * Returns a number between `0` and `15`
5510     * Currently it's the same as `math.floor(param1 / 16)`, except that it
5511       ensures compatibility.
5512 * `minetest.place_node(pos, node)`
5513     * Place node with the same effects that a player would cause
5514 * `minetest.dig_node(pos)`
5515     * Dig node with the same effects that a player would cause
5516     * Returns `true` if successful, `false` on failure (e.g. protected location)
5517 * `minetest.punch_node(pos)`
5518     * Punch node with the same effects that a player would cause
5519 * `minetest.spawn_falling_node(pos)`
5520     * Change node into falling node
5521     * Returns `true` and the ObjectRef of the spawned entity if successful, `false` on failure
5522
5523 * `minetest.find_nodes_with_meta(pos1, pos2)`
5524     * Get a table of positions of nodes that have metadata within a region
5525       {pos1, pos2}.
5526 * `minetest.get_meta(pos)`
5527     * Get a `NodeMetaRef` at that position
5528 * `minetest.get_node_timer(pos)`
5529     * Get `NodeTimerRef`
5530
5531 * `minetest.add_entity(pos, name, [staticdata])`: Spawn Lua-defined entity at
5532   position.
5533     * Returns `ObjectRef`, or `nil` if failed
5534 * `minetest.add_item(pos, item)`: Spawn item
5535     * Returns `ObjectRef`, or `nil` if failed
5536 * `minetest.get_player_by_name(name)`: Get an `ObjectRef` to a player
5537 * `minetest.get_objects_inside_radius(pos, radius)`: returns a list of
5538   ObjectRefs.
5539     * `radius`: using a Euclidean metric
5540 * `minetest.get_objects_in_area(pos1, pos2)`: returns a list of
5541   ObjectRefs.
5542      * `pos1` and `pos2` are the min and max positions of the area to search.
5543 * `minetest.set_timeofday(val)`
5544     * `val` is between `0` and `1`; `0` for midnight, `0.5` for midday
5545 * `minetest.get_timeofday()`
5546 * `minetest.get_gametime()`: returns the time, in seconds, since the world was
5547   created.
5548 * `minetest.get_day_count()`: returns number days elapsed since world was
5549   created.
5550     * accounts for time changes.
5551 * `minetest.find_node_near(pos, radius, nodenames, [search_center])`: returns
5552   pos or `nil`.
5553     * `radius`: using a maximum metric
5554     * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
5555     * `search_center` is an optional boolean (default: `false`)
5556       If true `pos` is also checked for the nodes
5557 * `minetest.find_nodes_in_area(pos1, pos2, nodenames, [grouped])`
5558     * `pos1` and `pos2` are the min and max positions of the area to search.
5559     * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
5560     * If `grouped` is true the return value is a table indexed by node name
5561       which contains lists of positions.
5562     * If `grouped` is false or absent the return values are as follows:
5563       first value: Table with all node positions
5564       second value: Table with the count of each node with the node name
5565       as index
5566     * Area volume is limited to 4,096,000 nodes
5567 * `minetest.find_nodes_in_area_under_air(pos1, pos2, nodenames)`: returns a
5568   list of positions.
5569     * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
5570     * Return value: Table with all node positions with a node air above
5571     * Area volume is limited to 4,096,000 nodes
5572 * `minetest.get_perlin(noiseparams)`
5573     * Return world-specific perlin noise.
5574     * The actual seed used is the noiseparams seed plus the world seed.
5575 * `minetest.get_perlin(seeddiff, octaves, persistence, spread)`
5576     * Deprecated: use `minetest.get_perlin(noiseparams)` instead.
5577     * Return world-specific perlin noise.
5578 * `minetest.get_voxel_manip([pos1, pos2])`
5579     * Return voxel manipulator object.
5580     * Loads the manipulator from the map if positions are passed.
5581 * `minetest.set_gen_notify(flags, {deco_ids})`
5582     * Set the types of on-generate notifications that should be collected.
5583     * `flags` is a flag field with the available flags:
5584         * dungeon
5585         * temple
5586         * cave_begin
5587         * cave_end
5588         * large_cave_begin
5589         * large_cave_end
5590         * decoration
5591     * The second parameter is a list of IDs of decorations which notification
5592       is requested for.
5593 * `minetest.get_gen_notify()`
5594     * Returns a flagstring and a table with the `deco_id`s.
5595 * `minetest.get_decoration_id(decoration_name)`
5596     * Returns the decoration ID number for the provided decoration name string,
5597       or `nil` on failure.
5598 * `minetest.get_mapgen_object(objectname)`
5599     * Return requested mapgen object if available (see [Mapgen objects])
5600 * `minetest.get_heat(pos)`
5601     * Returns the heat at the position, or `nil` on failure.
5602 * `minetest.get_humidity(pos)`
5603     * Returns the humidity at the position, or `nil` on failure.
5604 * `minetest.get_biome_data(pos)`
5605     * Returns a table containing:
5606         * `biome` the biome id of the biome at that position
5607         * `heat` the heat at the position
5608         * `humidity` the humidity at the position
5609     * Or returns `nil` on failure.
5610 * `minetest.get_biome_id(biome_name)`
5611     * Returns the biome id, as used in the biomemap Mapgen object and returned
5612       by `minetest.get_biome_data(pos)`, for a given biome_name string.
5613 * `minetest.get_biome_name(biome_id)`
5614     * Returns the biome name string for the provided biome id, or `nil` on
5615       failure.
5616     * If no biomes have been registered, such as in mgv6, returns `default`.
5617 * `minetest.get_mapgen_params()`
5618     * Deprecated: use `minetest.get_mapgen_setting(name)` instead.
5619     * Returns a table containing:
5620         * `mgname`
5621         * `seed`
5622         * `chunksize`
5623         * `water_level`
5624         * `flags`
5625 * `minetest.set_mapgen_params(MapgenParams)`
5626     * Deprecated: use `minetest.set_mapgen_setting(name, value, override)`
5627       instead.
5628     * Set map generation parameters.
5629     * Function cannot be called after the registration period.
5630     * Takes a table as an argument with the fields:
5631         * `mgname`
5632         * `seed`
5633         * `chunksize`
5634         * `water_level`
5635         * `flags`
5636     * Leave field unset to leave that parameter unchanged.
5637     * `flags` contains a comma-delimited string of flags to set, or if the
5638       prefix `"no"` is attached, clears instead.
5639     * `flags` is in the same format and has the same options as `mg_flags` in
5640       `minetest.conf`.
5641 * `minetest.get_mapgen_edges([mapgen_limit[, chunksize]])`
5642     * Returns the minimum and maximum possible generated node positions
5643       in that order.
5644     * `mapgen_limit` is an optional number. If it is absent, its value is that
5645       of the *active* mapgen setting `"mapgen_limit"`.
5646     * `chunksize` is an optional number. If it is absent, its value is that
5647       of the *active* mapgen setting `"chunksize"`.
5648 * `minetest.get_mapgen_setting(name)`
5649     * Gets the *active* mapgen setting (or nil if none exists) in string
5650       format with the following order of precedence:
5651         1) Settings loaded from map_meta.txt or overrides set during mod
5652            execution.
5653         2) Settings set by mods without a metafile override
5654         3) Settings explicitly set in the user config file, minetest.conf
5655         4) Settings set as the user config default
5656 * `minetest.get_mapgen_setting_noiseparams(name)`
5657     * Same as above, but returns the value as a NoiseParams table if the
5658       setting `name` exists and is a valid NoiseParams.
5659 * `minetest.set_mapgen_setting(name, value, [override_meta])`
5660     * Sets a mapgen param to `value`, and will take effect if the corresponding
5661       mapgen setting is not already present in map_meta.txt.
5662     * `override_meta` is an optional boolean (default: `false`). If this is set
5663       to true, the setting will become the active setting regardless of the map
5664       metafile contents.
5665     * Note: to set the seed, use `"seed"`, not `"fixed_map_seed"`.
5666 * `minetest.set_mapgen_setting_noiseparams(name, value, [override_meta])`
5667     * Same as above, except value is a NoiseParams table.
5668 * `minetest.set_noiseparams(name, noiseparams, set_default)`
5669     * Sets the noiseparams setting of `name` to the noiseparams table specified
5670       in `noiseparams`.
5671     * `set_default` is an optional boolean (default: `true`) that specifies
5672       whether the setting should be applied to the default config or current
5673       active config.
5674 * `minetest.get_noiseparams(name)`
5675     * Returns a table of the noiseparams for name.
5676 * `minetest.generate_ores(vm, pos1, pos2)`
5677     * Generate all registered ores within the VoxelManip `vm` and in the area
5678       from `pos1` to `pos2`.
5679     * `pos1` and `pos2` are optional and default to mapchunk minp and maxp.
5680 * `minetest.generate_decorations(vm, pos1, pos2)`
5681     * Generate all registered decorations within the VoxelManip `vm` and in the
5682       area from `pos1` to `pos2`.
5683     * `pos1` and `pos2` are optional and default to mapchunk minp and maxp.
5684 * `minetest.clear_objects([options])`
5685     * Clear all objects in the environment
5686     * Takes an optional table as an argument with the field `mode`.
5687         * mode = `"full"`: Load and go through every mapblock, clearing
5688                             objects (default).
5689         * mode = `"quick"`: Clear objects immediately in loaded mapblocks,
5690                             clear objects in unloaded mapblocks only when the
5691                             mapblocks are next activated.
5692 * `minetest.load_area(pos1[, pos2])`
5693     * Load the mapblocks containing the area from `pos1` to `pos2`.
5694       `pos2` defaults to `pos1` if not specified.
5695     * This function does not trigger map generation.
5696 * `minetest.emerge_area(pos1, pos2, [callback], [param])`
5697     * Queue all blocks in the area from `pos1` to `pos2`, inclusive, to be
5698       asynchronously fetched from memory, loaded from disk, or if inexistent,
5699       generates them.
5700     * If `callback` is a valid Lua function, this will be called for each block
5701       emerged.
5702     * The function signature of callback is:
5703       `function EmergeAreaCallback(blockpos, action, calls_remaining, param)`
5704         * `blockpos` is the *block* coordinates of the block that had been
5705           emerged.
5706         * `action` could be one of the following constant values:
5707             * `minetest.EMERGE_CANCELLED`
5708             * `minetest.EMERGE_ERRORED`
5709             * `minetest.EMERGE_FROM_MEMORY`
5710             * `minetest.EMERGE_FROM_DISK`
5711             * `minetest.EMERGE_GENERATED`
5712         * `calls_remaining` is the number of callbacks to be expected after
5713           this one.
5714         * `param` is the user-defined parameter passed to emerge_area (or
5715           nil if the parameter was absent).
5716 * `minetest.delete_area(pos1, pos2)`
5717     * delete all mapblocks in the area from pos1 to pos2, inclusive
5718 * `minetest.line_of_sight(pos1, pos2)`: returns `boolean, pos`
5719     * Checks if there is anything other than air between pos1 and pos2.
5720     * Returns false if something is blocking the sight.
5721     * Returns the position of the blocking node when `false`
5722     * `pos1`: First position
5723     * `pos2`: Second position
5724 * `minetest.raycast(pos1, pos2, objects, liquids)`: returns `Raycast`
5725     * Creates a `Raycast` object.
5726     * `pos1`: start of the ray
5727     * `pos2`: end of the ray
5728     * `objects`: if false, only nodes will be returned. Default is `true`.
5729     * `liquids`: if false, liquid nodes (`liquidtype ~= "none"`) won't be
5730                  returned. Default is `false`.
5731 * `minetest.find_path(pos1,pos2,searchdistance,max_jump,max_drop,algorithm)`
5732     * returns table containing path that can be walked on
5733     * returns a table of 3D points representing a path from `pos1` to `pos2` or
5734       `nil` on failure.
5735     * Reasons for failure:
5736         * No path exists at all
5737         * No path exists within `searchdistance` (see below)
5738         * Start or end pos is buried in land
5739     * `pos1`: start position
5740     * `pos2`: end position
5741     * `searchdistance`: maximum distance from the search positions to search in.
5742       In detail: Path must be completely inside a cuboid. The minimum
5743       `searchdistance` of 1 will confine search between `pos1` and `pos2`.
5744       Larger values will increase the size of this cuboid in all directions
5745     * `max_jump`: maximum height difference to consider walkable
5746     * `max_drop`: maximum height difference to consider droppable
5747     * `algorithm`: One of `"A*_noprefetch"` (default), `"A*"`, `"Dijkstra"`.
5748       Difference between `"A*"` and `"A*_noprefetch"` is that
5749       `"A*"` will pre-calculate the cost-data, the other will calculate it
5750       on-the-fly
5751 * `minetest.spawn_tree (pos, {treedef})`
5752     * spawns L-system tree at given `pos` with definition in `treedef` table
5753 * `minetest.transforming_liquid_add(pos)`
5754     * add node to liquid flow update queue
5755 * `minetest.get_node_max_level(pos)`
5756     * get max available level for leveled node
5757 * `minetest.get_node_level(pos)`
5758     * get level of leveled node (water, snow)
5759 * `minetest.set_node_level(pos, level)`
5760     * set level of leveled node, default `level` equals `1`
5761     * if `totallevel > maxlevel`, returns rest (`total-max`).
5762 * `minetest.add_node_level(pos, level)`
5763     * increase level of leveled node by level, default `level` equals `1`
5764     * if `totallevel > maxlevel`, returns rest (`total-max`)
5765     * `level` must be between -127 and 127
5766 * `minetest.fix_light(pos1, pos2)`: returns `true`/`false`
5767     * resets the light in a cuboid-shaped part of
5768       the map and removes lighting bugs.
5769     * Loads the area if it is not loaded.
5770     * `pos1` is the corner of the cuboid with the least coordinates
5771       (in node coordinates), inclusive.
5772     * `pos2` is the opposite corner of the cuboid, inclusive.
5773     * The actual updated cuboid might be larger than the specified one,
5774       because only whole map blocks can be updated.
5775       The actual updated area consists of those map blocks that intersect
5776       with the given cuboid.
5777     * However, the neighborhood of the updated area might change
5778       as well, as light can spread out of the cuboid, also light
5779       might be removed.
5780     * returns `false` if the area is not fully generated,
5781       `true` otherwise
5782 * `minetest.check_single_for_falling(pos)`
5783     * causes an unsupported `group:falling_node` node to fall and causes an
5784       unattached `group:attached_node` node to fall.
5785     * does not spread these updates to neighbors.
5786 * `minetest.check_for_falling(pos)`
5787     * causes an unsupported `group:falling_node` node to fall and causes an
5788       unattached `group:attached_node` node to fall.
5789     * spread these updates to neighbors and can cause a cascade
5790       of nodes to fall.
5791 * `minetest.get_spawn_level(x, z)`
5792     * Returns a player spawn y co-ordinate for the provided (x, z)
5793       co-ordinates, or `nil` for an unsuitable spawn point.
5794     * For most mapgens a 'suitable spawn point' is one with y between
5795       `water_level` and `water_level + 16`, and in mgv7 well away from rivers,
5796       so `nil` will be returned for many (x, z) co-ordinates.
5797     * The spawn level returned is for a player spawn in unmodified terrain.
5798     * The spawn level is intentionally above terrain level to cope with
5799       full-node biome 'dust' nodes.
5800
5801 Mod channels
5802 ------------
5803
5804 You can find mod channels communication scheme in `doc/mod_channels.png`.
5805
5806 * `minetest.mod_channel_join(channel_name)`
5807     * Server joins channel `channel_name`, and creates it if necessary. You
5808       should listen for incoming messages with
5809       `minetest.register_on_modchannel_message`
5810
5811 Inventory
5812 ---------
5813
5814 `minetest.get_inventory(location)`: returns an `InvRef`
5815
5816 * `location` = e.g.
5817     * `{type="player", name="celeron55"}`
5818     * `{type="node", pos={x=, y=, z=}}`
5819     * `{type="detached", name="creative"}`
5820 * `minetest.create_detached_inventory(name, callbacks, [player_name])`: returns
5821   an `InvRef`.
5822     * `callbacks`: See [Detached inventory callbacks]
5823     * `player_name`: Make detached inventory available to one player
5824       exclusively, by default they will be sent to every player (even if not
5825       used).
5826       Note that this parameter is mostly just a workaround and will be removed
5827       in future releases.
5828     * Creates a detached inventory. If it already exists, it is cleared.
5829 * `minetest.remove_detached_inventory(name)`
5830     * Returns a `boolean` indicating whether the removal succeeded.
5831 * `minetest.do_item_eat(hp_change, replace_with_item, itemstack, user, pointed_thing)`:
5832   returns leftover ItemStack or nil to indicate no inventory change
5833     * See `minetest.item_eat` and `minetest.register_on_item_eat`
5834
5835 Formspec
5836 --------
5837
5838 * `minetest.show_formspec(playername, formname, formspec)`
5839     * `playername`: name of player to show formspec
5840     * `formname`: name passed to `on_player_receive_fields` callbacks.
5841       It should follow the `"modname:<whatever>"` naming convention
5842     * `formspec`: formspec to display
5843 * `minetest.close_formspec(playername, formname)`
5844     * `playername`: name of player to close formspec
5845     * `formname`: has to exactly match the one given in `show_formspec`, or the
5846       formspec will not close.
5847     * calling `show_formspec(playername, formname, "")` is equal to this
5848       expression.
5849     * to close a formspec regardless of the formname, call
5850       `minetest.close_formspec(playername, "")`.
5851       **USE THIS ONLY WHEN ABSOLUTELY NECESSARY!**
5852 * `minetest.formspec_escape(string)`: returns a string
5853     * escapes the characters "[", "]", "\", "," and ";", which cannot be used
5854       in formspecs.
5855 * `minetest.explode_table_event(string)`: returns a table
5856     * returns e.g. `{type="CHG", row=1, column=2}`
5857     * `type` is one of:
5858         * `"INV"`: no row selected
5859         * `"CHG"`: selected
5860         * `"DCL"`: double-click
5861 * `minetest.explode_textlist_event(string)`: returns a table
5862     * returns e.g. `{type="CHG", index=1}`
5863     * `type` is one of:
5864         * `"INV"`: no row selected
5865         * `"CHG"`: selected
5866         * `"DCL"`: double-click
5867 * `minetest.explode_scrollbar_event(string)`: returns a table
5868     * returns e.g. `{type="CHG", value=500}`
5869     * `type` is one of:
5870         * `"INV"`: something failed
5871         * `"CHG"`: has been changed
5872         * `"VAL"`: not changed
5873
5874 Item handling
5875 -------------
5876
5877 * `minetest.inventorycube(img1, img2, img3)`
5878     * Returns a string for making an image of a cube (useful as an item image)
5879 * `minetest.get_pointed_thing_position(pointed_thing, above)`
5880     * Returns the position of a `pointed_thing` or `nil` if the `pointed_thing`
5881       does not refer to a node or entity.
5882     * If the optional `above` parameter is true and the `pointed_thing` refers
5883       to a node, then it will return the `above` position of the `pointed_thing`.
5884 * `minetest.dir_to_facedir(dir, is6d)`
5885     * Convert a vector to a facedir value, used in `param2` for
5886       `paramtype2="facedir"`.
5887     * passing something non-`nil`/`false` for the optional second parameter
5888       causes it to take the y component into account.
5889 * `minetest.facedir_to_dir(facedir)`
5890     * Convert a facedir back into a vector aimed directly out the "back" of a
5891       node.
5892 * `minetest.dir_to_fourdir(dir)`
5893     * Convert a vector to a 4dir value, used in `param2` for
5894       `paramtype2="4dir"`.
5895 * `minetest.fourdir_to_dir(fourdir)`
5896     * Convert a 4dir back into a vector aimed directly out the "back" of a
5897       node.
5898 * `minetest.dir_to_wallmounted(dir)`
5899     * Convert a vector to a wallmounted value, used for
5900       `paramtype2="wallmounted"`.
5901 * `minetest.wallmounted_to_dir(wallmounted)`
5902     * Convert a wallmounted value back into a vector aimed directly out the
5903       "back" of a node.
5904 * `minetest.dir_to_yaw(dir)`
5905     * Convert a vector into a yaw (angle)
5906 * `minetest.yaw_to_dir(yaw)`
5907     * Convert yaw (angle) to a vector
5908 * `minetest.is_colored_paramtype(ptype)`
5909     * Returns a boolean. Returns `true` if the given `paramtype2` contains
5910       color information (`color`, `colorwallmounted`, `colorfacedir`, etc.).
5911 * `minetest.strip_param2_color(param2, paramtype2)`
5912     * Removes everything but the color information from the
5913       given `param2` value.
5914     * Returns `nil` if the given `paramtype2` does not contain color
5915       information.
5916 * `minetest.get_node_drops(node, toolname)`
5917     * Returns list of itemstrings that are dropped by `node` when dug
5918       with the item `toolname` (not limited to tools).
5919     * `node`: node as table or node name
5920     * `toolname`: name of the item used to dig (can be `nil`)
5921 * `minetest.get_craft_result(input)`: returns `output, decremented_input`
5922     * `input.method` = `"normal"` or `"cooking"` or `"fuel"`
5923     * `input.width` = for example `3`
5924     * `input.items` = for example
5925       `{stack1, stack2, stack3, stack4, stack 5, stack 6, stack 7, stack 8, stack 9}`
5926     * `output.item` = `ItemStack`, if unsuccessful: empty `ItemStack`
5927     * `output.time` = a number, if unsuccessful: `0`
5928     * `output.replacements` = List of replacement `ItemStack`s that couldn't be
5929       placed in `decremented_input.items`. Replacements can be placed in
5930       `decremented_input` if the stack of the replaced item has a count of 1.
5931     * `decremented_input` = like `input`
5932 * `minetest.get_craft_recipe(output)`: returns input
5933     * returns last registered recipe for output item (node)
5934     * `output` is a node or item type such as `"default:torch"`
5935     * `input.method` = `"normal"` or `"cooking"` or `"fuel"`
5936     * `input.width` = for example `3`
5937     * `input.items` = for example
5938       `{stack1, stack2, stack3, stack4, stack 5, stack 6, stack 7, stack 8, stack 9}`
5939         * `input.items` = `nil` if no recipe found
5940 * `minetest.get_all_craft_recipes(query item)`: returns a table or `nil`
5941     * returns indexed table with all registered recipes for query item (node)
5942       or `nil` if no recipe was found.
5943     * recipe entry table:
5944         * `method`: 'normal' or 'cooking' or 'fuel'
5945         * `width`: 0-3, 0 means shapeless recipe
5946         * `items`: indexed [1-9] table with recipe items
5947         * `output`: string with item name and quantity
5948     * Example result for `"default:gold_ingot"` with two recipes:
5949
5950           {
5951               {
5952                   method = "cooking", width = 3,
5953                   output = "default:gold_ingot", items = {"default:gold_lump"}
5954               },
5955               {
5956                   method = "normal", width = 1,
5957                   output = "default:gold_ingot 9", items = {"default:goldblock"}
5958               }
5959           }
5960
5961 * `minetest.handle_node_drops(pos, drops, digger)`
5962     * `drops`: list of itemstrings
5963     * Handles drops from nodes after digging: Default action is to put them
5964       into digger's inventory.
5965     * Can be overridden to get different functionality (e.g. dropping items on
5966       ground)
5967 * `minetest.itemstring_with_palette(item, palette_index)`: returns an item
5968   string.
5969     * Creates an item string which contains palette index information
5970       for hardware colorization. You can use the returned string
5971       as an output in a craft recipe.
5972     * `item`: the item stack which becomes colored. Can be in string,
5973       table and native form.
5974     * `palette_index`: this index is added to the item stack
5975 * `minetest.itemstring_with_color(item, colorstring)`: returns an item string
5976     * Creates an item string which contains static color information
5977       for hardware colorization. Use this method if you wish to colorize
5978       an item that does not own a palette. You can use the returned string
5979       as an output in a craft recipe.
5980     * `item`: the item stack which becomes colored. Can be in string,
5981       table and native form.
5982     * `colorstring`: the new color of the item stack
5983
5984 Rollback
5985 --------
5986
5987 * `minetest.rollback_get_node_actions(pos, range, seconds, limit)`:
5988   returns `{{actor, pos, time, oldnode, newnode}, ...}`
5989     * Find who has done something to a node, or near a node
5990     * `actor`: `"player:<name>"`, also `"liquid"`.
5991 * `minetest.rollback_revert_actions_by(actor, seconds)`: returns
5992   `boolean, log_messages`.
5993     * Revert latest actions of someone
5994     * `actor`: `"player:<name>"`, also `"liquid"`.
5995
5996 Defaults for the `on_place` and `on_drop` item definition functions
5997 -------------------------------------------------------------------
5998
5999 * `minetest.item_place_node(itemstack, placer, pointed_thing[, param2, prevent_after_place])`
6000     * Place item as a node
6001     * `param2` overrides `facedir` and wallmounted `param2`
6002     * `prevent_after_place`: if set to `true`, `after_place_node` is not called
6003       for the newly placed node to prevent a callback and placement loop
6004     * returns `itemstack, position`
6005       * `position`: the location the node was placed to. `nil` if nothing was placed.
6006 * `minetest.item_place_object(itemstack, placer, pointed_thing)`
6007     * Place item as-is
6008     * returns the leftover itemstack
6009     * **Note**: This function is deprecated and will never be called.
6010 * `minetest.item_place(itemstack, placer, pointed_thing[, param2])`
6011     * Wrapper that calls `minetest.item_place_node` if appropriate
6012     * Calls `on_rightclick` of `pointed_thing.under` if defined instead
6013     * **Note**: is not called when wielded item overrides `on_place`
6014     * `param2` overrides facedir and wallmounted `param2`
6015     * returns `itemstack, position`
6016       * `position`: the location the node was placed to. `nil` if nothing was placed.
6017 * `minetest.item_pickup(itemstack, picker, pointed_thing, time_from_last_punch, ...)`
6018     * Runs callbacks registered by `minetest.register_on_item_pickup` and adds
6019       the item to the picker's `"main"` inventory list.
6020     * Parameters are the same as in `on_pickup`.
6021     * Returns the leftover itemstack.
6022 * `minetest.item_drop(itemstack, dropper, pos)`
6023     * Drop the item
6024     * returns the leftover itemstack
6025 * `minetest.item_eat(hp_change[, replace_with_item])`
6026     * Returns `function(itemstack, user, pointed_thing)` as a
6027       function wrapper for `minetest.do_item_eat`.
6028     * `replace_with_item` is the itemstring which is added to the inventory.
6029       If the player is eating a stack, then replace_with_item goes to a
6030       different spot.
6031
6032 Defaults for the `on_punch` and `on_dig` node definition callbacks
6033 ------------------------------------------------------------------
6034
6035 * `minetest.node_punch(pos, node, puncher, pointed_thing)`
6036     * Calls functions registered by `minetest.register_on_punchnode()`
6037 * `minetest.node_dig(pos, node, digger)`
6038     * Checks if node can be dug, puts item into inventory, removes node
6039     * Calls functions registered by `minetest.registered_on_dignodes()`
6040
6041 Sounds
6042 ------
6043
6044 * `minetest.sound_play(spec, parameters, [ephemeral])`: returns a handle
6045     * `spec` is a `SimpleSoundSpec`
6046     * `parameters` is a sound parameter table
6047     * `ephemeral` is a boolean (default: false)
6048       Ephemeral sounds will not return a handle and can't be stopped or faded.
6049       It is recommend to use this for short sounds that happen in response to
6050       player actions (e.g. door closing).
6051 * `minetest.sound_stop(handle)`
6052     * `handle` is a handle returned by `minetest.sound_play`
6053 * `minetest.sound_fade(handle, step, gain)`
6054     * `handle` is a handle returned by `minetest.sound_play`
6055     * `step` determines how fast a sound will fade.
6056       The gain will change by this much per second,
6057       until it reaches the target gain.
6058       Note: Older versions used a signed step. This is deprecated, but old
6059       code will still work. (the client uses abs(step) to correct it)
6060     * `gain` the target gain for the fade.
6061       Fading to zero will delete the sound.
6062
6063 Timing
6064 ------
6065
6066 * `minetest.after(time, func, ...)`: returns job table to use as below.
6067     * Call the function `func` after `time` seconds, may be fractional
6068     * Optional: Variable number of arguments that are passed to `func`
6069
6070 * `job:cancel()`
6071     * Cancels the job function from being called
6072
6073 Async environment
6074 -----------------
6075
6076 The engine allows you to submit jobs to be ran in an isolated environment
6077 concurrently with normal server operation.
6078 A job consists of a function to be ran in the async environment, any amount of
6079 arguments (will be serialized) and a callback that will be called with the return
6080 value of the job function once it is finished.
6081
6082 The async environment does *not* have access to the map, entities, players or any
6083 globals defined in the 'usual' environment. Consequently, functions like
6084 `minetest.get_node()` or `minetest.get_player_by_name()` simply do not exist in it.
6085
6086 Arguments and return values passed through this can contain certain userdata
6087 objects that will be seamlessly copied (not shared) to the async environment.
6088 This allows you easy interoperability for delegating work to jobs.
6089
6090 * `minetest.handle_async(func, callback, ...)`:
6091     * Queue the function `func` to be ran in an async environment.
6092       Note that there are multiple persistent workers and any of them may
6093       end up running a given job. The engine will scale the amount of
6094       worker threads automatically.
6095     * When `func` returns the callback is called (in the normal environment)
6096       with all of the return values as arguments.
6097     * Optional: Variable number of arguments that are passed to `func`
6098 * `minetest.register_async_dofile(path)`:
6099     * Register a path to a Lua file to be imported when an async environment
6100       is initialized. You can use this to preload code which you can then call
6101       later using `minetest.handle_async()`.
6102
6103 ### List of APIs available in an async environment
6104
6105 Classes:
6106 * `ItemStack`
6107 * `PerlinNoise`
6108 * `PerlinNoiseMap`
6109 * `PseudoRandom`
6110 * `PcgRandom`
6111 * `SecureRandom`
6112 * `VoxelArea`
6113 * `VoxelManip`
6114     * only if transferred into environment; can't read/write to map
6115 * `Settings`
6116
6117 Class instances that can be transferred between environments:
6118 * `ItemStack`
6119 * `PerlinNoise`
6120 * `PerlinNoiseMap`
6121 * `VoxelManip`
6122
6123 Functions:
6124 * Standalone helpers such as logging, filesystem, encoding,
6125   hashing or compression APIs
6126 * `minetest.request_insecure_environment` (same restrictions apply)
6127
6128 Variables:
6129 * `minetest.settings`
6130 * `minetest.registered_items`, `registered_nodes`, `registered_tools`,
6131   `registered_craftitems` and `registered_aliases`
6132     * with all functions and userdata values replaced by `true`, calling any
6133       callbacks here is obviously not possible
6134
6135 Server
6136 ------
6137
6138 * `minetest.request_shutdown([message],[reconnect],[delay])`: request for
6139   server shutdown. Will display `message` to clients.
6140     * `reconnect` == true displays a reconnect button
6141     * `delay` adds an optional delay (in seconds) before shutdown.
6142       Negative delay cancels the current active shutdown.
6143       Zero delay triggers an immediate shutdown.
6144 * `minetest.cancel_shutdown_requests()`: cancel current delayed shutdown
6145 * `minetest.get_server_status(name, joined)`
6146     * Returns the server status string when a player joins or when the command
6147       `/status` is called. Returns `nil` or an empty string when the message is
6148       disabled.
6149     * `joined`: Boolean value, indicates whether the function was called when
6150       a player joined.
6151     * This function may be overwritten by mods to customize the status message.
6152 * `minetest.get_server_uptime()`: returns the server uptime in seconds
6153 * `minetest.get_server_max_lag()`: returns the current maximum lag
6154   of the server in seconds or nil if server is not fully loaded yet
6155 * `minetest.remove_player(name)`: remove player from database (if they are not
6156   connected).
6157     * As auth data is not removed, minetest.player_exists will continue to
6158       return true. Call the below method as well if you want to remove auth
6159       data too.
6160     * Returns a code (0: successful, 1: no such player, 2: player is connected)
6161 * `minetest.remove_player_auth(name)`: remove player authentication data
6162     * Returns boolean indicating success (false if player nonexistent)
6163 * `minetest.dynamic_add_media(options, callback)`
6164     * `options`: table containing the following parameters
6165         * `filepath`: path to a media file on the filesystem
6166         * `to_player`: name of the player the media should be sent to instead of
6167                        all players (optional)
6168         * `ephemeral`: boolean that marks the media as ephemeral,
6169                        it will not be cached on the client (optional, default false)
6170     * `callback`: function with arguments `name`, which is a player name
6171     * Pushes the specified media file to client(s). (details below)
6172       The file must be a supported image, sound or model format.
6173       Dynamically added media is not persisted between server restarts.
6174     * Returns false on error, true if the request was accepted
6175     * The given callback will be called for every player as soon as the
6176       media is available on the client.
6177     * Details/Notes:
6178       * If `ephemeral`=false and `to_player` is unset the file is added to the media
6179         sent to clients on startup, this means the media will appear even on
6180         old clients if they rejoin the server.
6181       * If `ephemeral`=false the file must not be modified, deleted, moved or
6182         renamed after calling this function.
6183       * Regardless of any use of `ephemeral`, adding media files with the same
6184         name twice is not possible/guaranteed to work. An exception to this is the
6185         use of `to_player` to send the same, already existent file to multiple
6186         chosen players.
6187     * Clients will attempt to fetch files added this way via remote media,
6188       this can make transfer of bigger files painless (if set up). Nevertheless
6189       it is advised not to use dynamic media for big media files.
6190
6191 Bans
6192 ----
6193
6194 * `minetest.get_ban_list()`: returns a list of all bans formatted as string
6195 * `minetest.get_ban_description(ip_or_name)`: returns list of bans matching
6196   IP address or name formatted as string
6197 * `minetest.ban_player(name)`: ban the IP of a currently connected player
6198     * Returns boolean indicating success
6199 * `minetest.unban_player_or_ip(ip_or_name)`: remove ban record matching
6200   IP address or name
6201 * `minetest.kick_player(name, [reason])`: disconnect a player with an optional
6202   reason.
6203     * Returns boolean indicating success (false if player nonexistent)
6204 * `minetest.disconnect_player(name, [reason])`: disconnect a player with an
6205   optional reason, this will not prefix with 'Kicked: ' like kick_player.
6206   If no reason is given, it will default to 'Disconnected.'
6207     * Returns boolean indicating success (false if player nonexistent)
6208
6209 Particles
6210 ---------
6211
6212 * `minetest.add_particle(particle definition)`
6213     * Deprecated: `minetest.add_particle(pos, velocity, acceleration,
6214       expirationtime, size, collisiondetection, texture, playername)`
6215
6216 * `minetest.add_particlespawner(particlespawner definition)`
6217     * Add a `ParticleSpawner`, an object that spawns an amount of particles
6218       over `time` seconds.
6219     * Returns an `id`, and -1 if adding didn't succeed
6220     * Deprecated: `minetest.add_particlespawner(amount, time,
6221       minpos, maxpos,
6222       minvel, maxvel,
6223       minacc, maxacc,
6224       minexptime, maxexptime,
6225       minsize, maxsize,
6226       collisiondetection, texture, playername)`
6227
6228 * `minetest.delete_particlespawner(id, player)`
6229     * Delete `ParticleSpawner` with `id` (return value from
6230       `minetest.add_particlespawner`).
6231     * If playername is specified, only deletes on the player's client,
6232       otherwise on all clients.
6233
6234 Schematics
6235 ----------
6236
6237 * `minetest.create_schematic(p1, p2, probability_list, filename, slice_prob_list)`
6238     * Create a schematic from the volume of map specified by the box formed by
6239       p1 and p2.
6240     * Apply the specified probability and per-node force-place to the specified
6241       nodes according to the `probability_list`.
6242         * `probability_list` is an array of tables containing two fields, `pos`
6243           and `prob`.
6244             * `pos` is the 3D vector specifying the absolute coordinates of the
6245               node being modified,
6246             * `prob` is an integer value from `0` to `255` that encodes
6247               probability and per-node force-place. Probability has levels
6248               0-127, then 128 may be added to encode per-node force-place.
6249               For probability stated as 0-255, divide by 2 and round down to
6250               get values 0-127, then add 128 to apply per-node force-place.
6251             * If there are two or more entries with the same pos value, the
6252               last entry is used.
6253             * If `pos` is not inside the box formed by `p1` and `p2`, it is
6254               ignored.
6255             * If `probability_list` equals `nil`, no probabilities are applied.
6256     * Apply the specified probability to the specified horizontal slices
6257       according to the `slice_prob_list`.
6258         * `slice_prob_list` is an array of tables containing two fields, `ypos`
6259           and `prob`.
6260             * `ypos` indicates the y position of the slice with a probability
6261               applied, the lowest slice being `ypos = 0`.
6262             * If slice probability list equals `nil`, no slice probabilities
6263               are applied.
6264     * Saves schematic in the Minetest Schematic format to filename.
6265
6266 * `minetest.place_schematic(pos, schematic, rotation, replacements, force_placement, flags)`
6267     * Place the schematic specified by schematic (see [Schematic specifier]) at
6268       `pos`.
6269     * `rotation` can equal `"0"`, `"90"`, `"180"`, `"270"`, or `"random"`.
6270     * If the `rotation` parameter is omitted, the schematic is not rotated.
6271     * `replacements` = `{["old_name"] = "convert_to", ...}`
6272     * `force_placement` is a boolean indicating whether nodes other than `air`
6273       and `ignore` are replaced by the schematic.
6274     * Returns nil if the schematic could not be loaded.
6275     * **Warning**: Once you have loaded a schematic from a file, it will be
6276       cached. Future calls will always use the cached version and the
6277       replacement list defined for it, regardless of whether the file or the
6278       replacement list parameter have changed. The only way to load the file
6279       anew is to restart the server.
6280     * `flags` is a flag field with the available flags:
6281         * place_center_x
6282         * place_center_y
6283         * place_center_z
6284
6285 * `minetest.place_schematic_on_vmanip(vmanip, pos, schematic, rotation, replacement, force_placement, flags)`:
6286     * This function is analogous to minetest.place_schematic, but places a
6287       schematic onto the specified VoxelManip object `vmanip` instead of the
6288       map.
6289     * Returns false if any part of the schematic was cut-off due to the
6290       VoxelManip not containing the full area required, and true if the whole
6291       schematic was able to fit.
6292     * Returns nil if the schematic could not be loaded.
6293     * After execution, any external copies of the VoxelManip contents are
6294       invalidated.
6295     * `flags` is a flag field with the available flags:
6296         * place_center_x
6297         * place_center_y
6298         * place_center_z
6299
6300 * `minetest.serialize_schematic(schematic, format, options)`
6301     * Return the serialized schematic specified by schematic
6302       (see [Schematic specifier])
6303     * in the `format` of either "mts" or "lua".
6304     * "mts" - a string containing the binary MTS data used in the MTS file
6305       format.
6306     * "lua" - a string containing Lua code representing the schematic in table
6307       format.
6308     * `options` is a table containing the following optional parameters:
6309         * If `lua_use_comments` is true and `format` is "lua", the Lua code
6310           generated will have (X, Z) position comments for every X row
6311           generated in the schematic data for easier reading.
6312         * If `lua_num_indent_spaces` is a nonzero number and `format` is "lua",
6313           the Lua code generated will use that number of spaces as indentation
6314           instead of a tab character.
6315
6316 * `minetest.read_schematic(schematic, options)`
6317     * Returns a Lua table representing the schematic (see: [Schematic specifier])
6318     * `schematic` is the schematic to read (see: [Schematic specifier])
6319     * `options` is a table containing the following optional parameters:
6320         * `write_yslice_prob`: string value:
6321             * `none`: no `write_yslice_prob` table is inserted,
6322             * `low`: only probabilities that are not 254 or 255 are written in
6323               the `write_ylisce_prob` table,
6324             * `all`: write all probabilities to the `write_yslice_prob` table.
6325             * The default for this option is `all`.
6326             * Any invalid value will be interpreted as `all`.
6327
6328 HTTP Requests
6329 -------------
6330
6331 * `minetest.request_http_api()`:
6332     * returns `HTTPApiTable` containing http functions if the calling mod has
6333       been granted access by being listed in the `secure.http_mods` or
6334       `secure.trusted_mods` setting, otherwise returns `nil`.
6335     * The returned table contains the functions `fetch`, `fetch_async` and
6336       `fetch_async_get` described below.
6337     * Only works at init time and must be called from the mod's main scope
6338       (not from a function).
6339     * Function only exists if minetest server was built with cURL support.
6340     * **DO NOT ALLOW ANY OTHER MODS TO ACCESS THE RETURNED TABLE, STORE IT IN
6341       A LOCAL VARIABLE!**
6342 * `HTTPApiTable.fetch(HTTPRequest req, callback)`
6343     * Performs given request asynchronously and calls callback upon completion
6344     * callback: `function(HTTPRequestResult res)`
6345     * Use this HTTP function if you are unsure, the others are for advanced use
6346 * `HTTPApiTable.fetch_async(HTTPRequest req)`: returns handle
6347     * Performs given request asynchronously and returns handle for
6348       `HTTPApiTable.fetch_async_get`
6349 * `HTTPApiTable.fetch_async_get(handle)`: returns HTTPRequestResult
6350     * Return response data for given asynchronous HTTP request
6351
6352 Storage API
6353 -----------
6354
6355 * `minetest.get_mod_storage()`:
6356     * returns reference to mod private `StorageRef`
6357     * must be called during mod load time
6358
6359 Misc.
6360 -----
6361
6362 * `minetest.get_connected_players()`: returns list of `ObjectRefs`
6363 * `minetest.is_player(obj)`: boolean, whether `obj` is a player
6364 * `minetest.player_exists(name)`: boolean, whether player exists
6365   (regardless of online status)
6366 * `minetest.hud_replace_builtin(name, hud_definition)`
6367     * Replaces definition of a builtin hud element
6368     * `name`: `"breath"` or `"health"`
6369     * `hud_definition`: definition to replace builtin definition
6370 * `minetest.parse_relative_number(arg, relative_to)`: returns number or nil
6371     * Helper function for chat commands.
6372     * For parsing an optionally relative number of a chat command
6373       parameter, using the chat command tilde notation.
6374     * `arg`: String snippet containing the number; possible values:
6375         * `"<number>"`: return as number
6376         * `"~<number>"`: return `relative_to + <number>`
6377         * `"~"`: return `relative_to`
6378         * Anything else will return `nil`
6379     * `relative_to`: Number to which the `arg` number might be relative to
6380     * Examples:
6381         * `minetest.parse_relative_number("5", 10)` returns 5
6382         * `minetest.parse_relative_number("~5", 10)` returns 15
6383         * `minetest.parse_relative_number("~", 10)` returns 10
6384 * `minetest.send_join_message(player_name)`
6385     * This function can be overridden by mods to change the join message.
6386 * `minetest.send_leave_message(player_name, timed_out)`
6387     * This function can be overridden by mods to change the leave message.
6388 * `minetest.hash_node_position(pos)`: returns a 48-bit integer
6389     * `pos`: table {x=number, y=number, z=number},
6390     * Gives a unique hash number for a node position (16+16+16=48bit)
6391 * `minetest.get_position_from_hash(hash)`: returns a position
6392     * Inverse transform of `minetest.hash_node_position`
6393 * `minetest.get_item_group(name, group)`: returns a rating
6394     * Get rating of a group of an item. (`0` means: not in group)
6395 * `minetest.get_node_group(name, group)`: returns a rating
6396     * Deprecated: An alias for the former.
6397 * `minetest.raillike_group(name)`: returns a rating
6398     * Returns rating of the connect_to_raillike group corresponding to name
6399     * If name is not yet the name of a connect_to_raillike group, a new group
6400       id is created, with that name.
6401 * `minetest.get_content_id(name)`: returns an integer
6402     * Gets the internal content ID of `name`
6403 * `minetest.get_name_from_content_id(content_id)`: returns a string
6404     * Gets the name of the content with that content ID
6405 * `minetest.parse_json(string[, nullvalue])`: returns something
6406     * Convert a string containing JSON data into the Lua equivalent
6407     * `nullvalue`: returned in place of the JSON null; defaults to `nil`
6408     * On success returns a table, a string, a number, a boolean or `nullvalue`
6409     * On failure outputs an error message and returns `nil`
6410     * Example: `parse_json("[10, {\"a\":false}]")`, returns `{10, {a = false}}`
6411 * `minetest.write_json(data[, styled])`: returns a string or `nil` and an error
6412   message.
6413     * Convert a Lua table into a JSON string
6414     * styled: Outputs in a human-readable format if this is set, defaults to
6415       false.
6416     * Unserializable things like functions and userdata will cause an error.
6417     * **Warning**: JSON is more strict than the Lua table format.
6418         1. You can only use strings and positive integers of at least one as
6419            keys.
6420         2. You cannot mix string and integer keys.
6421            This is due to the fact that JSON has two distinct array and object
6422            values.
6423     * Example: `write_json({10, {a = false}})`,
6424       returns `'[10, {"a": false}]'`
6425 * `minetest.serialize(table)`: returns a string
6426     * Convert a table containing tables, strings, numbers, booleans and `nil`s
6427       into string form readable by `minetest.deserialize`
6428     * Example: `serialize({foo="bar"})`, returns `'return { ["foo"] = "bar" }'`
6429 * `minetest.deserialize(string[, safe])`: returns a table
6430     * Convert a string returned by `minetest.serialize` into a table
6431     * `string` is loaded in an empty sandbox environment.
6432     * Will load functions if safe is false or omitted. Although these functions
6433       cannot directly access the global environment, they could bypass this
6434       restriction with maliciously crafted Lua bytecode if mod security is
6435       disabled.
6436     * This function should not be used on untrusted data, regardless of the
6437      value of `safe`. It is fine to serialize then deserialize user-provided
6438      data, but directly providing user input to deserialize is always unsafe.
6439     * Example: `deserialize('return { ["foo"] = "bar" }')`,
6440       returns `{foo="bar"}`
6441     * Example: `deserialize('print("foo")')`, returns `nil`
6442       (function call fails), returns
6443       `error:[string "print("foo")"]:1: attempt to call global 'print' (a nil value)`
6444 * `minetest.compress(data, method, ...)`: returns `compressed_data`
6445     * Compress a string of data.
6446     * `method` is a string identifying the compression method to be used.
6447     * Supported compression methods:
6448         * Deflate (zlib): `"deflate"`
6449         * Zstandard: `"zstd"`
6450     * `...` indicates method-specific arguments. Currently defined arguments
6451       are:
6452         * Deflate: `level` - Compression level, `0`-`9` or `nil`.
6453         * Zstandard: `level` - Compression level. Integer or `nil`. Default `3`.
6454         Note any supported Zstandard compression level could be used here,
6455         but these are subject to change between Zstandard versions.
6456 * `minetest.decompress(compressed_data, method, ...)`: returns data
6457     * Decompress a string of data using the algorithm specified by `method`.
6458     * See documentation on `minetest.compress()` for supported compression
6459       methods.
6460     * `...` indicates method-specific arguments. Currently, no methods use this
6461 * `minetest.rgba(red, green, blue[, alpha])`: returns a string
6462     * Each argument is an 8 Bit unsigned integer
6463     * Returns the ColorString from rgb or rgba values
6464     * Example: `minetest.rgba(10, 20, 30, 40)`, returns `"#0A141E28"`
6465 * `minetest.encode_base64(string)`: returns string encoded in base64
6466     * Encodes a string in base64.
6467 * `minetest.decode_base64(string)`: returns string or nil on failure
6468     * Padding characters are only supported starting at version 5.4.0, where
6469       5.5.0 and newer perform proper checks.
6470     * Decodes a string encoded in base64.
6471 * `minetest.is_protected(pos, name)`: returns boolean
6472     * Returning `true` restricts the player `name` from modifying (i.e. digging,
6473        placing) the node at position `pos`.
6474     * `name` will be `""` for non-players or unknown players.
6475     * This function should be overridden by protection mods. It is highly
6476       recommended to grant access to players with the `protection_bypass` privilege.
6477     * Cache and call the old version of this function if the position is
6478       not protected by the mod. This will allow using multiple protection mods.
6479     * Example:
6480
6481           local old_is_protected = minetest.is_protected
6482           function minetest.is_protected(pos, name)
6483               if mymod:position_protected_from(pos, name) then
6484                   return true
6485               end
6486               return old_is_protected(pos, name)
6487           end
6488 * `minetest.record_protection_violation(pos, name)`
6489     * This function calls functions registered with
6490       `minetest.register_on_protection_violation`.
6491 * `minetest.is_creative_enabled(name)`: returns boolean
6492     * Returning `true` means that Creative Mode is enabled for player `name`.
6493     * `name` will be `""` for non-players or if the player is unknown.
6494     * This function should be overridden by Creative Mode-related mods to
6495       implement a per-player Creative Mode.
6496     * By default, this function returns `true` if the setting
6497       `creative_mode` is `true` and `false` otherwise.
6498 * `minetest.is_area_protected(pos1, pos2, player_name, interval)`
6499     * Returns the position of the first node that `player_name` may not modify
6500       in the specified cuboid between `pos1` and `pos2`.
6501     * Returns `false` if no protections were found.
6502     * Applies `is_protected()` to a 3D lattice of points in the defined volume.
6503       The points are spaced evenly throughout the volume and have a spacing
6504       similar to, but no larger than, `interval`.
6505     * All corners and edges of the defined volume are checked.
6506     * `interval` defaults to 4.
6507     * `interval` should be carefully chosen and maximized to avoid an excessive
6508       number of points being checked.
6509     * Like `minetest.is_protected`, this function may be extended or
6510       overwritten by mods to provide a faster implementation to check the
6511       cuboid for intersections.
6512 * `minetest.rotate_and_place(itemstack, placer, pointed_thing[, infinitestacks,
6513   orient_flags, prevent_after_place])`
6514     * Attempt to predict the desired orientation of the facedir-capable node
6515       defined by `itemstack`, and place it accordingly (on-wall, on the floor,
6516       or hanging from the ceiling).
6517     * `infinitestacks`: if `true`, the itemstack is not changed. Otherwise the
6518       stacks are handled normally.
6519     * `orient_flags`: Optional table containing extra tweaks to the placement code:
6520         * `invert_wall`:   if `true`, place wall-orientation on the ground and
6521           ground-orientation on the wall.
6522         * `force_wall`:    if `true`, always place the node in wall orientation.
6523         * `force_ceiling`: if `true`, always place on the ceiling.
6524         * `force_floor`:   if `true`, always place the node on the floor.
6525         * `force_facedir`: if `true`, forcefully reset the facedir to north
6526           when placing on the floor or ceiling.
6527         * The first four options are mutually-exclusive; the last in the list
6528           takes precedence over the first.
6529     * `prevent_after_place` is directly passed to `minetest.item_place_node`
6530     * Returns the new itemstack after placement
6531 * `minetest.rotate_node(itemstack, placer, pointed_thing)`
6532     * calls `rotate_and_place()` with `infinitestacks` set according to the state
6533       of the creative mode setting, checks for "sneak" to set the `invert_wall`
6534       parameter and `prevent_after_place` set to `true`.
6535
6536 * `minetest.calculate_knockback(player, hitter, time_from_last_punch,
6537   tool_capabilities, dir, distance, damage)`
6538     * Returns the amount of knockback applied on the punched player.
6539     * Arguments are equivalent to `register_on_punchplayer`, except the following:
6540         * `distance`: distance between puncher and punched player
6541     * This function can be overridden by mods that wish to modify this behavior.
6542     * You may want to cache and call the old function to allow multiple mods to
6543       change knockback behavior.
6544
6545 * `minetest.forceload_block(pos[, transient[, limit]])`
6546     * forceloads the position `pos`.
6547     * returns `true` if area could be forceloaded
6548     * If `transient` is `false` or absent, the forceload will be persistent
6549       (saved between server runs). If `true`, the forceload will be transient
6550       (not saved between server runs).
6551     * `limit` is an optional limit on the number of blocks that can be
6552       forceloaded at once. If `limit` is negative, there is no limit. If it is
6553       absent, the limit is the value of the setting `"max_forceloaded_blocks"`.
6554       If the call would put the number of blocks over the limit, the call fails.
6555
6556 * `minetest.forceload_free_block(pos[, transient])`
6557     * stops forceloading the position `pos`
6558     * If `transient` is `false` or absent, frees a persistent forceload.
6559       If `true`, frees a transient forceload.
6560
6561 * `minetest.compare_block_status(pos, condition)`
6562     * Checks whether the mapblock at position `pos` is in the wanted condition.
6563     * `condition` may be one of the following values:
6564         * `"unknown"`: not in memory
6565         * `"emerging"`: in the queue for loading from disk or generating
6566         * `"loaded"`: in memory but inactive (no ABMs are executed)
6567         * `"active"`: in memory and active
6568         * Other values are reserved for future functionality extensions
6569     * Return value, the comparison status:
6570         * `false`: Mapblock does not fulfill the wanted condition
6571         * `true`: Mapblock meets the requirement
6572         * `nil`: Unsupported `condition` value
6573
6574 * `minetest.request_insecure_environment()`: returns an environment containing
6575   insecure functions if the calling mod has been listed as trusted in the
6576   `secure.trusted_mods` setting or security is disabled, otherwise returns
6577   `nil`.
6578     * Only works at init time and must be called from the mod's main scope
6579       (ie: the init.lua of the mod, not from another Lua file or within a function).
6580     * **DO NOT ALLOW ANY OTHER MODS TO ACCESS THE RETURNED ENVIRONMENT, STORE
6581       IT IN A LOCAL VARIABLE!**
6582
6583 * `minetest.global_exists(name)`
6584     * Checks if a global variable has been set, without triggering a warning.
6585
6586 Global objects
6587 --------------
6588
6589 * `minetest.env`: `EnvRef` of the server environment and world.
6590     * Any function in the minetest namespace can be called using the syntax
6591       `minetest.env:somefunction(somearguments)`
6592       instead of `minetest.somefunction(somearguments)`
6593     * Deprecated, but support is not to be dropped soon
6594
6595 Global tables
6596 -------------
6597
6598 ### Registered definition tables
6599
6600 * `minetest.registered_items`
6601     * Map of registered items, indexed by name
6602 * `minetest.registered_nodes`
6603     * Map of registered node definitions, indexed by name
6604 * `minetest.registered_craftitems`
6605     * Map of registered craft item definitions, indexed by name
6606 * `minetest.registered_tools`
6607     * Map of registered tool definitions, indexed by name
6608 * `minetest.registered_entities`
6609     * Map of registered entity prototypes, indexed by name
6610     * Values in this table may be modified directly.
6611       Note: changes to initial properties will only affect entities spawned afterwards,
6612       as they are only read when spawning.
6613 * `minetest.object_refs`
6614     * Map of object references, indexed by active object id
6615 * `minetest.luaentities`
6616     * Map of Lua entities, indexed by active object id
6617 * `minetest.registered_abms`
6618     * List of ABM definitions
6619 * `minetest.registered_lbms`
6620     * List of LBM definitions
6621 * `minetest.registered_aliases`
6622     * Map of registered aliases, indexed by name
6623 * `minetest.registered_ores`
6624     * Map of registered ore definitions, indexed by the `name` field.
6625     * If `name` is nil, the key is the object handle returned by
6626       `minetest.register_ore`.
6627 * `minetest.registered_biomes`
6628     * Map of registered biome definitions, indexed by the `name` field.
6629     * If `name` is nil, the key is the object handle returned by
6630       `minetest.register_biome`.
6631 * `minetest.registered_decorations`
6632     * Map of registered decoration definitions, indexed by the `name` field.
6633     * If `name` is nil, the key is the object handle returned by
6634       `minetest.register_decoration`.
6635 * `minetest.registered_schematics`
6636     * Map of registered schematic definitions, indexed by the `name` field.
6637     * If `name` is nil, the key is the object handle returned by
6638       `minetest.register_schematic`.
6639 * `minetest.registered_chatcommands`
6640     * Map of registered chat command definitions, indexed by name
6641 * `minetest.registered_privileges`
6642     * Map of registered privilege definitions, indexed by name
6643     * Registered privileges can be modified directly in this table.
6644
6645 ### Registered callback tables
6646
6647 All callbacks registered with [Global callback registration functions] are added
6648 to corresponding `minetest.registered_*` tables.
6649
6650
6651
6652
6653 Class reference
6654 ===============
6655
6656 Sorted alphabetically.
6657
6658 `AreaStore`
6659 -----------
6660
6661 AreaStore is a data structure to calculate intersections of 3D cuboid volumes
6662 and points. The `data` field (string) may be used to store and retrieve any
6663 mod-relevant information to the specified area.
6664
6665 Despite its name, mods must take care of persisting AreaStore data. They may
6666 use the provided load and write functions for this.
6667
6668
6669 ### Methods
6670
6671 * `AreaStore(type_name)`
6672     * Returns a new AreaStore instance
6673     * `type_name`: optional, forces the internally used API.
6674         * Possible values: `"LibSpatial"` (default).
6675         * When other values are specified, or SpatialIndex is not available,
6676           the custom Minetest functions are used.
6677 * `get_area(id, include_corners, include_data)`
6678     * Returns the area information about the specified ID.
6679     * Returned values are either of these:
6680
6681             nil  -- Area not found
6682             true -- Without `include_corners` and `include_data`
6683             {
6684                 min = pos, max = pos -- `include_corners == true`
6685                 data = string        -- `include_data == true`
6686             }
6687
6688 * `get_areas_for_pos(pos, include_corners, include_data)`
6689     * Returns all areas as table, indexed by the area ID.
6690     * Table values: see `get_area`.
6691 * `get_areas_in_area(corner1, corner2, accept_overlap, include_corners, include_data)`
6692     * Returns all areas that contain all nodes inside the area specified by`
6693       `corner1 and `corner2` (inclusive).
6694     * `accept_overlap`: if `true`, areas are returned that have nodes in
6695       common (intersect) with the specified area.
6696     * Returns the same values as `get_areas_for_pos`.
6697 * `insert_area(corner1, corner2, data, [id])`: inserts an area into the store.
6698     * Returns the new area's ID, or nil if the insertion failed.
6699     * The (inclusive) positions `corner1` and `corner2` describe the area.
6700     * `data` is a string stored with the area.
6701     * `id` (optional): will be used as the internal area ID if it is a unique
6702       number between 0 and 2^32-2.
6703 * `reserve(count)`
6704     * Requires SpatialIndex, no-op function otherwise.
6705     * Reserves resources for `count` many contained areas to improve
6706       efficiency when working with many area entries. Additional areas can still
6707       be inserted afterwards at the usual complexity.
6708 * `remove_area(id)`: removes the area with the given id from the store, returns
6709   success.
6710 * `set_cache_params(params)`: sets params for the included prefiltering cache.
6711   Calling invalidates the cache, so that its elements have to be newly
6712   generated.
6713     * `params` is a table with the following fields:
6714
6715           enabled = boolean,   -- Whether to enable, default true
6716           block_radius = int,  -- The radius (in nodes) of the areas the cache
6717                                -- generates prefiltered lists for, minimum 16,
6718                                -- default 64
6719           limit = int,         -- The cache size, minimum 20, default 1000
6720 * `to_string()`: Experimental. Returns area store serialized as a (binary)
6721   string.
6722 * `to_file(filename)`: Experimental. Like `to_string()`, but writes the data to
6723   a file.
6724 * `from_string(str)`: Experimental. Deserializes string and loads it into the
6725   AreaStore.
6726   Returns success and, optionally, an error message.
6727 * `from_file(filename)`: Experimental. Like `from_string()`, but reads the data
6728   from a file.
6729
6730 `InvRef`
6731 --------
6732
6733 An `InvRef` is a reference to an inventory.
6734
6735 ### Methods
6736
6737 * `is_empty(listname)`: return `true` if list is empty
6738 * `get_size(listname)`: get size of a list
6739 * `set_size(listname, size)`: set size of a list
6740     * returns `false` on error (e.g. invalid `listname` or `size`)
6741 * `get_width(listname)`: get width of a list
6742 * `set_width(listname, width)`: set width of list; currently used for crafting
6743 * `get_stack(listname, i)`: get a copy of stack index `i` in list
6744 * `set_stack(listname, i, stack)`: copy `stack` to index `i` in list
6745 * `get_list(listname)`: return full list (list of `ItemStack`s)
6746 * `set_list(listname, list)`: set full list (size will not change)
6747 * `get_lists()`: returns table that maps listnames to inventory lists
6748 * `set_lists(lists)`: sets inventory lists (size will not change)
6749 * `add_item(listname, stack)`: add item somewhere in list, returns leftover
6750   `ItemStack`.
6751 * `room_for_item(listname, stack):` returns `true` if the stack of items
6752   can be fully added to the list
6753 * `contains_item(listname, stack, [match_meta])`: returns `true` if
6754   the stack of items can be fully taken from the list.
6755   If `match_meta` is false, only the items' names are compared
6756   (default: `false`).
6757 * `remove_item(listname, stack)`: take as many items as specified from the
6758   list, returns the items that were actually removed (as an `ItemStack`)
6759   -- note that any item metadata is ignored, so attempting to remove a specific
6760   unique item this way will likely remove the wrong one -- to do that use
6761   `set_stack` with an empty `ItemStack`.
6762 * `get_location()`: returns a location compatible to
6763   `minetest.get_inventory(location)`.
6764     * returns `{type="undefined"}` in case location is not known
6765
6766 ### Callbacks
6767
6768 Detached & nodemeta inventories provide the following callbacks for move actions:
6769
6770 #### Before
6771
6772 The `allow_*` callbacks return how many items can be moved.
6773
6774 * `allow_move`/`allow_metadata_inventory_move`: Moving items in the inventory
6775 * `allow_take`/`allow_metadata_inventory_take`: Taking items from the inventory
6776 * `allow_put`/`allow_metadata_inventory_put`: Putting items to the inventory
6777
6778 #### After
6779
6780 The `on_*` callbacks are called after the items have been placed in the inventories.
6781
6782 * `on_move`/`on_metadata_inventory_move`: Moving items in the inventory
6783 * `on_take`/`on_metadata_inventory_take`: Taking items from the inventory
6784 * `on_put`/`on_metadata_inventory_put`: Putting items to the inventory
6785
6786 #### Swapping
6787
6788 When a player tries to put an item to a place where another item is, the items are *swapped*.
6789 This means that all callbacks will be called twice (once for each action).
6790
6791 `ItemStack`
6792 -----------
6793
6794 An `ItemStack` is a stack of items.
6795
6796 It can be created via `ItemStack(x)`, where x is an `ItemStack`,
6797 an itemstring, a table or `nil`.
6798
6799 ### Methods
6800
6801 * `is_empty()`: returns `true` if stack is empty.
6802 * `get_name()`: returns item name (e.g. `"default:stone"`).
6803 * `set_name(item_name)`: returns a boolean indicating whether the item was
6804   cleared.
6805 * `get_count()`: Returns number of items on the stack.
6806 * `set_count(count)`: returns a boolean indicating whether the item was cleared
6807     * `count`: number, unsigned 16 bit integer
6808 * `get_wear()`: returns tool wear (`0`-`65535`), `0` for non-tools.
6809 * `set_wear(wear)`: returns boolean indicating whether item was cleared
6810     * `wear`: number, unsigned 16 bit integer
6811 * `get_meta()`: returns ItemStackMetaRef. See section for more details
6812 * `get_metadata()`: (DEPRECATED) Returns metadata (a string attached to an item
6813   stack).
6814 * `set_metadata(metadata)`: (DEPRECATED) Returns true.
6815 * `get_description()`: returns the description shown in inventory list tooltips.
6816     * The engine uses this when showing item descriptions in tooltips.
6817     * Fields for finding the description, in order:
6818         * `description` in item metadata (See [Item Metadata].)
6819         * `description` in item definition
6820         * item name
6821 * `get_short_description()`: returns the short description or nil.
6822     * Unlike the description, this does not include new lines.
6823     * Fields for finding the short description, in order:
6824         * `short_description` in item metadata (See [Item Metadata].)
6825         * `short_description` in item definition
6826         * first line of the description (From item meta or def, see `get_description()`.)
6827         * Returns nil if none of the above are set
6828 * `clear()`: removes all items from the stack, making it empty.
6829 * `replace(item)`: replace the contents of this stack.
6830     * `item` can also be an itemstring or table.
6831 * `to_string()`: returns the stack in itemstring form.
6832 * `to_table()`: returns the stack in Lua table form.
6833 * `get_stack_max()`: returns the maximum size of the stack (depends on the
6834   item).
6835 * `get_free_space()`: returns `get_stack_max() - get_count()`.
6836 * `is_known()`: returns `true` if the item name refers to a defined item type.
6837 * `get_definition()`: returns the item definition table.
6838 * `get_tool_capabilities()`: returns the digging properties of the item,
6839   or those of the hand if none are defined for this item type
6840 * `add_wear(amount)`
6841     * Increases wear by `amount` if the item is a tool, otherwise does nothing
6842     * Valid `amount` range is [0,65536]
6843     * `amount`: number, integer
6844 * `add_wear_by_uses(max_uses)`
6845     * Increases wear in such a way that, if only this function is called,
6846       the item breaks after `max_uses` times
6847     * Valid `max_uses` range is [0,65536]
6848     * Does nothing if item is not a tool or if `max_uses` is 0
6849 * `add_item(item)`: returns leftover `ItemStack`
6850     * Put some item or stack onto this stack
6851 * `item_fits(item)`: returns `true` if item or stack can be fully added to
6852   this one.
6853 * `take_item(n)`: returns taken `ItemStack`
6854     * Take (and remove) up to `n` items from this stack
6855     * `n`: number, default: `1`
6856 * `peek_item(n)`: returns taken `ItemStack`
6857     * Copy (don't remove) up to `n` items from this stack
6858     * `n`: number, default: `1`
6859 * `equals(other)`:
6860     * returns `true` if this stack is identical to `other`.
6861     * Note: `stack1:to_string() == stack2:to_string()` is not reliable,
6862       as stack metadata can be serialized in arbitrary order.
6863     * Note: if `other` is an itemstring or table representation of an
6864       ItemStack, this will always return false, even if it is
6865       "equivalent".
6866
6867 ### Operators
6868
6869 * `stack1 == stack2`:
6870     * Returns whether `stack1` and `stack2` are identical.
6871     * Note: `stack1:to_string() == stack2:to_string()` is not reliable,
6872       as stack metadata can be serialized in arbitrary order.
6873     * Note: if `stack2` is an itemstring or table representation of an
6874       ItemStack, this will always return false, even if it is
6875       "equivalent".
6876
6877 `ItemStackMetaRef`
6878 ------------------
6879
6880 ItemStack metadata: reference extra data and functionality stored in a stack.
6881 Can be obtained via `item:get_meta()`.
6882
6883 ### Methods
6884
6885 * All methods in MetaDataRef
6886 * `set_tool_capabilities([tool_capabilities])`
6887     * Overrides the item's tool capabilities
6888     * A nil value will clear the override data and restore the original
6889       behavior.
6890
6891 `MetaDataRef`
6892 -------------
6893
6894 Base class used by [`StorageRef`], [`NodeMetaRef`], [`ItemStackMetaRef`],
6895 and [`PlayerMetaRef`].
6896
6897 Note: If a metadata value is in the format `${k}`, an attempt to get the value
6898 will return the value associated with key `k`. There is a low recursion limit.
6899 This behavior is **deprecated** and will be removed in a future version. Usage
6900 of the `${k}` syntax in formspecs is not deprecated.
6901
6902 ### Methods
6903
6904 * `contains(key)`: Returns true if key present, otherwise false.
6905     * Returns `nil` when the MetaData is inexistent.
6906 * `get(key)`: Returns `nil` if key not present, else the stored string.
6907 * `set_string(key, value)`: Value of `""` will delete the key.
6908 * `get_string(key)`: Returns `""` if key not present.
6909 * `set_int(key, value)`
6910 * `get_int(key)`: Returns `0` if key not present.
6911 * `set_float(key, value)`
6912 * `get_float(key)`: Returns `0` if key not present.
6913 * `get_keys()`: returns a list of all keys in the metadata.
6914 * `to_table()`: returns `nil` or a table with keys:
6915     * `fields`: key-value storage
6916     * `inventory`: `{list1 = {}, ...}}` (NodeMetaRef only)
6917 * `from_table(nil or {})`
6918     * Any non-table value will clear the metadata
6919     * See [Node Metadata] for an example
6920     * returns `true` on success
6921 * `equals(other)`
6922     * returns `true` if this metadata has the same key-value pairs as `other`
6923
6924 `ModChannel`
6925 ------------
6926
6927 An interface to use mod channels on client and server
6928
6929 ### Methods
6930
6931 * `leave()`: leave the mod channel.
6932     * Server leaves channel `channel_name`.
6933     * No more incoming or outgoing messages can be sent to this channel from
6934       server mods.
6935     * This invalidate all future object usage.
6936     * Ensure you set mod_channel to nil after that to free Lua resources.
6937 * `is_writeable()`: returns true if channel is writeable and mod can send over
6938   it.
6939 * `send_all(message)`: Send `message` though the mod channel.
6940     * If mod channel is not writeable or invalid, message will be dropped.
6941     * Message size is limited to 65535 characters by protocol.
6942
6943 `NodeMetaRef`
6944 -------------
6945
6946 Node metadata: reference extra data and functionality stored in a node.
6947 Can be obtained via `minetest.get_meta(pos)`.
6948
6949 ### Methods
6950
6951 * All methods in MetaDataRef
6952 * `get_inventory()`: returns `InvRef`
6953 * `mark_as_private(name or {name1, name2, ...})`: Mark specific vars as private
6954   This will prevent them from being sent to the client. Note that the "private"
6955   status will only be remembered if an associated key-value pair exists,
6956   meaning it's best to call this when initializing all other meta (e.g.
6957   `on_construct`).
6958
6959 `NodeTimerRef`
6960 --------------
6961
6962 Node Timers: a high resolution persistent per-node timer.
6963 Can be gotten via `minetest.get_node_timer(pos)`.
6964
6965 ### Methods
6966
6967 * `set(timeout,elapsed)`
6968     * set a timer's state
6969     * `timeout` is in seconds, and supports fractional values (0.1 etc)
6970     * `elapsed` is in seconds, and supports fractional values (0.1 etc)
6971     * will trigger the node's `on_timer` function after `(timeout - elapsed)`
6972       seconds.
6973 * `start(timeout)`
6974     * start a timer
6975     * equivalent to `set(timeout,0)`
6976 * `stop()`
6977     * stops the timer
6978 * `get_timeout()`: returns current timeout in seconds
6979     * if `timeout` equals `0`, timer is inactive
6980 * `get_elapsed()`: returns current elapsed time in seconds
6981     * the node's `on_timer` function will be called after `(timeout - elapsed)`
6982       seconds.
6983 * `is_started()`: returns boolean state of timer
6984     * returns `true` if timer is started, otherwise `false`
6985
6986 `ObjectRef`
6987 -----------
6988
6989 Moving things in the game are generally these.
6990 This is basically a reference to a C++ `ServerActiveObject`.
6991
6992 ### Advice on handling `ObjectRefs`
6993
6994 When you receive an `ObjectRef` as a callback argument or from another API
6995 function, it is possible to store the reference somewhere and keep it around.
6996 It will keep functioning until the object is unloaded or removed.
6997
6998 However, doing this is **NOT** recommended as there is (intentionally) no method
6999 to test if a previously acquired `ObjectRef` is still valid.
7000 Instead, `ObjectRefs` should be "let go" of as soon as control is returned from
7001 Lua back to the engine.
7002 Doing so is much less error-prone and you will never need to wonder if the
7003 object you are working with still exists.
7004
7005 ### Attachments
7006
7007 It is possible to attach objects to other objects (`set_attach` method).
7008
7009 When an object is attached, it is positioned relative to the parent's position
7010 and rotation. `get_pos` and `get_rotation` will always return the parent's
7011 values and changes via their setter counterparts are ignored.
7012
7013 To change position or rotation call `set_attach` again with the new values.
7014
7015 **Note**: Just like model dimensions, the relative position in `set_attach`
7016 must be multiplied by 10 compared to world positions.
7017
7018 It is also possible to attach to a bone of the parent object. In that case the
7019 child will follow movement and rotation of that bone.
7020
7021 ### Methods
7022
7023 * `get_pos()`: returns `{x=num, y=num, z=num}`
7024 * `set_pos(pos)`: `pos`=`{x=num, y=num, z=num}`
7025 * `get_velocity()`: returns the velocity, a vector.
7026 * `add_velocity(vel)`
7027     * `vel` is a vector, e.g. `{x=0.0, y=2.3, z=1.0}`
7028     * In comparison to using get_velocity, adding the velocity and then using
7029       set_velocity, add_velocity is supposed to avoid synchronization problems.
7030       Additionally, players also do not support set_velocity.
7031     * If a player:
7032         * Does not apply during free_move.
7033         * Note that since the player speed is normalized at each move step,
7034           increasing e.g. Y velocity beyond what would usually be achieved
7035           (see: physics overrides) will cause existing X/Z velocity to be reduced.
7036         * Example: `add_velocity({x=0, y=6.5, z=0})` is equivalent to
7037           pressing the jump key (assuming default settings)
7038 * `move_to(pos, continuous=false)`
7039     * Does an interpolated move for Lua entities for visually smooth transitions.
7040     * If `continuous` is true, the Lua entity will not be moved to the current
7041       position before starting the interpolated move.
7042     * For players this does the same as `set_pos`,`continuous` is ignored.
7043 * `punch(puncher, time_from_last_punch, tool_capabilities, direction)`
7044     * `puncher` = another `ObjectRef`,
7045     * `time_from_last_punch` = time since last punch action of the puncher
7046     * `direction`: can be `nil`
7047 * `right_click(clicker)`; `clicker` is another `ObjectRef`
7048 * `get_hp()`: returns number of health points
7049 * `set_hp(hp, reason)`: set number of health points
7050     * See reason in register_on_player_hpchange
7051     * Is limited to the range of 0 ... 65535 (2^16 - 1)
7052     * For players: HP are also limited by `hp_max` specified in object properties
7053 * `get_inventory()`: returns an `InvRef` for players, otherwise returns `nil`
7054 * `get_wield_list()`: returns the name of the inventory list the wielded item
7055    is in.
7056 * `get_wield_index()`: returns the index of the wielded item
7057 * `get_wielded_item()`: returns an `ItemStack`
7058 * `set_wielded_item(item)`: replaces the wielded item, returns `true` if
7059   successful.
7060 * `set_armor_groups({group1=rating, group2=rating, ...})`
7061 * `get_armor_groups()`: returns a table with the armor group ratings
7062 * `set_animation(frame_range, frame_speed, frame_blend, frame_loop)`
7063     * `frame_range`: table {x=num, y=num}, default: `{x=1, y=1}`
7064     * `frame_speed`: number, default: `15.0`
7065     * `frame_blend`: number, default: `0.0`
7066     * `frame_loop`: boolean, default: `true`
7067 * `get_animation()`: returns `range`, `frame_speed`, `frame_blend` and
7068   `frame_loop`.
7069 * `set_animation_frame_speed(frame_speed)`
7070     * `frame_speed`: number, default: `15.0`
7071 * `set_attach(parent[, bone, position, rotation, forced_visible])`
7072     * `parent`: `ObjectRef` to attach to
7073     * `bone`: default `""` (the root bone)
7074     * `position`: relative position, default `{x=0, y=0, z=0}`
7075     * `rotation`: relative rotation in degrees, default `{x=0, y=0, z=0}`
7076     * `forced_visible`: Boolean to control whether the attached entity
7077        should appear in first person, default `false`.
7078     * Please also read the [Attachments] section above.
7079     * This command may fail silently (do nothing) when it would result
7080       in circular attachments.
7081 * `get_attach()`: returns parent, bone, position, rotation, forced_visible,
7082     or nil if it isn't attached.
7083 * `get_children()`: returns a list of ObjectRefs that are attached to the
7084     object.
7085 * `set_detach()`
7086 * `set_bone_position([bone, position, rotation])`
7087     * `bone`: string. Default is `""`, the root bone
7088     * `position`: `{x=num, y=num, z=num}`, relative, `default {x=0, y=0, z=0}`
7089     * `rotation`: `{x=num, y=num, z=num}`, default `{x=0, y=0, z=0}`
7090 * `get_bone_position(bone)`: returns position and rotation of the bone
7091 * `set_properties(object property table)`
7092 * `get_properties()`: returns object property table
7093 * `is_player()`: returns true for players, false otherwise
7094 * `get_nametag_attributes()`
7095     * returns a table with the attributes of the nametag of an object
7096     * {
7097         text = "",
7098         color = {a=0..255, r=0..255, g=0..255, b=0..255},
7099         bgcolor = {a=0..255, r=0..255, g=0..255, b=0..255},
7100       }
7101 * `set_nametag_attributes(attributes)`
7102     * sets the attributes of the nametag of an object
7103     * `attributes`:
7104       {
7105         text = "My Nametag",
7106         color = ColorSpec,
7107         -- ^ Text color
7108         bgcolor = ColorSpec or false,
7109         -- ^ Sets background color of nametag
7110         -- `false` will cause the background to be set automatically based on user settings
7111         -- Default: false
7112       }
7113
7114 #### Lua entity only (no-op for other objects)
7115
7116 * `remove()`: remove object
7117     * The object is removed after returning from Lua. However the `ObjectRef`
7118       itself instantly becomes unusable with all further method calls having
7119       no effect and returning `nil`.
7120 * `set_velocity(vel)`
7121     * `vel` is a vector, e.g. `{x=0.0, y=2.3, z=1.0}`
7122 * `set_acceleration(acc)`
7123     * `acc` is a vector
7124 * `get_acceleration()`: returns the acceleration, a vector
7125 * `set_rotation(rot)`
7126     * `rot` is a vector (radians). X is pitch (elevation), Y is yaw (heading)
7127       and Z is roll (bank).
7128     * Does not reset rotation incurred through `automatic_rotate`.
7129       Remove & readd your objects to force a certain rotation.
7130 * `get_rotation()`: returns the rotation, a vector (radians)
7131 * `set_yaw(yaw)`: sets the yaw in radians (heading).
7132 * `get_yaw()`: returns number in radians
7133 * `set_texture_mod(mod)`
7134     * Set a texture modifier to the base texture, for sprites and meshes.
7135     * When calling `set_texture_mod` again, the previous one is discarded.
7136     * `mod` the texture modifier. See [Texture modifiers].
7137 * `get_texture_mod()` returns current texture modifier
7138 * `set_sprite(start_frame, num_frames, framelength, select_x_by_camera)`
7139     * Specifies and starts a sprite animation
7140     * Animations iterate along the frame `y` position.
7141     * `start_frame`: {x=column number, y=row number}, the coordinate of the
7142       first frame, default: `{x=0, y=0}`
7143     * `num_frames`: Total frames in the texture, default: `1`
7144     * `framelength`: Time per animated frame in seconds, default: `0.2`
7145     * `select_x_by_camera`: Only for visual = `sprite`. Changes the frame `x`
7146       position according to the view direction. default: `false`.
7147         * First column:  subject facing the camera
7148         * Second column: subject looking to the left
7149         * Third column:  subject backing the camera
7150         * Fourth column: subject looking to the right
7151         * Fifth column:  subject viewed from above
7152         * Sixth column:  subject viewed from below
7153 * `get_entity_name()` (**Deprecated**: Will be removed in a future version, use the field `self.name` instead)
7154 * `get_luaentity()`
7155
7156 #### Player only (no-op for other objects)
7157
7158 * `get_player_name()`: returns `""` if is not a player
7159 * `get_player_velocity()`: **DEPRECATED**, use get_velocity() instead.
7160   table {x, y, z} representing the player's instantaneous velocity in nodes/s
7161 * `add_player_velocity(vel)`: **DEPRECATED**, use add_velocity(vel) instead.
7162 * `get_look_dir()`: get camera direction as a unit vector
7163 * `get_look_vertical()`: pitch in radians
7164     * Angle ranges between -pi/2 and pi/2, which are straight up and down
7165       respectively.
7166 * `get_look_horizontal()`: yaw in radians
7167     * Angle is counter-clockwise from the +z direction.
7168 * `set_look_vertical(radians)`: sets look pitch
7169     * radians: Angle from looking forward, where positive is downwards.
7170 * `set_look_horizontal(radians)`: sets look yaw
7171     * radians: Angle from the +z direction, where positive is counter-clockwise.
7172 * `get_look_pitch()`: pitch in radians - Deprecated as broken. Use
7173   `get_look_vertical`.
7174     * Angle ranges between -pi/2 and pi/2, which are straight down and up
7175       respectively.
7176 * `get_look_yaw()`: yaw in radians - Deprecated as broken. Use
7177   `get_look_horizontal`.
7178     * Angle is counter-clockwise from the +x direction.
7179 * `set_look_pitch(radians)`: sets look pitch - Deprecated. Use
7180   `set_look_vertical`.
7181 * `set_look_yaw(radians)`: sets look yaw - Deprecated. Use
7182   `set_look_horizontal`.
7183 * `get_breath()`: returns player's breath
7184 * `set_breath(value)`: sets player's breath
7185     * values:
7186         * `0`: player is drowning
7187         * max: bubbles bar is not shown
7188         * See [Object properties] for more information
7189     * Is limited to range 0 ... 65535 (2^16 - 1)
7190 * `set_fov(fov, is_multiplier, transition_time)`: Sets player's FOV
7191     * `fov`: FOV value.
7192     * `is_multiplier`: Set to `true` if the FOV value is a multiplier.
7193       Defaults to `false`.
7194     * `transition_time`: If defined, enables smooth FOV transition.
7195       Interpreted as the time (in seconds) to reach target FOV.
7196       If set to 0, FOV change is instantaneous. Defaults to 0.
7197     * Set `fov` to 0 to clear FOV override.
7198 * `get_fov()`: Returns the following:
7199     * Server-sent FOV value. Returns 0 if an FOV override doesn't exist.
7200     * Boolean indicating whether the FOV value is a multiplier.
7201     * Time (in seconds) taken for the FOV transition. Set by `set_fov`.
7202 * `set_attribute(attribute, value)`:  DEPRECATED, use get_meta() instead
7203     * Sets an extra attribute with value on player.
7204     * `value` must be a string, or a number which will be converted to a
7205       string.
7206     * If `value` is `nil`, remove attribute from player.
7207 * `get_attribute(attribute)`:  DEPRECATED, use get_meta() instead
7208     * Returns value (a string) for extra attribute.
7209     * Returns `nil` if no attribute found.
7210 * `get_meta()`: Returns a PlayerMetaRef.
7211 * `set_inventory_formspec(formspec)`
7212     * Redefine player's inventory form
7213     * Should usually be called in `on_joinplayer`
7214     * If `formspec` is `""`, the player's inventory is disabled.
7215 * `get_inventory_formspec()`: returns a formspec string
7216 * `set_formspec_prepend(formspec)`:
7217     * the formspec string will be added to every formspec shown to the user,
7218       except for those with a no_prepend[] tag.
7219     * This should be used to set style elements such as background[] and
7220       bgcolor[], any non-style elements (eg: label) may result in weird behavior.
7221     * Only affects formspecs shown after this is called.
7222 * `get_formspec_prepend(formspec)`: returns a formspec string.
7223 * `get_player_control()`: returns table with player pressed keys
7224     * The table consists of fields with the following boolean values
7225       representing the pressed keys: `up`, `down`, `left`, `right`, `jump`,
7226       `aux1`, `sneak`, `dig`, `place`, `LMB`, `RMB`, and `zoom`.
7227     * The fields `LMB` and `RMB` are equal to `dig` and `place` respectively,
7228       and exist only to preserve backwards compatibility.
7229     * Returns an empty table `{}` if the object is not a player.
7230 * `get_player_control_bits()`: returns integer with bit packed player pressed
7231   keys.
7232     * Bits:
7233         * 0 - up
7234         * 1 - down
7235         * 2 - left
7236         * 3 - right
7237         * 4 - jump
7238         * 5 - aux1
7239         * 6 - sneak
7240         * 7 - dig
7241         * 8 - place
7242         * 9 - zoom
7243     * Returns `0` (no bits set) if the object is not a player.
7244 * `set_physics_override(override_table)`
7245     * `override_table` is a table with the following fields:
7246         * `speed`: multiplier to default walking speed value (default: `1`)
7247         * `jump`: multiplier to default jump value (default: `1`)
7248         * `gravity`: multiplier to default gravity value (default: `1`)
7249         * `sneak`: whether player can sneak (default: `true`)
7250         * `sneak_glitch`: whether player can use the new move code replications
7251           of the old sneak side-effects: sneak ladders and 2 node sneak jump
7252           (default: `false`)
7253         * `new_move`: use new move/sneak code. When `false` the exact old code
7254           is used for the specific old sneak behavior (default: `true`)
7255 * `get_physics_override()`: returns the table given to `set_physics_override`
7256 * `hud_add(hud definition)`: add a HUD element described by HUD def, returns ID
7257    number on success
7258 * `hud_remove(id)`: remove the HUD element of the specified id
7259 * `hud_change(id, stat, value)`: change a value of a previously added HUD
7260   element.
7261     * `stat` supports the same keys as in the hud definition table except for
7262       `"hud_elem_type"`.
7263 * `hud_get(id)`: gets the HUD element definition structure of the specified ID
7264 * `hud_set_flags(flags)`: sets specified HUD flags of player.
7265     * `flags`: A table with the following fields set to boolean values
7266         * `hotbar`
7267         * `healthbar`
7268         * `crosshair`
7269         * `wielditem`
7270         * `breathbar`
7271         * `minimap`: Modifies the client's permission to view the minimap.
7272           The client may locally elect to not view the minimap.
7273         * `minimap_radar`: is only usable when `minimap` is true
7274         * `basic_debug`: Allow showing basic debug info that might give a gameplay advantage.
7275           This includes map seed, player position, look direction, the pointed node and block bounds.
7276           Does not affect players with the `debug` privilege.
7277     * If a flag equals `nil`, the flag is not modified
7278 * `hud_get_flags()`: returns a table of player HUD flags with boolean values.
7279     * See `hud_set_flags` for a list of flags that can be toggled.
7280 * `hud_set_hotbar_itemcount(count)`: sets number of items in builtin hotbar
7281     * `count`: number of items, must be between `1` and `32`
7282 * `hud_get_hotbar_itemcount`: returns number of visible items
7283 * `hud_set_hotbar_image(texturename)`
7284     * sets background image for hotbar
7285 * `hud_get_hotbar_image`: returns texturename
7286 * `hud_set_hotbar_selected_image(texturename)`
7287     * sets image for selected item of hotbar
7288 * `hud_get_hotbar_selected_image`: returns texturename
7289 * `set_minimap_modes({mode, mode, ...}, selected_mode)`
7290     * Overrides the available minimap modes (and toggle order), and changes the
7291     selected mode.
7292     * `mode` is a table consisting of up to four fields:
7293         * `type`: Available type:
7294             * `off`: Minimap off
7295             * `surface`: Minimap in surface mode
7296             * `radar`: Minimap in radar mode
7297             * `texture`: Texture to be displayed instead of terrain map
7298               (texture is centered around 0,0 and can be scaled).
7299               Texture size is limited to 512 x 512 pixel.
7300         * `label`: Optional label to display on minimap mode toggle
7301           The translation must be handled within the mod.
7302         * `size`: Sidelength or diameter, in number of nodes, of the terrain
7303           displayed in minimap
7304         * `texture`: Only for texture type, name of the texture to display
7305         * `scale`: Only for texture type, scale of the texture map in nodes per
7306           pixel (for example a `scale` of 2 means each pixel represents a 2x2
7307           nodes square)
7308     * `selected_mode` is the mode index to be selected after modes have been changed
7309     (0 is the first mode).
7310 * `set_sky(sky_parameters)`
7311     * The presence of the function `set_sun`, `set_moon` or `set_stars` indicates
7312       whether `set_sky` accepts this format. Check the legacy format otherwise.
7313     * Passing no arguments resets the sky to its default values.
7314     * `sky_parameters` is a table with the following optional fields:
7315         * `base_color`: ColorSpec, changes fog in "skybox" and "plain".
7316           (default: `#ffffff`)
7317         * `type`: Available types:
7318             * `"regular"`: Uses 0 textures, `base_color` ignored
7319             * `"skybox"`: Uses 6 textures, `base_color` used as fog.
7320             * `"plain"`: Uses 0 textures, `base_color` used as both fog and sky.
7321             (default: `"regular"`)
7322         * `textures`: A table containing up to six textures in the following
7323             order: Y+ (top), Y- (bottom), X- (west), X+ (east), Z+ (north), Z- (south).
7324         * `clouds`: Boolean for whether clouds appear. (default: `true`)
7325         * `sky_color`: A table used in `"regular"` type only, containing the
7326           following values (alpha is ignored):
7327             * `day_sky`: ColorSpec, for the top half of the sky during the day.
7328               (default: `#61b5f5`)
7329             * `day_horizon`: ColorSpec, for the bottom half of the sky during the day.
7330               (default: `#90d3f6`)
7331             * `dawn_sky`: ColorSpec, for the top half of the sky during dawn/sunset.
7332               (default: `#b4bafa`)
7333               The resulting sky color will be a darkened version of the ColorSpec.
7334               Warning: The darkening of the ColorSpec is subject to change.
7335             * `dawn_horizon`: ColorSpec, for the bottom half of the sky during dawn/sunset.
7336               (default: `#bac1f0`)
7337               The resulting sky color will be a darkened version of the ColorSpec.
7338               Warning: The darkening of the ColorSpec is subject to change.
7339             * `night_sky`: ColorSpec, for the top half of the sky during the night.
7340               (default: `#006bff`)
7341               The resulting sky color will be a dark version of the ColorSpec.
7342               Warning: The darkening of the ColorSpec is subject to change.
7343             * `night_horizon`: ColorSpec, for the bottom half of the sky during the night.
7344               (default: `#4090ff`)
7345               The resulting sky color will be a dark version of the ColorSpec.
7346               Warning: The darkening of the ColorSpec is subject to change.
7347             * `indoors`: ColorSpec, for when you're either indoors or underground.
7348               (default: `#646464`)
7349             * `fog_sun_tint`: ColorSpec, changes the fog tinting for the sun
7350               at sunrise and sunset. (default: `#f47d1d`)
7351             * `fog_moon_tint`: ColorSpec, changes the fog tinting for the moon
7352               at sunrise and sunset. (default: `#7f99cc`)
7353             * `fog_tint_type`: string, changes which mode the directional fog
7354                 abides by, `"custom"` uses `sun_tint` and `moon_tint`, while
7355                 `"default"` uses the classic Minetest sun and moon tinting.
7356                 Will use tonemaps, if set to `"default"`. (default: `"default"`)
7357 * `set_sky(base_color, type, {texture names}, clouds)`
7358     * Deprecated. Use `set_sky(sky_parameters)`
7359     * `base_color`: ColorSpec, defaults to white
7360     * `type`: Available types:
7361         * `"regular"`: Uses 0 textures, `bgcolor` ignored
7362         * `"skybox"`: Uses 6 textures, `bgcolor` used
7363         * `"plain"`: Uses 0 textures, `bgcolor` used
7364     * `clouds`: Boolean for whether clouds appear in front of `"skybox"` or
7365       `"plain"` custom skyboxes (default: `true`)
7366 * `get_sky(as_table)`:
7367     * `as_table`: boolean that determines whether the deprecated version of this
7368     function is being used.
7369         * `true` returns a table containing sky parameters as defined in `set_sky(sky_parameters)`.
7370         * Deprecated: `false` or `nil` returns base_color, type, table of textures,
7371         clouds.
7372 * `get_sky_color()`:
7373     * Deprecated: Use `get_sky(as_table)` instead.
7374     * returns a table with the `sky_color` parameters as in `set_sky`.
7375 * `set_sun(sun_parameters)`:
7376     * Passing no arguments resets the sun to its default values.
7377     * `sun_parameters` is a table with the following optional fields:
7378         * `visible`: Boolean for whether the sun is visible.
7379             (default: `true`)
7380         * `texture`: A regular texture for the sun. Setting to `""`
7381             will re-enable the mesh sun. (default: "sun.png", if it exists)
7382             The texture appears non-rotated at sunrise and rotated 180 degrees
7383             (upside down) at sunset.
7384         * `tonemap`: A 512x1 texture containing the tonemap for the sun
7385             (default: `"sun_tonemap.png"`)
7386         * `sunrise`: A regular texture for the sunrise texture.
7387             (default: `"sunrisebg.png"`)
7388         * `sunrise_visible`: Boolean for whether the sunrise texture is visible.
7389             (default: `true`)
7390         * `scale`: Float controlling the overall size of the sun. (default: `1`)
7391             Note: For legacy reasons, the sun is bigger than the moon by a factor
7392             of about `1.57` for equal `scale` values.
7393 * `get_sun()`: returns a table with the current sun parameters as in
7394     `set_sun`.
7395 * `set_moon(moon_parameters)`:
7396     * Passing no arguments resets the moon to its default values.
7397     * `moon_parameters` is a table with the following optional fields:
7398         * `visible`: Boolean for whether the moon is visible.
7399             (default: `true`)
7400         * `texture`: A regular texture for the moon. Setting to `""`
7401             will re-enable the mesh moon. (default: `"moon.png"`, if it exists)
7402             The texture appears non-rotated at sunrise / moonset and rotated 180
7403             degrees (upside down) at sunset / moonrise.
7404             Note: Relative to the sun, the moon texture is hence rotated by 180°.
7405             You can use the `^[transformR180` texture modifier to achieve the same orientation.
7406         * `tonemap`: A 512x1 texture containing the tonemap for the moon
7407             (default: `"moon_tonemap.png"`)
7408         * `scale`: Float controlling the overall size of the moon (default: `1`)
7409             Note: For legacy reasons, the sun is bigger than the moon by a factor
7410             of about `1.57` for equal `scale` values.
7411 * `get_moon()`: returns a table with the current moon parameters as in
7412     `set_moon`.
7413 * `set_stars(star_parameters)`:
7414     * Passing no arguments resets stars to their default values.
7415     * `star_parameters` is a table with the following optional fields:
7416         * `visible`: Boolean for whether the stars are visible.
7417             (default: `true`)
7418         * `day_opacity`: Float for maximum opacity of stars at day.
7419             No effect if `visible` is false.
7420             (default: 0.0; maximum: 1.0; minimum: 0.0)
7421         * `count`: Integer number to set the number of stars in
7422             the skybox. Only applies to `"skybox"` and `"regular"` sky types.
7423             (default: `1000`)
7424         * `star_color`: ColorSpec, sets the colors of the stars,
7425             alpha channel is used to set overall star brightness.
7426             (default: `#ebebff69`)
7427         * `scale`: Float controlling the overall size of the stars (default: `1`)
7428 * `get_stars()`: returns a table with the current stars parameters as in
7429     `set_stars`.
7430 * `set_clouds(cloud_parameters)`: set cloud parameters
7431     * Passing no arguments resets clouds to their default values.
7432     * `cloud_parameters` is a table with the following optional fields:
7433         * `density`: from `0` (no clouds) to `1` (full clouds) (default `0.4`)
7434         * `color`: basic cloud color with alpha channel, ColorSpec
7435           (default `#fff0f0e5`).
7436         * `ambient`: cloud color lower bound, use for a "glow at night" effect.
7437           ColorSpec (alpha ignored, default `#000000`)
7438         * `height`: cloud height, i.e. y of cloud base (default per conf,
7439           usually `120`)
7440         * `thickness`: cloud thickness in nodes (default `16`)
7441         * `speed`: 2D cloud speed + direction in nodes per second
7442           (default `{x=0, z=-2}`).
7443 * `get_clouds()`: returns a table with the current cloud parameters as in
7444   `set_clouds`.
7445 * `override_day_night_ratio(ratio or nil)`
7446     * `0`...`1`: Overrides day-night ratio, controlling sunlight to a specific
7447       amount.
7448     * `nil`: Disables override, defaulting to sunlight based on day-night cycle
7449 * `get_day_night_ratio()`: returns the ratio or nil if it isn't overridden
7450 * `set_local_animation(idle, walk, dig, walk_while_dig, frame_speed)`:
7451   set animation for player model in third person view.
7452     * Every animation equals to a `{x=starting frame, y=ending frame}` table.
7453     * `frame_speed` sets the animations frame speed. Default is 30.
7454 * `get_local_animation()`: returns idle, walk, dig, walk_while_dig tables and
7455   `frame_speed`.
7456 * `set_eye_offset([firstperson, thirdperson])`: defines offset vectors for
7457   camera per player. An argument defaults to `{x=0, y=0, z=0}` if unspecified.
7458     * in first person view
7459     * in third person view (max. values `{x=-10/10,y=-10,15,z=-5/5}`)
7460 * `get_eye_offset()`: returns first and third person offsets.
7461 * `send_mapblock(blockpos)`:
7462     * Sends an already loaded mapblock to the player.
7463     * Returns `false` if nothing was sent (note that this can also mean that
7464       the client already has the block)
7465     * Resource intensive - use sparsely
7466 * `set_lighting(light_definition)`: sets lighting for the player
7467     * `light_definition` is a table with the following optional fields:
7468       * `saturation` sets the saturation (vividness).
7469           values > 1 increase the saturation
7470           values in [0,1) decrease the saturation
7471             * This value has no effect on clients who have the "Tone Mapping" shader disabled.
7472       * `shadows` is a table that controls ambient shadows
7473         * `intensity` sets the intensity of the shadows from 0 (no shadows, default) to 1 (blackness)
7474             * This value has no effect on clients who have the "Dynamic Shadows" shader disabled.
7475       * `exposure` is a table that controls automatic exposure.
7476         The basic exposure factor equation is `e = 2^exposure_correction / clamp(luminance, 2^luminance_min, 2^luminance_max)`
7477         * `luminance_min` set the lower luminance boundary to use in the calculation
7478         * `luminance_max` set the upper luminance boundary to use in the calculation
7479         * `exposure_correction` correct observed exposure by the given EV value
7480         * `speed_dark_bright` set the speed of adapting to bright light
7481         * `speed_bright_dark` set the speed of adapting to dark scene
7482         * `center_weight_power` set the power factor for center-weighted luminance measurement
7483
7484 * `get_lighting()`: returns the current state of lighting for the player.
7485     * Result is a table with the same fields as `light_definition` in `set_lighting`.
7486 * `respawn()`: Respawns the player using the same mechanism as the death screen,
7487   including calling on_respawnplayer callbacks.
7488
7489 `PcgRandom`
7490 -----------
7491
7492 A 32-bit pseudorandom number generator.
7493 Uses PCG32, an algorithm of the permuted congruential generator family,
7494 offering very strong randomness.
7495
7496 It can be created via `PcgRandom(seed)` or `PcgRandom(seed, sequence)`.
7497
7498 ### Methods
7499
7500 * `next()`: return next integer random number [`-2147483648`...`2147483647`]
7501 * `next(min, max)`: return next integer random number [`min`...`max`]
7502 * `rand_normal_dist(min, max, num_trials=6)`: return normally distributed
7503   random number [`min`...`max`].
7504     * This is only a rough approximation of a normal distribution with:
7505     * `mean = (max - min) / 2`, and
7506     * `variance = (((max - min + 1) ^ 2) - 1) / (12 * num_trials)`
7507     * Increasing `num_trials` improves accuracy of the approximation
7508
7509 `PerlinNoise`
7510 -------------
7511
7512 A perlin noise generator.
7513 It can be created via `PerlinNoise()` or `minetest.get_perlin()`.
7514 For `minetest.get_perlin()`, the actual seed used is the noiseparams seed
7515 plus the world seed, to create world-specific noise.
7516
7517 `PerlinNoise(noiseparams)`
7518 `PerlinNoise(seed, octaves, persistence, spread)` (Deprecated).
7519
7520 `minetest.get_perlin(noiseparams)`
7521 `minetest.get_perlin(seeddiff, octaves, persistence, spread)` (Deprecated).
7522
7523 ### Methods
7524
7525 * `get_2d(pos)`: returns 2D noise value at `pos={x=,y=}`
7526 * `get_3d(pos)`: returns 3D noise value at `pos={x=,y=,z=}`
7527
7528 `PerlinNoiseMap`
7529 ----------------
7530
7531 A fast, bulk perlin noise generator.
7532
7533 It can be created via `PerlinNoiseMap(noiseparams, size)` or
7534 `minetest.get_perlin_map(noiseparams, size)`.
7535 For `minetest.get_perlin_map()`, the actual seed used is the noiseparams seed
7536 plus the world seed, to create world-specific noise.
7537
7538 Format of `size` is `{x=dimx, y=dimy, z=dimz}`. The `z` component is omitted
7539 for 2D noise, and it must be must be larger than 1 for 3D noise (otherwise
7540 `nil` is returned).
7541
7542 For each of the functions with an optional `buffer` parameter: If `buffer` is
7543 not nil, this table will be used to store the result instead of creating a new
7544 table.
7545
7546 ### Methods
7547
7548 * `get_2d_map(pos)`: returns a `<size.x>` times `<size.y>` 2D array of 2D noise
7549   with values starting at `pos={x=,y=}`
7550 * `get_3d_map(pos)`: returns a `<size.x>` times `<size.y>` times `<size.z>`
7551   3D array of 3D noise with values starting at `pos={x=,y=,z=}`.
7552 * `get_2d_map_flat(pos, buffer)`: returns a flat `<size.x * size.y>` element
7553   array of 2D noise with values starting at `pos={x=,y=}`
7554 * `get_3d_map_flat(pos, buffer)`: Same as `get2dMap_flat`, but 3D noise
7555 * `calc_2d_map(pos)`: Calculates the 2d noise map starting at `pos`. The result
7556   is stored internally.
7557 * `calc_3d_map(pos)`: Calculates the 3d noise map starting at `pos`. The result
7558   is stored internally.
7559 * `get_map_slice(slice_offset, slice_size, buffer)`: In the form of an array,
7560   returns a slice of the most recently computed noise results. The result slice
7561   begins at coordinates `slice_offset` and takes a chunk of `slice_size`.
7562   E.g. to grab a 2-slice high horizontal 2d plane of noise starting at buffer
7563   offset y = 20:
7564   `noisevals = noise:get_map_slice({y=20}, {y=2})`
7565   It is important to note that `slice_offset` offset coordinates begin at 1,
7566   and are relative to the starting position of the most recently calculated
7567   noise.
7568   To grab a single vertical column of noise starting at map coordinates
7569   x = 1023, y=1000, z = 1000:
7570   `noise:calc_3d_map({x=1000, y=1000, z=1000})`
7571   `noisevals = noise:get_map_slice({x=24, z=1}, {x=1, z=1})`
7572
7573 `PlayerMetaRef`
7574 ---------------
7575
7576 Player metadata.
7577 Uses the same method of storage as the deprecated player attribute API, so
7578 data there will also be in player meta.
7579 Can be obtained using `player:get_meta()`.
7580
7581 ### Methods
7582
7583 * All methods in MetaDataRef
7584
7585 `PseudoRandom`
7586 --------------
7587
7588 A 16-bit pseudorandom number generator.
7589 Uses a well-known LCG algorithm introduced by K&R.
7590
7591 It can be created via `PseudoRandom(seed)`.
7592
7593 ### Methods
7594
7595 * `next()`: return next integer random number [`0`...`32767`]
7596 * `next(min, max)`: return next integer random number [`min`...`max`]
7597     * `((max - min) == 32767) or ((max-min) <= 6553))` must be true
7598       due to the simple implementation making bad distribution otherwise.
7599
7600 `Raycast`
7601 ---------
7602
7603 A raycast on the map. It works with selection boxes.
7604 Can be used as an iterator in a for loop as:
7605
7606     local ray = Raycast(...)
7607     for pointed_thing in ray do
7608         ...
7609     end
7610
7611 The map is loaded as the ray advances. If the map is modified after the
7612 `Raycast` is created, the changes may or may not have an effect on the object.
7613
7614 It can be created via `Raycast(pos1, pos2, objects, liquids)` or
7615 `minetest.raycast(pos1, pos2, objects, liquids)` where:
7616
7617 * `pos1`: start of the ray
7618 * `pos2`: end of the ray
7619 * `objects`: if false, only nodes will be returned. Default is true.
7620 * `liquids`: if false, liquid nodes (`liquidtype ~= "none"`) won't be
7621              returned. Default is false.
7622
7623 ### Limitations
7624
7625 Raycasts don't always work properly for attached objects as the server has no knowledge of models & bones.
7626
7627 **Rotated selectionboxes paired with `automatic_rotate` are not reliable** either since the server
7628 can't reliably know the total rotation of the objects on different clients (which may differ on a per-client basis).
7629 The server calculates the total rotation incurred through `automatic_rotate` as a "best guess"
7630 assuming the object was active & rotating on the client all the time since its creation.
7631 This may be significantly out of sync with what clients see.
7632 Additionally, network latency and delayed property sending may create a mismatch of client- & server rotations.
7633
7634 In singleplayer mode, raycasts on objects with rotated selectionboxes & automatic rotate will usually only be slightly off;
7635 toggling automatic rotation may however cause errors to add up.
7636
7637 In multiplayer mode, the error may be arbitrarily large.
7638
7639 ### Methods
7640
7641 * `next()`: returns a `pointed_thing` with exact pointing location
7642     * Returns the next thing pointed by the ray or nil.
7643
7644 `SecureRandom`
7645 --------------
7646
7647 Interface for the operating system's crypto-secure PRNG.
7648
7649 It can be created via `SecureRandom()`.  The constructor returns nil if a
7650 secure random device cannot be found on the system.
7651
7652 ### Methods
7653
7654 * `next_bytes([count])`: return next `count` (default 1, capped at 2048) many
7655   random bytes, as a string.
7656
7657 `Settings`
7658 ----------
7659
7660 An interface to read config files in the format of `minetest.conf`.
7661
7662 It can be created via `Settings(filename)`.
7663
7664 ### Methods
7665
7666 * `get(key)`: returns a value
7667 * `get_bool(key, [default])`: returns a boolean
7668     * `default` is the value returned if `key` is not found.
7669     * Returns `nil` if `key` is not found and `default` not specified.
7670 * `get_np_group(key)`: returns a NoiseParams table
7671 * `get_flags(key)`:
7672     * Returns `{flag = true/false, ...}` according to the set flags.
7673     * Is currently limited to mapgen flags `mg_flags` and mapgen-specific
7674       flags like `mgv5_spflags`.
7675 * `set(key, value)`
7676     * Setting names can't contain whitespace or any of `="{}#`.
7677     * Setting values can't contain the sequence `\n"""`.
7678     * Setting names starting with "secure." can't be set on the main settings
7679       object (`minetest.settings`).
7680 * `set_bool(key, value)`
7681     * See documentation for set() above.
7682 * `set_np_group(key, value)`
7683     * `value` is a NoiseParams table.
7684     * Also, see documentation for set() above.
7685 * `remove(key)`: returns a boolean (`true` for success)
7686 * `get_names()`: returns `{key1,...}`
7687 * `write()`: returns a boolean (`true` for success)
7688     * Writes changes to file.
7689 * `to_table()`: returns `{[key1]=value1,...}`
7690
7691 ### Format
7692
7693 The settings have the format `key = value`. Example:
7694
7695     foo = example text
7696     bar = """
7697     Multiline
7698     value
7699     """
7700
7701
7702 `StorageRef`
7703 ------------
7704
7705 Mod metadata: per mod metadata, saved automatically.
7706 Can be obtained via `minetest.get_mod_storage()` during load time.
7707
7708 WARNING: This storage backend is incapable of saving raw binary data due
7709 to restrictions of JSON.
7710
7711 ### Methods
7712
7713 * All methods in MetaDataRef
7714
7715
7716
7717
7718 Definition tables
7719 =================
7720
7721 Object properties
7722 -----------------
7723
7724 Used by `ObjectRef` methods. Part of an Entity definition.
7725 These properties are not persistent, but are applied automatically to the
7726 corresponding Lua entity using the given registration fields.
7727 Player properties need to be saved manually.
7728
7729     {
7730         hp_max = 10,
7731         -- Defines the maximum and default HP of the entity
7732         -- For Lua entities the maximum is not enforced.
7733         -- For players this defaults to `minetest.PLAYER_MAX_HP_DEFAULT`.
7734
7735         breath_max = 0,
7736         -- For players only. Defaults to `minetest.PLAYER_MAX_BREATH_DEFAULT`.
7737
7738         zoom_fov = 0.0,
7739         -- For players only. Zoom FOV in degrees.
7740         -- Note that zoom loads and/or generates world beyond the server's
7741         -- maximum send and generate distances, so acts like a telescope.
7742         -- Smaller zoom_fov values increase the distance loaded/generated.
7743         -- Defaults to 15 in creative mode, 0 in survival mode.
7744         -- zoom_fov = 0 disables zooming for the player.
7745
7746         eye_height = 1.625,
7747         -- For players only. Camera height above feet position in nodes.
7748
7749         physical = false,
7750         -- Collide with `walkable` nodes.
7751
7752         collide_with_objects = true,
7753         -- Collide with other objects if physical = true
7754
7755         collisionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },  -- default
7756         selectionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5, rotate = false },
7757                 -- { xmin, ymin, zmin, xmax, ymax, zmax } in nodes from object position.
7758         -- Collision boxes cannot rotate, setting `rotate = true` on it has no effect.
7759         -- If not set, the selection box copies the collision box, and will also not rotate.
7760         -- If `rotate = false`, the selection box will not rotate with the object itself, remaining fixed to the axes.
7761         -- If `rotate = true`, it will match the object's rotation and any attachment rotations.
7762         -- Raycasts use the selection box and object's rotation, but do *not* obey attachment rotations.
7763         
7764
7765         pointable = true,
7766         -- Whether the object can be pointed at
7767
7768         visual = "cube" / "sprite" / "upright_sprite" / "mesh" / "wielditem" / "item",
7769         -- "cube" is a node-sized cube.
7770         -- "sprite" is a flat texture always facing the player.
7771         -- "upright_sprite" is a vertical flat texture.
7772         -- "mesh" uses the defined mesh model.
7773         -- "wielditem" is used for dropped items.
7774         --   (see builtin/game/item_entity.lua).
7775         --   For this use 'wield_item = itemname' (Deprecated: 'textures = {itemname}').
7776         --   If the item has a 'wield_image' the object will be an extrusion of
7777         --   that, otherwise:
7778         --   If 'itemname' is a cubic node or nodebox the object will appear
7779         --   identical to 'itemname'.
7780         --   If 'itemname' is a plantlike node the object will be an extrusion
7781         --   of its texture.
7782         --   Otherwise for non-node items, the object will be an extrusion of
7783         --   'inventory_image'.
7784         --   If 'itemname' contains a ColorString or palette index (e.g. from
7785         --   `minetest.itemstring_with_palette()`), the entity will inherit the color.
7786         -- "item" is similar to "wielditem" but ignores the 'wield_image' parameter.
7787
7788         visual_size = {x = 1, y = 1, z = 1},
7789         -- Multipliers for the visual size. If `z` is not specified, `x` will be used
7790         -- to scale the entity along both horizontal axes.
7791
7792         mesh = "model.obj",
7793         -- File name of mesh when using "mesh" visual
7794
7795         textures = {},
7796         -- Number of required textures depends on visual.
7797         -- "cube" uses 6 textures just like a node, but all 6 must be defined.
7798         -- "sprite" uses 1 texture.
7799         -- "upright_sprite" uses 2 textures: {front, back}.
7800         -- "wielditem" expects 'textures = {itemname}' (see 'visual' above).
7801         -- "mesh" requires one texture for each mesh buffer/material (in order)
7802
7803         colors = {},
7804         -- Number of required colors depends on visual
7805
7806         use_texture_alpha = false,
7807         -- Use texture's alpha channel.
7808         -- Excludes "upright_sprite" and "wielditem".
7809         -- Note: currently causes visual issues when viewed through other
7810         -- semi-transparent materials such as water.
7811
7812         spritediv = {x = 1, y = 1},
7813         -- Used with spritesheet textures for animation and/or frame selection
7814         -- according to position relative to player.
7815         -- Defines the number of columns and rows in the spritesheet:
7816         -- {columns, rows}.
7817
7818         initial_sprite_basepos = {x = 0, y = 0},
7819         -- Used with spritesheet textures.
7820         -- Defines the {column, row} position of the initially used frame in the
7821         -- spritesheet.
7822
7823         is_visible = true,
7824         -- If false, object is invisible and can't be pointed.
7825
7826         makes_footstep_sound = false,
7827         -- If true, is able to make footstep sounds of nodes
7828         -- (see node sound definition for details).
7829
7830         automatic_rotate = 0,
7831         -- Set constant rotation in radians per second, positive or negative.
7832         -- Object rotates along the local Y-axis, and works with set_rotation.
7833         -- Set to 0 to disable constant rotation.
7834
7835         stepheight = 0,
7836         -- If positive number, object will climb upwards when it moves
7837         -- horizontally against a `walkable` node, if the height difference
7838         -- is within `stepheight`.
7839
7840         automatic_face_movement_dir = 0.0,
7841         -- Automatically set yaw to movement direction, offset in degrees.
7842         -- 'false' to disable.
7843
7844         automatic_face_movement_max_rotation_per_sec = -1,
7845         -- Limit automatic rotation to this value in degrees per second.
7846         -- No limit if value <= 0.
7847
7848         backface_culling = true,
7849         -- Set to false to disable backface_culling for model
7850
7851         glow = 0,
7852         -- Add this much extra lighting when calculating texture color.
7853         -- Value < 0 disables light's effect on texture color.
7854         -- For faking self-lighting, UI style entities, or programmatic coloring
7855         -- in mods.
7856
7857         nametag = "",
7858         -- The name to display on the head of the object. By default empty.
7859         -- If the object is a player, a nil or empty nametag is replaced by the player's name.
7860         -- For all other objects, a nil or empty string removes the nametag.
7861         -- To hide a nametag, set its color alpha to zero. That will disable it entirely.
7862
7863         nametag_color = <ColorSpec>,
7864         -- Sets text color of nametag
7865
7866         nametag_bgcolor = <ColorSpec>,
7867         -- Sets background color of nametag
7868         -- `false` will cause the background to be set automatically based on user settings.
7869         -- Default: false
7870
7871         infotext = "",
7872         -- Same as infotext for nodes. Empty by default
7873
7874         static_save = true,
7875         -- If false, never save this object statically. It will simply be
7876         -- deleted when the block gets unloaded.
7877         -- The get_staticdata() callback is never called then.
7878         -- Defaults to 'true'.
7879
7880         damage_texture_modifier = "^[brighten",
7881         -- Texture modifier to be applied for a short duration when object is hit
7882
7883         shaded = true,
7884         -- Setting this to 'false' disables diffuse lighting of entity
7885
7886         show_on_minimap = false,
7887         -- Defaults to true for players, false for other entities.
7888         -- If set to true the entity will show as a marker on the minimap.
7889     }
7890
7891 Entity definition
7892 -----------------
7893
7894 Used by `minetest.register_entity`.
7895
7896     {
7897         initial_properties = {
7898             visual = "mesh",
7899             mesh = "boats_boat.obj",
7900             ...,
7901         },
7902         -- A table of object properties, see the `Object properties` section.
7903         -- The properties in this table are applied to the object
7904         -- once when it is spawned.
7905
7906         -- Refer to the "Registered entities" section for explanations
7907         on_activate = function(self, staticdata, dtime_s),
7908         on_deactivate = function(self, removal),
7909         on_step = function(self, dtime, moveresult),
7910         on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir, damage),
7911         on_death = function(self, killer),
7912         on_rightclick = function(self, clicker),
7913         on_attach_child = function(self, child),
7914         on_detach_child = function(self, child),
7915         on_detach = function(self, parent),
7916         get_staticdata = function(self),
7917
7918         _custom_field = whatever,
7919         -- You can define arbitrary member variables here (see Item definition
7920         -- for more info) by using a '_' prefix
7921     }
7922
7923
7924 ABM (ActiveBlockModifier) definition
7925 ------------------------------------
7926
7927 Used by `minetest.register_abm`.
7928
7929     {
7930         label = "Lava cooling",
7931         -- Descriptive label for profiling purposes (optional).
7932         -- Definitions with identical labels will be listed as one.
7933
7934         nodenames = {"default:lava_source"},
7935         -- Apply `action` function to these nodes.
7936         -- `group:groupname` can also be used here.
7937
7938         neighbors = {"default:water_source", "default:water_flowing"},
7939         -- Only apply `action` to nodes that have one of, or any
7940         -- combination of, these neighbors.
7941         -- If left out or empty, any neighbor will do.
7942         -- `group:groupname` can also be used here.
7943
7944         interval = 1.0,
7945         -- Operation interval in seconds
7946
7947         chance = 1,
7948         -- Chance of triggering `action` per-node per-interval is 1.0 / this
7949         -- value
7950
7951         min_y = -32768,
7952         max_y = 32767,
7953         -- min and max height levels where ABM will be processed (inclusive)
7954         -- can be used to reduce CPU usage
7955
7956         catch_up = true,
7957         -- If true, catch-up behavior is enabled: The `chance` value is
7958         -- temporarily reduced when returning to an area to simulate time lost
7959         -- by the area being unattended. Note that the `chance` value can often
7960         -- be reduced to 1.
7961
7962         action = function(pos, node, active_object_count, active_object_count_wider),
7963         -- Function triggered for each qualifying node.
7964         -- `active_object_count` is number of active objects in the node's
7965         -- mapblock.
7966         -- `active_object_count_wider` is number of active objects in the node's
7967         -- mapblock plus all 26 neighboring mapblocks. If any neighboring
7968         -- mapblocks are unloaded an estimate is calculated for them based on
7969         -- loaded mapblocks.
7970     }
7971
7972 LBM (LoadingBlockModifier) definition
7973 -------------------------------------
7974
7975 Used by `minetest.register_lbm`.
7976
7977 A loading block modifier (LBM) is used to define a function that is called for
7978 specific nodes (defined by `nodenames`) when a mapblock which contains such nodes
7979 gets activated (not loaded!)
7980
7981     {
7982         label = "Upgrade legacy doors",
7983         -- Descriptive label for profiling purposes (optional).
7984         -- Definitions with identical labels will be listed as one.
7985
7986         name = "modname:replace_legacy_door",
7987         -- Identifier of the LBM, should follow the modname:<whatever> convention
7988
7989         nodenames = {"default:lava_source"},
7990         -- List of node names to trigger the LBM on.
7991         -- Names of non-registered nodes and groups (as group:groupname)
7992         -- will work as well.
7993
7994         run_at_every_load = false,
7995         -- Whether to run the LBM's action every time a block gets activated,
7996         -- and not only the first time the block gets activated after the LBM
7997         -- was introduced.
7998
7999         action = function(pos, node, dtime_s),
8000         -- Function triggered for each qualifying node.
8001         -- `dtime_s` is the in-game time (in seconds) elapsed since the block
8002         -- was last active
8003     }
8004
8005 Tile definition
8006 ---------------
8007
8008 * `"image.png"`
8009 * `{name="image.png", animation={Tile Animation definition}}`
8010 * `{name="image.png", backface_culling=bool, align_style="node"/"world"/"user", scale=int}`
8011     * backface culling enabled by default for most nodes
8012     * align style determines whether the texture will be rotated with the node
8013       or kept aligned with its surroundings. "user" means that client
8014       setting will be used, similar to `glasslike_framed_optional`.
8015       Note: supported by solid nodes and nodeboxes only.
8016     * scale is used to make texture span several (exactly `scale`) nodes,
8017       instead of just one, in each direction. Works for world-aligned
8018       textures only.
8019       Note that as the effect is applied on per-mapblock basis, `16` should
8020       be equally divisible by `scale` or you may get wrong results.
8021 * `{name="image.png", color=ColorSpec}`
8022     * the texture's color will be multiplied with this color.
8023     * the tile's color overrides the owning node's color in all cases.
8024 * deprecated, yet still supported field names:
8025     * `image` (name)
8026
8027 Tile animation definition
8028 -------------------------
8029
8030     {
8031         type = "vertical_frames",
8032
8033         aspect_w = 16,
8034         -- Width of a frame in pixels
8035
8036         aspect_h = 16,
8037         -- Height of a frame in pixels
8038
8039         length = 3.0,
8040         -- Full loop length
8041     }
8042
8043     {
8044         type = "sheet_2d",
8045
8046         frames_w = 5,
8047         -- Width in number of frames
8048
8049         frames_h = 3,
8050         -- Height in number of frames
8051
8052         frame_length = 0.5,
8053         -- Length of a single frame
8054     }
8055
8056 Item definition
8057 ---------------
8058
8059 Used by `minetest.register_node`, `minetest.register_craftitem`, and
8060 `minetest.register_tool`.
8061
8062     {
8063         description = "",
8064         -- Can contain new lines. "\n" has to be used as new line character.
8065         -- See also: `get_description` in [`ItemStack`]
8066
8067         short_description = "",
8068         -- Must not contain new lines.
8069         -- Defaults to nil.
8070         -- Use an [`ItemStack`] to get the short description, e.g.:
8071         --   ItemStack(itemname):get_short_description()
8072
8073         groups = {},
8074         -- key = name, value = rating; rating = <number>.
8075         -- If rating not applicable, use 1.
8076         -- e.g. {wool = 1, fluffy = 3}
8077         --      {soil = 2, outerspace = 1, crumbly = 1}
8078         --      {bendy = 2, snappy = 1},
8079         --      {hard = 1, metal = 1, spikes = 1}
8080
8081         inventory_image = "",
8082         -- Texture shown in the inventory GUI
8083         -- Defaults to a 3D rendering of the node if left empty.
8084
8085         inventory_overlay = "",
8086         -- An overlay texture which is not affected by colorization
8087
8088         wield_image = "",
8089         -- Texture shown when item is held in hand
8090         -- Defaults to a 3D rendering of the node if left empty.
8091
8092         wield_overlay = "",
8093         -- Like inventory_overlay but only used in the same situation as wield_image
8094
8095         wield_scale = {x = 1, y = 1, z = 1},
8096         -- Scale for the item when held in hand
8097
8098         palette = "",
8099         -- An image file containing the palette of a node.
8100         -- You can set the currently used color as the "palette_index" field of
8101         -- the item stack metadata.
8102         -- The palette is always stretched to fit indices between 0 and 255, to
8103         -- ensure compatibility with "colorfacedir" (and similar) nodes.
8104
8105         color = "#ffffffff",
8106         -- Color the item is colorized with. The palette overrides this.
8107
8108         stack_max = 99,
8109         -- Maximum amount of items that can be in a single stack.
8110         -- The default can be changed by the setting `default_stack_max`
8111
8112         range = 4.0,
8113         -- Range of node and object pointing that is possible with this item held
8114
8115         liquids_pointable = false,
8116         -- If true, item can point to all liquid nodes (`liquidtype ~= "none"`),
8117         -- even those for which `pointable = false`
8118
8119         light_source = 0,
8120         -- When used for nodes: Defines amount of light emitted by node.
8121         -- Otherwise: Defines texture glow when viewed as a dropped item
8122         -- To set the maximum (14), use the value 'minetest.LIGHT_MAX'.
8123         -- A value outside the range 0 to minetest.LIGHT_MAX causes undefined
8124         -- behavior.
8125
8126         -- See "Tool Capabilities" section for an example including explanation
8127         tool_capabilities = {
8128             full_punch_interval = 1.0,
8129             max_drop_level = 0,
8130             groupcaps = {
8131                 -- For example:
8132                 choppy = {times = {2.50, 1.40, 1.00}, uses = 20, maxlevel = 2},
8133             },
8134             damage_groups = {groupname = damage},
8135             -- Damage values must be between -32768 and 32767 (2^15)
8136
8137             punch_attack_uses = nil,
8138             -- Amount of uses this tool has for attacking players and entities
8139             -- by punching them (0 = infinite uses).
8140             -- For compatibility, this is automatically set from the first
8141             -- suitable groupcap using the formula "uses * 3^(maxlevel - 1)".
8142             -- It is recommend to set this explicitly instead of relying on the
8143             -- fallback behavior.
8144         },
8145
8146         node_placement_prediction = nil,
8147         -- If nil and item is node, prediction is made automatically.
8148         -- If nil and item is not a node, no prediction is made.
8149         -- If "" and item is anything, no prediction is made.
8150         -- Otherwise should be name of node which the client immediately places
8151         -- on ground when the player places the item. Server will always update
8152         -- with actual result shortly.
8153
8154         node_dig_prediction = "air",
8155         -- if "", no prediction is made.
8156         -- if "air", node is removed.
8157         -- Otherwise should be name of node which the client immediately places
8158         -- upon digging. Server will always update with actual result shortly.
8159
8160         sound = {
8161             -- Definition of item sounds to be played at various events.
8162             -- All fields in this table are optional.
8163
8164             breaks = <SimpleSoundSpec>,
8165             -- When tool breaks due to wear. Ignored for non-tools
8166
8167             eat = <SimpleSoundSpec>,
8168             -- When item is eaten with `minetest.do_item_eat`
8169
8170             punch_use = <SimpleSoundSpec>,
8171             -- When item is used with the 'punch/mine' key pointing at a node or entity
8172
8173             punch_use_air = <SimpleSoundSpec>,
8174             -- When item is used with the 'punch/mine' key pointing at nothing (air)
8175         },
8176
8177         on_place = function(itemstack, placer, pointed_thing),
8178         -- When the 'place' key was pressed with the item in hand
8179         -- and a node was pointed at.
8180         -- Shall place item and return the leftover itemstack
8181         -- or nil to not modify the inventory.
8182         -- The placer may be any ObjectRef or nil.
8183         -- default: minetest.item_place
8184
8185         on_secondary_use = function(itemstack, user, pointed_thing),
8186         -- Same as on_place but called when not pointing at a node.
8187         -- Function must return either nil if inventory shall not be modified,
8188         -- or an itemstack to replace the original itemstack.
8189         -- The user may be any ObjectRef or nil.
8190         -- default: nil
8191
8192         on_drop = function(itemstack, dropper, pos),
8193         -- Shall drop item and return the leftover itemstack.
8194         -- The dropper may be any ObjectRef or nil.
8195         -- default: minetest.item_drop
8196
8197         on_pickup = function(itemstack, picker, pointed_thing, time_from_last_punch, ...),
8198         -- Called when a dropped item is punched by a player.
8199         -- Shall pick-up the item and return the leftover itemstack or nil to not
8200         -- modify the dropped item.
8201         -- Parameters:
8202         -- * `itemstack`: The `ItemStack` to be picked up.
8203         -- * `picker`: Any `ObjectRef` or `nil`.
8204         -- * `pointed_thing` (optional): The dropped item (a `"__builtin:item"`
8205         --   luaentity) as `type="object"` `pointed_thing`.
8206         -- * `time_from_last_punch, ...` (optional): Other parameters from
8207         --   `luaentity:on_punch`.
8208         -- default: `minetest.item_pickup`
8209
8210         on_use = function(itemstack, user, pointed_thing),
8211         -- default: nil
8212         -- When user pressed the 'punch/mine' key with the item in hand.
8213         -- Function must return either nil if inventory shall not be modified,
8214         -- or an itemstack to replace the original itemstack.
8215         -- e.g. itemstack:take_item(); return itemstack
8216         -- Otherwise, the function is free to do what it wants.
8217         -- The user may be any ObjectRef or nil.
8218         -- The default functions handle regular use cases.
8219
8220         after_use = function(itemstack, user, node, digparams),
8221         -- default: nil
8222         -- If defined, should return an itemstack and will be called instead of
8223         -- wearing out the item (if tool). If returns nil, does nothing.
8224         -- If after_use doesn't exist, it is the same as:
8225         --   function(itemstack, user, node, digparams)
8226         --     itemstack:add_wear(digparams.wear)
8227         --     return itemstack
8228         --   end
8229         -- The user may be any ObjectRef or nil.
8230
8231         _custom_field = whatever,
8232         -- Add your own custom fields. By convention, all custom field names
8233         -- should start with `_` to avoid naming collisions with future engine
8234         -- usage.
8235     }
8236
8237 Node definition
8238 ---------------
8239
8240 Used by `minetest.register_node`.
8241
8242     {
8243         -- <all fields allowed in item definitions>
8244
8245         drawtype = "normal",  -- See "Node drawtypes"
8246
8247         visual_scale = 1.0,
8248         -- Supported for drawtypes "plantlike", "signlike", "torchlike",
8249         -- "firelike", "mesh", "nodebox", "allfaces".
8250         -- For plantlike and firelike, the image will start at the bottom of the
8251         -- node. For torchlike, the image will start at the surface to which the
8252         -- node "attaches". For the other drawtypes the image will be centered
8253         -- on the node.
8254
8255         tiles = {tile definition 1, def2, def3, def4, def5, def6},
8256         -- Textures of node; +Y, -Y, +X, -X, +Z, -Z
8257         -- List can be shortened to needed length.
8258
8259         overlay_tiles = {tile definition 1, def2, def3, def4, def5, def6},
8260         -- Same as `tiles`, but these textures are drawn on top of the base
8261         -- tiles. You can use this to colorize only specific parts of your
8262         -- texture. If the texture name is an empty string, that overlay is not
8263         -- drawn. Since such tiles are drawn twice, it is not recommended to use
8264         -- overlays on very common nodes.
8265
8266         special_tiles = {tile definition 1, Tile definition 2},
8267         -- Special textures of node; used rarely.
8268         -- List can be shortened to needed length.
8269
8270         color = ColorSpec,
8271         -- The node's original color will be multiplied with this color.
8272         -- If the node has a palette, then this setting only has an effect in
8273         -- the inventory and on the wield item.
8274
8275         use_texture_alpha = ...,
8276         -- Specifies how the texture's alpha channel will be used for rendering.
8277         -- possible values:
8278         -- * "opaque": Node is rendered opaque regardless of alpha channel
8279         -- * "clip": A given pixel is either fully see-through or opaque
8280         --           depending on the alpha channel being below/above 50% in value
8281         -- * "blend": The alpha channel specifies how transparent a given pixel
8282         --            of the rendered node is
8283         -- The default is "opaque" for drawtypes normal, liquid and flowingliquid;
8284         -- "clip" otherwise.
8285         -- If set to a boolean value (deprecated): true either sets it to blend
8286         -- or clip, false sets it to clip or opaque mode depending on the drawtype.
8287
8288         palette = "",
8289         -- The node's `param2` is used to select a pixel from the image.
8290         -- Pixels are arranged from left to right and from top to bottom.
8291         -- The node's color will be multiplied with the selected pixel's color.
8292         -- Tiles can override this behavior.
8293         -- Only when `paramtype2` supports palettes.
8294
8295         post_effect_color = "#00000000",
8296         -- Screen tint if player is inside node, see "ColorSpec"
8297
8298         paramtype = "none",  -- See "Nodes"
8299
8300         paramtype2 = "none",  -- See "Nodes"
8301
8302         place_param2 = 0,
8303         -- Value for param2 that is set when player places node
8304
8305         is_ground_content = true,
8306         -- If false, the cave generator and dungeon generator will not carve
8307         -- through this node.
8308         -- Specifically, this stops mod-added nodes being removed by caves and
8309         -- dungeons when those generate in a neighbor mapchunk and extend out
8310         -- beyond the edge of that mapchunk.
8311
8312         sunlight_propagates = false,
8313         -- If true, sunlight will go infinitely through this node
8314
8315         walkable = true,  -- If true, objects collide with node
8316
8317         pointable = true,  -- If true, can be pointed at
8318
8319         diggable = true,  -- If false, can never be dug
8320
8321         climbable = false,  -- If true, can be climbed on like a ladder
8322
8323         move_resistance = 0,
8324         -- Slows down movement of players through this node (max. 7).
8325         -- If this is nil, it will be equal to liquid_viscosity.
8326         -- Note: If liquid movement physics apply to the node
8327         -- (see `liquid_move_physics`), the movement speed will also be
8328         -- affected by the `movement_liquid_*` settings.
8329
8330         buildable_to = false,  -- If true, placed nodes can replace this node
8331
8332         floodable = false,
8333         -- If true, liquids flow into and replace this node.
8334         -- Warning: making a liquid node 'floodable' will cause problems.
8335
8336         liquidtype = "none",  -- specifies liquid flowing physics
8337         -- * "none":    no liquid flowing physics
8338         -- * "source":  spawns flowing liquid nodes at all 4 sides and below;
8339         --              recommended drawtype: "liquid".
8340         -- * "flowing": spawned from source, spawns more flowing liquid nodes
8341         --              around it until `liquid_range` is reached;
8342         --              will drain out without a source;
8343         --              recommended drawtype: "flowingliquid".
8344         -- If it's "source" or "flowing", then the
8345         -- `liquid_alternative_*` fields _must_ be specified
8346
8347         liquid_alternative_flowing = "",
8348         liquid_alternative_source = "",
8349         -- These fields may contain node names that represent the
8350         -- flowing version (`liquid_alternative_flowing`) and
8351         -- source version (`liquid_alternative_source`) of a liquid.
8352         --
8353         -- Specifically, these fields are required if any of these is true:
8354         -- * `liquidtype ~= "none" or
8355         -- * `drawtype == "liquid" or
8356         -- * `drawtype == "flowingliquid"
8357         --
8358         -- Liquids consist of up to two nodes: source and flowing.
8359         --
8360         -- There are two ways to define a liquid:
8361         -- 1) Source node and flowing node. This requires both fields to be
8362         --    specified for both nodes.
8363         -- 2) Standalone source node (cannot flow). `liquid_alternative_source`
8364         --    must be specified and `liquid_range` must be set to 0.
8365         --
8366         -- Example:
8367         --     liquid_alternative_flowing = "example:water_flowing",
8368         --     liquid_alternative_source = "example:water_source",
8369
8370         liquid_viscosity = 0,
8371         -- Controls speed at which the liquid spreads/flows (max. 7).
8372         -- 0 is fastest, 7 is slowest.
8373         -- By default, this also slows down movement of players inside the node
8374         -- (can be overridden using `move_resistance`)
8375
8376         liquid_renewable = true,
8377         -- If true, a new liquid source can be created by placing two or more
8378         -- sources nearby
8379
8380         liquid_move_physics = nil, -- specifies movement physics if inside node
8381         -- * false: No liquid movement physics apply.
8382         -- * true: Enables liquid movement physics. Enables things like
8383         --   ability to "swim" up/down, sinking slowly if not moving,
8384         --   smoother speed change when falling into, etc. The `movement_liquid_*`
8385         --   settings apply.
8386         -- * nil: Will be treated as true if `liquidtype ~= "none"`
8387         --   and as false otherwise.
8388
8389         leveled = 0,
8390         -- Only valid for "nodebox" drawtype with 'type = "leveled"'.
8391         -- Allows defining the nodebox height without using param2.
8392         -- The nodebox height is 'leveled' / 64 nodes.
8393         -- The maximum value of 'leveled' is `leveled_max`.
8394
8395         leveled_max = 127,
8396         -- Maximum value for `leveled` (0-127), enforced in
8397         -- `minetest.set_node_level` and `minetest.add_node_level`.
8398         -- Values above 124 might causes collision detection issues.
8399
8400         liquid_range = 8,
8401         -- Maximum distance that flowing liquid nodes can spread around
8402         -- source on flat land;
8403         -- maximum = 8; set to 0 to disable liquid flow
8404
8405         drowning = 0,
8406         -- Player will take this amount of damage if no bubbles are left
8407
8408         damage_per_second = 0,
8409         -- If player is inside node, this damage is caused
8410
8411         node_box = {type = "regular"},  -- See "Node boxes"
8412
8413         connects_to = {},
8414         -- Used for nodebox nodes with the type == "connected".
8415         -- Specifies to what neighboring nodes connections will be drawn.
8416         -- e.g. `{"group:fence", "default:wood"}` or `"default:stone"`
8417
8418         connect_sides = {},
8419         -- Tells connected nodebox nodes to connect only to these sides of this
8420         -- node. possible: "top", "bottom", "front", "left", "back", "right"
8421
8422         mesh = "",
8423         -- File name of mesh when using "mesh" drawtype
8424
8425         selection_box = {
8426             -- see [Node boxes] for possibilities
8427         },
8428         -- Custom selection box definition. Multiple boxes can be defined.
8429         -- If "nodebox" drawtype is used and selection_box is nil, then node_box
8430         -- definition is used for the selection box.
8431
8432         collision_box = {
8433             -- see [Node boxes] for possibilities
8434         },
8435         -- Custom collision box definition. Multiple boxes can be defined.
8436         -- If "nodebox" drawtype is used and collision_box is nil, then node_box
8437         -- definition is used for the collision box.
8438
8439         -- Support maps made in and before January 2012
8440         legacy_facedir_simple = false,
8441         legacy_wallmounted = false,
8442
8443         waving = 0,
8444         -- Valid for drawtypes:
8445         -- mesh, nodebox, plantlike, allfaces_optional, liquid, flowingliquid.
8446         -- 1 - wave node like plants (node top moves side-to-side, bottom is fixed)
8447         -- 2 - wave node like leaves (whole node moves side-to-side)
8448         -- 3 - wave node like liquids (whole node moves up and down)
8449         -- Not all models will properly wave.
8450         -- plantlike drawtype can only wave like plants.
8451         -- allfaces_optional drawtype can only wave like leaves.
8452         -- liquid, flowingliquid drawtypes can only wave like liquids.
8453
8454         sounds = {
8455             -- Definition of node sounds to be played at various events.
8456             -- All fields in this table are optional.
8457
8458             footstep = <SimpleSoundSpec>,
8459             -- If walkable, played when object walks on it. If node is
8460             -- climbable or a liquid, played when object moves through it
8461
8462             dig = <SimpleSoundSpec> or "__group",
8463             -- While digging node.
8464             -- If `"__group"`, then the sound will be
8465             -- `{name = "default_dig_<groupname>", gain = 0.5}` , where `<groupname>` is the
8466             -- name of the item's digging group with the fastest digging time.
8467             -- In case of a tie, one of the sounds will be played (but we
8468             -- cannot predict which one)
8469             -- Default value: `"__group"`
8470
8471             dug = <SimpleSoundSpec>,
8472             -- Node was dug
8473
8474             place = <SimpleSoundSpec>,
8475             -- Node was placed. Also played after falling
8476
8477             place_failed = <SimpleSoundSpec>,
8478             -- When node placement failed.
8479             -- Note: This happens if the _built-in_ node placement failed.
8480             -- This sound will still be played if the node is placed in the
8481             -- `on_place` callback manually.
8482
8483             fall = <SimpleSoundSpec>,
8484             -- When node starts to fall or is detached
8485         },
8486
8487         drop = "",
8488         -- Name of dropped item when dug.
8489         -- Default dropped item is the node itself.
8490
8491         -- Using a table allows multiple items, drop chances and item filtering:
8492         drop = {
8493             max_items = 1,
8494             -- Maximum number of item lists to drop.
8495             -- The entries in 'items' are processed in order. For each:
8496             -- Item filtering is applied, chance of drop is applied, if both are
8497             -- successful the entire item list is dropped.
8498             -- Entry processing continues until the number of dropped item lists
8499             -- equals 'max_items'.
8500             -- Therefore, entries should progress from low to high drop chance.
8501             items = {
8502                 -- Examples:
8503                 {
8504                     -- 1 in 1000 chance of dropping a diamond.
8505                     -- Default rarity is '1'.
8506                     rarity = 1000,
8507                     items = {"default:diamond"},
8508                 },
8509                 {
8510                     -- Only drop if using an item whose name is identical to one
8511                     -- of these.
8512                     tools = {"default:shovel_mese", "default:shovel_diamond"},
8513                     rarity = 5,
8514                     items = {"default:dirt"},
8515                     -- Whether all items in the dropped item list inherit the
8516                     -- hardware coloring palette color from the dug node.
8517                     -- Default is 'false'.
8518                     inherit_color = true,
8519                 },
8520                 {
8521                     -- Only drop if using an item whose name contains
8522                     -- "default:shovel_" (this item filtering by string matching
8523                     -- is deprecated, use tool_groups instead).
8524                     tools = {"~default:shovel_"},
8525                     rarity = 2,
8526                     -- The item list dropped.
8527                     items = {"default:sand", "default:desert_sand"},
8528                 },
8529                 {
8530                     -- Only drop if using an item in the "magicwand" group, or
8531                     -- an item that is in both the "pickaxe" and the "lucky"
8532                     -- groups.
8533                     tool_groups = {
8534                         "magicwand",
8535                         {"pickaxe", "lucky"}
8536                     },
8537                     items = {"default:coal_lump"},
8538                 },
8539             },
8540         },
8541
8542         on_construct = function(pos),
8543         -- Node constructor; called after adding node.
8544         -- Can set up metadata and stuff like that.
8545         -- Not called for bulk node placement (i.e. schematics and VoxelManip).
8546         -- Note: Within an on_construct callback, minetest.set_node can cause an
8547         -- infinite loop if it invokes the same callback.
8548         --  Consider using minetest.swap_node instead.
8549         -- default: nil
8550
8551         on_destruct = function(pos),
8552         -- Node destructor; called before removing node.
8553         -- Not called for bulk node placement.
8554         -- default: nil
8555
8556         after_destruct = function(pos, oldnode),
8557         -- Node destructor; called after removing node.
8558         -- Not called for bulk node placement.
8559         -- default: nil
8560
8561         on_flood = function(pos, oldnode, newnode),
8562         -- Called when a liquid (newnode) is about to flood oldnode, if it has
8563         -- `floodable = true` in the nodedef. Not called for bulk node placement
8564         -- (i.e. schematics and VoxelManip) or air nodes. If return true the
8565         -- node is not flooded, but on_flood callback will most likely be called
8566         -- over and over again every liquid update interval.
8567         -- Default: nil
8568         -- Warning: making a liquid node 'floodable' will cause problems.
8569
8570         preserve_metadata = function(pos, oldnode, oldmeta, drops),
8571         -- Called when oldnode is about be converted to an item, but before the
8572         -- node is deleted from the world or the drops are added. This is
8573         -- generally the result of either the node being dug or an attached node
8574         -- becoming detached.
8575         -- oldmeta are the metadata fields (table) of the node before deletion.
8576         -- drops is a table of ItemStacks, so any metadata to be preserved can
8577         -- be added directly to one or more of the dropped items. See
8578         -- "ItemStackMetaRef".
8579         -- default: nil
8580
8581         after_place_node = function(pos, placer, itemstack, pointed_thing),
8582         -- Called after constructing node when node was placed using
8583         -- minetest.item_place_node / minetest.place_node.
8584         -- If return true no item is taken from itemstack.
8585         -- `placer` may be any valid ObjectRef or nil.
8586         -- default: nil
8587
8588         after_dig_node = function(pos, oldnode, oldmetadata, digger),
8589         -- oldmetadata is in table format.
8590         -- Called after destructing node when node was dug using
8591         -- minetest.node_dig / minetest.dig_node.
8592         -- default: nil
8593
8594         can_dig = function(pos, [player]),
8595         -- Returns true if node can be dug, or false if not.
8596         -- default: nil
8597
8598         on_punch = function(pos, node, puncher, pointed_thing),
8599         -- default: minetest.node_punch
8600         -- Called when puncher (an ObjectRef) punches the node at pos.
8601         -- By default calls minetest.register_on_punchnode callbacks.
8602
8603         on_rightclick = function(pos, node, clicker, itemstack, pointed_thing),
8604         -- default: nil
8605         -- Called when clicker (an ObjectRef) used the 'place/build' key
8606         -- (not necessarily an actual rightclick)
8607         -- while pointing at the node at pos with 'node' being the node table.
8608         -- itemstack will hold clicker's wielded item.
8609         -- Shall return the leftover itemstack.
8610         -- Note: pointed_thing can be nil, if a mod calls this function.
8611         -- This function does not get triggered by clients <=0.4.16 if the
8612         -- "formspec" node metadata field is set.
8613
8614         on_dig = function(pos, node, digger),
8615         -- default: minetest.node_dig
8616         -- By default checks privileges, wears out item (if tool) and removes node.
8617         -- return true if the node was dug successfully, false otherwise.
8618         -- Deprecated: returning nil is the same as returning true.
8619
8620         on_timer = function(pos, elapsed),
8621         -- default: nil
8622         -- called by NodeTimers, see minetest.get_node_timer and NodeTimerRef.
8623         -- elapsed is the total time passed since the timer was started.
8624         -- return true to run the timer for another cycle with the same timeout
8625         -- value.
8626
8627         on_receive_fields = function(pos, formname, fields, sender),
8628         -- fields = {name1 = value1, name2 = value2, ...}
8629         -- Called when an UI form (e.g. sign text input) returns data.
8630         -- See minetest.register_on_player_receive_fields for more info.
8631         -- default: nil
8632
8633         allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player),
8634         -- Called when a player wants to move items inside the inventory.
8635         -- Return value: number of items allowed to move.
8636
8637         allow_metadata_inventory_put = function(pos, listname, index, stack, player),
8638         -- Called when a player wants to put something into the inventory.
8639         -- Return value: number of items allowed to put.
8640         -- Return value -1: Allow and don't modify item count in inventory.
8641
8642         allow_metadata_inventory_take = function(pos, listname, index, stack, player),
8643         -- Called when a player wants to take something out of the inventory.
8644         -- Return value: number of items allowed to take.
8645         -- Return value -1: Allow and don't modify item count in inventory.
8646
8647         on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player),
8648         on_metadata_inventory_put = function(pos, listname, index, stack, player),
8649         on_metadata_inventory_take = function(pos, listname, index, stack, player),
8650         -- Called after the actual action has happened, according to what was
8651         -- allowed.
8652         -- No return value.
8653
8654         on_blast = function(pos, intensity),
8655         -- intensity: 1.0 = mid range of regular TNT.
8656         -- If defined, called when an explosion touches the node, instead of
8657         -- removing the node.
8658
8659         mod_origin = "modname",
8660         -- stores which mod actually registered a node
8661         -- If the source could not be determined it contains "??"
8662         -- Useful for getting which mod truly registered something
8663         -- example: if a node is registered as ":othermodname:nodename",
8664         -- nodename will show "othermodname", but mod_origin will say "modname"
8665     }
8666
8667 Crafting recipes
8668 ----------------
8669
8670 Crafting converts one or more inputs to one output itemstack of arbitrary
8671 count (except for fuels, which don't have an output). The conversion reduces
8672 each input ItemStack by 1.
8673
8674 Craft recipes are registered by `minetest.register_craft` and use a
8675 table format. The accepted parameters are listed below.
8676
8677 Recipe input items can either be specified by item name (item count = 1)
8678 or by group (see "Groups in crafting recipes" for details).
8679
8680 The following sections describe the types and syntaxes of recipes.
8681
8682 ### Shaped
8683
8684 This is the default recipe type (when no `type` is specified).
8685
8686 A shaped recipe takes one or multiple items as input and has
8687 a single item stack as output. The input items must be specified
8688 in a 2-dimensional matrix (see parameters below) to specify the
8689 exact arrangement (the "shape") in which the player must place them
8690 in the crafting grid.
8691
8692 For example, for a 3x3 recipe, the `recipes` table must have
8693 3 rows and 3 columns.
8694
8695 In order to craft the recipe, the players' crafting grid must
8696 have equal or larger dimensions (both width and height).
8697
8698 Parameters:
8699
8700 * `type = "shaped"`: (optional) specifies recipe type as shaped
8701 * `output`: Itemstring of output itemstack (item counts >= 1 are allowed)
8702 * `recipe`: A 2-dimensional matrix of items, with a width *w* and height *h*.
8703     * *w* and *h* are chosen by you, they don't have to be equal but must be at least 1
8704     * The matrix is specified as a table containing tables containing itemnames
8705     * The inner tables are the rows. There must be *h* tables, specified from the top to the bottom row
8706     * Values inside of the inner table are the columns.
8707       Each inner table must contain a list of *w* items, specified from left to right
8708     * Empty slots *must* be filled with the empty string
8709 * `replacements`: (optional) Allows you to replace input items with some other items
8710       when something is crafted
8711     * Provided as a list of item pairs of the form `{ old_item, new_item }` where
8712       `old_item` is the input item to replace (same syntax as for a regular input
8713       slot; groups are allowed) and `new_item` is an itemstring for the item stack
8714       it will become
8715     * When the output is crafted, Minetest iterates through the list
8716       of input items if the crafting grid. For each input item stack, it checks if
8717       it matches with an `old_item` in the item pair list.
8718         * If it matches, the item will be replaced. Also, this item pair
8719           will *not* be applied again for the remaining items
8720         * If it does not match, the item is consumed (reduced by 1) normally
8721     * The `new_item` will appear in one of 3 places:
8722         * Crafting grid, if the input stack size was exactly 1
8723         * Player inventory, if input stack size was larger
8724         * Drops as item entity, if it fits neither in craft grid or inventory
8725
8726 #### Examples
8727
8728 A typical shaped recipe:
8729
8730     -- Stone pickaxe
8731     {
8732         output = "example:stone_pickaxe",
8733         -- A 3x3 recipe which needs 3 stone in the 1st row,
8734         -- and 1 stick in the horizontal middle in each of the 2nd and 3nd row.
8735         -- The 4 remaining slots have to be empty.
8736         recipe = {
8737             {"example:stone", "example:stone", "example:stone"}, -- row 1
8738             {"",              "example:stick", ""             }, -- row 2
8739             {"",              "example:stick", ""             }, -- row 3
8740         --   ^ column 1       ^ column 2       ^ column 3
8741         },
8742         -- There is no replacements table, so every input item
8743         -- will be consumed.
8744     }
8745
8746 Simple replacement example:
8747
8748     -- Wet sponge
8749     {
8750         output = "example:wet_sponge",
8751         -- 1x2 recipe with a water bucket above a dry sponge
8752         recipe = {
8753             {"example:water_bucket"},
8754             {"example:dry_sponge"},
8755         },
8756         -- When the wet sponge is crafted, the water bucket
8757         -- in the input slot is replaced with an empty
8758         -- bucket
8759         replacements = {
8760             {"example:water_bucket", "example:empty_bucket"},
8761         },
8762     }
8763
8764 Complex replacement example 1:
8765
8766     -- Very wet sponge
8767     {
8768         output = "example:very_wet_sponge",
8769         -- 3x3 recipe with a wet sponge in the center
8770         -- and 4 water buckets around it
8771         recipe = {
8772             {"","example:water_bucket",""},
8773             {"example:water_bucket","example:wet_sponge","example:water_bucket"},
8774             {"","example:water_bucket",""},
8775         },
8776         -- When the wet sponge is crafted, all water buckets
8777         -- in the input slot become empty
8778         replacements = {
8779             -- Without these repetitions, only the first
8780             -- water bucket would be replaced.
8781             {"example:water_bucket", "example:empty_bucket"},
8782             {"example:water_bucket", "example:empty_bucket"},
8783             {"example:water_bucket", "example:empty_bucket"},
8784             {"example:water_bucket", "example:empty_bucket"},
8785         },
8786     }
8787
8788 Complex replacement example 2:
8789
8790     -- Magic book:
8791     -- 3 magic orbs + 1 book crafts a magic book,
8792     -- and the orbs will be replaced with 3 different runes.
8793     {
8794         output = "example:magic_book",
8795         -- 3x2 recipe
8796         recipe = {
8797             -- 3 items in the group `magic_orb` on top of a book in the middle
8798             {"group:magic_orb", "group:magic_orb", "group:magic_orb"},
8799             {"", "example:book", ""},
8800         },
8801         -- When the book is crafted, the 3 magic orbs will be turned into
8802         -- 3 runes: ice rune, earth rune and fire rune (from left to right)
8803         replacements = {
8804             {"group:magic_orb", "example:ice_rune"},
8805             {"group:magic_orb", "example:earth_rune"},
8806             {"group:magic_orb", "example:fire_rune"},
8807         },
8808     }
8809
8810 ### Shapeless
8811
8812 Takes a list of input items (at least 1). The order or arrangement
8813 of input items does not matter.
8814
8815 In order to craft the recipe, the players' crafting grid must have matching or
8816 larger *count* of slots. The grid dimensions do not matter.
8817
8818 Parameters:
8819
8820 * `type = "shapeless"`: Mandatory
8821 * `output`: Same as for shaped recipe
8822 * `recipe`: List of item names
8823 * `replacements`: Same as for shaped recipe
8824
8825 #### Example
8826
8827     {
8828         -- Craft a mushroom stew from a bowl, a brown mushroom and a red mushroom
8829         -- (no matter where in the input grid the items are placed)
8830         type = "shapeless",
8831         output = "example:mushroom_stew",
8832         recipe = {
8833             "example:bowl",
8834             "example:mushroom_brown",
8835             "example:mushroom_red",
8836         },
8837     }
8838
8839 ### Tool repair
8840
8841 Syntax:
8842
8843     {
8844         type = "toolrepair",
8845         additional_wear = -0.02, -- multiplier of 65536
8846     }
8847
8848 Adds a shapeless recipe for *every* tool that doesn't have the `disable_repair=1`
8849 group. If this recipe is used, repairing is possible with any crafting grid
8850 with at least 2 slots.
8851 The player can put 2 equal tools in the craft grid to get one "repaired" tool
8852 back.
8853 The wear of the output is determined by the wear of both tools, plus a
8854 'repair bonus' given by `additional_wear`. To reduce the wear (i.e. 'repair'),
8855 you want `additional_wear` to be negative.
8856
8857 The formula used to calculate the resulting wear is:
8858
8859     65536 * (1 - ( (1 - tool_1_wear) + (1 - tool_2_wear) + additional_wear))
8860
8861 The result is rounded and can't be lower than 0. If the result is 65536 or higher,
8862 no crafting is possible.
8863
8864 ### Cooking
8865
8866 A cooking recipe has a single input item, a single output item stack
8867 and a cooking time. It represents cooking/baking/smelting/etc. items in
8868 an oven, furnace, or something similar; the exact meaning is up for games
8869 to decide, if they choose to use cooking at all.
8870
8871 The engine does not implement anything specific to cooking recipes, but
8872 the recipes can be retrieved later using `minetest.get_craft_result` to
8873 have a consistent interface across different games/mods.
8874
8875 Parameters:
8876
8877 * `type = "cooking"`: Mandatory
8878 * `output`: Same as for shaped recipe
8879 * `recipe`: An itemname of the single input item
8880 * `cooktime`: (optional) Time it takes to cook this item, in seconds.
8881               A floating-point number. (default: 3.0)
8882 * `replacements`: Same meaning as for shaped recipes, but the mods
8883                   that utilize cooking recipes (e.g. for adding a furnace
8884                   node) need to implement replacements on their own
8885
8886 Note: Games and mods are free to re-interpret the cooktime in special
8887 cases, e.g. for a super furnace that cooks items twice as fast.
8888
8889 #### Example
8890
8891 Cooking sand to glass in 3 seconds:
8892
8893     {
8894         type = "cooking",
8895         output = "example:glass",
8896         recipe = "example:sand",
8897         cooktime = 3.0,
8898     }
8899
8900 ### Fuel
8901
8902 A fuel recipe is an item associated with a "burning time" and an optional
8903 item replacement. There is no output. This is usually used as fuel for
8904 furnaces, ovens, stoves, etc.
8905
8906 Like with cooking recipes, the engine does not do anything specific with
8907 fuel recipes and it's up to games and mods to use them by retrieving
8908 them via `minetest.get_craft_result`.
8909
8910 Parameters:
8911
8912 * `type = "fuel"`: Mandatory
8913 * `recipe`: Itemname of the item to be used as fuel
8914 * `burntime`: (optional) Burning time this item provides, in seconds.
8915               A floating-point number. (default: 1.0)
8916 * `replacements`: Same meaning as for shaped recipes, but the mods
8917                   that utilize fuels need to implement replacements
8918                   on their own
8919
8920 Note: Games and mods are free to re-interpret the burntime in special
8921 cases, e.g. for an efficient furnace in which fuels burn twice as
8922 long.
8923
8924 #### Examples
8925
8926 Coal lump with a burntime of 20 seconds. Will be consumed when used.
8927
8928     {
8929         type = "fuel",
8930         recipe = "example:coal_lump",
8931         burntime = 20.0,
8932     }
8933
8934 Lava bucket with a burn time of 60 seconds. Will become an empty bucket
8935 if used:
8936
8937     {
8938         type = "fuel",
8939         recipe = "example:lava_bucket",
8940         burntime = 60.0,
8941         replacements = {{"example:lava_bucket", "example:empty_bucket"}},
8942     }
8943
8944 Ore definition
8945 --------------
8946
8947 Used by `minetest.register_ore`.
8948
8949 See [Ores] section above for essential information.
8950
8951     {
8952         ore_type = "",
8953         -- Supported: "scatter", "sheet", "puff", "blob", "vein", "stratum"
8954
8955         ore = "",
8956         -- Ore node to place
8957
8958         ore_param2 = 0,
8959         -- Param2 to set for ore (e.g. facedir rotation)
8960
8961         wherein = "",
8962         -- Node to place ore in. Multiple are possible by passing a list.
8963
8964         clust_scarcity = 8 * 8 * 8,
8965         -- Ore has a 1 out of clust_scarcity chance of spawning in a node.
8966         -- If the desired average distance between ores is 'd', set this to
8967         -- d * d * d.
8968
8969         clust_num_ores = 8,
8970         -- Number of ores in a cluster
8971
8972         clust_size = 3,
8973         -- Size of the bounding box of the cluster.
8974         -- In this example, there is a 3 * 3 * 3 cluster where 8 out of the 27
8975         -- nodes are coal ore.
8976
8977         y_min = -31000,
8978         y_max = 31000,
8979         -- Lower and upper limits for ore (inclusive)
8980
8981         flags = "",
8982         -- Attributes for the ore generation, see 'Ore attributes' section above
8983
8984         noise_threshold = 0,
8985         -- If noise is above this threshold, ore is placed. Not needed for a
8986         -- uniform distribution.
8987
8988         noise_params = {
8989             offset = 0,
8990             scale = 1,
8991             spread = {x = 100, y = 100, z = 100},
8992             seed = 23,
8993             octaves = 3,
8994             persistence = 0.7
8995         },
8996         -- NoiseParams structure describing one of the perlin noises used for
8997         -- ore distribution.
8998         -- Needed by "sheet", "puff", "blob" and "vein" ores.
8999         -- Omit from "scatter" ore for a uniform ore distribution.
9000         -- Omit from "stratum" ore for a simple horizontal strata from y_min to
9001         -- y_max.
9002
9003         biomes = {"desert", "rainforest"},
9004         -- List of biomes in which this ore occurs.
9005         -- Occurs in all biomes if this is omitted, and ignored if the Mapgen
9006         -- being used does not support biomes.
9007         -- Can be a list of (or a single) biome names, IDs, or definitions.
9008
9009         -- Type-specific parameters
9010
9011         -- "sheet"
9012         column_height_min = 1,
9013         column_height_max = 16,
9014         column_midpoint_factor = 0.5,
9015
9016         -- "puff"
9017         np_puff_top = {
9018             offset = 4,
9019             scale = 2,
9020             spread = {x = 100, y = 100, z = 100},
9021             seed = 47,
9022             octaves = 3,
9023             persistence = 0.7
9024         },
9025         np_puff_bottom = {
9026             offset = 4,
9027             scale = 2,
9028             spread = {x = 100, y = 100, z = 100},
9029             seed = 11,
9030             octaves = 3,
9031             persistence = 0.7
9032         },
9033
9034         -- "vein"
9035         random_factor = 1.0,
9036
9037         -- "stratum"
9038         np_stratum_thickness = {
9039             offset = 8,
9040             scale = 4,
9041             spread = {x = 100, y = 100, z = 100},
9042             seed = 17,
9043             octaves = 3,
9044             persistence = 0.7
9045         },
9046         stratum_thickness = 8, -- only used if no noise defined
9047     }
9048
9049 Biome definition
9050 ----------------
9051
9052 Used by `minetest.register_biome`.
9053
9054 The maximum number of biomes that can be used is 65535. However, using an
9055 excessive number of biomes will slow down map generation. Depending on desired
9056 performance and computing power the practical limit is much lower.
9057
9058     {
9059         name = "tundra",
9060
9061         node_dust = "default:snow",
9062         -- Node dropped onto upper surface after all else is generated
9063
9064         node_top = "default:dirt_with_snow",
9065         depth_top = 1,
9066         -- Node forming surface layer of biome and thickness of this layer
9067
9068         node_filler = "default:permafrost",
9069         depth_filler = 3,
9070         -- Node forming lower layer of biome and thickness of this layer
9071
9072         node_stone = "default:bluestone",
9073         -- Node that replaces all stone nodes between roughly y_min and y_max.
9074
9075         node_water_top = "default:ice",
9076         depth_water_top = 10,
9077         -- Node forming a surface layer in seawater with the defined thickness
9078
9079         node_water = "",
9080         -- Node that replaces all seawater nodes not in the surface layer
9081
9082         node_river_water = "default:ice",
9083         -- Node that replaces river water in mapgens that use
9084         -- default:river_water
9085
9086         node_riverbed = "default:gravel",
9087         depth_riverbed = 2,
9088         -- Node placed under river water and thickness of this layer
9089
9090         node_cave_liquid = "default:lava_source",
9091         node_cave_liquid = {"default:water_source", "default:lava_source"},
9092         -- Nodes placed inside 50% of the medium size caves.
9093         -- Multiple nodes can be specified, each cave will use a randomly
9094         -- chosen node from the list.
9095         -- If this field is left out or 'nil', cave liquids fall back to
9096         -- classic behavior of lava and water distributed using 3D noise.
9097         -- For no cave liquid, specify "air".
9098
9099         node_dungeon = "default:cobble",
9100         -- Node used for primary dungeon structure.
9101         -- If absent, dungeon nodes fall back to the 'mapgen_cobble' mapgen
9102         -- alias, if that is also absent, dungeon nodes fall back to the biome
9103         -- 'node_stone'.
9104         -- If present, the following two nodes are also used.
9105
9106         node_dungeon_alt = "default:mossycobble",
9107         -- Node used for randomly-distributed alternative structure nodes.
9108         -- If alternative structure nodes are not wanted leave this absent.
9109
9110         node_dungeon_stair = "stairs:stair_cobble",
9111         -- Node used for dungeon stairs.
9112         -- If absent, stairs fall back to 'node_dungeon'.
9113
9114         y_max = 31000,
9115         y_min = 1,
9116         -- Upper and lower limits for biome.
9117         -- Alternatively you can use xyz limits as shown below.
9118
9119         max_pos = {x = 31000, y = 128, z = 31000},
9120         min_pos = {x = -31000, y = 9, z = -31000},
9121         -- xyz limits for biome, an alternative to using 'y_min' and 'y_max'.
9122         -- Biome is limited to a cuboid defined by these positions.
9123         -- Any x, y or z field left undefined defaults to -31000 in 'min_pos' or
9124         -- 31000 in 'max_pos'.
9125
9126         vertical_blend = 8,
9127         -- Vertical distance in nodes above 'y_max' over which the biome will
9128         -- blend with the biome above.
9129         -- Set to 0 for no vertical blend. Defaults to 0.
9130
9131         heat_point = 0,
9132         humidity_point = 50,
9133         -- Characteristic temperature and humidity for the biome.
9134         -- These values create 'biome points' on a voronoi diagram with heat and
9135         -- humidity as axes. The resulting voronoi cells determine the
9136         -- distribution of the biomes.
9137         -- Heat and humidity have average values of 50, vary mostly between
9138         -- 0 and 100 but can exceed these values.
9139     }
9140
9141 Decoration definition
9142 ---------------------
9143
9144 See [Decoration types]. Used by `minetest.register_decoration`.
9145
9146     {
9147         deco_type = "simple",
9148         -- Type. "simple" or "schematic" supported
9149
9150         place_on = "default:dirt_with_grass",
9151         -- Node (or list of nodes) that the decoration can be placed on
9152
9153         sidelen = 8,
9154         -- Size of the square (X / Z) divisions of the mapchunk being generated.
9155         -- Determines the resolution of noise variation if used.
9156         -- If the chunk size is not evenly divisible by sidelen, sidelen is made
9157         -- equal to the chunk size.
9158
9159         fill_ratio = 0.02,
9160         -- The value determines 'decorations per surface node'.
9161         -- Used only if noise_params is not specified.
9162         -- If >= 10.0 complete coverage is enabled and decoration placement uses
9163         -- a different and much faster method.
9164
9165         noise_params = {
9166             offset = 0,
9167             scale = 0.45,
9168             spread = {x = 100, y = 100, z = 100},
9169             seed = 354,
9170             octaves = 3,
9171             persistence = 0.7,
9172             lacunarity = 2.0,
9173             flags = "absvalue"
9174         },
9175         -- NoiseParams structure describing the perlin noise used for decoration
9176         -- distribution.
9177         -- A noise value is calculated for each square division and determines
9178         -- 'decorations per surface node' within each division.
9179         -- If the noise value >= 10.0 complete coverage is enabled and
9180         -- decoration placement uses a different and much faster method.
9181
9182         biomes = {"Oceanside", "Hills", "Plains"},
9183         -- List of biomes in which this decoration occurs. Occurs in all biomes
9184         -- if this is omitted, and ignored if the Mapgen being used does not
9185         -- support biomes.
9186         -- Can be a list of (or a single) biome names, IDs, or definitions.
9187
9188         y_min = -31000,
9189         y_max = 31000,
9190         -- Lower and upper limits for decoration (inclusive).
9191         -- These parameters refer to the Y co-ordinate of the 'place_on' node.
9192
9193         spawn_by = "default:water",
9194         -- Node (or list of nodes) that the decoration only spawns next to.
9195         -- Checks the 8 neighboring nodes on the same Y, and also the ones
9196         -- at Y+1, excluding both center nodes.
9197
9198         num_spawn_by = 1,
9199         -- Number of spawn_by nodes that must be surrounding the decoration
9200         -- position to occur.
9201         -- If absent or -1, decorations occur next to any nodes.
9202
9203         flags = "liquid_surface, force_placement, all_floors, all_ceilings",
9204         -- Flags for all decoration types.
9205         -- "liquid_surface": Instead of placement on the highest solid surface
9206         --   in a mapchunk column, placement is on the highest liquid surface.
9207         --   Placement is disabled if solid nodes are found above the liquid
9208         --   surface.
9209         -- "force_placement": Nodes other than "air" and "ignore" are replaced
9210         --   by the decoration.
9211         -- "all_floors", "all_ceilings": Instead of placement on the highest
9212         --   surface in a mapchunk the decoration is placed on all floor and/or
9213         --   ceiling surfaces, for example in caves and dungeons.
9214         --   Ceiling decorations act as an inversion of floor decorations so the
9215         --   effect of 'place_offset_y' is inverted.
9216         --   Y-slice probabilities do not function correctly for ceiling
9217         --   schematic decorations as the behavior is unchanged.
9218         --   If a single decoration registration has both flags the floor and
9219         --   ceiling decorations will be aligned vertically.
9220
9221         ----- Simple-type parameters
9222
9223         decoration = "default:grass",
9224         -- The node name used as the decoration.
9225         -- If instead a list of strings, a randomly selected node from the list
9226         -- is placed as the decoration.
9227
9228         height = 1,
9229         -- Decoration height in nodes.
9230         -- If height_max is not 0, this is the lower limit of a randomly
9231         -- selected height.
9232
9233         height_max = 0,
9234         -- Upper limit of the randomly selected height.
9235         -- If absent, the parameter 'height' is used as a constant.
9236
9237         param2 = 0,
9238         -- Param2 value of decoration nodes.
9239         -- If param2_max is not 0, this is the lower limit of a randomly
9240         -- selected param2.
9241
9242         param2_max = 0,
9243         -- Upper limit of the randomly selected param2.
9244         -- If absent, the parameter 'param2' is used as a constant.
9245
9246         place_offset_y = 0,
9247         -- Y offset of the decoration base node relative to the standard base
9248         -- node position.
9249         -- Can be positive or negative. Default is 0.
9250         -- Effect is inverted for "all_ceilings" decorations.
9251         -- Ignored by 'y_min', 'y_max' and 'spawn_by' checks, which always refer
9252         -- to the 'place_on' node.
9253
9254         ----- Schematic-type parameters
9255
9256         schematic = "foobar.mts",
9257         -- If schematic is a string, it is the filepath relative to the current
9258         -- working directory of the specified Minetest schematic file.
9259         -- Could also be the ID of a previously registered schematic.
9260
9261         schematic = {
9262             size = {x = 4, y = 6, z = 4},
9263             data = {
9264                 {name = "default:cobble", param1 = 255, param2 = 0},
9265                 {name = "default:dirt_with_grass", param1 = 255, param2 = 0},
9266                 {name = "air", param1 = 255, param2 = 0},
9267                  ...
9268             },
9269             yslice_prob = {
9270                 {ypos = 2, prob = 128},
9271                 {ypos = 5, prob = 64},
9272                  ...
9273             },
9274         },
9275         -- Alternative schematic specification by supplying a table. The fields
9276         -- size and data are mandatory whereas yslice_prob is optional.
9277         -- See 'Schematic specifier' for details.
9278
9279         replacements = {["oldname"] = "convert_to", ...},
9280         -- Map of node names to replace in the schematic after reading it.
9281
9282         flags = "place_center_x, place_center_y, place_center_z",
9283         -- Flags for schematic decorations. See 'Schematic attributes'.
9284
9285         rotation = "90",
9286         -- Rotation can be "0", "90", "180", "270", or "random"
9287
9288         place_offset_y = 0,
9289         -- If the flag 'place_center_y' is set this parameter is ignored.
9290         -- Y offset of the schematic base node layer relative to the 'place_on'
9291         -- node.
9292         -- Can be positive or negative. Default is 0.
9293         -- Effect is inverted for "all_ceilings" decorations.
9294         -- Ignored by 'y_min', 'y_max' and 'spawn_by' checks, which always refer
9295         -- to the 'place_on' node.
9296     }
9297
9298 Chat command definition
9299 -----------------------
9300
9301 Used by `minetest.register_chatcommand`.
9302
9303     {
9304         params = "<name> <privilege>",  -- Short parameter description
9305
9306         description = "Remove privilege from player",  -- Full description
9307
9308         privs = {privs=true},  -- Require the "privs" privilege to run
9309
9310         func = function(name, param),
9311         -- Called when command is run. Returns boolean success and text output.
9312         -- Special case: The help message is shown to the player if `func`
9313         -- returns false without a text output.
9314     }
9315
9316 Note that in params, use of symbols is as follows:
9317
9318 * `<>` signifies a placeholder to be replaced when the command is used. For
9319   example, when a player name is needed: `<name>`
9320 * `[]` signifies param is optional and not required when the command is used.
9321   For example, if you require param1 but param2 is optional:
9322   `<param1> [<param2>]`
9323 * `|` signifies exclusive or. The command requires one param from the options
9324   provided. For example: `<param1> | <param2>`
9325 * `()` signifies grouping. For example, when param1 and param2 are both
9326   required, or only param3 is required: `(<param1> <param2>) | <param3>`
9327
9328 Privilege definition
9329 --------------------
9330
9331 Used by `minetest.register_privilege`.
9332
9333     {
9334         description = "",
9335         -- Privilege description
9336
9337         give_to_singleplayer = true,
9338         -- Whether to grant the privilege to singleplayer.
9339
9340         give_to_admin = true,
9341         -- Whether to grant the privilege to the server admin.
9342         -- Uses value of 'give_to_singleplayer' by default.
9343
9344         on_grant = function(name, granter_name),
9345         -- Called when given to player 'name' by 'granter_name'.
9346         -- 'granter_name' will be nil if the priv was granted by a mod.
9347
9348         on_revoke = function(name, revoker_name),
9349         -- Called when taken from player 'name' by 'revoker_name'.
9350         -- 'revoker_name' will be nil if the priv was revoked by a mod.
9351
9352         -- Note that the above two callbacks will be called twice if a player is
9353         -- responsible, once with the player name, and then with a nil player
9354         -- name.
9355         -- Return true in the above callbacks to stop register_on_priv_grant or
9356         -- revoke being called.
9357     }
9358
9359 Detached inventory callbacks
9360 ----------------------------
9361
9362 Used by `minetest.create_detached_inventory`.
9363
9364     {
9365         allow_move = function(inv, from_list, from_index, to_list, to_index, count, player),
9366         -- Called when a player wants to move items inside the inventory.
9367         -- Return value: number of items allowed to move.
9368
9369         allow_put = function(inv, listname, index, stack, player),
9370         -- Called when a player wants to put something into the inventory.
9371         -- Return value: number of items allowed to put.
9372         -- Return value -1: Allow and don't modify item count in inventory.
9373
9374         allow_take = function(inv, listname, index, stack, player),
9375         -- Called when a player wants to take something out of the inventory.
9376         -- Return value: number of items allowed to take.
9377         -- Return value -1: Allow and don't modify item count in inventory.
9378
9379         on_move = function(inv, from_list, from_index, to_list, to_index, count, player),
9380         on_put = function(inv, listname, index, stack, player),
9381         on_take = function(inv, listname, index, stack, player),
9382         -- Called after the actual action has happened, according to what was
9383         -- allowed.
9384         -- No return value.
9385     }
9386
9387 HUD Definition
9388 --------------
9389
9390 Since most values have multiple different functions, please see the
9391 documentation in [HUD] section.
9392
9393 Used by `ObjectRef:hud_add`. Returned by `ObjectRef:hud_get`.
9394
9395     {
9396         hud_elem_type = "image",
9397         -- Type of element, can be "image", "text", "statbar", "inventory",
9398         -- "waypoint", "image_waypoint", "compass" or "minimap"
9399
9400         position = {x=0.5, y=0.5},
9401         -- Top left corner position of element
9402
9403         name = "<name>",
9404
9405         scale = {x = 1, y = 1},
9406
9407         text = "<text>",
9408
9409         text2 = "<text>",
9410
9411         number = 0,
9412
9413         item = 0,
9414
9415         direction = 0,
9416         -- Direction: 0: left-right, 1: right-left, 2: top-bottom, 3: bottom-top
9417
9418         alignment = {x=0, y=0},
9419
9420         offset = {x=0, y=0},
9421
9422         world_pos = {x=0, y=0, z=0},
9423
9424         size = {x=0, y=0},
9425
9426         z_index = 0,
9427         -- Z index: lower z-index HUDs are displayed behind higher z-index HUDs
9428
9429         style = 0,
9430     }
9431
9432 Particle definition
9433 -------------------
9434
9435 Used by `minetest.add_particle`.
9436
9437     {
9438         pos = {x=0, y=0, z=0},
9439         velocity = {x=0, y=0, z=0},
9440         acceleration = {x=0, y=0, z=0},
9441         -- Spawn particle at pos with velocity and acceleration
9442
9443         expirationtime = 1,
9444         -- Disappears after expirationtime seconds
9445
9446         size = 1,
9447         -- Scales the visual size of the particle texture.
9448         -- If `node` is set, size can be set to 0 to spawn a randomly-sized
9449         -- particle (just like actual node dig particles).
9450
9451         collisiondetection = false,
9452         -- If true collides with `walkable` nodes and, depending on the
9453         -- `object_collision` field, objects too.
9454
9455         collision_removal = false,
9456         -- If true particle is removed when it collides.
9457         -- Requires collisiondetection = true to have any effect.
9458
9459         object_collision = false,
9460         -- If true particle collides with objects that are defined as
9461         -- `physical = true,` and `collide_with_objects = true,`.
9462         -- Requires collisiondetection = true to have any effect.
9463
9464         vertical = false,
9465         -- If true faces player using y axis only
9466
9467         texture = "image.png",
9468         -- The texture of the particle
9469         -- v5.6.0 and later: also supports the table format described in the
9470         -- following section
9471
9472         playername = "singleplayer",
9473         -- Optional, if specified spawns particle only on the player's client
9474
9475         animation = {Tile Animation definition},
9476         -- Optional, specifies how to animate the particle texture
9477
9478         glow = 0
9479         -- Optional, specify particle self-luminescence in darkness.
9480         -- Values 0-14.
9481
9482         node = {name = "ignore", param2 = 0},
9483         -- Optional, if specified the particle will have the same appearance as
9484         -- node dig particles for the given node.
9485         -- `texture` and `animation` will be ignored if this is set.
9486
9487         node_tile = 0,
9488         -- Optional, only valid in combination with `node`
9489         -- If set to a valid number 1-6, specifies the tile from which the
9490         -- particle texture is picked.
9491         -- Otherwise, the default behavior is used. (currently: any random tile)
9492
9493         drag = {x=0, y=0, z=0},
9494         -- v5.6.0 and later: Optional drag value, consult the following section
9495
9496         bounce = {min = ..., max = ..., bias = 0},
9497         -- v5.6.0 and later: Optional bounce range, consult the following section
9498     }
9499
9500
9501 `ParticleSpawner` definition
9502 ----------------------------
9503
9504 Used by `minetest.add_particlespawner`.
9505
9506 Before v5.6.0, particlespawners used a different syntax and had a more limited set
9507 of features. Definition fields that are the same in both legacy and modern versions
9508 are shown in the next listing, and the fields that are used by legacy versions are
9509 shown separated by a comment; the modern fields are too complex to compactly
9510 describe in this manner and are documented after the listing.
9511
9512 The older syntax can be used in combination with the newer syntax (e.g. having
9513 `minpos`, `maxpos`, and `pos` all set) to support older servers. On newer servers,
9514 the new syntax will override the older syntax; on older servers, the newer syntax
9515 will be ignored.
9516
9517     {
9518         -- Common fields (same name and meaning in both new and legacy syntax)
9519
9520         amount = 1,
9521         -- Number of particles spawned over the time period `time`.
9522
9523         time = 1,
9524         -- Lifespan of spawner in seconds.
9525         -- If time is 0 spawner has infinite lifespan and spawns the `amount` on
9526         -- a per-second basis.
9527
9528         collisiondetection = false,
9529         -- If true collide with `walkable` nodes and, depending on the
9530         -- `object_collision` field, objects too.
9531
9532         collision_removal = false,
9533         -- If true particles are removed when they collide.
9534         -- Requires collisiondetection = true to have any effect.
9535
9536         object_collision = false,
9537         -- If true particles collide with objects that are defined as
9538         -- `physical = true,` and `collide_with_objects = true,`.
9539         -- Requires collisiondetection = true to have any effect.
9540
9541         attached = ObjectRef,
9542         -- If defined, particle positions, velocities and accelerations are
9543         -- relative to this object's position and yaw
9544
9545         vertical = false,
9546         -- If true face player using y axis only
9547
9548         texture = "image.png",
9549         -- The texture of the particle
9550
9551         playername = "singleplayer",
9552         -- Optional, if specified spawns particles only on the player's client
9553
9554         animation = {Tile Animation definition},
9555         -- Optional, specifies how to animate the particles' texture
9556         -- v5.6.0 and later: set length to -1 to synchronize the length
9557         -- of the animation with the expiration time of individual particles.
9558         -- (-2 causes the animation to be played twice, and so on)
9559
9560         glow = 0,
9561         -- Optional, specify particle self-luminescence in darkness.
9562         -- Values 0-14.
9563
9564         node = {name = "ignore", param2 = 0},
9565         -- Optional, if specified the particles will have the same appearance as
9566         -- node dig particles for the given node.
9567         -- `texture` and `animation` will be ignored if this is set.
9568
9569         node_tile = 0,
9570         -- Optional, only valid in combination with `node`
9571         -- If set to a valid number 1-6, specifies the tile from which the
9572         -- particle texture is picked.
9573         -- Otherwise, the default behavior is used. (currently: any random tile)
9574
9575         -- Legacy definition fields
9576
9577         minpos = {x=0, y=0, z=0},
9578         maxpos = {x=0, y=0, z=0},
9579         minvel = {x=0, y=0, z=0},
9580         maxvel = {x=0, y=0, z=0},
9581         minacc = {x=0, y=0, z=0},
9582         maxacc = {x=0, y=0, z=0},
9583         minexptime = 1,
9584         maxexptime = 1,
9585         minsize = 1,
9586         maxsize = 1,
9587         -- The particles' properties are random values between the min and max
9588         -- values.
9589         -- applies to: pos, velocity, acceleration, expirationtime, size
9590         -- If `node` is set, min and maxsize can be set to 0 to spawn
9591         -- randomly-sized particles (just like actual node dig particles).
9592     }
9593
9594 ### Modern definition fields
9595
9596 After v5.6.0, spawner properties can be defined in several different ways depending
9597 on the level of control you need. `pos` for instance can be set as a single vector,
9598 in which case all particles will appear at that exact point throughout the lifetime
9599 of the spawner. Alternately, it can be specified as a min-max pair, specifying a
9600 cubic range the particles can appear randomly within. Finally, some properties can
9601 be animated by suffixing their key with `_tween` (e.g. `pos_tween`) and supplying
9602 a tween table.
9603
9604 The following definitions are all equivalent, listed in order of precedence from
9605 lowest (the legacy syntax) to highest (tween tables). If multiple forms of a
9606 property definition are present, the highest-precedence form will be selected
9607 and all lower-precedence fields will be ignored, allowing for graceful
9608 degradation in older clients).
9609
9610     {
9611       -- old syntax
9612       maxpos = {x = 0, y = 0, z = 0},
9613       minpos = {x = 0, y = 0, z = 0},
9614
9615       -- absolute value
9616       pos = 0,
9617       -- all components of every particle's position vector will be set to this
9618       -- value
9619
9620       -- vec3
9621       pos = vector.new(0,0,0),
9622       -- all particles will appear at this exact position throughout the lifetime
9623       -- of the particlespawner
9624
9625       -- vec3 range
9626       pos = {
9627             -- the particle will appear at a position that is picked at random from
9628             -- within a cubic range
9629
9630             min = vector.new(0,0,0),
9631             -- `min` is the minimum value this property will be set to in particles
9632             -- spawned by the generator
9633
9634             max = vector.new(0,0,0),
9635             -- `max` is the minimum value this property will be set to in particles
9636             -- spawned by the generator
9637
9638             bias = 0,
9639             -- when `bias` is 0, all random values are exactly as likely as any
9640             -- other. when it is positive, the higher it is, the more likely values
9641             -- will appear towards the minimum end of the allowed spectrum. when
9642             -- it is negative, the lower it is, the more likely values will appear
9643             -- towards the maximum end of the allowed spectrum. the curve is
9644             -- exponential and there is no particular maximum or minimum value
9645         },
9646
9647         -- tween table
9648         pos_tween = {...},
9649         -- a tween table should consist of a list of frames in the same form as the
9650         -- untweened pos property above, which the engine will interpolate between,
9651         -- and optionally a number of properties that control how the interpolation
9652         -- takes place. currently **only two frames**, the first and the last, are
9653         -- used, but extra frames are accepted for the sake of forward compatibility.
9654         -- any of the above definition styles can be used here as well in any combination
9655         -- supported by the property type
9656
9657         pos_tween = {
9658             style = "fwd",
9659             -- linear animation from first to last frame (default)
9660             style = "rev",
9661             -- linear animation from last to first frame
9662             style = "pulse",
9663             -- linear animation from first to last then back to first again
9664             style = "flicker",
9665             -- like "pulse", but slightly randomized to add a bit of stutter
9666
9667             reps = 1,
9668             -- number of times the animation is played over the particle's lifespan
9669
9670             start = 0.0,
9671             -- point in the spawner's lifespan at which the animation begins. 0 is
9672             -- the very beginning, 1 is the very end
9673
9674             -- frames can be defined in a number of different ways, depending on the
9675             -- underlying type of the property. for now, all but the first and last
9676             -- frame are ignored
9677
9678             -- frames
9679
9680                 -- floats
9681                 0, 0,
9682
9683                 -- vec3s
9684                 vector.new(0,0,0),
9685                 vector.new(0,0,0),
9686
9687                 -- vec3 ranges
9688                 { min = vector.new(0,0,0), max = vector.new(0,0,0), bias = 0 },
9689                 { min = vector.new(0,0,0), max = vector.new(0,0,0), bias = 0 },
9690
9691                 -- mixed
9692                 0, { min = vector.new(0,0,0), max = vector.new(0,0,0), bias = 0 },
9693         },
9694     }
9695
9696 All of the properties that can be defined in this way are listed in the next
9697 section, along with the datatypes they accept.
9698
9699 #### List of particlespawner properties
9700 All of the properties in this list can be animated with `*_tween` tables
9701 unless otherwise specified. For example, `jitter` can be tweened by setting
9702 a `jitter_tween` table instead of (or in addition to) a `jitter` table/value.
9703 Types used are defined in the previous section.
9704
9705 * vec3 range `pos`: the position at which particles can appear
9706 * vec3 range `vel`: the initial velocity of the particle
9707 * vec3 range `acc`: the direction and speed with which the particle
9708   accelerates
9709 * vec3 range `jitter`: offsets the velocity of each particle by a random
9710   amount within the specified range each frame. used to create Brownian motion.
9711 * vec3 range `drag`: the amount by which absolute particle velocity along
9712   each axis is decreased per second.  a value of 1.0 means that the particle
9713   will be slowed to a stop over the space of a second; a value of -1.0 means
9714   that the particle speed will be doubled every second. to avoid interfering
9715   with gravity provided by `acc`, a drag vector like `vector.new(1,0,1)` can
9716   be used instead of a uniform value.
9717 * float range `bounce`: how bouncy the particles are when `collisiondetection`
9718   is turned on. values less than or equal to `0` turn off particle bounce;
9719   `1` makes the particles bounce without losing any velocity, and `2` makes
9720   them double their velocity with every bounce.  `bounce` is not bounded but
9721   values much larger than `1.0` probably aren't very useful.
9722 * float range `exptime`: the number of seconds after which the particle
9723   disappears.
9724 * table `attract`: sets the birth orientation of particles relative to various
9725   shapes defined in world coordinate space. this is an alternative means of
9726   setting the velocity which allows particles to emerge from or enter into
9727   some entity or node on the map, rather than simply being assigned random
9728   velocity values within a range. the velocity calculated by this method will
9729   be **added** to that specified by `vel` if `vel` is also set, so in most
9730   cases **`vel` should be set to 0**. `attract` has the fields:
9731   * string `kind`: selects the kind of shape towards which the particles will
9732     be oriented. it must have one of the following values:
9733     * `"none"`: no attractor is set and the `attractor` table is ignored
9734     * `"point"`: the particles are attracted to a specific point in space.
9735       use this also if you want a sphere-like effect, in combination with
9736       the `radius` property.
9737     * `"line"`: the particles are attracted to an (infinite) line passing
9738       through the points `origin` and `angle`. use this for e.g. beacon
9739       effects, energy beam effects, etc.
9740     * `"plane"`: the particles are attracted to an (infinite) plane on whose
9741       surface `origin` designates a point in world coordinate space. use this
9742       for e.g. particles entering or emerging from a portal.
9743   * float range `strength`: the speed with which particles will move towards
9744     `attractor`. If negative, the particles will instead move away from that
9745     point.
9746   * vec3 `origin`: the origin point of the shape towards which particles will
9747     initially be oriented. functions as an offset if `origin_attached` is also
9748     set.
9749   * vec3 `direction`: sets the direction in which the attractor shape faces. for
9750     lines, this sets the angle of the line; e.g. a vector of (0,1,0) will
9751     create a vertical line that passes through `origin`. for planes, `direction`
9752     is the surface normal of an infinite plane on whose surface `origin` is
9753     a point. functions as an offset if `direction_attached` is also set.
9754   * entity `origin_attached`: allows the origin to be specified as an offset
9755     from the position of an entity rather than a coordinate in world space.
9756   * entity `direction_attached`: allows the direction to be specified as an offset
9757     from the position of an entity rather than a coordinate in world space.
9758   * bool `die_on_contact`: if true, the particles' lifetimes are adjusted so
9759     that they will die as they cross the attractor threshold. this behavior
9760     is the default but is undesirable for some kinds of animations; set it to
9761     false to allow particles to live out their natural lives.
9762 * vec3 range `radius`: if set, particles will be arranged in a sphere around
9763   `pos`. A constant can be used to create a spherical shell of particles, a
9764   vector to create an ovoid shell, and a range to create a volume; e.g.
9765   `{min = 0.5, max = 1, bias = 1}` will allow particles to appear between 0.5
9766   and 1 nodes away from `pos` but will cluster them towards the center of the
9767   sphere. Usually if `radius` is used, `pos` should be a single point, but it
9768   can still be a range if you really know what you're doing (e.g. to create a
9769   "roundcube" emitter volume).
9770
9771 ### Textures
9772
9773 In versions before v5.6.0, particlespawner textures could only be specified as a single
9774 texture string. After v5.6.0, textures can now be specified as a table as well. This
9775 table contains options that allow simple animations to be applied to the texture.
9776
9777     texture = {
9778         name = "mymod_particle_texture.png",
9779         -- the texture specification string
9780
9781         alpha = 1.0,
9782         -- controls how visible the particle is; at 1.0 the particle is fully
9783         -- visible, at 0, it is completely invisible.
9784
9785         alpha_tween = {1, 0},
9786         -- can be used instead of `alpha` to animate the alpha value over the
9787         -- particle's lifetime. these tween tables work identically to the tween
9788         -- tables used in particlespawner properties, except that time references
9789         -- are understood with respect to the particle's lifetime, not the
9790         -- spawner's. {1,0} fades the particle out over its lifetime.
9791
9792         scale = 1,
9793         scale = {x = 1, y = 1},
9794         -- scales the texture onscreen
9795
9796         scale_tween = {
9797             {x = 1, y = 1},
9798             {x = 0, y = 1},
9799         },
9800         -- animates the scale over the particle's lifetime. works like the
9801         -- alpha_tween table, but can accept two-dimensional vectors as well as
9802         -- integer values. the example value would cause the particle to shrink
9803         -- in one dimension over the course of its life until it disappears
9804
9805         blend = "alpha",
9806         -- (default) blends transparent pixels with those they are drawn atop
9807         -- according to the alpha channel of the source texture. useful for
9808         -- e.g. material objects like rocks, dirt, smoke, or node chunks
9809         blend = "add",
9810         -- adds the value of pixels to those underneath them, modulo the sources
9811         -- alpha channel. useful for e.g. bright light effects like sparks or fire
9812         blend = "screen",
9813         -- like "add" but less bright. useful for subtler light effects. note that
9814         -- this is NOT formally equivalent to the "screen" effect used in image
9815         -- editors and compositors, as it does not respect the alpha channel of
9816         -- of the image being blended
9817         blend = "sub",
9818         -- the inverse of "add"; the value of the source pixel is subtracted from
9819         -- the pixel underneath it. a white pixel will turn whatever is underneath
9820         -- it black; a black pixel will be "transparent". useful for creating
9821         -- darkening effects
9822
9823         animation = {Tile Animation definition},
9824         -- overrides the particlespawner's global animation property for a single
9825         -- specific texture
9826     }
9827
9828 Instead of setting a single texture definition, it is also possible to set a
9829 `texpool` property. A `texpool` consists of a list of possible particle textures.
9830 Every time a particle is spawned, the engine will pick a texture at random from
9831 the `texpool` and assign it as that particle's texture. You can also specify a
9832 `texture` in addition to a `texpool`; the `texture` value will be ignored on newer
9833 clients but will be sent to older (pre-v5.6.0) clients that do not implement
9834 texpools.
9835
9836     texpool = {
9837         "mymod_particle_texture.png";
9838         { name = "mymod_spark.png", fade = "out" },
9839         {
9840           name = "mymod_dust.png",
9841           alpha = 0.3,
9842           scale = 1.5,
9843           animation = {
9844                 type = "vertical_frames",
9845                 aspect_w = 16, aspect_h = 16,
9846
9847                 length = 3,
9848                 -- the animation lasts for 3s and then repeats
9849                 length = -3,
9850                 -- repeat the animation three times over the particle's lifetime
9851                 -- (post-v5.6.0 clients only)
9852           },
9853         },
9854   }
9855
9856 #### List of animatable texture properties
9857
9858 While animated particlespawner values vary over the course of the particlespawner's
9859 lifetime, animated texture properties vary over the lifespans of the individual
9860 particles spawned with that texture. So a particle with the texture property
9861
9862     alpha_tween = {
9863         0.0, 1.0,
9864         style = "pulse",
9865         reps = 4,
9866     }
9867
9868 would be invisible at its spawning, pulse visible four times throughout its
9869 lifespan, and then vanish again before expiring.
9870
9871 * float `alpha` (0.0 - 1.0): controls the visibility of the texture
9872 * vec2 `scale`: controls the size of the displayed billboard onscreen. Its units
9873   are multiples of the parent particle's assigned size (see the `size` property above)
9874
9875 `HTTPRequest` definition
9876 ------------------------
9877
9878 Used by `HTTPApiTable.fetch` and `HTTPApiTable.fetch_async`.
9879
9880     {
9881         url = "http://example.org",
9882
9883         timeout = 10,
9884         -- Timeout for request to be completed in seconds. Default depends on engine settings.
9885
9886         method = "GET", "POST", "PUT" or "DELETE"
9887         -- The http method to use. Defaults to "GET".
9888
9889         data = "Raw request data string" OR {field1 = "data1", field2 = "data2"},
9890         -- Data for the POST, PUT or DELETE request.
9891         -- Accepts both a string and a table. If a table is specified, encodes
9892         -- table as x-www-form-urlencoded key-value pairs.
9893
9894         user_agent = "ExampleUserAgent",
9895         -- Optional, if specified replaces the default minetest user agent with
9896         -- given string
9897
9898         extra_headers = { "Accept-Language: en-us", "Accept-Charset: utf-8" },
9899         -- Optional, if specified adds additional headers to the HTTP request.
9900         -- You must make sure that the header strings follow HTTP specification
9901         -- ("Key: Value").
9902
9903         multipart = boolean
9904         -- Optional, if true performs a multipart HTTP request.
9905         -- Default is false.
9906         -- Post only, data must be array
9907
9908         post_data = "Raw POST request data string" OR {field1 = "data1", field2 = "data2"},
9909         -- Deprecated, use `data` instead. Forces `method = "POST"`.
9910     }
9911
9912 `HTTPRequestResult` definition
9913 ------------------------------
9914
9915 Passed to `HTTPApiTable.fetch` callback. Returned by
9916 `HTTPApiTable.fetch_async_get`.
9917
9918     {
9919         completed = true,
9920         -- If true, the request has finished (either succeeded, failed or timed
9921         -- out)
9922
9923         succeeded = true,
9924         -- If true, the request was successful
9925
9926         timeout = false,
9927         -- If true, the request timed out
9928
9929         code = 200,
9930         -- HTTP status code
9931
9932         data = "response"
9933     }
9934
9935 Authentication handler definition
9936 ---------------------------------
9937
9938 Used by `minetest.register_authentication_handler`.
9939
9940     {
9941         get_auth = function(name),
9942         -- Get authentication data for existing player `name` (`nil` if player
9943         -- doesn't exist).
9944         -- Returns following structure:
9945         -- `{password=<string>, privileges=<table>, last_login=<number or nil>}`
9946
9947         create_auth = function(name, password),
9948         -- Create new auth data for player `name`.
9949         -- Note that `password` is not plain-text but an arbitrary
9950         -- representation decided by the engine.
9951
9952         delete_auth = function(name),
9953         -- Delete auth data of player `name`.
9954         -- Returns boolean indicating success (false if player is nonexistent).
9955
9956         set_password = function(name, password),
9957         -- Set password of player `name` to `password`.
9958         -- Auth data should be created if not present.
9959
9960         set_privileges = function(name, privileges),
9961         -- Set privileges of player `name`.
9962         -- `privileges` is in table form, auth data should be created if not
9963         -- present.
9964
9965         reload = function(),
9966         -- Reload authentication data from the storage location.
9967         -- Returns boolean indicating success.
9968
9969         record_login = function(name),
9970         -- Called when player joins, used for keeping track of last_login
9971
9972         iterate = function(),
9973         -- Returns an iterator (use with `for` loops) for all player names
9974         -- currently in the auth database
9975     }
9976
9977 Bit Library
9978 -----------
9979
9980 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
9981
9982 See http://bitop.luajit.org/ for advanced information.
9983
9984 Error Handling
9985 --------------
9986
9987 When an error occurs that is not caught, Minetest calls the function
9988 `minetest.error_handler` with the error object as its first argument. The second
9989 argument is the stack level where the error occurred. The return value is the
9990 error string that should be shown. By default this is a backtrace from
9991 `debug.traceback`. If the error object is not a string, it is first converted
9992 with `tostring` before being displayed. This means that you can use tables as
9993 error objects so long as you give them `__tostring` metamethods.
9994
9995 You can override `minetest.error_handler`. You should call the previous handler
9996 with the correct stack level in your implementation.