Skip to content

Commit fe3c5a7

Browse files
HybridDogparamat
HybridDog
authored andcommittedApr 27, 2015
allow overriding papyrus and cactus grow functions
dont grow cactus on a lying one use minetest.get_node 2 times less do a bit what ShadowNinja wrote add comment return true if the plant is set
1 parent d0070f2 commit fe3c5a7

File tree

1 file changed

+63
-41
lines changed

1 file changed

+63
-41
lines changed
 

‎mods/default/functions.lua

+63-41
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ function default.node_sound_glass_defaults(table)
8383
return table
8484
end
8585

86+
8687
--
8788
-- Lavacooling
8889
--
@@ -102,8 +103,8 @@ minetest.register_abm({
102103
neighbors = {"group:water"},
103104
interval = 1,
104105
chance = 1,
105-
action = function(pos, node, active_object_count, active_object_count_wider)
106-
default.cool_lava_flowing(pos, node, active_object_count, active_object_count_wider)
106+
action = function(...)
107+
default.cool_lava_flowing(...)
107108
end,
108109
})
109110

@@ -112,66 +113,86 @@ minetest.register_abm({
112113
neighbors = {"group:water"},
113114
interval = 1,
114115
chance = 1,
115-
action = function(pos, node, active_object_count, active_object_count_wider)
116-
default.cool_lava_source(pos, node, active_object_count, active_object_count_wider)
116+
action = function(...)
117+
default.cool_lava_source(...)
117118
end,
118119
})
119120

121+
120122
--
121123
-- Papyrus and cactus growing
122124
--
123125

126+
function default.grow_cactus(pos, node)
127+
if node.param2 ~= 0 then
128+
return
129+
end
130+
pos.y = pos.y-1
131+
if minetest.get_item_group(minetest.get_node(pos).name, "sand") == 0 then
132+
return
133+
end
134+
pos.y = pos.y+1
135+
local height = 0
136+
while node.name == "default:cactus" and height < 4 and node.param2 == 0 do
137+
height = height+1
138+
pos.y = pos.y+1
139+
node = minetest.get_node(pos)
140+
end
141+
if height == 4
142+
or node.name ~= "air" then
143+
return
144+
end
145+
minetest.set_node(pos, {name="default:cactus"})
146+
return true
147+
end
148+
149+
function default.grow_papyrus(pos, node)
150+
pos.y = pos.y-1
151+
local name = minetest.get_node(pos).name
152+
if name ~= "default:dirt_with_grass"
153+
and name ~= "default:dirt" then
154+
return
155+
end
156+
if not minetest.find_node_near(pos, 3, {"group:water"}) then
157+
return
158+
end
159+
pos.y = pos.y+1
160+
local height = 0
161+
while node.name == "default:papyrus" and height < 4 do
162+
height = height+1
163+
pos.y = pos.y+1
164+
node = minetest.get_node(pos)
165+
end
166+
if height == 4
167+
or node.name ~= "air" then
168+
return
169+
end
170+
minetest.set_node(pos, {name="default:papyrus"})
171+
return true
172+
end
173+
174+
-- wrapping the functions in abm action is necessary to make overriding them possible
124175
minetest.register_abm({
125176
nodenames = {"default:cactus"},
126177
neighbors = {"group:sand"},
127178
interval = 50,
128179
chance = 20,
129-
action = function(pos, node)
130-
pos.y = pos.y-1
131-
local name = minetest.get_node(pos).name
132-
if minetest.get_item_group(name, "sand") ~= 0 then
133-
pos.y = pos.y+1
134-
local height = 0
135-
while minetest.get_node(pos).name == "default:cactus" and height < 4 do
136-
height = height+1
137-
pos.y = pos.y+1
138-
end
139-
if height < 4 then
140-
if minetest.get_node(pos).name == "air" then
141-
minetest.set_node(pos, {name="default:cactus"})
142-
end
143-
end
144-
end
145-
end,
180+
action = function(...)
181+
default.grow_cactus(...)
182+
end
146183
})
147184

148185
minetest.register_abm({
149186
nodenames = {"default:papyrus"},
150187
neighbors = {"default:dirt", "default:dirt_with_grass"},
151188
interval = 50,
152189
chance = 20,
153-
action = function(pos, node)
154-
pos.y = pos.y-1
155-
local name = minetest.get_node(pos).name
156-
if name == "default:dirt" or name == "default:dirt_with_grass" then
157-
if minetest.find_node_near(pos, 3, {"group:water"}) == nil then
158-
return
159-
end
160-
pos.y = pos.y+1
161-
local height = 0
162-
while minetest.get_node(pos).name == "default:papyrus" and height < 4 do
163-
height = height+1
164-
pos.y = pos.y+1
165-
end
166-
if height < 4 then
167-
if minetest.get_node(pos).name == "air" then
168-
minetest.set_node(pos, {name="default:papyrus"})
169-
end
170-
end
171-
end
172-
end,
190+
action = function(...)
191+
default.grow_papyrus(...)
192+
end
173193
})
174194

195+
175196
--
176197
-- dig upwards
177198
--
@@ -185,6 +206,7 @@ function default.dig_up(pos, node, digger)
185206
end
186207
end
187208

209+
188210
--
189211
-- Leafdecay
190212
--

0 commit comments

Comments
 (0)
Please sign in to comment.