mirror of
https://github.com/AFCMS/mesecons_onlinedetector.git
synced 2024-11-21 14:43:51 +01:00
170 lines
5.1 KiB
Lua
170 lines
5.1 KiB
Lua
minetest.log("action", "[mesecons_onlinedetector] loading...")
|
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
|
local F = minetest.formspec_escape
|
|
|
|
local has_mcl_core = minetest.get_modpath("mcl_core")
|
|
|
|
local table = table
|
|
|
|
local function get_detector_form(default)
|
|
return table.concat({
|
|
"formspec_version[4]",
|
|
"size[8,3]",
|
|
"field[0.25,0.75;7.5,0.75;name;"..F(S("Online Detector"))..";"..F(default).."]",
|
|
"label[0.25,2.25;"..F(S("Detecting:")).." "..F(default).."]"
|
|
})
|
|
end
|
|
|
|
local playerlist = {}
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
playerlist[player:get_player_name()] = true
|
|
end)
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
|
playerlist[player:get_player_name()] = nil
|
|
end)
|
|
|
|
local function update_detector_on(pos, target)
|
|
if not playerlist[target] then
|
|
minetest.swap_node(pos, { name = "mesecons_onlinedetector:online_detector_off" })
|
|
mesecon.receptor_off(pos, mesecon.rules.alldirs)
|
|
end
|
|
end
|
|
|
|
local function update_detector_off(pos, target)
|
|
if playerlist[target] then
|
|
minetest.swap_node(pos, { name = "mesecons_onlinedetector:online_detector_on" })
|
|
mesecon.receptor_on(pos, mesecon.rules.alldirs)
|
|
end
|
|
end
|
|
|
|
local nodedef = {
|
|
description = S("Online Detector"),
|
|
_doc_items_longdesc = S("Allows you to know if a player is connected."),
|
|
on_construct = function(pos)
|
|
local meta = minetest.get_meta(pos)
|
|
meta:set_string("formspec", get_detector_form(meta:get_string("name")))
|
|
end,
|
|
}
|
|
|
|
|
|
local off_def = table.copy(nodedef)
|
|
|
|
off_def.tiles = {"mesecons_onlinedetector_online_detector_off.png"}
|
|
|
|
off_def.mesecons = {
|
|
receptor = {
|
|
state = mesecon.state.off,
|
|
rules = mesecon.rules.alldirs,
|
|
},
|
|
}
|
|
|
|
function off_def.on_receive_fields(pos, formname, fields, sender)
|
|
if fields.name then
|
|
local meta = minetest.get_meta(pos)
|
|
meta:set_string("name", fields.name)
|
|
meta:set_string("formspec", get_detector_form(fields.name))
|
|
update_detector_off(pos, fields.name)
|
|
end
|
|
end
|
|
|
|
--WARNING: the mesecon_onlinedetector group should NEVER assigned to another node, or you should expect the game to crash
|
|
if has_mcl_core then
|
|
--off_def.groups = {cracky = 2, mesecon_onlinedetector = 1, mesecon_detector_off = 1, mesecon = 2}
|
|
off_def.groups = {handy = 1, mesecon_onlinedetector = 1, mesecon_detector_off = 1, mesecon = 2}
|
|
else
|
|
off_def.groups = {cracky = 2, mesecon_onlinedetector = 1, mesecon_detector_off = 1, mesecon = 2}
|
|
end
|
|
|
|
minetest.register_node("mesecons_onlinedetector:online_detector_off", off_def)
|
|
|
|
|
|
local on_def = table.copy(nodedef)
|
|
|
|
on_def.tiles = {"mesecons_onlinedetector_online_detector_on.png"}
|
|
|
|
on_def.drop = "mesecons_onlinedetector:online_detector_off"
|
|
|
|
on_def.mesecons = {
|
|
receptor = {
|
|
state = mesecon.state.on,
|
|
rules = mesecon.rules.alldirs,
|
|
},
|
|
}
|
|
|
|
function on_def.on_receive_fields(pos, formname, fields, sender)
|
|
if fields.name then
|
|
local meta = minetest.get_meta(pos)
|
|
meta:set_string("name", fields.name)
|
|
meta:set_string("formspec", get_detector_form(fields.name))
|
|
update_detector_on(pos, fields.name)
|
|
end
|
|
end
|
|
|
|
if has_mcl_core then
|
|
--on_def.groups = {cracky = 2, mesecon_detector_off = 1, mesecon = 2}
|
|
on_def.groups = {handy = 1, mesecon_detector_on = 1, mesecon = 2, not_in_creative_inventory = 1}
|
|
else
|
|
on_def.groups = {cracky = 2, mesecon_detector_on = 1, mesecon = 2, not_in_creative_inventory = 1}
|
|
end
|
|
|
|
minetest.register_node("mesecons_onlinedetector:online_detector_on", on_def)
|
|
|
|
minetest.register_abm({
|
|
label = "mesecons_onlinedetector:online_detector_off",
|
|
nodenames = {"mesecons_onlinedetector:online_detector_off"},
|
|
interval = 30,
|
|
chance = 1,
|
|
action = function(pos)
|
|
update_detector_off(pos, minetest.get_meta(pos):get_string("name"))
|
|
end,
|
|
})
|
|
|
|
minetest.register_abm({
|
|
label = "mesecons_onlinedetector:online_detector_on",
|
|
nodenames = {"mesecons_onlinedetector:online_detector_on"},
|
|
interval = 30,
|
|
chance = 1,
|
|
action = function(pos)
|
|
update_detector_on(pos, minetest.get_meta(pos):get_string("name"))
|
|
end,
|
|
})
|
|
|
|
minetest.register_lbm({
|
|
label = "Update onlinedetector state",
|
|
name = "mesecons_onlinedetector:online_detector",
|
|
nodenames = {"group:mesecon_onlinedetector"},
|
|
run_at_every_load = true,
|
|
action = function(pos, node)
|
|
if node.name == "mesecons_onlinedetector:online_detector_off" then
|
|
update_detector_off(pos, minetest.get_meta(pos):get_string("name"))
|
|
else
|
|
update_detector_on(pos, minetest.get_meta(pos):get_string("name"))
|
|
end
|
|
end,
|
|
})
|
|
|
|
if minetest.get_modpath("default") then
|
|
minetest.register_craft({
|
|
output = "mesecons_onlinedetector:online_detector_off",
|
|
recipe = {
|
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
{"default:steel_ingot", "mesecons_luacontroller:luacontroller0000", "default:steel_ingot"},
|
|
{"default:stone", "default:stone", "default:stone"},
|
|
},
|
|
})
|
|
elseif has_mcl_core then
|
|
minetest.register_craft({
|
|
output = "mesecons_onlinedetector:online_detector_off",
|
|
recipe = {
|
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot", "mcl_core:iron_ingot"},
|
|
{"mcl_core:iron_ingot", "mesecons:wire_00000000_off", "mcl_core:iron_ingot"},
|
|
{"mcl_core:stone", "mcl_core:stone", "mcl_core:stone"},
|
|
},
|
|
})
|
|
end
|
|
|
|
minetest.log("action", "[mesecons_onlinedetector] loaded succesfully")
|