game_api.txt 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057
  1. Minetest Game API
  2. =================
  3. GitHub Repo: https://github.com/minetest/minetest_game
  4. Introduction
  5. ------------
  6. The Minetest Game game offers multiple new possibilities in addition to the Minetest engine's built-in API,
  7. allowing you to add new plants to farming mod, buckets for new liquids, new stairs and custom panes.
  8. For information on the Minetest API, visit https://github.com/minetest/minetest/blob/master/doc/lua_api.txt
  9. Please note:
  10. * [XYZ] refers to a section the Minetest API
  11. * [#ABC] refers to a section in this document
  12. * [pos] refers to a position table `{x = -5, y = 0, z = 200}`
  13. Bucket API
  14. ----------
  15. The bucket API allows registering new types of buckets for non-default liquids.
  16. bucket.register_liquid(
  17. "default:lava_source", -- name of the source node
  18. "default:lava_flowing", -- name of the flowing node
  19. "bucket:bucket_lava", -- name of the new bucket item (or nil if liquid is not takeable)
  20. "bucket_lava.png", -- texture of the new bucket item (ignored if itemname == nil)
  21. "Lava Bucket", -- text description of the bucket item
  22. {lava_bucket = 1}, -- groups of the bucket item, OPTIONAL
  23. false -- force-renew, OPTIONAL. Force the liquid source to renew if it has
  24. -- a source neighbour, even if defined as 'liquid_renewable = false'.
  25. -- Needed to avoid creating holes in sloping rivers.
  26. )
  27. The filled bucket item is returned to the player that uses an empty bucket pointing to the given liquid source.
  28. When punching with an empty bucket pointing to an entity or a non-liquid node, the on_punch of the entity or node will be triggered.
  29. Beds API
  30. --------
  31. beds.register_bed(
  32. "beds:bed", -- Bed name
  33. def -- See [#Bed definition]
  34. )
  35. * `beds.can_dig(bed_pos)` Returns a boolean whether the bed at `bed_pos` may be dug
  36. * `beds.read_spawns() ` Returns a table containing players respawn positions
  37. * `beds.kick_players()` Forces all players to leave bed
  38. * `beds.skip_night()` Sets world time to morning and saves respawn position of all players currently sleeping
  39. ### Bed definition
  40. {
  41. description = "Simple Bed",
  42. inventory_image = "beds_bed.png",
  43. wield_image = "beds_bed.png",
  44. tiles = {
  45. bottom = {'Tile definition'}, -- the tiles of the bottom part of the bed.
  46. top = {Tile definition} -- the tiles of the bottom part of the bed.
  47. },
  48. nodebox = {
  49. bottom = 'regular nodebox', -- bottom part of bed (see [Node boxes])
  50. top = 'regular nodebox', -- top part of bed (see [Node boxes])
  51. },
  52. selectionbox = 'regular nodebox', -- for both nodeboxes (see [Node boxes])
  53. recipe = { -- Craft recipe
  54. {"group:wool", "group:wool", "group:wool"},
  55. {"group:wood", "group:wood", "group:wood"}
  56. }
  57. }
  58. Bones API
  59. ---------
  60. An ordered list of listnames (default: "main", "craft") of the player inventory,
  61. that will be placed into bones or dropped on player death can be looked up or changed
  62. in `bones.player_inventory_lists`.
  63. e.g. `table.insert(bones.player_inventory_lists, "backpack")`
  64. Creative API
  65. ------------
  66. Use `creative.register_tab(name, title, items)` to add a tab with filtered items.
  67. For example,
  68. creative.register_tab("tools", "Tools", minetest.registered_tools)
  69. is used to show all tools. Name is used in the sfinv page name, title is the
  70. human readable title.
  71. `is_enabled_for` is used to check whether a player is in creative mode:
  72. creative.is_enabled_for(name)
  73. Override this to allow per-player game modes.
  74. The contents of `creative.formspec_add` is appended to every creative inventory
  75. page. Mods can use it to add additional formspec elements onto the default
  76. creative inventory formspec to be drawn after each update.
  77. Chests API
  78. ----------
  79. The chests API allows the creation of chests, which have their own inventories for holding items.
  80. `default.chest.get_chest_formspec(pos)`
  81. * Returns a formspec for a specific chest.
  82. * `pos` Location of the chest node, e.g `{x = 1, y = 1, z = 1}`
  83. `default.chest.chest_lid_obstructed(pos)`
  84. * Returns a boolean depending on whether or not a chest has its top obstructed by a solid node.
  85. * `pos` Location of the chest node, e.g `{x = 1, y = 1, z = 1}`
  86. `default.chest.chest_lid_close(pn)`
  87. * Closes the chest that a player is currently looking in.
  88. * `pn` The name of the player whose chest is going to be closed
  89. `default.chest.open_chests`
  90. * A table indexed by player name to keep track of who opened what chest.
  91. * Key: The name of the player.
  92. * Value: A table containing information about the chest the player is looking at.
  93. e.g `{ pos = {1, 1, 1}, sound = null, swap = "chest" }`
  94. `default.chest.register_chest(name, def)`
  95. * Registers new chest
  96. * `name` Name for chest
  97. * `def` See [#Chest Definition]
  98. ### Chest Definition
  99. description = "Chest",
  100. tiles = {
  101. "default_chest_top.png",
  102. "default_chest_top.png",
  103. "default_chest_side.png",
  104. "default_chest_side.png",
  105. "default_chest_front.png",
  106. "default_chest_inside.png"
  107. }, -- Textures which are applied to the chest model.
  108. sounds = default.node_sound_wood_defaults(),
  109. sound_open = "default_chest_open",
  110. sound_close = "default_chest_close",
  111. groups = {choppy = 2, oddly_breakable_by_hand = 2},
  112. protected = false, -- If true, only placer can modify chest.
  113. Doors API
  114. ---------
  115. The doors mod allows modders to register custom doors and trapdoors.
  116. `doors.registered_doors[name] = Door definition`
  117. * Table of registered doors, indexed by door name
  118. `doors.registered_trapdoors[name] = Trapdoor definition`
  119. * Table of registered trap doors, indexed by trap door name
  120. `doors.register_door(name, def)`
  121. * Registers new door
  122. * `name` Name for door
  123. * `def` See [#Door definition]
  124. `doors.register_trapdoor(name, def)`
  125. * Registers new trapdoor
  126. * `name` Name for trapdoor
  127. * `def` See [#Trapdoor definition]
  128. `doors.register_fencegate(name, def)`
  129. * Registers new fence gate
  130. * `name` Name for fence gate
  131. * `def` See [#Fence gate definition]
  132. `doors.get(pos)`
  133. * `pos` A position as a table, e.g `{x = 1, y = 1, z = 1}`
  134. * Returns an ObjectRef to a door, or nil if the position does not contain a door
  135. ### Methods
  136. :open(player) -- Open the door object, returns if door was opened
  137. :close(player) -- Close the door object, returns if door was closed
  138. :toggle(player) -- Toggle the door state, returns if state was toggled
  139. :state() -- returns the door state, true = open, false = closed
  140. the "player" parameter can be omitted in all methods. If passed then
  141. the usual permission checks will be performed to make sure the player
  142. has the permissions needed to open this door. If omitted then no
  143. permission checks are performed.
  144. `doors.door_toggle(pos, node, clicker)`
  145. * Toggle door open or shut
  146. * `pos` Position of the door
  147. * `node` Node definition
  148. * `clicker` Player definition for the player that clicked on the door
  149. ### Door definition
  150. description = "Door description",
  151. inventory_image = "mod_door_inv.png",
  152. groups = {choppy = 2},
  153. tiles = {"mod_door.png"}, -- UV map.
  154. -- The front and back of the door must be identical in appearence as they swap on
  155. -- open/close.
  156. recipe = craftrecipe,
  157. sounds = default.node_sound_wood_defaults(), -- optional
  158. sound_open = sound play for open door, -- optional
  159. sound_close = sound play for close door, -- optional
  160. protected = false, -- If true, only placer can open the door (locked for others)
  161. on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
  162. -- optional function containing the on_rightclick callback, defaults to a doors.door_toggle-wrapper
  163. ### Trapdoor definition
  164. description = "Trapdoor description",
  165. inventory_image = "mod_trapdoor_inv.png",
  166. groups = {choppy = 2},
  167. tile_front = "doors_trapdoor.png", -- the texture for the front and back of the trapdoor
  168. tile_side = "doors_trapdoor_side.png",
  169. -- The texture for the four sides of the trapdoor.
  170. -- The texture should have the trapdoor side drawn twice, in the lowest and highest
  171. -- 1/8ths of the texture, both upright. The area between is not used.
  172. -- The lower 1/8th will be used for the closed trapdoor, the higher 1/8th will be used
  173. -- for the open trapdoor.
  174. sounds = default.node_sound_wood_defaults(), -- optional
  175. sound_open = sound play for open door, -- optional
  176. sound_close = sound play for close door, -- optional
  177. protected = false, -- If true, only placer can open the door (locked for others)
  178. on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
  179. -- function containing the on_rightclick callback
  180. on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
  181. -- function containing the on_rightclick callback
  182. ### Fence gate definition
  183. description = "Wooden Fence Gate",
  184. texture = "default_wood.png", -- `backface_culling` will automatically be
  185. -- set to `true` if not specified.
  186. material = "default:wood",
  187. groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
  188. sounds = default.node_sound_wood_defaults(), -- optional
  189. on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
  190. -- function containing the on_rightclick callback
  191. Dungeon Loot API
  192. ----------------
  193. The mod that places chests with loot in dungeons provides an API to register additional loot.
  194. `dungeon_loot.register(def)`
  195. * Registers one or more loot items
  196. * `def` Can be a single [#Loot definition] or a list of them
  197. `dungeon_loot.registered_loot`
  198. * Table of all registered loot, not to be modified manually
  199. ### Loot definition
  200. name = "item:name",
  201. chance = 0.5,
  202. -- ^ chance value from 0.0 to 1.0 that the item will appear in the chest when chosen
  203. -- Due to an extra step in the selection process, 0.5 does not(!) mean that
  204. -- on average every second chest will have this item
  205. count = {1, 4},
  206. -- ^ table with minimum and maximum amounts of this item
  207. -- optional, defaults to always single item
  208. y = {-32768, -512},
  209. -- ^ table with minimum and maximum heights this item can be found at
  210. -- optional, defaults to no height restrictions
  211. types = {"desert"},
  212. -- ^ table with types of dungeons this item can be found in
  213. -- supported types: "normal" (the cobble/mossycobble one), "sandstone"
  214. -- "desert" and "ice"
  215. -- optional, defaults to no type restrictions
  216. Fence API
  217. ---------
  218. Allows creation of new fences with "fencelike" drawtype.
  219. `default.register_fence(name, item definition)`
  220. Registers a new fence. Custom fields texture and material are required, as
  221. are name and description. The rest is optional. You can pass most normal
  222. nodedef fields here except drawtype. The fence group will always be added
  223. for this node.
  224. ### fence definition
  225. name = "default:fence_wood",
  226. description = "Wooden Fence",
  227. texture = "default_wood.png",
  228. material = "default:wood",
  229. groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
  230. sounds = default.node_sound_wood_defaults(),
  231. Walls API
  232. ---------
  233. The walls API allows easy addition of stone auto-connecting wall nodes.
  234. walls.register(name, desc, texture, mat, sounds)
  235. ^ name = "walls:stone_wall". Node name.
  236. ^ desc = "A Stone wall"
  237. ^ texture = "default_stone.png"
  238. ^ mat = "default:stone". Used to auto-generate crafting recipe.
  239. ^ sounds = sounds: see [#Default sounds]
  240. Farming API
  241. -----------
  242. The farming API allows you to easily register plants and hoes.
  243. `farming.register_hoe(name, hoe definition)`
  244. * Register a new hoe, see [#hoe definition]
  245. `farming.register_plant(name, Plant definition)`
  246. * Register a new growing plant, see [#Plant definition]
  247. `farming.registered_plants[name] = definition`
  248. * Table of registered plants, indexed by plant name
  249. ### Hoe Definition
  250. {
  251. description = "", -- Description for tooltip
  252. inventory_image = "unknown_item.png", -- Image to be used as wield- and inventory image
  253. max_uses = 30, -- Uses until destroyed
  254. material = "", -- Material for recipes
  255. recipe = { -- Craft recipe, if material isn't used
  256. {"air", "air", "air"},
  257. {"", "group:stick"},
  258. {"", "group:stick"},
  259. }
  260. }
  261. ### Plant definition
  262. {
  263. description = "", -- Description of seed item
  264. harvest_description = "", -- Description of harvest item
  265. -- (optional, derived automatically if not provided)
  266. inventory_image = "unknown_item.png", -- Image to be used as seed's wield- and inventory image
  267. steps = 8, -- How many steps the plant has to grow, until it can be harvested
  268. -- ^ Always provide a plant texture for each step, format: modname_plantname_i.png (i = stepnumber)
  269. minlight = 13, -- Minimum light to grow
  270. maxlight = default.LIGHT_MAX -- Maximum light to grow
  271. }
  272. Fire API
  273. --------
  274. Add group flammable when registering a node to make fire seek for it.
  275. Add it to an item to make it burn up when dropped in lava or fire.
  276. New node def property:
  277. `on_burn(pos)`
  278. * Called when fire attempts to remove a burning node.
  279. * `pos` Position of the burning node.
  280. `on_ignite(pos, igniter)`
  281. * Called when Flint and steel (or a mod defined ignitor) is used on a node.
  282. Defining it may prevent the default action (spawning flames) from triggering.
  283. * `pos` Position of the ignited node.
  284. * `igniter` Player that used the tool, when available.
  285. Give Initial Stuff API
  286. ----------------------
  287. `give_initial_stuff.give(player)`
  288. ^ Give initial stuff to "player"
  289. `give_initial_stuff.add(stack)`
  290. ^ Add item to the initial stuff
  291. ^ Stack can be an ItemStack or a item name eg: "default:dirt 99"
  292. ^ Can be called after the game has loaded
  293. `give_initial_stuff.clear()`
  294. ^ Removes all items from the initial stuff
  295. ^ Can be called after the game has loaded
  296. `give_initial_stuff.get_list()`
  297. ^ returns list of item stacks
  298. `give_initial_stuff.set_list(list)`
  299. ^ List of initial items with numeric indices.
  300. `give_initial_stuff.add_from_csv(str)`
  301. ^ str is a comma separated list of initial stuff
  302. ^ Adds items to the list of items to be given
  303. Players API
  304. -----------
  305. The player API can register player models and update the player's appearence
  306. * `player_api.register_model(name, def)`
  307. * Register a new model to be used by players
  308. * name: model filename such as "character.x", "foo.b3d", etc.
  309. * def: See [#Model definition]
  310. * saved to player_api.registered_models
  311. * `player_api.registered_player_models[name]`
  312. * Get a model's definition
  313. * see [#Model definition]
  314. * `player_api.set_model(player, model_name)`
  315. * Change a player's model
  316. * `player`: PlayerRef
  317. * `model_name`: model registered with player_api.register_model()
  318. * `player_api.set_animation(player, anim_name [, speed])`
  319. * Applies an animation to a player
  320. * anim_name: name of the animation.
  321. * speed: frames per second. If nil, default from the model is used
  322. * `player_api.set_textures(player, textures)`
  323. * Sets player textures
  324. * `player`: PlayerRef
  325. * `textures`: array of textures, If `textures` is nil the default
  326. textures from the model def are used
  327. * `player_api.get_animation(player)`
  328. * Returns a table containing fields `model`, `textures` and `animation`.
  329. * Any of the fields of the returned table may be nil.
  330. * player: PlayerRef
  331. ### Model Definition
  332. {
  333. animation_speed = 30, -- Default animation speed, in FPS.
  334. textures = {"character.png", }, -- Default array of textures.
  335. visual_size = {x = 1, y = 1}, -- Used to scale the model.
  336. animations = {
  337. -- <anim_name> = {x = <start_frame>, y = <end_frame>},
  338. foo = {x = 0, y = 19},
  339. bar = {x = 20, y = 39},
  340. -- ...
  341. },
  342. collisionbox = {-0.3, 0.0, -0.3, 0.3, 1.7, 0.3}, -- In nodes from feet position
  343. stepheight = 0.6, -- In nodes
  344. eye_height = 1.47, -- In nodes above feet position
  345. }
  346. TNT API
  347. -------
  348. `tnt.register_tnt(definition)`
  349. ^ Register a new type of tnt.
  350. * `name` The name of the node. If no prefix is given `tnt` is used.
  351. * `description` A description for your TNT.
  352. * `radius` The radius within which the TNT can destroy nodes. The default is 3.
  353. * `damage_radius` The radius within which the TNT can damage players and mobs. By default it is twice the `radius`.
  354. * `sound` The sound played when explosion occurs. By default it is `tnt_explode`.
  355. * `disable_drops` Disable drops. By default it is set to false.
  356. * `ignore_protection` Don't check `minetest.is_protected` before removing a node.
  357. * `ignore_on_blast` Don't call `on_blast` even if a node has one.
  358. * `tiles` Textures for node
  359. * `side` Side tiles. By default the name of the tnt with a suffix of `_side.png`.
  360. * `top` Top tile. By default the name of the tnt with a suffix of `_top.png`.
  361. * `bottom` Bottom tile. By default the name of the tnt with a suffix of `_bottom.png`.
  362. * `burning` Top tile when lit. By default the name of the tnt with a suffix of `_top_burning_animated.png".
  363. `tnt.boom(position[, definition])`
  364. ^ Create an explosion.
  365. * `position` The center of explosion.
  366. * `definition` The TNT definion as passed to `tnt.register` with the following addition:
  367. * `explode_center` false by default which removes TNT node on blast, when true will explode center node.
  368. `tnt.burn(position, [nodename])`
  369. ^ Ignite node at position, triggering its `on_ignite` callback (see fire mod).
  370. If no such callback exists, fallback to turn tnt group nodes to their
  371. "_burning" variant.
  372. nodename isn't required unless already known.
  373. To make dropping items from node inventories easier, you can use the
  374. following helper function from 'default':
  375. default.get_inventory_drops(pos, inventory, drops)
  376. ^ Return drops from node inventory "inventory" in drops.
  377. * `pos` - the node position
  378. * `inventory` - the name of the inventory (string)
  379. * `drops` - an initialized list
  380. The function returns no values. The drops are returned in the `drops`
  381. parameter, and drops is not reinitialized so you can call it several
  382. times in a row to add more inventory items to it.
  383. `on_blast` callbacks:
  384. Both nodedefs and entitydefs can provide an `on_blast()` callback
  385. `nodedef.on_blast(pos, intensity)`
  386. ^ Allow drop and node removal overriding
  387. * `pos` - node position
  388. * `intensity` - TNT explosion measure. larger or equal to 1.0
  389. ^ Should return a list of drops (e.g. {"default:stone"})
  390. ^ Should perform node removal itself. If callback exists in the nodedef
  391. ^ then the TNT code will not destroy this node.
  392. `entitydef.on_blast(luaobj, damage)`
  393. ^ Allow TNT effects on entities to be overridden
  394. * `luaobj` - LuaEntityRef of the entity
  395. * `damage` - suggested HP damage value
  396. ^ Should return a list of (bool do_damage, bool do_knockback, table drops)
  397. * `do_damage` - if true then TNT mod wil damage the entity
  398. * `do_knockback` - if true then TNT mod will knock the entity away
  399. * `drops` - a list of drops, e.g. {"wool:red"}
  400. Screwdriver API
  401. ---------------
  402. The screwdriver API allows you to control a node's behaviour when a screwdriver is used on it.
  403. To use it, add the `on_screwdriver` function to the node definition.
  404. `on_rotate(pos, node, user, mode, new_param2)`
  405. * `pos` Position of the node that the screwdriver is being used on
  406. * `node` that node
  407. * `user` The player who used the screwdriver
  408. * `mode` screwdriver.ROTATE_FACE or screwdriver.ROTATE_AXIS
  409. * `new_param2` the new value of param2 that would have been set if on_rotate wasn't there
  410. * return value: false to disallow rotation, nil to keep default behaviour, true to allow
  411. it but to indicate that changed have already been made (so the screwdriver will wear out)
  412. * use `on_rotate = false` to always disallow rotation
  413. * use `on_rotate = screwdriver.rotate_simple` to allow only face rotation
  414. Sethome API
  415. -----------
  416. The sethome API adds three global functions to allow mods to read a players home position,
  417. set a players home position and teleport a player to home position.
  418. `sethome.get(name)`
  419. * `name` Player who's home position you wish to get
  420. * return value: false if no player home coords exist, position table if true
  421. `sethome.set(name, pos)`
  422. * `name` Player who's home position you wish to set
  423. * `pos` Position table containing coords of home position
  424. * return value: false if unable to set and save new home position, otherwise true
  425. `sethome.go(name)`
  426. * `name` Player you wish to teleport to their home position
  427. * return value: false if player cannot be sent home, otherwise true
  428. Sfinv API
  429. ---------
  430. It is recommended that you read this link for a good introduction to the
  431. sfinv API by its author: https://rubenwardy.com/minetest_modding_book/en/chapters/sfinv.html
  432. ### sfinv Methods
  433. **Pages**
  434. * sfinv.set_page(player, pagename) - changes the page
  435. * sfinv.get_page(player) - get the current page name. Will never return nil
  436. * sfinv.get_homepage_name(player) - get the page name of the first page to show to a player
  437. * sfinv.register_page(name, def) - register a page, see section below
  438. * sfinv.override_page(name, def) - overrides fields of an page registered with register_page.
  439. * Note: Page must already be defined, (opt)depend on the mod defining it.
  440. * sfinv.set_player_inventory_formspec(player) - (re)builds page formspec
  441. and calls set_inventory_formspec().
  442. * sfinv.get_formspec(player, context) - builds current page's formspec
  443. **Contexts**
  444. * sfinv.get_or_create_context(player) - gets the player's context
  445. * sfinv.set_context(player, context)
  446. **Theming**
  447. * sfinv.make_formspec(player, context, content, show_inv, size) - adds a theme to a formspec
  448. * show_inv, defaults to false. Whether to show the player's main inventory
  449. * size, defaults to `size[8,8.6]` if not specified
  450. * sfinv.get_nav_fs(player, context, nav, current_idx) - creates tabheader or ""
  451. ### sfinv Members
  452. * pages - table of pages[pagename] = def
  453. * pages_unordered - array table of pages in order of addition (used to build navigation tabs).
  454. * contexts - contexts[playername] = player_context
  455. * enabled - set to false to disable. Good for inventory rehaul mods like unified inventory
  456. ### Context
  457. A table with these keys:
  458. * page - current page name
  459. * nav - a list of page names
  460. * nav_titles - a list of page titles
  461. * nav_idx - current nav index (in nav and nav_titles)
  462. * any thing you want to store
  463. * sfinv will clear the stored data on log out / log in
  464. ### sfinv.register_page
  465. sfinv.register_page(name, def)
  466. def is a table containing:
  467. * `title` - human readable page name (required)
  468. * `get(self, player, context)` - returns a formspec string. See formspec variables. (required)
  469. * `is_in_nav(self, player, context)` - return true to show in the navigation (the tab header, by default)
  470. * `on_player_receive_fields(self, player, context, fields)` - on formspec submit.
  471. * `on_enter(self, player, context)` - called when the player changes pages, usually using the tabs.
  472. * `on_leave(self, player, context)` - when leaving this page to go to another, called before other's on_enter
  473. ### get formspec
  474. Use sfinv.make_formspec to apply a layout:
  475. return sfinv.make_formspec(player, context, [[
  476. list[current_player;craft;1.75,0.5;3,3;]
  477. list[current_player;craftpreview;5.75,1.5;1,1;]
  478. image[4.75,1.5;1,1;gui_furnace_arrow_bg.png^[transformR270]
  479. listring[current_player;main]
  480. listring[current_player;craft]
  481. image[0,4.25;1,1;gui_hb_bg.png]
  482. image[1,4.25;1,1;gui_hb_bg.png]
  483. image[2,4.25;1,1;gui_hb_bg.png]
  484. image[3,4.25;1,1;gui_hb_bg.png]
  485. image[4,4.25;1,1;gui_hb_bg.png]
  486. image[5,4.25;1,1;gui_hb_bg.png]
  487. image[6,4.25;1,1;gui_hb_bg.png]
  488. image[7,4.25;1,1;gui_hb_bg.png]
  489. ]], true)
  490. See above (methods section) for more options.
  491. ### Customising themes
  492. Simply override this function to change the navigation:
  493. function sfinv.get_nav_fs(player, context, nav, current_idx)
  494. return "navformspec"
  495. end
  496. And override this function to change the layout:
  497. function sfinv.make_formspec(player, context, content, show_inv, size)
  498. local tmp = {
  499. size or "size[8,8.6]",
  500. theme_main,
  501. sfinv.get_nav_fs(player, context, context.nav_titles, context.nav_idx),
  502. content
  503. }
  504. if show_inv then
  505. tmp[4] = theme_inv
  506. end
  507. return table.concat(tmp, "")
  508. end
  509. Stairs API
  510. ----------
  511. The stairs API lets you register stairs and slabs and ensures that they are registered the same way as those
  512. delivered with Minetest Game, to keep them compatible with other mods.
  513. `stairs.register_stair(subname, recipeitem, groups, images, description, sounds, worldaligntex)`
  514. * Registers a stair
  515. * `subname`: Basically the material name (e.g. cobble) used for the stair name. Nodename pattern: "stairs:stair_subname"
  516. * `recipeitem`: Item used in the craft recipe, e.g. "default:cobble", may be `nil`
  517. * `groups`: See [Known damage and digging time defining groups]
  518. * `images`: See [Tile definition]
  519. * `description`: Used for the description field in the stair's definition
  520. * `sounds`: See [#Default sounds]
  521. * `worldaligntex`: A bool to set all textures world-aligned. Default false. See [Tile definition]
  522. `stairs.register_slab(subname, recipeitem, groups, images, description, sounds, worldaligntex)`
  523. * Registers a slab
  524. * `subname`: Basically the material name (e.g. cobble) used for the slab name. Nodename pattern: "stairs:slab_subname"
  525. * `recipeitem`: Item used in the craft recipe, e.g. "default:cobble"
  526. * `groups`: See [Known damage and digging time defining groups]
  527. * `images`: See [Tile definition]
  528. * `description`: Used for the description field in the slab's definition
  529. * `sounds`: See [#Default sounds]
  530. * `worldaligntex`: A bool to set all textures world-aligned. Default false. See [Tile definition]
  531. `stairs.register_stair_inner(subname, recipeitem, groups, images, description, sounds, worldaligntex, full_description)`
  532. * Registers an inner corner stair
  533. * `subname`: Basically the material name (e.g. cobble) used for the stair name. Nodename pattern: "stairs:stair_inner_subname"
  534. * `recipeitem`: Item used in the craft recipe, e.g. "default:cobble", may be `nil`
  535. * `groups`: See [Known damage and digging time defining groups]
  536. * `images`: See [Tile definition]
  537. * `description`: Used for the description field in the stair's definition with "Inner" prepended
  538. * `sounds`: See [#Default sounds]
  539. * `worldaligntex`: A bool to set all textures world-aligned. Default false. See [Tile definition]
  540. * `full_description`: Overrides the description, bypassing string concatenation. This is useful for translation. (optional)
  541. `stairs.register_stair_outer(subname, recipeitem, groups, images, description, sounds, worldaligntex, full_description)`
  542. * Registers an outer corner stair
  543. * `subname`: Basically the material name (e.g. cobble) used for the stair name. Nodename pattern: "stairs:stair_outer_subname"
  544. * `recipeitem`: Item used in the craft recipe, e.g. "default:cobble", may be `nil`
  545. * `groups`: See [Known damage and digging time defining groups]
  546. * `images`: See [Tile definition]
  547. * `description`: Used for the description field in the stair's definition with "Outer" prepended
  548. * `sounds`: See [#Default sounds]
  549. * `worldaligntex`: A bool to set all textures world-aligned. Default false. See [Tile definition]
  550. * `full_description`: Overrides the description, bypassing string concatenation. This is useful for translation. (optional)
  551. `stairs.register_stair_and_slab(subname, recipeitem, groups, images, desc_stair, desc_slab, sounds, worldaligntex)`
  552. * A wrapper for stairs.register_stair, stairs.register_slab, stairs.register_stair_inner, stairs.register_stair_outer
  553. * Uses almost the same arguments as stairs.register_stair
  554. * `desc_stair`: Description for stair nodes. For corner stairs 'Inner' or 'Outer' will be prefixed
  555. * `desc_slab`: Description for slab node
  556. Xpanes API
  557. ----------
  558. Creates panes that automatically connect to each other
  559. `xpanes.register_pane(subname, def)`
  560. * `subname`: used for nodename. Result: "xpanes:subname" and "xpanes:subname_{2..15}"
  561. * `def`: See [#Pane definition]
  562. ### Pane definition
  563. {
  564. textures = {
  565. "texture for front and back",
  566. (unused),
  567. "texture for the 4 edges"
  568. }, -- More tiles aren't supported
  569. groups = {group = rating}, -- Uses the known node groups, see [Known damage and digging time defining groups]
  570. sounds = SoundSpec, -- See [#Default sounds]
  571. recipe = {{"","","","","","","","",""}}, -- Recipe field only
  572. use_texture_alpha = true, -- Optional boolean (default: `false`) for colored glass panes
  573. }
  574. Raillike definitions
  575. --------------------
  576. The following nodes use the group `connect_to_raillike` and will only connect to
  577. raillike nodes within this group and the same group value.
  578. Use `minetest.raillike_group(<Name>)` to get the group value.
  579. | Node type | Raillike group name
  580. |-----------------------|---------------------
  581. | default:rail | "rail"
  582. | tnt:gunpowder | "gunpowder"
  583. | tnt:gunpowder_burning | "gunpowder"
  584. Example:
  585. If you want to add a new rail type and want it to connect with default:rail,
  586. add `connect_to_raillike=minetest.raillike_group("rail")` into the `groups` table
  587. of your node.
  588. Default sounds
  589. --------------
  590. Sounds inside the default table can be used within the sounds field of node definitions.
  591. * `default.node_sound_defaults()`
  592. * `default.node_sound_stone_defaults()`
  593. * `default.node_sound_dirt_defaults()`
  594. * `default.node_sound_sand_defaults()`
  595. * `default.node_sound_wood_defaults()`
  596. * `default.node_sound_leaves_defaults()`
  597. * `default.node_sound_glass_defaults()`
  598. * `default.node_sound_metal_defaults()`
  599. Default constants
  600. -----------------
  601. `default.LIGHT_MAX` The maximum light level (see [Node definition] light_source)
  602. GUI and formspecs
  603. -----------------
  604. `default.get_hotbar_bg(x, y)`
  605. * Get the hotbar background as string, containing the formspec elements
  606. * x: Horizontal position in the formspec
  607. * y: Vertical position in the formspec
  608. `default.gui_bg`
  609. * Deprecated, remove from mods.
  610. `default.gui_bg_img`
  611. * Deprecated, remove from mods.
  612. `default.gui_slots`
  613. * Deprecated, remove from mods.
  614. `default.gui_survival_form`
  615. * Entire formspec for the survival inventory
  616. `default.get_furnace_active_formspec(fuel_percent, item_percent)`
  617. * Get the active furnace formspec using the defined GUI elements
  618. * fuel_percent: Percent of how much the fuel is used
  619. * item_percent: Percent of how much the item is cooked
  620. `default.get_furnace_inactive_formspec()`
  621. * Get the inactive furnace formspec using the defined GUI elements
  622. Leafdecay
  623. ---------
  624. To enable leaf decay for leaves when a tree is cut down by a player,
  625. register the tree with the default.register_leafdecay(leafdecaydef)
  626. function.
  627. If `param2` of any registered node is ~= 0, the node will always be
  628. preserved. Thus, if the player places a node of that kind, you will
  629. want to set `param2 = 1` or so.
  630. The function `default.after_place_leaves` can be set as
  631. `after_place_node of a node` to set param2 to 1 if the player places
  632. the node (should not be used for nodes that use param2 otherwise
  633. (e.g. facedir)).
  634. If the node is in the `leafdecay_drop` group then it will always be
  635. dropped as an item.
  636. `default.register_leafdecay(leafdecaydef)`
  637. `leafdecaydef` is a table, with following members:
  638. {
  639. trunks = {"default:tree"}, -- nodes considered trunks
  640. leaves = {"default:leaves", "default:apple"},
  641. -- nodes considered for removal
  642. radius = 3, -- radius to consider for searching
  643. }
  644. Note: all the listed nodes in `trunks` have their `on_after_destruct`
  645. callback overridden. All the nodes listed in `leaves` have their
  646. `on_timer` callback overridden.
  647. Dyes
  648. ----
  649. Minetest Game dyes are registered with:
  650. groups = {dye = 1, color_<color> = 1},
  651. To make recipes that will work with dyes from many mods, define them using the
  652. dye group and the color groups.
  653. Dye color groups:
  654. * `color_white`
  655. * `color_grey`
  656. * `color_dark_grey`
  657. * `color_black`
  658. * `color_red`
  659. * `color_pink`
  660. * `color_orange`
  661. * `color_brown`
  662. * `color_yellow`
  663. * `color_green`
  664. * `color_dark_green`
  665. * `color_blue`
  666. * `color_cyan`
  667. * `color_violet`
  668. * `color_magenta`
  669. Example of one shapeless recipe using the dye group and a color group:
  670. minetest.register_craft({
  671. type = "shapeless",
  672. output = "<mod>:item_yellow",
  673. recipe = {"<mod>:item_no_color", "group:dye,color_yellow"},
  674. })
  675. Trees
  676. -----
  677. * `default.grow_tree(pos, is_apple_tree)`
  678. * Grows a mgv6 tree or apple tree at pos
  679. * `default.grow_jungle_tree(pos)`
  680. * Grows a mgv6 jungletree at pos
  681. * `default.grow_pine_tree(pos)`
  682. * Grows a mgv6 pinetree at pos
  683. * `default.grow_new_apple_tree(pos)`
  684. * Grows a new design apple tree at pos
  685. * `default.grow_new_jungle_tree(pos)`
  686. * Grows a new design jungle tree at pos
  687. * `default.grow_new_pine_tree(pos)`
  688. * Grows a new design pine tree at pos
  689. * `default.grow_new_snowy_pine_tree(pos)`
  690. * Grows a new design snowy pine tree at pos
  691. * `default.grow_new_acacia_tree(pos)`
  692. * Grows a new design acacia tree at pos
  693. * `default.grow_new_aspen_tree(pos)`
  694. * Grows a new design aspen tree at pos
  695. * `default.grow_bush(pos)`
  696. * Grows a bush at pos
  697. * `default.grow_acacia_bush(pos)`
  698. * Grows an acaia bush at pos
  699. * `default.grow_pine_bush(pos)`
  700. * Grows a pine bush at pos
  701. * `default.grow_blueberry_bush(pos)`
  702. * Grows a blueberry bush at pos
  703. Carts
  704. -----
  705. carts.register_rail(
  706. "mycarts:myrail", -- Rail name
  707. nodedef, -- standard nodedef
  708. railparams -- rail parameter struct (optional)
  709. )
  710. railparams = {
  711. on_step(obj, dtime), -- Event handler called when
  712. -- cart is on rail
  713. acceleration, -- integer acceleration factor (negative
  714. -- values to brake)
  715. }
  716. The event handler is called after all default calculations
  717. are made, so the custom on_step handler can override things
  718. like speed, acceleration, player attachment. The handler will
  719. likely be called many times per second, so the function needs
  720. to make sure that the event is handled properly.
  721. Key API
  722. -------
  723. The key API allows mods to add key functionality to nodes that have
  724. ownership or specific permissions. Using the API will make it so
  725. that a node owner can use skeleton keys on their nodes to create keys
  726. for that node in that location, and give that key to other players,
  727. allowing them some sort of access that they otherwise would not have
  728. due to node protection.
  729. To make your new nodes work with the key API, you need to register
  730. two callback functions in each nodedef:
  731. `on_key_use(pos, player)`
  732. * Is called when a player right-clicks (uses) a normal key on your
  733. * node.
  734. * `pos` - position of the node
  735. * `player` - PlayerRef
  736. * return value: none, ignored
  737. The `on_key_use` callback should validate that the player is wielding
  738. a key item with the right key meta secret. If needed the code should
  739. deny access to the node functionality.
  740. If formspecs are used, the formspec callbacks should duplicate these
  741. checks in the metadata callback functions.
  742. `on_skeleton_key_use(pos, player, newsecret)`
  743. * Is called when a player right-clicks (uses) a skeleton key on your
  744. * node.
  745. * `pos` - position of the node
  746. * `player` - PlayerRef
  747. * `newsecret` - a secret value(string)
  748. * return values:
  749. * `secret` - `nil` or the secret value that unlocks the door
  750. * `name` - a string description of the node ("a locked chest")
  751. * `owner` - name of the node owner
  752. The `on_skeleton_key_use` function should validate that the player has
  753. the right permissions to make a new key for the item. The newsecret
  754. value is useful if the node has no secret value. The function should
  755. store this secret value somewhere so that in the future it may compare
  756. key secrets and match them to allow access. If a node already has a
  757. secret value, the function should return that secret value instead
  758. of the newsecret value. The secret value stored for the node should
  759. not be overwritten, as this would invalidate existing keys.
  760. Aside from the secret value, the function should retun a descriptive
  761. name for the node and the owner name. The return values are all
  762. encoded in the key that will be given to the player in replacement
  763. for the wielded skeleton key.
  764. if `nil` is returned, it is assumed that the wielder did not have
  765. permissions to create a key for this node, and no key is created.