MoreMesecons/moremesecons_temporarygate/init.lua

116 lines
3.6 KiB
Lua

-- MOREMESECONS TEMPORARY GATE
local temporarygate_get_output_rules = function(node)
local rules = {{x = 0, y = 0, z = 1}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end
return rules
end
local temporarygate_get_input_rules = function(node)
local rules = {{x = 0, y = 0, z = -1}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end
return rules
end
-- Functions that are called after the delay time
local temporarygate_activate = function(pos, node)
local def = minetest.registered_nodes[node.name]
local meta = minetest.get_meta(pos)
local time = tonumber(meta:get_string("time"))
if time ~= nil then
minetest.swap_node(pos, {name = "moremesecons_temporarygate:temporarygate_on", param2 = node.param2})
mesecon.receptor_on(pos)
minetest.after(time, function(pos, node)
mesecon.receptor_off(pos)
minetest.swap_node(pos, {name = "moremesecons_temporarygate:temporarygate_off", param2 = node.param2})
end, pos, node)
end
end
boxes = {{ -6/16, -8/16, -6/16, 6/16, -7/16, 6/16 }, -- the main slab
{ -2/16, -7/16, -4/16, 2/16, -26/64, -3/16 }, -- the jeweled "on" indicator
{ -3/16, -7/16, -3/16, 3/16, -26/64, -2/16 },
{ -4/16, -7/16, -2/16, 4/16, -26/64, 2/16 },
{ -3/16, -7/16, 2/16, 3/16, -26/64, 3/16 },
{ -2/16, -7/16, 3/16, 2/16, -26/64, 4/16 },
{ -6/16, -7/16, -6/16, -4/16, -27/64, -4/16 }, -- the timer indicator
{ -8/16, -8/16, -1/16, -6/16, -7/16, 1/16 }, -- the two wire stubs
{ 6/16, -8/16, -1/16, 8/16, -7/16, 1/16 }}
mesecon.register_node("moremesecons_temporarygate:temporarygate", {
description = "Temporary Gate",
drawtype = "nodebox",
inventory_image = "moremesecons_temporarygate_off.png",
wield_image = "moremesecons_temporarygate_off.png",
walkable = true,
selection_box = {
type = "fixed",
fixed = { -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 },
},
node_box = {
type = "fixed",
fixed = boxes
},
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,
is_ground_content = true,
sounds = default.node_sound_stone_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("formspec", "field[time;time;${time}]")
end,
on_receive_fields = function(pos, formname, fields, sender)
local meta = minetest.get_meta(pos)
meta:set_string("time", fields.time)
end
},{
tiles = {
"moremesecons_temporarygate_off.png",
"moremesecons_temporarygate_bottom.png",
"moremesecons_temporarygate_ends_off.png",
"moremesecons_temporarygate_ends_off.png",
"moremesecons_temporarygate_sides_off.png",
"moremesecons_temporarygate_sides_off.png"
},
groups = {bendy=2,snappy=1,dig_immediate=2},
mesecons = {
receptor =
{
state = mesecon.state.off,
rules = temporarygate_get_output_rules
},
effector =
{
rules = temporarygate_get_input_rules,
action_on = temporarygate_activate
}
},
},{
tiles = {
"moremesecons_temporarygate_on.png",
"moremesecons_temporarygate_bottom.png",
"moremesecons_temporarygate_ends_on.png",
"moremesecons_temporarygate_ends_on.png",
"moremesecons_temporarygate_sides_on.png",
"moremesecons_temporarygate_sides_on.png"
},
groups = {bendy=2,snappy=1,dig_immediate=2, not_in_creative_inventory=1},
mesecons = {receptor = {state = mesecon.state.on, rules = temporarygate_get_output_rules}},
})
minetest.register_craft({
output = "moremesecons_temporarygate:temporarygate_off",
recipe = {
{"mesecons_torch:mesecon_torch_on", "group:mesecon_conductor_craftable", "mesecons_torch:mesecon_torch_on"},
{"default:wood","default:wood", "default:wood"},
}
})