2012-01-08 18:23:44 +01:00
|
|
|
--MESECON TORCHES
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-01-26 22:19:04 +01:00
|
|
|
output = '"jeija:mesecon_torch_on" 4',
|
2012-01-08 18:23:44 +01:00
|
|
|
recipe = {
|
2012-01-26 22:19:04 +01:00
|
|
|
{'"jeija:mesecon_off"'},
|
2012-01-08 18:23:44 +01:00
|
|
|
{'craft "default:stick"'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("jeija:mesecon_torch_off", {
|
|
|
|
drawtype = "torchlike",
|
|
|
|
tile_images = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"},
|
|
|
|
inventory_image = "jeija_torches_off.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
2012-01-26 22:39:03 +01:00
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
legacy_wallmounted = true,
|
2012-01-08 18:23:44 +01:00
|
|
|
material = minetest.digprop_constanttime(0.5),
|
2012-01-26 22:19:04 +01:00
|
|
|
drop = '"jeija:mesecon_torch_on" 1',
|
2012-01-08 18:23:44 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("jeija:mesecon_torch_on", {
|
|
|
|
drawtype = "torchlike",
|
|
|
|
tile_images = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"},
|
|
|
|
inventory_image = "jeija_torches_on.png",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
2012-01-26 22:39:03 +01:00
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
legacy_wallmounted = true,
|
2012-01-08 18:23:44 +01:00
|
|
|
material = minetest.digprop_constanttime(0.5),
|
|
|
|
light_source = LIGHT_MAX-5,
|
|
|
|
})
|
|
|
|
|
|
|
|
--[[minetest.register_on_placenode(function(pos, newnode, placer)
|
|
|
|
if (newnode.name=="jeija:mesecon_torch_off" or newnode.name=="jeija:mesecon_torch_on")
|
|
|
|
and (newnode.param2==8 or newnode.param2==4) then
|
|
|
|
minetest.env:remove_node(pos)
|
|
|
|
--minetest.env:add_item(pos, "craft 'jeija:mesecon_torch_on' 1")
|
|
|
|
end
|
|
|
|
end)]]
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"jeija:mesecon_torch_off","jeija:mesecon_torch_on"},
|
2012-01-28 19:01:50 +01:00
|
|
|
interval = 0.1,
|
2012-01-08 18:23:44 +01:00
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
|
|
|
local pa = {x=0, y=0, z=0}
|
2012-01-28 19:01:50 +01:00
|
|
|
--pa.y = 1
|
|
|
|
local rules_string=""
|
2012-01-08 18:23:44 +01:00
|
|
|
|
2012-01-28 19:01:50 +01:00
|
|
|
if node.param2 == 4 then
|
|
|
|
pa.z = -2
|
|
|
|
rules_string="mesecontorch_z+"
|
|
|
|
elseif node.param2 == 2 then
|
|
|
|
pa.x = -2
|
|
|
|
rules_string="mesecontorch_x+"
|
|
|
|
elseif node.param2 == 5 then
|
|
|
|
pa.z = 2
|
|
|
|
rules_string="mesecontorch_z-"
|
|
|
|
elseif node.param2 == 3 then
|
|
|
|
pa.x = 2
|
|
|
|
rules_string="mesecontorch_x-"
|
|
|
|
elseif node.param2 == 1 then
|
|
|
|
pa.y = 2
|
|
|
|
rules_string="mesecontorch_y-"
|
|
|
|
elseif node.param2 == 0 then
|
|
|
|
pa.y = -2
|
|
|
|
rules_string="mesecontorch_y+"
|
2012-01-08 18:23:44 +01:00
|
|
|
end
|
2012-01-28 19:01:50 +01:00
|
|
|
local postc = {x=pos.x-pa.x, y=pos.y-pa.y, z=pos.z-pa.z}
|
|
|
|
--print("Checking at "..dump(postc).." with "..rules_string)
|
|
|
|
if mesecon:is_power_on(postc,0,0,0)==1 then
|
2012-01-08 18:23:44 +01:00
|
|
|
if node.name ~= "jeija:mesecon_torch_off" then
|
|
|
|
minetest.env:add_node(pos, {name="jeija:mesecon_torch_off",param2=node.param2})
|
2012-01-28 19:01:50 +01:00
|
|
|
mesecon:receptor_off(pos, rules_string)
|
2012-01-08 18:23:44 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
if node.name ~= "jeija:mesecon_torch_on" then
|
|
|
|
minetest.env:add_node(pos, {name="jeija:mesecon_torch_on",param2=node.param2})
|
2012-01-28 19:01:50 +01:00
|
|
|
mesecon:receptor_on(pos, rules_string)
|
2012-01-08 18:23:44 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_on_dignode(
|
|
|
|
function(pos, oldnode, digger)
|
|
|
|
if oldnode.name == "jeija:mesecon_torch_on" then
|
|
|
|
mesecon:receptor_off(pos)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
|
|
|
|
minetest.register_on_placenode(function(pos, node, placer)
|
|
|
|
if node.name == "jeija:mesecon_torch_on" then
|
|
|
|
local rules_string=""
|
|
|
|
|
2012-01-28 19:01:50 +01:00
|
|
|
if node.param2 == 4 then
|
|
|
|
rules_string="mesecontorch_z+"
|
|
|
|
elseif node.param2 == 2 then
|
|
|
|
rules_string="mesecontorch_x+"
|
|
|
|
elseif node.param2 == 5 then
|
|
|
|
rules_string="mesecontorch_z-"
|
|
|
|
elseif node.param2 == 3 then
|
|
|
|
rules_string="mesecontorch_x-"
|
|
|
|
elseif node.param2 == 1 then
|
|
|
|
rules_string="mesecontorch_y-"
|
|
|
|
elseif node.param2 == 0 then
|
|
|
|
rules_string="mesecontorch_y+"
|
|
|
|
end
|
2012-01-08 18:23:44 +01:00
|
|
|
|
|
|
|
mesecon:receptor_on(pos, rules_string)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
mesecon:add_receptor_node("jeija:mesecon_torch_on")
|
|
|
|
mesecon:add_receptor_node_off("jeija:mesecon_torch_off")
|
|
|
|
|
|
|
|
-- Param2 Table (Block Attached To)
|
2012-01-26 22:33:11 +01:00
|
|
|
-- 5 = z-1
|
|
|
|
-- 3 = x-1
|
|
|
|
-- 4 = z+1
|
|
|
|
-- 2 = x+1
|
|
|
|
-- 0 = y+1
|
|
|
|
-- 1 = y-1
|