2012-09-09 13:34:21 +02:00
|
|
|
local tjunction_nodebox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {{ -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 },
|
|
|
|
{ -3/32, -17/32, -16/32+0.001, 3/32, -13/32, -3/32},}
|
|
|
|
}
|
|
|
|
|
|
|
|
local tjunction_selectionbox = {
|
|
|
|
type = "fixed",
|
2012-09-11 00:48:06 +02:00
|
|
|
fixed = { -16/32-0.001, -18/32, -16/32, 16/32+0.001, -12/32, 7/32 },
|
|
|
|
}
|
2012-09-09 13:34:21 +02:00
|
|
|
|
2012-12-08 22:28:46 +01:00
|
|
|
local tjunction_get_rules = function (node)
|
|
|
|
local rules =
|
|
|
|
{{x = 1, y = 0, z = 0},
|
|
|
|
{x =-1, y = 0, z = 0},
|
|
|
|
{x = 0, y = 0, z = -1}}
|
|
|
|
|
|
|
|
if node.param2 == 1 then
|
|
|
|
rules = mesecon:rotate_rules_left(rules)
|
|
|
|
elseif node.param2 == 2 then
|
|
|
|
rules = mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules))
|
|
|
|
elseif node.param2 == 3 then
|
|
|
|
rules = mesecon:rotate_rules_right(rules)
|
|
|
|
end
|
|
|
|
return rules
|
|
|
|
end
|
|
|
|
|
2012-09-09 13:34:21 +02:00
|
|
|
minetest.register_node("mesecons_extrawires:tjunction_on", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {
|
2012-12-22 02:24:43 +01:00
|
|
|
"jeija_insulated_wire_sides_on.png",
|
|
|
|
"jeija_insulated_wire_sides_on.png",
|
2012-09-09 13:34:21 +02:00
|
|
|
"jeija_insulated_wire_ends_on.png",
|
|
|
|
"jeija_insulated_wire_ends_on.png",
|
2012-12-22 02:24:43 +01:00
|
|
|
"jeija_insulated_wire_sides_on.png",
|
2012-09-09 13:34:21 +02:00
|
|
|
"jeija_insulated_wire_ends_on.png"
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = tjunction_selectionbox,
|
|
|
|
node_box = tjunction_nodebox,
|
2012-12-13 18:42:45 +01:00
|
|
|
groups = {dig_immediate = 3, mesecon_conductor_craftable=1, not_in_creative_inventory = 1},
|
2012-09-09 13:34:21 +02:00
|
|
|
drop = "mesecons_insulated:insulated_off",
|
2012-12-08 22:28:46 +01:00
|
|
|
mesecons = {conductor =
|
|
|
|
{
|
|
|
|
state = mesecon.state.on,
|
|
|
|
rules = tjunction_get_rules,
|
|
|
|
offstate = "mesecons_extrawires:tjunction_off"
|
|
|
|
}}
|
2012-09-09 13:34:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_extrawires:tjunction_off", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
description = "T-junction",
|
|
|
|
tiles = {
|
2012-12-22 02:24:43 +01:00
|
|
|
"jeija_insulated_wire_sides_off.png",
|
|
|
|
"jeija_insulated_wire_sides_off.png",
|
2012-09-09 13:34:21 +02:00
|
|
|
"jeija_insulated_wire_ends_off.png",
|
|
|
|
"jeija_insulated_wire_ends_off.png",
|
2012-12-22 02:24:43 +01:00
|
|
|
"jeija_insulated_wire_sides_off.png",
|
2012-09-09 13:34:21 +02:00
|
|
|
"jeija_insulated_wire_ends_off.png"
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = tjunction_selectionbox,
|
|
|
|
node_box = tjunction_nodebox,
|
2012-12-13 18:42:45 +01:00
|
|
|
groups = {dig_immediate = 3, mesecon_conductor_craftable=1},
|
2012-12-08 22:28:46 +01:00
|
|
|
mesecons = {conductor =
|
|
|
|
{
|
|
|
|
state = mesecon.state.off,
|
|
|
|
rules = tjunction_get_rules,
|
|
|
|
onstate = "mesecons_extrawires:tjunction_on"
|
|
|
|
}}
|
2012-09-09 13:34:21 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_extrawires:tjunction_off" 3',
|
|
|
|
recipe = {
|
|
|
|
{"", "", ""},
|
|
|
|
{"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off"},
|
|
|
|
{"", "mesecons_insulated:insulated_off", ""},
|
|
|
|
}
|
|
|
|
})
|