Allow both sides of the bed to be digged up.
authorAuke Kok <sofar@foo-projects.org>
Sat, 12 Mar 2016 07:21:56 +0000 (23:21 -0800)
committerparamat <mat.gregory@virginmedia.com>
Fri, 18 Mar 2016 02:35:07 +0000 (02:35 +0000)
commit41c2b2aeea5b8c4ac6340a54f37ce15c731e0cac
tree828f2e687b344e2e98c6037828987d55379a95f3
parentcb57f70aab363f03d464d0913f19852e6670d663
Allow both sides of the bed to be digged up.

Tested with nodebreaker, fire.

If called from lua, minetest.remove_node() calls on_destruct() callbacks
before the map is actually updated. This means that we can't look at the
map data to determine if we're done cleaning up adjacent nodes, and we
have to stop recursing some other way.

There's no data we can pass around through functions that would survive
scope to a secondary on_destruct() callback, so we have to maintain
local state somewhere in the mod namespace.

In this case, we keep a bitflag. The bitflag is set to "true" by
default. On the first half removal, the flag is flipped and afterwards
we remove the other half node. When the on_destruct for the other half
is running, it's value is false and we flip it back to true without
removing the other half node.

This thus prevents recursing.

To facilitate easier finding of the bed partner, we tell our on_destruct
whether we're a top or bottom half node through a passed flag.

Now that the top is diggable, we just need to assure that it drops a
bottom bed part.
mods/beds/api.lua