2012-03-05 19:21:26 +01:00
|
|
|
-- WALL BUTTON
|
2012-12-08 21:56:09 +01:00
|
|
|
-- A button that when pressed emits power for 1 second
|
|
|
|
-- and then turns off again
|
|
|
|
|
2012-12-09 13:28:32 +01:00
|
|
|
mesecon.button_turnoff = function (pos)
|
|
|
|
local node = minetest.env:get_node(pos)
|
|
|
|
if node.name=="mesecons_button:button_on" then --has not been dug
|
|
|
|
mesecon:swap_node(pos, "mesecons_button:button_off")
|
2013-03-07 02:51:57 +01:00
|
|
|
minetest.sound_play("mesecons_button_pop", {pos=pos})
|
2012-12-09 13:28:32 +01:00
|
|
|
local rules = mesecon.rules.buttonlike_get(node)
|
|
|
|
mesecon:receptor_off(pos, rules)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-05 19:21:26 +01:00
|
|
|
minetest.register_node("mesecons_button:button_off", {
|
2012-12-08 21:56:09 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {
|
2012-08-07 08:56:40 +02:00
|
|
|
"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-12-08 21:56:09 +01:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
legacy_wallmounted = true,
|
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
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-12-08 21:56:09 +01:00
|
|
|
},
|
|
|
|
groups = {dig_immediate=2, mesecon_needs_receiver = 1},
|
|
|
|
description = "Button",
|
|
|
|
on_punch = function (pos, node)
|
|
|
|
mesecon:swap_node(pos, "mesecons_button:button_on")
|
2013-03-07 02:51:57 +01:00
|
|
|
mesecon:receptor_on(pos, mesecon.rules.buttonlike_get(node))
|
|
|
|
minetest.sound_play("mesecons_button_push", {pos=pos})
|
2012-12-09 13:28:32 +01:00
|
|
|
minetest.after(1, mesecon.button_turnoff, pos)
|
2012-12-08 21:56:09 +01:00
|
|
|
end,
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-08 21:56:09 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.off,
|
2012-12-09 13:28:32 +01:00
|
|
|
rules = mesecon.rules.buttonlike_get
|
2012-12-08 21:56:09 +01:00
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
2012-12-08 17:50:25 +01:00
|
|
|
|
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-08-10 11:31:01 +02:00
|
|
|
light_source = LIGHT_MAX-7,
|
2012-09-07 15:59:49 +02:00
|
|
|
sunlight_propagates = true,
|
2012-12-08 21:56:09 +01:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
|
|
|
},
|
|
|
|
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-12-08 21:56:09 +01:00
|
|
|
groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon_needs_receiver = 1},
|
2012-06-05 04:20:04 +02:00
|
|
|
drop = 'mesecons_button:button_off',
|
|
|
|
description = "Button",
|
2013-03-07 02:51:57 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2012-12-08 21:56:09 +01:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on,
|
2012-12-09 13:28:32 +01:00
|
|
|
rules = mesecon.rules.buttonlike_get
|
2012-12-08 21:56:09 +01:00
|
|
|
}}
|
2012-03-05 19:21:26 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = '"mesecons_button:button_off" 2',
|
|
|
|
recipe = {
|
2012-08-12 02:53:47 +02:00
|
|
|
{'"group:mesecon_conductor_craftable"','"default:stone"'},
|
2012-03-05 19:21:26 +01:00
|
|
|
}
|
|
|
|
})
|