minetest/builtin/game/falling.lua

207 lines
5.3 KiB
Lua
Raw Normal View History

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",
visual_size = {x = 0.667, y = 0.667},
2012-10-31 19:06:11 +01:00
textures = {},
physical = true,
is_visible = false,
collide_with_objects = false,
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
},
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
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},
})
2012-10-31 19:06:11 +01:00
end,
get_staticdata = function(self)
return core.serialize(self.node)
2012-10-31 19:06:11 +01:00
end,
on_activate = function(self, staticdata)
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)
-- 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()
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
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
bcd.liquidtype ~= "none")) then
if bcd and bcd.leveled and
bcn.name == self.node.name then
local addlevel = self.node.level
if not addlevel or addlevel <= 0 then
addlevel = bcd.leveled
end
2014-04-28 03:02:48 +02:00
if core.add_node_level(bcp, addlevel) == 0 then
self.object:remove()
return
end
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
bcd.liquidtype == "none") then
2014-04-28 03:02:48 +02:00
core.remove_node(bcp)
return
end
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)
-- 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
callback(np, n2)
end
2012-10-31 19:06:11 +01:00
end
-- Create node and remove entity
2014-04-28 03:02:48 +02:00
core.add_node(np, self.node)
2012-10-31 19:06:11 +01:00
self.object:remove()
nodeupdate(np)
return
end
local vel = self.object:getvelocity()
if vector.equals(vel, {x = 0, y = 0, z = 0}) then
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
function drop_attached_node(p)
2014-04-28 03:02:48 +02:00
local nn = core.get_node(p).name
core.remove_node(p)
for _, item in ipairs(core.get_node_drops(nn, "")) do
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,
}
2014-04-28 03:02:48 +02:00
core.add_item(pos, item)
end
end
function check_attached_node(p, n)
2014-04-28 03:02:48 +02:00
local def = core.registered_nodes[n.name]
local d = {x = 0, y = 0, z = 0}
if def.paramtype2 == "wallmounted" then
d = core.wallmounted_to_dir(n.param2)
else
d.y = -1
end
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]
if def2 and not def2.walkable then
return false
end
return true
end
2012-10-31 19:06:11 +01:00
--
-- Some common functions
--
function nodeupdate_single(p, delay)
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
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
if delay then
core.after(0.1, nodeupdate_single, p, false)
else
n.level = core.get_node_level(p)
2014-04-28 03:02:48 +02:00
core.remove_node(p)
2013-07-27 20:34:30 +02:00
spawn_falling_node(p, n)
nodeupdate(p)
end
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
if not check_attached_node(p, n) then
drop_attached_node(p)
nodeupdate(p)
end
end
2012-10-31 19:06:11 +01:00
end
2013-07-27 20:34:30 +02:00
function nodeupdate(p, delay)
-- Round p to prevent falling entities to get stuck
p = vector.round(p)
for x = -1, 1 do
for y = -1, 1 do
for z = -1, 1 do
local d = vector.new(x, y, z)
nodeupdate_single(vector.add(p, d), delay or not (x == 0 and y == 0 and z == 0))
2012-10-31 19:06:11 +01:00
end
end
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)