diff options
author | Auke Kok <sofar@foo-projects.org> | 2017-04-19 23:10:39 -0700 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2017-04-22 01:23:51 +0100 |
commit | cca58fe0fd1aac4246a23e1fc4f8469bdd280c6d (patch) | |
tree | 0dad1131f8cb0d9ec8c7bc7e35f4e3fc378c4ca0 /doc | |
parent | 8464da75857c1556f64984c0b014300638e38d4f (diff) | |
download | minetest-cca58fe0fd1aac4246a23e1fc4f8469bdd280c6d.tar.gz minetest-cca58fe0fd1aac4246a23e1fc4f8469bdd280c6d.tar.bz2 minetest-cca58fe0fd1aac4246a23e1fc4f8469bdd280c6d.zip |
Add on_flood() callback.
This callback is called if a liquid definitely floods a non-air
node on the map. The callback arguments are (pos, oldnode, newnode)
and can return a `bool` value indicating whether flooding the
node should be cancelled (`return true` will prevent the node
from flooding).
Documentation is added, the callback function was tested with a
modified minetest_game.
Note that `return true` will likely cause the node's `on_flood()`
callback to be called every second until the node gets removed,
so care must be taken to prevent many callbacks from using this
return value. The current default liquid update interval is 1.0
seconds, which isn't unmanageable.
The larger aim of this patch is to remove the lava cooling ABM,
which is a significant cost to idle servers that have lava on their
map. This callback will be much more efficient.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 4e328ac76..774b1e992 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -4002,6 +4002,13 @@ Definition tables ^ Node destructor; called after removing node ^ Not called for bulk node placement (i.e. schematics and VoxelManip) ^ default: nil ]] + on_flood = func(pos, oldnode, newnode), --[[ + ^ Called when a liquid (newnode) is about to flood oldnode, if + ^ it has `floodable = true` in the nodedef. Not called for bulk + ^ node placement (i.e. schematics and VoxelManip) or air nodes. If + ^ return true the node is not flooded, but on_flood callback will + ^ most likely be called over and over again every liquid update + ^ interval. Default: nil ]] after_place_node = func(pos, placer, itemstack, pointed_thing) --[[ ^ Called after constructing node when node was placed using |