1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/*--
Capture The Flag
Author: Maikel
Capture the flag of the opposing team and bring it to your base to gain points.
--*/
#include Library_Goal
local score_list;
func ScoreboardTeamID(int team)
{
return team + 1000;
}
protected func Initialize()
{
score_list = [];
var relaunch_rule = GetRelaunchRule();
relaunch_rule->SetRespawnDelay(0);
relaunch_rule->SetDefaultRelaunchCount(nil);
relaunch_rule->SetAllowPlayerRestart(true);
relaunch_rule.FindRelaunchPos = GetID().FindRelaunchPos;
// init scoreboard
Scoreboard->Init(
[
{key = "title", title = "Teams"},
{key = "ctf", title = Goal_CaptureTheFlag, sorted = true, desc = true, default = 0, priority = 80}
]
);
Scoreboard->SetTitle("Capture the Flag");
return _inherited(...);
}
private func GetScoreGoal()
{
var flag_cnt = GameCall("CaptureFlagCount");
if (flag_cnt != nil)
return Max(1, flag_cnt);
return 1;
}
public func SetFlagBase(int team, int x, int y)
{
var base = CreateObjectAbove(Goal_FlagBase, x, y, NO_OWNER);
base->SetTeam(team);
var flag = CreateObjectAbove(Goal_Flag, x, y, NO_OWNER);
flag->SetAction("AttachBase", base);
flag->SetTeam(team);
return;
}
public func AddTeamScore(int team)
{
score_list[team]++;
Scoreboard->SetData(ScoreboardTeamID(team), "ctf", score_list[team]);
if (score_list[team] >= GetScoreGoal())
EliminateOthers(team);
return;
}
private func EliminateOthers(int win_team)
{
for (var i = 0; i < GetPlayerCount(); i++)
{
var plr = GetPlayerByIndex(i);
var team = GetPlayerTeam(plr);
if (team != win_team)
EliminatePlayer(plr);
}
return;
}
protected func InitializePlayer(int plr, int x, int y, object base, int team)
{
// Join new clonk.
GetRelaunchRule()->DoRelaunch(plr, nil, FindRelaunchPos(plr), true);
// make scoreboard entry for team
Scoreboard->NewEntry(ScoreboardTeamID(team), GetTaggedTeamName(team));
return _inherited(plr, x, y, base, team, ...);
}
public func FindRelaunchPos(int plr)
{
var team = GetPlayerTeam(plr);
var base = FindObject(Find_ID(Goal_FlagBase), Find_Func("FindTeam", team));
if (base)
return [base->GetX(), base->GetY() - 10];
return nil;
}
protected func RemovePlayer(int plr)
{
return _inherited(plr, ...);
}
protected func RejectTeamSwitch(int player, int new_team)
{
// Prevent team switching in any case.
return true;
}
/*-- Goal interface --*/
public func IsFulfilled()
{
// If Teams.txt-Teams still need to be chosen, the goal cannot be fulfilled.
for (var i = 0; i < GetPlayerCount(); i++)
if (GetPlayerTeam(GetPlayerByIndex(i)) == -1)
return false;
// If only one team is left, the goal is fulfilled.
var teamcnt = 0;
for (var i = 0; i < GetTeamCount(); i++)
if (GetPlayerInTeamCount(GetTeamByIndex(i)))
teamcnt++;
if (teamcnt < 2)
return true;
// If one team has reached the score limit, the goal is fulfilled.
for (var i = 0; i < GetTeamCount(); i++)
{
var team = GetTeamByIndex(i);
if (score_list[team] >= GetScoreGoal())
return true;
}
return false;
}
public func GetDescription(int plr)
{
var flags = GetScoreGoal() - score_list[GetPlayerTeam(plr)];
if (IsFulfilled())
return "$MsgGoalFulfilled$";
else
{
var msg = "$MsgGoalCaptureTheFlag$";
if (flags == 1)
return Format("%s %s", msg, "$MsgGoalUnfulfilled1$");
else
return Format("%s %s", msg, Format("$MsgGoalUnfulfilledX$", flags));
}
}
public func Activate(int byplr)
{
var flags = GetScoreGoal() - score_list[GetPlayerTeam(byplr)];
if (IsFulfilled())
MessageWindow("$MsgGoalFulfilled$", byplr);
else
{
var msg = "$MsgGoalCaptureTheFlag$";
if (flags == 1)
msg = Format("%s %s", msg, "$MsgGoalUnfulfilled1$");
else
msg = Format("%s %s", msg, Format("$MsgGoalUnfulfilledX$", flags));
MessageWindow(msg, byplr);
}
return;
}
public func GetShortDescription(int plr)
{
var team = GetPlayerTeam(plr);
var flag = FindObject(Find_ID(Goal_Flag), Find_Func("FindTeam", team));
var at_base = flag->IsAtBase();
if (!at_base)
return "$MsgShortCaptured$";
var cursor = GetCursor(plr);
flag = FindObject(Find_ID(Goal_Flag), Find_Not(Find_Func("FindTeam", team)), Find_Container(cursor));
if (flag)
return "$MsgShortReturn$";
return "$MsgShortSteal$";
}
local Name = "$Name$";
|