Move the "boom barrier" to animated textures and make the last gate light stay on solid
This commit is contained in:
parent
4a3a3f40be
commit
08a391e4cc
@ -1,470 +1,508 @@
|
|||||||
-- Boom barrier
|
-- Boom barrier
|
||||||
function move_arm(pos, node)
|
function move_arm(pos, node)
|
||||||
local node = minetest.env:get_node(pos)
|
local node = minetest.env:get_node(pos)
|
||||||
local param2 = node.param2
|
local param2 = node.param2
|
||||||
|
|
||||||
if param2 == 0 then
|
if param2 == 0 then
|
||||||
dir = "z-"
|
dir = "z-"
|
||||||
elseif param2 == 1 then
|
elseif param2 == 1 then
|
||||||
dir = "x-"
|
dir = "x-"
|
||||||
elseif param2 == 2 then
|
elseif param2 == 2 then
|
||||||
dir = "z+"
|
dir = "z+"
|
||||||
elseif param2 == 3 then
|
elseif param2 == 3 then
|
||||||
dir = "x+"
|
dir = "x+"
|
||||||
|
end
|
||||||
|
|
||||||
|
minetest.sound_play("infrastructure_boom_barrier", {
|
||||||
|
pos = pos,
|
||||||
|
gain = BOOM_BARRIER_VOLUME,
|
||||||
|
max_hear_distance = 50
|
||||||
|
})
|
||||||
|
|
||||||
|
if node.name == "infrastructure:boom_barrier_top_h" then
|
||||||
|
minetest.swap_node(pos, {name = "infrastructure:boom_barrier_top_v", param2 = node.param2})
|
||||||
|
|
||||||
|
if dir == "x+" then
|
||||||
|
for i = 1, 10 do
|
||||||
|
pos.x = pos.x + 1
|
||||||
|
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_lightfirst")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_end")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_darkfirst")) == nil then
|
||||||
|
pos.x = pos.x - 1
|
||||||
|
break
|
||||||
|
end
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_v"
|
||||||
|
minetest.env:add_node({x=pos.x-i, y=pos.y+i, z=pos.z}, node)
|
||||||
|
end
|
||||||
|
elseif dir == "x-" then
|
||||||
|
for i = 1, 10 do
|
||||||
|
pos.x = pos.x - 1
|
||||||
|
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_lightfirst")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_end")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_darkfirst")) == nil then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_v"
|
||||||
|
minetest.env:add_node({x=pos.x+i, y=pos.y+i, z=pos.z}, node)
|
||||||
|
end
|
||||||
|
elseif dir == "z+" then
|
||||||
|
for i = 1, 10 do
|
||||||
|
pos.z = pos.z + 1
|
||||||
|
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_lightfirst")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_end")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_darkfirst")) == nil then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_v"
|
||||||
|
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z-i}, node)
|
||||||
|
end
|
||||||
|
elseif dir == "z-" then
|
||||||
|
for i = 1, 10 do
|
||||||
|
pos.z = pos.z - 1
|
||||||
|
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_lightfirst")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_end")
|
||||||
|
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_darkfirst")) == nil then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_v"
|
||||||
|
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z+i}, node)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.sound_play("infrastructure_boom_barrier", {
|
elseif node.name == "infrastructure:boom_barrier_top_v" then
|
||||||
pos = pos,
|
minetest.swap_node(pos, {name = "infrastructure:boom_barrier_top_h", param2 = node.param2})
|
||||||
gain = BOOM_BARRIER_VOLUME,
|
|
||||||
max_hear_distance = 50
|
|
||||||
})
|
|
||||||
|
|
||||||
if node.name == "infrastructure:boom_barrier_top_h" then
|
|
||||||
minetest.swap_node(pos, {name = "infrastructure:boom_barrier_top_v", param2 = node.param2})
|
|
||||||
|
|
||||||
if dir == "x+" then
|
if dir == "x+" then
|
||||||
for i = 1, 10 do
|
for i = 1, 10 do
|
||||||
pos.x = pos.x + 1
|
pos.y = pos.y + 1
|
||||||
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_bright")
|
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
||||||
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_dark")) == nil then
|
break
|
||||||
break
|
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_v"
|
|
||||||
minetest.env:add_node({x=pos.x-i, y=pos.y+i, z=pos.z}, node)
|
|
||||||
end
|
end
|
||||||
elseif dir == "x-" then
|
minetest.env:remove_node(pos)
|
||||||
for i = 1, 10 do
|
if i % 2 == 1 then
|
||||||
pos.x = pos.x - 1
|
node.name = "infrastructure:boom_barrier_arm_h_lightfirst"
|
||||||
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_bright")
|
else
|
||||||
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_dark")) == nil then
|
node.name = "infrastructure:boom_barrier_arm_h_darkfirst"
|
||||||
break
|
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_v"
|
|
||||||
minetest.env:add_node({x=pos.x+i, y=pos.y+i, z=pos.z}, node)
|
|
||||||
end
|
end
|
||||||
elseif dir == "z+" then
|
if minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name ~= "infrastructure:boom_barrier_arm_v" then
|
||||||
for i = 1, 10 do
|
node.name = "infrastructure:boom_barrier_arm_h_end"
|
||||||
pos.z = pos.z + 1
|
|
||||||
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_bright")
|
|
||||||
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_dark")) == nil then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_v"
|
|
||||||
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z-i}, node)
|
|
||||||
end
|
|
||||||
elseif dir == "z-" then
|
|
||||||
for i = 1, 10 do
|
|
||||||
pos.z = pos.z - 1
|
|
||||||
if (string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_bright")
|
|
||||||
or string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_h_dark")) == nil then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_v"
|
|
||||||
minetest.env:add_node({x=pos.x, y=pos.y+i, z=pos.z+i}, node)
|
|
||||||
end
|
end
|
||||||
|
minetest.env:add_node({x=pos.x+i, y=pos.y-i, z=pos.z}, node)
|
||||||
end
|
end
|
||||||
|
elseif dir == "x-" then
|
||||||
elseif node.name == "infrastructure:boom_barrier_top_v" then
|
for i = 1, 10 do
|
||||||
minetest.swap_node(pos, {name = "infrastructure:boom_barrier_top_h", param2 = node.param2})
|
pos.y = pos.y + 1
|
||||||
if dir == "x+" then
|
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
||||||
for i = 1, 10 do
|
break
|
||||||
pos.y = pos.y + 1
|
|
||||||
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
if i % 2 == 1 then
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_bright"
|
|
||||||
else
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_dark"
|
|
||||||
end
|
|
||||||
minetest.env:add_node({x=pos.x+i, y=pos.y-i, z=pos.z}, node)
|
|
||||||
end
|
end
|
||||||
elseif dir == "x-" then
|
minetest.env:remove_node(pos)
|
||||||
for i = 1, 10 do
|
if i % 2 == 1 then
|
||||||
pos.y = pos.y + 1
|
node.name = "infrastructure:boom_barrier_arm_h_lightfirst"
|
||||||
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
else
|
||||||
break
|
node.name = "infrastructure:boom_barrier_arm_h_darkfirst"
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
if i % 2 == 1 then
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_bright"
|
|
||||||
else
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_dark"
|
|
||||||
end
|
|
||||||
minetest.env:add_node({x=pos.x-i, y=pos.y-i, z=pos.z}, node)
|
|
||||||
end
|
end
|
||||||
elseif dir == "z+" then
|
if minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name ~= "infrastructure:boom_barrier_arm_v" then
|
||||||
for i = 1, 10 do
|
node.name = "infrastructure:boom_barrier_arm_h_end"
|
||||||
pos.y = pos.y + 1
|
|
||||||
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
|
||||||
break
|
|
||||||
end
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
if i % 2 == 1 then
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_bright"
|
|
||||||
else
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_dark"
|
|
||||||
end
|
|
||||||
minetest.env:add_node({x=pos.x, y=pos.y-i, z=pos.z+i}, node)
|
|
||||||
end
|
end
|
||||||
elseif dir == "z-" then
|
minetest.env:add_node({x=pos.x-i, y=pos.y-i, z=pos.z}, node)
|
||||||
for i = 1, 10 do
|
end
|
||||||
pos.y = pos.y + 1
|
elseif dir == "z+" then
|
||||||
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
for i = 1, 10 do
|
||||||
break
|
pos.y = pos.y + 1
|
||||||
end
|
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
||||||
minetest.env:remove_node(pos)
|
break
|
||||||
if i % 2 == 1 then
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_bright"
|
|
||||||
else
|
|
||||||
node.name = "infrastructure:boom_barrier_arm_h_dark"
|
|
||||||
end
|
|
||||||
minetest.env:add_node({x=pos.x, y=pos.y-i, z=pos.z-i}, node)
|
|
||||||
end
|
end
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
if i % 2 == 1 then
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_h_lightfirst"
|
||||||
|
else
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_h_darkfirst"
|
||||||
|
end
|
||||||
|
if minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name ~= "infrastructure:boom_barrier_arm_v" then
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_h_end"
|
||||||
|
end
|
||||||
|
minetest.env:add_node({x=pos.x, y=pos.y-i, z=pos.z+i}, node)
|
||||||
|
end
|
||||||
|
elseif dir == "z-" then
|
||||||
|
for i = 1, 10 do
|
||||||
|
pos.y = pos.y + 1
|
||||||
|
if string.match(minetest.env:get_node(pos).name, "infrastructure:boom_barrier_arm_v") == nil then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
if i % 2 == 1 then
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_h_lightfirst"
|
||||||
|
else
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_h_darkfirst"
|
||||||
|
end
|
||||||
|
if minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name ~= "infrastructure:boom_barrier_arm_v" then
|
||||||
|
node.name = "infrastructure:boom_barrier_arm_h_end"
|
||||||
|
end
|
||||||
|
minetest.env:add_node({x=pos.x, y=pos.y-i, z=pos.z-i}, node)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_abm( {
|
minetest.register_node("infrastructure:boom_barrier_top_h", {
|
||||||
nodenames = {"infrastructure:boom_barrier_arm_h_bright", "infrastructure:boom_barrier_arm_h_dark"},
|
description = "Boom barrier mechanism",
|
||||||
interval = 1,
|
tiles = {
|
||||||
chance = 1,
|
"infrastructure_boom_barrier_h_top.png",
|
||||||
action = function(pos, node)
|
"infrastructure_boom_barrier_h_bottom.png",
|
||||||
local node = minetest.env:get_node(pos)
|
"infrastructure_boom_barrier_h_right.png",
|
||||||
if node.name == "infrastructure:boom_barrier_arm_h_bright" then
|
"infrastructure_boom_barrier_h_left.png",
|
||||||
minetest.swap_node(pos, {name = "infrastructure:boom_barrier_arm_h_dark", param2 = node.param2})
|
"infrastructure_boom_barrier_h_front_back.png"
|
||||||
elseif node.name == "infrastructure:boom_barrier_arm_h_dark" then
|
},
|
||||||
minetest.swap_node(pos, {name = "infrastructure:boom_barrier_arm_h_bright", param2 = node.param2})
|
drawtype = "nodebox",
|
||||||
end
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {cracky = 1},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
||||||
|
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
||||||
|
|
||||||
|
{-3/8, -1/2, -1/2, -1/4, -1/4, 1/8},
|
||||||
|
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
||||||
|
{-3/8, -1/8, -1/8, -1/4, 1/8, 1/2},
|
||||||
|
{-1/2, -3/16, 1/4, -3/8, 3/16, 1/2},
|
||||||
|
{-1/2, -1/8, 3/16, -3/8, 1/8, 1/2},
|
||||||
|
{-1/2, -1/16, 1/8, -3/8, 1/16, 1/2},
|
||||||
|
|
||||||
|
{1/4, -1/2, -1/2, 3/8, -1/4, 1/8},
|
||||||
|
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
||||||
|
{1/4, -1/8, -1/8, 3/8, 1/8, 1/2},
|
||||||
|
{3/8, -3/16, 1/4, 1/2, 3/16, 1/2},
|
||||||
|
{3/8, -1/8, 3/16, 1/2, 1/8, 1/2},
|
||||||
|
{3/8, -1/16, 1/8, 1/2, 1/16, 1/2},
|
||||||
|
|
||||||
|
{-3/8, -1/2, -1/2, 3/8, -1/4, -3/8},
|
||||||
|
|
||||||
|
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
||||||
|
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
||||||
|
|
||||||
|
{-3/8, -1/2, -1/2, -1/4, -1/4, 1/8},
|
||||||
|
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
||||||
|
{-3/8, -1/8, -1/8, -1/4, 1/8, 1/2},
|
||||||
|
{-1/2, -3/16, 1/4, -3/8, 3/16, 1/2},
|
||||||
|
{-1/2, -1/8, 3/16, -3/8, 1/8, 1/2},
|
||||||
|
{-1/2, -1/16, 1/8, -3/8, 1/16, 1/2},
|
||||||
|
|
||||||
|
{1/4, -1/2, -1/2, 3/8, -1/4, 1/8},
|
||||||
|
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
||||||
|
{1/4, -1/8, -1/8, 3/8, 1/8, 1/2},
|
||||||
|
{3/8, -3/16, 1/4, 1/2, 3/16, 1/2},
|
||||||
|
{3/8, -1/8, 3/16, 1/2, 1/8, 1/2},
|
||||||
|
{3/8, -1/16, 1/8, 1/2, 1/16, 1/2},
|
||||||
|
|
||||||
|
{-3/8, -1/2, -1/2, 3/8, -1/4, -3/8},
|
||||||
|
|
||||||
|
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
after_place_node = function(pos)
|
||||||
|
local node = minetest.env:get_node(pos)
|
||||||
|
node.name = "infrastructure:boom_barrier_bottom"
|
||||||
|
minetest.env:add_node(pos, node)
|
||||||
|
pos.y = pos.y + 1
|
||||||
|
node.name = "infrastructure:boom_barrier_top_h"
|
||||||
|
minetest.env:add_node(pos, node)
|
||||||
|
end,
|
||||||
|
|
||||||
|
after_dig_node = function(pos)
|
||||||
|
pos.y = pos.y - 1
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
end,
|
||||||
|
|
||||||
|
on_punch = function(pos, node)
|
||||||
|
move_arm(pos, node)
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("infrastructure:boom_barrier_top_v", {
|
||||||
|
tiles = {
|
||||||
|
"infrastructure_boom_barrier_h_front_back.png",
|
||||||
|
"infrastructure_boom_barrier_v_bottom.png",
|
||||||
|
"infrastructure_boom_barrier_v_right.png",
|
||||||
|
"infrastructure_boom_barrier_v_left.png",
|
||||||
|
"infrastructure_boom_barrier_v_front_back.png"
|
||||||
|
},
|
||||||
|
drawtype = "nodebox",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {cracky = 1},
|
||||||
|
drop = "infrastructure:boom_barrier_top_h",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
||||||
|
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
||||||
|
|
||||||
|
{-3/8, -1/8, -1/2, -1/4, 1/2, -1/4},
|
||||||
|
{-3/8, -1/8, -1/2, -1/4, 1/8, 1/8},
|
||||||
|
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
||||||
|
{-1/2, -1/2, -3/16, -3/8, -1/4, 3/16},
|
||||||
|
{-1/2, -1/2, -1/8, -3/8, -3/16, 1/8},
|
||||||
|
{-1/2, -1/2, -1/16, -3/8, -1/8, 1/16},
|
||||||
|
|
||||||
|
{1/4, -1/8, -1/2, 3/8, 1/2, -1/4},
|
||||||
|
{1/4, -1/8, -1/2, 3/8, 1/8, 1/8},
|
||||||
|
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
||||||
|
{3/8, -1/2, -3/16, 1/2, -1/4, 3/16},
|
||||||
|
{3/8, -1/2, -1/8, 1/2, -3/16, 1/8},
|
||||||
|
{3/8, -1/2, -1/16, 1/2, -1/8, 1/16},
|
||||||
|
|
||||||
|
{-3/8, 3/8, -1/2, 3/8, 1/2, -1/4},
|
||||||
|
|
||||||
|
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
||||||
|
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
||||||
|
|
||||||
|
{-3/8, -1/8, -1/2, -1/4, 1/2, -1/4},
|
||||||
|
{-3/8, -1/8, -1/2, -1/4, 1/8, 1/8},
|
||||||
|
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
||||||
|
{-1/2, -1/2, -3/16, -3/8, -1/4, 3/16},
|
||||||
|
{-1/2, -1/2, -1/8, -3/8, -3/16, 1/8},
|
||||||
|
{-1/2, -1/2, -1/16, -3/8, -1/8, 1/16},
|
||||||
|
|
||||||
|
{1/4, -1/8, -1/2, 3/8, 1/2, -1/4},
|
||||||
|
{1/4, -1/8, -1/2, 3/8, 1/8, 1/8},
|
||||||
|
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
||||||
|
{3/8, -1/2, -3/16, 1/2, -1/4, 3/16},
|
||||||
|
{3/8, -1/2, -1/8, 1/2, -3/16, 1/8},
|
||||||
|
{3/8, -1/2, -1/16, 1/2, -1/8, 1/16},
|
||||||
|
|
||||||
|
{-3/8, 3/8, -1/2, 3/8, 1/2, -1/4},
|
||||||
|
|
||||||
|
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
after_dig_node = function(pos)
|
||||||
|
pos.y = pos.y - 1
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
end,
|
||||||
|
|
||||||
|
on_punch = function(pos, node)
|
||||||
|
move_arm(pos, node)
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("infrastructure:boom_barrier_bottom", {
|
||||||
|
tiles = {
|
||||||
|
"infrastructure_traffic_lights_side.png",
|
||||||
|
"infrastructure_traffic_lights_side.png",
|
||||||
|
"infrastructure_automatic_warning_device_bottom.png",
|
||||||
|
"infrastructure_automatic_warning_device_bottom.png",
|
||||||
|
"infrastructure_automatic_warning_device_bottom.png",
|
||||||
|
"infrastructure_automatic_warning_device_bottom.png"
|
||||||
|
},
|
||||||
|
drawtype = "nodebox",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {cracky = 1},
|
||||||
|
drop = "infrastructure:boom_barrier_top_h",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/16, -1/2, -1/16, 1/16, 1/2, 1/16},
|
||||||
|
{-1/2, -1/2, -1/4, 1/2, -3/8, 1/4},
|
||||||
|
{-1/4, -1/2, -1/2, 1/4, -3/8, 1/2},
|
||||||
|
{-1/8, -1/2, -1/8, 1/8, 0, 1/8}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/16, -1/2, -1/16, 1/16, 1/2, 1/16},
|
||||||
|
{-1/2, -1/2, -1/4, 1/2, -3/8, 1/4},
|
||||||
|
{-1/4, -1/2, -1/2, 1/4, -3/8, 1/2},
|
||||||
|
{-1/8, -1/2, -1/8, 1/8, 0, 1/8}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
after_dig_node = function(pos)
|
||||||
|
pos.y = pos.y + 1
|
||||||
|
minetest.env:remove_node(pos)
|
||||||
|
end,
|
||||||
|
|
||||||
|
on_construct = function(pos)
|
||||||
|
local meta = minetest.get_meta(pos)
|
||||||
|
meta:set_string("formspec", "field[channel;Channel;${channel}]")
|
||||||
|
end,
|
||||||
|
|
||||||
|
on_receive_fields = function(pos, formname, fields, sender)
|
||||||
|
if (fields.channel) then
|
||||||
|
minetest.get_meta(pos):set_string("channel", fields.channel)
|
||||||
|
minetest.get_meta(pos):set_string("state", "Off")
|
||||||
end
|
end
|
||||||
})
|
end,
|
||||||
|
|
||||||
minetest.register_node("infrastructure:boom_barrier_top_h", {
|
digiline = {
|
||||||
description = "Boom barrier mechanism",
|
receptor = {},
|
||||||
tiles = {
|
effector = {
|
||||||
"infrastructure_boom_barrier_h_top.png",
|
action = function(pos, node, channel, msg)
|
||||||
"infrastructure_boom_barrier_h_bottom.png",
|
local setchan = minetest.get_meta(pos):get_string("channel")
|
||||||
"infrastructure_boom_barrier_h_right.png",
|
if setchan ~= channel then
|
||||||
"infrastructure_boom_barrier_h_left.png",
|
return
|
||||||
"infrastructure_boom_barrier_h_front_back.png"
|
|
||||||
},
|
|
||||||
drawtype = "nodebox",
|
|
||||||
paramtype = "light",
|
|
||||||
paramtype2 = "facedir",
|
|
||||||
groups = {cracky = 1},
|
|
||||||
node_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
|
||||||
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
|
||||||
|
|
||||||
{-3/8, -1/2, -1/2, -1/4, -1/4, 1/8},
|
|
||||||
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
|
||||||
{-3/8, -1/8, -1/8, -1/4, 1/8, 1/2},
|
|
||||||
{-1/2, -3/16, 1/4, -3/8, 3/16, 1/2},
|
|
||||||
{-1/2, -1/8, 3/16, -3/8, 1/8, 1/2},
|
|
||||||
{-1/2, -1/16, 1/8, -3/8, 1/16, 1/2},
|
|
||||||
|
|
||||||
{1/4, -1/2, -1/2, 3/8, -1/4, 1/8},
|
|
||||||
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
|
||||||
{1/4, -1/8, -1/8, 3/8, 1/8, 1/2},
|
|
||||||
{3/8, -3/16, 1/4, 1/2, 3/16, 1/2},
|
|
||||||
{3/8, -1/8, 3/16, 1/2, 1/8, 1/2},
|
|
||||||
{3/8, -1/16, 1/8, 1/2, 1/16, 1/2},
|
|
||||||
|
|
||||||
{-3/8, -1/2, -1/2, 3/8, -1/4, -3/8},
|
|
||||||
|
|
||||||
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
|
||||||
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
|
||||||
|
|
||||||
{-3/8, -1/2, -1/2, -1/4, -1/4, 1/8},
|
|
||||||
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
|
||||||
{-3/8, -1/8, -1/8, -1/4, 1/8, 1/2},
|
|
||||||
{-1/2, -3/16, 1/4, -3/8, 3/16, 1/2},
|
|
||||||
{-1/2, -1/8, 3/16, -3/8, 1/8, 1/2},
|
|
||||||
{-1/2, -1/16, 1/8, -3/8, 1/16, 1/2},
|
|
||||||
|
|
||||||
{1/4, -1/2, -1/2, 3/8, -1/4, 1/8},
|
|
||||||
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
|
||||||
{1/4, -1/8, -1/8, 3/8, 1/8, 1/2},
|
|
||||||
{3/8, -3/16, 1/4, 1/2, 3/16, 1/2},
|
|
||||||
{3/8, -1/8, 3/16, 1/2, 1/8, 1/2},
|
|
||||||
{3/8, -1/16, 1/8, 1/2, 1/16, 1/2},
|
|
||||||
|
|
||||||
{-3/8, -1/2, -1/2, 3/8, -1/4, -3/8},
|
|
||||||
|
|
||||||
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
after_place_node = function(pos)
|
|
||||||
local node = minetest.env:get_node(pos)
|
|
||||||
node.name = "infrastructure:boom_barrier_bottom"
|
|
||||||
minetest.env:add_node(pos, node)
|
|
||||||
pos.y = pos.y + 1
|
|
||||||
node.name = "infrastructure:boom_barrier_top_h"
|
|
||||||
minetest.env:add_node(pos, node)
|
|
||||||
end,
|
|
||||||
|
|
||||||
after_dig_node = function(pos)
|
|
||||||
pos.y = pos.y - 1
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
end,
|
|
||||||
|
|
||||||
on_punch = function(pos, node)
|
|
||||||
move_arm(pos, node)
|
|
||||||
end
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_node("infrastructure:boom_barrier_top_v", {
|
|
||||||
tiles = {
|
|
||||||
"infrastructure_boom_barrier_h_front_back.png",
|
|
||||||
"infrastructure_boom_barrier_v_bottom.png",
|
|
||||||
"infrastructure_boom_barrier_v_right.png",
|
|
||||||
"infrastructure_boom_barrier_v_left.png",
|
|
||||||
"infrastructure_boom_barrier_v_front_back.png"
|
|
||||||
},
|
|
||||||
drawtype = "nodebox",
|
|
||||||
paramtype = "light",
|
|
||||||
paramtype2 = "facedir",
|
|
||||||
groups = {cracky = 1},
|
|
||||||
drop = "infrastructure:boom_barrier_top_h",
|
|
||||||
node_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
|
||||||
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
|
||||||
|
|
||||||
{-3/8, -1/8, -1/2, -1/4, 1/2, -1/4},
|
|
||||||
{-3/8, -1/8, -1/2, -1/4, 1/8, 1/8},
|
|
||||||
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
|
||||||
{-1/2, -1/2, -3/16, -3/8, -1/4, 3/16},
|
|
||||||
{-1/2, -1/2, -1/8, -3/8, -3/16, 1/8},
|
|
||||||
{-1/2, -1/2, -1/16, -3/8, -1/8, 1/16},
|
|
||||||
|
|
||||||
{1/4, -1/8, -1/2, 3/8, 1/2, -1/4},
|
|
||||||
{1/4, -1/8, -1/2, 3/8, 1/8, 1/8},
|
|
||||||
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
|
||||||
{3/8, -1/2, -3/16, 1/2, -1/4, 3/16},
|
|
||||||
{3/8, -1/2, -1/8, 1/2, -3/16, 1/8},
|
|
||||||
{3/8, -1/2, -1/16, 1/2, -1/8, 1/16},
|
|
||||||
|
|
||||||
{-3/8, 3/8, -1/2, 3/8, 1/2, -1/4},
|
|
||||||
|
|
||||||
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/4, -1/4, -1/4, 1/4, 1/4, 1/4},
|
|
||||||
{-1/8, -1/2, -1/8, 1/8, -1/4, 1/8},
|
|
||||||
|
|
||||||
{-3/8, -1/8, -1/2, -1/4, 1/2, -1/4},
|
|
||||||
{-3/8, -1/8, -1/2, -1/4, 1/8, 1/8},
|
|
||||||
{-3/8, -1/2, -1/8, -1/4, 1/8, 1/8},
|
|
||||||
{-1/2, -1/2, -3/16, -3/8, -1/4, 3/16},
|
|
||||||
{-1/2, -1/2, -1/8, -3/8, -3/16, 1/8},
|
|
||||||
{-1/2, -1/2, -1/16, -3/8, -1/8, 1/16},
|
|
||||||
|
|
||||||
{1/4, -1/8, -1/2, 3/8, 1/2, -1/4},
|
|
||||||
{1/4, -1/8, -1/2, 3/8, 1/8, 1/8},
|
|
||||||
{1/4, -1/2, -1/8, 3/8, 1/8, 1/8},
|
|
||||||
{3/8, -1/2, -3/16, 1/2, -1/4, 3/16},
|
|
||||||
{3/8, -1/2, -1/8, 1/2, -3/16, 1/8},
|
|
||||||
{3/8, -1/2, -1/16, 1/2, -1/8, 1/16},
|
|
||||||
|
|
||||||
{-3/8, 3/8, -1/2, 3/8, 1/2, -1/4},
|
|
||||||
|
|
||||||
{-7/16, -1/16, -1/16, 7/16, 1/16, 1/16}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
after_dig_node = function(pos)
|
|
||||||
pos.y = pos.y - 1
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
end,
|
|
||||||
|
|
||||||
on_punch = function(pos, node)
|
|
||||||
move_arm(pos, node)
|
|
||||||
end
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_node("infrastructure:boom_barrier_bottom", {
|
|
||||||
tiles = {
|
|
||||||
"infrastructure_traffic_lights_side.png",
|
|
||||||
"infrastructure_traffic_lights_side.png",
|
|
||||||
"infrastructure_automatic_warning_device_bottom.png",
|
|
||||||
"infrastructure_automatic_warning_device_bottom.png",
|
|
||||||
"infrastructure_automatic_warning_device_bottom.png",
|
|
||||||
"infrastructure_automatic_warning_device_bottom.png"
|
|
||||||
},
|
|
||||||
drawtype = "nodebox",
|
|
||||||
paramtype = "light",
|
|
||||||
paramtype2 = "facedir",
|
|
||||||
groups = {cracky = 1},
|
|
||||||
drop = "infrastructure:boom_barrier_top_h",
|
|
||||||
node_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/16, -1/2, -1/16, 1/16, 1/2, 1/16},
|
|
||||||
{-1/2, -1/2, -1/4, 1/2, -3/8, 1/4},
|
|
||||||
{-1/4, -1/2, -1/2, 1/4, -3/8, 1/2},
|
|
||||||
{-1/8, -1/2, -1/8, 1/8, 0, 1/8}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/16, -1/2, -1/16, 1/16, 1/2, 1/16},
|
|
||||||
{-1/2, -1/2, -1/4, 1/2, -3/8, 1/4},
|
|
||||||
{-1/4, -1/2, -1/2, 1/4, -3/8, 1/2},
|
|
||||||
{-1/8, -1/2, -1/8, 1/8, 0, 1/8}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
after_dig_node = function(pos)
|
|
||||||
pos.y = pos.y + 1
|
|
||||||
minetest.env:remove_node(pos)
|
|
||||||
end,
|
|
||||||
|
|
||||||
on_construct = function(pos)
|
|
||||||
local meta = minetest.get_meta(pos)
|
|
||||||
meta:set_string("formspec", "field[channel;Channel;${channel}]")
|
|
||||||
end,
|
|
||||||
|
|
||||||
on_receive_fields = function(pos, formname, fields, sender)
|
|
||||||
if (fields.channel) then
|
|
||||||
minetest.get_meta(pos):set_string("channel", fields.channel)
|
|
||||||
minetest.get_meta(pos):set_string("state", "Off")
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
|
|
||||||
digiline = {
|
|
||||||
receptor = {},
|
|
||||||
effector = {
|
|
||||||
action = function(pos, node, channel, msg)
|
|
||||||
local setchan = minetest.get_meta(pos):get_string("channel")
|
|
||||||
if setchan ~= channel then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
pos.y = pos.y + 1
|
|
||||||
local mechnode = minetest.env:get_node(pos)
|
|
||||||
if ((msg == "up" and mechnode.name=="infrastructure:boom_barrier_top_h") or (msg == "down" and mechnode.name=="infrastructure:boom_barrier_top_v")) then
|
|
||||||
move_arm(pos, mechnode)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
}
|
pos.y = pos.y + 1
|
||||||
},
|
local mechnode = minetest.env:get_node(pos)
|
||||||
})
|
if ((msg == "up" and mechnode.name=="infrastructure:boom_barrier_top_h") or (msg == "down" and mechnode.name=="infrastructure:boom_barrier_top_v")) then
|
||||||
|
move_arm(pos, mechnode)
|
||||||
minetest.register_node("infrastructure:boom_barrier_arm_h_bright", {
|
end
|
||||||
description = "Boom barrier arm",
|
end
|
||||||
tiles = {
|
|
||||||
"infrastructure_boom_barrier_arm_h_top.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_left_right_bright.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_left_right_bright.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
|
||||||
},
|
|
||||||
drawtype = "nodebox",
|
|
||||||
paramtype = "light",
|
|
||||||
paramtype2 = "facedir",
|
|
||||||
groups = {cracky = 1},
|
|
||||||
light_source = BOOM_BARRIER_LIGHT_RANGE,
|
|
||||||
node_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/8, -1/2, -1/2, 1/8, -7/16, 1/2},
|
|
||||||
{-1/8, -5/16, -1/2, 1/8, -1/4, 1/2},
|
|
||||||
{-1/8, -1/2, -1/2, -1/16, -1/4, 1/2},
|
|
||||||
{1/16, -1/2, -1/2, 1/8, -1/4, 1/2},
|
|
||||||
{0, -1/4, -1/8, 0, 0, 1/8}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/8, -1/2, -1/2, 1/8, -1/4, 1/2}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
},
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("infrastructure:boom_barrier_arm_h_dark", {
|
minetest.register_node("infrastructure:boom_barrier_arm_h_lightfirst", {
|
||||||
tiles = {
|
description = "Boom barrier arm",
|
||||||
"infrastructure_boom_barrier_arm_h_top.png",
|
tiles = {
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
"infrastructure_boom_barrier_arm_h_top.png",
|
||||||
"infrastructure_boom_barrier_arm_h_left_right_dark.png",
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
"infrastructure_boom_barrier_arm_h_left_right_dark.png",
|
{name="infrastructure_boom_barrier_arm_h_anim_lightfirst.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}},
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
{name="infrastructure_boom_barrier_arm_h_anim_lightfirst.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}},
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
},
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
||||||
drawtype = "nodebox",
|
},
|
||||||
paramtype = "light",
|
drawtype = "nodebox",
|
||||||
paramtype2 = "facedir",
|
paramtype = "light",
|
||||||
groups = {cracky = 1},
|
paramtype2 = "facedir",
|
||||||
drop = "infrastructure:boom_barrier_arm_h_bright",
|
groups = {cracky = 1},
|
||||||
node_box = {
|
light_source = BOOM_BARRIER_LIGHT_RANGE,
|
||||||
type = "fixed",
|
node_box = {
|
||||||
fixed = {
|
type = "fixed",
|
||||||
{-1/8, -1/2, -1/2, 1/8, -7/16, 1/2},
|
fixed = {
|
||||||
{-1/8, -5/16, -1/2, 1/8, -1/4, 1/2},
|
{-1/8, -1/2, -1/2, 1/8, -7/16, 1/2},
|
||||||
{-1/8, -1/2, -1/2, -1/16, -1/4, 1/2},
|
{-1/8, -5/16, -1/2, 1/8, -1/4, 1/2},
|
||||||
{1/16, -1/2, -1/2, 1/8, -1/4, 1/2},
|
{-1/8, -1/2, -1/2, -1/16, -1/4, 1/2},
|
||||||
{0, -1/4, -1/8, 0, 0, 1/8}
|
{1/16, -1/2, -1/2, 1/8, -1/4, 1/2},
|
||||||
}
|
{0, -1/4, -1/8, 0, 0, 1/8}
|
||||||
},
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/8, -1/2, -1/2, 1/8, -1/4, 1/2}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
},
|
||||||
|
selection_box = {
|
||||||
minetest.register_node("infrastructure:boom_barrier_arm_v", {
|
type = "fixed",
|
||||||
tiles = {
|
fixed = {
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
{-1/8, -1/2, -1/2, 1/8, -1/4, 1/2}
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
|
||||||
"infrastructure_boom_barrier_arm_v_left.png",
|
|
||||||
"infrastructure_boom_barrier_arm_v_right.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_top.png",
|
|
||||||
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
|
||||||
},
|
|
||||||
drawtype = "nodebox",
|
|
||||||
paramtype = "light",
|
|
||||||
paramtype2 = "facedir",
|
|
||||||
groups = {cracky = 1},
|
|
||||||
drop = "infrastructure:boom_barrier_arm_h_bright",
|
|
||||||
node_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/8, -1/2, -1/2, 1/8, 1/2, -7/16},
|
|
||||||
{-1/8, -1/2, -5/16, 1/8, 1/2, -1/4},
|
|
||||||
{-1/8, -1/2, -1/2, -1/16, 1/2, -1/4},
|
|
||||||
{1/16, -1/2, -1/2, 1/8, 1/2, -1/4},
|
|
||||||
{0, -1/8, -1/4, 0, 1/8, 0}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {
|
|
||||||
{-1/8, -1/2, -1/2, 1/8, 1/2, -1/4}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_alias("infrastructure:boom_barrier_mechanism", "infrastructure:boom_barrier_top_h")
|
minetest.register_node("infrastructure:boom_barrier_arm_h_darkfirst", {
|
||||||
minetest.register_alias("infrastructure:boom_barrier_arm", "infrastructure:boom_barrier_arm_h_bright")
|
tiles = {
|
||||||
|
"infrastructure_boom_barrier_arm_h_top.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
|
{name="infrastructure_boom_barrier_arm_h_anim_darkfirst.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}},
|
||||||
|
{name="infrastructure_boom_barrier_arm_h_anim_darkfirst.png",animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=1.5}},
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
||||||
|
},
|
||||||
|
drawtype = "nodebox",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {cracky = 1},
|
||||||
|
drop = "infrastructure:boom_barrier_arm_h_lightfirst",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/8, -1/2, -1/2, 1/8, -7/16, 1/2},
|
||||||
|
{-1/8, -5/16, -1/2, 1/8, -1/4, 1/2},
|
||||||
|
{-1/8, -1/2, -1/2, -1/16, -1/4, 1/2},
|
||||||
|
{1/16, -1/2, -1/2, 1/8, -1/4, 1/2},
|
||||||
|
{0, -1/4, -1/8, 0, 0, 1/8}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/8, -1/2, -1/2, 1/8, -1/4, 1/2}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("infrastructure:boom_barrier_arm_h_end", {
|
||||||
|
tiles = {
|
||||||
|
"infrastructure_boom_barrier_arm_h_top.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_left_right_bright.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_left_right_bright.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
||||||
|
},
|
||||||
|
drawtype = "nodebox",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {cracky = 1},
|
||||||
|
drop = "infrastructure:boom_barrier_arm_h_lightfirst",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/8, -1/2, -1/2, 1/8, -7/16, 1/2},
|
||||||
|
{-1/8, -5/16, -1/2, 1/8, -1/4, 1/2},
|
||||||
|
{-1/8, -1/2, -1/2, -1/16, -1/4, 1/2},
|
||||||
|
{1/16, -1/2, -1/2, 1/8, -1/4, 1/2},
|
||||||
|
{0, -1/4, -1/8, 0, 0, 1/8}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/8, -1/2, -1/2, 1/8, -1/4, 1/2}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_alias("infrastructure:boom_barrier_arm_h_dark","infrastructure:boom_barrier_arm_h_darkfirst")
|
||||||
|
minetest.register_alias("infrastructure:boom_barrier_arm_h_bright","infrastructure:boom_barrier_arm_h_lightfirst")
|
||||||
|
|
||||||
|
minetest.register_node("infrastructure:boom_barrier_arm_v", {
|
||||||
|
tiles = {
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png",
|
||||||
|
"infrastructure_boom_barrier_arm_v_left.png",
|
||||||
|
"infrastructure_boom_barrier_arm_v_right.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_top.png",
|
||||||
|
"infrastructure_boom_barrier_arm_h_bottom_front_back.png"
|
||||||
|
},
|
||||||
|
drawtype = "nodebox",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {cracky = 1},
|
||||||
|
drop = "infrastructure:boom_barrier_arm_h_lightfirst",
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/8, -1/2, -1/2, 1/8, 1/2, -7/16},
|
||||||
|
{-1/8, -1/2, -5/16, 1/8, 1/2, -1/4},
|
||||||
|
{-1/8, -1/2, -1/2, -1/16, 1/2, -1/4},
|
||||||
|
{1/16, -1/2, -1/2, 1/8, 1/2, -1/4},
|
||||||
|
{0, -1/8, -1/4, 0, 1/8, 0}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{-1/8, -1/2, -1/2, 1/8, 1/2, -1/4}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_alias("infrastructure:boom_barrier_mechanism", "infrastructure:boom_barrier_top_h")
|
||||||
|
minetest.register_alias("infrastructure:boom_barrier_arm", "infrastructure:boom_barrier_arm_h_lightfirst")
|
||||||
|
Binary file not shown.
After Width: | Height: | Size: 762 B |
Binary file not shown.
After Width: | Height: | Size: 811 B |
Binary file not shown.
Before Width: | Height: | Size: 481 B |
Loading…
x
Reference in New Issue
Block a user