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