game_api.txt 32 KB

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