Builtin: Replace deprecated function calls (#7561)
[oweals/minetest.git] / builtin / game / falling.lua
1 -- Minetest: builtin/item.lua
2
3 local builtin_shared = ...
4
5 --
6 -- Falling stuff
7 --
8
9 core.register_entity(":__builtin:falling_node", {
10         initial_properties = {
11                 visual = "wielditem",
12                 visual_size = {x = 0.667, y = 0.667},
13                 textures = {},
14                 physical = true,
15                 is_visible = false,
16                 collide_with_objects = false,
17                 collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
18         },
19
20         node = {},
21         meta = {},
22
23         set_node = function(self, node, meta)
24                 self.node = node
25                 self.meta = meta or {}
26                 self.object:set_properties({
27                         is_visible = true,
28                         textures = {node.name},
29                 })
30         end,
31
32         get_staticdata = function(self)
33                 local ds = {
34                         node = self.node,
35                         meta = self.meta,
36                 }
37                 return core.serialize(ds)
38         end,
39
40         on_activate = function(self, staticdata)
41                 self.object:set_armor_groups({immortal = 1})
42
43                 local ds = core.deserialize(staticdata)
44                 if ds and ds.node then
45                         self:set_node(ds.node, ds.meta)
46                 elseif ds then
47                         self:set_node(ds)
48                 elseif staticdata ~= "" then
49                         self:set_node({name = staticdata})
50                 end
51         end,
52
53         on_step = function(self, dtime)
54                 -- Set gravity
55                 local acceleration = self.object:get_acceleration()
56                 if not vector.equals(acceleration, {x = 0, y = -10, z = 0}) then
57                         self.object:set_acceleration({x = 0, y = -10, z = 0})
58                 end
59                 -- Turn to actual node when colliding with ground, or continue to move
60                 local pos = self.object:get_pos()
61                 -- Position of bottom center point
62                 local bcp = {x = pos.x, y = pos.y - 0.7, z = pos.z}
63                 -- 'bcn' is nil for unloaded nodes
64                 local bcn = core.get_node_or_nil(bcp)
65                 -- Delete on contact with ignore at world edges
66                 if bcn and bcn.name == "ignore" then
67                         self.object:remove()
68                         return
69                 end
70                 local bcd = bcn and core.registered_nodes[bcn.name]
71                 if bcn and
72                                 (not bcd or bcd.walkable or
73                                 (core.get_item_group(self.node.name, "float") ~= 0 and
74                                 bcd.liquidtype ~= "none")) then
75                         if bcd and bcd.leveled and
76                                         bcn.name == self.node.name then
77                                 local addlevel = self.node.level
78                                 if not addlevel or addlevel <= 0 then
79                                         addlevel = bcd.leveled
80                                 end
81                                 if core.add_node_level(bcp, addlevel) == 0 then
82                                         self.object:remove()
83                                         return
84                                 end
85                         elseif bcd and bcd.buildable_to and
86                                         (core.get_item_group(self.node.name, "float") == 0 or
87                                         bcd.liquidtype == "none") then
88                                 core.remove_node(bcp)
89                                 return
90                         end
91                         local np = {x = bcp.x, y = bcp.y + 1, z = bcp.z}
92                         -- Check what's here
93                         local n2 = core.get_node(np)
94                         local nd = core.registered_nodes[n2.name]
95                         -- If it's not air or liquid, remove node and replace it with
96                         -- it's drops
97                         if n2.name ~= "air" and (not nd or nd.liquidtype == "none") then
98                                 core.remove_node(np)
99                                 if nd and nd.buildable_to == false then
100                                         -- Add dropped items
101                                         local drops = core.get_node_drops(n2, "")
102                                         for _, dropped_item in pairs(drops) do
103                                                 core.add_item(np, dropped_item)
104                                         end
105                                 end
106                                 -- Run script hook
107                                 for _, callback in pairs(core.registered_on_dignodes) do
108                                         callback(np, n2)
109                                 end
110                         end
111                         -- Create node and remove entity
112                         local def = core.registered_nodes[self.node.name]
113                         if def then
114                                 core.add_node(np, self.node)
115                                 if self.meta then
116                                         local meta = core.get_meta(np)
117                                         meta:from_table(self.meta)
118                                 end
119                                 if def.sounds and def.sounds.place and def.sounds.place.name then
120                                         core.sound_play(def.sounds.place, {pos = np})
121                                 end
122                         end
123                         self.object:remove()
124                         core.check_for_falling(np)
125                         return
126                 end
127                 local vel = self.object:get_velocity()
128                 if vector.equals(vel, {x = 0, y = 0, z = 0}) then
129                         local npos = self.object:get_pos()
130                         self.object:set_pos(vector.round(npos))
131                 end
132         end
133 })
134
135 local function convert_to_falling_node(pos, node)
136         local obj = core.add_entity(pos, "__builtin:falling_node")
137         if not obj then
138                 return false
139         end
140         node.level = core.get_node_level(pos)
141         local meta = core.get_meta(pos)
142         local metatable = meta and meta:to_table() or {}
143
144         obj:get_luaentity():set_node(node, metatable)
145         core.remove_node(pos)
146         return true
147 end
148
149 function core.spawn_falling_node(pos)
150         local node = core.get_node(pos)
151         if node.name == "air" or node.name == "ignore" then
152                 return false
153         end
154         return convert_to_falling_node(pos, node)
155 end
156
157 local function drop_attached_node(p)
158         local n = core.get_node(p)
159         local drops = core.get_node_drops(n, "")
160         local def = core.registered_items[n.name]
161         if def and def.preserve_metadata then
162                 local oldmeta = core.get_meta(p):to_table().fields
163                 -- Copy pos and node because the callback can modify them.
164                 local pos_copy = {x=p.x, y=p.y, z=p.z}
165                 local node_copy = {name=n.name, param1=n.param1, param2=n.param2}
166                 local drop_stacks = {}
167                 for k, v in pairs(drops) do
168                         drop_stacks[k] = ItemStack(v)
169                 end
170                 drops = drop_stacks
171                 def.preserve_metadata(pos_copy, node_copy, oldmeta, drops)
172         end
173         core.remove_node(p)
174         for _, item in pairs(drops) do
175                 local pos = {
176                         x = p.x + math.random()/2 - 0.25,
177                         y = p.y + math.random()/2 - 0.25,
178                         z = p.z + math.random()/2 - 0.25,
179                 }
180                 core.add_item(pos, item)
181         end
182 end
183
184 function builtin_shared.check_attached_node(p, n)
185         local def = core.registered_nodes[n.name]
186         local d = {x = 0, y = 0, z = 0}
187         if def.paramtype2 == "wallmounted" or
188                         def.paramtype2 == "colorwallmounted" then
189                 -- The fallback vector here is in case 'wallmounted to dir' is nil due
190                 -- to voxelmanip placing a wallmounted node without resetting a
191                 -- pre-existing param2 value that is out-of-range for wallmounted.
192                 -- The fallback vector corresponds to param2 = 0.
193                 d = core.wallmounted_to_dir(n.param2) or {x = 0, y = 1, z = 0}
194         else
195                 d.y = -1
196         end
197         local p2 = vector.add(p, d)
198         local nn = core.get_node(p2).name
199         local def2 = core.registered_nodes[nn]
200         if def2 and not def2.walkable then
201                 return false
202         end
203         return true
204 end
205
206 --
207 -- Some common functions
208 --
209
210 function core.check_single_for_falling(p)
211         local n = core.get_node(p)
212         if core.get_item_group(n.name, "falling_node") ~= 0 then
213                 local p_bottom = {x = p.x, y = p.y - 1, z = p.z}
214                 -- Only spawn falling node if node below is loaded
215                 local n_bottom = core.get_node_or_nil(p_bottom)
216                 local d_bottom = n_bottom and core.registered_nodes[n_bottom.name]
217                 if d_bottom and
218
219                                 (core.get_item_group(n.name, "float") == 0 or
220                                 d_bottom.liquidtype == "none") and
221
222                                 (n.name ~= n_bottom.name or (d_bottom.leveled and
223                                 core.get_node_level(p_bottom) <
224                                 core.get_node_max_level(p_bottom))) and
225
226                                 (not d_bottom.walkable or d_bottom.buildable_to) then
227                         convert_to_falling_node(p, n)
228                         return true
229                 end
230         end
231
232         if core.get_item_group(n.name, "attached_node") ~= 0 then
233                 if not builtin_shared.check_attached_node(p, n) then
234                         drop_attached_node(p)
235                         return true
236                 end
237         end
238
239         return false
240 end
241
242 -- This table is specifically ordered.
243 -- We don't walk diagonals, only our direct neighbors, and self.
244 -- Down first as likely case, but always before self. The same with sides.
245 -- Up must come last, so that things above self will also fall all at once.
246 local check_for_falling_neighbors = {
247         {x = -1, y = -1, z = 0},
248         {x = 1, y = -1, z = 0},
249         {x = 0, y = -1, z = -1},
250         {x = 0, y = -1, z = 1},
251         {x = 0, y = -1, z = 0},
252         {x = -1, y = 0, z = 0},
253         {x = 1, y = 0, z = 0},
254         {x = 0, y = 0, z = 1},
255         {x = 0, y = 0, z = -1},
256         {x = 0, y = 0, z = 0},
257         {x = 0, y = 1, z = 0},
258 }
259
260 function core.check_for_falling(p)
261         -- Round p to prevent falling entities to get stuck.
262         p = vector.round(p)
263
264         -- We make a stack, and manually maintain size for performance.
265         -- Stored in the stack, we will maintain tables with pos, and
266         -- last neighbor visited. This way, when we get back to each
267         -- node, we know which directions we have already walked, and
268         -- which direction is the next to walk.
269         local s = {}
270         local n = 0
271         -- The neighbor order we will visit from our table.
272         local v = 1
273
274         while true do
275                 -- Push current pos onto the stack.
276                 n = n + 1
277                 s[n] = {p = p, v = v}
278                 -- Select next node from neighbor list.
279                 p = vector.add(p, check_for_falling_neighbors[v])
280                 -- Now we check out the node. If it is in need of an update,
281                 -- it will let us know in the return value (true = updated).
282                 if not core.check_single_for_falling(p) then
283                         -- If we don't need to "recurse" (walk) to it then pop
284                         -- our previous pos off the stack and continue from there,
285                         -- with the v value we were at when we last were at that
286                         -- node
287                         repeat
288                                 local pop = s[n]
289                                 p = pop.p
290                                 v = pop.v
291                                 s[n] = nil
292                                 n = n - 1
293                                 -- If there's nothing left on the stack, and no
294                                 -- more sides to walk to, we're done and can exit
295                                 if n == 0 and v == 11 then
296                                         return
297                                 end
298                         until v < 11
299                         -- The next round walk the next neighbor in list.
300                         v = v + 1
301                 else
302                         -- If we did need to walk the neighbor, then
303                         -- start walking it from the walk order start (1),
304                         -- and not the order we just pushed up the stack.
305                         v = 1
306                 end
307         end
308 end
309
310 --
311 -- Global callbacks
312 --
313
314 local function on_placenode(p, node)
315         core.check_for_falling(p)
316 end
317 core.register_on_placenode(on_placenode)
318
319 local function on_dignode(p, node)
320         core.check_for_falling(p)
321 end
322 core.register_on_dignode(on_dignode)
323
324 local function on_punchnode(p, node)
325         core.check_for_falling(p)
326 end
327 core.register_on_punchnode(on_punchnode)