Torches are working

This commit is contained in:
sfan5 2012-01-28 19:01:50 +01:00
parent 1b51f26aba
commit 73a04914a0
2 changed files with 60 additions and 71 deletions

View File

@ -455,49 +455,37 @@ function mesecon:get_rules(name)
table.insert(rules, {x=0, y=-1, z=0}) table.insert(rules, {x=0, y=-1, z=0})
table.insert(rules, {x=0, y=1, z=0}) table.insert(rules, {x=0, y=1, z=0})
end end
if name=="mesecontorch_x+" then
table.insert(rules, {x=1, y=1, z=0})
table.insert(rules, {x=1, y=0, z=0})
table.insert(rules, {x=1, y=-1, z=0})
end
if name=="mesecontorch_x-" then if name=="mesecontorch_x-" then
table.insert(rules, {x=-1, y=1, z=0}) table.insert(rules, {x=1, y=0, z=0})
table.insert(rules, {x=-1, y=0, z=0})
table.insert(rules, {x=-1, y=-1, z=0})
end
if name=="mesecontorch_z+" then
table.insert(rules, {x=0, y=1, z=1})
table.insert(rules, {x=0, y=0, z=1}) table.insert(rules, {x=0, y=0, z=1})
table.insert(rules, {x=0, y=-1, z=1}) table.insert(rules, {x=0, y=0, z=-1})
end
if name=="mesecontorch_x+" then
table.insert(rules, {x=-1, y=0, z=0})
table.insert(rules, {x=0, y=0, z=1})
table.insert(rules, {x=0, y=0, z=-1})
end end
if name=="mesecontorch_z-" then if name=="mesecontorch_z-" then
table.insert(rules, {x=0, y=1, z=-1}) table.insert(rules, {x=0, y=0, z=1})
table.insert(rules, {x=0, y=0, z=-1}) table.insert(rules, {x=1, y=0, z=0})
table.insert(rules, {x=0, y=-1, z=-1}) table.insert(rules, {x=-1, y=0, z=0})
end end
if name=="mesecontorch_y+" then if name=="mesecontorch_z+" then
table.insert(rules, {x=-1, y=1, z=0}) table.insert(rules, {x=0, y=0, z=-1})
table.insert(rules, {x=-1, y=1, z=1}) table.insert(rules, {x=1, y=0, z=0})
table.insert(rules, {x=-1, y=1, z=-1}) table.insert(rules, {x=-1, y=0, z=0})
end
if name=="mesecontorch_y-" then
table.insert(rules, {x=0, y=1, z=0})
table.insert(rules, {x=1, y=1, z=0}) table.insert(rules, {x=1, y=1, z=0})
table.insert(rules, {x=1, y=1, z=1}) table.insert(rules, {x=-1, y=1, z=0})
table.insert(rules, {x=1, y=1, z=-1})
table.insert(rules, {x=0, y=1, z=0})
table.insert(rules, {x=0, y=1, z=1}) table.insert(rules, {x=0, y=1, z=1})
table.insert(rules, {x=0, y=1, z=-1}) table.insert(rules, {x=0, y=1, z=-1})
end end
if name=="mesecontorch_y-" then if name=="mesecontorch_y+" then
table.insert(rules, {x=-1, y=-1, z=0}) table.insert(rules, {x=0, y=-1, z=0})
table.insert(rules, {x=-1, y=-1, z=1})
table.insert(rules, {x=-1, y=-1, z=-1})
table.insert(rules, {x=1, y=-1, z=0}) table.insert(rules, {x=1, y=-1, z=0})
table.insert(rules, {x=1, y=-1, z=1}) table.insert(rules, {x=-1, y=-1, z=0})
table.insert(rules, {x=1, y=-1, z=-1})
table.insert(rules, {x=0, y=-1, z=0})
table.insert(rules, {x=0, y=-1, z=1}) table.insert(rules, {x=0, y=-1, z=1})
table.insert(rules, {x=0, y=-1, z=-1}) table.insert(rules, {x=0, y=-1, z=-1})
end end

View File

