2012-12-27 09:54:19 +01:00
|
|
|
local corner_nodebox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {{ -16/32-0.001, -17/32, -3/32, 0, -13/32, 3/32 },
|
|
|
|
{ -3/32, -17/32, -16/32+0.001, 3/32, -13/32, 3/32}}
|
|
|
|
}
|
|
|
|
|
|
|
|
local corner_selectionbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -16/32-0.001, -18/32, -16/32, 5/32, -12/32, 5/32 },
|
|
|
|
}
|
|
|
|
|
|
|
|
local corner_get_rules = function (node)
|
2015-10-04 13:30:34 +02:00
|
|
|
local rules =
|
2012-12-27 09:54:19 +01:00
|
|
|
{{x = 1, y = 0, z = 0},
|
|
|
|
{x = 0, y = 0, z = -1}}
|
|
|
|
|
|
|
|
for i = 0, node.param2 do
|
2014-11-22 15:42:22 +01:00
|
|
|
rules = mesecon.rotate_rules_left(rules)
|
2012-12-27 09:54:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return rules
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_extrawires:corner_on", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {
|
2012-12-27 18:48:02 +01:00
|
|
|
"jeija_insulated_wire_curved_tb_on.png",
|
|
|
|
"jeija_insulated_wire_curved_tb_on.png^[transformR270",
|
2012-12-27 09:54:19 +01:00
|
|
|
"jeija_insulated_wire_sides_on.png",
|
|
|
|
"jeija_insulated_wire_ends_on.png",
|
|
|
|
"jeija_insulated_wire_sides_on.png",
|
|
|
|
"jeija_insulated_wire_ends_on.png"
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2012-12-27 09:54:19 +01:00
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = corner_selectionbox,
|
|
|
|
node_box = corner_nodebox,
|
|
|
|
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
2013-02-19 16:42:33 +01:00
|
|
|
drop = "mesecons_extrawires:corner_off",
|
2015-10-04 13:30:34 +02:00
|
|
|
mesecons = {conductor =
|
2012-12-27 09:54:19 +01:00
|
|
|
{
|
|
|
|
state = mesecon.state.on,
|
|
|
|
rules = corner_get_rules,
|
|
|
|
offstate = "mesecons_extrawires:corner_off"
|
2017-10-07 00:44:49 +02:00
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
2012-12-27 09:54:19 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("mesecons_extrawires:corner_off", {
|
|
|
|
drawtype = "nodebox",
|
2017-01-22 13:39:10 +01:00
|
|
|
description = "Insulated Mesecon Corner",
|
2012-12-27 09:54:19 +01:00
|
|
|
tiles = {
|
2012-12-27 18:48:02 +01:00
|
|
|
"jeija_insulated_wire_curved_tb_off.png",
|
|
|
|
"jeija_insulated_wire_curved_tb_off.png^[transformR270",
|
2012-12-27 09:54:19 +01:00
|
|
|
"jeija_insulated_wire_sides_off.png",
|
|
|
|
"jeija_insulated_wire_ends_off.png",
|
|
|
|
"jeija_insulated_wire_sides_off.png",
|
|
|
|
"jeija_insulated_wire_ends_off.png"
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2017-10-31 22:50:39 +01:00
|
|
|
is_ground_content = false,
|
2012-12-27 09:54:19 +01:00
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = corner_selectionbox,
|
|
|
|
node_box = corner_nodebox,
|
|
|
|
groups = {dig_immediate = 3},
|
2015-10-04 13:30:34 +02:00
|
|
|
mesecons = {conductor =
|
2012-12-27 09:54:19 +01:00
|
|
|
{
|
|
|
|
state = mesecon.state.off,
|
|
|
|
rules = corner_get_rules,
|
|
|
|
onstate = "mesecons_extrawires:corner_on"
|
2017-10-07 00:44:49 +02:00
|
|
|
}},
|
|
|
|
on_blast = mesecon.on_blastnode,
|
2012-12-27 09:54:19 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2013-04-28 12:40:08 +02:00
|
|
|
output = "mesecons_extrawires:corner_off 3",
|
2012-12-27 09:54:19 +01:00
|
|
|
recipe = {
|
|
|
|
{"", "", ""},
|
|
|
|
{"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off", ""},
|
|
|
|
{"", "mesecons_insulated:insulated_off", ""},
|
|
|
|
}
|
|
|
|
})
|