Version MFF.
0
mesecons_detector/depends.txt
Normal file → Executable file
48
mesecons_detector/init.lua
Normal file → Executable file
@ -4,10 +4,12 @@ local GET_COMMAND = "GET"
|
||||
-- Detects players in a certain radius
|
||||
-- The radius can be specified in mesecons/settings.lua
|
||||
|
||||
local function object_detector_make_formspec(pos)
|
||||
minetest.get_meta(pos):set_string("formspec", "size[9,2.5]" ..
|
||||
"field[0.3, 0;9,2;scanname;Name of player to scan for (empty for any):;${scanname}]"..
|
||||
"field[0.3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]"..
|
||||
-- The following file was modified to detect multiple players
|
||||
local object_detector_make_formspec = function (pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("formspec", "size[9,2.5]" ..
|
||||
"field[0.3, 0;12,2;scanname;Name of player(s) to scan for (empty for any, separate with comma):;${scanname}]"..
|
||||
"field[0.3,1.5;4 ,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]"..
|
||||
"button_exit[7,0.75;2,3;;Save]")
|
||||
end
|
||||
|
||||
@ -23,34 +25,36 @@ end
|
||||
-- returns true if player was found, false if not
|
||||
local function object_detector_scan(pos)
|
||||
local objs = minetest.get_objects_inside_radius(pos, mesecon.setting("detector_radius", 6))
|
||||
|
||||
-- abort if no scan results were found
|
||||
if next(objs) == nil then return false end
|
||||
|
||||
local scanname = minetest.get_meta(pos):get_string("scanname")
|
||||
local every_player = scanname == ""
|
||||
for _, obj in pairs(objs) do
|
||||
-- "" is returned if it is not a player; "" ~= nil; so only handle objects with foundname ~= ""
|
||||
local foundname = obj:get_player_name()
|
||||
|
||||
if foundname ~= "" then
|
||||
-- return true if scanning for any player or if specific playername was detected
|
||||
if scanname == "" or foundname == scanname then
|
||||
return true
|
||||
for k, obj in pairs(objs) do
|
||||
local isname = obj:get_player_name() -- "" is returned if it is not a player; "" ~= nil!
|
||||
local scanname = minetest.get_meta(pos):get_string("scanname"):gsub(' ', "")
|
||||
if (scanname == "" and isname ~= "") then
|
||||
minetest.get_meta(pos):set_string("scanedname", "")
|
||||
return true
|
||||
end
|
||||
local founds = {}
|
||||
for _, name in pairs(scanname:split(',')) do
|
||||
if (isname == name and isname ~= "") then
|
||||
table.insert(founds, isname)
|
||||
end
|
||||
end
|
||||
if #founds > 0 then
|
||||
minetest.get_meta(pos):set_string("scannedname", table.concat(founds, ','))
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
minetest.get_meta(pos):set_string("scanedname", "")
|
||||
return false
|
||||
end
|
||||
|
||||
-- set player name when receiving a digiline signal on a specific channel
|
||||
local object_detector_digiline = {
|
||||
effector = {
|
||||
action = function(pos, node, channel, msg)
|
||||
action = function (pos, node, channel, msg)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if channel == meta:get_string("digiline_channel") then
|
||||
meta:set_string("scanname", msg)
|
||||
local active_channel = meta:get_string("digiline_channel")
|
||||
if channel == active_channel then
|
||||
meta:set_string("scanedname", msg)
|
||||
object_detector_make_formspec(pos)
|
||||
end
|
||||
end,
|
||||
|
BIN
mesecons_detector/textures/jeija_node_detector_off.png
Normal file → Executable file
Before Width: | Height: | Size: 717 B After Width: | Height: | Size: 680 B |
0
mesecons_detector/textures/jeija_node_detector_on.png
Normal file → Executable file
Before Width: | Height: | Size: 727 B After Width: | Height: | Size: 727 B |
BIN
mesecons_detector/textures/jeija_object_detector_off.png
Normal file → Executable file
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 655 B |
BIN
mesecons_detector/textures/jeija_object_detector_on.png
Normal file → Executable file
Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 733 B |