mirror of
https://github.com/minetest-mods/digtron.git
synced 2024-12-22 20:32:22 +01:00
No need to make auto_cycle global
This commit is contained in:
parent
33995bc6ec
commit
3209856d6b
@ -107,8 +107,7 @@ if minetest.get_modpath("doc") then
|
|||||||
"tooltip[help;" .. S("Show documentation about this block").. "]"
|
"tooltip[help;" .. S("Show documentation about this block").. "]"
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Needed to make this global so that it could recurse into minetest.after
|
local function auto_cycle(pos)
|
||||||
digtron.auto_cycle = function(pos)
|
|
||||||
local node = minetest.get_node(pos)
|
local node = minetest.get_node(pos)
|
||||||
local controlling_coordinate = digtron.get_controlling_coordinate(pos, node.param2)
|
local controlling_coordinate = digtron.get_controlling_coordinate(pos, node.param2)
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
@ -128,13 +127,13 @@ digtron.auto_cycle = function(pos)
|
|||||||
status = status .. "\n" .. S("Cycles remaining: @1", cycle) .. "\n" .. S("Halted!")
|
status = status .. "\n" .. S("Cycles remaining: @1", cycle) .. "\n" .. S("Halted!")
|
||||||
meta:set_string("infotext", status)
|
meta:set_string("infotext", status)
|
||||||
if return_code == 1 then --return code 1 happens when there's unloaded nodes adjacent, just keep trying.
|
if return_code == 1 then --return code 1 happens when there's unloaded nodes adjacent, just keep trying.
|
||||||
minetest.after(meta:get_int("period"), digtron.auto_cycle, newpos)
|
minetest.after(meta:get_int("period"), auto_cycle, newpos)
|
||||||
else
|
else
|
||||||
meta:set_string("formspec", auto_formspec)
|
meta:set_string("formspec", auto_formspec)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
meta = minetest.get_meta(newpos)
|
meta = minetest.get_meta(newpos)
|
||||||
minetest.after(meta:get_int("period"), digtron.auto_cycle, newpos)
|
minetest.after(meta:get_int("period"), auto_cycle, newpos)
|
||||||
meta:set_string("infotext", status)
|
meta:set_string("infotext", status)
|
||||||
meta:set_string("lateral_done", "true")
|
meta:set_string("lateral_done", "true")
|
||||||
end
|
end
|
||||||
@ -147,7 +146,7 @@ digtron.auto_cycle = function(pos)
|
|||||||
status = status .. "\n" .. S("Cycles remaining: @1", cycle) .. "\n" .. S("Halted!")
|
status = status .. "\n" .. S("Cycles remaining: @1", cycle) .. "\n" .. S("Halted!")
|
||||||
meta:set_string("infotext", status)
|
meta:set_string("infotext", status)
|
||||||
if return_code == 1 then --return code 1 happens when there's unloaded nodes adjacent, just keep trying.
|
if return_code == 1 then --return code 1 happens when there's unloaded nodes adjacent, just keep trying.
|
||||||
minetest.after(meta:get_int("period"), digtron.auto_cycle, newpos)
|
minetest.after(meta:get_int("period"), auto_cycle, newpos)
|
||||||
else
|
else
|
||||||
meta:set_string("formspec", auto_formspec)
|
meta:set_string("formspec", auto_formspec)
|
||||||
end
|
end
|
||||||
@ -162,7 +161,7 @@ digtron.auto_cycle = function(pos)
|
|||||||
meta:set_string("lateral_done", nil)
|
meta:set_string("lateral_done", nil)
|
||||||
|
|
||||||
if cycle > 0 then
|
if cycle > 0 then
|
||||||
minetest.after(meta:get_int("period"), digtron.auto_cycle, newpos)
|
minetest.after(meta:get_int("period"), auto_cycle, newpos)
|
||||||
else
|
else
|
||||||
meta:set_string("formspec", auto_formspec)
|
meta:set_string("formspec", auto_formspec)
|
||||||
end
|
end
|
||||||
@ -252,7 +251,7 @@ minetest.register_node("digtron:auto_controller", {
|
|||||||
if fields.execute then
|
if fields.execute then
|
||||||
meta:set_string("waiting", nil)
|
meta:set_string("waiting", nil)
|
||||||
meta:set_string("formspec", nil)
|
meta:set_string("formspec", nil)
|
||||||
digtron.auto_cycle(pos)
|
auto_cycle(pos)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -343,4 +342,4 @@ minetest.register_node("digtron:pusher", {
|
|||||||
minetest.get_meta(pos):set_string("waiting", nil)
|
minetest.get_meta(pos):set_string("waiting", nil)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user