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 =
|
2012-12-27 09:54:19 +01:00
|
|
|
{{x = 0, y = 0, z = 1},
|
|
|
|
{x = 1, y = 0, z = 0},
|
|
|
|
{x = 0, y = 0, z = -1}}
|
2012-12-08 22:28:46 +01:00
|
|
|
|
2012-12-27 09:54:19 +01:00
|
|
|
for i = 0, node.param2 do
|
2014-11-22 15:42:22 +01:00
|
|
|
rules = mesecon.rotate_rules_left(rules)
|
2012-12-08 22:28:46 +01:00
|
|
|
end
|
2012-12-27 09:54:19 +01:00
|
|
|
|
2012-12-08 22:28:46 +01:00
|
|
|
return rules
|
|
|
|
end
|
|
|
|
|
2012-09-09 13:34:21 +02:00
|
|
|
minetest.register_node("mesecons_extrawires:tjunction_on", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {
|
2012-12-27 19:50:54 +01:00
|
|
|
"jeija_insulated_wire_tjunction_tb_on.png",
|
|
|
|
"jeija_insulated_wire_tjunction_tb_on.png^[transformR180",
|
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,
|
2014-05-01 19:42:19 +02:00
|
|
|
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
2012-12-27 09:54:19 +01:00
|
|
|
drop = "mesecons_extrawires:tjunction_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-27 19:50:54 +01:00
|
|
|
"jeija_insulated_wire_tjunction_tb_off.png",
|
|
|
|
"jeija_insulated_wire_tjunction_tb_off.png^[transformR180",
|
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,
|
2015-02-13 23:02:09 +01:00
|
|
|
groups = {dig_immediate = 3},
|
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({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_extrawires:tjunction_off 3",
|
2012-09-09 13:34:21 +02:00
|
|
|
recipe = {
|
|
|
|
{"", "", ""},
|
|
|
|
{"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off"},
|
|
|
|
{"", "mesecons_insulated:insulated_off", ""},
|
|
|
|
}
|
|
|
|
})
|