1 string cache_mutatormsg;
2 string cache_lastmutatormsg;
4 // client counts for each team
6 // # of bots on those teams
7 float cb1, cb2, cb3, cb4;
9 //float audit_teams_time;
11 void TeamchangeFrags(entity e)
19 void LogTeamchange(float player_id, float team_number, float type)
21 if(!autocvar_sv_eventlog)
27 GameLogEcho(strcat(":team:", ftos(player_id), ":", ftos(team_number), ":", ftos(type)));
30 void default_delayedinit()
32 if(!scores_initialized)
36 void ActivateTeamplay()
38 serverflags |= SERVERFLAG_TEAMPLAY;
42 void InitGameplayMode()
44 float fraglimit_override, timelimit_override, leadlimit_override, qualifying_override;
46 qualifying_override = -1;
50 // find out good world mins/maxs bounds, either the static bounds found by looking for solid, or the mapinfo specified bounds
55 MapInfo_LoadMapSettings(mapname);
57 serverflags &= ~SERVERFLAG_TEAMPLAY;
59 if (!cvar_value_issafe(world.fog))
61 print("The current map contains a potentially harmful fog setting, ignored\n");
62 world.fog = string_null;
64 if(MapInfo_Map_fog != "")
65 if(MapInfo_Map_fog == "none")
66 world.fog = string_null;
68 world.fog = strzone(MapInfo_Map_fog);
69 clientstuff = strzone(MapInfo_Map_clientstuff);
73 // set both here, gamemode can override it later
74 timelimit_override = autocvar_timelimit_override;
75 fraglimit_override = autocvar_fraglimit_override;
76 leadlimit_override = autocvar_leadlimit_override;
77 gamemode_name = MapInfo_Type_ToText(MapInfo_LoadedGametype);
87 if(autocvar_g_tdm_team_spawns)
88 have_team_spawns = -1; // request team spawns
94 fraglimit_override = autocvar_g_domination_point_limit;
95 leadlimit_override = autocvar_g_domination_point_leadlimit;
96 MUTATOR_ADD(gamemode_domination);
97 have_team_spawns = -1; // request team spawns
103 fraglimit_override = autocvar_capturelimit_override;
104 leadlimit_override = autocvar_captureleadlimit_override;
105 MUTATOR_ADD(gamemode_ctf);
106 have_team_spawns = -1; // request team spawns
111 fraglimit_override = autocvar_g_lms_lives_override;
112 leadlimit_override = 0; // not supported by LMS
113 if(fraglimit_override == 0)
114 fraglimit_override = -1;
115 MUTATOR_ADD(gamemode_lms);
121 fraglimit_override = autocvar_g_ca_point_limit;
122 leadlimit_override = autocvar_g_ca_point_leadlimit;
123 MUTATOR_ADD(gamemode_ca);
124 if(autocvar_g_ca_team_spawns)
125 have_team_spawns = -1; // request team spawns
131 fraglimit_override = autocvar_g_keyhunt_point_limit;
132 leadlimit_override = autocvar_g_keyhunt_point_leadlimit;
133 MUTATOR_ADD(gamemode_keyhunt);
139 fraglimit_override = autocvar_g_freezetag_point_limit;
140 leadlimit_override = autocvar_g_freezetag_point_leadlimit;
141 MUTATOR_ADD(gamemode_freezetag);
142 if(autocvar_g_freezetag_team_spawns)
143 have_team_spawns = -1; // request team spawns
149 MUTATOR_ADD(gamemode_assault);
150 have_team_spawns = -1; // request team spawns
156 have_team_spawns = -1; // request team spawns
157 MUTATOR_ADD(gamemode_onslaught);
163 if(autocvar_g_race_teams)
166 race_teams = bound(2, autocvar_g_race_teams, 4);
167 have_team_spawns = -1; // request team spawns
172 qualifying_override = autocvar_g_race_qualifying_timelimit_override;
173 fraglimit_override = autocvar_g_race_laps_limit;
174 leadlimit_override = 0; // currently not supported by race
179 g_race_qualifying = 1;
180 fraglimit_override = 0;
181 leadlimit_override = 0;
186 fraglimit_override = autocvar_g_nexball_goallimit;
187 leadlimit_override = autocvar_g_nexball_goalleadlimit;
189 have_team_spawns = -1; // request team spawns
190 MUTATOR_ADD(gamemode_nexball);
195 MUTATOR_ADD(gamemode_keepaway);
200 fraglimit_override = autocvar_g_invasion_point_limit;
201 if(autocvar_g_invasion_teams >= 2)
204 if(autocvar_g_invasion_team_spawns)
205 have_team_spawns = -1; // request team spawns
207 MUTATOR_ADD(gamemode_invasion);
213 cache_mutatormsg = strzone("");
214 cache_lastmutatormsg = strzone("");
216 // enforce the server's universal frag/time limits
217 if(!autocvar_g_campaign)
219 if(fraglimit_override >= 0)
220 cvar_set("fraglimit", ftos(fraglimit_override));
221 if(timelimit_override >= 0)
222 cvar_set("timelimit", ftos(timelimit_override));
223 if(leadlimit_override >= 0)
224 cvar_set("leadlimit", ftos(leadlimit_override));
225 if(qualifying_override >= 0)
226 cvar_set("g_race_qualifying_timelimit", ftos(qualifying_override));
231 // we need to find out the correct value for g_race_qualifying
232 if(autocvar_g_campaign)
234 g_race_qualifying = 1;
236 else if(!autocvar_g_campaign && autocvar_g_race_qualifying_timelimit > 0)
238 g_race_qualifying = 2;
239 race_fraglimit = autocvar_fraglimit;
240 race_leadlimit = autocvar_leadlimit;
241 race_timelimit = autocvar_timelimit;
242 cvar_set("fraglimit", "0");
243 cvar_set("leadlimit", "0");
244 cvar_set("timelimit", ftos(autocvar_g_race_qualifying_timelimit));
247 g_race_qualifying = 0;
252 if(g_race_qualifying)
253 independent_players = 1;
258 InitializeEntity(world, default_delayedinit, INITPRIO_GAMETYPE_FALLBACK);
261 string GetClientVersionMessage() {
263 if (self.version_mismatch) {
264 if(self.version < autocvar_gameversion) {
265 versionmsg = "^3Your client version is outdated.\n\n\n### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###\n\n\nPlease update!!!^8";
267 versionmsg = "^3This server is using an outdated Xonotic version.\n\n\n ### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###.^8";
270 versionmsg = "^2client version and server version are compatible.^8";
275 string getwelcomemessage(void)
277 string s, modifications, motd;
280 MUTATOR_CALLHOOK(BuildMutatorsPrettyString);
281 modifications = ret_string;
285 if(g_weaponarena_random)
286 modifications = strcat(modifications, ", ", ftos(g_weaponarena_random), " of ", g_weaponarena_list, " Arena");
288 modifications = strcat(modifications, ", ", g_weaponarena_list, " Arena");
290 if(cvar("g_balance_blaster_weaponstart") == 0)
291 modifications = strcat(modifications, ", No start weapons");
292 if(cvar("sv_gravity") < stof(cvar_defstring("sv_gravity")))
293 modifications = strcat(modifications, ", Low gravity");
294 if(g_cloaked && !g_cts)
295 modifications = strcat(modifications, ", Cloaked");
297 modifications = strcat(modifications, ", Hook");
298 if(g_weapon_stay && !g_cts)
299 modifications = strcat(modifications, ", Weapons stay");
301 modifications = strcat(modifications, ", Jet pack");
302 if(autocvar_g_powerups == 0)
303 modifications = strcat(modifications, ", No powerups");
304 if(autocvar_g_powerups > 0)
305 modifications = strcat(modifications, ", Powerups");
306 modifications = substring(modifications, 2, strlen(modifications) - 2);
308 string versionmessage;
309 versionmessage = GetClientVersionMessage();
311 s = strcat("This is Xonotic ", autocvar_g_xonoticversion, "\n", versionmessage);
312 s = strcat(s, "^8\n\nmatch type is ^1", gamemode_name, "^8\n");
314 if(modifications != "")
315 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
317 if (g_grappling_hook)
318 s = strcat(s, "\n\n^3grappling hook^8 is enabled, press 'e' to use it\n");
320 if(cache_lastmutatormsg != autocvar_g_mutatormsg)
322 if(cache_lastmutatormsg)
323 strunzone(cache_lastmutatormsg);
325 strunzone(cache_mutatormsg);
326 cache_lastmutatormsg = strzone(autocvar_g_mutatormsg);
327 cache_mutatormsg = strzone(cache_lastmutatormsg);
330 if (cache_mutatormsg != "") {
331 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
334 motd = autocvar_sv_motd;
336 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
341 void SetPlayerColors(entity pl, float _color)
345 stuffcmd(pl, strcat("color ", s, " ", s, "\n") );
347 //pl.clientcolors = pl.clientcolors - (pl.clientcolors & 15) + cl;
348 pl.clientcolors = 16*cl + cl;*/
351 pants = _color & 0x0F;
352 shirt = _color & 0xF0;
356 setcolor(pl, 16*pants + pants);
358 setcolor(pl, shirt + pants);
362 void SetPlayerTeam(entity pl, float t, float s, float noprint)
367 _color = NUM_TEAM_4 - 1;
369 _color = NUM_TEAM_3 - 1;
371 _color = NUM_TEAM_2 - 1;
373 _color = NUM_TEAM_1 - 1;
375 SetPlayerColors(pl,_color);
378 LogTeamchange(pl.playerid, pl.team, 3); // log manual team join
381 bprint(pl.netname, "^7 has changed from ", Team_NumberToColoredFullName(s), "^7 to ", Team_NumberToColoredFullName(t), "\n");
386 // set c1...c4 to show what teams are allowed
387 void CheckAllowedTeams (entity for_whom)
393 c1 = c2 = c3 = c4 = -1;
394 cb1 = cb2 = cb3 = cb4 = 0;
396 teament_name = string_null;
399 // onslaught is special
400 head = findchain(classname, "onslaught_generator");
403 if (head.team == NUM_TEAM_1) c1 = 0;
404 if (head.team == NUM_TEAM_2) c2 = 0;
405 if (head.team == NUM_TEAM_3) c3 = 0;
406 if (head.team == NUM_TEAM_4) c4 = 0;
410 else if(g_domination)
411 teament_name = "dom_team";
413 teament_name = "ctf_team";
415 teament_name = "tdm_team";
417 teament_name = "nexball_team";
419 c1 = c2 = 0; // Assault always has 2 teams
422 // cover anything else by treating it like tdm with no teams spawned
429 MUTATOR_CALLHOOK(GetTeamCount);
433 c1 = c2 = c3 = c4 = 0;
440 // find out what teams are allowed if necessary
443 head = find(world, classname, teament_name);
446 if(!(g_domination && head.netname == ""))
448 if(head.team == NUM_TEAM_1)
450 else if(head.team == NUM_TEAM_2)
452 else if(head.team == NUM_TEAM_3)
454 else if(head.team == NUM_TEAM_4)
457 head = find(head, classname, teament_name);
461 // TODO: Balance quantity of bots across > 2 teams when bot_vs_human is set (and remove next line)
463 if(autocvar_bot_vs_human && for_whom)
465 if(autocvar_bot_vs_human > 0)
468 if(IS_BOT_CLIENT(for_whom))
476 if(IS_BOT_CLIENT(for_whom))
483 // if player has a forced team, ONLY allow that one
484 if(self.team_forced == NUM_TEAM_1 && c1 >= 0)
486 else if(self.team_forced == NUM_TEAM_2 && c2 >= 0)
488 else if(self.team_forced == NUM_TEAM_3 && c3 >= 0)
490 else if(self.team_forced == NUM_TEAM_4 && c4 >= 0)
494 float PlayerValue(entity p)
497 // FIXME: it always returns 1...
500 // c1...c4 should be set to -1 (not allowed) or 0 (allowed).
501 // teams that are allowed will now have their player counts stored in c1...c4
502 void GetTeamCounts(entity ignore)
506 // now count how many players are on each team already
508 // FIXME: also find and memorize the lowest-scoring bot on each team (in case players must be shuffled around)
509 // also remember the lowest-scoring player
511 FOR_EACH_CLIENT(head)
516 else if(head.team_forced > 0)
517 t = head.team_forced; // reserve the spot
520 if(head != ignore)// && head.netname != "")
522 value = PlayerValue(head);
523 if(IS_BOT_CLIENT(head))
562 // if the player who has a forced team has not joined yet, reserve the spot
563 if(autocvar_g_campaign)
565 switch(autocvar_g_campaign_forceteam)
567 case 1: if(c1 == cb1) ++c1; break;
568 case 2: if(c2 == cb2) ++c2; break;
569 case 3: if(c3 == cb3) ++c3; break;
570 case 4: if(c4 == cb4) ++c4; break;
575 float TeamSmallerEqThanTeam(float ta, float tb, entity e)
577 // we assume that CheckAllowedTeams and GetTeamCounts have already been called
579 float ca = -1, cb = -1, cba = 0, cbb = 0, sa = 0, sb = 0;
583 case 1: ca = c1; cba = cb1; sa = team1_score; break;
584 case 2: ca = c2; cba = cb2; sa = team2_score; break;
585 case 3: ca = c3; cba = cb3; sa = team3_score; break;
586 case 4: ca = c4; cba = cb4; sa = team4_score; break;
590 case 1: cb = c1; cbb = cb1; sb = team1_score; break;
591 case 2: cb = c2; cbb = cb2; sb = team2_score; break;
592 case 3: cb = c3; cbb = cb3; sb = team3_score; break;
593 case 4: cb = c4; cbb = cb4; sb = team4_score; break;
604 if(IS_REAL_CLIENT(e))
613 // keep teams alive (teams of size 0 always count as smaller, ignoring score)
629 // the more we're at the end of the match, the more take scores into account
630 f = bound(0, game_completion_ratio * autocvar_g_balance_teams_scorefactor, 1);
637 // returns # of smallest team (1, 2, 3, 4)
638 // NOTE: Assumes CheckAllowedTeams has already been called!
639 float FindSmallestTeam(entity pl, float ignore_pl)
644 // find out what teams are available
645 //CheckAllowedTeams();
647 // make sure there are at least 2 teams to join
649 totalteams = totalteams + 1;
651 totalteams = totalteams + 1;
653 totalteams = totalteams + 1;
655 totalteams = totalteams + 1;
657 if((autocvar_bot_vs_human || pl.team_forced > 0) && totalteams == 1)
662 if(autocvar_g_campaign && pl && IS_REAL_CLIENT(pl))
663 return 1; // special case for campaign and player joining
664 else if(g_domination)
665 error("Too few teams available for domination\n");
667 error("Too few teams available for ctf\n");
669 error("Too few teams available for key hunt\n");
671 error("Too few teams available for freeze tag\n");
673 error("Too few teams available for team deathmatch\n");
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, 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 sprint(self, "Team changes not allowed\n");
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 sprint(self, "Cannot change to a larger/better/shinier team\n");
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 SetPlayerTeam(self, dteam, steam, FALSE);
853 if(IS_PLAYER(self) && steam != dteam)
855 // kill player when changing teams
856 if(self.deadflag == DEAD_NO)
857 Damage(self, self, self, 100000, DEATH_TEAMCHANGE, self.origin, '0 0 0');
861 void ShufflePlayerOutOfTeam (float source_team)
863 float smallestteam, smallestteam_count, steam;
864 float lowest_bot_score, lowest_player_score;
865 entity head, lowest_bot, lowest_player, selected;
868 smallestteam_count = 999999999;
870 if(c1 >= 0 && c1 < smallestteam_count)
873 smallestteam_count = c1;
875 if(c2 >= 0 && c2 < smallestteam_count)
878 smallestteam_count = c2;
880 if(c3 >= 0 && c3 < smallestteam_count)
883 smallestteam_count = c3;
885 if(c4 >= 0 && c4 < smallestteam_count)
888 smallestteam_count = c4;
893 bprint("warning: no smallest team\n");
899 else if(source_team == 2)
901 else if(source_team == 3)
903 else // if(source_team == 4)
907 lowest_bot_score = 999999999;
908 lowest_player = world;
909 lowest_player_score = 999999999;
911 // find the lowest-scoring player & bot of that team
912 FOR_EACH_PLAYER(head)
914 if(head.team == steam)
918 if(head.totalfrags < lowest_bot_score)
921 lowest_bot_score = head.totalfrags;
926 if(head.totalfrags < lowest_player_score)
928 lowest_player = head;
929 lowest_player_score = head.totalfrags;
935 // prefers to move a bot...
936 if(lowest_bot != world)
937 selected = lowest_bot;
938 // but it will move a player if it has to
940 selected = lowest_player;
941 // don't do anything if it couldn't find anyone
944 bprint("warning: couldn't find a player to move from team\n");
948 // smallest team gains a member
949 if(smallestteam == 1)
953 else if(smallestteam == 2)
957 else if(smallestteam == 3)
961 else if(smallestteam == 4)
967 bprint("warning: destination team invalid\n");
970 // source team loses a member
975 else if(source_team == 2)
979 else if(source_team == 3)
983 else if(source_team == 4)
989 bprint("warning: source team invalid\n");
993 // move the player to the new team
994 TeamchangeFrags(selected);
995 SetPlayerTeam(selected, smallestteam, source_team, FALSE);
997 if(selected.deadflag == DEAD_NO)
998 Damage(selected, selected, selected, 100000, DEATH_AUTOTEAMCHANGE, selected.origin, '0 0 0');
999 centerprint(selected, strcat("You have been moved into a different team to improve team balance\nYou are now on: ", Team_ColoredFullName(selected.team)));
1002 // code from here on is just to support maps that don't have team entities
1003 void tdm_spawnteam (string teamname, float teamcolor)
1007 e.classname = "tdm_team";
1008 e.netname = teamname;
1013 // spawn some default teams if the map is not set up for tdm
1014 void tdm_spawnteams()
1018 numteams = autocvar_g_tdm_teams_override;
1020 numteams = autocvar_g_tdm_teams;
1021 numteams = bound(2, numteams, 4);
1023 tdm_spawnteam("Red", NUM_TEAM_1-1);
1024 tdm_spawnteam("Blue", NUM_TEAM_2-1);
1026 tdm_spawnteam("Yellow", NUM_TEAM_3-1);
1028 tdm_spawnteam("Pink", NUM_TEAM_4-1);
1031 void tdm_delayedinit()
1033 // if no teams are found, spawn defaults
1034 if (find(world, classname, "tdm_team") == world)
1040 InitializeEntity(world, tdm_delayedinit, INITPRIO_GAMETYPE);