game_api.txt 37 KB

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