2012-03-05 19:21:26 +01:00
|
|
|
-- WALL BUTTON
|
|
|
|
minetest.register_node("mesecons_button:button_off", {
|
2012-06-21 16:38:48 +02:00
|
|
|
drawtype = "nodebox",
|
2012-08-07 08:56:40 +02:00
|
|
|
tiles = {
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_off.png"
|
|
|
|
},
|
2012-03-05 19:21:26 +01:00
|
|
|
paramtype = "light",
|
2012-06-21 16:38:48 +02:00
|
|
|
paramtype2 = "facedir",
|
2012-03-05 19:21:26 +01:00
|
|
|
legacy_wallmounted = true,
|
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
2012-06-21 16:38:48 +02:00
|
|
|
type = "fixed",
|
2012-08-07 08:56:40 +02:00
|
|
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
2012-06-21 16:38:48 +02:00
|
|
|
},
|
|
|
|
node_box = {
|
2012-08-07 08:56:40 +02:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
2012-08-10 03:24:31 +02:00
|
|
|
{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 }, -- the thin plate behind the button
|
|
|
|
{ -4/16, -2/16, 4/16, 4/16, 2/16, 6/16 } -- the button itself
|
2012-08-07 08:56:40 +02:00
|
|
|
}
|
2012-03-05 19:21:26 +01:00
|
|
|
},
|
2012-03-22 22:52:11 +01:00
|
|
|
groups = {dig_immediate=2},
|
2012-06-05 04:20:04 +02:00
|
|
|
description = "Button",
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
minetest.register_node("mesecons_button:button_on", {
|
2012-06-21 16:38:48 +02:00
|
|
|
drawtype = "nodebox",
|
2012-08-07 08:56:40 +02:00
|
|
|
tiles = {
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_sides.png",
|
|
|
|
"jeija_wall_button_on.png"
|
|
|
|
},
|
2012-06-05 04:20:04 +02:00
|
|
|
paramtype = "light",
|
2012-06-21 16:38:48 +02:00
|
|
|
paramtype2 = "facedir",
|
2012-06-05 04:20:04 +02:00
|
|
|
legacy_wallmounted = true,
|
|
|
|
walkable = false,
|
2012-06-21 16:38:48 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2012-08-07 08:56:40 +02:00
|
|
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
2012-06-21 16:38:48 +02:00
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2012-08-07 08:56:40 +02:00
|
|
|
fixed = {
|
2012-08-10 03:24:31 +02:00
|
|
|
{ -6/16, -6/16, 6/16, 6/16, 6/16, 8/16 },
|
|
|
|
{ -4/16, -2/16, 11/32, 4/16, 2/16, 6/16 }
|
2012-08-07 08:56:40 +02:00
|
|
|
}
|
2012-06-21 16:38:48 +02:00
|
|
|
},
|
2012-08-01 11:58:19 +02:00
|
|
|
groups = {dig_immediate=2, not_in_creative_inventory=1},
|
2012-06-05 04:20:04 +02:00
|
|
|
drop = 'mesecons_button:button_off',
|
|
|
|
description = "Button",
|
2012-06-21 18:41:51 +02:00
|
|
|
after_dig_node = function(pos, oldnode)
|
|
|
|
mesecon:receptor_off(pos, mesecon.button_get_rules(oldnode.param2))
|
2012-06-05 04:20:04 +02:00
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_on_punchnode(function(pos, node, puncher)
|
|
|
|
if node.name == "mesecons_button:button_off" then
|
|
|
|
minetest.env:add_node(pos, {name="mesecons_button:button_on",param2=node.param2})
|
2012-03-29 21:06:48 +02:00
|
|
|
local rules=mesecon.button_get_rules(node.param2)
|
2012-03-29 11:35:23 +02:00
|
|
|
mesecon:receptor_on(pos, rules)
|
2012-03-29 21:06:48 +02:00
|
|
|
minetest.after(1, mesecon.button_turnoff, {pos=pos, param2=node.param2})
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
|
|
|
end)
|
2012-03-29 11:35:23 +02:00
|
|
|
|
2012-03-29 21:06:48 +02:00
|
|
|
mesecon.button_turnoff = function (params)
|
|
|
|
if minetest.env:get_node(params.pos).name=="mesecons_button:button_on" then
|
|
|
|
minetest.env:add_node(params.pos, {name="mesecons_button:button_off", param2=params.param2})
|
2012-06-21 17:27:29 +02:00
|
|
|
local rules=mesecon.button_get_rules(params.param2)
|
2012-06-05 04:20:04 +02:00
|
|
|
mesecon:receptor_off(params.pos, rules)
|
2012-03-29 21:06:48 +02:00
|
|
|
end
|
|
|
|
end
|
2012-03-05 19:21:26 +01:00
|
|
|
|
2012-03-29 21:06:48 +02:00
|
|
|
mesecon.button_get_rules = function(param2)
|
|
|
|
local rules=mesecon:get_rules("button")
|
2012-06-21 17:27:29 +02:00
|
|
|
if param2 == 2 then
|
2012-03-29 21:06:48 +02:00
|
|
|
rules=mesecon:rotate_rules_left(rules)
|
2012-03-05 19:21:26 +01:00
|
|
|
end
|
2012-03-29 21:06:48 +02:00
|
|
|
if param2 == 3 then
|
|
|
|
rules=mesecon:rotate_rules_right(mesecon:rotate_rules_right(rules))
|
|
|
|
end
|
2012-06-21 17:27:29 +02:00
|
|
|
if param2 == 0 then
|
2012-03-29 21:06:48 +02:00
|
|
|
rules=mesecon:rotate_rules_right(rules)
|
|
|
|
end
|
|
|
|
return rules
|
|
|
|
end
|
2012-03-29 11:35:23 +02:00
|
|
|
|
2012-03-05 19:21:26 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_button:button_off" 2',
|
|
|
|
recipe = {
|
|
|
|
{'"mesecons:mesecon_off"','"default:stone"'},
|
|
|
|
}
|
|
|
|
})
|
2012-03-29 11:35:23 +02:00
|
|
|
|
|
|
|
mesecon:add_rules("button", {
|
|
|
|
{x=1, y=0, z=0},
|
|
|
|
{x=-1, y=0, z=0},
|
|
|
|
{x=0, y=0, z=1},
|
|
|
|
{x=1, y=1, z=0},
|
|
|
|
{x=1, y=-1, z=0},
|
|
|
|
{x=-1, y=1, z=0},
|
|
|
|
{x=-1, y=-1, z=0},
|
|
|
|
{x=0, y=1, z=1},
|
|
|
|
{x=0, y=-1, z=1},
|
|
|
|
{x=0, y=1, z=-1},
|
2012-03-29 21:06:48 +02:00
|
|
|
{x=0, y=0, z=-1},
|
2012-03-29 11:35:23 +02:00
|
|
|
{x=0, y=-1, z=-1},
|
|
|
|
{x=0, y=-1, z=0},
|
2012-06-21 17:27:29 +02:00
|
|
|
{x=2, y=0, z=0},
|
|
|
|
{x=1, y=-1, z=1},
|
|
|
|
{x=1, y=-1, z=-1}})
|
2012-03-29 11:35:23 +02:00
|
|
|
|
2012-03-29 21:06:48 +02:00
|
|
|
mesecon:add_receptor_node_off("mesecons_button:button_off", nil, mesecon.button_get_rules)
|
|
|
|
mesecon:add_receptor_node("mesecons_button:button_on", nil, mesecon.button_get_rules)
|
|
|
|
|