mesecons/mesecons_pressureplates/init.lua

111 lines
3.8 KiB
Lua
Raw Normal View History

2012-12-27 22:28:39 +01:00
local pp_box_off = {
type = "fixed",
fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
}
2012-12-27 22:28:39 +01:00
local pp_box_on = {
type = "fixed",
2013-04-21 08:16:43 +02:00
fixed = { -7/16, -8/16, -7/16, 7/16, -7.5/16, 7/16 },
2012-12-27 22:28:39 +01:00
}
local function pp_on_timer(pos, elapsed)
local node = minetest.get_node(pos)
local basename = minetest.registered_nodes[node.name].pressureplate_basename
2012-12-27 22:28:39 +01:00
-- This is a workaround for a strange bug that occurs when the server is started
-- For some reason the first time on_timer is called, the pos is wrong
if not basename then return end
local objs = minetest.get_objects_inside_radius(pos, 1)
local two_below = vector.add(pos, vector.new(0, -2, 0))
if objs[1] == nil and node.name == basename .. "_on" then
minetest.set_node(pos, {name = basename .. "_off"})
mesecon.receptor_off(pos, mesecon.rules.pplate)
elseif node.name == basename .. "_off" then
for k, obj in pairs(objs) do
local objpos = obj:get_pos()
2012-12-27 22:28:39 +01:00
if objpos.y > pos.y-1 and objpos.y < pos.y then
minetest.set_node(pos, {name = basename .. "_on"})
mesecon.receptor_on(pos, mesecon.rules.pplate )
end
end
2012-12-27 22:28:39 +01:00
end
return true
end
2012-12-27 22:28:39 +01:00
-- Register a Pressure Plate
-- offstate: name of the pressure plate when inactive
-- onstate: name of the pressure plate when active
2012-12-27 22:28:39 +01:00
-- description: description displayed in the player's inventory
-- tiles_off: textures of the pressure plate when inactive
-- tiles_on: textures of the pressure plate when active
-- image: inventory and wield image of the pressure plate
-- recipe: crafting recipe of the pressure plate
-- groups: groups
-- sounds: sound table
function mesecon.register_pressure_plate(basename, description, textures_off, textures_on, image_w, image_i, recipe, groups, sounds)
local groups_off, groups_on
if not groups then
groups = {}
end
local groups_off = table.copy(groups)
local groups_on = table.copy(groups)
groups_on.not_in_creative_inventory = 1
mesecon.register_node(basename, {
2012-12-27 22:28:39 +01:00
drawtype = "nodebox",
inventory_image = image_i,
wield_image = image_w,
2012-12-27 22:28:39 +01:00
paramtype = "light",
2017-10-31 22:50:39 +01:00
is_ground_content = false,
description = description,
pressureplate_basename = basename,
2012-12-27 22:28:39 +01:00
on_timer = pp_on_timer,
on_construct = function(pos)
minetest.get_node_timer(pos):start(mesecon.setting("pplate_interval", 0.1))
2012-12-27 22:28:39 +01:00
end,
sounds = sounds,
},{
mesecons = {receptor = { state = mesecon.state.off, rules = mesecon.rules.pplate }},
node_box = pp_box_off,
selection_box = pp_box_off,
groups = groups_off,
tiles = textures_off
},{
mesecons = {receptor = { state = mesecon.state.on, rules = mesecon.rules.pplate }},
2012-12-27 22:28:39 +01:00
node_box = pp_box_on,
selection_box = pp_box_on,
groups = groups_on,
tiles = textures_on
2012-12-27 22:28:39 +01:00
})
minetest.register_craft({
output = basename .. "_off",
2012-12-27 22:28:39 +01:00
recipe = recipe,
})
end
mesecon.register_pressure_plate(
"mesecons_pressureplates:pressure_plate_wood",
2012-12-27 22:28:39 +01:00
"Wooden Pressure Plate",
{"jeija_pressure_plate_wood_off.png","jeija_pressure_plate_wood_off.png","jeija_pressure_plate_wood_off_edges.png"},
{"jeija_pressure_plate_wood_on.png","jeija_pressure_plate_wood_on.png","jeija_pressure_plate_wood_on_edges.png"},
"jeija_pressure_plate_wood_wield.png",
"jeija_pressure_plate_wood_inv.png",
{{"group:wood", "group:wood"}},
{ choppy = 3, oddly_breakable_by_hand = 3 },
default.node_sound_wood_defaults())
2012-12-27 22:28:39 +01:00
mesecon.register_pressure_plate(
"mesecons_pressureplates:pressure_plate_stone",
2012-12-27 22:28:39 +01:00
"Stone Pressure Plate",
{"jeija_pressure_plate_stone_off.png","jeija_pressure_plate_stone_off.png","jeija_pressure_plate_stone_off_edges.png"},
{"jeija_pressure_plate_stone_on.png","jeija_pressure_plate_stone_on.png","jeija_pressure_plate_stone_on_edges.png"},
"jeija_pressure_plate_stone_wield.png",
"jeija_pressure_plate_stone_inv.png",
{{"default:cobble", "default:cobble"}},
{ cracky = 3, oddly_breakable_by_hand = 3 },
default.node_sound_stone_defaults())