2015-06-29 19:55:56 +02:00
|
|
|
--MESECON TORCHES
|
|
|
|
|
|
|
|
local rotate_torch_rules = function (rules, param2)
|
|
|
|
if param2 == 5 then
|
|
|
|
return mesecon:rotate_rules_right(rules)
|
|
|
|
elseif param2 == 2 then
|
|
|
|
return mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules)) --180 degrees
|
|
|
|
elseif param2 == 4 then
|
|
|
|
return mesecon:rotate_rules_left(rules)
|
|
|
|
elseif param2 == 1 then
|
|
|
|
return mesecon:rotate_rules_down(rules)
|
|
|
|
elseif param2 == 0 then
|
|
|
|
return mesecon:rotate_rules_up(rules)
|
|
|
|
else
|
|
|
|
return rules
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local torch_get_output_rules = function(node)
|
|
|
|
local rules = {
|
|
|
|
{x = 1, y = 0, z = 0},
|
|
|
|
{x = 0, y = 0, z = 1},
|
|
|
|
{x = 0, y = 0, z =-1},
|
|
|
|
{x = 0, y = 1, z = 0},
|
|
|
|
{x = 0, y =-1, z = 0}}
|
|
|
|
|
|
|
|
return rotate_torch_rules(rules, node.param2)
|
|
|
|
end
|
|
|
|
|
|
|
|
local torch_get_input_rules = function(node)
|
|
|
|
local rules = {{x = -2, y = 0, z = 0},
|
|
|
|
{x = -1, y = 1, z = 0}}
|
|
|
|
|
|
|
|
return rotate_torch_rules(rules, node.param2)
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-01-05 04:39:36 +01:00
|
|
|
output = 'mesecons_torch:mesecon_torch_on',
|
2015-06-29 19:55:56 +02:00
|
|
|
recipe = {
|
2017-01-09 18:45:34 +01:00
|
|
|
{"mesecons:redstone"},
|
2017-01-31 23:32:56 +01:00
|
|
|
{"mcl_core:stick"},}
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-02-21 13:49:36 +01:00
|
|
|
mcl_torches.register_torch("mesecon_torch_off", "Redstone Torch (off)", "jeija_torches_off.png",
|
2017-02-10 15:38:53 +01:00
|
|
|
"mcl_torches_torch_floor.obj", "mcl_torches_torch_wall.obj",
|
|
|
|
{"jeija_torches_off.png"},
|
|
|
|
0,
|
|
|
|
{dig_immediate=3, dig_by_water=1, not_in_creative_inventory=1},
|
2017-02-11 18:46:23 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
2017-02-10 15:38:53 +01:00
|
|
|
{
|
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.off,
|
|
|
|
rules = torch_get_output_rules
|
|
|
|
}},
|
|
|
|
drop = "mesecons_torch:mesecon_torch_on",
|
|
|
|
}
|
|
|
|
)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-21 13:49:36 +01:00
|
|
|
mcl_torches.register_torch("mesecon_torch_on", "Redstone Torch", "jeija_torches_on_inv.png",
|
2017-02-10 15:38:53 +01:00
|
|
|
"mcl_torches_torch_floor.obj", "mcl_torches_torch_wall.obj",
|
|
|
|
{"jeija_torches_on.png"},
|
|
|
|
7,
|
|
|
|
{dig_immediate=3, dig_by_water=1},
|
2017-02-11 18:46:23 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
2017-02-10 15:38:53 +01:00
|
|
|
{
|
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on,
|
|
|
|
rules = torch_get_output_rules
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
|
|
|
minetest.register_node("mesecons_torch:redstoneblock", {
|
2017-01-04 06:20:13 +01:00
|
|
|
description = "Block of Redstone",
|
2017-02-13 14:52:37 +01:00
|
|
|
tiles = {"redstone_redstone_block.png"},
|
2015-06-29 19:55:56 +02:00
|
|
|
stack_max = 64,
|
|
|
|
groups = {cracky=1},
|
2017-02-11 18:46:23 +01:00
|
|
|
sounds = mcl_sounds.node_sound_stone_defaults(),
|
2017-01-04 22:36:51 +01:00
|
|
|
is_ground_content = false,
|
2015-06-29 19:55:56 +02:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on,
|
|
|
|
rules = torch_get_output_rules
|
|
|
|
}},
|
2017-02-22 16:22:28 +01:00
|
|
|
mcl_blast_resistance = 30,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mesecons_torch:redstoneblock",
|
|
|
|
recipe = {
|
|
|
|
{'mesecons:wire_00000000_off','mesecons:wire_00000000_off','mesecons:wire_00000000_off'},
|
|
|
|
{'mesecons:wire_00000000_off','mesecons:wire_00000000_off','mesecons:wire_00000000_off'},
|
|
|
|
{'mesecons:wire_00000000_off','mesecons:wire_00000000_off','mesecons:wire_00000000_off'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'mesecons:wire_00000000_off 9',
|
|
|
|
recipe = {
|
|
|
|
{'mesecons_torch:redstoneblock'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
2017-02-10 15:38:53 +01:00
|
|
|
nodenames = {"mesecons_torch:mesecon_torch_off","mesecons_torch:mesecon_torch_off_wall","mesecons_torch:mesecon_torch_on","mesecons_torch:mesecon_torch_on_wall"},
|
2015-06-29 19:55:56 +02:00
|
|
|
interval = 1,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node)
|
|
|
|
local is_powered = false
|
|
|
|
for _, rule in ipairs(torch_get_input_rules(node)) do
|
|
|
|
local src = mesecon:addPosRule(pos, rule)
|
|
|
|
if mesecon:is_power_on(src) then
|
|
|
|
is_powered = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if is_powered then
|
|
|
|
if node.name == "mesecons_torch:mesecon_torch_on" then
|
|
|
|
mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_off")
|
|
|
|
mesecon:receptor_off(pos, torch_get_output_rules(node))
|
2017-02-10 15:38:53 +01:00
|
|
|
elseif node.name == "mesecons_torch:mesecon_torch_on_wall" then
|
|
|
|
mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_off_wall")
|
|
|
|
mesecon:receptor_off(pos, torch_get_output_rules(node))
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
elseif node.name == "mesecons_torch:mesecon_torch_off" then
|
|
|
|
mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_on")
|
|
|
|
mesecon:receptor_on(pos, torch_get_output_rules(node))
|
2017-02-10 15:38:53 +01:00
|
|
|
elseif node.name == "mesecons_torch:mesecon_torch_off_wall" then
|
|
|
|
mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_on_wall")
|
|
|
|
mesecon:receptor_on(pos, torch_get_output_rules(node))
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Param2 Table (Block Attached To)
|
|
|
|
-- 5 = z-1
|
|
|
|
-- 3 = x-1
|
|
|
|
-- 4 = z+1
|
|
|
|
-- 2 = x+1
|
|
|
|
-- 0 = y+1
|
|
|
|
-- 1 = y-1
|