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 /src/map.h | |
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 'src/map.h')
-rw-r--r-- | src/map.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -266,7 +266,8 @@ public: // For debug printing. Prints "Map: ", "ServerMap: " or "ClientMap: " virtual void PrintInfo(std::ostream &out); - void transformLiquids(std::map<v3s16, MapBlock*> & modified_blocks); + void transformLiquids(std::map<v3s16, MapBlock*> & modified_blocks, + ServerEnvironment *env); /* Node metadata |