1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/user_groups.lua

68 lines
1.9 KiB
Lua
Raw Normal View History

2018-04-15 22:24:10 +02:00
global.regualrs = {}
local Event = require "utils.event"
2018-04-15 22:24:10 +02:00
local Module = {}
local function update_group(position)
local file = position .. ".lua"
2017-12-26 00:08:32 +02:00
game.write_file(file, "{", false, 0)
2018-01-08 00:28:55 +02:00
local group = global[position]
local line = ""
for player_name,_ in pairs(group) do
line = string.format('["%s"] = "",\n', player_name)
2018-02-01 16:05:36 +02:00
game.write_file(file, line, true, 0)
end
2018-02-01 16:09:44 +02:00
game.write_file(file, "}", true, 0)
2017-07-12 02:48:16 +02:00
end
2017-07-09 15:20:01 +02:00
Module.get_actor = function()
if game.player then return game.player.name end
return "<server>"
end
local is_regular = function(player_name)
2018-05-23 18:45:14 +02:00
return cast_bool(global.regulars[player_name] or global.regulars[player_name:lower()]) --to make it backwards compatible
2017-07-09 15:20:01 +02:00
end
Module.add_regular = function(player_name)
local actor = get_actor()
if is_regular(player_name) then player_print(player_name .. " is already a regular.")
else
if game.players[player_name] then
game.print(actor .. " promoted " .. player_name .. " to regular.")
global.regulars[player_name] = true
update_group("regulars")
else
player_print(player_name .. " does not exist.")
end
end
2017-07-09 15:20:01 +02:00
end
Module.remove_regular = function(player_name)
local actor = get_actor()
if is_regular(player_name) then game.print(player_name .. " was demoted from regular by " .. actor .. ".") end
global.regulars[player_name] = nil
update_group("regulars")
2017-07-09 15:20:01 +02:00
end
Module.print_regulars = function()
for k,_ in pairs(global.regulars) do
player_print(k)
2017-07-09 15:20:01 +02:00
end
end
Event.add(defines.events.on_player_joined_game, function(event)
local correctCaseName = game.players[event.player_index].name
if global.regulars[correctCaseName:lower()] and not global.regulars[correctCaseName] then
global.regulars[correctCaseName:lower()] = nil
global.regulars[correctCaseName] = true
update_group("regulars")
end
end)
Event.add(-1, function()
if not global.regulars then global.regulars = {} end
end)
return Module