]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/teamplay.qc
Merge remote-tracking branch 'origin/nifrek/hagar_own_traileffect_fix'
[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         modifications = substring(modifications, 2, strlen(modifications) - 2);
482
483         string versionmessage;
484         versionmessage = GetClientVersionMessage();
485
486         s = strcat("This is Xonotic ", autocvar_g_xonoticversion, "\n", versionmessage);
487         s = strcat(s, "^8\n\nmatch type is ^1", gamemode_name, "^8\n");
488
489         if(modifications != "")
490                 s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n");
491
492         if (g_grappling_hook)
493                 s = strcat(s, "\n\n^3grappling hook^8 is enabled, press 'e' to use it\n");
494
495         if(cache_lastmutatormsg != autocvar_g_mutatormsg)
496         {
497                 if(cache_lastmutatormsg)
498                         strunzone(cache_lastmutatormsg);
499                 if(cache_mutatormsg)
500                         strunzone(cache_mutatormsg);
501                 cache_lastmutatormsg = strzone(autocvar_g_mutatormsg);
502                 cache_mutatormsg = strzone(cache_lastmutatormsg);
503         }
504
505         if (cache_mutatormsg != "") {
506                 s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg);
507         }
508
509         motd = autocvar_sv_motd;
510         if (motd != "") {
511                 s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd));
512         }
513         return s;
514 }
515
516 void SetPlayerColors(entity pl, float _color)
517 {
518         /*string s;
519         s = ftos(cl);
520         stuffcmd(pl, strcat("color ", s, " ", s, "\n")  );
521         pl.team = cl + 1;
522         //pl.clientcolors = pl.clientcolors - (pl.clientcolors & 15) + cl;
523         pl.clientcolors = 16*cl + cl;*/
524
525         float pants, shirt;
526         pants = _color & 0x0F;
527         shirt = _color & 0xF0;
528
529
530         if(teamplay) {
531                 setcolor(pl, 16*pants + pants);
532         } else {
533                 setcolor(pl, shirt + pants);
534         }
535 }
536
537 void SetPlayerTeam(entity pl, float t, float s, float noprint)
538 {
539         float _color;
540
541         if(t == 4)
542                 _color = COLOR_TEAM4 - 1;
543         else if(t == 3)
544                 _color = COLOR_TEAM3 - 1;
545         else if(t == 2)
546                 _color = COLOR_TEAM2 - 1;
547         else
548                 _color = COLOR_TEAM1 - 1;
549
550         SetPlayerColors(pl,_color);
551
552         if(t != s) {
553                 LogTeamchange(pl.playerid, pl.team, 3);  // log manual team join
554
555                 if(!noprint)
556                 bprint(pl.netname, "^7 has changed from ", TeamNoName(s), " to ", TeamNoName(t), "\n");
557         }
558
559 }
560
561 // set c1...c4 to show what teams are allowed
562 void CheckAllowedTeams (entity for_whom)
563 {
564         float dm;
565         entity head;
566         string teament_name;
567
568         c1 = c2 = c3 = c4 = -1;
569         cb1 = cb2 = cb3 = cb4 = 0;
570
571         if(g_onslaught)
572         {
573                 // onslaught is special
574                 head = findchain(classname, "onslaught_generator");
575                 while (head)
576                 {
577                         if (head.team == COLOR_TEAM1) c1 = 0;
578                         if (head.team == COLOR_TEAM2) c2 = 0;
579                         if (head.team == COLOR_TEAM3) c3 = 0;
580                         if (head.team == COLOR_TEAM4) c4 = 0;
581                         head = head.chain;
582                 }
583         }
584         else if(g_domination)
585                 teament_name = "dom_team";
586         else if(g_ctf)
587                 teament_name = "ctf_team";
588         else if(g_tdm)
589                 teament_name = "tdm_team";
590         else if(g_nexball)
591                 teament_name = "nexball_team";
592         else if(g_assault)
593                 c1 = c2 = 0; // Assault always has 2 teams
594         else
595         {
596                 // cover anything else by treating it like tdm with no teams spawned
597                 if(g_race)
598                         dm = race_teams;
599                 else
600                         dm = 2;
601
602                 ret_float = dm;
603                 MUTATOR_CALLHOOK(GetTeamCount);
604                 dm = ret_float;
605
606                 if(dm >= 4)
607                         c1 = c2 = c3 = c4 = 0;
608                 else if(dm >= 3)
609                         c1 = c2 = c3 = 0;
610                 else
611                         c1 = c2 = 0;
612         }
613
614         // find out what teams are allowed if necessary
615         if(teament_name)
616         {
617                 head = find(world, classname, teament_name);
618                 while(head)
619                 {
620                         if(!(g_domination && head.netname == ""))
621                         {
622                                 if(head.team == COLOR_TEAM1)
623                                         c1 = 0;
624                                 else if(head.team == COLOR_TEAM2)
625                                         c2 = 0;
626                                 else if(head.team == COLOR_TEAM3)
627                                         c3 = 0;
628                                 else if(head.team == COLOR_TEAM4)
629                                         c4 = 0;
630                         }
631                         head = find(head, classname, teament_name);
632                 }
633         }
634
635         // TODO: Balance quantity of bots across > 2 teams when bot_vs_human is set (and remove next line)
636         if(c3==-1 && c4==-1)
637         if(autocvar_bot_vs_human && for_whom)
638         {
639                 if(autocvar_bot_vs_human > 0)
640                 {
641                         // bots are all blue
642                         if(clienttype(for_whom) == CLIENTTYPE_BOT)
643                                 c1 = c3 = c4 = -1;
644                         else
645                                 c2 = -1;
646                 }
647                 else
648                 {
649                         // bots are all red
650                         if(clienttype(for_whom) == CLIENTTYPE_BOT)
651                                 c2 = c3 = c4 = -1;
652                         else
653                                 c1 = -1;
654                 }
655         }
656
657         // if player has a forced team, ONLY allow that one
658         if(self.team_forced == COLOR_TEAM1 && c1 >= 0)
659                 c2 = c3 = c4 = -1;
660         else if(self.team_forced == COLOR_TEAM2 && c2 >= 0)
661                 c1 = c3 = c4 = -1;
662         else if(self.team_forced == COLOR_TEAM3 && c3 >= 0)
663                 c1 = c2 = c4 = -1;
664         else if(self.team_forced == COLOR_TEAM4 && c4 >= 0)
665                 c1 = c2 = c3 = -1;
666 }
667
668 float PlayerValue(entity p)
669 {
670         if(IsTeamBalanceForced() == 1)
671                 return 1;
672         return 1;
673         // FIXME: it always returns 1...
674 }
675
676 // c1...c4 should be set to -1 (not allowed) or 0 (allowed).
677 // teams that are allowed will now have their player counts stored in c1...c4
678 void GetTeamCounts(entity ignore)
679 {
680         entity head;
681         float value, bvalue;
682         // now count how many players are on each team already
683
684         // FIXME: also find and memorize the lowest-scoring bot on each team (in case players must be shuffled around)
685         // also remember the lowest-scoring player
686
687         FOR_EACH_CLIENT(head)
688         {
689                 float t;
690                 if(head.classname == "player")
691                         t = head.team;
692                 else if(head.team_forced > 0)
693                         t = head.team_forced; // reserve the spot
694                 else
695                         continue;
696                 if(head != ignore)// && head.netname != "")
697                 {
698                         value = PlayerValue(head);
699                         if(clienttype(head) == CLIENTTYPE_BOT)
700                                 bvalue = value;
701                         else
702                                 bvalue = 0;
703                         if(t == COLOR_TEAM1)
704                         {
705                                 if(c1 >= 0)
706                                 {
707                                         c1 = c1 + value;
708                                         cb1 = cb1 + bvalue;
709                                 }
710                         }
711                         if(t == COLOR_TEAM2)
712                         {
713                                 if(c2 >= 0)
714                                 {
715                                         c2 = c2 + value;
716                                         cb2 = cb2 + bvalue;
717                                 }
718                         }
719                         if(t == COLOR_TEAM3)
720                         {
721                                 if(c3 >= 0)
722                                 {
723                                         c3 = c3 + value;
724                                         cb3 = cb3 + bvalue;
725                                 }
726                         }
727                         if(t == COLOR_TEAM4)
728                         {
729                                 if(c4 >= 0)
730                                 {
731                                         c4 = c4 + value;
732                                         cb4 = cb4 + bvalue;
733                                 }
734                         }
735                 }
736         }
737
738         // if the player who has a forced team has not joined yet, reserve the spot
739         if(autocvar_g_campaign)
740         {
741                 switch(autocvar_g_campaign_forceteam)
742                 {
743                         case 1: if(c1 == cb1) ++c1; break;
744                         case 2: if(c2 == cb2) ++c2; break;
745                         case 3: if(c3 == cb3) ++c3; break;
746                         case 4: if(c4 == cb4) ++c4; break;
747                 }
748         }
749 }
750
751 // returns # of smallest team (1, 2, 3, 4)
752 // NOTE: Assumes CheckAllowedTeams has already been called!
753 float FindSmallestTeam(entity pl, float ignore_pl)
754 {
755         float totalteams, balance_type, maxc;
756         totalteams = 0;
757
758         // find out what teams are available
759         //CheckAllowedTeams();
760
761         // make sure there are at least 2 teams to join
762         if(c1 >= 0)
763                 totalteams = totalteams + 1;
764         if(c2 >= 0)
765                 totalteams = totalteams + 1;
766         if(c3 >= 0)
767                 totalteams = totalteams + 1;
768         if(c4 >= 0)
769                 totalteams = totalteams + 1;
770
771         if((autocvar_bot_vs_human || pl.team_forced > 0) && totalteams == 1)
772                 totalteams += 1;
773
774         if(totalteams <= 1)
775         {
776                 if(autocvar_g_campaign && pl && clienttype(pl) == CLIENTTYPE_REAL)
777                         return 1; // special case for campaign and player joining
778                 else if(g_domination)
779                         error("Too few teams available for domination\n");
780                 else if(g_ctf)
781                         error("Too few teams available for ctf\n");
782                 else if(g_keyhunt)
783                         error("Too few teams available for key hunt\n");
784                 else if(g_freezetag)
785                         error("Too few teams available for freeze tag\n");
786                 else
787                         error("Too few teams available for team deathmatch\n");
788         }
789
790         // count how many players are in each team
791         if(ignore_pl)
792                 GetTeamCounts(pl);
793         else
794                 GetTeamCounts(world);
795
796         // c1...c4 now have counts of each team
797         // figure out which is smallest, giving priority to the team the player is already on as a tie-breaker
798
799         // 2 gives priority to what team you're already on, 1 goes in order
800         // 2 doesn't seem to work though...
801         balance_type = 1;
802
803         if(bots_would_leave)
804         //if(pl.classname != "player")
805         if(clienttype(pl) != CLIENTTYPE_BOT)
806         {
807                 c1 -= cb1 * 255.0/256.0;
808                 c2 -= cb2 * 255.0/256.0;
809                 c3 -= cb3 * 255.0/256.0;
810                 c4 -= cb4 * 255.0/256.0;
811         }
812         maxc = max4(c1, c2, c3, c4);
813
814         RandomSelection_Init();
815         if(balance_type == 1)
816         {
817                 // 1: use team count, then score (note: can only use 8 significant bits of score)
818                 if(c1 >= 0) RandomSelection_Add(world, 1, string_null, 1, (maxc - c1) + float2range01(-team1_score) / 256.0);
819                 if(c2 >= 0) RandomSelection_Add(world, 2, string_null, 1, (maxc - c2) + float2range01(-team2_score) / 256.0);
820                 if(c3 >= 0) RandomSelection_Add(world, 3, string_null, 1, (maxc - c3) + float2range01(-team3_score) / 256.0);
821                 if(c4 >= 0) RandomSelection_Add(world, 4, string_null, 1, (maxc - c4) + float2range01(-team4_score) / 256.0);
822         }
823         else if(balance_type == 2)
824         {
825                 // 1: use team count, if equal prefer own team
826                 if(c1 >= 0) RandomSelection_Add(world, 1, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM1) / 512.0);
827                 if(c2 >= 0) RandomSelection_Add(world, 2, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM2) / 512.0);
828                 if(c3 >= 0) RandomSelection_Add(world, 3, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM3) / 512.0);
829                 if(c4 >= 0) RandomSelection_Add(world, 4, string_null, 1, (maxc - c1) + (self.team == COLOR_TEAM4) / 512.0);
830         }
831         else if(balance_type == 3)
832         {
833                 // 1: use team count, then score, if equal prefer own team (probably fails due to float accuracy problems)
834                 if(c1 >= 0) RandomSelection_Add(world, 1, string_null, 1, (maxc - c1) + float2range01(-team1_score + 0.5 * (self.team == COLOR_TEAM1)) / 256.0);
835                 if(c2 >= 0) RandomSelection_Add(world, 2, string_null, 1, (maxc - c2) + float2range01(-team2_score + 0.5 * (self.team == COLOR_TEAM2)) / 256.0);
836                 if(c3 >= 0) RandomSelection_Add(world, 3, string_null, 1, (maxc - c3) + float2range01(-team3_score + 0.5 * (self.team == COLOR_TEAM3)) / 256.0);
837                 if(c4 >= 0) RandomSelection_Add(world, 4, string_null, 1, (maxc - c4) + float2range01(-team4_score + 0.5 * (self.team == COLOR_TEAM4)) / 256.0);
838         }
839         return RandomSelection_chosen_float;
840 }
841
842 float JoinBestTeam(entity pl, float only_return_best, float forcebestteam)
843 {
844         float smallest, selectedteam;
845
846         // don't join a team if we're not playing a team game
847         if(!teamplay)
848                 return 0;
849
850         // find out what teams are available
851         CheckAllowedTeams(pl);
852
853         // if we don't care what team he ends up on, put him on whatever team he entered as.
854         // if he's not on a valid team, then let other code put him on the smallest team
855         if(!forcebestteam)
856         {
857                 if(     c1 >= 0 && pl.team == COLOR_TEAM1)
858                         selectedteam = pl.team;
859                 else if(c2 >= 0 && pl.team == COLOR_TEAM2)
860                         selectedteam = pl.team;
861                 else if(c3 >= 0 && pl.team == COLOR_TEAM3)
862                         selectedteam = pl.team;
863                 else if(c4 >= 0 && pl.team == COLOR_TEAM4)
864                         selectedteam = pl.team;
865                 else
866                         selectedteam = -1;
867
868                 if(selectedteam > 0)
869                 {
870                         if(!only_return_best)
871                         {
872                                 SetPlayerColors(pl, selectedteam - 1);
873
874                                 // when JoinBestTeam is called by client.qc/ClientKill_Now_TeamChange the players team is -1 and thus skipped
875                                 // when JoinBestTeam is called by cl_client.qc/ClientConnect the player_id is 0 the log attempt is rejected
876                                 LogTeamchange(pl.playerid, pl.team, 99);
877                         }
878                         return selectedteam;
879                 }
880                 // otherwise end up on the smallest team (handled below)
881         }
882
883         smallest = FindSmallestTeam(pl, TRUE);
884
885         if(!only_return_best && !pl.bot_forced_team)
886         {
887                 TeamchangeFrags(self);
888                 if(smallest == 1)
889                 {
890                         SetPlayerColors(pl, COLOR_TEAM1 - 1);
891                 }
892                 else if(smallest == 2)
893                 {
894                         SetPlayerColors(pl, COLOR_TEAM2 - 1);
895                 }
896                 else if(smallest == 3)
897                 {
898                         SetPlayerColors(pl, COLOR_TEAM3 - 1);
899                 }
900                 else if(smallest == 4)
901                 {
902                         SetPlayerColors(pl, COLOR_TEAM4 - 1);
903                 }
904                 else
905                 {
906                         error("smallest team: invalid team\n");
907                 }
908
909                 LogTeamchange(pl.playerid, pl.team, 2); // log auto join
910
911                 if(pl.deadflag == DEAD_NO)
912                         Damage(pl, pl, pl, 100000, DEATH_TEAMCHANGE, pl.origin, '0 0 0');
913         }
914
915         return smallest;
916 }
917
918 //void() ctf_playerchanged;
919 void SV_ChangeTeam(float _color)
920 {
921         float scolor, dcolor, steam, dteam, dbotcount, scount, dcount;
922
923         // in normal deathmatch we can just apply the color and we're done
924         if(!teamplay) {
925                 SetPlayerColors(self, _color);
926                 return;
927         }
928
929         scolor = self.clientcolors & 0x0F;
930         dcolor = _color & 0x0F;
931
932         if(scolor == COLOR_TEAM1 - 1)
933                 steam = 1;
934         else if(scolor == COLOR_TEAM2 - 1)
935                 steam = 2;
936         else if(scolor == COLOR_TEAM3 - 1)
937                 steam = 3;
938         else // if(scolor == COLOR_TEAM4 - 1)
939                 steam = 4;
940         if(dcolor == COLOR_TEAM1 - 1)
941                 dteam = 1;
942         else if(dcolor == COLOR_TEAM2 - 1)
943                 dteam = 2;
944         else if(dcolor == COLOR_TEAM3 - 1)
945                 dteam = 3;
946         else // if(dcolor == COLOR_TEAM4 - 1)
947                 dteam = 4;
948
949         CheckAllowedTeams(self);
950
951         if(dteam == 1 && c1 < 0) dteam = 4;
952         if(dteam == 4 && c4 < 0) dteam = 3;
953         if(dteam == 3 && c3 < 0) dteam = 2;
954         if(dteam == 2 && c2 < 0) dteam = 1;
955
956         // not changing teams
957         if(scolor == dcolor)
958         {
959                 //bprint("same team change\n");
960                 SetPlayerTeam(self, dteam, steam, TRUE);
961                 return;
962         }
963
964         if((autocvar_g_campaign) || (autocvar_g_changeteam_banned && self.wasplayer)) {
965                 sprint(self, "Team changes not allowed\n");
966                 return; // changing teams is not allowed
967         }
968
969         if(autocvar_g_balance_teams_prevent_imbalance)
970         {
971                 // only allow changing to a smaller or equal size team
972
973                 // find out what teams are available
974                 //CheckAllowedTeams();
975                 // count how many players on each team
976                 GetTeamCounts(world);
977
978                 // get desired team
979                 if(dteam == 1 && c1 >= 0)//dcolor == COLOR_TEAM1 - 1)
980                 {
981                         dcount = c1;
982                         dbotcount = cb1;
983                 }
984                 else if(dteam == 2 && c2 >= 0)//dcolor == COLOR_TEAM2 - 1)
985                 {
986                         dcount = c2;
987                         dbotcount = cb2;
988                 }
989                 else if(dteam == 3 && c3 >= 0)//dcolor == COLOR_TEAM3 - 1)
990                 {
991                         dcount = c3;
992                         dbotcount = cb3;
993                 }
994                 else if(dteam == 4 && c4 >= 0)//dcolor == COLOR_TEAM4 - 1)
995                 {
996                         dcount = c4;
997                         dbotcount = cb4;
998                 }
999                 else
1000                 {
1001                         sprint(self, "Cannot change to an invalid team\n");
1002
1003                         return;
1004                 }
1005
1006                 // get starting team
1007                 if(steam == 1)//scolor == COLOR_TEAM1 - 1)
1008                         scount = c1;
1009                 else if(steam == 2)//scolor == COLOR_TEAM2 - 1)
1010                         scount = c2;
1011                 else if(steam == 3)//scolor == COLOR_TEAM3 - 1)
1012                         scount = c3;
1013                 else if(steam == 4)//scolor == COLOR_TEAM4 - 1)
1014                         scount = c4;
1015
1016                 if(scount) // started at a valid, nonempty team
1017                 {
1018                         // check if we're trying to change to a larger team that doens't have bots to swap with
1019                         if(dcount >= scount && dbotcount <= 0)
1020                         {
1021                                 sprint(self, "Cannot change to a larger team\n");
1022                                 return; // can't change to a larger team
1023                         }
1024                 }
1025         }
1026
1027 //      bprint("allow change teams from ", ftos(steam), " to ", ftos(dteam), "\n");
1028
1029         if(self.classname == "player" && steam != dteam)
1030         {
1031                 // reduce frags during a team change
1032                 TeamchangeFrags(self);
1033         }
1034
1035         SetPlayerTeam(self, dteam, steam, FALSE);
1036
1037         if(self.classname == "player" && steam != dteam)
1038         {
1039                 // kill player when changing teams
1040                 if(self.deadflag == DEAD_NO)
1041                         Damage(self, self, self, 100000, DEATH_TEAMCHANGE, self.origin, '0 0 0');
1042         }
1043         //ctf_playerchanged();
1044 }
1045
1046 void ShufflePlayerOutOfTeam (float source_team)
1047 {
1048         float smallestteam, smallestteam_count, steam;
1049         float lowest_bot_score, lowest_player_score;
1050         entity head, lowest_bot, lowest_player, selected;
1051
1052         smallestteam = 0;
1053         smallestteam_count = 999999999;
1054
1055         if(c1 >= 0 && c1 < smallestteam_count)
1056         {
1057                 smallestteam = 1;
1058                 smallestteam_count = c1;
1059         }
1060         if(c2 >= 0 && c2 < smallestteam_count)
1061         {
1062                 smallestteam = 2;
1063                 smallestteam_count = c2;
1064         }
1065         if(c3 >= 0 && c3 < smallestteam_count)
1066         {
1067                 smallestteam = 3;
1068                 smallestteam_count = c3;
1069         }
1070         if(c4 >= 0 && c4 < smallestteam_count)
1071         {
1072                 smallestteam = 4;
1073                 smallestteam_count = c4;
1074         }
1075
1076         if(!smallestteam)
1077         {
1078                 bprint("warning: no smallest team\n");
1079                 return;
1080         }
1081
1082         if(source_team == 1)
1083                 steam = COLOR_TEAM1;
1084         else if(source_team == 2)
1085                 steam = COLOR_TEAM2;
1086         else if(source_team == 3)
1087                 steam = COLOR_TEAM3;
1088         else if(source_team == 4)
1089                 steam = COLOR_TEAM4;
1090
1091         lowest_bot = world;
1092         lowest_bot_score = 999999999;
1093         lowest_player = world;
1094         lowest_player_score = 999999999;
1095
1096         // find the lowest-scoring player & bot of that team
1097         FOR_EACH_PLAYER(head)
1098         {
1099                 if(head.team == steam)
1100                 {
1101                         if(head.isbot)
1102                         {
1103                                 if(head.totalfrags < lowest_bot_score)
1104                                 {
1105                                         lowest_bot = head;
1106                                         lowest_bot_score = head.totalfrags;
1107                                 }
1108                         }
1109                         else
1110                         {
1111                                 if(head.totalfrags < lowest_player_score)
1112                                 {
1113                                         lowest_player = head;
1114                                         lowest_player_score = head.totalfrags;
1115                                 }
1116                         }
1117                 }
1118         }
1119
1120         // prefers to move a bot...
1121         if(lowest_bot != world)
1122                 selected = lowest_bot;
1123         // but it will move a player if it has to
1124         else
1125                 selected = lowest_player;
1126         // don't do anything if it couldn't find anyone
1127         if(!selected)
1128         {
1129                 bprint("warning: couldn't find a player to move from team\n");
1130                 return;
1131         }
1132
1133         // smallest team gains a member
1134         if(smallestteam == 1)
1135         {
1136                 c1 = c1 + 1;
1137         }
1138         else if(smallestteam == 2)
1139         {
1140                 c2 = c2 + 1;
1141         }
1142         else if(smallestteam == 3)
1143         {
1144                 c3 = c3 + 1;
1145         }
1146         else if(smallestteam == 4)
1147         {
1148                 c4 = c4 + 1;
1149         }
1150         else
1151         {
1152                 bprint("warning: destination team invalid\n");
1153                 return;
1154         }
1155         // source team loses a member
1156         if(source_team == 1)
1157         {
1158                 c1 = c1 + 1;
1159         }
1160         else if(source_team == 2)
1161         {
1162                 c2 = c2 + 2;
1163         }
1164         else if(source_team == 3)
1165         {
1166                 c3 = c3 + 3;
1167         }
1168         else if(source_team == 4)
1169         {
1170                 c4 = c4 + 4;
1171         }
1172         else
1173         {
1174                 bprint("warning: source team invalid\n");
1175                 return;
1176         }
1177
1178         // move the player to the new team
1179         TeamchangeFrags(selected);
1180         SetPlayerTeam(selected, smallestteam, source_team, FALSE);
1181
1182         if(selected.deadflag == DEAD_NO)
1183                 Damage(selected, selected, selected, 100000, DEATH_AUTOTEAMCHANGE, selected.origin, '0 0 0');
1184         centerprint(selected, strcat("You have been moved into a different team to improve team balance\nYou are now on: ", ColoredTeamName(selected.team)));
1185 }
1186
1187 void CauseRebalance(float source_team, float howmany_toomany)
1188 {
1189         if(IsTeamBalanceForced() == 1)
1190         {
1191                 bprint("Rebalancing Teams\n");
1192                 ShufflePlayerOutOfTeam(source_team);
1193         }
1194 }
1195
1196 // part of g_balance_teams_force
1197 // occasionally perform an audit of the teams to make
1198 // sure they're more or less balanced in player count.
1199 void AuditTeams()
1200 {
1201         float numplayers, numteams, smallest, toomany;
1202         float balance;
1203         balance = IsTeamBalanceForced();
1204         if(balance == 0)
1205                 return;
1206
1207         if(audit_teams_time > time)
1208                 return;
1209
1210         audit_teams_time = time + 4 + random();
1211
1212 //      bprint("Auditing teams\n");
1213
1214         CheckAllowedTeams(world);
1215         GetTeamCounts(world);
1216
1217
1218         numteams = numplayers = smallest = 0;
1219         if(c1 >= 0)
1220         {
1221                 numteams = numteams + 1;
1222                 numplayers = numplayers + c1;
1223                 smallest = c1;
1224         }
1225         if(c2 >= 0)
1226         {
1227                 numteams = numteams + 1;
1228                 numplayers = numplayers + c2;
1229                 if(c2 < smallest)
1230                         smallest = c2;
1231         }
1232         if(c3 >= 0)
1233         {
1234                 numteams = numteams + 1;
1235                 numplayers = numplayers + c3;
1236                 if(c3 < smallest)
1237                         smallest = c3;
1238         }
1239         if(c4 >= 0)
1240         {
1241                 numteams = numteams + 1;
1242                 numplayers = numplayers + c4;
1243                 if(c4 < smallest)
1244                         smallest = c4;
1245         }
1246
1247         if(numplayers <= 0)
1248                 return; // no players to move around
1249         if(numteams < 2)
1250                 return; // don't bother shuffling if for some reason there aren't any teams
1251
1252         toomany = smallest + 1;
1253
1254         if(c1 && c1 > toomany)
1255                 CauseRebalance(1, c1 - toomany);
1256         if(c2 && c2 > toomany)
1257                 CauseRebalance(2, c2 - toomany);
1258         if(c3 && c3 > toomany)
1259                 CauseRebalance(3, c3 - toomany);
1260         if(c4 && c4 > toomany)
1261                 CauseRebalance(4, c4 - toomany);
1262
1263         // if teams are still unbalanced, balance them further in the next audit,
1264         // which will happen sooner (keep doing rapid audits until things are in order)
1265         audit_teams_time = time + 0.7 + random()*0.3;
1266 }
1267
1268 // code from here on is just to support maps that don't have team entities
1269 void tdm_spawnteam (string teamname, float teamcolor)
1270 {
1271         entity e;
1272         e = spawn();
1273         e.classname = "tdm_team";
1274         e.netname = teamname;
1275         e.cnt = teamcolor;
1276         e.team = e.cnt + 1;
1277 }
1278
1279 // spawn some default teams if the map is not set up for tdm
1280 void tdm_spawnteams()
1281 {
1282         float numteams;
1283
1284         numteams = autocvar_g_tdm_teams_override;
1285         if(numteams < 2)
1286                 numteams = autocvar_g_tdm_teams;
1287         numteams = bound(2, numteams, 4);
1288
1289         tdm_spawnteam("Red", COLOR_TEAM1-1);
1290         tdm_spawnteam("Blue", COLOR_TEAM2-1);
1291         if(numteams >= 3)
1292                 tdm_spawnteam("Yellow", COLOR_TEAM3-1);
1293         if(numteams >= 4)
1294                 tdm_spawnteam("Pink", COLOR_TEAM4-1);
1295 }
1296
1297 void tdm_delayedinit()
1298 {
1299         // if no teams are found, spawn defaults
1300         if (find(world, classname, "tdm_team") == world)
1301                 tdm_spawnteams();
1302 }
1303
1304 void tdm_init()
1305 {
1306         InitializeEntity(world, tdm_delayedinit, INITPRIO_GAMETYPE);
1307 }