Update position finding code and fix indentation.

This commit is contained in:
Anthony Zhang 2012-01-09 20:52:19 -05:00
parent f82fb91064
commit f221aeb066
1 changed files with 159 additions and 132 deletions

View File

@ -1,182 +1,209 @@
--TEMPEREST-PLUG --TEMPEREST-PLUG
minetest.register_node("jeija:mesecon_plug", { minetest.register_node("jeija:mesecon_plug", {
drawtype = "raillike", drawtype = "raillike",
paramtype = "light", paramtype = "light",
is_ground_content = true, is_ground_content = true,
tile_images = {"jeija_mesecon_plug.png"}, tile_images = {"jeija_mesecon_plug.png"},
inventory_image = "jeija_mesecon_plug.png", inventory_image = "jeija_mesecon_plug.png",
material = minetest.digprop_constanttime(0.1), material = minetest.digprop_constanttime(0.1),
walkable = false, walkable = false,
selection_box = { selection_box = {
type = "fixed", type = "fixed",
}, },
}) })
mesecon:register_on_signal_on(function(pos, node) mesecon:register_on_signal_on(function(pos, node)
if node.name=="jeija:mesecon_plug" then if node.name=="jeija:mesecon_plug" then
for x = -2,2,2 do local set_node_on = function(pos)
for z = -2,2,2 do node = minetest.env:get_node(pos)
lpos = {x=pos.x+x, y=pos.y, z=pos.z+z} if node.name=="jeija:mesecon_socket_off" then
lnode = minetest.env:get_node(lpos) minetest.env:add_node(pos, {name="jeija:mesecon_socket_on"})
if lnode.name=="jeija:mesecon_socket_off" then nodeupdate(pos)
minetest.env:add_node(lpos, {name="jeija:mesecon_socket_on"}) mesecon:receptor_on(pos)
nodeupdate(lpos) elseif node.name=="jeija:mesecon_inverter_on" then
mesecon:receptor_on(lpos) minetest.env:add_node(pos, {name="jeija:mesecon_inverter_off"})
elseif lnode.name=="jeija:mesecon_inverter_on" then nodeupdate(pos)
minetest.env:add_node(lpos, {name="jeija:mesecon_inverter_off"}) mesecon:receptor_off(pos)
nodeupdate(lpos) end
mesecon:receptor_off(lpos) end
end
end lnode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
end if lnode.name=="air" then set_node_on({x=pos.x-2, y=pos.y, z=pos.z}) end
end
lnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_on({x=pos.x+2, y=pos.y, z=pos.z}) end
lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z-1}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_on({x=pos.x, y=pos.y, z=pos.z-2}) end
lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z+1}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_on({x=pos.x-2, y=pos.y, z=pos.z+2}) end
end
end) end)
mesecon:register_on_signal_off(function(pos, node) mesecon:register_on_signal_off(function(pos, node)
if node.name=="jeija:mesecon_plug" then if node.name=="jeija:mesecon_plug" then
for x = -2,2,2 do local set_node_off = function(pos)
for z = -2,2,2 do node = minetest.env:get_node(pos)
lpos = {x=pos.x+x, y=pos.y, z=pos.z+z} if node.name=="jeija:mesecon_socket_on" then
lnode = minetest.env:get_node(lpos) minetest.env:add_node(pos, {name="jeija:mesecon_socket_off"})
if lnode.name=="jeija:mesecon_socket_on" then nodeupdate(pos)
minetest.env:add_node(lpos, {name="jeija:mesecon_socket_off"}) mesecon:receptor_off(pos)
nodeupdate(lpos) elseif node.name=="jeija:mesecon_inverter_off" then
mesecon:receptor_off(lpos) minetest.env:add_node(pos, {name="jeija:mesecon_inverter_on"})
elseif lnode.name=="jeija:mesecon_inverter_off" then nodeupdate(pos)
minetest.env:add_node(lpos, {name="jeija:mesecon_inverter_on"}) mesecon:receptor_on(pos)
nodeupdate(lpos) end
mesecon:receptor_on(lpos) end
end
end lnode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
end if lnode.name=="air" then set_node_off({x=pos.x-2, y=pos.y, z=pos.z}) end
end
lnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_off({x=pos.x+2, y=pos.y, z=pos.z}) end
lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z-1}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_off({x=pos.x, y=pos.y, z=pos.z-2}) end
lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z+1}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_off({x=pos.x-2, y=pos.y, z=pos.z+2}) end
end
end) end)
minetest.register_on_dignode(function(pos, oldnode, digger) minetest.register_on_dignode(function(pos, oldnode, digger)
if oldnode.name == "jeija:mesecon_plug" then if oldnode.name == "jeija:mesecon_plug" then
for x = -2,2,2 do local set_node_deactivated = function(pos)
for z = -2,2,2 do node = minetest.env:get_node(pos)
lpos = {x=pos.x+x, y=pos.y, z=pos.z+z} if node.name=="jeija:mesecon_socket_on" then
lnode = minetest.env:get_node(lpos) minetest.env:add_node(pos, {name="jeija:mesecon_socket_off"})
if lnode.name=="jeija:mesecon_socket_on" then nodeupdate(pos)
minetest.env:add_node(lpos, {name="jeija:mesecon_socket_off"}) mesecon:receptor_off(pos)
nodeupdate(lpos) elseif node.name=="jeija:mesecon_inverter_on" then
mesecon:receptor_off(lpos) minetest.env:add_node(pos, {name="jeija:mesecon_inverter_off"})
elseif lnode.name=="jeija:mesecon_inverter_on" then nodeupdate(pos)
minetest.env:add_node(lpos, {name="jeija:mesecon_inverter_off"}) mesecon:receptor_off(pos)
nodeupdate(lpos) end
mesecon:receptor_off(lpos) end
end
end lnode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
end if lnode.name=="air" then set_node_deactivated({x=pos.x-2, y=pos.y, z=pos.z}) end
end
lnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_deactivated({x=pos.x+2, y=pos.y, z=pos.z}) end
lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z-1}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_deactivated({x=pos.x, y=pos.y, z=pos.z-2}) end
lnode = minetest.env:get_node({x=pos.x, y=pos.y, z=pos.z+1}) --a node between this node and the one two nodes away
if lnode.name=="air" then set_node_deactivated({x=pos.x-2, y=pos.y, z=pos.z+2}) end
end
end) end)
minetest.register_craft({ minetest.register_craft({
output = 'node "jeija:mesecon_plug" 2', output = 'node "jeija:mesecon_plug" 2',
recipe = { recipe = {
{'', 'node "jeija:mesecon_off"', ''}, {'', 'node "jeija:mesecon_off"', ''},
{'node "jeija:mesecon_off"', 'craft "default:steel_ingot"', 'node "jeija:mesecon_off"'}, {'node "jeija:mesecon_off"', 'craft "default:steel_ingot"', 'node "jeija:mesecon_off"'},
{'', 'node "jeija:mesecon_off"', ''}, {'', 'node "jeija:mesecon_off"', ''},
} }
}) })
--TEMPEREST-SOCKET --TEMPEREST-SOCKET
minetest.register_node("jeija:mesecon_socket_off", { minetest.register_node("jeija:mesecon_socket_off", {
drawtype = "raillike", drawtype = "raillike",
paramtype = "light", paramtype = "light",
is_ground_content = true, is_ground_content = true,
tile_images = {"jeija_mesecon_socket_off.png"}, tile_images = {"jeija_mesecon_socket_off.png"},
inventory_image = "jeija_mesecon_socket_off.png", inventory_image = "jeija_mesecon_socket_off.png",
material = minetest.digprop_constanttime(0.1), material = minetest.digprop_constanttime(0.1),
walkable = false, walkable = false,
selection_box = { selection_box = {
type = "fixed", type = "fixed",
}, },
}) })
minetest.register_node("jeija:mesecon_socket_on", { minetest.register_node("jeija:mesecon_socket_on", {
drawtype = "raillike", drawtype = "raillike",
paramtype = "light", paramtype = "light",
is_ground_content = true, is_ground_content = true,
tile_images = {"jeija_mesecon_socket_on.png"}, tile_images = {"jeija_mesecon_socket_on.png"},
inventory_image = "jeija_mesecon_socket_on.png", inventory_image = "jeija_mesecon_socket_on.png",
material = minetest.digprop_constanttime(0.1), material = minetest.digprop_constanttime(0.1),
walkable = false, walkable = false,
selection_box = { selection_box = {
type = "fixed", type = "fixed",
}, },
dug_item='node "jeija:mesecon_socket_off" 1', dug_item='node "jeija:mesecon_socket_off" 1',
}) })
minetest.register_on_dignode( minetest.register_on_dignode(
function(pos, oldnode, digger) function(pos, oldnode, digger)
if oldnode.name == "jeija:mesecon_socket_on" then if oldnode.name == "jeija:mesecon_socket_on" then
mesecon:receptor_off(pos) mesecon:receptor_off(pos)
end end
end end
) )
mesecon:add_receptor_node("jeija:mesecon_socket_on") mesecon:add_receptor_node("jeija:mesecon_socket_on")
mesecon:add_receptor_node_off("jeija:mesecon_socket_off") mesecon:add_receptor_node_off("jeija:mesecon_socket_off")
minetest.register_craft({ minetest.register_craft({
output = 'node "jeija:mesecon_socket_off" 2', output = 'node "jeija:mesecon_socket_off" 2',
recipe = { recipe = {
{'', 'craft "default:steel_ingot"', ''}, {'', 'craft "default:steel_ingot"', ''},
{'craft "default:steel_ingot"', 'node "jeija:mesecon_off"', 'craft "default:steel_ingot"'}, {'craft "default:steel_ingot"', 'node "jeija:mesecon_off"', 'craft "default:steel_ingot"'},
{'', 'craft "default:steel_ingot"', ''}, {'', 'craft "default:steel_ingot"', ''},
} }
}) })
--TEMPEREST-INVERTER --TEMPEREST-INVERTER
minetest.register_node("jeija:mesecon_inverter_off", { minetest.register_node("jeija:mesecon_inverter_off", {
drawtype = "raillike", drawtype = "raillike",
paramtype = "light", paramtype = "light",
is_ground_content = true, is_ground_content = true,
tile_images = {"jeija_mesecon_inverter_off.png"}, tile_images = {"jeija_mesecon_inverter_off.png"},
inventory_image = "jeija_mesecon_inverter_off.png", inventory_image = "jeija_mesecon_inverter_off.png",
material = minetest.digprop_constanttime(0.1), material = minetest.digprop_constanttime(0.1),
walkable = false, walkable = false,
selection_box = { selection_box = {
type = "fixed", type = "fixed",
}, },
}) })
minetest.register_node("jeija:mesecon_inverter_on", { minetest.register_node("jeija:mesecon_inverter_on", {
drawtype = "raillike", drawtype = "raillike",
paramtype = "light", paramtype = "light",
is_ground_content = true, is_ground_content = true,
tile_images = {"jeija_mesecon_inverter_on.png"}, tile_images = {"jeija_mesecon_inverter_on.png"},
inventory_image = "jeija_mesecon_inverter_on.png", inventory_image = "jeija_mesecon_inverter_on.png",
material = minetest.digprop_constanttime(0.1), material = minetest.digprop_constanttime(0.1),
walkable = false, walkable = false,
selection_box = { selection_box = {
type = "fixed", type = "fixed",
}, },
dug_item='node "jeija:mesecon_inverter_off" 1', dug_item='node "jeija:mesecon_inverter_off" 1',
}) })
minetest.register_on_dignode( minetest.register_on_dignode(
function(pos, oldnode, digger) function(pos, oldnode, digger)
if oldnode.name == "jeija:mesecon_inverter_on" then if oldnode.name == "jeija:mesecon_inverter_on" then
mesecon:receptor_off(pos) mesecon:receptor_off(pos)
end end
end end
) )
mesecon:add_receptor_node("jeija:mesecon_inverter_on") mesecon:add_receptor_node("jeija:mesecon_inverter_on")
mesecon:add_receptor_node_off("jeija:mesecon_inverter_off") mesecon:add_receptor_node_off("jeija:mesecon_inverter_off")
minetest.register_craft({ minetest.register_craft({
output = 'node "jeija:mesecon_inverter_off" 2', output = 'node "jeija:mesecon_inverter_off" 2',
recipe = { recipe = {
{'node "jeija:mesecon_off"', 'craft "default:steel_ingot"', 'node "jeija:mesecon_off"'}, {'node "jeija:mesecon_off"', 'craft "default:steel_ingot"', 'node "jeija:mesecon_off"'},
{'craft "default:steel_ingot"', '', 'craft "default:steel_ingot"'}, {'craft "default:steel_ingot"', '', 'craft "default:steel_ingot"'},
{'node "jeija:mesecon_off"', 'craft "default:steel_ingot"', 'node "jeija:mesecon_off"'}, {'node "jeija:mesecon_off"', 'craft "default:steel_ingot"', 'node "jeija:mesecon_off"'},
} }
}) })