game_api.txt 39 KB

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