2012-10-31 19:06:11 +01:00
|
|
|
-- Minetest: builtin/item.lua
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Falling stuff
|
|
|
|
--
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
core.register_entity(":__builtin:falling_node", {
|
2012-10-31 19:06:11 +01:00
|
|
|
initial_properties = {
|
|
|
|
visual = "wielditem",
|
2016-03-19 13:43:58 +01:00
|
|
|
visual_size = {x = 0.667, y = 0.667},
|
2012-10-31 19:06:11 +01:00
|
|
|
textures = {},
|
2016-03-19 13:43:58 +01:00
|
|
|
physical = true,
|
|
|
|
is_visible = false,
|
|
|
|
collide_with_objects = false,
|
|
|
|
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
2016-03-19 19:36:48 +01:00
|
|
|
},
|
2012-10-31 19:06:11 +01:00
|
|
|
|
2013-07-27 20:34:30 +02:00
|
|
|
node = {},
|
2012-10-31 19:06:11 +01:00
|
|
|
|
2013-07-27 20:34:30 +02:00
|
|
|
set_node = function(self, node)
|
|
|
|
self.node = node
|
2016-03-19 13:43:58 +01:00
|
|
|
self.object:set_properties({
|
2012-10-31 19:06:11 +01:00
|
|
|
is_visible = true,
|
2013-07-27 20:34:30 +02:00
|
|
|
textures = {node.name},
|
2016-03-19 13:43:58 +01:00
|
|
|
})
|
2012-10-31 19:06:11 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
get_staticdata = function(self)
|
2016-03-19 13:43:58 +01:00
|
|
|
return core.serialize(self.node)
|
2012-10-31 19:06:11 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_activate = function(self, staticdata)
|
2016-03-19 13:43:58 +01:00
|
|
|
self.object:set_armor_groups({immortal = 1})
|
|
|
|
|
|
|
|
local node = core.deserialize(staticdata)
|
|
|
|
if node then
|
|
|
|
self:set_node(node)
|
|
|
|
elseif staticdata ~= "" then
|
|
|
|
self:set_node({name = staticdata})
|
2015-08-31 23:57:12 +02:00
|
|
|
end
|
2012-10-31 19:06:11 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_step = function(self, dtime)
|
2016-03-24 04:20:00 +01:00
|
|
|
-- Set gravity
|
|
|
|
local acceleration = self.object:getacceleration()
|
|
|
|
if not vector.equals(acceleration, {x = 0, y = -10, z = 0}) then
|
|
|
|
self.object:setacceleration({x = 0, y = -10, z = 0})
|
|
|
|
end
|
2012-10-31 19:06:11 +01:00
|
|
|
-- Turn to actual sand when collides to ground or just move
|
|
|
|
local pos = self.object:getpos()
|
2016-03-19 13:43:58 +01:00
|
|
|
local bcp = {x = pos.x, y = pos.y - 0.7, z = pos.z} -- Position of bottom center point
|
2014-04-28 03:02:48 +02:00
|
|
|
local bcn = core.get_node(bcp)
|
|
|
|
local bcd = core.registered_nodes[bcn.name]
|
2012-10-31 19:06:11 +01:00
|
|
|
-- Note: walkable is in the node definition, not in item groups
|
2013-10-01 23:14:58 +02:00
|
|
|
if not bcd or
|
|
|
|
(bcd.walkable or
|
2014-04-28 03:02:48 +02:00
|
|
|
(core.get_item_group(self.node.name, "float") ~= 0 and
|
2013-10-01 23:14:58 +02:00
|
|
|
bcd.liquidtype ~= "none")) then
|
|
|
|
if bcd and bcd.leveled and
|
|
|
|
bcn.name == self.node.name then
|
2013-07-28 15:11:59 +02:00
|
|
|
local addlevel = self.node.level
|
2016-03-19 13:43:58 +01:00
|
|
|
if not addlevel or addlevel <= 0 then
|
2013-10-01 23:14:58 +02:00
|
|
|
addlevel = bcd.leveled
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
if core.add_node_level(bcp, addlevel) == 0 then
|
2013-07-28 15:11:59 +02:00
|
|
|
self.object:remove()
|
|
|
|
return
|
|
|
|
end
|
2013-10-01 23:14:58 +02:00
|
|
|
elseif bcd and bcd.buildable_to and
|
2014-04-28 03:02:48 +02:00
|
|
|
(core.get_item_group(self.node.name, "float") == 0 or
|
2013-10-01 23:14:58 +02:00
|
|
|
bcd.liquidtype == "none") then
|
2014-04-28 03:02:48 +02:00
|
|
|
core.remove_node(bcp)
|
2012-12-19 22:24:54 +01:00
|
|
|
return
|
|
|
|
end
|
2016-03-19 13:43:58 +01:00
|
|
|
local np = {x = bcp.x, y = bcp.y + 1, z = bcp.z}
|
2012-10-31 19:06:11 +01:00
|
|
|
-- Check what's here
|
2014-04-28 03:02:48 +02:00
|
|
|
local n2 = core.get_node(np)
|
2013-08-18 01:15:38 +02:00
|
|
|
-- If it's not air or liquid, remove node and replace it with
|
|
|
|
-- it's drops
|
|
|
|
if n2.name ~= "air" and (not core.registered_nodes[n2.name] or
|
|
|
|
core.registered_nodes[n2.name].liquidtype == "none") then
|
|
|
|
core.remove_node(np)
|
|
|
|
if core.registered_nodes[n2.name].buildable_to == false then
|
|
|
|
-- Add dropped items
|
|
|
|
local drops = core.get_node_drops(n2.name, "")
|
|
|
|
for _, dropped_item in ipairs(drops) do
|
|
|
|
core.add_item(np, dropped_item)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- Run script hook
|
|
|
|
for _, callback in ipairs(core.registered_on_dignodes) do
|
2016-03-19 13:43:58 +01:00
|
|
|
callback(np, n2)
|
2013-08-18 01:15:38 +02:00
|
|
|
end
|
2012-10-31 19:06:11 +01:00
|
|
|
end
|
|
|
|
-- Create node and remove entity
|
2016-03-27 22:09:35 +02:00
|
|
|
if core.registered_nodes[self.node.name] then
|
|
|
|
core.add_node(np, self.node)
|
|
|
|
end
|
2012-10-31 19:06:11 +01:00
|
|
|
self.object:remove()
|
2012-12-19 22:24:54 +01:00
|
|
|
nodeupdate(np)
|
2014-07-24 11:51:07 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
local vel = self.object:getvelocity()
|
2016-03-19 13:43:58 +01:00
|
|
|
if vector.equals(vel, {x = 0, y = 0, z = 0}) then
|
2014-07-24 11:51:07 +02:00
|
|
|
local npos = self.object:getpos()
|
|
|
|
self.object:setpos(vector.round(npos))
|
2012-10-31 19:06:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2013-07-27 20:34:30 +02:00
|
|
|
function spawn_falling_node(p, node)
|
2014-11-26 13:48:43 +01:00
|
|
|
local obj = core.add_entity(p, "__builtin:falling_node")
|
2013-07-27 20:34:30 +02:00
|
|
|
obj:get_luaentity():set_node(node)
|
2012-10-31 19:06:11 +01:00
|
|
|
end
|
|
|
|
|
2012-12-01 13:32:32 +01:00
|
|
|
function drop_attached_node(p)
|
2014-04-28 03:02:48 +02:00
|
|
|
local nn = core.get_node(p).name
|
|
|
|
core.remove_node(p)
|
2016-03-19 13:43:58 +01:00
|
|
|
for _, item in ipairs(core.get_node_drops(nn, "")) do
|
2012-12-01 13:32:32 +01:00
|
|
|
local pos = {
|
2013-01-12 20:49:55 +01:00
|
|
|
x = p.x + math.random()/2 - 0.25,
|
|
|
|
y = p.y + math.random()/2 - 0.25,
|
|
|
|
z = p.z + math.random()/2 - 0.25,
|
2012-12-01 13:32:32 +01:00
|
|
|
}
|
2014-04-28 03:02:48 +02:00
|
|
|
core.add_item(pos, item)
|
2012-12-01 13:32:32 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function check_attached_node(p, n)
|
2014-04-28 03:02:48 +02:00
|
|
|
local def = core.registered_nodes[n.name]
|
2016-03-19 13:43:58 +01:00
|
|
|
local d = {x = 0, y = 0, z = 0}
|
2012-12-01 13:32:32 +01:00
|
|
|
if def.paramtype2 == "wallmounted" then
|
2016-03-19 13:43:58 +01:00
|
|
|
d = core.wallmounted_to_dir(n.param2)
|
2012-12-01 13:32:32 +01:00
|
|
|
else
|
|
|
|
d.y = -1
|
|
|
|
end
|
2016-03-19 13:43:58 +01:00
|
|
|
local p2 = vector.add(p, d)
|
2014-04-28 03:02:48 +02:00
|
|
|
local nn = core.get_node(p2).name
|
|
|
|
local def2 = core.registered_nodes[nn]
|
2012-12-01 13:32:32 +01:00
|
|
|
if def2 and not def2.walkable then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2012-10-31 19:06:11 +01:00
|
|
|
--
|
|
|
|
-- Some common functions
|
|
|
|
--
|
|
|
|
|
2016-03-30 16:50:10 +02:00
|
|
|
function nodeupdate_single(p)
|
2014-11-26 13:48:43 +01:00
|
|
|
local n = core.get_node(p)
|
2014-04-28 03:02:48 +02:00
|
|
|
if core.get_item_group(n.name, "falling_node") ~= 0 then
|
2016-03-19 13:43:58 +01:00
|
|
|
local p_bottom = {x = p.x, y = p.y - 1, z = p.z}
|
2014-11-26 13:48:43 +01:00
|
|
|
local n_bottom = core.get_node(p_bottom)
|
2012-10-31 19:06:11 +01:00
|
|
|
-- Note: walkable is in the node definition, not in item groups
|
2014-04-28 03:02:48 +02:00
|
|
|
if core.registered_nodes[n_bottom.name] and
|
|
|
|
(core.get_item_group(n.name, "float") == 0 or
|
|
|
|
core.registered_nodes[n_bottom.name].liquidtype == "none") and
|
|
|
|
(n.name ~= n_bottom.name or (core.registered_nodes[n_bottom.name].leveled and
|
|
|
|
core.get_node_level(p_bottom) < core.get_node_max_level(p_bottom))) and
|
2014-06-08 22:53:48 +02:00
|
|
|
(not core.registered_nodes[n_bottom.name].walkable or
|
2014-04-28 03:02:48 +02:00
|
|
|
core.registered_nodes[n_bottom.name].buildable_to) then
|
2016-03-30 16:50:10 +02:00
|
|
|
n.level = core.get_node_level(p)
|
|
|
|
core.remove_node(p)
|
|
|
|
spawn_falling_node(p, n)
|
|
|
|
return true
|
2012-10-31 19:06:11 +01:00
|
|
|
end
|
|
|
|
end
|
2014-06-08 22:53:48 +02:00
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
if core.get_item_group(n.name, "attached_node") ~= 0 then
|
2012-12-01 13:32:32 +01:00
|
|
|
if not check_attached_node(p, n) then
|
|
|
|
drop_attached_node(p)
|
2016-03-30 16:50:10 +02:00
|
|
|
return true
|
2012-12-01 13:32:32 +01:00
|
|
|
end
|
|
|
|
end
|
2016-03-30 16:50:10 +02:00
|
|
|
|
|
|
|
return false
|
2012-10-31 19:06:11 +01:00
|
|
|
end
|
|
|
|
|
2016-03-30 16:50:10 +02:00
|
|
|
-- This table is specifically ordered.
|
|
|
|
-- We don't walk diagonals, only our direct neighbors, and self.
|
|
|
|
-- Down first as likely case, but always before self. The same with sides.
|
|
|
|
-- Up must come last, so that things above self will also fall all at once.
|
|
|
|
local nodeupdate_neighbors = {
|
2016-04-14 08:10:37 +02:00
|
|
|
{x = -1, y = -1, z = 0},
|
|
|
|
{x = 1, y = -1, z = 0},
|
|
|
|
{x = 0, y = -1, z = -1},
|
|
|
|
{x = 0, y = -1, z = 1},
|
2016-03-30 16:50:10 +02:00
|
|
|
{x = 0, y = -1, z = 0},
|
|
|
|
{x = -1, y = 0, z = 0},
|
|
|
|
{x = 1, y = 0, z = 0},
|
|
|
|
{x = 0, y = 0, z = 1},
|
|
|
|
{x = 0, y = 0, z = -1},
|
|
|
|
{x = 0, y = 0, z = 0},
|
|
|
|
{x = 0, y = 1, z = 0},
|
|
|
|
}
|
|
|
|
|
|
|
|
function nodeupdate(p)
|
|
|
|
-- Round p to prevent falling entities to get stuck.
|
2016-03-19 13:43:58 +01:00
|
|
|
p = vector.round(p)
|
|
|
|
|
2016-03-30 16:50:10 +02:00
|
|
|
-- We make a stack, and manually maintain size for performance.
|
|
|
|
-- Stored in the stack, we will maintain tables with pos, and
|
|
|
|
-- last neighbor visited. This way, when we get back to each
|
|
|
|
-- node, we know which directions we have already walked, and
|
|
|
|
-- which direction is the next to walk.
|
|
|
|
local s = {}
|
|
|
|
local n = 0
|
|
|
|
-- The neighbor order we will visit from our table.
|
|
|
|
local v = 1
|
|
|
|
|
|
|
|
while true do
|
|
|
|
-- Push current pos onto the stack.
|
|
|
|
n = n + 1
|
|
|
|
s[n] = {p = p, v = v}
|
|
|
|
-- Select next node from neighbor list.
|
|
|
|
p = vector.add(p, nodeupdate_neighbors[v])
|
|
|
|
-- Now we check out the node. If it is in need of an update,
|
|
|
|
-- it will let us know in the return value (true = updated).
|
|
|
|
if not nodeupdate_single(p) then
|
|
|
|
-- If we don't need to "recurse" (walk) to it then pop
|
|
|
|
-- our previous pos off the stack and continue from there,
|
|
|
|
-- with the v value we were at when we last were at that
|
|
|
|
-- node
|
|
|
|
repeat
|
|
|
|
local pop = s[n]
|
|
|
|
p = pop.p
|
|
|
|
v = pop.v
|
|
|
|
s[n] = nil
|
|
|
|
n = n - 1
|
|
|
|
-- If there's nothing left on the stack, and no
|
|
|
|
-- more sides to walk to, we're done and can exit
|
2016-04-14 08:10:37 +02:00
|
|
|
if n == 0 and v == 11 then
|
2016-03-30 16:50:10 +02:00
|
|
|
return
|
|
|
|
end
|
2016-04-14 08:10:37 +02:00
|
|
|
until v < 11
|
2016-03-30 16:50:10 +02:00
|
|
|
-- The next round walk the next neighbor in list.
|
|
|
|
v = v + 1
|
|
|
|
else
|
|
|
|
-- If we did need to walk the neighbor, then
|
|
|
|
-- start walking it from the walk order start (1),
|
|
|
|
-- and not the order we just pushed up the stack.
|
|
|
|
v = 1
|
|
|
|
end
|
2012-10-31 19:06:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Global callbacks
|
|
|
|
--
|
|
|
|
|
|
|
|
function on_placenode(p, node)
|
|
|
|
nodeupdate(p)
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
core.register_on_placenode(on_placenode)
|
2012-10-31 19:06:11 +01:00
|
|
|
|
|
|
|
function on_dignode(p, node)
|
|
|
|
nodeupdate(p)
|
|
|
|
end
|
2014-04-28 03:02:48 +02:00
|
|
|
core.register_on_dignode(on_dignode)
|
2016-04-30 16:31:11 +02:00
|
|
|
|
|
|
|
function on_punchnode(p, node)
|
|
|
|
nodeupdate(p)
|
|
|
|
end
|
|
|
|
core.register_on_punchnode(on_punchnode)
|