2017-11-08 00:52:09 +00:00
|
|
|
local storage = minetest.get_mod_storage()
|
|
|
|
local data = minetest.parse_json(storage:get_string("locktoteam")) or {}
|
|
|
|
|
2019-10-31 14:30:50 +00:00
|
|
|
-- Override autoalloc function to implement team-locking
|
2017-11-08 00:52:09 +00:00
|
|
|
local ctf_autoalloc = ctf.autoalloc
|
|
|
|
function ctf.autoalloc(name, alloc_mode)
|
|
|
|
if data[name] then
|
|
|
|
return data[name]
|
|
|
|
end
|
|
|
|
|
|
|
|
return ctf_autoalloc(name, alloc_mode)
|
|
|
|
end
|
|
|
|
|
2019-10-31 14:30:50 +00:00
|
|
|
ChatCmdBuilder.new("ctf_lock_to_team", function(cmd)
|
2017-11-08 00:52:09 +00:00
|
|
|
cmd:sub(":name :team", function(name, pname, team)
|
|
|
|
if team == "!" then
|
|
|
|
data[pname] = nil
|
|
|
|
storage:set_string("locktoteam", minetest.write_json(data))
|
|
|
|
return true, "Unlocked " .. pname
|
|
|
|
else
|
|
|
|
data[pname] = team
|
|
|
|
storage:set_string("locktoteam", minetest.write_json(data))
|
|
|
|
return true, "Locked " .. pname .. " to " .. team
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end, {
|
|
|
|
description = "Lock a player to a team",
|
|
|
|
privs = {
|
|
|
|
ctf_admin = true,
|
|
|
|
}
|
|
|
|
})
|
2018-04-06 12:34:58 +00:00
|
|
|
|
2019-10-31 14:30:50 +00:00
|
|
|
-- Struct containing the name and score of the team with lowest cumulative score
|
|
|
|
local lowest = {}
|
|
|
|
--[[
|
|
|
|
lowest = {
|
|
|
|
team =,
|
|
|
|
score =
|
|
|
|
}
|
|
|
|
]]
|
|
|
|
|
|
|
|
-- List of cumulative team scores indexed by team name
|
|
|
|
local scores = {}
|
|
|
|
--[[
|
|
|
|
scores = {
|
|
|
|
red = ,
|
|
|
|
blue
|
|
|
|
}
|
|
|
|
]]
|
|
|
|
|
|
|
|
local function update_lowest()
|
|
|
|
-- Update lowest.score and lowest.team
|
|
|
|
lowest = {}
|
|
|
|
for tname, score in pairs(scores) do
|
|
|
|
if not lowest.score or score <= lowest.score then
|
|
|
|
lowest.score = score
|
|
|
|
lowest.team = tname
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function calc_scores()
|
|
|
|
-- Update the cumulative score of all teams
|
|
|
|
for tname, team in pairs(ctf.teams) do
|
|
|
|
local score = 0
|
|
|
|
for pname, _ in pairs(team.players) do
|
|
|
|
score = score + ctf_stats.player(pname).score
|
|
|
|
end
|
|
|
|
scores[tname] = score
|
|
|
|
end
|
|
|
|
|
|
|
|
update_lowest()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Override team-allocation logic
|
|
|
|
-- Allocate player into the team with the lowest cumulative score
|
|
|
|
function ctf.custom_alloc(name)
|
|
|
|
calc_scores()
|
|
|
|
return lowest.team
|
|
|
|
end
|
|
|
|
|
2018-04-06 15:18:32 +00:00
|
|
|
function table.map_inplace(t, f) -- luacheck: ignore
|
2018-04-06 12:34:58 +00:00
|
|
|
for key, value in pairs(t) do
|
|
|
|
t[key] = f(value)
|
|
|
|
end
|
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
|
|
|
ctf_alloc = {}
|
|
|
|
function ctf_alloc.set_all()
|
|
|
|
local players = minetest.get_connected_players()
|
|
|
|
table.map_inplace(players, function(a)
|
|
|
|
local stats, _ = ctf_stats.player(a:get_player_name())
|
|
|
|
return {
|
|
|
|
player = a,
|
|
|
|
score = stats.score,
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
table.sort(players, function(a, b)
|
|
|
|
return a.score > b.score
|
|
|
|
end)
|
|
|
|
|
2018-04-06 15:10:05 +00:00
|
|
|
local to_red = math.random(2) == 2
|
2018-04-06 12:34:58 +00:00
|
|
|
for _, spair in pairs(players) do
|
|
|
|
local player = spair.player
|
|
|
|
local name = player:get_player_name()
|
|
|
|
local alloc_mode = tonumber(ctf.setting("allocate_mode"))
|
|
|
|
local team
|
|
|
|
if to_red then
|
|
|
|
team = "red"
|
|
|
|
else
|
|
|
|
team = "blue"
|
|
|
|
end
|
|
|
|
to_red = not to_red
|
|
|
|
|
|
|
|
if alloc_mode ~= 0 and team then
|
|
|
|
ctf.log("autoalloc", name .. " was allocated to " .. team)
|
|
|
|
ctf.join(name, team)
|
|
|
|
end
|
|
|
|
ctf.move_to_spawn(name)
|
|
|
|
|
|
|
|
if ctf.setting("match.clear_inv") then
|
|
|
|
local inv = player:get_inventory()
|
|
|
|
inv:set_list("main", {})
|
|
|
|
inv:set_list("craft", {})
|
|
|
|
give_initial_stuff(player)
|
|
|
|
end
|
|
|
|
|
|
|
|
player:set_hp(20)
|
|
|
|
end
|
|
|
|
end
|