]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/teamplay.qc
Merge branch 'master' into Mario/domination_roundbased
[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 void TeamchangeFrags(entity e)
12 {
13         PlayerScore_Clear(e);
14 }
15
16 void tdm_init();
17 void entcs_init();
18
19 void LogTeamchange(float player_id, float team_number, float type)
20 {
21         if(!autocvar_sv_eventlog)
22                 return;
23
24         if(player_id < 1)
25                 return;
26
27         GameLogEcho(strcat(":team:", ftos(player_id), ":", ftos(team_number), ":", ftos(type)));
28 }
29
30 void default_delayedinit()
31 {
32         if(!scores_initialized)
33                 ScoreRules_generic();
34 }
35
36 void ActivateTeamplay()
37 {
38         serverflags |= SERVERFLAG_TEAMPLAY;
39         teamplay = 1;
40 }
41
42 void InitGameplayMode()
43 {
44         float fraglimit_override, timelimit_override, leadlimit_override, qualifying_override;
45
46         qualifying_override = -1;
47
48         VoteReset();
49
50         // find out good world mins/maxs bounds, either the static bounds found by looking for solid, or the mapinfo specified bounds
51         get_mi_min_max(1);
52         world.mins = mi_min;
53         world.maxs = mi_max;
54
55         MapInfo_LoadMapSettings(mapname);
56         teamplay = 0;
57         serverflags &= ~SERVERFLAG_TEAMPLAY;
58
59         if (!cvar_value_issafe(world.fog))
60         {
61                 print("The current map contains a potentially harmful fog setting, ignored\n");
62                 world.fog = string_null;
63         }
64         if(MapInfo_Map_fog != "")
65                 if(MapInfo_Map_fog == "none")
66                         world.fog = string_null;
67                 else
68                         world.fog = strzone(MapInfo_Map_fog);
69         clientstuff = strzone(MapInfo_Map_clientstuff);
70
71         MapInfo_ClearTemps();
72
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);
78
79         if(g_dm)
80         {
81         }
82
83         if(g_tdm)
84         {
85                 ActivateTeamplay();
86                 tdm_init();
87                 if(autocvar_g_tdm_team_spawns)
88                         have_team_spawns = -1; // request team spawns
89         }
90
91         if(g_domination)
92         {
93                 ActivateTeamplay();
94                 fraglimit_override = autocvar_g_domination_point_limit;
95                 leadlimit_override = autocvar_g_domination_point_leadlimit;
96                 MUTATOR_ADD(gamemode_domination);
97
98                 if(autocvar_g_domination_roundbased && autocvar_g_domination_roundbased_point_limit)
99                         fraglimit_override = autocvar_g_domination_roundbased_point_limit;
100
101                 have_team_spawns = -1; // request team spawns
102         }
103
104         if(g_ctf)
105         {
106                 ActivateTeamplay();
107                 fraglimit_override = autocvar_capturelimit_override;
108                 leadlimit_override = autocvar_captureleadlimit_override;
109                 MUTATOR_ADD(gamemode_ctf);
110                 have_team_spawns = -1; // request team spawns
111         }
112
113         if(g_lms)
114         {
115                 fraglimit_override = autocvar_g_lms_lives_override;
116                 leadlimit_override = 0; // not supported by LMS
117                 if(fraglimit_override == 0)
118                         fraglimit_override = -1;
119                 MUTATOR_ADD(gamemode_lms);
120         }
121
122         if(g_ca)
123         {
124                 ActivateTeamplay();
125                 fraglimit_override = autocvar_g_ca_point_limit;
126                 leadlimit_override = autocvar_g_ca_point_leadlimit;
127                 MUTATOR_ADD(gamemode_ca);
128                 if(autocvar_g_ca_team_spawns)
129                         have_team_spawns = -1; // request team spawns
130         }
131
132         if(g_keyhunt)
133         {
134                 ActivateTeamplay();
135                 fraglimit_override = autocvar_g_keyhunt_point_limit;
136                 leadlimit_override = autocvar_g_keyhunt_point_leadlimit;
137                 MUTATOR_ADD(gamemode_keyhunt);
138         }
139
140         if(g_freezetag)
141         {
142                 ActivateTeamplay();
143                 fraglimit_override = autocvar_g_freezetag_point_limit;
144                 leadlimit_override = autocvar_g_freezetag_point_leadlimit;
145                 MUTATOR_ADD(gamemode_freezetag);
146                 if(autocvar_g_freezetag_team_spawns)
147                         have_team_spawns = -1; // request team spawns
148         }
149
150         if(g_assault)
151         {
152                 ActivateTeamplay();
153                 MUTATOR_ADD(gamemode_assault);
154                 have_team_spawns = -1; // request team spawns
155         }
156
157         if(g_onslaught)
158         {
159                 ActivateTeamplay();
160                 have_team_spawns = -1; // request team spawns
161                 MUTATOR_ADD(gamemode_onslaught);
162         }
163
164         if(g_race)
165         {
166                 if(autocvar_g_race_teams)
167                 {
168                         ActivateTeamplay();
169                         race_teams = bound(2, autocvar_g_race_teams, 4);
170                         have_team_spawns = -1; // request team spawns
171                 }
172                 else
173                         race_teams = 0;
174
175                 qualifying_override = autocvar_g_race_qualifying_timelimit_override;
176                 fraglimit_override = autocvar_g_race_laps_limit;
177                 leadlimit_override = 0; // currently not supported by race
178
179                 MUTATOR_ADD(gamemode_race);
180         }
181
182         if(g_cts)
183         {
184                 g_race_qualifying = 1;
185                 fraglimit_override = 0;
186                 leadlimit_override = 0;
187                 MUTATOR_ADD(gamemode_cts);
188         }
189
190         if(g_nexball)
191         {
192         fraglimit_override = autocvar_g_nexball_goallimit;
193         leadlimit_override = autocvar_g_nexball_goalleadlimit;
194         ActivateTeamplay();
195         have_team_spawns = -1; // request team spawns
196             MUTATOR_ADD(gamemode_nexball);
197         }
198
199         if(g_keepaway)
200         {
201                 MUTATOR_ADD(gamemode_keepaway);
202         }
203
204         if(g_invasion)
205         {
206                 fraglimit_override = autocvar_g_invasion_point_limit;
207                 if(autocvar_g_invasion_teams >= 2)
208                 {
209                         ActivateTeamplay();
210                         if(autocvar_g_invasion_team_spawns)
211                                 have_team_spawns = -1; // request team spawns
212                 }
213                 MUTATOR_ADD(gamemode_invasion);
214         }
215
216         if(teamplay)
217                 entcs_init();
218
219         cache_mutatormsg = strzone("");
220         cache_lastmutatormsg = strzone("");
221
222         // enforce the server's universal frag/time limits
223         if(!autocvar_g_campaign)
224         {
225                 if(fraglimit_override >= 0)
226                         cvar_set("fraglimit", ftos(fraglimit_override));
227                 if(timelimit_override >= 0)
228                         cvar_set("timelimit", ftos(timelimit_override));
229                 if(leadlimit_override >= 0)
230                         cvar_set("leadlimit", ftos(leadlimit_override));
231                 if(qualifying_override >= 0)
232                         cvar_set("g_race_qualifying_timelimit", ftos(qualifying_override));
233         }
234
235         if(g_race)
236         {
237                 // we need to find out the correct value for g_race_qualifying
238                 if(autocvar_g_campaign)
239                 {
240                         g_race_qualifying = 1;
241                 }
242                 else if(!autocvar_g_campaign && autocvar_g_race_qualifying_timelimit > 0)
243                 {
244                         g_race_qualifying = 2;
245                         race_fraglimit = autocvar_fraglimit;
246                         race_leadlimit = autocvar_leadlimit;
247                         race_timelimit = autocvar_timelimit;
248                         cvar_set("fraglimit", "0");
249                         cvar_set("leadlimit", "0");
250                         cvar_set("timelimit", ftos(autocvar_g_race_qualifying_timelimit));
251                 }
252                 else
253                         g_race_qualifying = 0;
254         }
255
256         if(g_race || g_cts)
257         if(g_race_qualifying)
258                 independent_players = 1;
259
260         InitializeEntity(world, default_delayedinit, INITPRIO_GAMETYPE_FALLBACK);
261 }
262
263 string GetClientVersionMessage() {
264         string versionmsg;
265         if (self.version_mismatch) {
266                 if(self.version < autocvar_gameversion) {
267                         versionmsg = "^3Your client version is outdated.\n\n\n### YOU WON'T BE ABLE TO PLAY ON THIS SERVER ###\n\n\nPlease update!!!^8";
268                 } else {
269                         versionmsg = "^3This server is using an outdated Xonotic version.\n\n\n ### THIS SERVER IS INCOMPATIBLE AND THUS YOU CANNOT JOIN ###.^8";
270                 }
271         } else {
272                 versionmsg = "^2client version and server version are compatible.^8";
273         }
274         return versionmsg;
275 }
276
277 string getwelcomemessage(void)
278 {
279         string s, modifications, motd;
280
281         ret_string = "";
282         MUTATOR_CALLHOOK(BuildMutatorsPrettyString);
283         modifications = ret_string;
284
285         if(g_weaponarena)
286         {
287                 if(g_weaponarena_random)
288                         modifications = strcat(modifications, ", ", ftos(g_weaponarena_random), " of ", g_weaponarena_list, " Arena");
289                 else
290                         modifications = strcat(modifications, ", ", g_weaponarena_list, " Arena");
291         }
292         if(autocvar_g_start_weapon_laser == 0)
293                 modifications = strcat(modifications, ", No start weapons");
294         if(cvar("sv_gravity") < stof(cvar_defstring("sv_gravity")))
295                 modifications = strcat(modifications, ", Low gravity");
296         if(g_cloaked && !g_cts)
297                 modifications = strcat(modifications, ", Cloaked");
298         if(g_grappling_hook)
299                 modifications = strcat(modifications, ", Hook");
300         if(g_weapon_stay && !g_cts)
301                 modifications = strcat(modifications, ", Weapons stay");
302         if(g_jetpack)
303                 modifications = strcat(modifications, ", Jet pack");
304         if(autocvar_g_powerups == 0)
305                 modifications = strcat(modifications, ", No powerups");
306         if(autocvar_g_powerups > 0)
307                 modifications = strcat(modifications, ", Powerups");
308         modifications = substring(modifications, 2, strlen(modifications) - 2);
309
310         string versionmessage;
311         versionmessage = GetClientVersionMessage();
312
313         s = strcat("This is Xonotic ", autocvar_g_xonoticversion, "\n", versionmessage);
314         s = strcat(s, "^8\n\nmatch type is ^1", gamemode_name, "^8\n");
315
316         if(modifications != "")
317                 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
318
319         if (g_grappling_hook)
320                 s = strcat(s, "\n\n^3grappling hook^8 is enabled, press 'e' to use it\n");
321
322         if(cache_lastmutatormsg != autocvar_g_mutatormsg)
323         {
324                 if(cache_lastmutatormsg)
325                         strunzone(cache_lastmutatormsg);
326                 if(cache_mutatormsg)
327                         strunzone(cache_mutatormsg);
328                 cache_lastmutatormsg = strzone(autocvar_g_mutatormsg);
329                 cache_mutatormsg = strzone(cache_lastmutatormsg);
330         }
331
332         if (cache_mutatormsg != "") {
333                 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
334         }
335
336         motd = autocvar_sv_motd;
337         if (motd != "") {
338                 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
339         }
340         return s;
341 }
342
343 void SetPlayerColors(entity pl, float _color)
344 {
345         /*string s;
346         s = ftos(cl);
347         stuffcmd(pl, strcat("color ", s, " ", s, "\n")  );
348         pl.team = cl + 1;
349         //pl.clientcolors = pl.clientcolors - (pl.clientcolors & 15) + cl;
350         pl.clientcolors = 16*cl + cl;*/
351
352         float pants, shirt;
353         pants = _color & 0x0F;
354         shirt = _color & 0xF0;
355
356
357         if(teamplay) {
358                 setcolor(pl, 16*pants + pants);
359         } else {
360                 setcolor(pl, shirt + pants);
361         }
362 }
363
364 void SetPlayerTeam(entity pl, float t, float s, float noprint)
365 {
366         float _color;
367
368         if(t == 4)
369                 _color = NUM_TEAM_4 - 1;
370         else if(t == 3)
371                 _color = NUM_TEAM_3 - 1;
372         else if(t == 2)
373                 _color = NUM_TEAM_2 - 1;
374         else
375                 _color = NUM_TEAM_1 - 1;
376
377         SetPlayerColors(pl,_color);
378
379         if(t != s) {
380                 LogTeamchange(pl.playerid, pl.team, 3);  // log manual team join
381
382                 if(!noprint)
383                 bprint(pl.netname, "^7 has changed from ", Team_NumberToColoredFullName(s), "^7 to ", Team_NumberToColoredFullName(t), "\n");
384         }
385
386 }
387
388 // set c1...c4 to show what teams are allowed
389 void CheckAllowedTeams (entity for_whom)
390 {
391         float dm;
392         entity head;
393         string teament_name;
394
395         c1 = c2 = c3 = c4 = -1;
396         cb1 = cb2 = cb3 = cb4 = 0;
397
398         teament_name = string_null;
399         if(g_onslaught)
400         {
401                 // onslaught is special
402                 head = findchain(classname, "onslaught_generator");
403                 while (head)
404                 {
405                         if (head.team == NUM_TEAM_1) c1 = 0;
406                         if (head.team == NUM_TEAM_2) c2 = 0;
407                         if (head.team == NUM_TEAM_3) c3 = 0;
408                         if (head.team == NUM_TEAM_4) c4 = 0;
409                         head = head.chain;
410                 }
411         }
412         else if(g_domination)
413                 teament_name = "dom_team";
414         else if(g_ctf)
415                 teament_name = "ctf_team";
416         else if(g_tdm)
417                 teament_name = "tdm_team";
418         else if(g_nexball)
419                 teament_name = "nexball_team";
420         else if(g_assault)
421                 c1 = c2 = 0; // Assault always has 2 teams
422         else
423         {
424                 // cover anything else by treating it like tdm with no teams spawned
425                 dm = 2;
426
427                 ret_float = dm;
428                 MUTATOR_CALLHOOK(GetTeamCount);
429                 dm = ret_float;
430
431                 if(dm >= 4)
432                         c1 = c2 = c3 = c4 = 0;
433                 else if(dm >= 3)
434                         c1 = c2 = c3 = 0;
435                 else
436                         c1 = c2 = 0;
437         }
438
439         // find out what teams are allowed if necessary
440         if(teament_name)
441         {
442                 head = find(world, classname, teament_name);
443                 while(head)
444                 {
445                         if(!(g_domination && head.netname == ""))
446                         {
447                                 if(head.team == NUM_TEAM_1)
448                                         c1 = 0;
449                                 else if(head.team == NUM_TEAM_2)
450                                         c2 = 0;
451                                 else if(head.team == NUM_TEAM_3)
452                                         c3 = 0;
453                                 else if(head.team == NUM_TEAM_4)
454                                         c4 = 0;
455                         }
456                         head = find(head, classname, teament_name);
457                 }
458         }
459
460         // TODO: Balance quantity of bots across > 2 teams when bot_vs_human is set (and remove next line)
461         if(c3==-1 && c4==-1)
462         if(autocvar_bot_vs_human && for_whom)
463         {
464                 if(autocvar_bot_vs_human > 0)
465                 {
466                         // bots are all blue
467                         if(IS_BOT_CLIENT(for_whom))
468                                 c1 = c3 = c4 = -1;
469                         else
470                                 c2 = -1;
471                 }
472                 else
473                 {
474                         // bots are all red
475                         if(IS_BOT_CLIENT(for_whom))
476                                 c2 = c3 = c4 = -1;
477                         else
478                                 c1 = -1;
479                 }
480         }
481
482         // if player has a forced team, ONLY allow that one
483         if(self.team_forced == NUM_TEAM_1 && c1 >= 0)
484                 c2 = c3 = c4 = -1;
485         else if(self.team_forced == NUM_TEAM_2 && c2 >= 0)
486                 c1 = c3 = c4 = -1;
487         else if(self.team_forced == NUM_TEAM_3 && c3 >= 0)
488                 c1 = c2 = c4 = -1;
489         else if(self.team_forced == NUM_TEAM_4 && c4 >= 0)
490                 c1 = c2 = c3 = -1;
491 }
492
493 float PlayerValue(entity p)
494 {
495         return 1;
496         // FIXME: it always returns 1...
497 }
498
499 // c1...c4 should be set to -1 (not allowed) or 0 (allowed).
500 // teams that are allowed will now have their player counts stored in c1...c4
501 void GetTeamCounts(entity ignore)
502 {
503         entity head;
504         float value, bvalue;
505         // now count how many players are on each team already
506
507         // FIXME: also find and memorize the lowest-scoring bot on each team (in case players must be shuffled around)
508         // also remember the lowest-scoring player
509
510         FOR_EACH_CLIENT(head)
511         {
512                 float t;
513                 if(IS_PLAYER(head))
514                         t = head.team;
515                 else if(head.team_forced > 0)
516                         t = head.team_forced; // reserve the spot
517                 else
518                         continue;
519                 if(head != ignore)// && head.netname != "")
520                 {
521                         value = PlayerValue(head);
522                         if(IS_BOT_CLIENT(head))
523                                 bvalue = value;
524                         else
525                                 bvalue = 0;
526                         if(t == NUM_TEAM_1)
527                         {
528                                 if(c1 >= 0)
529                                 {
530                                         c1 = c1 + value;
531                                         cb1 = cb1 + bvalue;
532                                 }
533                         }
534                         if(t == NUM_TEAM_2)
535                         {
536                                 if(c2 >= 0)
537                                 {
538                                         c2 = c2 + value;
539                                         cb2 = cb2 + bvalue;
540                                 }
541                         }
542                         if(t == NUM_TEAM_3)
543                         {
544                                 if(c3 >= 0)
545                                 {
546                                         c3 = c3 + value;
547                                         cb3 = cb3 + bvalue;
548                                 }
549                         }
550                         if(t == NUM_TEAM_4)
551                         {
552                                 if(c4 >= 0)
553                                 {
554                                         c4 = c4 + value;
555                                         cb4 = cb4 + bvalue;
556                                 }
557                         }
558                 }
559         }
560
561         // if the player who has a forced team has not joined yet, reserve the spot
562         if(autocvar_g_campaign)
563         {
564                 switch(autocvar_g_campaign_forceteam)
565                 {
566                         case 1: if(c1 == cb1) ++c1; break;
567                         case 2: if(c2 == cb2) ++c2; break;
568                         case 3: if(c3 == cb3) ++c3; break;
569                         case 4: if(c4 == cb4) ++c4; break;
570                 }
571         }
572 }
573
574 float TeamSmallerEqThanTeam(float ta, float tb, entity e)
575 {
576         // we assume that CheckAllowedTeams and GetTeamCounts have already been called
577         float f;
578         float ca = -1, cb = -1, cba = 0, cbb = 0, sa = 0, sb = 0;
579
580         switch(ta)
581         {
582                 case 1: ca = c1; cba = cb1; sa = team1_score; break;
583                 case 2: ca = c2; cba = cb2; sa = team2_score; break;
584                 case 3: ca = c3; cba = cb3; sa = team3_score; break;
585                 case 4: ca = c4; cba = cb4; sa = team4_score; break;
586         }
587         switch(tb)
588         {
589                 case 1: cb = c1; cbb = cb1; sb = team1_score; break;
590                 case 2: cb = c2; cbb = cb2; sb = team2_score; break;
591                 case 3: cb = c3; cbb = cb3; sb = team3_score; break;
592                 case 4: cb = c4; cbb = cb4; sb = team4_score; break;
593         }
594
595         // invalid
596         if(ca < 0 || cb < 0)
597                 return FALSE;
598
599         // equal
600         if(ta == tb)
601                 return TRUE;
602
603         if(IS_REAL_CLIENT(e))
604         {
605                 if(bots_would_leave)
606                 {
607                         ca -= cba * 0.999;
608                         cb -= cbb * 0.999;
609                 }
610         }
611
612         // keep teams alive (teams of size 0 always count as smaller, ignoring score)
613         if(ca < 1)
614                 if(cb >= 1)
615                         return TRUE;
616         if(ca >= 1)
617                 if(cb < 1)
618                         return FALSE;
619
620         // first, normalize
621         f = max(ca, cb, 1);
622         ca /= f;
623         cb /= f;
624         f = max(sa, sb, 1);
625         sa /= f;
626         sb /= f;
627
628         // the more we're at the end of the match, the more take scores into account
629         f = bound(0, game_completion_ratio * autocvar_g_balance_teams_scorefactor, 1);
630         ca += (sa - ca) * f;
631         cb += (sb - cb) * f;
632
633         return ca <= cb;
634 }
635
636 // returns # of smallest team (1, 2, 3, 4)
637 // NOTE: Assumes CheckAllowedTeams has already been called!
638 float FindSmallestTeam(entity pl, float ignore_pl)
639 {
640         float totalteams, t;
641         totalteams = 0;
642
643         // find out what teams are available
644         //CheckAllowedTeams();
645
646         // make sure there are at least 2 teams to join
647         if(c1 >= 0)
648                 totalteams = totalteams + 1;
649         if(c2 >= 0)
650                 totalteams = totalteams + 1;
651         if(c3 >= 0)
652                 totalteams = totalteams + 1;
653         if(c4 >= 0)
654                 totalteams = totalteams + 1;
655
656         if((autocvar_bot_vs_human || pl.team_forced > 0) && totalteams == 1)
657                 totalteams += 1;
658
659         if(totalteams <= 1)
660         {
661                 if(autocvar_g_campaign && pl && IS_REAL_CLIENT(pl))
662                         return 1; // special case for campaign and player joining
663                 else if(g_domination)
664                         error("Too few teams available for domination\n");
665                 else if(g_ctf)
666                         error("Too few teams available for ctf\n");
667                 else if(g_keyhunt)
668                         error("Too few teams available for key hunt\n");
669                 else if(g_freezetag)
670                         error("Too few teams available for freeze tag\n");
671                 else
672                         error("Too few teams available for team deathmatch\n");
673         }
674
675         // count how many players are in each team
676         if(ignore_pl)
677                 GetTeamCounts(pl);
678         else
679                 GetTeamCounts(world);
680
681         RandomSelection_Init();
682
683         t = 1;
684         if(TeamSmallerEqThanTeam(2, t, pl))
685                 t = 2;
686         if(TeamSmallerEqThanTeam(3, t, pl))
687                 t = 3;
688         if(TeamSmallerEqThanTeam(4, t, pl))
689                 t = 4;
690
691         // now t is the minimum, or A minimum!
692         if(t == 1 || TeamSmallerEqThanTeam(1, t, pl))
693                 RandomSelection_Add(world, 1, string_null, 1, 1);
694         if(t == 2 || TeamSmallerEqThanTeam(2, t, pl))
695                 RandomSelection_Add(world, 2, string_null, 1, 1);
696         if(t == 3 || TeamSmallerEqThanTeam(3, t, pl))
697                 RandomSelection_Add(world, 3, string_null, 1, 1);
698         if(t == 4 || TeamSmallerEqThanTeam(4, t, pl))
699                 RandomSelection_Add(world, 4, string_null, 1, 1);
700
701         return RandomSelection_chosen_float;
702 }
703
704 float JoinBestTeam(entity pl, float only_return_best, float forcebestteam)
705 {
706         float smallest, selectedteam;
707
708         // don't join a team if we're not playing a team game
709         if(!teamplay)
710                 return 0;
711
712         // find out what teams are available
713         CheckAllowedTeams(pl);
714
715         // if we don't care what team he ends up on, put him on whatever team he entered as.
716         // if he's not on a valid team, then let other code put him on the smallest team
717         if(!forcebestteam)
718         {
719                 if(     c1 >= 0 && pl.team == NUM_TEAM_1)
720                         selectedteam = pl.team;
721                 else if(c2 >= 0 && pl.team == NUM_TEAM_2)
722                         selectedteam = pl.team;
723                 else if(c3 >= 0 && pl.team == NUM_TEAM_3)
724                         selectedteam = pl.team;
725                 else if(c4 >= 0 && pl.team == NUM_TEAM_4)
726                         selectedteam = pl.team;
727                 else
728                         selectedteam = -1;
729
730                 if(selectedteam > 0)
731                 {
732                         if(!only_return_best)
733                         {
734                                 SetPlayerColors(pl, selectedteam - 1);
735
736                                 // when JoinBestTeam is called by client.qc/ClientKill_Now_TeamChange the players team is -1 and thus skipped
737                                 // when JoinBestTeam is called by cl_client.qc/ClientConnect the player_id is 0 the log attempt is rejected
738                                 LogTeamchange(pl.playerid, pl.team, 99);
739                         }
740                         return selectedteam;
741                 }
742                 // otherwise end up on the smallest team (handled below)
743         }
744
745         smallest = FindSmallestTeam(pl, TRUE);
746
747         if(!only_return_best && !pl.bot_forced_team)
748         {
749                 TeamchangeFrags(self);
750                 if(smallest == 1)
751                 {
752                         SetPlayerColors(pl, NUM_TEAM_1 - 1);
753                 }
754                 else if(smallest == 2)
755                 {
756                         SetPlayerColors(pl, NUM_TEAM_2 - 1);
757                 }
758                 else if(smallest == 3)
759                 {
760                         SetPlayerColors(pl, NUM_TEAM_3 - 1);
761                 }
762                 else if(smallest == 4)
763                 {
764                         SetPlayerColors(pl, NUM_TEAM_4 - 1);
765                 }
766                 else
767                 {
768                         error("smallest team: invalid team\n");
769                 }
770
771                 LogTeamchange(pl.playerid, pl.team, 2); // log auto join
772
773                 if(pl.deadflag == DEAD_NO)
774                         Damage(pl, pl, pl, 100000, DEATH_TEAMCHANGE, pl.origin, '0 0 0');
775         }
776
777         return smallest;
778 }
779
780 //void() ctf_playerchanged;
781 void SV_ChangeTeam(float _color)
782 {
783         float scolor, dcolor, steam, dteam; //, dbotcount, scount, dcount;
784
785         // in normal deathmatch we can just apply the color and we're done
786         if(!teamplay) {
787                 SetPlayerColors(self, _color);
788                 return;
789         }
790
791         scolor = self.clientcolors & 0x0F;
792         dcolor = _color & 0x0F;
793
794         if(scolor == NUM_TEAM_1 - 1)
795                 steam = 1;
796         else if(scolor == NUM_TEAM_2 - 1)
797                 steam = 2;
798         else if(scolor == NUM_TEAM_3 - 1)
799                 steam = 3;
800         else // if(scolor == NUM_TEAM_4 - 1)
801                 steam = 4;
802         if(dcolor == NUM_TEAM_1 - 1)
803                 dteam = 1;
804         else if(dcolor == NUM_TEAM_2 - 1)
805                 dteam = 2;
806         else if(dcolor == NUM_TEAM_3 - 1)
807                 dteam = 3;
808         else // if(dcolor == NUM_TEAM_4 - 1)
809                 dteam = 4;
810
811         CheckAllowedTeams(self);
812
813         if(dteam == 1 && c1 < 0) dteam = 4;
814         if(dteam == 4 && c4 < 0) dteam = 3;
815         if(dteam == 3 && c3 < 0) dteam = 2;
816         if(dteam == 2 && c2 < 0) dteam = 1;
817
818         // not changing teams
819         if(scolor == dcolor)
820         {
821                 //bprint("same team change\n");
822                 SetPlayerTeam(self, dteam, steam, TRUE);
823                 return;
824         }
825
826         if((autocvar_g_campaign) || (autocvar_g_changeteam_banned && self.wasplayer)) {
827                 sprint(self, "Team changes not allowed\n");
828                 return; // changing teams is not allowed
829         }
830
831         // autocvar_g_balance_teams_prevent_imbalance only makes sense if autocvar_g_balance_teams is on, as it makes the team selection dialog pointless
832         if(autocvar_g_balance_teams && autocvar_g_balance_teams_prevent_imbalance)
833         {
834                 GetTeamCounts(self);
835                 if(!TeamSmallerEqThanTeam(dteam, steam, self))
836                 {
837                         sprint(self, "Cannot change to a larger/better/shinier team\n");
838                         return;
839                 }
840         }
841
842 //      bprint("allow change teams from ", ftos(steam), " to ", ftos(dteam), "\n");
843
844         if(IS_PLAYER(self) && steam != dteam)
845         {
846                 // reduce frags during a team change
847                 TeamchangeFrags(self);
848         }
849
850         SetPlayerTeam(self, dteam, steam, FALSE);
851
852         if(IS_PLAYER(self) && steam != dteam)
853         {
854                 // kill player when changing teams
855                 if(self.deadflag == DEAD_NO)
856                         Damage(self, self, self, 100000, DEATH_TEAMCHANGE, self.origin, '0 0 0');
857         }
858 }
859
860 void ShufflePlayerOutOfTeam (float source_team)
861 {
862         float smallestteam, smallestteam_count, steam;
863         float lowest_bot_score, lowest_player_score;
864         entity head, lowest_bot, lowest_player, selected;
865
866         smallestteam = 0;
867         smallestteam_count = 999999999;
868
869         if(c1 >= 0 && c1 < smallestteam_count)
870         {
871                 smallestteam = 1;
872                 smallestteam_count = c1;
873         }
874         if(c2 >= 0 && c2 < smallestteam_count)
875         {
876                 smallestteam = 2;
877                 smallestteam_count = c2;
878         }
879         if(c3 >= 0 && c3 < smallestteam_count)
880         {
881                 smallestteam = 3;
882                 smallestteam_count = c3;
883         }
884         if(c4 >= 0 && c4 < smallestteam_count)
885         {
886                 smallestteam = 4;
887                 smallestteam_count = c4;
888         }
889
890         if(!smallestteam)
891         {
892                 bprint("warning: no smallest team\n");
893                 return;
894         }
895
896         if(source_team == 1)
897                 steam = NUM_TEAM_1;
898         else if(source_team == 2)
899                 steam = NUM_TEAM_2;
900         else if(source_team == 3)
901                 steam = NUM_TEAM_3;
902         else // if(source_team == 4)
903                 steam = NUM_TEAM_4;
904
905         lowest_bot = world;
906         lowest_bot_score = 999999999;
907         lowest_player = world;
908         lowest_player_score = 999999999;
909
910         // find the lowest-scoring player & bot of that team
911         FOR_EACH_PLAYER(head)
912         {
913                 if(head.team == steam)
914                 {
915                         if(head.isbot)
916                         {
917                                 if(head.totalfrags < lowest_bot_score)
918                                 {
919                                         lowest_bot = head;
920                                         lowest_bot_score = head.totalfrags;
921                                 }
922                         }
923                         else
924                         {
925                                 if(head.totalfrags < lowest_player_score)
926                                 {
927                                         lowest_player = head;
928                                         lowest_player_score = head.totalfrags;
929                                 }
930                         }
931                 }
932         }
933
934         // prefers to move a bot...
935         if(lowest_bot != world)
936                 selected = lowest_bot;
937         // but it will move a player if it has to
938         else
939                 selected = lowest_player;
940         // don't do anything if it couldn't find anyone
941         if(!selected)
942         {
943                 bprint("warning: couldn't find a player to move from team\n");
944                 return;
945         }
946
947         // smallest team gains a member
948         if(smallestteam == 1)
949         {
950                 c1 = c1 + 1;
951         }
952         else if(smallestteam == 2)
953         {
954                 c2 = c2 + 1;
955         }
956         else if(smallestteam == 3)
957         {
958                 c3 = c3 + 1;
959         }
960         else if(smallestteam == 4)
961         {
962                 c4 = c4 + 1;
963         }
964         else
965         {
966                 bprint("warning: destination team invalid\n");
967                 return;
968         }
969         // source team loses a member
970         if(source_team == 1)
971         {
972                 c1 = c1 + 1;
973         }
974         else if(source_team == 2)
975         {
976                 c2 = c2 + 2;
977         }
978         else if(source_team == 3)
979         {
980                 c3 = c3 + 3;
981         }
982         else if(source_team == 4)
983         {
984                 c4 = c4 + 4;
985         }
986         else
987         {
988                 bprint("warning: source team invalid\n");
989                 return;
990         }
991
992         // move the player to the new team
993         TeamchangeFrags(selected);
994         SetPlayerTeam(selected, smallestteam, source_team, FALSE);
995
996         if(selected.deadflag == DEAD_NO)
997                 Damage(selected, selected, selected, 100000, DEATH_AUTOTEAMCHANGE, selected.origin, '0 0 0');
998         centerprint(selected, strcat("You have been moved into a different team to improve team balance\nYou are now on: ", Team_ColoredFullName(selected.team)));
999 }
1000
1001 // code from here on is just to support maps that don't have team entities
1002 void tdm_spawnteam (string teamname, float teamcolor)
1003 {
1004         entity e;
1005         e = spawn();
1006         e.classname = "tdm_team";
1007         e.netname = teamname;
1008         e.cnt = teamcolor;
1009         e.team = e.cnt + 1;
1010 }
1011
1012 // spawn some default teams if the map is not set up for tdm
1013 void tdm_spawnteams()
1014 {
1015         float numteams;
1016
1017         numteams = autocvar_g_tdm_teams_override;
1018         if(numteams < 2)
1019                 numteams = autocvar_g_tdm_teams;
1020         numteams = bound(2, numteams, 4);
1021
1022         tdm_spawnteam("Red", NUM_TEAM_1-1);
1023         tdm_spawnteam("Blue", NUM_TEAM_2-1);
1024         if(numteams >= 3)
1025                 tdm_spawnteam("Yellow", NUM_TEAM_3-1);
1026         if(numteams >= 4)
1027                 tdm_spawnteam("Pink", NUM_TEAM_4-1);
1028 }
1029
1030 void tdm_delayedinit()
1031 {
1032         // if no teams are found, spawn defaults
1033         if (find(world, classname, "tdm_team") == world)
1034                 tdm_spawnteams();
1035 }
1036
1037 void tdm_init()
1038 {
1039         InitializeEntity(world, tdm_delayedinit, INITPRIO_GAMETYPE);
1040 }