2015-09-09 12:17:16 +02:00
|
|
|
-- Entity detector
|
|
|
|
-- Detects entitys in a certain radius
|
|
|
|
-- The radius can be changes by right-click (by default 6)
|
|
|
|
|
|
|
|
local function make_formspec(meta)
|
|
|
|
meta:set_string("formspec", "size[9,5]" ..
|
2022-11-07 20:00:35 +01:00
|
|
|
"field[0.3, 0;9,2;scanname;Comma-separated list of the names (itemstring) of entities to scan for (empty for any):;${scanname}]"..
|
2015-09-09 12:17:16 +02:00
|
|
|
"field[0.3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]"..
|
|
|
|
"field[0.3,3;2,2;radius;Detection radius:;${radius}]"..
|
|
|
|
"button_exit[3.5,3.5;2,3;;Save]")
|
|
|
|
end
|
|
|
|
|
|
|
|
local function object_detector_make_formspec(pos)
|
|
|
|
make_formspec(minetest.get_meta(pos))
|
|
|
|
end
|
|
|
|
|
2016-04-27 18:42:20 +02:00
|
|
|
local function object_detector_on_receive_fields(pos, _, fields, player)
|
2015-09-09 12:17:16 +02:00
|
|
|
if not fields.scanname
|
2016-04-27 18:42:20 +02:00
|
|
|
or not fields.digiline_channel
|
|
|
|
or minetest.is_protected(pos, player:get_player_name()) then
|
2015-09-09 12:17:16 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("scanname", fields.scanname)
|
|
|
|
meta:set_string("digiline_channel", fields.digiline_channel)
|
|
|
|
local r = tonumber(fields.radius)
|
|
|
|
if r then
|
2023-08-17 20:42:54 +02:00
|
|
|
local max_radius = moremesecons.setting("entity_detector", "max_radius", 16, 0)
|
|
|
|
meta:set_int("radius", math.min(r, max_radius))
|
2015-09-09 12:17:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- returns true if entity was found, false if not
|
|
|
|
local object_detector_scan = function (pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local scanname = meta:get_string("scanname")
|
|
|
|
local scan_all = scanname == ""
|
2016-12-09 15:09:15 +01:00
|
|
|
local scan_names = scanname:split(',')
|
2023-08-17 20:42:54 +02:00
|
|
|
local max_radius = moremesecons.setting("entity_detector", "max_radius", 16, 0)
|
|
|
|
local radius = math.min(tonumber(meta:get("radius")) or 6, max_radius)
|
2015-09-09 12:17:16 +02:00
|
|
|
for _,obj in pairs(minetest.get_objects_inside_radius(pos, radius)) do
|
2023-08-17 20:42:54 +02:00
|
|
|
local luaentity = obj:get_luaentity()
|
|
|
|
if luaentity then
|
|
|
|
if scan_all then
|
|
|
|
return true
|
|
|
|
end
|
2015-09-09 12:41:14 +02:00
|
|
|
local isname = luaentity.name
|
2023-08-17 20:42:54 +02:00
|
|
|
for _, name in ipairs(scan_names) do
|
|
|
|
if isname == name or (isname == "__builtin:item" and luaentity.itemstring == name) then
|
2016-12-09 15:09:15 +01:00
|
|
|
return true
|
|
|
|
end
|
2015-09-09 12:17:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
-- set entity name when receiving a digiline signal on a specific channel
|
|
|
|
local object_detector_digiline = {
|
|
|
|
effector = {
|
|
|
|
action = function (pos, node, channel, msg)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local active_channel = meta:get_string("digiline_channel")
|
|
|
|
if channel ~= active_channel then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
meta:set_string("scanname", msg)
|
|
|
|
if meta:get_string("formspec") ~= "" then
|
|
|
|
make_formspec(meta)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
minetest.register_node("moremesecons_entity_detector:entity_detector_off", {
|
|
|
|
tiles = {"default_steel_block.png", "default_steel_block.png", "moremesecons_entity_detector_off.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = true,
|
|
|
|
groups = {cracky=3},
|
|
|
|
description="Entity Detector",
|
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.off,
|
|
|
|
rules = mesecon.rules.pplate
|
|
|
|
}},
|
|
|
|
on_construct = object_detector_make_formspec,
|
|
|
|
on_receive_fields = object_detector_on_receive_fields,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
digiline = object_detector_digiline
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("moremesecons_entity_detector:entity_detector_on", {
|
|
|
|
tiles = {"default_steel_block.png", "default_steel_block.png", "moremesecons_entity_detector_on.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = true,
|
|
|
|
groups = {cracky=3,not_in_creative_inventory=1},
|
2016-04-02 11:23:39 +02:00
|
|
|
drop = 'moremesecons_entity_detector:entity_detector_off',
|
2015-09-09 12:17:16 +02:00
|
|
|
mesecons = {receptor = {
|
|
|
|
state = mesecon.state.on,
|
|
|
|
rules = mesecon.rules.pplate
|
|
|
|
}},
|
|
|
|
on_construct = object_detector_make_formspec,
|
|
|
|
on_receive_fields = object_detector_on_receive_fields,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
digiline = object_detector_digiline
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'moremesecons_entity_detector:entity_detector_off',
|
|
|
|
recipe = {
|
2016-07-20 18:53:59 +02:00
|
|
|
{"default:mese_crystal_fragment"},
|
|
|
|
{"mesecons_detector:object_detector_off"}
|
2015-09-09 12:17:16 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"moremesecons_entity_detector:entity_detector_off"},
|
|
|
|
interval = 1.0,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos)
|
|
|
|
if object_detector_scan(pos) then
|
|
|
|
minetest.swap_node(pos, {name = "moremesecons_entity_detector:entity_detector_on"})
|
|
|
|
mesecon.receptor_on(pos, mesecon.rules.pplate)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = {"moremesecons_entity_detector:entity_detector_on"},
|
|
|
|
interval = 1.0,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos)
|
|
|
|
if not object_detector_scan(pos) then
|
|
|
|
minetest.swap_node(pos, {name = "moremesecons_entity_detector:entity_detector_off"})
|
|
|
|
mesecon.receptor_off(pos, mesecon.rules.pplate)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|