forked from Mirrorlandia_minetest/mesecons
9fda51b650
* Add insulated double corner * Make single corner curved to match double corner * Remove obsolete regular corner textures
81 lines
2.2 KiB
Lua
81 lines
2.2 KiB
Lua
local screwdriver_exists = minetest.global_exists("screwdriver")
|
|
|
|
local corner_selectionbox = {
|
|
type = "fixed",
|
|
fixed = { -16/32, -16/32, -16/32, 5/32, -12/32, 5/32 },
|
|
}
|
|
|
|
local corner_get_rules = function (node)
|
|
local rules =
|
|
{{x = 1, y = 0, z = 0},
|
|
{x = 0, y = 0, z = -1}}
|
|
|
|
for i = 0, node.param2 do
|
|
rules = mesecon.rotate_rules_left(rules)
|
|
end
|
|
|
|
return rules
|
|
end
|
|
|
|
minetest.register_node("mesecons_extrawires:corner_on", {
|
|
drawtype = "mesh",
|
|
mesh = "mesecons_extrawires_corner.obj",
|
|
tiles = {
|
|
{ name = "jeija_insulated_wire_sides_on.png", backface_culling = true },
|
|
{ name = "jeija_insulated_wire_ends_on.png", backface_culling = true },
|
|
},
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
is_ground_content = false,
|
|
walkable = false,
|
|
sunlight_propagates = true,
|
|
selection_box = corner_selectionbox,
|
|
node_box = corner_nodebox,
|
|
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
|
drop = "mesecons_extrawires:corner_off",
|
|
sounds = default.node_sound_defaults(),
|
|
mesecons = {conductor =
|
|
{
|
|
state = mesecon.state.on,
|
|
rules = corner_get_rules,
|
|
offstate = "mesecons_extrawires:corner_off"
|
|
}},
|
|
on_blast = mesecon.on_blastnode,
|
|
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
|
|
})
|
|
|
|
minetest.register_node("mesecons_extrawires:corner_off", {
|
|
drawtype = "mesh",
|
|
description = "Insulated Mesecon Corner",
|
|
mesh = "mesecons_extrawires_corner.obj",
|
|
tiles = {
|
|
{ name = "jeija_insulated_wire_sides_off.png", backface_culling = true },
|
|
{ name = "jeija_insulated_wire_ends_off.png", backface_culling = true },
|
|
},
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
is_ground_content = false,
|
|
walkable = false,
|
|
sunlight_propagates = true,
|
|
selection_box = corner_selectionbox,
|
|
node_box = corner_nodebox,
|
|
groups = {dig_immediate = 3},
|
|
sounds = default.node_sound_defaults(),
|
|
mesecons = {conductor =
|
|
{
|
|
state = mesecon.state.off,
|
|
rules = corner_get_rules,
|
|
onstate = "mesecons_extrawires:corner_on"
|
|
}},
|
|
on_blast = mesecon.on_blastnode,
|
|
on_rotate = screwdriver_exists and screwdriver.rotate_simple,
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mesecons_extrawires:corner_off 3",
|
|
recipe = {
|
|
{"mesecons_insulated:insulated_off", "mesecons_insulated:insulated_off"},
|
|
{"", "mesecons_insulated:insulated_off"},
|
|
}
|
|
})
|