2021-07-12 15:39:25 -07:00
|
|
|
|
|
|
|
--- Cleaner Chat Commands
|
|
|
|
--
|
|
|
|
-- @topic commands
|
|
|
|
|
|
|
|
|
2021-07-12 20:02:03 -07:00
|
|
|
local S = core.get_translator(cleaner.modname)
|
|
|
|
|
|
|
|
|
2021-07-12 15:39:25 -07:00
|
|
|
local function pos_list(ppos, radius)
|
|
|
|
local plist = {}
|
|
|
|
|
|
|
|
for x = ppos.x - radius, ppos.x + radius, 1 do
|
|
|
|
for y = ppos.y - radius, ppos.y + radius, 1 do
|
|
|
|
for z = ppos.z - radius, ppos.z + radius, 1 do
|
|
|
|
table.insert(plist, {x=x, y=y, z=z})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return plist
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-07-12 20:02:03 -07:00
|
|
|
local help_repo = {
|
|
|
|
entity = {
|
|
|
|
remove_params = "<" .. S("entity") .. "> [" .. S("radius") .. "]",
|
|
|
|
},
|
|
|
|
node = {
|
|
|
|
remove_params = "<" .. S("node") .. "> [" .. S("radius") .. "]",
|
|
|
|
replace_params = "<" .. S("old_node") .. "> <" .. S("new_node") .. "> [" .. S("radius") .. "]",
|
|
|
|
},
|
|
|
|
item = {
|
|
|
|
replace_params = "<" .. S("old_item") .. "> <" .. S("new_item") .. ">",
|
|
|
|
},
|
|
|
|
ore = {
|
|
|
|
remove_params = "<" .. S("ore") .. ">",
|
|
|
|
},
|
|
|
|
param = {
|
|
|
|
missing = S("Missing parameter."),
|
|
|
|
excess = S("Too many parameters."),
|
|
|
|
mal_radius = S("Radius must be a number."),
|
|
|
|
opt_radius = "[" .. S("radius") .. "]",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-12 15:39:25 -07:00
|
|
|
--- Removes nearby entities.
|
|
|
|
--
|
|
|
|
-- @chatcmd remove_entity
|
|
|
|
-- @param entity Entity technical name.
|
|
|
|
core.register_chatcommand("remove_entity", {
|
|
|
|
privs = {server=true},
|
2021-07-12 20:02:03 -07:00
|
|
|
description = S("Remove an entity from game."),
|
|
|
|
params = help_repo.entity.remove_params,
|
2021-07-12 15:39:25 -07:00
|
|
|
func = function(name, param)
|
|
|
|
local entity
|
|
|
|
local radius = 100
|
|
|
|
if param:find(" ") then
|
|
|
|
entity = param:split(" ")
|
|
|
|
radius = tonumber(entity[2])
|
|
|
|
entity = entity[1]
|
|
|
|
else
|
|
|
|
entity = param
|
|
|
|
end
|
|
|
|
|
|
|
|
if not entity or entity:trim() == "" then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.missing
|
2021-07-12 15:39:25 -07:00
|
|
|
elseif not radius then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.mal_radius
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local player = core.get_player_by_name(name)
|
|
|
|
|
|
|
|
for _, object in ipairs(core.get_objects_inside_radius(player:get_pos(), radius)) do
|
|
|
|
local lent = object:get_luaentity()
|
|
|
|
|
|
|
|
if lent then
|
|
|
|
if lent.name == entity then
|
|
|
|
object:remove()
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if object:get_properties().infotext == entity then
|
|
|
|
object:remove()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
--- Removes nearby nodes.
|
|
|
|
--
|
|
|
|
-- @chatcmd remove_node
|
|
|
|
-- @param node Node technical name.
|
|
|
|
core.register_chatcommand("remove_node", {
|
|
|
|
privs = {server=true},
|
2021-07-12 20:02:03 -07:00
|
|
|
description = S("Remove a node from game."),
|
|
|
|
params = help_repo.node.remove_params,
|
2021-07-12 15:39:25 -07:00
|
|
|
func = function(name, param)
|
|
|
|
local nname
|
|
|
|
local radius = 100
|
|
|
|
if param:find(" ") then
|
|
|
|
nname = param:split(" ")
|
|
|
|
radius = tonumber(nname[2])
|
|
|
|
nname = nname[1]
|
|
|
|
else
|
|
|
|
nname = param
|
|
|
|
end
|
|
|
|
|
|
|
|
if not nname or nname:trim() == "" then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.missing
|
2021-07-12 15:39:25 -07:00
|
|
|
elseif not radius then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.mal_radius
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local ppos = core.get_player_by_name(name):get_pos()
|
|
|
|
|
|
|
|
for _, npos in ipairs(pos_list(ppos, radius)) do
|
|
|
|
local node = core.get_node_or_nil(npos)
|
|
|
|
if node and node.name == nname then
|
|
|
|
core.remove_node(npos)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
local function replace_item(src, tgt)
|
|
|
|
if not core.registered_items[tgt] then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, S('Cannot use unknown item "@1" as replacement.', tgt)
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
if core.registered_items[src] then
|
|
|
|
core.unregister_item(src)
|
|
|
|
end
|
|
|
|
|
|
|
|
core.register_alias(src, tgt)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Replaces an item.
|
|
|
|
--
|
|
|
|
-- FIXME: inventory icons not updated
|
|
|
|
--
|
|
|
|
-- @chatcmd replace_item
|
|
|
|
-- @param old_item Technical name of item to replace.
|
|
|
|
-- @param new_item Technical name of item to be used in place.
|
|
|
|
core.register_chatcommand("replace_item", {
|
|
|
|
privs = {server=true},
|
2021-07-12 20:02:03 -07:00
|
|
|
description = S("Replace an item in game."),
|
|
|
|
params = help_repo.item.replace_params,
|
2021-07-12 15:39:25 -07:00
|
|
|
func = function(name, param)
|
|
|
|
if not param:find(" ") then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.missing
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local src = param:split(" ")
|
|
|
|
local tgt = src[2]
|
|
|
|
src = src[1]
|
|
|
|
|
|
|
|
local retval, msg = replace_item(src, tgt)
|
|
|
|
if not retval then
|
|
|
|
return false, msg
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
--- Replaces nearby nodes.
|
|
|
|
--
|
|
|
|
-- @chatcmd replace_item
|
|
|
|
-- @param old_node Technical name of node to replace.
|
|
|
|
-- @param new_node Technical name of node to be used in place.
|
|
|
|
core.register_chatcommand("replace_node", {
|
|
|
|
privs = {server=true},
|
2021-07-12 20:02:03 -07:00
|
|
|
description = S("Replace a node in game."),
|
|
|
|
params = help_repo.node.replace_params,
|
2021-07-12 15:39:25 -07:00
|
|
|
func = function(name, param)
|
|
|
|
if not param:find(" ") then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.missing
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local radius = 100
|
|
|
|
local params = param:split(" ")
|
|
|
|
|
|
|
|
local src = params[1]
|
|
|
|
local tgt = tostring(params[2])
|
|
|
|
if #params > 2 then
|
|
|
|
radius = tonumber(params[3])
|
|
|
|
end
|
|
|
|
|
|
|
|
if not radius then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.mal_radius
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local new_node = core.registered_nodes[tgt]
|
|
|
|
if not new_node then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, S('Cannot use unknown node "@1" as replacement.', tgt)
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local total_replaced = 0
|
|
|
|
local ppos = core.get_player_by_name(name):get_pos()
|
|
|
|
for _, npos in ipairs(pos_list(ppos, radius)) do
|
|
|
|
local node = core.get_node_or_nil(npos)
|
|
|
|
if node and node.name == src then
|
|
|
|
core.remove_node(npos)
|
|
|
|
core.place_node(npos, new_node)
|
|
|
|
|
|
|
|
total_replaced = total_replaced + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-07-12 20:02:03 -07:00
|
|
|
core.chat_send_player(name, S("Replaced @1 nodes.", total_replaced))
|
2021-07-12 15:39:25 -07:00
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
--- Checks for nearby unknown nodes.
|
|
|
|
--
|
|
|
|
-- @chatcmd find_unknown_nodes
|
|
|
|
-- @tparam[opt] int radius Search radius.
|
|
|
|
core.register_chatcommand("find_unknown_nodes", {
|
|
|
|
privs = {server=true},
|
2021-07-12 20:02:03 -07:00
|
|
|
description = S("Find names of unknown nodes."),
|
|
|
|
params = help_repo.param.opt_radius,
|
2021-07-12 15:39:25 -07:00
|
|
|
func = function(name, param)
|
|
|
|
if param:find(" ") then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.excess
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local radius = 100
|
|
|
|
if param and param:trim() ~= "" then
|
|
|
|
radius = tonumber(param)
|
|
|
|
end
|
|
|
|
|
|
|
|
if not radius then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.mal_radius
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
local ppos = core.get_player_by_name(name):get_pos()
|
|
|
|
|
|
|
|
local checked_nodes = {}
|
|
|
|
local unknown_nodes = {}
|
|
|
|
for _, npos in ipairs(pos_list(ppos, radius)) do
|
|
|
|
local node = core.get_node_or_nil(npos)
|
|
|
|
if node and not checked_nodes[node.name] then
|
|
|
|
if not core.registered_nodes[node.name] then
|
|
|
|
table.insert(unknown_nodes, node.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
checked_nodes[node.name] = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if #unknown_nodes > 0 then
|
2021-07-12 20:02:03 -07:00
|
|
|
core.chat_send_player(name, S("Found unknown nodes: @1", table.concat(unknown_nodes, ", ")))
|
2021-07-12 15:39:25 -07:00
|
|
|
else
|
2021-07-12 20:02:03 -07:00
|
|
|
core.chat_send_player(name, S("No unknown nodes found."))
|
2021-07-12 15:39:25 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
})
|
2021-07-12 15:44:43 -07:00
|
|
|
|
|
|
|
|
|
|
|
--- Unsafe commands.
|
|
|
|
--
|
|
|
|
-- Enabled with `cleaner.unsafe` setting.
|
|
|
|
--
|
|
|
|
-- @section unsafe
|
|
|
|
|
|
|
|
|
|
|
|
if cleaner.unsafe then
|
|
|
|
--- Registers an ore to be removed.
|
|
|
|
--
|
|
|
|
-- @chatcmd remove_ore
|
|
|
|
-- @param ore Ore technical name.
|
|
|
|
core.register_chatcommand("remove_ore", {
|
|
|
|
privs = {server=true},
|
2021-07-12 20:02:03 -07:00
|
|
|
description = S("Remove an ore from game."),
|
|
|
|
params = help_repo.ore.remove_params,
|
2021-07-12 15:44:43 -07:00
|
|
|
func = function(name, param)
|
|
|
|
if param:find(" ") then
|
2021-07-12 20:02:03 -07:00
|
|
|
return false, help_repo.param.excess
|
2021-07-12 15:44:43 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
core.after(0, function()
|
|
|
|
local registered, total_removed = cleaner.remove_ore(param)
|
|
|
|
|
|
|
|
if not registered then
|
2021-07-12 20:02:03 -07:00
|
|
|
core.chat_send_player(name, S('Ore "@1" not found, not unregistering.', param))
|
2021-07-12 15:44:43 -07:00
|
|
|
else
|
2021-07-12 20:02:03 -07:00
|
|
|
core.chat_send_player(name, S("Unregistered @1 ores (this will be undone after server restart).", total_removed))
|
2021-07-12 15:44:43 -07:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|