client_lua_api.txt 62 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532
  1. Minetest Lua Client Modding API Reference 5.7.0
  2. ================================================
  3. * More information at <http://www.minetest.net/>
  4. * Developer Wiki: <http://dev.minetest.net/>
  5. Introduction
  6. ------------
  7. ** WARNING: The client API is currently unstable, and may break/change without warning. **
  8. Content and functionality can be added to Minetest 0.4.15-dev+ by using Lua
  9. scripting in run-time loaded mods.
  10. A mod is a self-contained bunch of scripts, textures and other related
  11. things that is loaded by and interfaces with Minetest.
  12. Transferring client-sided mods from the server to the client is planned, but not implemented yet.
  13. If you see a deficiency in the API, feel free to attempt to add the
  14. functionality in the engine and API. You can send such improvements as
  15. source code patches on GitHub (https://github.com/minetest/minetest).
  16. Programming in Lua
  17. ------------------
  18. If you have any difficulty in understanding this, please read
  19. [Programming in Lua](http://www.lua.org/pil/).
  20. Startup
  21. -------
  22. Mods are loaded during client startup from the mod load paths by running
  23. the `init.lua` scripts in a shared environment.
  24. In order to load client-side mods, the following conditions need to be satisfied:
  25. 1) `$path_user/minetest.conf` contains the setting `enable_client_modding = true`
  26. 2) The client-side mod located in `$path_user/clientmods/<modname>` is added to
  27. `$path_user/clientmods/mods.conf` as `load_mod_<modname> = true`.
  28. Note: Depending on the remote server's settings, client-side mods might not
  29. be loaded or have limited functionality. See setting `csm_restriction_flags` for reference.
  30. Paths
  31. -----
  32. * `RUN_IN_PLACE=1` (Windows release, local build)
  33. * `$path_user`: `<build directory>`
  34. * `$path_share`: `<build directory>`
  35. * `RUN_IN_PLACE=0`: (Linux release)
  36. * `$path_share`:
  37. * Linux: `/usr/share/minetest`
  38. * Windows: `<install directory>/minetest-0.4.x`
  39. * `$path_user`:
  40. * Linux: `$HOME/.minetest`
  41. * Windows: `C:/users/<user>/AppData/minetest` (maybe)
  42. Mod load path
  43. -------------
  44. Generic:
  45. * `$path_share/clientmods/`
  46. * `$path_user/clientmods/` (User-installed mods)
  47. In a run-in-place version (e.g. the distributed windows version):
  48. * `minetest-0.4.x/clientmods/` (User-installed mods)
  49. On an installed version on Linux:
  50. * `/usr/share/minetest/clientmods/`
  51. * `$HOME/.minetest/clientmods/` (User-installed mods)
  52. Modpack support
  53. ----------------
  54. Mods can be put in a subdirectory, if the parent directory, which otherwise
  55. should be a mod, contains a file named `modpack.conf`.
  56. The file is a key-value store of modpack details.
  57. * `name`: The modpack name.
  58. * `description`: Description of mod to be shown in the Mods tab of the main
  59. menu.
  60. Mod directory structure
  61. ------------------------
  62. clientmods
  63. ├── modname
  64. │   ├── mod.conf
  65. │   ├── init.lua
  66. └── another
  67. ### modname
  68. The location of this directory.
  69. ### mod.conf
  70. An (optional) settings file that provides meta information about the mod.
  71. * `name`: The mod name. Allows Minetest to determine the mod name even if the
  72. folder is wrongly named.
  73. * `description`: Description of mod to be shown in the Mods tab of the main
  74. menu.
  75. * `depends`: A comma separated list of dependencies. These are mods that must be
  76. loaded before this mod.
  77. * `optional_depends`: A comma separated list of optional dependencies.
  78. Like a dependency, but no error if the mod doesn't exist.
  79. ### `init.lua`
  80. The main Lua script. Running this script should register everything it
  81. wants to register. Subsequent execution depends on minetest calling the
  82. registered callbacks.
  83. **NOTE**: Client mods currently can't provide textures, sounds, or models by
  84. themselves. Any media referenced in function calls must already be loaded
  85. (provided by mods that exist on the server).
  86. Naming convention for registered textual names
  87. ----------------------------------------------
  88. Registered names should generally be in this format:
  89. "modname:<whatever>" (<whatever> can have characters a-zA-Z0-9_)
  90. This is to prevent conflicting names from corrupting maps and is
  91. enforced by the mod loader.
  92. ### Example
  93. In the mod `experimental`, there is the ideal item/node/entity name `tnt`.
  94. So the name should be `experimental:tnt`.
  95. Enforcement can be overridden by prefixing the name with `:`. This can
  96. be used for overriding the registrations of some other mod.
  97. Example: Any mod can redefine `experimental:tnt` by using the name
  98. :experimental:tnt
  99. when registering it.
  100. (also that mod is required to have `experimental` as a dependency)
  101. The `:` prefix can also be used for maintaining backwards compatibility.
  102. Sounds
  103. ------
  104. **NOTE: Connecting sounds to objects is not implemented.**
  105. Only Ogg Vorbis files are supported.
  106. For positional playing of sounds, only single-channel (mono) files are
  107. supported. Otherwise OpenAL will play them non-positionally.
  108. Mods should generally prefix their sounds with `modname_`, e.g. given
  109. the mod name "`foomod`", a sound could be called:
  110. foomod_foosound.ogg
  111. Sounds are referred to by their name with a dot, a single digit and the
  112. file extension stripped out. When a sound is played, the actual sound file
  113. is chosen randomly from the matching sounds.
  114. When playing the sound `foomod_foosound`, the sound is chosen randomly
  115. from the available ones of the following files:
  116. * `foomod_foosound.ogg`
  117. * `foomod_foosound.0.ogg`
  118. * `foomod_foosound.1.ogg`
  119. * (...)
  120. * `foomod_foosound.9.ogg`
  121. Examples of sound parameter tables:
  122. -- Play locationless
  123. {
  124. gain = 1.0, -- default
  125. }
  126. -- Play locationless, looped
  127. {
  128. gain = 1.0, -- default
  129. loop = true,
  130. }
  131. -- Play in a location
  132. {
  133. pos = {x = 1, y = 2, z = 3},
  134. gain = 1.0, -- default
  135. }
  136. -- Play connected to an object, looped
  137. {
  138. object = <an ObjectRef>,
  139. gain = 1.0, -- default
  140. loop = true,
  141. }
  142. Looped sounds must either be connected to an object or played locationless.
  143. ### SimpleSoundSpec
  144. * e.g. `""`
  145. * e.g. `"default_place_node"`
  146. * e.g. `{}`
  147. * e.g. `{name = "default_place_node"}`
  148. * e.g. `{name = "default_place_node", gain = 1.0}`
  149. Representations of simple things
  150. --------------------------------
  151. ### Position/vector
  152. {x=num, y=num, z=num}
  153. For helper functions see "Vector helpers".
  154. ### pointed_thing
  155. * `{type="nothing"}`
  156. * `{type="node", under=pos, above=pos}`
  157. * `{type="object", id=ObjectID}`
  158. Flag Specifier Format
  159. ---------------------
  160. Flags using the standardized flag specifier format can be specified in either of
  161. two ways, by string or table.
  162. The string format is a comma-delimited set of flag names; whitespace and
  163. unrecognized flag fields are ignored. Specifying a flag in the string sets the
  164. flag, and specifying a flag prefixed by the string `"no"` explicitly
  165. clears the flag from whatever the default may be.
  166. In addition to the standard string flag format, the schematic flags field can
  167. also be a table of flag names to boolean values representing whether or not the
  168. flag is set. Additionally, if a field with the flag name prefixed with `"no"`
  169. is present, mapped to a boolean of any value, the specified flag is unset.
  170. E.g. A flag field of value
  171. {place_center_x = true, place_center_y=false, place_center_z=true}
  172. is equivalent to
  173. {place_center_x = true, noplace_center_y=true, place_center_z=true}
  174. which is equivalent to
  175. "place_center_x, noplace_center_y, place_center_z"
  176. or even
  177. "place_center_x, place_center_z"
  178. since, by default, no schematic attributes are set.
  179. Formspec
  180. --------
  181. Formspec defines a menu. It is a string, with a somewhat strange format.
  182. Spaces and newlines can be inserted between the blocks, as is used in the
  183. examples.
  184. ### Examples
  185. #### Chest
  186. size[8,9]
  187. list[context;main;0,0;8,4;]
  188. list[current_player;main;0,5;8,4;]
  189. #### Furnace
  190. size[8,9]
  191. list[context;fuel;2,3;1,1;]
  192. list[context;src;2,1;1,1;]
  193. list[context;dst;5,1;2,2;]
  194. list[current_player;main;0,5;8,4;]
  195. #### Minecraft-like player inventory
  196. size[8,7.5]
  197. image[1,0.6;1,2;player.png]
  198. list[current_player;main;0,3.5;8,4;]
  199. list[current_player;craft;3,0;3,3;]
  200. list[current_player;craftpreview;7,1;1,1;]
  201. ### Elements
  202. #### `size[<W>,<H>,<fixed_size>]`
  203. * Define the size of the menu in inventory slots
  204. * `fixed_size`: `true`/`false` (optional)
  205. * deprecated: `invsize[<W>,<H>;]`
  206. #### `container[<X>,<Y>]`
  207. * Start of a container block, moves all physical elements in the container by (X, Y)
  208. * Must have matching container_end
  209. * Containers can be nested, in which case the offsets are added
  210. (child containers are relative to parent containers)
  211. #### `container_end[]`
  212. * End of a container, following elements are no longer relative to this container
  213. #### `list[<inventory location>;<list name>;<X>,<Y>;<W>,<H>;]`
  214. * Show an inventory list
  215. #### `list[<inventory location>;<list name>;<X>,<Y>;<W>,<H>;<starting item index>]`
  216. * Show an inventory list
  217. #### `listring[<inventory location>;<list name>]`
  218. * Allows to create a ring of inventory lists
  219. * Shift-clicking on items in one element of the ring
  220. will send them to the next inventory list inside the ring
  221. * The first occurrence of an element inside the ring will
  222. determine the inventory where items will be sent to
  223. #### `listring[]`
  224. * Shorthand for doing `listring[<inventory location>;<list name>]`
  225. for the last two inventory lists added by list[...]
  226. #### `listcolors[<slot_bg_normal>;<slot_bg_hover>]`
  227. * Sets background color of slots as `ColorString`
  228. * Sets background color of slots on mouse hovering
  229. #### `listcolors[<slot_bg_normal>;<slot_bg_hover>;<slot_border>]`
  230. * Sets background color of slots as `ColorString`
  231. * Sets background color of slots on mouse hovering
  232. * Sets color of slots border
  233. #### `listcolors[<slot_bg_normal>;<slot_bg_hover>;<slot_border>;<tooltip_bgcolor>;<tooltip_fontcolor>]`
  234. * Sets background color of slots as `ColorString`
  235. * Sets background color of slots on mouse hovering
  236. * Sets color of slots border
  237. * Sets default background color of tooltips
  238. * Sets default font color of tooltips
  239. #### `tooltip[<gui_element_name>;<tooltip_text>;<bgcolor>,<fontcolor>]`
  240. * Adds tooltip for an element
  241. * `<bgcolor>` tooltip background color as `ColorString` (optional)
  242. * `<fontcolor>` tooltip font color as `ColorString` (optional)
  243. #### `image[<X>,<Y>;<W>,<H>;<texture name>]`
  244. * Show an image
  245. * Position and size units are inventory slots
  246. #### `item_image[<X>,<Y>;<W>,<H>;<item name>]`
  247. * Show an inventory image of registered item/node
  248. * Position and size units are inventory slots
  249. #### `bgcolor[<color>;<fullscreen>]`
  250. * Sets background color of formspec as `ColorString`
  251. * If `true`, the background color is drawn fullscreen (does not affect the size of the formspec)
  252. #### `background[<X>,<Y>;<W>,<H>;<texture name>]`
  253. * Use a background. Inventory rectangles are not drawn then.
  254. * Position and size units are inventory slots
  255. * Example for formspec 8x4 in 16x resolution: image shall be sized
  256. 8 times 16px times 4 times 16px.
  257. #### `background[<X>,<Y>;<W>,<H>;<texture name>;<auto_clip>]`
  258. * Use a background. Inventory rectangles are not drawn then.
  259. * Position and size units are inventory slots
  260. * Example for formspec 8x4 in 16x resolution:
  261. image shall be sized 8 times 16px times 4 times 16px
  262. * If `true` the background is clipped to formspec size
  263. (`x` and `y` are used as offset values, `w` and `h` are ignored)
  264. #### `pwdfield[<X>,<Y>;<W>,<H>;<name>;<label>]`
  265. * Textual password style field; will be sent to server when a button is clicked
  266. * When enter is pressed in field, fields.key_enter_field will be sent with the name
  267. of this field.
  268. * `x` and `y` position the field relative to the top left of the menu
  269. * `w` and `h` are the size of the field
  270. * Fields are a set height, but will be vertically centered on `h`
  271. * Position and size units are inventory slots
  272. * `name` is the name of the field as returned in fields to `on_receive_fields`
  273. * `label`, if not blank, will be text printed on the top left above the field
  274. * See field_close_on_enter to stop enter closing the formspec
  275. #### `field[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]`
  276. * Textual field; will be sent to server when a button is clicked
  277. * When enter is pressed in field, fields.key_enter_field will be sent with the name
  278. of this field.
  279. * `x` and `y` position the field relative to the top left of the menu
  280. * `w` and `h` are the size of the field
  281. * Fields are a set height, but will be vertically centered on `h`
  282. * Position and size units are inventory slots
  283. * `name` is the name of the field as returned in fields to `on_receive_fields`
  284. * `label`, if not blank, will be text printed on the top left above the field
  285. * `default` is the default value of the field
  286. * `default` may contain variable references such as `${text}'` which
  287. will fill the value from the metadata value `text`
  288. * **Note**: no extra text or more than a single variable is supported ATM.
  289. * See field_close_on_enter to stop enter closing the formspec
  290. #### `field[<name>;<label>;<default>]`
  291. * As above, but without position/size units
  292. * When enter is pressed in field, fields.key_enter_field will be sent with the name
  293. of this field.
  294. * Special field for creating simple forms, such as sign text input
  295. * Must be used without a `size[]` element
  296. * A "Proceed" button will be added automatically
  297. * See field_close_on_enter to stop enter closing the formspec
  298. #### `field_close_on_enter[<name>;<close_on_enter>]`
  299. * <name> is the name of the field
  300. * if <close_on_enter> is false, pressing enter in the field will submit the form but not close it
  301. * defaults to true when not specified (ie: no tag for a field)
  302. #### `textarea[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]`
  303. * Same as fields above, but with multi-line input
  304. #### `label[<X>,<Y>;<label>]`
  305. * `x` and `y` work as per field
  306. * `label` is the text on the label
  307. * Position and size units are inventory slots
  308. #### `vertlabel[<X>,<Y>;<label>]`
  309. * Textual label drawn vertically
  310. * `x` and `y` work as per field
  311. * `label` is the text on the label
  312. * Position and size units are inventory slots
  313. #### `button[<X>,<Y>;<W>,<H>;<name>;<label>]`
  314. * Clickable button. When clicked, fields will be sent.
  315. * `x`, `y` and `name` work as per field
  316. * `w` and `h` are the size of the button
  317. * Fixed button height. It will be vertically centered on `h`
  318. * `label` is the text on the button
  319. * Position and size units are inventory slots
  320. #### `image_button[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>]`
  321. * `x`, `y`, `w`, `h`, and `name` work as per button
  322. * `texture name` is the filename of an image
  323. * Position and size units are inventory slots
  324. #### `image_button[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>;<noclip>;<drawborder>;<pressed texture name>]`
  325. * `x`, `y`, `w`, `h`, and `name` work as per button
  326. * `texture name` is the filename of an image
  327. * Position and size units are inventory slots
  328. * `noclip=true` means the image button doesn't need to be within specified formsize
  329. * `drawborder`: draw button border or not
  330. * `pressed texture name` is the filename of an image on pressed state
  331. #### `item_image_button[<X>,<Y>;<W>,<H>;<item name>;<name>;<label>]`
  332. * `x`, `y`, `w`, `h`, `name` and `label` work as per button
  333. * `item name` is the registered name of an item/node,
  334. tooltip will be made out of its description
  335. to override it use tooltip element
  336. * Position and size units are inventory slots
  337. #### `button_exit[<X>,<Y>;<W>,<H>;<name>;<label>]`
  338. * When clicked, fields will be sent and the form will quit.
  339. #### `image_button_exit[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>]`
  340. * When clicked, fields will be sent and the form will quit.
  341. #### `textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>]`
  342. * Scrollable item list showing arbitrary text elements
  343. * `x` and `y` position the itemlist relative to the top left of the menu
  344. * `w` and `h` are the size of the itemlist
  345. * `name` fieldname sent to server on doubleclick value is current selected element
  346. * `listelements` can be prepended by #color in hexadecimal format RRGGBB (only),
  347. * if you want a listelement to start with "#" write "##".
  348. #### `textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>;<selected idx>;<transparent>]`
  349. * Scrollable itemlist showing arbitrary text elements
  350. * `x` and `y` position the item list relative to the top left of the menu
  351. * `w` and `h` are the size of the item list
  352. * `name` fieldname sent to server on doubleclick value is current selected element
  353. * `listelements` can be prepended by #RRGGBB (only) in hexadecimal format
  354. * if you want a listelement to start with "#" write "##"
  355. * Index to be selected within textlist
  356. * `true`/`false`: draw transparent background
  357. * See also `minetest.explode_textlist_event` (main menu: `engine.explode_textlist_event`)
  358. #### `tabheader[<X>,<Y>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]`
  359. * Show a tab**header** at specific position (ignores formsize)
  360. * `x` and `y` position the itemlist relative to the top left of the menu
  361. * `name` fieldname data is transferred to Lua
  362. * `caption 1`...: name shown on top of tab
  363. * `current_tab`: index of selected tab 1...
  364. * `transparent` (optional): show transparent
  365. * `draw_border` (optional): draw border
  366. #### `box[<X>,<Y>;<W>,<H>;<color>]`
  367. * Simple colored semitransparent box
  368. * `x` and `y` position the box relative to the top left of the menu
  369. * `w` and `h` are the size of box
  370. * `color` is color specified as a `ColorString`
  371. #### `dropdown[<X>,<Y>;<W>;<name>;<item 1>,<item 2>, ...,<item n>;<selected idx>]`
  372. * Show a dropdown field
  373. * **Important note**: There are two different operation modes:
  374. 1. handle directly on change (only changed dropdown is submitted)
  375. 2. read the value on pressing a button (all dropdown values are available)
  376. * `x` and `y` position of dropdown
  377. * Width of dropdown
  378. * Fieldname data is transferred to Lua
  379. * Items to be shown in dropdown
  380. * Index of currently selected dropdown item
  381. #### `checkbox[<X>,<Y>;<name>;<label>;<selected>]`
  382. * Show a checkbox
  383. * `x` and `y`: position of checkbox
  384. * `name` fieldname data is transferred to Lua
  385. * `label` to be shown left of checkbox
  386. * `selected` (optional): `true`/`false`
  387. #### `scrollbar[<X>,<Y>;<W>,<H>;<orientation>;<name>;<value>]`
  388. * Show a scrollbar
  389. * There are two ways to use it:
  390. 1. handle the changed event (only changed scrollbar is available)
  391. 2. read the value on pressing a button (all scrollbars are available)
  392. * `x` and `y`: position of trackbar
  393. * `w` and `h`: width and height
  394. * `orientation`: `vertical`/`horizontal`
  395. * Fieldname data is transferred to Lua
  396. * Value this trackbar is set to (`0`-`1000`)
  397. * See also `minetest.explode_scrollbar_event` (main menu: `engine.explode_scrollbar_event`)
  398. #### `table[<X>,<Y>;<W>,<H>;<name>;<cell 1>,<cell 2>,...,<cell n>;<selected idx>]`
  399. * Show scrollable table using options defined by the previous `tableoptions[]`
  400. * Displays cells as defined by the previous `tablecolumns[]`
  401. * `x` and `y`: position the itemlist relative to the top left of the menu
  402. * `w` and `h` are the size of the itemlist
  403. * `name`: fieldname sent to server on row select or doubleclick
  404. * `cell 1`...`cell n`: cell contents given in row-major order
  405. * `selected idx`: index of row to be selected within table (first row = `1`)
  406. * See also `minetest.explode_table_event` (main menu: `engine.explode_table_event`)
  407. #### `tableoptions[<opt 1>;<opt 2>;...]`
  408. * Sets options for `table[]`
  409. * `color=#RRGGBB`
  410. * default text color (`ColorString`), defaults to `#FFFFFF`
  411. * `background=#RRGGBB`
  412. * table background color (`ColorString`), defaults to `#000000`
  413. * `border=<true/false>`
  414. * should the table be drawn with a border? (default: `true`)
  415. * `highlight=#RRGGBB`
  416. * highlight background color (`ColorString`), defaults to `#466432`
  417. * `highlight_text=#RRGGBB`
  418. * highlight text color (`ColorString`), defaults to `#FFFFFF`
  419. * `opendepth=<value>`
  420. * all subtrees up to `depth < value` are open (default value = `0`)
  421. * only useful when there is a column of type "tree"
  422. #### `tablecolumns[<type 1>,<opt 1a>,<opt 1b>,...;<type 2>,<opt 2a>,<opt 2b>;...]`
  423. * Sets columns for `table[]`
  424. * Types: `text`, `image`, `color`, `indent`, `tree`
  425. * `text`: show cell contents as text
  426. * `image`: cell contents are an image index, use column options to define images
  427. * `color`: cell contents are a ColorString and define color of following cell
  428. * `indent`: cell contents are a number and define indentation of following cell
  429. * `tree`: same as indent, but user can open and close subtrees (treeview-like)
  430. * Column options:
  431. * `align=<value>`
  432. * for `text` and `image`: content alignment within cells.
  433. Available values: `left` (default), `center`, `right`, `inline`
  434. * `width=<value>`
  435. * for `text` and `image`: minimum width in em (default: `0`)
  436. * for `indent` and `tree`: indent width in em (default: `1.5`)
  437. * `padding=<value>`: padding left of the column, in em (default `0.5`).
  438. Exception: defaults to 0 for indent columns
  439. * `tooltip=<value>`: tooltip text (default: empty)
  440. * `image` column options:
  441. * `0=<value>` sets image for image index 0
  442. * `1=<value>` sets image for image index 1
  443. * `2=<value>` sets image for image index 2
  444. * and so on; defined indices need not be contiguous empty or
  445. non-numeric cells are treated as `0`.
  446. * `color` column options:
  447. * `span=<value>`: number of following columns to affect (default: infinite)
  448. **Note**: do _not_ use an element name starting with `key_`; those names are reserved to
  449. pass key press events to formspec!
  450. Spatial Vectors
  451. ---------------
  452. * `vector.new(a[, b, c])`: returns a vector:
  453. * A copy of `a` if `a` is a vector.
  454. * `{x = a, y = b, z = c}`, if all `a, b, c` are defined
  455. * `vector.direction(p1, p2)`: returns a vector
  456. * `vector.distance(p1, p2)`: returns a number
  457. * `vector.length(v)`: returns a number
  458. * `vector.normalize(v)`: returns a vector
  459. * `vector.floor(v)`: returns a vector, each dimension rounded down
  460. * `vector.round(v)`: returns a vector, each dimension rounded to nearest int
  461. * `vector.apply(v, func)`: returns a vector
  462. * `vector.combine(v, w, func)`: returns a vector
  463. * `vector.equals(v1, v2)`: returns a boolean
  464. For the following functions `x` can be either a vector or a number:
  465. * `vector.add(v, x)`: returns a vector
  466. * `vector.subtract(v, x)`: returns a vector
  467. * `vector.multiply(v, x)`: returns a scaled vector or Schur product
  468. * `vector.divide(v, x)`: returns a scaled vector or Schur quotient
  469. Helper functions
  470. ----------------
  471. * `dump2(obj, name="_", dumped={})`
  472. * Return object serialized as a string, handles reference loops
  473. * `dump(obj, dumped={})`
  474. * Return object serialized as a string
  475. * `math.hypot(x, y)`
  476. * Get the hypotenuse of a triangle with legs x and y.
  477. Useful for distance calculation.
  478. * `math.sign(x, tolerance)`
  479. * Get the sign of a number.
  480. Optional: Also returns `0` when the absolute value is within the tolerance (default: `0`)
  481. * `string.split(str, separator=",", include_empty=false, max_splits=-1, sep_is_pattern=false)`
  482. * If `max_splits` is negative, do not limit splits.
  483. * `sep_is_pattern` specifies if separator is a plain string or a pattern (regex).
  484. * e.g. `string:split("a,b", ",") == {"a","b"}`
  485. * `string:trim()`
  486. * e.g. `string.trim("\n \t\tfoo bar\t ") == "foo bar"`
  487. * `minetest.wrap_text(str, limit)`: returns a string
  488. * Adds new lines to the string to keep it within the specified character limit
  489. * limit: Maximal amount of characters in one line
  490. * `minetest.pos_to_string({x=X,y=Y,z=Z}, decimal_places))`: returns string `"(X,Y,Z)"`
  491. * Convert position to a printable string
  492. Optional: 'decimal_places' will round the x, y and z of the pos to the given decimal place.
  493. * `minetest.string_to_pos(string)`: returns a position
  494. * Same but in reverse. Returns `nil` if the string can't be parsed to a position.
  495. * `minetest.string_to_area("(X1, Y1, Z1) (X2, Y2, Z2)")`: returns two positions
  496. * Converts a string representing an area box into two positions
  497. * `minetest.is_yes(arg)`
  498. * returns whether `arg` can be interpreted as yes
  499. * `minetest.is_nan(arg)`
  500. * returns true when the passed number represents NaN.
  501. * `table.copy(table)`: returns a table
  502. * returns a deep copy of `table`
  503. Minetest namespace reference
  504. ------------------------------
  505. ### Utilities
  506. * `minetest.get_current_modname()`: returns the currently loading mod's name, when we are loading a mod
  507. * `minetest.get_modpath(modname)`: returns virtual path of given mod including
  508. the trailing separator. This is useful to load additional Lua files
  509. contained in your mod:
  510. e.g. `dofile(minetest.get_modpath(minetest.get_current_modname()) .. "stuff.lua")`
  511. * `minetest.get_language()`: returns two strings
  512. * the current gettext locale
  513. * the current language code (the same as used for client-side translations)
  514. * `minetest.get_version()`: returns a table containing components of the
  515. engine version. Components:
  516. * `project`: Name of the project, eg, "Minetest"
  517. * `string`: Simple version, eg, "1.2.3-dev"
  518. * `hash`: Full git version (only set if available), eg, "1.2.3-dev-01234567-dirty"
  519. Use this for informational purposes only. The information in the returned
  520. table does not represent the capabilities of the engine, nor is it
  521. reliable or verifiable. Compatible forks will have a different name and
  522. version entirely. To check for the presence of engine features, test
  523. whether the functions exported by the wanted features exist. For example:
  524. `if minetest.check_for_falling then ... end`.
  525. * `minetest.sha1(data, [raw])`: returns the sha1 hash of data
  526. * `data`: string of data to hash
  527. * `raw`: return raw bytes instead of hex digits, default: false
  528. * `minetest.colorspec_to_colorstring(colorspec)`: Converts a ColorSpec to a
  529. ColorString. If the ColorSpec is invalid, returns `nil`.
  530. * `colorspec`: The ColorSpec to convert
  531. * `minetest.get_csm_restrictions()`: returns a table of `Flags` indicating the
  532. restrictions applied to the current mod.
  533. * If a flag in this table is set to true, the feature is RESTRICTED.
  534. * Possible flags: `load_client_mods`, `chat_messages`, `read_itemdefs`,
  535. `read_nodedefs`, `lookup_nodes`, `read_playerinfo`
  536. ### Logging
  537. * `minetest.debug(...)`
  538. * Equivalent to `minetest.log(table.concat({...}, "\t"))`
  539. * `minetest.log([level,] text)`
  540. * `level` is one of `"none"`, `"error"`, `"warning"`, `"action"`,
  541. `"info"`, or `"verbose"`. Default is `"none"`.
  542. ### Global callback registration functions
  543. Call these functions only at load time!
  544. * `minetest.register_globalstep(function(dtime))`
  545. * Called every client environment step, usually interval of 0.1s
  546. * `minetest.register_on_mods_loaded(function())`
  547. * Called just after mods have finished loading.
  548. * `minetest.register_on_shutdown(function())`
  549. * Called before client shutdown
  550. * **Warning**: If the client terminates abnormally (i.e. crashes), the registered
  551. callbacks **will likely not be run**. Data should be saved at
  552. semi-frequent intervals as well as on server shutdown.
  553. * `minetest.register_on_receiving_chat_message(function(message))`
  554. * Called always when a client receive a message
  555. * Return `true` to mark the message as handled, which means that it will not be shown to chat
  556. * `minetest.register_on_sending_chat_message(function(message))`
  557. * Called always when a client sends a message from chat
  558. * Return `true` to mark the message as handled, which means that it will not be sent to server
  559. * `minetest.register_chatcommand(cmd, chatcommand definition)`
  560. * Adds definition to minetest.registered_chatcommands
  561. * `minetest.unregister_chatcommand(name)`
  562. * Unregisters a chatcommands registered with register_chatcommand.
  563. * `minetest.register_on_chatcommand(function(command, params))`
  564. * Called always when a chatcommand is triggered, before `minetest.registered_chatcommands`
  565. is checked to see if the command exists, but after the input is parsed.
  566. * Return `true` to mark the command as handled, which means that the default
  567. handlers will be prevented.
  568. * `minetest.register_on_death(function())`
  569. * Called when the local player dies
  570. * `minetest.register_on_hp_modification(function(hp))`
  571. * Called when server modified player's HP
  572. * `minetest.register_on_damage_taken(function(hp))`
  573. * Called when the local player take damages
  574. * `minetest.register_on_formspec_input(function(formname, fields))`
  575. * Called when a button is pressed in the local player's inventory form
  576. * Newest functions are called first
  577. * If function returns `true`, remaining functions are not called
  578. * `minetest.register_on_dignode(function(pos, node))`
  579. * Called when the local player digs a node
  580. * Newest functions are called first
  581. * If any function returns true, the node isn't dug
  582. * `minetest.register_on_punchnode(function(pos, node))`
  583. * Called when the local player punches a node
  584. * Newest functions are called first
  585. * If any function returns true, the punch is ignored
  586. * `minetest.register_on_placenode(function(pointed_thing, node))`
  587. * Called when a node has been placed
  588. * `minetest.register_on_item_use(function(item, pointed_thing))`
  589. * Called when the local player uses an item.
  590. * Newest functions are called first.
  591. * If any function returns true, the item use is not sent to server.
  592. * `minetest.register_on_modchannel_message(function(channel_name, sender, message))`
  593. * Called when an incoming mod channel message is received
  594. * You must have joined some channels before, and server must acknowledge the
  595. join request.
  596. * If message comes from a server mod, `sender` field is an empty string.
  597. * `minetest.register_on_modchannel_signal(function(channel_name, signal))`
  598. * Called when a valid incoming mod channel signal is received
  599. * Signal id permit to react to server mod channel events
  600. * Possible values are:
  601. 0: join_ok
  602. 1: join_failed
  603. 2: leave_ok
  604. 3: leave_failed
  605. 4: event_on_not_joined_channel
  606. 5: state_changed
  607. * `minetest.register_on_inventory_open(function(inventory))`
  608. * Called when the local player open inventory
  609. * Newest functions are called first
  610. * If any function returns true, inventory doesn't open
  611. ### Sounds
  612. * `minetest.sound_play(spec, parameters)`: returns a handle
  613. * `spec` is a `SimpleSoundSpec`
  614. * `parameters` is a sound parameter table
  615. * `minetest.sound_stop(handle)`
  616. * `handle` is a handle returned by `minetest.sound_play`
  617. * `minetest.sound_fade(handle, step, gain)`
  618. * `handle` is a handle returned by `minetest.sound_play`
  619. * `step` determines how fast a sound will fade.
  620. Negative step will lower the sound volume, positive step will increase
  621. the sound volume.
  622. * `gain` the target gain for the fade.
  623. ### Timing
  624. * `minetest.after(time, func, ...)`
  625. * Call the function `func` after `time` seconds, may be fractional
  626. * Optional: Variable number of arguments that are passed to `func`
  627. * `minetest.get_us_time()`
  628. * Returns time with microsecond precision. May not return wall time.
  629. * `minetest.get_timeofday()`
  630. * Returns the time of day: `0` for midnight, `0.5` for midday
  631. ### Map
  632. * `minetest.get_node_or_nil(pos)`
  633. * Returns the node at the given position as table in the format
  634. `{name="node_name", param1=0, param2=0}`, returns `nil`
  635. for unloaded areas or flavor limited areas.
  636. * `minetest.get_node_light(pos, timeofday)`
  637. * Gets the light value at the given position. Note that the light value
  638. "inside" the node at the given position is returned, so you usually want
  639. to get the light value of a neighbor.
  640. * `pos`: The position where to measure the light.
  641. * `timeofday`: `nil` for current time, `0` for night, `0.5` for day
  642. * Returns a number between `0` and `15` or `nil`
  643. * `minetest.find_node_near(pos, radius, nodenames, [search_center])`: returns pos or `nil`
  644. * `radius`: using a maximum metric
  645. * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
  646. * `search_center` is an optional boolean (default: `false`)
  647. If true `pos` is also checked for the nodes
  648. * `minetest.find_nodes_in_area(pos1, pos2, nodenames, [grouped])`
  649. * `pos1` and `pos2` are the min and max positions of the area to search.
  650. * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
  651. * If `grouped` is true the return value is a table indexed by node name
  652. which contains lists of positions.
  653. * If `grouped` is false or absent the return values are as follows:
  654. first value: Table with all node positions
  655. second value: Table with the count of each node with the node name
  656. as index
  657. * Area volume is limited to 4,096,000 nodes
  658. * `minetest.find_nodes_in_area_under_air(pos1, pos2, nodenames)`: returns a
  659. list of positions.
  660. * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
  661. * Return value: Table with all node positions with a node air above
  662. * Area volume is limited to 4,096,000 nodes
  663. * `minetest.line_of_sight(pos1, pos2)`: returns `boolean, pos`
  664. * Checks if there is anything other than air between pos1 and pos2.
  665. * Returns false if something is blocking the sight.
  666. * Returns the position of the blocking node when `false`
  667. * `pos1`: First position
  668. * `pos2`: Second position
  669. * `minetest.raycast(pos1, pos2, objects, liquids)`: returns `Raycast`
  670. * Creates a `Raycast` object.
  671. * `pos1`: start of the ray
  672. * `pos2`: end of the ray
  673. * `objects`: if false, only nodes will be returned. Default is `true`.
  674. * `liquids`: if false, liquid nodes won't be returned. Default is `false`.
  675. * `minetest.find_nodes_with_meta(pos1, pos2)`
  676. * Get a table of positions of nodes that have metadata within a region
  677. {pos1, pos2}.
  678. * `minetest.get_meta(pos)`
  679. * Get a `NodeMetaRef` at that position
  680. * `minetest.get_node_level(pos)`
  681. * get level of leveled node (water, snow)
  682. * `minetest.get_node_max_level(pos)`
  683. * get max available level for leveled node
  684. ### Player
  685. * `minetest.send_chat_message(message)`
  686. * Act as if `message` was typed by the player into the terminal.
  687. * `minetest.run_server_chatcommand(cmd, param)`
  688. * Alias for `minetest.send_chat_message("/" .. cmd .. " " .. param)`
  689. * `minetest.clear_out_chat_queue()`
  690. * Clears the out chat queue
  691. * `minetest.localplayer`
  692. * Reference to the LocalPlayer object. See [`LocalPlayer`](#localplayer) class reference for methods.
  693. ### Privileges
  694. * `minetest.get_privilege_list()`
  695. * Returns a list of privileges the current player has in the format `{priv1=true,...}`
  696. * `minetest.string_to_privs(str)`: returns `{priv1=true,...}`
  697. * `minetest.privs_to_string(privs)`: returns `"priv1,priv2,..."`
  698. * Convert between two privilege representations
  699. ### Client Environment
  700. * `minetest.get_player_names()`
  701. * Returns list of player names on server (nil if CSM_RF_READ_PLAYERINFO is enabled by server)
  702. * `minetest.disconnect()`
  703. * Disconnect from the server and exit to main menu.
  704. * Returns `false` if the client is already disconnecting otherwise returns `true`.
  705. * `minetest.get_server_info()`
  706. * Returns [server info](#server-info).
  707. * `minetest.send_respawn()`
  708. * Sends a respawn request to the server.
  709. ### Storage API
  710. * `minetest.get_mod_storage()`:
  711. * returns reference to mod private `StorageRef`
  712. * must be called during mod load time
  713. ### Mod channels
  714. ![Mod channels communication scheme](docs/mod channels.png)
  715. * `minetest.mod_channel_join(channel_name)`
  716. * Client joins channel `channel_name`, and creates it, if necessary. You
  717. should listen from incoming messages with `minetest.register_on_modchannel_message`
  718. call to receive incoming messages. Warning, this function is asynchronous.
  719. ### Particles
  720. * `minetest.add_particle(particle definition)`
  721. * `minetest.add_particlespawner(particlespawner definition)`
  722. * Add a `ParticleSpawner`, an object that spawns an amount of particles over `time` seconds
  723. * Returns an `id`, and -1 if adding didn't succeed
  724. * `minetest.delete_particlespawner(id)`
  725. * Delete `ParticleSpawner` with `id` (return value from `minetest.add_particlespawner`)
  726. ### Misc.
  727. * `minetest.parse_json(string[, nullvalue])`: returns something
  728. * Convert a string containing JSON data into the Lua equivalent
  729. * `nullvalue`: returned in place of the JSON null; defaults to `nil`
  730. * On success returns a table, a string, a number, a boolean or `nullvalue`
  731. * On failure outputs an error message and returns `nil`
  732. * Example: `parse_json("[10, {\"a\":false}]")`, returns `{10, {a = false}}`
  733. * `minetest.write_json(data[, styled])`: returns a string or `nil` and an error message
  734. * Convert a Lua table into a JSON string
  735. * styled: Outputs in a human-readable format if this is set, defaults to false
  736. * Unserializable things like functions and userdata are saved as null.
  737. * **Warning**: JSON is more strict than the Lua table format.
  738. 1. You can only use strings and positive integers of at least one as keys.
  739. 2. You cannot mix string and integer keys.
  740. This is due to the fact that JSON has two distinct array and object values.
  741. * Example: `write_json({10, {a = false}})`, returns `"[10, {\"a\": false}]"`
  742. * `minetest.serialize(table)`: returns a string
  743. * Convert a table containing tables, strings, numbers, booleans and `nil`s
  744. into string form readable by `minetest.deserialize`
  745. * Example: `serialize({foo='bar'})`, returns `'return { ["foo"] = "bar" }'`
  746. * `minetest.deserialize(string)`: returns a table
  747. * Convert a string returned by `minetest.deserialize` into a table
  748. * `string` is loaded in an empty sandbox environment.
  749. * Will load functions, but they cannot access the global environment.
  750. * Example: `deserialize('return { ["foo"] = "bar" }')`, returns `{foo='bar'}`
  751. * Example: `deserialize('print("foo")')`, returns `nil` (function call fails)
  752. * `error:[string "print("foo")"]:1: attempt to call global 'print' (a nil value)`
  753. * `minetest.compress(data, method, ...)`: returns `compressed_data`
  754. * Compress a string of data.
  755. * `method` is a string identifying the compression method to be used.
  756. * Supported compression methods:
  757. * Deflate (zlib): `"deflate"`
  758. * Zstandard: `"zstd"`
  759. * `...` indicates method-specific arguments. Currently defined arguments
  760. are:
  761. * Deflate: `level` - Compression level, `0`-`9` or `nil`.
  762. * Zstandard: `level` - Compression level. Integer or `nil`. Default `3`.
  763. Note any supported Zstandard compression level could be used here,
  764. but these are subject to change between Zstandard versions.
  765. * `minetest.decompress(compressed_data, method, ...)`: returns data
  766. * Decompress a string of data using the algorithm specified by `method`.
  767. * See documentation on `minetest.compress()` for supported compression
  768. methods.
  769. * `...` indicates method-specific arguments. Currently, no methods use this
  770. * `minetest.rgba(red, green, blue[, alpha])`: returns a string
  771. * Each argument is an 8 Bit unsigned integer
  772. * Returns the ColorString from rgb or rgba values
  773. * Example: `minetest.rgba(10, 20, 30, 40)`, returns `"#0A141E28"`
  774. * `minetest.encode_base64(string)`: returns string encoded in base64
  775. * Encodes a string in base64.
  776. * `minetest.decode_base64(string)`: returns string or nil on failure
  777. * Padding characters are only supported starting at version 5.4.0, where
  778. 5.5.0 and newer perform proper checks.
  779. * Decodes a string encoded in base64.
  780. * `minetest.gettext(string)` : returns string
  781. * look up the translation of a string in the gettext message catalog
  782. * `fgettext_ne(string, ...)`
  783. * call minetest.gettext(string), replace "$1"..."$9" with the given
  784. extra arguments and return the result
  785. * `fgettext(string, ...)` : returns string
  786. * same as fgettext_ne(), but calls minetest.formspec_escape before returning result
  787. * `minetest.pointed_thing_to_face_pos(placer, pointed_thing)`: returns a position
  788. * returns the exact position on the surface of a pointed node
  789. * `minetest.global_exists(name)`
  790. * Checks if a global variable has been set, without triggering a warning.
  791. ### UI
  792. * `minetest.ui.minimap`
  793. * Reference to the minimap object. See [`Minimap`](#minimap) class reference for methods.
  794. * If client disabled minimap (using enable_minimap setting) this reference will be nil.
  795. * `minetest.camera`
  796. * Reference to the camera object. See [`Camera`](#camera) class reference for methods.
  797. * `minetest.show_formspec(formname, formspec)` : returns true on success
  798. * Shows a formspec to the player
  799. * `minetest.display_chat_message(message)` returns true on success
  800. * Shows a chat message to the current player.
  801. Setting-related
  802. ---------------
  803. * `minetest.settings`: Settings object containing all of the settings from the
  804. main config file (`minetest.conf`). Check lua_api.txt for class reference.
  805. * `minetest.setting_get_pos(name)`: Loads a setting from the main settings and
  806. parses it as a position (in the format `(1,2,3)`). Returns a position or nil.
  807. Class reference
  808. ---------------
  809. ### ModChannel
  810. An interface to use mod channels on client and server
  811. #### Methods
  812. * `leave()`: leave the mod channel.
  813. * Client leaves channel `channel_name`.
  814. * No more incoming or outgoing messages can be sent to this channel from client mods.
  815. * This invalidate all future object usage
  816. * Ensure your set mod_channel to nil after that to free Lua resources
  817. * `is_writeable()`: returns true if channel is writable and mod can send over it.
  818. * `send_all(message)`: Send `message` though the mod channel.
  819. * If mod channel is not writable or invalid, message will be dropped.
  820. * Message size is limited to 65535 characters by protocol.
  821. ### Minimap
  822. An interface to manipulate minimap on client UI
  823. #### Methods
  824. * `show()`: shows the minimap (if not disabled by server)
  825. * `hide()`: hides the minimap
  826. * `set_pos(pos)`: sets the minimap position on screen
  827. * `get_pos()`: returns the minimap current position
  828. * `set_angle(deg)`: sets the minimap angle in degrees
  829. * `get_angle()`: returns the current minimap angle in degrees
  830. * `set_mode(mode)`: sets the minimap mode (0 to 6)
  831. * `get_mode()`: returns the current minimap mode
  832. * `set_shape(shape)`: Sets the minimap shape. (0 = square, 1 = round)
  833. * `get_shape()`: Gets the minimap shape. (0 = square, 1 = round)
  834. ### Camera
  835. An interface to get or set information about the camera and camera-node.
  836. Please do not try to access the reference until the camera is initialized, otherwise the reference will be nil.
  837. #### Methods
  838. * `set_camera_mode(mode)`
  839. * Pass `0` for first-person, `1` for third person, and `2` for third person front
  840. * `get_camera_mode()`
  841. * Returns 0, 1, or 2 as described above
  842. * `get_fov()`
  843. * Returns a table with X, Y, maximum and actual FOV in degrees:
  844. ```lua
  845. {
  846. x = number,
  847. y = number,
  848. max = number,
  849. actual = number
  850. }
  851. ```
  852. * `get_pos()`
  853. * Returns position of camera with view bobbing
  854. * `get_offset()`
  855. * Returns eye offset vector
  856. * `get_look_dir()`
  857. * Returns eye direction unit vector
  858. * `get_look_vertical()`
  859. * Returns pitch in radians
  860. * `get_look_horizontal()`
  861. * Returns yaw in radians
  862. * `get_aspect_ratio()`
  863. * Returns aspect ratio of screen
  864. ### LocalPlayer
  865. An interface to retrieve information about the player.
  866. This object will only be available after the client is initialized. Earlier accesses will yield a `nil` value.
  867. Methods:
  868. * `get_pos()`
  869. * returns current player current position
  870. * `get_velocity()`
  871. * returns player speed vector
  872. * `get_hp()`
  873. * returns player HP
  874. * `get_name()`
  875. * returns player name
  876. * `get_wield_index()`
  877. * returns the index of the wielded item
  878. * `get_wielded_item()`
  879. * returns the itemstack the player is holding
  880. * `is_attached()`
  881. * returns true if player is attached
  882. * `is_touching_ground()`
  883. * returns true if player touching ground
  884. * `is_in_liquid()`
  885. * returns true if player is in a liquid (This oscillates so that the player jumps a bit above the surface)
  886. * `is_in_liquid_stable()`
  887. * returns true if player is in a stable liquid (This is more stable and defines the maximum speed of the player)
  888. * `get_move_resistance()`
  889. * returns move resistance of current node, the higher the slower the player moves
  890. * `is_climbing()`
  891. * returns true if player is climbing
  892. * `swimming_vertical()`
  893. * returns true if player is swimming in vertical
  894. * `get_physics_override()`
  895. * returns:
  896. ```lua
  897. {
  898. speed = float,
  899. jump = float,
  900. gravity = float,
  901. sneak = boolean,
  902. sneak_glitch = boolean,
  903. new_move = boolean,
  904. }
  905. ```
  906. * `get_override_pos()`
  907. * returns override position
  908. * `get_last_pos()`
  909. * returns last player position before the current client step
  910. * `get_last_velocity()`
  911. * returns last player speed
  912. * `get_breath()`
  913. * returns the player's breath
  914. * `get_movement_acceleration()`
  915. * returns acceleration of the player in different environments:
  916. ```lua
  917. {
  918. fast = float,
  919. air = float,
  920. default = float,
  921. }
  922. ```
  923. * `get_movement_speed()`
  924. * returns player's speed in different environments:
  925. ```lua
  926. {
  927. walk = float,
  928. jump = float,
  929. crouch = float,
  930. fast = float,
  931. climb = float,
  932. }
  933. ```
  934. * `get_movement()`
  935. * returns player's movement in different environments:
  936. ```lua
  937. {
  938. liquid_fluidity = float,
  939. liquid_sink = float,
  940. liquid_fluidity_smooth = float,
  941. gravity = float,
  942. }
  943. ```
  944. * `get_last_look_horizontal()`:
  945. * returns last look horizontal angle
  946. * `get_last_look_vertical()`:
  947. * returns last look vertical angle
  948. * `get_control()`:
  949. * returns pressed player controls
  950. ```lua
  951. {
  952. up = boolean,
  953. down = boolean,
  954. left = boolean,
  955. right = boolean,
  956. jump = boolean,
  957. aux1 = boolean,
  958. sneak = boolean,
  959. zoom = boolean,
  960. dig = boolean,
  961. place = boolean,
  962. }
  963. ```
  964. * `get_armor_groups()`
  965. * returns a table with the armor group ratings
  966. * `hud_add(definition)`
  967. * add a HUD element described by HUD def, returns ID number on success and `nil` on failure.
  968. * See [`HUD definition`](#hud-definition-hud_add-hud_get)
  969. * `hud_get(id)`
  970. * returns the [`definition`](#hud-definition-hud_add-hud_get) of the HUD with that ID number or `nil`, if non-existent.
  971. * `hud_remove(id)`
  972. * remove the HUD element of the specified id, returns `true` on success
  973. * `hud_change(id, stat, value)`
  974. * change a value of a previously added HUD element
  975. * element `stat` values: `position`, `name`, `scale`, `text`, `number`, `item`, `dir`
  976. * Returns `true` on success, otherwise returns `nil`
  977. ### Settings
  978. An interface to read config files in the format of `minetest.conf`.
  979. It can be created via `Settings(filename)`.
  980. #### Methods
  981. * `get(key)`: returns a value
  982. * `get_bool(key)`: returns a boolean
  983. * `set(key, value)`
  984. * `remove(key)`: returns a boolean (`true` for success)
  985. * `get_names()`: returns `{key1,...}`
  986. * `write()`: returns a boolean (`true` for success)
  987. * write changes to file
  988. * `to_table()`: returns `{[key1]=value1,...}`
  989. ### NodeMetaRef
  990. Node metadata: reference extra data and functionality stored in a node.
  991. Can be obtained via `minetest.get_meta(pos)`.
  992. #### Methods
  993. * `get_string(name)`
  994. * `get_int(name)`
  995. * `get_float(name)`
  996. * `to_table()`: returns `nil` or a table with keys:
  997. * `fields`: key-value storage
  998. * `inventory`: `{list1 = {}, ...}}`
  999. ### `Raycast`
  1000. A raycast on the map. It works with selection boxes.
  1001. Can be used as an iterator in a for loop as:
  1002. local ray = Raycast(...)
  1003. for pointed_thing in ray do
  1004. ...
  1005. end
  1006. The map is loaded as the ray advances. If the map is modified after the
  1007. `Raycast` is created, the changes may or may not have an effect on the object.
  1008. It can be created via `Raycast(pos1, pos2, objects, liquids)` or
  1009. `minetest.raycast(pos1, pos2, objects, liquids)` where:
  1010. * `pos1`: start of the ray
  1011. * `pos2`: end of the ray
  1012. * `objects`: if false, only nodes will be returned. Default is true.
  1013. * `liquids`: if false, liquid nodes won't be returned. Default is false.
  1014. #### Methods
  1015. * `next()`: returns a `pointed_thing` with exact pointing location
  1016. * Returns the next thing pointed by the ray or nil.
  1017. -----------------
  1018. ### Definitions
  1019. * `minetest.get_node_def(nodename)`
  1020. * Returns [node definition](#node-definition) table of `nodename`
  1021. * `minetest.get_item_def(itemstring)`
  1022. * Returns item definition table of `itemstring`
  1023. #### Node Definition
  1024. ```lua
  1025. {
  1026. has_on_construct = bool, -- Whether the node has the on_construct callback defined
  1027. has_on_destruct = bool, -- Whether the node has the on_destruct callback defined
  1028. has_after_destruct = bool, -- Whether the node has the after_destruct callback defined
  1029. name = string, -- The name of the node e.g. "air", "default:dirt"
  1030. groups = table, -- The groups of the node
  1031. paramtype = string, -- Paramtype of the node
  1032. paramtype2 = string, -- ParamType2 of the node
  1033. drawtype = string, -- Drawtype of the node
  1034. mesh = <string>, -- Mesh name if existent
  1035. minimap_color = <Color>, -- Color of node on minimap *May not exist*
  1036. visual_scale = number, -- Visual scale of node
  1037. alpha = number, -- Alpha of the node. Only used for liquids
  1038. color = <Color>, -- Color of node *May not exist*
  1039. palette_name = <string>, -- Filename of palette *May not exist*
  1040. palette = <{ -- List of colors
  1041. Color,
  1042. Color
  1043. }>,
  1044. waving = number, -- 0 of not waving, 1 if waving
  1045. connect_sides = number, -- Used for connected nodes
  1046. connects_to = { -- List of nodes to connect to
  1047. "node1",
  1048. "node2"
  1049. },
  1050. post_effect_color = Color, -- Color overlayed on the screen when the player is in the node
  1051. leveled = number, -- Max level for node
  1052. sunlight_propogates = bool, -- Whether light passes through the block
  1053. light_source = number, -- Light emitted by the block
  1054. is_ground_content = bool, -- Whether caves should cut through the node
  1055. walkable = bool, -- Whether the player collides with the node
  1056. pointable = bool, -- Whether the player can select the node
  1057. diggable = bool, -- Whether the player can dig the node
  1058. climbable = bool, -- Whether the player can climb up the node
  1059. buildable_to = bool, -- Whether the player can replace the node by placing a node on it
  1060. rightclickable = bool, -- Whether the player can place nodes pointing at this node
  1061. damage_per_second = number, -- HP of damage per second when the player is in the node
  1062. liquid_type = <string>, -- A string containing "none", "flowing", or "source" *May not exist*
  1063. liquid_alternative_flowing = <string>, -- Alternative node for liquid *May not exist*
  1064. liquid_alternative_source = <string>, -- Alternative node for liquid *May not exist*
  1065. liquid_viscosity = <number>, -- How slow the liquid flows *May not exist*
  1066. liquid_renewable = <boolean>, -- Whether the liquid makes an infinite source *May not exist*
  1067. liquid_range = <number>, -- How far the liquid flows *May not exist*
  1068. drowning = bool, -- Whether the player will drown in the node
  1069. floodable = bool, -- Whether nodes will be replaced by liquids (flooded)
  1070. node_box = table, -- Nodebox to draw the node with
  1071. collision_box = table, -- Nodebox to set the collision area
  1072. selection_box = table, -- Nodebox to set the area selected by the player
  1073. sounds = { -- Table of sounds that the block makes
  1074. sound_footstep = SimpleSoundSpec,
  1075. sound_dig = SimpleSoundSpec,
  1076. sound_dug = SimpleSoundSpec
  1077. },
  1078. legacy_facedir_simple = bool, -- Whether to use old facedir
  1079. legacy_wallmounted = bool -- Whether to use old wallmounted
  1080. move_resistance = <number>, -- How slow players can move through the node *May not exist*
  1081. }
  1082. ```
  1083. #### Item Definition
  1084. ```lua
  1085. {
  1086. name = string, -- Name of the item e.g. "default:stone"
  1087. description = string, -- Description of the item e.g. "Stone"
  1088. type = string, -- Item type: "none", "node", "craftitem", "tool"
  1089. inventory_image = string, -- Image in the inventory
  1090. wield_image = string, -- Image in wieldmesh
  1091. palette_image = string, -- Image for palette
  1092. color = Color, -- Color for item
  1093. wield_scale = Vector, -- Wieldmesh scale
  1094. stack_max = number, -- Number of items stackable together
  1095. usable = bool, -- Has on_use callback defined
  1096. liquids_pointable = bool, -- Whether you can point at liquids with the item
  1097. tool_capabilities = <table>, -- If the item is a tool, tool capabilities of the item
  1098. groups = table, -- Groups of the item
  1099. sound_place = SimpleSoundSpec, -- Sound played when placed
  1100. sound_place_failed = SimpleSoundSpec, -- Sound played when placement failed
  1101. node_placement_prediction = string -- Node placed in client until server catches up
  1102. }
  1103. ```
  1104. -----------------
  1105. ### Chat command definition (`register_chatcommand`)
  1106. {
  1107. params = "<name> <privilege>", -- Short parameter description
  1108. description = "Remove privilege from player", -- Full description
  1109. func = function(param), -- Called when command is run.
  1110. -- Returns boolean success and text output.
  1111. }
  1112. ### Server info
  1113. ```lua
  1114. {
  1115. address = "minetest.example.org", -- The domain name/IP address of a remote server or "" for a local server.
  1116. ip = "203.0.113.156", -- The IP address of the server.
  1117. port = 30000, -- The port the client is connected to.
  1118. protocol_version = 30 -- Will not be accurate at start up as the client might not be connected to the server yet, in that case it will be 0.
  1119. }
  1120. ```
  1121. ### HUD Definition (`hud_add`, `hud_get`)
  1122. ```lua
  1123. {
  1124. hud_elem_type = "image", -- see HUD element types, default "text"
  1125. -- ^ type of HUD element, can be either of "image", "text", "statbar", or "inventory"
  1126. position = {x=0.5, y=0.5},
  1127. -- ^ Left corner position of element, default `{x=0,y=0}`.
  1128. name = "<name>", -- default ""
  1129. scale = {x=2, y=2}, -- default {x=0,y=0}
  1130. text = "<text>", -- default ""
  1131. number = 2, -- default 0
  1132. item = 3, -- default 0
  1133. -- ^ Selected item in inventory. 0 for no item selected.
  1134. direction = 0, -- default 0
  1135. -- ^ Direction: 0: left-right, 1: right-left, 2: top-bottom, 3: bottom-top
  1136. alignment = {x=0, y=0}, -- default {x=0, y=0}
  1137. -- ^ See "HUD Element Types"
  1138. offset = {x=0, y=0}, -- default {x=0, y=0}
  1139. -- ^ See "HUD Element Types"
  1140. size = { x=100, y=100 }, -- default {x=0, y=0}
  1141. -- ^ Size of element in pixels
  1142. style = 0,
  1143. -- ^ For "text" elements sets font style: bitfield with 1 = bold, 2 = italic, 4 = monospace
  1144. }
  1145. ```
  1146. Escape sequences
  1147. ----------------
  1148. Most text can contain escape sequences that can for example color the text.
  1149. There are a few exceptions: tab headers, dropdowns and vertical labels can't.
  1150. The following functions provide escape sequences:
  1151. * `minetest.get_color_escape_sequence(color)`:
  1152. * `color` is a [ColorString](#colorstring)
  1153. * The escape sequence sets the text color to `color`
  1154. * `minetest.colorize(color, message)`:
  1155. * Equivalent to:
  1156. `minetest.get_color_escape_sequence(color) ..
  1157. message ..
  1158. minetest.get_color_escape_sequence("#ffffff")`
  1159. * `minetest.get_background_escape_sequence(color)`
  1160. * `color` is a [ColorString](#colorstring)
  1161. * The escape sequence sets the background of the whole text element to
  1162. `color`. Only defined for item descriptions and tooltips.
  1163. * `minetest.strip_foreground_colors(str)`
  1164. * Removes foreground colors added by `get_color_escape_sequence`.
  1165. * `minetest.strip_background_colors(str)`
  1166. * Removes background colors added by `get_background_escape_sequence`.
  1167. * `minetest.strip_colors(str)`
  1168. * Removes all color escape sequences.
  1169. `ColorString`
  1170. -------------
  1171. `#RGB` defines a color in hexadecimal format.
  1172. `#RGBA` defines a color in hexadecimal format and alpha channel.
  1173. `#RRGGBB` defines a color in hexadecimal format.
  1174. `#RRGGBBAA` defines a color in hexadecimal format and alpha channel.
  1175. Named colors are also supported and are equivalent to
  1176. [CSS Color Module Level 4](http://dev.w3.org/csswg/css-color/#named-colors).
  1177. To specify the value of the alpha channel, append `#A` or `#AA` to the end of
  1178. the color name (e.g. `colorname#08`).
  1179. `Color`
  1180. -------------
  1181. `{a = alpha, r = red, g = green, b = blue}` defines an ARGB8 color.
  1182. HUD element types
  1183. -----------------
  1184. The position field is used for all element types.
  1185. To account for differing resolutions, the position coordinates are the percentage
  1186. of the screen, ranging in value from `0` to `1`.
  1187. The name field is not yet used, but should contain a description of what the
  1188. HUD element represents. The direction field is the direction in which something
  1189. is drawn.
  1190. `0` draws from left to right, `1` draws from right to left, `2` draws from
  1191. top to bottom, and `3` draws from bottom to top.
  1192. The `alignment` field specifies how the item will be aligned. It ranges from `-1` to `1`,
  1193. with `0` being the center, `-1` is moved to the left/up, and `1` is to the right/down.
  1194. Fractional values can be used.
  1195. The `offset` field specifies a pixel offset from the position. Contrary to position,
  1196. the offset is not scaled to screen size. This allows for some precisely-positioned
  1197. items in the HUD.
  1198. **Note**: `offset` _will_ adapt to screen DPI as well as user defined scaling factor!
  1199. Below are the specific uses for fields in each type; fields not listed for that type are ignored.
  1200. **Note**: Future revisions to the HUD API may be incompatible; the HUD API is still
  1201. in the experimental stages.
  1202. ### `image`
  1203. Displays an image on the HUD.
  1204. * `scale`: The scale of the image, with 1 being the original texture size.
  1205. Only the X coordinate scale is used (positive values).
  1206. Negative values represent that percentage of the screen it
  1207. should take; e.g. `x=-100` means 100% (width).
  1208. * `text`: The name of the texture that is displayed.
  1209. * `alignment`: The alignment of the image.
  1210. * `offset`: offset in pixels from position.
  1211. ### `text`
  1212. Displays text on the HUD.
  1213. * `scale`: Defines the bounding rectangle of the text.
  1214. A value such as `{x=100, y=100}` should work.
  1215. * `text`: The text to be displayed in the HUD element.
  1216. * `number`: An integer containing the RGB value of the color used to draw the text.
  1217. Specify `0xFFFFFF` for white text, `0xFF0000` for red, and so on.
  1218. * `alignment`: The alignment of the text.
  1219. * `offset`: offset in pixels from position.
  1220. ### `statbar`
  1221. Displays a horizontal bar made up of half-images.
  1222. * `text`: The name of the texture that is used.
  1223. * `number`: The number of half-textures that are displayed.
  1224. If odd, will end with a vertically center-split texture.
  1225. * `direction`
  1226. * `offset`: offset in pixels from position.
  1227. * `size`: If used, will force full-image size to this value (override texture pack image size)
  1228. ### `inventory`
  1229. * `text`: The name of the inventory list to be displayed.
  1230. * `number`: Number of items in the inventory to be displayed.
  1231. * `item`: Position of item that is selected.
  1232. * `direction`
  1233. * `offset`: offset in pixels from position.
  1234. ### `waypoint`
  1235. Displays distance to selected world position.
  1236. * `name`: The name of the waypoint.
  1237. * `text`: Distance suffix. Can be blank.
  1238. * `precision`: Waypoint precision, integer >= 0. Defaults to 10.
  1239. If set to 0, distance is not shown. Shown value is `floor(distance*precision)/precision`.
  1240. When the precision is an integer multiple of 10, there will be `log_10(precision)` digits after the decimal point.
  1241. `precision = 1000`, for example, will show 3 decimal places (eg: `0.999`).
  1242. `precision = 2` will show multiples of `0.5`; precision = 5 will show multiples of `0.2` and so on:
  1243. `precision = n` will show multiples of `1/n`
  1244. * `number:` An integer containing the RGB value of the color used to draw the
  1245. text.
  1246. * `world_pos`: World position of the waypoint.
  1247. * `offset`: offset in pixels from position.
  1248. * `alignment`: The alignment of the waypoint.
  1249. ### `image_waypoint`
  1250. Same as `image`, but does not accept a `position`; the position is instead determined by `world_pos`, the world position of the waypoint.
  1251. * `scale`: The scale of the image, with 1 being the original texture size.
  1252. Only the X coordinate scale is used (positive values).
  1253. Negative values represent that percentage of the screen it
  1254. should take; e.g. `x=-100` means 100% (width).
  1255. * `text`: The name of the texture that is displayed.
  1256. * `alignment`: The alignment of the image.
  1257. * `world_pos`: World position of the waypoint.
  1258. * `offset`: offset in pixels from position.
  1259. ### Particle definition (`add_particle`)
  1260. {
  1261. pos = {x=0, y=0, z=0},
  1262. velocity = {x=0, y=0, z=0},
  1263. acceleration = {x=0, y=0, z=0},
  1264. -- ^ Spawn particle at pos with velocity and acceleration
  1265. expirationtime = 1,
  1266. -- ^ Disappears after expirationtime seconds
  1267. size = 1,
  1268. collisiondetection = false,
  1269. -- ^ collisiondetection: if true collides with physical objects
  1270. collision_removal = false,
  1271. -- ^ collision_removal: if true then particle is removed when it collides,
  1272. -- ^ requires collisiondetection = true to have any effect
  1273. vertical = false,
  1274. -- ^ vertical: if true faces player using y axis only
  1275. texture = "image.png",
  1276. -- ^ Uses texture (string)
  1277. animation = {Tile Animation definition},
  1278. -- ^ optional, specifies how to animate the particle texture
  1279. glow = 0
  1280. -- ^ optional, specify particle self-luminescence in darkness
  1281. }
  1282. ### `ParticleSpawner` definition (`add_particlespawner`)
  1283. {
  1284. amount = 1,
  1285. time = 1,
  1286. -- ^ If time is 0 has infinite lifespan and spawns the amount on a per-second base
  1287. minpos = {x=0, y=0, z=0},
  1288. maxpos = {x=0, y=0, z=0},
  1289. minvel = {x=0, y=0, z=0},
  1290. maxvel = {x=0, y=0, z=0},
  1291. minacc = {x=0, y=0, z=0},
  1292. maxacc = {x=0, y=0, z=0},
  1293. minexptime = 1,
  1294. maxexptime = 1,
  1295. minsize = 1,
  1296. maxsize = 1,
  1297. -- ^ The particle's properties are random values in between the bounds:
  1298. -- ^ minpos/maxpos, minvel/maxvel (velocity), minacc/maxacc (acceleration),
  1299. -- ^ minsize/maxsize, minexptime/maxexptime (expirationtime)
  1300. collisiondetection = false,
  1301. -- ^ collisiondetection: if true uses collision detection
  1302. collision_removal = false,
  1303. -- ^ collision_removal: if true then particle is removed when it collides,
  1304. -- ^ requires collisiondetection = true to have any effect
  1305. vertical = false,
  1306. -- ^ vertical: if true faces player using y axis only
  1307. texture = "image.png",
  1308. -- ^ Uses texture (string)
  1309. }