148 lines
3.7 KiB
Lua
148 lines
3.7 KiB
Lua
-- CC0/Unlicense system32 2020
|
|
|
|
local storage = minetest.get_mod_storage()
|
|
|
|
local function storage_init_table(key)
|
|
minetest.log("init key: " .. key .. " value: " .. storage:get_string(key))
|
|
if storage:get(key) == nil or storage:get(key) == "null" then
|
|
storage:set_string(key, "{}")
|
|
end
|
|
|
|
return minetest.parse_json(storage:get_string(key))
|
|
end
|
|
|
|
local function storage_save_json(key, value)
|
|
minetest.log("get key: " .. key .. " value: " .. storage:get_string(key))
|
|
storage:set_string(key, minetest.write_json(value))
|
|
minetest.log("save key: " .. key .. " value: " .. storage:get_string(key))
|
|
end
|
|
|
|
|
|
-- public interface
|
|
hignore = {}
|
|
|
|
-- name: color
|
|
hignore.highlight = storage_init_table("hignore_highlight")
|
|
|
|
-- name: mode
|
|
hignore.ignore = storage_init_table("hignore_ignore")
|
|
|
|
|
|
function hignore.save()
|
|
storage_save_json("hignore_highlight", hignore.higlight)
|
|
storage_save_json("hignore_ignore", hignore.ignore)
|
|
end
|
|
|
|
|
|
local function localize_player(player)
|
|
local info = minetest.get_server_info()
|
|
|
|
local name = info.ip
|
|
if info.address ~= "" then
|
|
name = info.address
|
|
end
|
|
|
|
return player .. "@" .. info.ip .. ":" .. info.port
|
|
end
|
|
|
|
|
|
minetest.register_on_receiving_chat_message(function(message)
|
|
local dm = message:match(".*rom (.*): .*")
|
|
local pub = message:match("<(.*)>.*")
|
|
|
|
local player = dm or pub
|
|
|
|
if player then
|
|
player = localize_player(dm or pub)
|
|
end
|
|
|
|
if hignore.ignore[player] then
|
|
if hignore.ignore[player] == "summarize" then
|
|
minetest.display_chat_message(player .. " sent a message.")
|
|
end
|
|
return true
|
|
elseif hignore.highlight[player] then
|
|
minetest.display_chat_message(minetest.colorize(hignore.highlight[player], message))
|
|
return true
|
|
end
|
|
end)
|
|
|
|
|
|
local function noplayer()
|
|
minetest.display_chat_message("No player specified.")
|
|
end
|
|
|
|
local function string_table(t)
|
|
local out = ""
|
|
for k, v in pairs(t) do
|
|
if out ~= "" then
|
|
out = out .. ", " .. tostring(k) .. ": " .. tostring(v)
|
|
else
|
|
out = tostring(k) .. ": " .. tostring(v)
|
|
end
|
|
end
|
|
|
|
if out == "" then
|
|
return "Empty"
|
|
else
|
|
return out
|
|
end
|
|
end
|
|
|
|
|
|
minetest.register_chatcommand("ignore", {
|
|
params = "<player> <mode>",
|
|
description = "Ignore a player's messages, mode can be omitted (hide) or hide/summarize/none (stops ignoring).",
|
|
func = function(params)
|
|
local plist = string.split(params, " ")
|
|
if plist[1] == nil then
|
|
noplayer()
|
|
return
|
|
end
|
|
|
|
local player = localize_player(plist[1])
|
|
local val = plist[2]
|
|
|
|
-- hide/summarize are already set
|
|
if plist[2] == nil then
|
|
val = "hide"
|
|
elseif plist[2] == "none" then
|
|
val = nil
|
|
end
|
|
|
|
hignore.ignore[player] = val
|
|
hignore.save()
|
|
end
|
|
})
|
|
|
|
minetest.register_chatcommand("ignore_list", {
|
|
description = "List ignored players.",
|
|
func = function(params)
|
|
minetest.display_chat_message(string_table(hignore.ignore))
|
|
end
|
|
})
|
|
|
|
minetest.register_chatcommand("highlight", {
|
|
params = "<player> <color>",
|
|
description = "Highlight a player's messages, omit color to stop highlighting. Supports CSS and RGBA hex colors.",
|
|
func = function(params)
|
|
local plist = string.split(params, " ")
|
|
if plist[1] == nil then
|
|
noplayer()
|
|
return
|
|
end
|
|
|
|
local player = localize_player(plist[1])
|
|
|
|
hignore.highlight[player] = plist[2]
|
|
hignore.save()
|
|
end
|
|
})
|
|
|
|
minetest.register_chatcommand("highlight_list", {
|
|
description = "List highlighted players.",
|
|
func = function(params)
|
|
minetest.display_chat_message(string_table(hignore.highlight))
|
|
end
|
|
})
|