]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/teamplay.qc
make g_powerup_* count as "No strength"-like mutators
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / teamplay.qc
1 string cache_mutatormsg;
2 string cache_lastmutatormsg;
3
4 // client counts for each team
5 float c1, c2, c3, c4;
6 // # of bots on those teams
7 float cb1, cb2, cb3, cb4;
8
9 float audit_teams_time;
10
11 float IsTeamBalanceForced()
12 {
13         if(intermission_running)
14                 return 0; // no rebalancing whatsoever please
15         if(!teamplay)
16                 return 0;
17         if(autocvar_g_campaign)
18                 return 0;
19         if(autocvar_bot_vs_human && (c3==-1 && c4==-1))
20                 return 0;
21         if(!autocvar_g_balance_teams_force)
22                 return -1;
23         return 1;
24 }
25
26 void TeamchangeFrags(entity e)
27 {
28         PlayerScore_Clear(e);
29 }
30
31 vector TeamColor(float teem)
32 {
33         switch(teem)
34         {
35                 case COLOR_TEAM1:
36                         return '1 0.0625 0.0625';
37                 case COLOR_TEAM2:
38                         return '0.0625 0.0625 1';
39                 case COLOR_TEAM3:
40                         return '1 1 0.0625';
41                 case COLOR_TEAM4:
42                         return '1 0.0625 1';
43                 default:
44                         return '1 1 1';
45         }
46 }
47
48 string TeamName(float t)
49 {
50         return strcat(Team_ColorName(t), " Team");
51 }
52 string ColoredTeamName(float t)
53 {
54         return strcat(Team_ColorCode(t), Team_ColorName(t), " Team^7");
55 }
56 string TeamNoName(float t)
57 {
58         // fixme: Search for team entities and get their .netname's!
59         if(t == 1)
60                 return "Red Team";
61         if(t == 2)
62                 return "Blue Team";
63         if(t == 3)
64                 return "Yellow Team";
65         if(t == 4)
66                 return "Pink Team";
67         return "Neutral Team";
68 }
69
70 void dom_init();
71 void ctf_init();
72 void runematch_init();
73 void tdm_init();
74 void nb_init();
75 void entcs_init();
76
77 void LogTeamchange(float player_id, float team_number, float type)
78 {
79         if(!autocvar_sv_eventlog)
80                 return;
81
82         if(player_id < 1)
83                 return;
84
85         GameLogEcho(strcat(":team:", ftos(player_id), ":", ftos(team_number), ":", ftos(type)));
86 }
87
88 void WriteGameCvars()
89 {
90         cvar_set("g_dm", ftos(g_dm));
91         cvar_set("g_tdm", ftos(g_tdm));
92         cvar_set("g_domination", ftos(g_domination));
93         cvar_set("g_ctf", ftos(g_ctf));
94         cvar_set("g_runematch", ftos(g_runematch));
95         cvar_set("g_lms", ftos(g_lms));
96         cvar_set("g_arena", ftos(g_arena));
97         cvar_set("g_ca", ftos(g_ca));
98         cvar_set("g_keyhunt", ftos(g_keyhunt));
99         cvar_set("g_assault", ftos(g_assault));
100         cvar_set("g_onslaught", ftos(g_onslaught));
101         cvar_set("g_race", ftos(g_race));
102         cvar_set("g_nexball", ftos(g_nexball));
103         cvar_set("g_cts", ftos(g_cts));
104         cvar_set("g_freezetag", ftos(g_freezetag));
105         cvar_set("g_keepaway", ftos(g_keepaway));
106 }
107
108 void ReadGameCvars()
109 {
110         float found;
111         float prev;
112         float i;
113
114         found = 0;
115         prev = autocvar_gamecfg;
116         for(i = 0; i < 2; ++i)
117         {
118 //#NO AUTOCVARS START
119                 found += (g_dm = (!found && (prev != GAME_DEATHMATCH) && cvar("g_dm")));
120                 found += (g_tdm = (!found && (prev != GAME_TEAM_DEATHMATCH) && cvar("g_tdm")));
121                 found += (g_domination = (!found && (prev != GAME_DOMINATION) && cvar("g_domination")));
122                 found += (g_ctf = (!found && (prev != GAME_CTF) && cvar("g_ctf")));
123                 found += (g_runematch = (!found && (prev != GAME_RUNEMATCH) && cvar("g_runematch")));
124                 found += (g_lms = (!found && (prev != GAME_LMS) && cvar("g_lms")));
125                 found += (g_arena = (!found && (prev != GAME_ARENA) && cvar("g_arena")));
126                 found += (g_ca = (!found && (prev != GAME_CA) && cvar("g_ca")));
127                 found += (g_keyhunt = (!found && (prev != GAME_KEYHUNT) && cvar("g_keyhunt")));
128                 found += (g_assault = (!found && (prev != GAME_ASSAULT) && cvar("g_assault")));
129                 found += (g_onslaught = (!found && (prev != GAME_ONSLAUGHT) && cvar("g_onslaught")));
130                 found += (g_race = (!found && (prev != GAME_RACE) && cvar("g_race")));
131                 found += (g_nexball = (!found && (prev != GAME_NEXBALL) && cvar("g_nexball")));
132                 found += (g_cts = (!found && (prev != GAME_CTS) && cvar("g_cts")));
133                 found += (g_freezetag = (!found && (prev != GAME_FREEZETAG) && cvar("g_freezetag")));
134                 found += (g_keepaway = (!found && (prev != GAME_KEEPAWAY) && cvar("g_keepaway")));
135 //#NO AUTOCVARS END
136
137                 if(found)
138                         break;
139
140                 prev = -1; // second attempt takes place WITHOUT prev set
141         }
142
143         if(!found)
144                 g_dm = 1;
145
146         teamplay = 0;
147         serverflags &~= SERVERFLAG_TEAMPLAY;
148 }
149
150 void default_delayedinit()
151 {
152         if(!scores_initialized)
153                 ScoreRules_generic();
154 }
155
156 void ActivateTeamplay()
157 {
158         serverflags |= SERVERFLAG_TEAMPLAY;
159         teamplay = 1;
160 }
161
162 void InitGameplayMode()
163 {
164         float fraglimit_override, timelimit_override, leadlimit_override, qualifying_override;
165
166         qualifying_override = -1;
167
168         VoteReset();
169
170         // make sure only ONE type is selected
171         ReadGameCvars();
172         WriteGameCvars();
173
174         // find out good world mins/maxs bounds, either the static bounds found by looking for solid, or the mapinfo specified bounds
175         get_mi_min_max(1);
176         world.mins = mi_min;
177         world.maxs = mi_max;
178
179         MapInfo_LoadMapSettings(mapname);
180
181         if not(cvar_value_issafe(world.fog))
182         {
183                 print("The current map contains a potentially harmful fog setting, ignored\n");
184                 world.fog = string_null;
185         }
186         if(MapInfo_Map_fog != "")
187                 if(MapInfo_Map_fog == "none")
188                         world.fog = string_null;
189                 else
190                         world.fog = strzone(MapInfo_Map_fog);
191         clientstuff = strzone(MapInfo_Map_clientstuff);
192
193         MapInfo_ClearTemps();
194
195         // in case mapinfo switched the type
196         ReadGameCvars();
197
198         // set both here, gamemode can override it later
199         timelimit_override = autocvar_timelimit_override;
200         fraglimit_override = autocvar_fraglimit_override;
201         leadlimit_override = autocvar_leadlimit_override;
202
203         if(g_dm)
204         {
205                 game = GAME_DEATHMATCH;
206                 gamemode_name = "Deathmatch";
207         }
208
209         if(g_tdm)
210         {
211                 game = GAME_TEAM_DEATHMATCH;
212                 gamemode_name = "Team Deathmatch";
213                 ActivateTeamplay();
214                 tdm_init();
215                 if(autocvar_g_tdm_team_spawns)
216                         have_team_spawns = -1; // request team spawns
217         }
218
219         if(g_domination)
220         {
221                 game = GAME_DOMINATION;
222                 gamemode_name = "Domination";
223                 ActivateTeamplay();
224                 fraglimit_override = autocvar_g_domination_point_limit;
225                 leadlimit_override = autocvar_g_domination_point_leadlimit;
226                 dom_init();
227                 have_team_spawns = -1; // request team spawns
228         }
229
230         if(g_ctf)
231         {
232                 game = GAME_CTF;
233                 gamemode_name = "Capture the Flag";
234                 ActivateTeamplay();
235                 g_ctf_ignore_frags = autocvar_g_ctf_ignore_frags;
236                 if(g_ctf_win_mode == 2)
237                 {
238                         fraglimit_override = autocvar_g_ctf_capture_limit;
239                         leadlimit_override = autocvar_g_ctf_capture_leadlimit;
240                 }
241                 else
242                 {
243                         fraglimit_override = autocvar_capturelimit_override;
244                         leadlimit_override = autocvar_captureleadlimit_override;
245                 }
246                 ctf_init();
247                 have_team_spawns = -1; // request team spawns
248         }
249
250         if(g_runematch)
251         {
252                 game = GAME_RUNEMATCH;
253                 gamemode_name = "Rune Match";
254                 // ActivateTeamplay();
255                 fraglimit_override = autocvar_g_runematch_point_limit;
256                 leadlimit_override = autocvar_g_runematch_point_leadlimit;
257                 runematch_init();
258         }
259
260         if(g_lms)
261         {
262                 game = GAME_LMS;
263                 gamemode_name = "Last Man Standing";
264                 fraglimit_override = autocvar_g_lms_lives_override;
265                 leadlimit_override = 0; // not supported by LMS
266                 if(fraglimit_override == 0)
267                         fraglimit_override = -1;
268                 lms_lowest_lives = 9999;
269                 lms_next_place = 0;
270                 ScoreRules_lms();
271         }
272
273         if(g_arena)
274         {
275                 game = GAME_ARENA;
276                 gamemode_name = "Arena";
277                 fraglimit_override = autocvar_g_arena_point_limit;
278                 leadlimit_override = autocvar_g_arena_point_leadlimit;
279                 maxspawned = autocvar_g_arena_maxspawned;
280                 if(maxspawned < 2)
281                         maxspawned = 2;
282                 arena_roundbased = autocvar_g_arena_roundbased;
283         }
284
285         if(g_ca)
286         {
287                 game = GAME_CA;
288                 gamemode_name = "Clan Arena";
289                 ActivateTeamplay();
290                 fraglimit_override = autocvar_g_ca_point_limit;
291                 leadlimit_override = autocvar_g_ca_point_leadlimit;
292                 precache_sound("ctf/red_capture.wav");
293                 precache_sound("ctf/blue_capture.wav");
294         }
295         if(g_keyhunt)
296         {
297                 game = GAME_KEYHUNT;
298                 gamemode_name = "Key Hunt";
299                 ActivateTeamplay();
300                 fraglimit_override = autocvar_g_keyhunt_point_limit;
301                 leadlimit_override = autocvar_g_keyhunt_point_leadlimit;
302                 MUTATOR_ADD(gamemode_keyhunt);
303         }
304
305         if(g_freezetag)
306         {
307                 game = GAME_FREEZETAG;
308                 gamemode_name = "Freeze Tag";
309                 ActivateTeamplay();
310                 fraglimit_override = autocvar_g_freezetag_point_limit;
311                 leadlimit_override = autocvar_g_freezetag_point_leadlimit;
312                 MUTATOR_ADD(gamemode_freezetag);
313         }
314
315         if(g_assault)
316         {
317                 game = GAME_ASSAULT;
318                 gamemode_name = "Assault";
319                 ActivateTeamplay();
320                 ScoreRules_assault();
321                 have_team_spawns = -1; // request team spawns
322         }
323
324         if(g_onslaught)
325         {
326                 game = GAME_ONSLAUGHT;
327                 gamemode_name = "Onslaught";
328                 ActivateTeamplay();
329                 have_team_spawns = -1; // request team spawns
330         }
331
332         if(g_race)
333         {
334                 game = GAME_RACE;
335                 gamemode_name = "Race";
336
337                 if(autocvar_g_race_teams)
338                 {
339                         ActivateTeamplay();
340                         race_teams = bound(2, autocvar_g_race_teams, 4);
341                         have_team_spawns = -1; // request team spawns
342                 }
343                 else
344                         race_teams = 0;
345
346                 qualifying_override = autocvar_g_race_qualifying_timelimit_override;
347                 fraglimit_override = autocvar_g_race_laps_limit;
348                 leadlimit_override = 0; // currently not supported by race
349         }
350
351         if(g_cts)
352         {
353                 game = GAME_CTS;
354                 gamemode_name = "CTS";
355                 g_race_qualifying = 1;
356                 fraglimit_override = 0;
357                 leadlimit_override = 0;
358         }
359
360         if(g_nexball)
361         {
362                 game = GAME_NEXBALL;
363                 gamemode_name = "Nexball";
364                 fraglimit_override = autocvar_g_nexball_goallimit;
365                 leadlimit_override = autocvar_g_nexball_goalleadlimit;
366                 ActivateTeamplay();
367                 nb_init();
368                 have_team_spawns = -1; // request team spawns
369         }
370
371         if(g_keepaway)
372         {
373                 game = GAME_KEEPAWAY;
374                 gamemode_name = "Keepaway";
375                 MUTATOR_ADD(gamemode_keepaway);
376         }
377
378         if(teamplay)
379                 entcs_init();
380
381         // save it (for the next startup)
382         cvar_set("gamecfg", ftos(game));
383
384         cache_mutatormsg = strzone("");
385         cache_lastmutatormsg = strzone("");
386
387         // enforce the server's universal frag/time limits
388         if(!autocvar_g_campaign)
389         {
390                 if(fraglimit_override >= 0)
391                         cvar_set("fraglimit", ftos(fraglimit_override));
392                 if(timelimit_override >= 0)
393                         cvar_set("timelimit", ftos(timelimit_override));
394                 if(leadlimit_override >= 0)
395                         cvar_set("leadlimit", ftos(leadlimit_override));
396                 if(qualifying_override >= 0)
397                         cvar_set("g_race_qualifying_timelimit", ftos(qualifying_override));
398         }
399
400         if(g_race)
401         {
402                 // we need to find out the correct value for g_race_qualifying
403                 if(autocvar_g_campaign)
404                 {
405                         g_race_qualifying = 1;
406                 }
407                 else if(!autocvar_g_campaign && autocvar_g_race_qualifying_timelimit > 0)
408                 {
409                         g_race_qualifying = 2;
410                         race_fraglimit = autocvar_fraglimit;
411                         race_leadlimit = autocvar_leadlimit;
412                         race_timelimit = autocvar_timelimit;
413                         cvar_set("fraglimit", "0");
414                         cvar_set("leadlimit", "0");
415                         cvar_set("timelimit", ftos(autocvar_g_race_qualifying_timelimit));
416                 }
417                 else
418                         g_race_qualifying = 0;
419         }
420
421         if(g_race || g_cts)
422         {
423                 if(g_race_qualifying)
424                         independent_players = 1;
425
426                 ScoreRules_race();
427         }
428
429         InitializeEntity(world, default_delayedinit, INITPRIO_GAMETYPE_FALLBACK);
430 }
431
432 string GetClientVersionMessage() {
433         string versionmsg;
434         if (self.version_mismatch) {
435                 if(self.version < autocvar_gameversion) {
436                         versionmsg = "^3Your client version is outdated.\n\n\n### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###\n\n\nPlease update!!!^8";
437                 } else {
438                         versionmsg = "^3This server is using an outdated Xonotic version.\n\n\n ### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###.^8";
439                 }
440         } else {
441                 versionmsg = "^2client version and server version are compatible.^8";
442         }
443         return versionmsg;
444 }
445
446 string getwelcomemessage(void)
447 {
448         string s, modifications, motd;
449
450         ret_string = "";
451         MUTATOR_CALLHOOK(BuildMutatorsPrettyString);
452         modifications = ret_string;
453         
454         if(g_minstagib)
455                 modifications = strcat(modifications, ", MinstaGib");
456         if(g_weaponarena)
457         {
458                 if(g_weaponarena_random)
459                         modifications = strcat(modifications, ", ", ftos(g_weaponarena_random), " of ", g_weaponarena_list, " Arena");
460                 else
461                         modifications = strcat(modifications, ", ", g_weaponarena_list, " Arena");
462         }
463         if(autocvar_g_start_weapon_laser == 0)
464                 modifications = strcat(modifications, ", No start weapons");
465         if(autocvar_sv_gravity < 800)
466                 modifications = strcat(modifications, ", Low gravity");
467         if(g_cloaked && !g_cts)
468                 modifications = strcat(modifications, ", Cloaked");
469         if(g_grappling_hook)
470                 modifications = strcat(modifications, ", Hook");
471         if(g_midair)
472                 modifications = strcat(modifications, ", Midair");
473         if(g_pinata)
474                 modifications = strcat(modifications, ", Piñata");
475         if(g_weapon_stay && !g_cts)
476                 modifications = strcat(modifications, ", Weapons stay");
477         if(g_bloodloss > 0)
478                 modifications = strcat(modifications, ", Blood loss");
479         if(g_jetpack)
480                 modifications = strcat(modifications, ", Jet pack");
481         if(!autocvar_g_powerup_superhealth)
482                 modifications = strcat(modifications, ", No superhealth");
483         if(!autocvar_g_powerup_strength)
484                 modifications = strcat(modifications, ", No strength");
485         if(!autocvar_g_powerup_shield)
486                 modifications = strcat(modifications, ", No shield");
487         modifications = substring(modifications, 2, strlen(modifications) - 2);
488
489         string versionmessage;
490         versionmessage = GetClientVersionMessage();
491
492         s = strcat("This is Xonotic ", autocvar_g_xonoticversion, "\n", versionmessage);
493         s = strcat(s, "^8\n\nmatch type is ^1", gamemode_name, "^8\n");
494
495         if(modifications != "")
496                 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
497
498         if (g_grappling_hook)
499                 s = strcat(s, "\n\n^3grappling hook^8 is enabled, press 'e' to use it\n");
500
501         if(cache_lastmutatormsg != autocvar_g_mutatormsg)
502         {
503                 if(cache_lastmutatormsg)
504                         strunzone(cache_lastmutatormsg);
505                 if(cache_mutatormsg)
506                         strunzone(cache_mutatormsg);
507                 cache_lastmutatormsg = strzone(autocvar_g_mutatormsg);
508                 cache_mutatormsg = strzone(cache_lastmutatormsg);
509         }
510
511         if (cache_mutatormsg != "") {
512                 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
513         }
514
515         motd = autocvar_sv_motd;
516         if (motd != "") {
517                 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
518         }
519         return s;
520 }
521
522 void SetPlayerColors(entity pl, float _color)
523 {
524         /*string s;
525         s = ftos(cl);
526         stuffcmd(pl, strcat("color ", s, " ", s, "\n")  );
527         pl.team = cl + 1;
528         //pl.clientcolors = pl.clientcolors - (pl.clientcolors & 15) + cl;
529         pl.clientcolors = 16*cl + cl;*/
530
531         float pants, shirt;
532         pants = _color & 0x0F;
533         shirt = _color & 0xF0;
534
535
536         if(teamplay) {
537                 setcolor(pl, 16*pants + pants);
538         } else {
539                 setcolor(pl, shirt + pants);
540         }
541 }
542
543 void SetPlayerTeam(entity pl, float t, float s, float noprint)
544 {
545         float _color;
546
547         if(t == 4)
548                 _color = COLOR_TEAM4 - 1;
549         else if(t == 3)
550                 _color = COLOR_TEAM3 - 1;
551         else if(t == 2)
552                 _color = COLOR_TEAM2 - 1;
553         else
554                 _color = COLOR_TEAM1 - 1;
555
556         SetPlayerColors(pl,_color);
557
558         if(t != s) {
559                 LogTeamchange(pl.playerid, pl.team, 3);  // log manual team join
560
561                 if(!noprint)
562                 bprint(pl.netname, "^7 has changed from ", TeamNoName(s), " to ", TeamNoName(t), "\n");
563         }
564
565 }
566
567 // set c1...c4 to show what teams are allowed
568 void CheckAllowedTeams (entity for_whom)
569 {
570         float dm;
571         entity head;
572         string teament_name;
573
574         c1 = c2 = c3 = c4 = -1;
575         cb1 = cb2 = cb3 = cb4 = 0;
576
577         if(g_onslaught)
578         {
579                 // onslaught is special
580                 head = findchain(classname, "onslaught_generator");
581                 while (head)
582                 {
583                         if (head.team == COLOR_TEAM1) c1 = 0;
584                         if (head.team == COLOR_TEAM2) c2 = 0;
585                         if (head.team == COLOR_TEAM3) c3 = 0;
586                         if (head.team == COLOR_TEAM4) c4 = 0;
587                         head = head.chain;
588                 }
589         }
590         else if(g_domination)
591                 teament_name = "dom_team";
592         else if(g_ctf)
593                 teament_name = "ctf_team";
594         else if(g_tdm)
595                 teament_name = "tdm_team";
596         else if(g_nexball)
597                 teament_name = "nexball_team";
598         else if(g_assault)
599                 c1 = c2 = 0; // Assault always has 2 teams
600         else
601         {
602                 // cover anything else by treating it like tdm with no teams spawned
603                 if(g_race)
604                         dm = race_teams;
605                 else
606                         dm = 2;
607
608                 ret_float = dm;
609                 MUTATOR_CALLHOOK(GetTeamCount);
610                 dm = ret_float;
611
612                 if(dm >= 4)
613                         c1 = c2 = c3 = c4 = 0;
614                 else if(dm >= 3)
615                         c1 = c2 = c3 = 0;
616                 else
617                         c1 = c2 = 0;
618         }
619
620         // find out what teams are allowed if necessary
621         if(teament_name)
622         {
623                 head = find(world, classname, teament_name);
624                 while(head)
625                 {
626                         if(!(g_domination && head.netname == ""))
627                         {
628                                 if(head.team == COLOR_TEAM1)
629                                         c1 = 0;
630                                 else if(head.team == COLOR_TEAM2)
631                                         c2 = 0;
632                                 else if(head.team == COLOR_TEAM3)
633                                         c3 = 0;
634                                 else if(head.team == COLOR_TEAM4)
635                                         c4 = 0;
636                         }
637                         head = find(head, classname, teament_name);
638                 }
639         }
640
641         // TODO: Balance quantity of bots across > 2 teams when bot_vs_human is set (and remove next line)
642         if(c3==-1 && c4==-1)
643         if(autocvar_bot_vs_human && for_whom)
644         {
645                 if(autocvar_bot_vs_human > 0)
646                 {
647                         // bots are all blue
648                         if(clienttype(for_whom) == CLIENTTYPE_BOT)
649                                 c1 = c3 = c4 = -1;
650                         else
651                                 c2 = -1;
652                 }
653                 else
654                 {
655                         // bots are all red
656                         if(clienttype(for_whom) == CLIENTTYPE_BOT)
657                                 c2 = c3 = c4 = -1;
658                         else
659                                 c1 = -1;
660                 }
661         }
662
663         // if player has a forced team, ONLY allow that one
664         if(self.team_forced == COLOR_TEAM1 && c1 >= 0)
665                 c2 = c3 = c4 = -1;
666         else if(self.team_forced == COLOR_TEAM2 && c2 >= 0)
667                 c1 = c3 = c4 = -1;
668         else if(self.team_forced == COLOR_TEAM3 && c3 >= 0)
669                 c1 = c2 = c4 = -1;
670         else if(self.team_forced == COLOR_TEAM4 && c4 >= 0)
671                 c1 = c2 = c3 = -1;
672 }
673
674 float PlayerValue(entity p)
675 {
676         if(IsTeamBalanceForced() == 1)
677                 return 1;
678         return 1;
679         // FIXME: it always returns 1...
680 }
681
682 // c1...c4 should be set to -1 (not allowed) or 0 (allowed).
683 // teams that are allowed will now have their player counts stored in c1...c4
684 void GetTeamCounts(entity ignore)
685 {
686         entity head;
687         float value, bvalue;
688         // now count how many players are on each team already
689
690         // FIXME: also find and memorize the lowest-scoring bot on each team (in case players must be shuffled around)
691         // also remember the lowest-scoring player
692
693         FOR_EACH_CLIENT(head)
694         {
695                 float t;
696                 if(head.classname == "player")
697                         t = head.team;
698                 else if(head.team_forced > 0)
699                         t = head.team_forced; // reserve the spot
700                 else
701                         continue;
702                 if(head != ignore)// && head.netname != "")
703                 {
704                         value = PlayerValue(head);
705                         if(clienttype(head) == CLIENTTYPE_BOT)
706                                 bvalue = value;
707                         else
708                                 bvalue = 0;
709                         if(t == COLOR_TEAM1)
710                         {
711                                 if(c1 >= 0)
712                                 {
713                                         c1 = c1 + value;
714                                         cb1 = cb1 + bvalue;
715                                 }
716                         }
717                         if(t == COLOR_TEAM2)
718                         {
719                                 if(c2 >= 0)
720                                 {
721                                         c2 = c2 + value;
722                                         cb2 = cb2 + bvalue;
723                                 }
724                         }
725                         if(t == COLOR_TEAM3)
726                         {
727                                 if(c3 >= 0)
728                                 {
729                                         c3 = c3 + value;
730                                         cb3 = cb3 + bvalue;
731                                 }
732                         }
733                         if(t == COLOR_TEAM4)
734                         {
735                                 if(c4 >= 0)
736                                 {
737                                         c4 = c4 + value;
738                                         cb4 = cb4 + bvalue;
739                                 }
740                         }
741                 }
742         }
743
744         // if the player who has a forced team has not joined yet, reserve the spot
745         if(autocvar_g_campaign)
746         {
747                 switch(autocvar_g_campaign_forceteam)
748                 {
749                         case 1: if(c1 == cb1) ++c1; break;
750                         case 2: if(c2 == cb2) ++c2; break;
751                         case 3: if(c3 == cb3) ++c3; break;
752                         case 4: if(c4 == cb4) ++c4; break;
753                 }
754         }
755 }
756
757 // returns # of smallest team (1, 2, 3, 4)
758 // NOTE: Assumes CheckAllowedTeams has already been called!
759 float FindSmallestTeam(entity pl, float ignore_pl)
760 {
761         float totalteams, balance_type, maxc;
762         totalteams = 0;
763
764         // find out what teams are available
765         //CheckAllowedTeams();
766
767         // make sure there are at least 2 teams to join
768         if(c1 >= 0)
769                 totalteams = totalteams + 1;
770         if(c2 >= 0)
771                 totalteams = totalteams + 1;
772         if(c3 >= 0)
773                 totalteams = totalteams + 1;
774         if(c4 >= 0)
775                 totalteams = totalteams + 1;
776
777         if((autocvar_bot_vs_human || pl.team_forced > 0) && totalteams == 1)
778                 totalteams += 1;
779
780         if(totalteams <= 1)
781         {
782                 if(autocvar_g_campaign && pl && clienttype(pl) == CLIENTTYPE_REAL)
783                         return 1; // special case for campaign and player joining
784                 else if(g_domination)
785                         error("Too few teams available for domination\n");
786                 else if(g_ctf)
787                         error("Too few teams available for ctf\n");
788                 else if(g_keyhunt)
789                         error("Too few teams available for key hunt\n");
790                 else if(g_freezetag)
791                         error("Too few teams available for freeze tag\n");
792                 else
793                         error("Too few teams available for team deathmatch\n");
794         }
795
796         // count how many players are in each team
797         if(ignore_pl)
798                 GetTeamCounts(pl);
799         else
800                 GetTeamCounts(world);
801
802         // c1...c4 now have counts of each team
803         // figure out which is smallest, giving priority to the team the player is already on as a tie-breaker
804
805         // 2 gives priority to what team you're already on, 1 goes in order
806         // 2 doesn't seem to work though...
807         balance_type = 1;
808
809         if(bots_would_leave)
810         //if(pl.classname != "player")
811         if(clienttype(pl) != CLIENTTYPE_BOT)
812         {
813                 c1 -= cb1 * 255.0/256.0;
814                 c2 -= cb2 * 255.0/256.0;
815                 c3 -= cb3 * 255.0/256.0;
816                 c4 -= cb4 * 255.0/256.0;
817         }
818         maxc = max4(c1, c2, c3, c4);
819
820         RandomSelection_Init();
821         if(balance_type == 1)
822         {
823                 // 1: use team count, then score (note: can only use 8 significant bits of score)
824                 if(c1 >= 0) RandomSelection_Add(world, 1, string_null, 1, (maxc - c1) + float2range01(-team1_score) / 256.0);
825                 if(c2 >= 0) RandomSelection_Add(world, 2, string_null, 1, (maxc - c2) + float2range01(-team2_score) / 256.0);
826                 if(c3 >= 0) RandomSelection_Add(world, 3, string_null, 1, (maxc - c3) + float2range01(-team3_score) / 256.0);
827                 if(c4 >= 0) RandomSelection_Add(world, 4, string_null, 1, (maxc - c4) + float2range01(-team4_score) / 256.0);
828         }
829         else if(balance_type == 2)
830         {
831                 // 1: use team count, if equal prefer own team
832                 if(c1 >= 0) RandomSelection_Add(world, 1, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM1) / 512.0);
833                 if(c2 >= 0) RandomSelection_Add(world, 2, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM2) / 512.0);
834                 if(c3 >= 0) RandomSelection_Add(world, 3, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM3) / 512.0);
835                 if(c4 >= 0) RandomSelection_Add(world, 4, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM4) / 512.0);
836         }
837         else if(balance_type == 3)
838         {
839                 // 1: use team count, then score, if equal prefer own team (probably fails due to float accuracy problems)
840                 if(c1 >= 0) RandomSelection_Add(world, 1, string_null, 1, (maxc - c1) + float2range01(-team1_score + 0.5 * (self.team == COLOR_TEAM1)) / 256.0);
841                 if(c2 >= 0) RandomSelection_Add(world, 2, string_null, 1, (maxc - c2) + float2range01(-team2_score + 0.5 * (self.team == COLOR_TEAM2)) / 256.0);
842                 if(c3 >= 0) RandomSelection_Add(world, 3, string_null, 1, (maxc - c3) + float2range01(-team3_score + 0.5 * (self.team == COLOR_TEAM3)) / 256.0);
843                 if(c4 >= 0) RandomSelection_Add(world, 4, string_null, 1, (maxc - c4) + float2range01(-team4_score + 0.5 * (self.team == COLOR_TEAM4)) / 256.0);
844         }
845         return RandomSelection_chosen_float;
846 }
847
848 float JoinBestTeam(entity pl, float only_return_best, float forcebestteam)
849 {
850         float smallest, selectedteam;
851
852         // don't join a team if we're not playing a team game
853         if(!teamplay)
854                 return 0;
855
856         // find out what teams are available
857         CheckAllowedTeams(pl);
858
859         // if we don't care what team he ends up on, put him on whatever team he entered as.
860         // if he's not on a valid team, then let other code put him on the smallest team
861         if(!forcebestteam)
862         {
863                 if(     c1 >= 0 && pl.team == COLOR_TEAM1)
864                         selectedteam = pl.team;
865                 else if(c2 >= 0 && pl.team == COLOR_TEAM2)
866                         selectedteam = pl.team;
867                 else if(c3 >= 0 && pl.team == COLOR_TEAM3)
868                         selectedteam = pl.team;
869                 else if(c4 >= 0 && pl.team == COLOR_TEAM4)
870                         selectedteam = pl.team;
871                 else
872                         selectedteam = -1;
873
874                 if(selectedteam > 0)
875                 {
876                         if(!only_return_best)
877                         {
878                                 SetPlayerColors(pl, selectedteam - 1);
879
880                                 // when JoinBestTeam is called by client.qc/ClientKill_Now_TeamChange the players team is -1 and thus skipped
881                                 // when JoinBestTeam is called by cl_client.qc/ClientConnect the player_id is 0 the log attempt is rejected
882                                 LogTeamchange(pl.playerid, pl.team, 99);
883                         }
884                         return selectedteam;
885                 }
886                 // otherwise end up on the smallest team (handled below)
887         }
888
889         smallest = FindSmallestTeam(pl, TRUE);
890
891         if(!only_return_best && !pl.bot_forced_team)
892         {
893                 TeamchangeFrags(self);
894                 if(smallest == 1)
895                 {
896                         SetPlayerColors(pl, COLOR_TEAM1 - 1);
897                 }
898                 else if(smallest == 2)
899                 {
900                         SetPlayerColors(pl, COLOR_TEAM2 - 1);
901                 }
902                 else if(smallest == 3)
903                 {
904                         SetPlayerColors(pl, COLOR_TEAM3 - 1);
905                 }
906                 else if(smallest == 4)
907                 {
908                         SetPlayerColors(pl, COLOR_TEAM4 - 1);
909                 }
910                 else
911                 {
912                         error("smallest team: invalid team\n");
913                 }
914
915                 LogTeamchange(pl.playerid, pl.team, 2); // log auto join
916
917                 if(pl.deadflag == DEAD_NO)
918                         Damage(pl, pl, pl, 100000, DEATH_TEAMCHANGE, pl.origin, '0 0 0');
919         }
920
921         return smallest;
922 }
923
924 //void() ctf_playerchanged;
925 void SV_ChangeTeam(float _color)
926 {
927         float scolor, dcolor, steam, dteam, dbotcount, scount, dcount;
928
929         // in normal deathmatch we can just apply the color and we're done
930         if(!teamplay) {
931                 SetPlayerColors(self, _color);
932                 return;
933         }
934
935         scolor = self.clientcolors & 0x0F;
936         dcolor = _color & 0x0F;
937
938         if(scolor == COLOR_TEAM1 - 1)
939                 steam = 1;
940         else if(scolor == COLOR_TEAM2 - 1)
941                 steam = 2;
942         else if(scolor == COLOR_TEAM3 - 1)
943                 steam = 3;
944         else // if(scolor == COLOR_TEAM4 - 1)
945                 steam = 4;
946         if(dcolor == COLOR_TEAM1 - 1)
947                 dteam = 1;
948         else if(dcolor == COLOR_TEAM2 - 1)
949                 dteam = 2;
950         else if(dcolor == COLOR_TEAM3 - 1)
951                 dteam = 3;
952         else // if(dcolor == COLOR_TEAM4 - 1)
953                 dteam = 4;
954
955         CheckAllowedTeams(self);
956
957         if(dteam == 1 && c1 < 0) dteam = 4;
958         if(dteam == 4 && c4 < 0) dteam = 3;
959         if(dteam == 3 && c3 < 0) dteam = 2;
960         if(dteam == 2 && c2 < 0) dteam = 1;
961
962         // not changing teams
963         if(scolor == dcolor)
964         {
965                 //bprint("same team change\n");
966                 SetPlayerTeam(self, dteam, steam, TRUE);
967                 return;
968         }
969
970         if((autocvar_g_campaign) || (autocvar_g_changeteam_banned && self.wasplayer)) {
971                 sprint(self, "Team changes not allowed\n");
972                 return; // changing teams is not allowed
973         }
974
975         if(autocvar_g_balance_teams_prevent_imbalance)
976         {
977                 // only allow changing to a smaller or equal size team
978
979                 // find out what teams are available
980                 //CheckAllowedTeams();
981                 // count how many players on each team
982                 GetTeamCounts(world);
983
984                 // get desired team
985                 if(dteam == 1 && c1 >= 0)//dcolor == COLOR_TEAM1 - 1)
986                 {
987                         dcount = c1;
988                         dbotcount = cb1;
989                 }
990                 else if(dteam == 2 && c2 >= 0)//dcolor == COLOR_TEAM2 - 1)
991                 {
992                         dcount = c2;
993                         dbotcount = cb2;
994                 }
995                 else if(dteam == 3 && c3 >= 0)//dcolor == COLOR_TEAM3 - 1)
996                 {
997                         dcount = c3;
998                         dbotcount = cb3;
999                 }
1000                 else if(dteam == 4 && c4 >= 0)//dcolor == COLOR_TEAM4 - 1)
1001                 {
1002                         dcount = c4;
1003                         dbotcount = cb4;
1004                 }
1005                 else
1006                 {
1007                         sprint(self, "Cannot change to an invalid team\n");
1008
1009                         return;
1010                 }
1011
1012                 // get starting team
1013                 if(steam == 1)//scolor == COLOR_TEAM1 - 1)
1014                         scount = c1;
1015                 else if(steam == 2)//scolor == COLOR_TEAM2 - 1)
1016                         scount = c2;
1017                 else if(steam == 3)//scolor == COLOR_TEAM3 - 1)
1018                         scount = c3;
1019                 else if(steam == 4)//scolor == COLOR_TEAM4 - 1)
1020                         scount = c4;
1021
1022                 if(scount) // started at a valid, nonempty team
1023                 {
1024                         // check if we're trying to change to a larger team that doens't have bots to swap with
1025                         if(dcount >= scount && dbotcount <= 0)
1026                         {
1027                                 sprint(self, "Cannot change to a larger team\n");
1028                                 return; // can't change to a larger team
1029                         }
1030                 }
1031         }
1032
1033 //      bprint("allow change teams from ", ftos(steam), " to ", ftos(dteam), "\n");
1034
1035         if(self.classname == "player" && steam != dteam)
1036         {
1037                 // reduce frags during a team change
1038                 TeamchangeFrags(self);
1039         }
1040
1041         SetPlayerTeam(self, dteam, steam, FALSE);
1042
1043         if(self.classname == "player" && steam != dteam)
1044         {
1045                 // kill player when changing teams
1046                 if(self.deadflag == DEAD_NO)
1047                         Damage(self, self, self, 100000, DEATH_TEAMCHANGE, self.origin, '0 0 0');
1048         }
1049         //ctf_playerchanged();
1050 }
1051
1052 void ShufflePlayerOutOfTeam (float source_team)
1053 {
1054         float smallestteam, smallestteam_count, steam;
1055         float lowest_bot_score, lowest_player_score;
1056         entity head, lowest_bot, lowest_player, selected;
1057
1058         smallestteam = 0;
1059         smallestteam_count = 999999999;
1060
1061         if(c1 >= 0 && c1 < smallestteam_count)
1062         {
1063                 smallestteam = 1;
1064                 smallestteam_count = c1;
1065         }
1066         if(c2 >= 0 && c2 < smallestteam_count)
1067         {
1068                 smallestteam = 2;
1069                 smallestteam_count = c2;
1070         }
1071         if(c3 >= 0 && c3 < smallestteam_count)
1072         {
1073                 smallestteam = 3;
1074                 smallestteam_count = c3;
1075         }
1076         if(c4 >= 0 && c4 < smallestteam_count)
1077         {
1078                 smallestteam = 4;
1079                 smallestteam_count = c4;
1080         }
1081
1082         if(!smallestteam)
1083         {
1084                 bprint("warning: no smallest team\n");
1085                 return;
1086         }
1087
1088         if(source_team == 1)
1089                 steam = COLOR_TEAM1;
1090         else if(source_team == 2)
1091                 steam = COLOR_TEAM2;
1092         else if(source_team == 3)
1093                 steam = COLOR_TEAM3;
1094         else if(source_team == 4)
1095                 steam = COLOR_TEAM4;
1096
1097         lowest_bot = world;
1098         lowest_bot_score = 999999999;
1099         lowest_player = world;
1100         lowest_player_score = 999999999;
1101
1102         // find the lowest-scoring player & bot of that team
1103         FOR_EACH_PLAYER(head)
1104         {
1105                 if(head.team == steam)
1106                 {
1107                         if(head.isbot)
1108                         {
1109                                 if(head.totalfrags < lowest_bot_score)
1110                                 {
1111                                         lowest_bot = head;
1112                                         lowest_bot_score = head.totalfrags;
1113                                 }
1114                         }
1115                         else
1116                         {
1117                                 if(head.totalfrags < lowest_player_score)
1118                                 {
1119                                         lowest_player = head;
1120                                         lowest_player_score = head.totalfrags;
1121                                 }
1122                         }
1123                 }
1124         }
1125
1126         // prefers to move a bot...
1127         if(lowest_bot != world)
1128                 selected = lowest_bot;
1129         // but it will move a player if it has to
1130         else
1131                 selected = lowest_player;
1132         // don't do anything if it couldn't find anyone
1133         if(!selected)
1134         {
1135                 bprint("warning: couldn't find a player to move from team\n");
1136                 return;
1137         }
1138
1139         // smallest team gains a member
1140         if(smallestteam == 1)
1141         {
1142                 c1 = c1 + 1;
1143         }
1144         else if(smallestteam == 2)
1145         {
1146                 c2 = c2 + 1;
1147         }
1148         else if(smallestteam == 3)
1149         {
1150                 c3 = c3 + 1;
1151         }
1152         else if(smallestteam == 4)
1153         {
1154                 c4 = c4 + 1;
1155         }
1156         else
1157         {
1158                 bprint("warning: destination team invalid\n");
1159                 return;
1160         }
1161         // source team loses a member
1162         if(source_team == 1)
1163         {
1164                 c1 = c1 + 1;
1165         }
1166         else if(source_team == 2)
1167         {
1168                 c2 = c2 + 2;
1169         }
1170         else if(source_team == 3)
1171         {
1172                 c3 = c3 + 3;
1173         }
1174         else if(source_team == 4)
1175         {
1176                 c4 = c4 + 4;
1177         }
1178         else
1179         {
1180                 bprint("warning: source team invalid\n");
1181                 return;
1182         }
1183
1184         // move the player to the new team
1185         TeamchangeFrags(selected);
1186         SetPlayerTeam(selected, smallestteam, source_team, FALSE);
1187
1188         if(selected.deadflag == DEAD_NO)
1189                 Damage(selected, selected, selected, 100000, DEATH_AUTOTEAMCHANGE, selected.origin, '0 0 0');
1190         centerprint(selected, strcat("You have been moved into a different team to improve team balance\nYou are now on: ", ColoredTeamName(selected.team)));
1191 }
1192
1193 void CauseRebalance(float source_team, float howmany_toomany)
1194 {
1195         if(IsTeamBalanceForced() == 1)
1196         {
1197                 bprint("Rebalancing Teams\n");
1198                 ShufflePlayerOutOfTeam(source_team);
1199         }
1200 }
1201
1202 // part of g_balance_teams_force
1203 // occasionally perform an audit of the teams to make
1204 // sure they're more or less balanced in player count.
1205 void AuditTeams()
1206 {
1207         float numplayers, numteams, smallest, toomany;
1208         float balance;
1209         balance = IsTeamBalanceForced();
1210         if(balance == 0)
1211                 return;
1212
1213         if(audit_teams_time > time)
1214                 return;
1215
1216         audit_teams_time = time + 4 + random();
1217
1218 //      bprint("Auditing teams\n");
1219
1220         CheckAllowedTeams(world);
1221         GetTeamCounts(world);
1222
1223
1224         numteams = numplayers = smallest = 0;
1225         if(c1 >= 0)
1226         {
1227                 numteams = numteams + 1;
1228                 numplayers = numplayers + c1;
1229                 smallest = c1;
1230         }
1231         if(c2 >= 0)
1232         {
1233                 numteams = numteams + 1;
1234                 numplayers = numplayers + c2;
1235                 if(c2 < smallest)
1236                         smallest = c2;
1237         }
1238         if(c3 >= 0)
1239         {
1240                 numteams = numteams + 1;
1241                 numplayers = numplayers + c3;
1242                 if(c3 < smallest)
1243                         smallest = c3;
1244         }
1245         if(c4 >= 0)
1246         {
1247                 numteams = numteams + 1;
1248                 numplayers = numplayers + c4;
1249                 if(c4 < smallest)
1250                         smallest = c4;
1251         }
1252
1253         if(numplayers <= 0)
1254                 return; // no players to move around
1255         if(numteams < 2)
1256                 return; // don't bother shuffling if for some reason there aren't any teams
1257
1258         toomany = smallest + 1;
1259
1260         if(c1 && c1 > toomany)
1261                 CauseRebalance(1, c1 - toomany);
1262         if(c2 && c2 > toomany)
1263                 CauseRebalance(2, c2 - toomany);
1264         if(c3 && c3 > toomany)
1265                 CauseRebalance(3, c3 - toomany);
1266         if(c4 && c4 > toomany)
1267                 CauseRebalance(4, c4 - toomany);
1268
1269         // if teams are still unbalanced, balance them further in the next audit,
1270         // which will happen sooner (keep doing rapid audits until things are in order)
1271         audit_teams_time = time + 0.7 + random()*0.3;
1272 }
1273
1274 // code from here on is just to support maps that don't have team entities
1275 void tdm_spawnteam (string teamname, float teamcolor)
1276 {
1277         entity e;
1278         e = spawn();
1279         e.classname = "tdm_team";
1280         e.netname = teamname;
1281         e.cnt = teamcolor;
1282         e.team = e.cnt + 1;
1283 }
1284
1285 // spawn some default teams if the map is not set up for tdm
1286 void tdm_spawnteams()
1287 {
1288         float numteams;
1289
1290         numteams = autocvar_g_tdm_teams_override;
1291         if(numteams < 2)
1292                 numteams = autocvar_g_tdm_teams;
1293         numteams = bound(2, numteams, 4);
1294
1295         tdm_spawnteam("Red", COLOR_TEAM1-1);
1296         tdm_spawnteam("Blue", COLOR_TEAM2-1);
1297         if(numteams >= 3)
1298                 tdm_spawnteam("Yellow", COLOR_TEAM3-1);
1299         if(numteams >= 4)
1300                 tdm_spawnteam("Pink", COLOR_TEAM4-1);
1301 }
1302
1303 void tdm_delayedinit()
1304 {
1305         // if no teams are found, spawn defaults
1306         if (find(world, classname, "tdm_team") == world)
1307                 tdm_spawnteams();
1308 }
1309
1310 void tdm_init()
1311 {
1312         InitializeEntity(world, tdm_delayedinit, INITPRIO_GAMETYPE);
1313 }