3 #include "cl_client.qh"
6 #include "scores_rules.qh"
10 #include "command/vote.qh"
12 #include "mutators/mutators_include.qh"
14 #include "../common/deathtypes/all.qh"
15 #include "../common/gamemodes/all.qh"
16 #include "../common/teams.qh"
18 void TeamchangeFrags(entity e)
23 void LogTeamchange(float player_id, float team_number, float type)
25 if(!autocvar_sv_eventlog)
31 GameLogEcho(strcat(":team:", ftos(player_id), ":", ftos(team_number), ":", ftos(type)));
34 void default_delayedinit()
36 if(!scores_initialized)
40 void ActivateTeamplay()
42 serverflags |= SERVERFLAG_TEAMPLAY;
44 cvar_set("teamplay", "2"); // DP needs this for sending proper getstatus replies.
47 void InitGameplayMode()
49 float fraglimit_override, timelimit_override, leadlimit_override, qualifying_override;
51 qualifying_override = -1;
55 // find out good world mins/maxs bounds, either the static bounds found by looking for solid, or the mapinfo specified bounds
60 MapInfo_LoadMapSettings(mapname);
61 serverflags &= ~SERVERFLAG_TEAMPLAY;
63 cvar_set("teamplay", "0"); // DP needs this for sending proper getstatus replies.
65 if (!cvar_value_issafe(world.fog))
67 LOG_INFO("The current map contains a potentially harmful fog setting, ignored\n");
68 world.fog = string_null;
70 if(MapInfo_Map_fog != "")
71 if(MapInfo_Map_fog == "none")
72 world.fog = string_null;
74 world.fog = strzone(MapInfo_Map_fog);
75 clientstuff = strzone(MapInfo_Map_clientstuff);
79 // set both here, gamemode can override it later
80 timelimit_override = autocvar_timelimit_override;
81 fraglimit_override = autocvar_fraglimit_override;
82 leadlimit_override = autocvar_leadlimit_override;
83 gamemode_name = MapInfo_Type_ToText(MapInfo_LoadedGametype);
87 MUTATOR_ADD(gamemode_deathmatch);
93 fraglimit_override = autocvar_g_tdm_point_limit;
94 leadlimit_override = autocvar_g_tdm_point_leadlimit;
95 if(autocvar_g_tdm_team_spawns)
96 have_team_spawns = -1; // request team spawns
97 MUTATOR_ADD(gamemode_tdm);
103 fraglimit_override = autocvar_g_domination_point_limit;
104 leadlimit_override = autocvar_g_domination_point_leadlimit;
105 if(autocvar_g_domination_roundbased && autocvar_g_domination_roundbased_point_limit)
106 fraglimit_override = autocvar_g_domination_roundbased_point_limit;
107 have_team_spawns = -1; // request team spawns
108 MUTATOR_ADD(gamemode_domination);
114 fraglimit_override = autocvar_capturelimit_override;
115 leadlimit_override = autocvar_captureleadlimit_override;
116 have_team_spawns = -1; // request team spawns
117 MUTATOR_ADD(gamemode_ctf);
122 fraglimit_override = autocvar_g_lms_lives_override;
123 leadlimit_override = 0; // not supported by LMS
124 if(fraglimit_override == 0)
125 fraglimit_override = -1;
126 MUTATOR_ADD(gamemode_lms);
132 fraglimit_override = autocvar_g_ca_point_limit;
133 leadlimit_override = autocvar_g_ca_point_leadlimit;
134 if(autocvar_g_ca_team_spawns)
135 have_team_spawns = -1; // request team spawns
136 MUTATOR_ADD(gamemode_ca);
142 fraglimit_override = autocvar_g_keyhunt_point_limit;
143 leadlimit_override = autocvar_g_keyhunt_point_leadlimit;
144 if(autocvar_g_keyhunt_team_spawns)
145 have_team_spawns = -1; // request team spawns
146 MUTATOR_ADD(gamemode_keyhunt);
152 fraglimit_override = autocvar_g_freezetag_point_limit;
153 leadlimit_override = autocvar_g_freezetag_point_leadlimit;
154 if(autocvar_g_freezetag_team_spawns)
155 have_team_spawns = -1; // request team spawns
156 MUTATOR_ADD(gamemode_freezetag);
162 have_team_spawns = -1; // request team spawns
163 MUTATOR_ADD(gamemode_assault);
169 fraglimit_override = autocvar_g_onslaught_point_limit;
170 have_team_spawns = -1; // request team spawns
171 MUTATOR_ADD(gamemode_onslaught);
176 if(autocvar_g_race_teams)
179 race_teams = bound(2, autocvar_g_race_teams, 4);
180 have_team_spawns = -1; // request team spawns
184 qualifying_override = autocvar_g_race_qualifying_timelimit_override;
185 fraglimit_override = autocvar_g_race_laps_limit;
186 leadlimit_override = 0; // currently not supported by race
188 // we need to find out the correct value for g_race_qualifying
189 float want_qualifying = ((qualifying_override >= 0) ? qualifying_override : autocvar_g_race_qualifying_timelimit) > 0;
191 if(autocvar_g_campaign)
193 g_race_qualifying = 1;
194 independent_players = 1;
196 else if(!autocvar_g_campaign && want_qualifying)
198 g_race_qualifying = 2;
199 independent_players = 1;
200 race_fraglimit = (race_fraglimit >= 0) ? fraglimit_override : autocvar_fraglimit;
201 race_leadlimit = (race_leadlimit >= 0) ? leadlimit_override : autocvar_leadlimit;
202 race_timelimit = (race_timelimit >= 0) ? timelimit_override : autocvar_timelimit;
203 fraglimit_override = 0;
204 leadlimit_override = 0;
205 timelimit_override = autocvar_g_race_qualifying_timelimit;
209 g_race_qualifying = 0;
212 MUTATOR_ADD(gamemode_race);
217 g_race_qualifying = 1;
218 fraglimit_override = 0;
219 leadlimit_override = 0;
220 independent_players = 1;
221 MUTATOR_ADD(gamemode_cts);
226 fraglimit_override = autocvar_g_nexball_goallimit;
227 leadlimit_override = autocvar_g_nexball_goalleadlimit;
229 have_team_spawns = -1; // request team spawns
230 MUTATOR_ADD(gamemode_nexball);
235 MUTATOR_ADD(gamemode_keepaway);
240 fraglimit_override = autocvar_g_invasion_point_limit;
241 if(autocvar_g_invasion_teams >= 2)
244 if(autocvar_g_invasion_team_spawns)
245 have_team_spawns = -1; // request team spawns
247 MUTATOR_ADD(gamemode_invasion);
250 cache_mutatormsg = strzone("");
251 cache_lastmutatormsg = strzone("");
253 // enforce the server's universal frag/time limits
254 if(!autocvar_g_campaign)
256 if(fraglimit_override >= 0)
257 cvar_set("fraglimit", ftos(fraglimit_override));
258 if(timelimit_override >= 0)
259 cvar_set("timelimit", ftos(timelimit_override));
260 if(leadlimit_override >= 0)
261 cvar_set("leadlimit", ftos(leadlimit_override));
262 if(qualifying_override >= 0)
263 cvar_set("g_race_qualifying_timelimit", ftos(qualifying_override));
266 InitializeEntity(world, default_delayedinit, INITPRIO_GAMETYPE_FALLBACK);
269 string GetClientVersionMessage()
272 if (self.version_mismatch) {
273 if(self.version < autocvar_gameversion) {
274 versionmsg = "^3Your client version is outdated.\n\n\n### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###\n\n\nPlease update!!!^8";
276 versionmsg = "^3This server is using an outdated Xonotic version.\n\n\n ### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###.^8";
279 versionmsg = "^2client version and server version are compatible.^8";
284 string getwelcomemessage(void)
286 string s, modifications, motd;
288 MUTATOR_CALLHOOK(BuildMutatorsPrettyString, "");
289 modifications = ret_string;
293 if(g_weaponarena_random)
294 modifications = strcat(modifications, ", ", ftos(g_weaponarena_random), " of ", g_weaponarena_list, " Arena");
296 modifications = strcat(modifications, ", ", g_weaponarena_list, " Arena");
298 else if(cvar("g_balance_blaster_weaponstart") == 0)
299 modifications = strcat(modifications, ", No start weapons");
300 if(cvar("sv_gravity") < stof(cvar_defstring("sv_gravity")))
301 modifications = strcat(modifications, ", Low gravity");
302 if(g_cloaked && !g_cts)
303 modifications = strcat(modifications, ", Cloaked");
304 if(g_weapon_stay && !g_cts)
305 modifications = strcat(modifications, ", Weapons stay");
307 modifications = strcat(modifications, ", Jet pack");
308 if(autocvar_g_powerups == 0)
309 modifications = strcat(modifications, ", No powerups");
310 if(autocvar_g_powerups > 0)
311 modifications = strcat(modifications, ", Powerups");
312 modifications = substring(modifications, 2, strlen(modifications) - 2);
314 string versionmessage;
315 versionmessage = GetClientVersionMessage();
317 s = strcat("This is Xonotic ", autocvar_g_xonoticversion, "\n", versionmessage);
318 s = strcat(s, "^8\n\nmatch type is ^1", gamemode_name, "^8\n");
320 if(modifications != "")
321 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
324 s = strcat(s, "\n\n^3nades^8 are enabled, press 'g' to use them\n");
326 if(cache_lastmutatormsg != autocvar_g_mutatormsg)
328 if(cache_lastmutatormsg)
329 strunzone(cache_lastmutatormsg);
331 strunzone(cache_mutatormsg);
332 cache_lastmutatormsg = strzone(autocvar_g_mutatormsg);
333 cache_mutatormsg = strzone(cache_lastmutatormsg);
336 if (cache_mutatormsg != "") {
337 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
340 string mutator_msg = "";
341 MUTATOR_CALLHOOK(BuildGameplayTipsString, mutator_msg);
342 mutator_msg = ret_string;
344 s = strcat(s, mutator_msg); // trust that the mutator will do proper formatting
346 motd = autocvar_sv_motd;
348 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
353 void SetPlayerColors(entity pl, float _color)
357 stuffcmd(pl, strcat("color ", s, " ", s, "\n") );
359 //pl.clientcolors = pl.clientcolors - (pl.clientcolors & 15) + cl;
360 pl.clientcolors = 16*cl + cl;*/
363 pants = _color & 0x0F;
364 shirt = _color & 0xF0;
368 setcolor(pl, 16*pants + pants);
370 setcolor(pl, shirt + pants);
374 void SetPlayerTeam(entity pl, float t, float s, float noprint)
379 _color = NUM_TEAM_4 - 1;
381 _color = NUM_TEAM_3 - 1;
383 _color = NUM_TEAM_2 - 1;
385 _color = NUM_TEAM_1 - 1;
387 SetPlayerColors(pl,_color);
390 LogTeamchange(pl.playerid, pl.team, 3); // log manual team join
393 bprint(pl.netname, "^7 has changed from ", Team_NumberToColoredFullName(s), "^7 to ", Team_NumberToColoredFullName(t), "\n");
398 // set c1...c4 to show what teams are allowed
399 void CheckAllowedTeams (entity for_whom)
405 c1 = c2 = c3 = c4 = -1;
406 cb1 = cb2 = cb3 = cb4 = 0;
408 teament_name = string_null;
411 // onslaught is special
412 head = findchain(classname, "onslaught_generator");
415 if (head.team == NUM_TEAM_1) c1 = 0;
416 if (head.team == NUM_TEAM_2) c2 = 0;
417 if (head.team == NUM_TEAM_3) c3 = 0;
418 if (head.team == NUM_TEAM_4) c4 = 0;
422 else if(g_domination)
423 teament_name = "dom_team";
425 teament_name = "ctf_team";
427 teament_name = "tdm_team";
429 teament_name = "nexball_team";
431 c1 = c2 = 0; // Assault always has 2 teams
434 // cover anything else by treating it like tdm with no teams spawned
437 MUTATOR_CALLHOOK(GetTeamCount, dm);
441 c1 = c2 = c3 = c4 = 0;
448 // find out what teams are allowed if necessary
451 head = find(world, classname, teament_name);
454 if(!(g_domination && head.netname == ""))
456 if(head.team == NUM_TEAM_1)
458 else if(head.team == NUM_TEAM_2)
460 else if(head.team == NUM_TEAM_3)
462 else if(head.team == NUM_TEAM_4)
465 head = find(head, classname, teament_name);
469 // TODO: Balance quantity of bots across > 2 teams when bot_vs_human is set (and remove next line)
471 if(autocvar_bot_vs_human && for_whom)
473 if(autocvar_bot_vs_human > 0)
476 if(IS_BOT_CLIENT(for_whom))
484 if(IS_BOT_CLIENT(for_whom))
491 // if player has a forced team, ONLY allow that one
492 if(self.team_forced == NUM_TEAM_1 && c1 >= 0)
494 else if(self.team_forced == NUM_TEAM_2 && c2 >= 0)
496 else if(self.team_forced == NUM_TEAM_3 && c3 >= 0)
498 else if(self.team_forced == NUM_TEAM_4 && c4 >= 0)
502 float PlayerValue(entity p)
505 // FIXME: it always returns 1...
508 // c1...c4 should be set to -1 (not allowed) or 0 (allowed).
509 // teams that are allowed will now have their player counts stored in c1...c4
510 void GetTeamCounts(entity ignore)
514 // now count how many players are on each team already
516 // FIXME: also find and memorize the lowest-scoring bot on each team (in case players must be shuffled around)
517 // also remember the lowest-scoring player
519 FOR_EACH_CLIENT(head)
522 if(IS_PLAYER(head) || head.caplayer)
524 else if(head.team_forced > 0)
525 t = head.team_forced; // reserve the spot
528 if(head != ignore)// && head.netname != "")
530 value = PlayerValue(head);
531 if(IS_BOT_CLIENT(head))
570 // if the player who has a forced team has not joined yet, reserve the spot
571 if(autocvar_g_campaign)
573 switch(autocvar_g_campaign_forceteam)
575 case 1: if(c1 == cb1) ++c1; break;
576 case 2: if(c2 == cb2) ++c2; break;
577 case 3: if(c3 == cb3) ++c3; break;
578 case 4: if(c4 == cb4) ++c4; break;
583 float TeamSmallerEqThanTeam(float ta, float tb, entity e)
585 // we assume that CheckAllowedTeams and GetTeamCounts have already been called
587 float ca = -1, cb = -1, cba = 0, cbb = 0, sa = 0, sb = 0;
591 case 1: ca = c1; cba = cb1; sa = team1_score; break;
592 case 2: ca = c2; cba = cb2; sa = team2_score; break;
593 case 3: ca = c3; cba = cb3; sa = team3_score; break;
594 case 4: ca = c4; cba = cb4; sa = team4_score; break;
598 case 1: cb = c1; cbb = cb1; sb = team1_score; break;
599 case 2: cb = c2; cbb = cb2; sb = team2_score; break;
600 case 3: cb = c3; cbb = cb3; sb = team3_score; break;
601 case 4: cb = c4; cbb = cb4; sb = team4_score; break;
612 if(IS_REAL_CLIENT(e))
621 // keep teams alive (teams of size 0 always count as smaller, ignoring score)
637 // the more we're at the end of the match, the more take scores into account
638 f = bound(0, game_completion_ratio * autocvar_g_balance_teams_scorefactor, 1);
645 // returns # of smallest team (1, 2, 3, 4)
646 // NOTE: Assumes CheckAllowedTeams has already been called!
647 float FindSmallestTeam(entity pl, float ignore_pl)
652 // find out what teams are available
653 //CheckAllowedTeams();
655 // make sure there are at least 2 teams to join
657 totalteams = totalteams + 1;
659 totalteams = totalteams + 1;
661 totalteams = totalteams + 1;
663 totalteams = totalteams + 1;
665 if((autocvar_bot_vs_human || pl.team_forced > 0) && totalteams == 1)
670 if(autocvar_g_campaign && pl && IS_REAL_CLIENT(pl))
671 return 1; // special case for campaign and player joining
673 error(sprintf("Too few teams available for %s\n", MapInfo_Type_ToString(MapInfo_CurrentGametype())));
676 // count how many players are in each team
680 GetTeamCounts(world);
682 RandomSelection_Init();
685 if(TeamSmallerEqThanTeam(2, t, pl))
687 if(TeamSmallerEqThanTeam(3, t, pl))
689 if(TeamSmallerEqThanTeam(4, t, pl))
692 // now t is the minimum, or A minimum!
693 if(t == 1 || TeamSmallerEqThanTeam(1, t, pl))
694 RandomSelection_Add(world, 1, string_null, 1, 1);
695 if(t == 2 || TeamSmallerEqThanTeam(2, t, pl))
696 RandomSelection_Add(world, 2, string_null, 1, 1);
697 if(t == 3 || TeamSmallerEqThanTeam(3, t, pl))
698 RandomSelection_Add(world, 3, string_null, 1, 1);
699 if(t == 4 || TeamSmallerEqThanTeam(4, t, pl))
700 RandomSelection_Add(world, 4, string_null, 1, 1);
702 return RandomSelection_chosen_float;
705 float JoinBestTeam(entity pl, float only_return_best, float forcebestteam)
707 float smallest, selectedteam;
709 // don't join a team if we're not playing a team game
713 // find out what teams are available
714 CheckAllowedTeams(pl);
716 // if we don't care what team he ends up on, put him on whatever team he entered as.
717 // if he's not on a valid team, then let other code put him on the smallest team
720 if( c1 >= 0 && pl.team == NUM_TEAM_1)
721 selectedteam = pl.team;
722 else if(c2 >= 0 && pl.team == NUM_TEAM_2)
723 selectedteam = pl.team;
724 else if(c3 >= 0 && pl.team == NUM_TEAM_3)
725 selectedteam = pl.team;
726 else if(c4 >= 0 && pl.team == NUM_TEAM_4)
727 selectedteam = pl.team;
733 if(!only_return_best)
735 SetPlayerColors(pl, selectedteam - 1);
737 // when JoinBestTeam is called by client.qc/ClientKill_Now_TeamChange the players team is -1 and thus skipped
738 // when JoinBestTeam is called by cl_client.qc/ClientConnect the player_id is 0 the log attempt is rejected
739 LogTeamchange(pl.playerid, pl.team, 99);
743 // otherwise end up on the smallest team (handled below)
746 smallest = FindSmallestTeam(pl, true);
748 if(!only_return_best && !pl.bot_forced_team)
750 TeamchangeFrags(self);
753 SetPlayerColors(pl, NUM_TEAM_1 - 1);
755 else if(smallest == 2)
757 SetPlayerColors(pl, NUM_TEAM_2 - 1);
759 else if(smallest == 3)
761 SetPlayerColors(pl, NUM_TEAM_3 - 1);
763 else if(smallest == 4)
765 SetPlayerColors(pl, NUM_TEAM_4 - 1);
769 error("smallest team: invalid team\n");
772 LogTeamchange(pl.playerid, pl.team, 2); // log auto join
774 if(pl.deadflag == DEAD_NO)
775 Damage(pl, pl, pl, 100000, DEATH_TEAMCHANGE.m_id, pl.origin, '0 0 0');
781 //void() ctf_playerchanged;
782 void SV_ChangeTeam(float _color)
784 float scolor, dcolor, steam, dteam; //, dbotcount, scount, dcount;
786 // in normal deathmatch we can just apply the color and we're done
788 SetPlayerColors(self, _color);
792 scolor = self.clientcolors & 0x0F;
793 dcolor = _color & 0x0F;
795 if(scolor == NUM_TEAM_1 - 1)
797 else if(scolor == NUM_TEAM_2 - 1)
799 else if(scolor == NUM_TEAM_3 - 1)
801 else // if(scolor == NUM_TEAM_4 - 1)
803 if(dcolor == NUM_TEAM_1 - 1)
805 else if(dcolor == NUM_TEAM_2 - 1)
807 else if(dcolor == NUM_TEAM_3 - 1)
809 else // if(dcolor == NUM_TEAM_4 - 1)
812 CheckAllowedTeams(self);
814 if(dteam == 1 && c1 < 0) dteam = 4;
815 if(dteam == 4 && c4 < 0) dteam = 3;
816 if(dteam == 3 && c3 < 0) dteam = 2;
817 if(dteam == 2 && c2 < 0) dteam = 1;
819 // not changing teams
822 //bprint("same team change\n");
823 SetPlayerTeam(self, dteam, steam, true);
827 if((autocvar_g_campaign) || (autocvar_g_changeteam_banned && self.wasplayer)) {
828 Send_Notification(NOTIF_ONE, self, MSG_INFO, INFO_TEAMCHANGE_NOTALLOWED);
829 return; // changing teams is not allowed
832 // autocvar_g_balance_teams_prevent_imbalance only makes sense if autocvar_g_balance_teams is on, as it makes the team selection dialog pointless
833 if(autocvar_g_balance_teams && autocvar_g_balance_teams_prevent_imbalance)
836 if(!TeamSmallerEqThanTeam(dteam, steam, self))
838 Send_Notification(NOTIF_ONE, self, MSG_INFO, INFO_TEAMCHANGE_LARGERTEAM);
843 // bprint("allow change teams from ", ftos(steam), " to ", ftos(dteam), "\n");
845 if(IS_PLAYER(self) && steam != dteam)
847 // reduce frags during a team change
848 TeamchangeFrags(self);
851 // since this is an engine function, and gamecode doesn't have any calls earlier than this, do the connecting message here
853 Send_Notification(NOTIF_ONE, self, MSG_INFO, INFO_CONNECTING, self.netname);
855 SetPlayerTeam(self, dteam, steam, !IS_CLIENT(self));
857 if(IS_PLAYER(self) && steam != dteam)
859 // kill player when changing teams
860 if(self.deadflag == DEAD_NO)
861 Damage(self, self, self, 100000, DEATH_TEAMCHANGE.m_id, self.origin, '0 0 0');
865 void ShufflePlayerOutOfTeam (float source_team)
867 float smallestteam, smallestteam_count, steam;
868 float lowest_bot_score, lowest_player_score;
869 entity head, lowest_bot, lowest_player, selected;
872 smallestteam_count = 999999999;
874 if(c1 >= 0 && c1 < smallestteam_count)
877 smallestteam_count = c1;
879 if(c2 >= 0 && c2 < smallestteam_count)
882 smallestteam_count = c2;
884 if(c3 >= 0 && c3 < smallestteam_count)
887 smallestteam_count = c3;
889 if(c4 >= 0 && c4 < smallestteam_count)
892 smallestteam_count = c4;
897 bprint("warning: no smallest team\n");
903 else if(source_team == 2)
905 else if(source_team == 3)
907 else // if(source_team == 4)
911 lowest_bot_score = 999999999;
912 lowest_player = world;
913 lowest_player_score = 999999999;
915 // find the lowest-scoring player & bot of that team
916 FOR_EACH_PLAYER(head)
918 if(head.team == steam)
922 if(head.totalfrags < lowest_bot_score)
925 lowest_bot_score = head.totalfrags;
930 if(head.totalfrags < lowest_player_score)
932 lowest_player = head;
933 lowest_player_score = head.totalfrags;
939 // prefers to move a bot...
940 if(lowest_bot != world)
941 selected = lowest_bot;
942 // but it will move a player if it has to
944 selected = lowest_player;
945 // don't do anything if it couldn't find anyone
948 bprint("warning: couldn't find a player to move from team\n");
952 // smallest team gains a member
953 if(smallestteam == 1)
957 else if(smallestteam == 2)
961 else if(smallestteam == 3)
965 else if(smallestteam == 4)
971 bprint("warning: destination team invalid\n");
974 // source team loses a member
979 else if(source_team == 2)
983 else if(source_team == 3)
987 else if(source_team == 4)
993 bprint("warning: source team invalid\n");
997 // move the player to the new team
998 TeamchangeFrags(selected);
999 SetPlayerTeam(selected, smallestteam, source_team, false);
1001 if(selected.deadflag == DEAD_NO)
1002 Damage(selected, selected, selected, 100000, DEATH_AUTOTEAMCHANGE.m_id, selected.origin, '0 0 0');
1003 Send_Notification(NOTIF_ONE, selected, MSG_CENTER, CENTER_DEATH_SELF_AUTOTEAMCHANGE, selected.team);