@ -43,42 +43,43 @@ end)]]
minetest.register_abm({ minetest.register_abm({
nodenames = {"jeija:mesecon_torch_off","jeija:mesecon_torch_on"}, nodenames = {"jeija:mesecon_torch_off","jeija:mesecon_torch_on"},
interval = 0.2, interval = 0.1,
chance = 1, chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider) action = function(pos, node, active_object_count, active_object_count_wider)
local pa = {x=0, y=0, z=0} local pa = {x=0, y=0, z=0}
pa.y = 1 --pa.y = 1
local rules_string="" local rules_string=""
if node.param2 == 5 then if node.param2 == 4 then
pa.z = -1 pa.z = -2
rules_string="mesecontorch_z+" rules_string="mesecontorch_z+"
elseif node.param2 == 3 then elseif node.param2 == 2 then
pa.x = -1 pa.x = -2
rules_string="mesecontorch_x+" rules_string="mesecontorch_x+"
elseif node.param2 == 4 then elseif node.param2 == 5 then
pa.z = 1 pa.z = 2
rules_string="mesecontorch_z-" rules_string="mesecontorch_z-"
elseif node.param2 == 2 then elseif node.param2 == 3 then
pa.x = 1 pa.x = 2
rules_string="mesecontorch_x-" rules_string="mesecontorch_x-"
elseif node.param2 == 0 then elseif node.param2 == 1 then
pa.y = 1 pa.y = 2
rules_string="mesecontorch_y-" rules_string="mesecontorch_y-"
elseif node.param2 == 1 then elseif node.param2 == 0 then
pa.y = -1 pa.y = -2
rules_string="mesecontorch_y+" rules_string="mesecontorch_y+"
end end
local postc = {x=pos.x-pa.x, y=pos.y-pa.y, z=pos.z-pa.z}
if mesecon:is_power_on({x=pos.x, y=pos.y, z=pos.z}, pa.x, pa.y, pa.z)==1 then --print("Checking at "..dump(postc).." with "..rules_string)
if mesecon:is_power_on(postc,0,0,0)==1 then
if node.name ~= "jeija:mesecon_torch_off" then if node.name ~= "jeija:mesecon_torch_off" then
minetest.env:add_node(pos, {name="jeija:mesecon_torch_off",param2=node.param2}) minetest.env:add_node(pos, {name="jeija:mesecon_torch_off",param2=node.param2})
mesecon:receptor_off({x=pos.x-pa.x, y=pos.y-pa.y, z=pos.z-pa.z}, rules_string) mesecon:receptor_off(pos, rules_string)
end end
else else
if node.name ~= "jeija:mesecon_torch_on" then if node.name ~= "jeija:mesecon_torch_on" then
minetest.env:add_node(pos, {name="jeija:mesecon_torch_on",param2=node.param2}) minetest.env:add_node(pos, {name="jeija:mesecon_torch_on",param2=node.param2})
mesecon:receptor_on({x=pos.x-pa.x, y=pos.y-pa.y, z=pos.z-pa.z}, rules_string) mesecon:receptor_on(pos, rules_string)
end end
end end
end end
@ -96,19 +97,19 @@ minetest.register_on_placenode(function(pos, node, placer)
if node.name == "jeija:mesecon_torch_on" then if node.name == "jeija:mesecon_torch_on" then
local rules_string="" local rules_string=""
if node.param2 == 5 then if node.param2 == 4 then
rules_string="mesecontorch_z+" rules_string="mesecontorch_z+"
elseif node.param2 == 3 then elseif node.param2 == 2 then
rules_string="mesecontorch_x+" rules_string="mesecontorch_x+"
elseif node.param2 == 4 then elseif node.param2 == 5 then
rules_string="mesecontorch_z-" rules_string="mesecontorch_z-"
elseif node.param2 == 2 then elseif node.param2 == 3 then
rules_string="mesecontorch_x-" rules_string="mesecontorch_x-"
elseif node.param2 == 0 then elseif node.param2 == 1 then
rules_string="mesecontorch_y-" rules_string="mesecontorch_y-"
elseif node.param2 == 1 then elseif node.param2 == 0 then
rules_string="mesecontorch_y+" rules_string="mesecontorch_y+"
end end
mesecon:receptor_on(pos, rules_string) mesecon:receptor_on(pos, rules_string)
end end