]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/g_world.qc
don't do sudden death in campaign test run
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_world.qc
1 entity pingplreport;
2 void PingPLReport_Think()
3 {
4         float delta;
5         entity e;
6
7         delta = 3 / maxclients;
8         if(delta < sys_frametime)
9                 delta = 0;
10         self.nextthink = time + delta;
11
12         e = edict_num(self.cnt + 1);
13         if(clienttype(e) == CLIENTTYPE_REAL)
14         {
15                 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
16                 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
17                 WriteByte(MSG_BROADCAST, self.cnt);
18                 WriteShort(MSG_BROADCAST, max(1, e.ping));
19                 WriteByte(MSG_BROADCAST, ceil(e.ping_packetloss * 255));
20                 WriteByte(MSG_BROADCAST, ceil(e.ping_movementloss * 255));
21         }
22         else
23         {
24                 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
25                 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
26                 WriteByte(MSG_BROADCAST, self.cnt);
27                 WriteShort(MSG_BROADCAST, 0);
28                 WriteByte(MSG_BROADCAST, 0);
29                 WriteByte(MSG_BROADCAST, 0);
30         }
31         self.cnt = mod(self.cnt + 1, maxclients);
32 }
33 void PingPLReport_Spawn()
34 {
35         pingplreport = spawn();
36         pingplreport.classname = "pingplreport";
37         pingplreport.think = PingPLReport_Think;
38         pingplreport.nextthink = time;
39 }
40
41 float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
42 string redirection_target;
43 float world_initialized;
44
45 string GetMapname();
46 string GetGametype();
47 void GotoNextMap(float reinit);
48 void ShuffleMaplist()
49 float(float reinit) DoNextMapOverride;
50
51 void SetDefaultAlpha()
52 {
53         if(autocvar_g_running_guns)
54         {
55                 default_player_alpha = -1;
56                 default_weapon_alpha = +1;
57         }
58         else if(g_cloaked)
59         {
60                 default_player_alpha = autocvar_g_balance_cloaked_alpha;
61                 default_weapon_alpha = default_player_alpha;
62         }
63         else
64         {
65                 default_player_alpha = autocvar_g_player_alpha;
66                 if(default_player_alpha == 0)
67                         default_player_alpha = 1;
68                 default_weapon_alpha = default_player_alpha;
69         }
70 }
71
72 void fteqcc_testbugs()
73 {
74         float a, b;
75
76         if(!autocvar_developer_fteqccbugs)
77                 return;
78
79         dprint("*** fteqcc test: checking for bugs...\n");
80
81         a = 1;
82         b = 5;
83         if(sqrt(a) - sqrt(b - a) == 0)
84                 dprint("*** fteqcc test: found same-function-twice bug\n");
85         else
86                 dprint("*** fteqcc test: same-function-twice bug got FINALLY FIXED! HOORAY!\n");
87
88         world.cnt = -10;
89         world.enemy = world;
90         world.enemy.cnt += 10;
91         if(world.cnt > 0.2 || world.cnt < -0.2) // don't error out if it's just roundoff errors
92                 dprint("*** fteqcc test: found += bug\n");
93         else
94                 dprint("*** fteqcc test: += bug got FINALLY FIXED! HOORAY!\n");
95         world.cnt = 0;
96 }
97
98 void GotoFirstMap()
99 {
100         float n;
101         if(autocvar__sv_init)
102         {
103                 // cvar_set("_sv_init", "0");
104                 // we do NOT set this to 0 any more, so someone "accidentally" changing
105                 // to this "init" map on a dedicated server will cause no permanent
106                 // harm
107                 if(autocvar_g_maplist_shuffle)
108                         ShuffleMaplist();
109                 n = tokenizebyseparator(autocvar_g_maplist, " ");
110                 cvar_set("g_maplist_index", ftos(n - 1)); // jump to map 0 in GotoNextMap
111
112                 MapInfo_Enumerate();
113                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
114
115                 if(!DoNextMapOverride(1))
116                         GotoNextMap(1);
117
118                 return;
119         }
120
121         if(time < 5)
122         {
123                 self.nextthink = time;
124         }
125         else
126         {
127                 self.nextthink = time + 1;
128                 print("Waiting for _sv_init being set to 1 by initialization scripts...\n");
129         }
130 }
131
132 void cvar_changes_init()
133 {
134         float h;
135         string k, v, d;
136         float n, i, adding, pureadding;
137
138         if(cvar_changes)
139                 strunzone(cvar_changes);
140         cvar_changes = string_null;
141         if(cvar_purechanges)
142                 strunzone(cvar_purechanges);
143         cvar_purechanges = string_null;
144         cvar_purechanges_count = 0;
145
146         h = buf_create();
147         buf_cvarlist(h, "", "_"); // exclude all _ cvars as they are temporary
148         n = buf_getsize(h);
149
150         adding = TRUE;
151         pureadding = TRUE;
152
153         for(i = 0; i < n; ++i)
154         {
155                 k = bufstr_get(h, i);
156
157 #define BADPREFIX(p) if(substring(k, 0, strlen(p)) == p) continue
158 #define BADPRESUFFIX(p,s) if(substring(k, 0, strlen(p)) == p && substring(k, -strlen(s), -1) == s) continue
159 #define BADCVAR(p) if(k == p) continue
160
161                 // general excludes and namespaces for server admin used cvars
162                 BADPREFIX("help_"); // PN's server has this listed as changed, let's not rat him out for THAT
163
164                 // internal
165                 BADPREFIX("csqc_");
166                 BADPREFIX("cvar_check_");
167                 BADCVAR("gamecfg");
168                 BADCVAR("g_configversion");
169                 BADCVAR("g_maplist_index");
170                 BADCVAR("halflifebsp");
171                 BADPREFIX("sv_world");
172
173                 // client
174                 BADPREFIX("chase_");
175                 BADPREFIX("cl_");
176                 BADPREFIX("con_");
177                 BADPREFIX("scoreboard_");
178                 BADPREFIX("g_campaign");
179                 BADPREFIX("g_waypointsprite_");
180                 BADPREFIX("gl_");
181                 BADPREFIX("joy");
182                 BADPREFIX("hud_");
183                 BADPREFIX("m_");
184                 BADPREFIX("menu_");
185                 BADPREFIX("net_slist_");
186                 BADPREFIX("r_");
187                 BADPREFIX("sbar_");
188                 BADPREFIX("scr_");
189                 BADPREFIX("snd_");
190                 BADPREFIX("show");
191                 BADPREFIX("sensitivity");
192                 BADPREFIX("userbind");
193                 BADPREFIX("v_");
194                 BADPREFIX("vid_");
195                 BADPREFIX("crosshair");
196                 BADCVAR("mod_q3bsp_lightmapmergepower");
197                 BADCVAR("mod_q3bsp_nolightmaps");
198                 BADCVAR("fov");
199                 BADCVAR("mastervolume");
200                 BADCVAR("volume");
201                 BADCVAR("bgmvolume");
202
203                 // private
204                 BADCVAR("developer");
205                 BADCVAR("log_dest_udp");
206                 BADCVAR("log_file");
207                 BADCVAR("net_address");
208                 BADCVAR("net_address_ipv6");
209                 BADCVAR("port");
210                 BADCVAR("savedgamecfg");
211                 BADCVAR("serverconfig");
212                 BADCVAR("sv_autoscreenshot");
213                 BADCVAR("sv_heartbeatperiod");
214                 BADCVAR("sv_vote_master_password");
215                 BADCVAR("sys_colortranslation");
216                 BADCVAR("sys_specialcharactertranslation");
217                 BADCVAR("timeformat");
218                 BADCVAR("timestamps");
219                 BADPREFIX("developer_");
220                 BADPREFIX("g_ban_");
221                 BADPREFIX("g_banned_list");
222                 BADPREFIX("g_chat_flood_");
223                 BADPREFIX("g_ghost_items");
224                 BADPREFIX("g_playerstats_");
225                 BADPREFIX("g_respawn_ghosts");
226                 BADPREFIX("g_voice_flood_");
227                 BADPREFIX("rcon_");
228                 BADPREFIX("sv_allowdownloads");
229                 BADPREFIX("sv_autodemo");
230                 BADPREFIX("sv_curl_");
231                 BADPREFIX("sv_eventlog");
232                 BADPREFIX("sv_logscores_");
233                 BADPREFIX("sv_master");
234                 BADPREFIX("sv_weaponstats_");
235                 BADPREFIX("sv_waypointsprite_");
236                 BADCVAR("rescan_pending");
237
238                 // these can contain player IDs, so better hide
239                 BADPREFIX("g_forced_team_");
240
241                 // mapinfo
242                 BADCVAR("fraglimit");
243                 BADCVAR("g_arena");
244                 BADCVAR("g_assault");
245                 BADCVAR("g_ca");
246                 BADCVAR("g_ctf");
247                 BADCVAR("g_cts");
248                 BADCVAR("g_dm");
249                 BADCVAR("g_domination");
250                 BADCVAR("g_domination_default_teams");
251                 BADCVAR("g_freezetag");
252                 BADCVAR("g_keepaway");
253                 BADCVAR("g_keyhunt");
254                 BADCVAR("g_keyhunt_teams");
255                 BADCVAR("g_keyhunt_teams");
256                 BADCVAR("g_lms");
257                 BADCVAR("g_nexball");
258                 BADCVAR("g_onslaught");
259                 BADCVAR("g_race");
260                 BADCVAR("g_race_qualifying_timelimit");
261                 BADCVAR("g_runematch");
262                 BADCVAR("g_tdm");
263                 BADCVAR("g_tdm_teams");
264                 BADCVAR("leadlimit");
265                 BADCVAR("nextmap");
266                 BADCVAR("teamplay");
267                 BADCVAR("timelimit");
268
269                 // long
270                 BADCVAR("hostname");
271                 BADCVAR("g_maplist");
272                 BADCVAR("g_maplist_mostrecent");
273                 BADCVAR("sv_motd");
274
275                 v = cvar_string(k);
276                 d = cvar_defstring(k);
277                 if(v == d)
278                         continue;
279
280                 if(adding)
281                 {
282                         cvar_changes = strcat(cvar_changes, k, " \"", v, "\" // \"", d, "\"\n");
283                         if(strlen(cvar_changes) > 16384)
284                         {
285                                 cvar_changes = "// too many settings have been changed to show them here\n";
286                                 adding = 0;
287                         }
288                 }
289
290                 // now check if the changes are actually gameplay relevant
291
292                 // does nothing visible
293                 BADCVAR("captureleadlimit_override");
294                 BADCVAR("g_arena_point_leadlimit");
295                 BADCVAR("g_balance_kill_delay");
296                 BADCVAR("g_ca_point_leadlimit");
297                 BADCVAR("g_ctf_captimerecord_always");
298                 BADCVAR("g_ctf_flag_capture_effects");
299                 BADCVAR("g_ctf_flag_glowtrails");
300                 BADCVAR("g_ctf_flag_pickup_effects");
301                 BADCVAR("g_domination_point_leadlimit");
302                 BADCVAR("g_forced_respawn");
303                 BADCVAR("g_keyhunt_point_leadlimit");
304                 BADPREFIX("g_mod_");
305                 BADCVAR("g_nexball_goalleadlimit");
306                 BADCVAR("g_runematch_point_leadlimit");
307                 BADCVAR("leadlimit_and_fraglimit");
308                 BADCVAR("leadlimit_override");
309                 BADCVAR("pausable");
310                 BADCVAR("sv_allow_fullbright");
311                 BADCVAR("sv_checkforpacketsduringsleep");
312                 BADCVAR("sv_fraginfo");
313                 BADCVAR("sv_timeout");
314                 BADPREFIX("sv_timeout_");
315                 BADCVAR("welcome_message_time");
316                 BADPREFIX("crypto_");
317                 BADPREFIX("g_chat_");
318                 BADPREFIX("g_ctf_captimerecord_");
319                 BADPREFIX("g_maplist_votable_");
320                 BADPREFIX("net_");
321                 BADPREFIX("prvm_");
322                 BADPREFIX("skill_");
323                 BADPREFIX("sv_cullentities_");
324                 BADPREFIX("sv_fraginfo_");
325                 BADPREFIX("sv_maxidle_");
326                 BADPREFIX("sv_vote_");
327                 BADPREFIX("timelimit_");
328                 BADCVAR("gameversion");
329                 BADPREFIX("gameversion_");
330                 BADCVAR("sv_namechangetimer");
331 #ifndef NO_LEGACY_NETWORKING
332                 BADCVAR("sv_use_csqc_players"); // transition
333 #endif
334
335                 // allowed changes to server admins (please sync this to server.cfg)
336                 // vi commands:
337                 //   :/"impure"/,$d
338                 //   :g!,^\/\/[^ /],d
339                 //   :%s,//\([^ ]*\).*,BADCVAR("\1");,
340                 //   :%!sort
341                 // yes, this does contain some redundant stuff, don't really care
342                 BADCVAR("bot_config_file");
343                 BADCVAR("bot_number");
344                 BADCVAR("bot_prefix");
345                 BADCVAR("bot_suffix");
346                 BADCVAR("capturelimit_override");
347                 BADCVAR("fraglimit_override");
348                 BADCVAR("gametype");
349                 BADCVAR("g_antilag");
350                 BADCVAR("g_balance_teams");
351                 BADCVAR("g_balance_teams_force");
352                 BADCVAR("g_ban_sync_trusted_servers");
353                 BADCVAR("g_ban_sync_uri");
354                 BADCVAR("g_ctf_ignore_frags");
355                 BADCVAR("g_domination_point_limit");
356                 BADCVAR("g_friendlyfire");
357                 BADCVAR("g_fullbrightitems");
358                 BADCVAR("g_fullbrightplayers");
359                 BADCVAR("g_keyhunt_point_limit");
360                 BADCVAR("g_keyhunt_teams_override");
361                 BADCVAR("g_lms_lives_override");
362                 BADCVAR("g_maplist");
363                 BADCVAR("g_maplist_check_waypoints");
364                 BADCVAR("g_maplist_mostrecent_count");
365                 BADCVAR("g_maplist_shuffle");
366                 BADCVAR("g_maplist_votable");
367                 BADCVAR("g_maplist_votable_abstain");
368                 BADCVAR("g_maplist_votable_nodetail");
369                 BADCVAR("g_maplist_votable_suggestions");
370                 BADCVAR("g_maxplayers");
371                 BADCVAR("g_minstagib");
372                 BADCVAR("g_mirrordamage");
373                 BADCVAR("g_nexball_goallimit");
374                 BADCVAR("g_powerups");
375                 BADCVAR("g_runematch_point_limit");
376                 BADCVAR("g_start_delay");
377                 BADCVAR("g_warmup");
378                 BADCVAR("g_weapon_stay"); BADPRESUFFIX("g_", "_weapon_stay");
379                 BADCVAR("hostname");
380                 BADCVAR("log_file");
381                 BADCVAR("maxplayers");
382                 BADCVAR("minplayers");
383                 BADCVAR("net_address");
384                 BADCVAR("port");
385                 BADCVAR("rcon_password");
386                 BADCVAR("rcon_restricted_commands");
387                 BADCVAR("rcon_restricted_password");
388                 BADCVAR("skill");
389                 BADCVAR("sv_adminnick");
390                 BADCVAR("sv_autoscreenshot");
391                 BADCVAR("sv_autotaunt");
392                 BADCVAR("sv_curl_defaulturl");
393                 BADCVAR("sv_defaultcharacter");
394                 BADCVAR("sv_defaultplayercolors");
395                 BADCVAR("sv_defaultplayermodel");
396                 BADCVAR("sv_defaultplayerskin");
397                 BADCVAR("sv_maxidle");
398                 BADCVAR("sv_maxrate");
399                 BADCVAR("sv_motd");
400                 BADCVAR("sv_public");
401                 BADCVAR("sv_ready_restart");
402                 BADCVAR("sv_status_privacy");
403                 BADCVAR("sv_taunt");
404                 BADCVAR("sv_vote_call");
405                 BADCVAR("sv_vote_commands");
406                 BADCVAR("sv_vote_majority_factor");
407                 BADCVAR("sv_vote_master");
408                 BADCVAR("sv_vote_master_commands");
409                 BADCVAR("sv_vote_master_password");
410                 BADCVAR("sv_vote_simple_majority_factor");
411                 BADCVAR("sys_ticrate");
412                 BADCVAR("teamplay_mode");
413                 BADCVAR("timelimit_override");
414                 BADCVAR("g_spawnshieldtime");
415                 BADPREFIX("g_warmup_");
416                 BADPREFIX("sv_ready_restart_");
417
418                 if(autocvar_g_minstagib)
419                 {
420                         BADCVAR("g_grappling_hook");
421                         BADCVAR("g_jetpack");
422                 }
423 #undef BADPREFIX
424 #undef BADCVAR
425
426                 if(pureadding)
427                 {
428                         cvar_purechanges = strcat(cvar_purechanges, k, " \"", v, "\" // \"", d, "\"\n");
429                         if(strlen(cvar_purechanges) > 16384)
430                         {
431                                 cvar_purechanges = "// too many settings have been changed to show them here\n";
432                                 pureadding = 0;
433                         }
434                 }
435                 ++cvar_purechanges_count;
436                 // WARNING: this variable is used for the server list
437                 // NEVER dare to skip this code!
438                 // Hacks to intentionally appearing as "pure server" even though you DO have
439                 // modified settings may be punished by removal from the server list.
440                 // You can do to the variables cvar_changes and cvar_purechanges all you want,
441                 // though.
442         }
443         buf_del(h);
444         if(cvar_changes == "")
445                 cvar_changes = "// this server runs at default server settings\n";
446         else
447                 cvar_changes = strcat("// this server runs at modified server settings:\n", cvar_changes);
448         cvar_changes = strzone(cvar_changes);
449         if(cvar_purechanges == "")
450                 cvar_purechanges = "// this server runs at default gameplay settings\n";
451         else
452                 cvar_purechanges = strcat("// this server runs at modified gameplay settings:\n", cvar_purechanges);
453         cvar_purechanges = strzone(cvar_purechanges);
454 }
455
456 void detect_maptype()
457 {
458 #if 0
459         vector o, v;
460         float i;
461
462         for(;;)
463         {
464                 o = world.mins;
465                 o_x += random() * (world.maxs_x - world.mins_x);
466                 o_y += random() * (world.maxs_y - world.mins_y);
467                 o_z += random() * (world.maxs_z - world.mins_z);
468
469                 tracebox(o, PL_MIN, PL_MAX, o - '0 0 32768', MOVE_WORLDONLY, world);
470                 if(trace_fraction == 1)
471                         continue;
472
473                 v = trace_endpos;
474
475                 for(i = 0; i < 64; i += 4)
476                 {
477                         tracebox(o, '-1 -1 -1' * i, '1 1 1' * i, o - '0 0 32768', MOVE_WORLDONLY, world);
478         if(trace_fraction == 1)
479                 continue;
480                         print(ftos(i), " -> ", vtos(trace_endpos), "\n");
481                 }
482
483                 break;
484         }
485 #endif
486 }
487
488 entity randomseed;
489 float RandomSeed_Send(entity to, float sf)
490 {
491         WriteByte(MSG_ENTITY, ENT_CLIENT_RANDOMSEED);
492         WriteShort(MSG_ENTITY, self.cnt);
493         return TRUE;
494 }
495 void RandomSeed_Think()
496 {
497         self.cnt = bound(0, floor(random() * 65536), 65535);
498         self.nextthink = time + 5;
499
500         self.SendFlags |= 1;
501 }
502 void RandomSeed_Spawn()
503 {
504         randomseed = spawn();
505         randomseed.think = RandomSeed_Think;
506         Net_LinkEntity(randomseed, FALSE, 0, RandomSeed_Send);
507
508         entity oldself;
509         oldself = self;
510         self = randomseed;
511         self.think(); // sets random seed and nextthink
512         self = oldself;
513 }
514
515 void spawnfunc___init_dedicated_server(void)
516 {
517         // handler for _init/_init map (only for dedicated server initialization)
518
519         world_initialized = -1; // don't complain
520         cvar = cvar_normal;
521         cvar_string = cvar_string_normal;
522         cvar_set = cvar_set_normal;
523
524         remove = remove_unsafely;
525
526         entity e;
527         e = spawn();
528         e.think = GotoFirstMap;
529         e.nextthink = time; // this is usually 1 at this point
530
531         e = spawn();
532         e.classname = "info_player_deathmatch"; // safeguard against player joining
533
534         self.classname = "worldspawn"; // safeguard against various stuff ;)
535
536         // needs to be done so early because of the constants they create
537         RegisterWeapons();
538         RegisterGametypes();
539
540         MapInfo_Enumerate();
541         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
542 }
543
544 void Map_MarkAsRecent(string m);
545 float world_already_spawned;
546 void RegisterWeapons();
547 void Nagger_Init();
548 void ClientInit_Spawn();
549 void WeaponStats_Init();
550 void WeaponStats_Shutdown();
551 void spawnfunc_worldspawn (void)
552 {
553         float fd, l, i, j, n;
554         string s, col;
555
556         cvar = cvar_normal;
557         cvar_string = cvar_string_normal;
558         cvar_set = cvar_set_normal;
559
560         if(world_already_spawned)
561                 error("world already spawned - you may have EXACTLY ONE worldspawn!");
562         world_already_spawned = TRUE;
563
564         remove = remove_safely; // during spawning, watch what you remove!
565
566         check_unacceptable_compiler_bugs();
567
568         cvar_changes_init(); // do this very early now so it REALLY matches the server config
569
570         compressShortVector_init();
571
572         allowed_to_spawn = TRUE;
573
574         entity head;
575         head = nextent(world);
576         maxclients = 0;
577         while(head)
578         {
579                 ++maxclients;
580                 head = nextent(head);
581         }
582
583         // needs to be done so early because of the constants they create
584         RegisterWeapons();
585         RegisterGametypes();
586
587         ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
588
589         TemporaryDB = db_create();
590
591         // 0 normal
592         lightstyle(0, "m");
593
594         // 1 FLICKER (first variety)
595         lightstyle(1, "mmnmmommommnonmmonqnmmo");
596
597         // 2 SLOW STRONG PULSE
598         lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
599
600         // 3 CANDLE (first variety)
601         lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
602
603         // 4 FAST STROBE
604         lightstyle(4, "mamamamamama");
605
606         // 5 GENTLE PULSE 1
607         lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
608
609         // 6 FLICKER (second variety)
610         lightstyle(6, "nmonqnmomnmomomno");
611
612         // 7 CANDLE (second variety)
613         lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
614
615         // 8 CANDLE (third variety)
616         lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
617
618         // 9 SLOW STROBE (fourth variety)
619         lightstyle(9, "aaaaaaaazzzzzzzz");
620
621         // 10 FLUORESCENT FLICKER
622         lightstyle(10, "mmamammmmammamamaaamammma");
623
624         // 11 SLOW PULSE NOT FADE TO BLACK
625         lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
626
627         // styles 32-62 are assigned by the spawnfunc_light program for switchable lights
628
629         // 63 testing
630         lightstyle(63, "a");
631
632         if(autocvar_g_campaign)
633                 CampaignPreInit();
634
635         Map_MarkAsRecent(mapname);
636
637         precache_model ("null"); // we need this one before InitGameplayMode
638         InitGameplayMode();
639         readlevelcvars();
640         GrappleHookInit();
641         ElectroInit();
642         LaserInit();
643
644         player_count = 0;
645         bot_waypoints_for_items = autocvar_g_waypoints_for_items;
646         if(bot_waypoints_for_items == 1)
647                 if(self.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
648                         bot_waypoints_for_items = 0;
649
650         precache();
651
652         WaypointSprite_Init();
653
654         //if (g_domination)
655         //      dom_init();
656
657         GameLogInit(); // prepare everything
658         // NOTE for matchid:
659         // changing the logic generating it is okay. But:
660         // it HAS to stay <= 64 chars
661         // character set: ASCII 33-126 without the following characters: : ; ' " \ $
662         if(autocvar_sv_eventlog)
663         {
664                 s = sprintf("%d.%s.%06d", ftos(autocvar_sv_eventlog_files_counter), strftime(FALSE, "%s"), floor(random() * 1000000));
665                 matchid = strzone(s);
666
667                 GameLogEcho(strcat(":gamestart:", GetGametype(), "_", GetMapname(), ":", s));
668                 s = ":gameinfo:mutators:LIST";
669
670                 ret_string = s;
671                 MUTATOR_CALLHOOK(BuildMutatorsString);
672                 s = ret_string;
673
674                 // simple, probably not good in the mutator system
675                 if(autocvar_g_grappling_hook)
676                         s = strcat(s, ":grappling_hook");
677
678                 // initialiation stuff, not good in the mutator system
679                 if(!autocvar_g_use_ammunition)
680                         s = strcat(s, ":no_use_ammunition");
681
682                 // initialiation stuff, not good in the mutator system
683                 if(autocvar_g_pickup_items == 0)
684                         s = strcat(s, ":no_pickup_items");
685                 if(autocvar_g_pickup_items > 0)
686                         s = strcat(s, ":pickup_items");
687
688                 // initialiation stuff, not good in the mutator system
689                 if(autocvar_g_weaponarena != "0")
690                         s = strcat(s, ":", autocvar_g_weaponarena, " arena");
691
692                 // TODO to mutator system
693                 if(autocvar_g_norecoil)
694                         s = strcat(s, ":norecoil");
695
696                 // TODO to mutator system
697                 if(autocvar_g_midair)
698                         s = strcat(s, ":midair");
699
700                 // TODO to mutator system
701                 if(autocvar_g_minstagib)
702                         s = strcat(s, ":minstagib");
703
704                 // TODO to mutator system
705                 if(autocvar_g_powerups == 0)
706                         s = strcat(s, ":no_powerups");
707                 if(autocvar_g_powerups > 0)
708                         s = strcat(s, ":powerups");
709
710                 GameLogEcho(s);
711                 GameLogEcho(":gameinfo:end");
712         }
713         else
714                 matchid = strzone(ftos(random()));
715
716         cvar_set("nextmap", "");
717
718         SetDefaultAlpha();
719
720         if(autocvar_g_campaign)
721                 CampaignPostInit();
722
723         fteqcc_testbugs();
724
725         Ban_LoadBans();
726
727         MapInfo_Enumerate();
728         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
729
730         if(whichpack(strcat("maps/", mapname, ".cfg")) != "")
731         {
732                 fd = fopen(strcat("maps/", mapname, ".cfg"), FILE_READ);
733                 if(fd != -1)
734                 {
735                         while((s = fgets(fd)))
736                         {
737                                 l = tokenize_console(s);
738                                 if(l < 2)
739                                         continue;
740                                 if(argv(0) == "cd")
741                                 {
742                                         print("Found ^1UNSUPPORTED^7 cd loop command in .cfg file; put this line in mapinfo instead:\n");
743                                         print("  cdtrack ", argv(2), "\n");
744                                 }
745                                 else if(argv(0) == "fog")
746                                 {
747                                         print("Found ^1UNSUPPORTED^7 fog command in .cfg file; put this line in worldspawn in the .map/.bsp/.ent file instead:\n");
748                                         print("  \"fog\" \"", s, "\"\n");
749                                 }
750                                 else if(argv(0) == "set")
751                                 {
752                                         print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
753                                         print("  clientsettemp_for_type all ", argv(1), " ", argv(2), "\n");
754                                 }
755                                 else if(argv(0) != "//")
756                                 {
757                                         print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
758                                         print("  clientsettemp_for_type all ", argv(0), " ", argv(1), "\n");
759                                 }
760                         }
761                         fclose(fd);
762                 }
763         }
764
765         WeaponStats_Init();
766
767         addstat(STAT_WEAPONS, AS_INT, weapons);
768         addstat(STAT_SWITCHWEAPON, AS_INT, switchweapon);
769         addstat(STAT_SWITCHINGWEAPON, AS_INT, switchingweapon);
770         addstat(STAT_GAMESTARTTIME, AS_FLOAT, stat_game_starttime);
771         addstat(STAT_ALLOW_OLDNEXBEAM, AS_INT, stat_allow_oldnexbeam);
772         Nagger_Init();
773
774         addstat(STAT_STRENGTH_FINISHED, AS_FLOAT, strength_finished);
775         addstat(STAT_INVINCIBLE_FINISHED, AS_FLOAT, invincible_finished);
776         addstat(STAT_SUPERWEAPONS_FINISHED, AS_FLOAT, superweapons_finished);
777         addstat(STAT_PRESSED_KEYS, AS_FLOAT, pressedkeys);
778         addstat(STAT_FUEL, AS_INT, ammo_fuel);
779         addstat(STAT_SHOTORG, AS_INT, stat_shotorg);
780         addstat(STAT_LEADLIMIT, AS_FLOAT, stat_leadlimit);
781         addstat(STAT_WEAPON_CLIPLOAD, AS_INT, clip_load);
782         addstat(STAT_WEAPON_CLIPSIZE, AS_INT, clip_size);
783         addstat(STAT_LAST_PICKUP, AS_FLOAT, last_pickup);
784         addstat(STAT_HIT_TIME, AS_FLOAT, hit_time);
785         addstat(STAT_TYPEHIT_TIME, AS_FLOAT, typehit_time);
786         addstat(STAT_LAYED_MINES, AS_INT, minelayer_mines);
787
788         addstat(STAT_NEX_CHARGE, AS_FLOAT, nex_charge);
789         addstat(STAT_NEX_CHARGEPOOL, AS_FLOAT, nex_chargepool_ammo);
790
791         addstat(STAT_HAGAR_LOAD, AS_INT, hagar_load);
792
793         if(g_ca || g_freezetag)
794         {
795                 addstat(STAT_REDALIVE, AS_INT, redalive_stat);
796                 addstat(STAT_BLUEALIVE, AS_INT, bluealive_stat);
797                 addstat(STAT_YELLOWALIVE, AS_INT, yellowalive_stat);
798                 addstat(STAT_PINKALIVE, AS_INT, pinkalive_stat);
799         }
800         if(g_freezetag)
801         {
802                 addstat(STAT_FROZEN, AS_INT, freezetag_frozen);
803                 addstat(STAT_REVIVE_PROGRESS, AS_FLOAT, freezetag_revive_progress);
804         }
805
806         // g_movementspeed hack
807         addstat(STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW, AS_FLOAT, stat_sv_airspeedlimit_nonqw);
808         addstat(STAT_MOVEVARS_MAXSPEED, AS_FLOAT, stat_sv_maxspeed);
809         addstat(STAT_MOVEVARS_AIRACCEL_QW, AS_FLOAT, stat_sv_airaccel_qw);
810         addstat(STAT_MOVEVARS_AIRSTRAFEACCEL_QW, AS_FLOAT, stat_sv_airstrafeaccel_qw);
811         
812         // secrets
813         addstat(STAT_SECRETS_TOTAL, AS_FLOAT, stat_secrets_total);
814         addstat(STAT_SECRETS_FOUND, AS_FLOAT, stat_secrets_found);
815         
816         next_pingtime = time + 5;
817
818         detect_maptype();
819         
820         // set up information replies for clients and server to use
821         lsmaps_reply = "^7Maps available: ";
822         lsnewmaps_reply = "^7Maps without a record set: ";
823         for(i = 0, j = 0; i < MapInfo_count; ++i)
824         {
825                 if(MapInfo_Get_ByID(i))
826                         if not(MapInfo_Map_flags & (MAPINFO_FLAG_HIDDEN | MAPINFO_FLAG_FORBIDDEN))
827                         {
828                                 if(mod(i, 2))
829                                         col = "^2";
830                                 else
831                                         col = "^3";
832                                         
833                                 ++j;
834                                 
835                                 lsmaps_reply = strcat(lsmaps_reply, col, MapInfo_Map_bspname, " ");
836                                 
837                                 if(g_race && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, RACE_RECORD, "time"))))
838                                         lsnewmaps_reply = strcat(lsnewmaps_reply, col, MapInfo_Map_bspname, " ");
839                                 else if(g_cts && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, CTS_RECORD, "time"))))
840                                         lsnewmaps_reply = strcat(lsnewmaps_reply, col, MapInfo_Map_bspname, " ");
841                         }
842         }
843         
844         lsmaps_reply = strzone(strcat(lsmaps_reply, "\n"));
845         lsnewmaps_reply = strzone(strcat(((!g_race && !g_cts) ? "Need to be playing race or CTS for lsnewmaps to work." : lsnewmaps_reply), "\n"));
846
847         maplist_reply = "^7Maps in list: ";
848         n = tokenize_console(autocvar_g_maplist);
849         for(i = 0, j = 0; i < n; ++i)
850         {
851                 if(MapInfo_CheckMap(argv(i)))
852                 {
853                         if(mod(j, 2))
854                                 col = "^2";
855                         else
856                                 col = "^3";
857                         maplist_reply = strcat(maplist_reply, col, argv(i), " ");
858                         ++j;
859                 }
860         }
861         maplist_reply = strzone(strcat(maplist_reply, "\n"));
862         MapInfo_ClearTemps();
863
864         for(i = 0; i < 10; ++i)
865         {
866                 records_reply[i] = strzone(getrecords(i));
867         }
868         
869         ladder_reply = strzone(getladder());
870
871         rankings_reply = strzone(getrankings());
872
873         // begin other init
874         ClientInit_Spawn();
875         RandomSeed_Spawn();
876         PingPLReport_Spawn();
877
878         CheatInit();
879
880         localcmd("\n_sv_hook_gamestart ", GetGametype(), "\n");
881
882         // fill sv_curl_serverpackages from .serverpackage files
883         if(autocvar_sv_curl_serverpackages_auto)
884         {
885                 s = "";
886                 n = tokenize_console(cvar_string("sv_curl_serverpackages"));
887                 for(i = 0; i < n; ++i)
888                         if(substring(argv(i), -14, -1) != "-serverpackage.txt")
889                         if(substring(argv(i), -14, -1) != ".serverpackage") // OLD legacy
890                                 s = strcat(s, " ", argv(i));
891                 fd = search_begin("*-serverpackage.txt", TRUE, FALSE);
892                 if(fd >= 0)
893                 {
894                         j = search_getsize(fd);
895                         for(i = 0; i < j; ++i)
896                                 s = strcat(s, " ", search_getfilename(fd, i));
897                         search_end(fd);
898                 }
899                 fd = search_begin("*.serverpackage", TRUE, FALSE);
900                 if(fd >= 0)
901                 {
902                         j = search_getsize(fd);
903                         for(i = 0; i < j; ++i)
904                                 s = strcat(s, " ", search_getfilename(fd, i));
905                         search_end(fd);
906                 }
907                 cvar_set("sv_curl_serverpackages", substring(s, 1, -1));
908         }
909
910         PlayerStats_Init();
911
912         // MOD AUTHORS: change this, and possibly remove a few of the blocks below to ignore certain changes
913         modname = "Xonotic";
914         // physics/balance/config changes that count as mod
915         if(cvar_string("g_mod_physics") != cvar_defstring("g_mod_physics"))
916                 modname = cvar_string("g_mod_physics");
917         if(cvar_string("g_mod_balance") != cvar_defstring("g_mod_balance"))
918                 modname = cvar_string("g_mod_balance");
919         if(cvar_string("g_mod_config") != cvar_defstring("g_mod_config"))
920                 modname = cvar_string("g_mod_config");
921         // weird mutators that deserve to count as mod
922         if(autocvar_g_minstagib)
923                 modname = "MinstaGib";
924         // extra mutators that deserve to count as mod
925         MUTATOR_CALLHOOK(SetModname);
926         // weird game types that deserve to count as mod
927         if(g_cts)
928                 modname = "CTS";
929         // save it for later
930         modname = strzone(modname);
931
932         WinningConditionHelper(); // set worldstatus
933
934         world_initialized = 1;
935 }
936
937 void spawnfunc_light (void)
938 {
939         //makestatic (self); // Who the f___ did that?
940         remove(self);
941 }
942
943 string GetGametype()
944 {
945         return MapInfo_Type_ToString(MapInfo_LoadedGametype);
946 }
947
948 string getmapname_stored;
949 string GetMapname()
950 {
951         return mapname;
952 }
953
954 float Map_Count, Map_Current;
955 string Map_Current_Name;
956
957 // NOTE: this now expects the map list to be already tokenized and the count in Map_Count
958 float GetMaplistPosition()
959 {
960         float pos, idx;
961         string map;
962
963         map = GetMapname();
964         idx = autocvar_g_maplist_index;
965
966         if(idx >= 0)
967                 if(idx < Map_Count)
968                         if(map == argv(idx))
969                                 return idx;
970
971         for(pos = 0; pos < Map_Count; ++pos)
972                 if(map == argv(pos))
973                         return pos;
974
975         // resume normal maplist rotation if current map is not in g_maplist
976         return idx;
977 }
978
979 float MapHasRightSize(string map)
980 {
981         float fh;
982         if(currentbots || autocvar_bot_number || player_count < autocvar_minplayers)
983         if(autocvar_g_maplist_check_waypoints)
984         {
985                 dprint("checkwp "); dprint(map);
986                 if(!fexists(strcat("maps/", map, ".waypoints")))
987                 {
988                         dprint(": no waypoints\n");
989                         return FALSE;
990                 }
991                 dprint(": has waypoints\n");
992         }
993
994         // open map size restriction file
995         dprint("opensize "); dprint(map);
996         fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
997         if(fh >= 0)
998         {
999                 float mapmin, mapmax;
1000                 dprint(": ok, ");
1001                 mapmin = stof(fgets(fh));
1002                 mapmax = stof(fgets(fh));
1003                 fclose(fh);
1004                 if(player_count < mapmin)
1005                 {
1006                         dprint("not enough\n");
1007                         return FALSE;
1008                 }
1009                 if(player_count > mapmax)
1010                 {
1011                         dprint("too many\n");
1012                         return FALSE;
1013                 }
1014                 dprint("right size\n");
1015                 return TRUE;
1016         }
1017         dprint(": not found\n");
1018         return TRUE;
1019 }
1020
1021 string Map_Filename(float position)
1022 {
1023         return strcat("maps/", argv(position), ".bsp");
1024 }
1025
1026 string strwords(string s, float w)
1027 {
1028         float endpos;
1029         for(endpos = 0; w && endpos >= 0; --w)
1030                 endpos = strstrofs(s, " ", endpos + 1);
1031         if(endpos < 0)
1032                 return s;
1033         else
1034                 return substring(s, 0, endpos);
1035 }
1036
1037 float strhasword(string s, string w)
1038 {
1039         return strstrofs(strcat(" ", s, " "), strcat(" ", w, " "), 0) >= 0;
1040 }
1041
1042 void Map_MarkAsRecent(string m)
1043 {
1044         cvar_set("g_maplist_mostrecent", strwords(strcat(m, " ", autocvar_g_maplist_mostrecent), max(0, autocvar_g_maplist_mostrecent_count)));
1045 }
1046
1047 float Map_IsRecent(string m)
1048 {
1049         return strhasword(autocvar_g_maplist_mostrecent, m);
1050 }
1051
1052 float Map_Check(float position, float pass)
1053 {
1054         string filename;
1055         string map_next;
1056         map_next = argv(position);
1057         if(pass <= 1)
1058         {
1059                 if(Map_IsRecent(map_next))
1060                         return 0;
1061         }
1062         filename = Map_Filename(position);
1063         if(MapInfo_CheckMap(map_next))
1064         {
1065                 if(pass == 2)
1066                         return 1;
1067                 if(MapHasRightSize(map_next))
1068                         return 1;
1069                 return 0;
1070         }
1071         else
1072                 dprint( "Couldn't select '", filename, "'..\n" );
1073
1074         return 0;
1075 }
1076
1077 void Map_Goto_SetStr(string nextmapname)
1078 {
1079         if(getmapname_stored != "")
1080                 strunzone(getmapname_stored);
1081         if(nextmapname == "")
1082                 getmapname_stored = "";
1083         else
1084                 getmapname_stored = strzone(nextmapname);
1085 }
1086
1087 void Map_Goto_SetFloat(float position)
1088 {
1089         cvar_set("g_maplist_index", ftos(position));
1090         Map_Goto_SetStr(argv(position));
1091 }
1092
1093 void Map_Goto(float reinit)
1094 {
1095         MapInfo_LoadMap(getmapname_stored, reinit);
1096 }
1097
1098 // return codes of map selectors:
1099 //   -1 = temporary failure (that is, try some method that is guaranteed to succeed)
1100 //   -2 = permanent failure
1101 float() MaplistMethod_Iterate = // usual method
1102 {
1103         float pass, i;
1104
1105         for(pass = 1; pass <= 2; ++pass)
1106         {
1107                 for(i = 1; i < Map_Count; ++i)
1108                 {
1109                         float mapindex;
1110                         mapindex = mod(i + Map_Current, Map_Count);
1111                         if(Map_Check(mapindex, pass))
1112                                 return mapindex;
1113                 }
1114         }
1115         return -1;
1116 }
1117
1118 float() MaplistMethod_Repeat = // fallback method
1119 {
1120         if(Map_Check(Map_Current, 2))
1121                 return Map_Current;
1122         return -2;
1123 }
1124
1125 float() MaplistMethod_Random = // random map selection
1126 {
1127         float i, imax;
1128
1129         imax = 42;
1130
1131         for(i = 0; i <= imax; ++i)
1132         {
1133                 float mapindex;
1134                 mapindex = mod(Map_Current + floor(random() * (Map_Count - 1) + 1), Map_Count); // any OTHER map
1135                 if(Map_Check(mapindex, 1))
1136                         return mapindex;
1137         }
1138         return -1;
1139 }
1140
1141 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
1142 // the exponent sets a bias on the map selection:
1143 // the higher the exponent, the less likely "shortly repeated" same maps are
1144 {
1145         float i, j, imax, insertpos;
1146
1147         imax = 42;
1148
1149         for(i = 0; i <= imax; ++i)
1150         {
1151                 string newlist;
1152
1153                 // now reinsert this at another position
1154                 insertpos = pow(random(), 1 / exponent);       // ]0, 1]
1155                 insertpos = insertpos * (Map_Count - 1);       // ]0, Map_Count - 1]
1156                 insertpos = ceil(insertpos) + 1;               // {2, 3, 4, ..., Map_Count}
1157                 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
1158
1159                 // insert the current map there
1160                 newlist = "";
1161                 for(j = 1; j < insertpos; ++j)                 // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
1162                         newlist = strcat(newlist, " ", argv(j));
1163                 newlist = strcat(newlist, " ", argv(0));       // now insert the just selected map
1164                 for(j = insertpos; j < Map_Count; ++j)         // i == Map_Count: no loop, has just been inserted as last
1165                         newlist = strcat(newlist, " ", argv(j));
1166                 newlist = substring(newlist, 1, strlen(newlist) - 1);
1167                 cvar_set("g_maplist", newlist);
1168                 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1169
1170                 // NOTE: the selected map has just been inserted at (insertpos-1)th position
1171                 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
1172                 if(Map_Check(Map_Current, 1))
1173                         return Map_Current;
1174         }
1175         return -1;
1176 }
1177
1178 void Maplist_Init()
1179 {
1180         Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1181         if(Map_Count == 0)
1182         {
1183                 bprint( "Maplist is empty!  Resetting it to default map list.\n" );
1184                 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
1185                 if(autocvar_g_maplist_shuffle)
1186                         ShuffleMaplist();
1187                 localcmd("\nmenu_cmd sync\n");
1188                 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1189         }
1190         if(Map_Count == 0)
1191                 error("empty maplist, cannot select a new map");
1192         Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
1193
1194         if(Map_Current_Name)
1195                 strunzone(Map_Current_Name);
1196         Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
1197         // this may or may not be correct, but who cares, in the worst case a map
1198         // isn't chosen in the first pass that should have been
1199 }
1200
1201 string GetNextMap()
1202 {
1203         float nextMap;
1204
1205         Maplist_Init();
1206         nextMap = -1;
1207
1208         if(nextMap == -1)
1209                 if(autocvar_g_maplist_shuffle > 0)
1210                         nextMap = MaplistMethod_Shuffle(autocvar_g_maplist_shuffle + 1);
1211
1212         if(nextMap == -1)
1213                 if(autocvar_g_maplist_selectrandom)
1214                         nextMap = MaplistMethod_Random();
1215
1216         if(nextMap == -1)
1217                 nextMap = MaplistMethod_Iterate();
1218
1219         if(nextMap == -1)
1220                 nextMap = MaplistMethod_Repeat();
1221
1222         if(nextMap >= 0)
1223         {
1224                 Map_Goto_SetFloat(nextMap);
1225                 return getmapname_stored;
1226         }
1227
1228         return "";
1229 }
1230
1231 float DoNextMapOverride(float reinit)
1232 {
1233         if(autocvar_g_campaign)
1234         {
1235                 CampaignPostIntermission();
1236                 alreadychangedlevel = TRUE;
1237                 return TRUE;
1238         }
1239         if(autocvar_quit_when_empty)
1240         {
1241                 if(player_count <= currentbots)
1242                 {
1243                         localcmd("quit\n");
1244                         alreadychangedlevel = TRUE;
1245                         return TRUE;
1246                 }
1247         }
1248         if(autocvar_quit_and_redirect != "")
1249         {
1250                 redirection_target = strzone(autocvar_quit_and_redirect);
1251                 alreadychangedlevel = TRUE;
1252                 return TRUE;
1253         }
1254         if (!reinit && autocvar_samelevel) // if samelevel is set, stay on same level
1255         {
1256                 localcmd("restart\n");
1257                 alreadychangedlevel = TRUE;
1258                 return TRUE;
1259         }
1260         if(autocvar_nextmap != "")
1261                 if(MapInfo_CheckMap(autocvar_nextmap))
1262                 {
1263                         Map_Goto_SetStr(autocvar_nextmap);
1264                         Map_Goto(reinit);
1265                         alreadychangedlevel = TRUE;
1266                         return TRUE;
1267                 }
1268         if(!reinit && autocvar_lastlevel)
1269         {
1270                 cvar_settemp_restore();
1271                 localcmd("set lastlevel 0\ntogglemenu 1\n");
1272                 alreadychangedlevel = TRUE;
1273                 return TRUE;
1274         }
1275         return FALSE;
1276 }
1277
1278 void GotoNextMap(float reinit)
1279 {
1280         //string nextmap;
1281         //float n, nummaps;
1282         //string s;
1283         if (alreadychangedlevel)
1284                 return;
1285         alreadychangedlevel = TRUE;
1286
1287         {
1288                 string nextMap;
1289                 float allowReset;
1290
1291                 for(allowReset = 1; allowReset >= 0; --allowReset)
1292                 {
1293                         nextMap = GetNextMap();
1294                         if(nextMap != "")
1295                                 break;
1296
1297                         if(allowReset)
1298                         {
1299                                 bprint( "Maplist contains no single playable map!  Resetting it to default map list.\n" );
1300                                 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
1301                                 if(autocvar_g_maplist_shuffle)
1302                                         ShuffleMaplist();
1303                                 localcmd("\nmenu_cmd sync\n");
1304                         }
1305                         else
1306                         {
1307                                 error("Everything is broken - not even the default map list works. Please report this to the developers.");
1308                         }
1309                 }
1310                 Map_Goto(reinit);
1311         }
1312 }
1313
1314
1315 /*
1316 ============
1317 IntermissionThink
1318
1319 When the player presses attack or jump, change to the next level
1320 ============
1321 */
1322 .float autoscreenshot;
1323 void() MapVote_Start;
1324 void() MapVote_Think;
1325 float mapvote_initialized;
1326 void IntermissionThink()
1327 {
1328         FixIntermissionClient(self);
1329         
1330         float server_screenshot = (autocvar_sv_autoscreenshot && self.cvar_cl_autoscreenshot);
1331         float client_screenshot = (self.cvar_cl_autoscreenshot == 2);
1332         
1333         if( (server_screenshot || client_screenshot)
1334                 && ((self.autoscreenshot > 0) && (time > self.autoscreenshot)) )
1335         {
1336                 self.autoscreenshot = -1;
1337                 if(clienttype(self) == CLIENTTYPE_REAL) { stuffcmd(self, sprintf("\nscreenshot screenshots/autoscreenshot/%s-%s.jpg; echo \"^5A screenshot has been taken at request of the server.\"", GetMapname(), strftime(FALSE, "%s"))); }
1338                 return;
1339         }
1340
1341         if (time < intermission_exittime)
1342                 return;
1343
1344         if(!mapvote_initialized)
1345                 if (time < intermission_exittime + 10 && !(self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE))
1346                         return;
1347
1348         MapVote_Start();
1349 }
1350
1351 /*
1352 ============
1353 FindIntermission
1354
1355 Returns the entity to view from
1356 ============
1357 */
1358 /*
1359 entity FindIntermission()
1360 {
1361         local   entity spot;
1362         local   float cyc;
1363
1364 // look for info_intermission first
1365         spot = find (world, classname, "info_intermission");
1366         if (spot)
1367         {       // pick a random one
1368                 cyc = random() * 4;
1369                 while (cyc > 1)
1370                 {
1371                         spot = find (spot, classname, "info_intermission");
1372                         if (!spot)
1373                                 spot = find (spot, classname, "info_intermission");
1374                         cyc = cyc - 1;
1375                 }
1376                 return spot;
1377         }
1378
1379 // then look for the start position
1380         spot = find (world, classname, "info_player_start");
1381         if (spot)
1382                 return spot;
1383
1384 // testinfo_player_start is only found in regioned levels
1385         spot = find (world, classname, "testplayerstart");
1386         if (spot)
1387                 return spot;
1388
1389 // then look for the start position
1390         spot = find (world, classname, "info_player_deathmatch");
1391         if (spot)
1392                 return spot;
1393
1394         //objerror ("FindIntermission: no spot");
1395         return world;
1396 }
1397 */
1398
1399 /*
1400 ===============================================================================
1401
1402 RULES
1403
1404 ===============================================================================
1405 */
1406
1407 void DumpStats(float final)
1408 {
1409         float file;
1410         string s;
1411         float to_console;
1412         float to_eventlog;
1413         float to_file;
1414         float i;
1415
1416         to_console = autocvar_sv_logscores_console;
1417         to_eventlog = autocvar_sv_eventlog;
1418         to_file = autocvar_sv_logscores_file;
1419
1420         if(!final)
1421         {
1422                 to_console = TRUE; // always print printstats replies
1423                 to_eventlog = FALSE; // but never print them to the event log
1424         }
1425
1426         if(to_eventlog)
1427                 if(autocvar_sv_eventlog_console)
1428                         to_console = FALSE; // otherwise we get the output twice
1429
1430         if(final)
1431                 s = ":scores:";
1432         else
1433                 s = ":status:";
1434         s = strcat(s, GetGametype(), "_", GetMapname(), ":", ftos(rint(time)));
1435
1436         if(to_console)
1437                 print(s, "\n");
1438         if(to_eventlog)
1439                 GameLogEcho(s);
1440         if(to_file)
1441         {
1442                 file = fopen(autocvar_sv_logscores_filename, FILE_APPEND);
1443                 if(file == -1)
1444                         to_file = FALSE;
1445                 else
1446                         fputs(file, strcat(s, "\n"));
1447         }
1448
1449         s = strcat(":labels:player:", GetPlayerScoreString(world, 0));
1450         if(to_console)
1451                 print(s, "\n");
1452         if(to_eventlog)
1453                 GameLogEcho(s);
1454         if(to_file)
1455                 fputs(file, strcat(s, "\n"));
1456
1457         FOR_EACH_CLIENT(other)
1458         {
1459                 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && autocvar_sv_logscores_bots))
1460                 {
1461                         s = strcat(":player:see-labels:", GetPlayerScoreString(other, 0), ":");
1462                         s = strcat(s, ftos(rint(time - other.jointime)), ":");
1463                         if(other.classname == "player" || g_arena || g_ca || g_lms)
1464                                 s = strcat(s, ftos(other.team), ":");
1465                         else
1466                                 s = strcat(s, "spectator:");
1467
1468                         if(to_console)
1469                                 print(s, other.netname, "\n");
1470                         if(to_eventlog)
1471                                 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname));
1472                         if(to_file)
1473                                 fputs(file, strcat(s, other.netname, "\n"));
1474                 }
1475         }
1476
1477         if(teamplay)
1478         {
1479                 s = strcat(":labels:teamscores:", GetTeamScoreString(0, 0));
1480                 if(to_console)
1481                         print(s, "\n");
1482                 if(to_eventlog)
1483                         GameLogEcho(s);
1484                 if(to_file)
1485                         fputs(file, strcat(s, "\n"));
1486
1487                 for(i = 1; i < 16; ++i)
1488                 {
1489                         s = strcat(":teamscores:see-labels:", GetTeamScoreString(i, 0));
1490                         s = strcat(s, ":", ftos(i));
1491                         if(to_console)
1492                                 print(s, "\n");
1493                         if(to_eventlog)
1494                                 GameLogEcho(s);
1495                         if(to_file)
1496                                 fputs(file, strcat(s, "\n"));
1497                 }
1498         }
1499
1500         if(to_console)
1501                 print(":end\n");
1502         if(to_eventlog)
1503                 GameLogEcho(":end");
1504         if(to_file)
1505         {
1506                 fputs(file, ":end\n");
1507                 fclose(file);
1508         }
1509 }
1510
1511 void FixIntermissionClient(entity e)
1512 {
1513         string s;
1514         if(!e.autoscreenshot) // initial call
1515         {
1516                 e.autoscreenshot = time + 0.8;  // used for autoscreenshot
1517                 e.health = -2342;
1518                 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
1519                 e.solid = SOLID_NOT;
1520                 e.movetype = MOVETYPE_NONE;
1521                 e.takedamage = DAMAGE_NO;
1522                 if(e.weaponentity)
1523                 {
1524                         e.weaponentity.effects = EF_NODRAW;
1525                         if (e.weaponentity.weaponentity)
1526                                 e.weaponentity.weaponentity.effects = EF_NODRAW;
1527                 }
1528                 if(clienttype(e) == CLIENTTYPE_REAL)
1529                 {
1530                         stuffcmd(e, "\nscr_printspeed 1000000\n");
1531                         s = autocvar_sv_intermission_cdtrack;
1532                         if(s != "")
1533                                 stuffcmd(e, strcat("\ncd loop ", s, "\n"));
1534                         msg_entity = e;
1535                         WriteByte(MSG_ONE, SVC_INTERMISSION);
1536                 }
1537         }
1538 }
1539
1540 void minstagib_stop_countdown(entity e);
1541 /*
1542 go to the next level for deathmatch
1543 only called if a time or frag limit has expired
1544 */
1545 void NextLevel()
1546 {
1547         gameover = TRUE;
1548
1549         intermission_running = 1;
1550
1551 // enforce a wait time before allowing changelevel
1552         if(player_count > 0)
1553                 intermission_exittime = time + autocvar_sv_mapchange_delay;
1554         else
1555                 intermission_exittime = -1;
1556
1557         /*
1558         WriteByte (MSG_ALL, SVC_CDTRACK);
1559         WriteByte (MSG_ALL, 3);
1560         WriteByte (MSG_ALL, 3);
1561         // done in FixIntermission
1562         */
1563
1564         //pos = FindIntermission ();
1565
1566         VoteReset();
1567
1568         DumpStats(TRUE);
1569
1570         // send statistics
1571         entity e;
1572         PlayerStats_EndMatch(1);
1573         FOR_EACH_CLIENT(e)
1574                 PlayerStats_AddGlobalInfo(e);
1575         PlayerStats_Shutdown();
1576         WeaponStats_Shutdown();
1577
1578         if(autocvar_sv_eventlog)
1579                 GameLogEcho(":gameover");
1580
1581         GameLogClose();
1582
1583         FOR_EACH_PLAYER(other) {
1584                 minstagib_stop_countdown(other);
1585                 FixIntermissionClient(other);
1586                 if(other.winning)
1587                         bprint(other.netname, " ^7wins.\n");
1588         }
1589
1590         if(autocvar_g_campaign)
1591                 CampaignPreIntermission();
1592
1593         localcmd("\nsv_hook_gameend\n");
1594 }
1595
1596 /*
1597 ============
1598 CheckRules_Player
1599
1600 Exit deathmatch games upon conditions
1601 ============
1602 */
1603 void CheckRules_Player()
1604 {
1605         if (gameover)   // someone else quit the game already
1606                 return;
1607
1608         if(self.deadflag == DEAD_NO)
1609                 self.play_time += frametime;
1610
1611         // fixme: don't check players; instead check spawnfunc_dom_team and spawnfunc_ctf_team entities
1612         //   (div0: and that in CheckRules_World please)
1613 }
1614
1615 float checkrules_equality;
1616 float checkrules_suddendeathwarning;
1617 float checkrules_suddendeathend;
1618 float checkrules_overtimesadded; //how many overtimes have been already added
1619
1620 float WINNING_NO = 0; // no winner, but time limits may terminate the game
1621 float WINNING_YES = 1; // winner found
1622 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
1623 float WINNING_STARTSUDDENDEATHOVERTIME = 3; // no winner, enter suddendeath overtime NOW
1624
1625 float InitiateSuddenDeath()
1626 {
1627         // Check first whether normal overtimes could be added before initiating suddendeath mode
1628         // - for this timelimit_overtime needs to be >0 of course
1629         // - also check the winning condition calculated in the previous frame and only add normal overtime
1630         //   again, if at the point at which timelimit would be extended again, still no winner was found
1631         if (!autocvar_g_campaign && (checkrules_overtimesadded >= 0) && (checkrules_overtimesadded < autocvar_timelimit_overtimes) && autocvar_timelimit_overtime && !(g_race && !g_race_qualifying))
1632         {
1633                 return 1; // need to call InitiateOvertime later
1634         }
1635         else
1636         {
1637                 if(!checkrules_suddendeathend)
1638                 {
1639                         if(autocvar_g_campaign)
1640                                 checkrules_suddendeathend = time; // no suddendeath in campaign
1641                         else
1642                                 checkrules_suddendeathend = time + 60 * autocvar_timelimit_suddendeath;
1643                         if(g_race && !g_race_qualifying)
1644                                 race_StartCompleting();
1645                 }
1646                 return 0;
1647         }
1648 }
1649
1650 void InitiateOvertime() // ONLY call this if InitiateSuddenDeath returned true
1651 {
1652         ++checkrules_overtimesadded;
1653         //add one more overtime by simply extending the timelimit
1654         float tl;
1655         tl = autocvar_timelimit;
1656         tl += autocvar_timelimit_overtime;
1657         cvar_set("timelimit", ftos(tl));
1658         string minutesPlural;
1659         if (autocvar_timelimit_overtime == 1)
1660                 minutesPlural = " ^3minute";
1661         else
1662                 minutesPlural = " ^3minutes";
1663
1664         bcenterprint(
1665                 strcat(
1666                         "^3Now playing ^1OVERTIME^3!\n\n^3Added ^1",
1667                         ftos(autocvar_timelimit_overtime),
1668                         minutesPlural,
1669                         " to the game!"
1670                 )
1671         );
1672 }
1673
1674 float GetWinningCode(float fraglimitreached, float equality)
1675 {
1676         if(autocvar_g_campaign == 1)
1677                 if(fraglimitreached)
1678                         return WINNING_YES;
1679                 else
1680                         return WINNING_NO;
1681
1682         else
1683                 if(equality)
1684                         if(fraglimitreached)
1685                                 return WINNING_STARTSUDDENDEATHOVERTIME;
1686                         else
1687                                 return WINNING_NEVER;
1688                 else
1689                         if(fraglimitreached)
1690                                 return WINNING_YES;
1691                         else
1692                                 return WINNING_NO;
1693 }
1694
1695 // set the .winning flag for exactly those players with a given field value
1696 void SetWinners(.float field, float value)
1697 {
1698         entity head;
1699         FOR_EACH_PLAYER(head)
1700                 head.winning = (head.field == value);
1701 }
1702
1703 // set the .winning flag for those players with a given field value
1704 void AddWinners(.float field, float value)
1705 {
1706         entity head;
1707         FOR_EACH_PLAYER(head)
1708                 if(head.field == value)
1709                         head.winning = 1;
1710 }
1711
1712 // clear the .winning flags
1713 void ClearWinners(void)
1714 {
1715         entity head;
1716         FOR_EACH_PLAYER(head)
1717                 head.winning = 0;
1718 }
1719
1720 // Onslaught winning condition:
1721 // game terminates if only one team has a working generator (or none)
1722 float WinningCondition_Onslaught()
1723 {
1724         entity head;
1725         float t1, t2, t3, t4;
1726
1727         WinningConditionHelper(); // set worldstatus
1728
1729         if(inWarmupStage)
1730                 return WINNING_NO;
1731
1732         // first check if the game has ended
1733         t1 = t2 = t3 = t4 = 0;
1734         head = find(world, classname, "onslaught_generator");
1735         while (head)
1736         {
1737                 if (head.health > 0)
1738                 {
1739                         if (head.team == COLOR_TEAM1) t1 = 1;
1740                         if (head.team == COLOR_TEAM2) t2 = 1;
1741                         if (head.team == COLOR_TEAM3) t3 = 1;
1742                         if (head.team == COLOR_TEAM4) t4 = 1;
1743                 }
1744                 head = find(head, classname, "onslaught_generator");
1745         }
1746         if (t1 + t2 + t3 + t4 < 2)
1747         {
1748                 // game over, only one team remains (or none)
1749                 ClearWinners();
1750                 if (t1) SetWinners(team, COLOR_TEAM1);
1751                 if (t2) SetWinners(team, COLOR_TEAM2);
1752                 if (t3) SetWinners(team, COLOR_TEAM3);
1753                 if (t4) SetWinners(team, COLOR_TEAM4);
1754                 dprint("Have a winner, ending game.\n");
1755                 return WINNING_YES;
1756         }
1757
1758         // Two or more teams remain
1759         return WINNING_NO;
1760 }
1761
1762 float LMS_NewPlayerLives()
1763 {
1764         float fl;
1765         fl = autocvar_fraglimit;
1766         if(fl == 0)
1767                 fl = 999;
1768
1769         // first player has left the game for dying too much? Nobody else can get in.
1770         if(lms_lowest_lives < 1)
1771                 return 0;
1772
1773         if(!autocvar_g_lms_join_anytime)
1774                 if(lms_lowest_lives < fl - autocvar_g_lms_last_join)
1775                         return 0;
1776
1777         return bound(1, lms_lowest_lives, fl);
1778 }
1779
1780 // Assault winning condition: If the attackers triggered a round end (by fulfilling all objectives)
1781 // they win. Otherwise the defending team wins once the timelimit passes.
1782 void assault_new_round();
1783 float WinningCondition_Assault()
1784 {
1785         float status;
1786
1787         WinningConditionHelper(); // set worldstatus
1788
1789         status = WINNING_NO;
1790         // as the timelimit has not yet passed just assume the defending team will win
1791         if(assault_attacker_team == COLOR_TEAM1)
1792         {
1793                 SetWinners(team, COLOR_TEAM2);
1794         }
1795         else
1796         {
1797                 SetWinners(team, COLOR_TEAM1);
1798         }
1799
1800         entity ent;
1801         ent = find(world, classname, "target_assault_roundend");
1802         if(ent)
1803         {
1804                 if(ent.winning) // round end has been triggered by attacking team
1805                 {
1806                         bprint("ASSAULT: round completed...\n");
1807                         SetWinners(team, assault_attacker_team);
1808
1809                         TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 666 - TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 0));
1810
1811                         if(ent.cnt == 1 || autocvar_g_campaign) // this was the second round
1812                         {
1813                                 status = WINNING_YES;
1814                         }
1815                         else
1816                         {
1817                                 entity oldself;
1818                                 oldself = self;
1819                                 self = ent;
1820                                 assault_new_round();
1821                                 self = oldself;
1822                         }
1823                 }
1824         }
1825
1826         return status;
1827 }
1828
1829 // LMS winning condition: game terminates if and only if there's at most one
1830 // one player who's living lives. Top two scores being equal cancels the time
1831 // limit.
1832 float WinningCondition_LMS()
1833 {
1834         entity head, head2;
1835         float have_player;
1836         float have_players;
1837         float l;
1838
1839         have_player = FALSE;
1840         have_players = FALSE;
1841         l = LMS_NewPlayerLives();
1842
1843         head = find(world, classname, "player");
1844         if(head)
1845                 have_player = TRUE;
1846         head2 = find(head, classname, "player");
1847         if(head2)
1848                 have_players = TRUE;
1849
1850         if(have_player)
1851         {
1852                 // we have at least one player
1853                 if(have_players)
1854                 {
1855                         // two or more active players - continue with the game
1856                 }
1857                 else
1858                 {
1859                         // exactly one player?
1860
1861                         ClearWinners();
1862                         SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1863
1864                         if(l)
1865                         {
1866                                 // game still running (that is, nobody got removed from the game by a frag yet)? then continue
1867                                 return WINNING_NO;
1868                         }
1869                         else
1870                         {
1871                                 // a winner!
1872                                 // and assign him his first place
1873                                 PlayerScore_Add(head, SP_LMS_RANK, 1);
1874                                 return WINNING_YES;
1875                         }
1876                 }
1877         }
1878         else
1879         {
1880                 // nobody is playing at all...
1881                 if(l)
1882                 {
1883                         // wait for players...
1884                 }
1885                 else
1886                 {
1887                         // SNAFU (maybe a draw game?)
1888                         ClearWinners();
1889                         dprint("No players, ending game.\n");
1890                         return WINNING_YES;
1891                 }
1892         }
1893
1894         // When we get here, we have at least two players who are actually LIVING,
1895         // now check if the top two players have equal score.
1896         WinningConditionHelper();
1897
1898         ClearWinners();
1899         if(WinningConditionHelper_winner)
1900                 WinningConditionHelper_winner.winning = TRUE;
1901         if(WinningConditionHelper_topscore == WinningConditionHelper_secondscore)
1902                 return WINNING_NEVER;
1903
1904         // Top two have different scores? Way to go for our beloved TIMELIMIT!
1905         return WINNING_NO;
1906 }
1907
1908 void ShuffleMaplist()
1909 {
1910         cvar_set("g_maplist", shufflewords(autocvar_g_maplist));
1911 }
1912
1913 float leaderfrags;
1914 float WinningCondition_Scores(float limit, float leadlimit)
1915 {
1916         float limitreached;
1917
1918         // TODO make everything use THIS winning condition (except LMS)
1919         WinningConditionHelper();
1920
1921         if(teamplay)
1922         {
1923                 team1_score = TeamScore_GetCompareValue(COLOR_TEAM1);
1924                 team2_score = TeamScore_GetCompareValue(COLOR_TEAM2);
1925                 team3_score = TeamScore_GetCompareValue(COLOR_TEAM3);
1926                 team4_score = TeamScore_GetCompareValue(COLOR_TEAM4);
1927         }
1928
1929         ClearWinners();
1930         if(WinningConditionHelper_winner)
1931                 WinningConditionHelper_winner.winning = 1;
1932         if(WinningConditionHelper_winnerteam >= 0)
1933                 SetWinners(team, WinningConditionHelper_winnerteam);
1934
1935         if(WinningConditionHelper_lowerisbetter)
1936         {
1937                 WinningConditionHelper_topscore = -WinningConditionHelper_topscore;
1938                 WinningConditionHelper_secondscore = -WinningConditionHelper_secondscore;
1939                 limit = -limit;
1940         }
1941
1942         if(WinningConditionHelper_zeroisworst)
1943                 leadlimit = 0; // not supported in this mode
1944
1945         if(g_dm || g_tdm || g_arena || g_ca || (g_race && !g_race_qualifying) || g_nexball)
1946         // these modes always score in increments of 1, thus this makes sense
1947         {
1948                 if(leaderfrags != WinningConditionHelper_topscore)
1949                 {
1950                         leaderfrags = WinningConditionHelper_topscore;
1951
1952                         if (limit)
1953                         if (leaderfrags == limit - 1)
1954                                 Announce("1fragleft");
1955                         else if (leaderfrags == limit - 2)
1956                                 Announce("2fragsleft");
1957                         else if (leaderfrags == limit - 3)
1958                                 Announce("3fragsleft");
1959                 }
1960         }
1961
1962         limitreached = FALSE;
1963         if(limit)
1964                 if(WinningConditionHelper_topscore >= limit)
1965                         limitreached = TRUE;
1966         if(leadlimit)
1967         {
1968                 float leadlimitreached;
1969                 leadlimitreached = (WinningConditionHelper_topscore - WinningConditionHelper_secondscore >= leadlimit);
1970                 if(autocvar_leadlimit_and_fraglimit)
1971                         limitreached = (limitreached && leadlimitreached);
1972                 else
1973                         limitreached = (limitreached || leadlimitreached);
1974         }
1975
1976         return GetWinningCode(
1977                 WinningConditionHelper_topscore && limitreached,
1978                 WinningConditionHelper_equality
1979         );
1980 }
1981
1982 float WinningCondition_Race(float fraglimit)
1983 {
1984         float wc;
1985         entity p;
1986         float n, c;
1987
1988         n = 0;
1989         c = 0;
1990         FOR_EACH_PLAYER(p)
1991         {
1992                 ++n;
1993                 if(p.race_completed)
1994                         ++c;
1995         }
1996         if(n && (n == c))
1997                 return WINNING_YES;
1998         wc = WinningCondition_Scores(fraglimit, 0);
1999
2000         // ALWAYS initiate overtime, unless EVERYONE has finished the race!
2001         if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
2002         // do NOT support equality when the laps are all raced!
2003                 return WINNING_STARTSUDDENDEATHOVERTIME;
2004         else
2005                 return WINNING_NEVER;
2006         return wc;
2007 }
2008
2009 float WinningCondition_QualifyingThenRace(float limit)
2010 {
2011         float wc;
2012         wc = WinningCondition_Scores(limit, 0);
2013
2014         // NEVER initiate overtime
2015         if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
2016         {
2017                 return WINNING_YES;
2018         }
2019
2020         return wc;
2021 }
2022
2023 float WinningCondition_RanOutOfSpawns()
2024 {
2025         entity head;
2026
2027         if(have_team_spawns <= 0)
2028                 return WINNING_NO;
2029
2030         if(autocvar_g_spawn_useallspawns <= 0)
2031                 return WINNING_NO;
2032
2033         if(!some_spawn_has_been_used)
2034                 return WINNING_NO;
2035
2036         team1_score = team2_score = team3_score = team4_score = 0;
2037
2038         FOR_EACH_PLAYER(head) if(head.deadflag == DEAD_NO)
2039         {
2040                 if(head.team == COLOR_TEAM1)
2041                         team1_score = 1;
2042                 else if(head.team == COLOR_TEAM2)
2043                         team2_score = 1;
2044                 else if(head.team == COLOR_TEAM3)
2045                         team3_score = 1;
2046                 else if(head.team == COLOR_TEAM4)
2047                         team4_score = 1;
2048         }
2049
2050         for(head = world; (head = find(head, classname, "info_player_deathmatch")) != world; )
2051         {
2052                 if(head.team == COLOR_TEAM1)
2053                         team1_score = 1;
2054                 else if(head.team == COLOR_TEAM2)
2055                         team2_score = 1;
2056                 else if(head.team == COLOR_TEAM3)
2057                         team3_score = 1;
2058                 else if(head.team == COLOR_TEAM4)
2059                         team4_score = 1;
2060         }
2061
2062         ClearWinners();
2063         if(team1_score + team2_score + team3_score + team4_score == 0)
2064         {
2065                 checkrules_equality = TRUE;
2066                 return WINNING_YES;
2067         }
2068         else if(team1_score + team2_score + team3_score + team4_score == 1)
2069         {
2070                 float t, i;
2071                 if(team1_score) t = COLOR_TEAM1;
2072                 if(team2_score) t = COLOR_TEAM2;
2073                 if(team3_score) t = COLOR_TEAM3;
2074                 if(team4_score) t = COLOR_TEAM4;
2075                 CheckAllowedTeams(world);
2076                 for(i = 0; i < MAX_TEAMSCORE; ++i)
2077                 {
2078                         if(t != COLOR_TEAM1) if(c1 >= 0) TeamScore_AddToTeam(COLOR_TEAM1, i, -1000);
2079                         if(t != COLOR_TEAM2) if(c2 >= 0) TeamScore_AddToTeam(COLOR_TEAM2, i, -1000);
2080                         if(t != COLOR_TEAM3) if(c3 >= 0) TeamScore_AddToTeam(COLOR_TEAM3, i, -1000);
2081                         if(t != COLOR_TEAM4) if(c4 >= 0) TeamScore_AddToTeam(COLOR_TEAM4, i, -1000);
2082                 }
2083
2084                 AddWinners(team, t);
2085                 return WINNING_YES;
2086         }
2087         else
2088                 return WINNING_NO;
2089 }
2090
2091 /*
2092 ============
2093 CheckRules_World
2094
2095 Exit deathmatch games upon conditions
2096 ============
2097 */
2098 void ReadyRestart();
2099 void CheckRules_World()
2100 {
2101         float timelimit;
2102         float fraglimit;
2103         float leadlimit;
2104
2105         VoteThink();
2106         MapVote_Think();
2107
2108         SetDefaultAlpha();
2109
2110         /*
2111         MapVote_Think should now do that part
2112         if (intermission_running)
2113                 if (time >= intermission_exittime + 60)
2114                 {
2115                         if(!DoNextMapOverride())
2116                                 GotoNextMap();
2117                         return;
2118                 }
2119         */
2120
2121         if (gameover)   // someone else quit the game already
2122         {
2123                 if(player_count == 0) // Nobody there? Then let's go to the next map
2124                         MapVote_Start();
2125                         // this will actually check the player count in the next frame
2126                         // again, but this shouldn't hurt
2127                 return;
2128         }
2129
2130         timelimit = autocvar_timelimit * 60;
2131         fraglimit = autocvar_fraglimit;
2132         leadlimit = autocvar_leadlimit;
2133
2134         if(inWarmupStage || time <= game_starttime) // NOTE: this is <= to prevent problems in the very tic where the game starts
2135         {
2136                 if(timelimit > 0)
2137                         timelimit = 0; // timelimit is not made for warmup
2138                 if(fraglimit > 0)
2139                         fraglimit = 0; // no fraglimit for now
2140                 leadlimit = 0; // no leadlimit for now
2141         }
2142
2143         if(g_onslaught)
2144                 timelimit = 0; // ONS has its own overtime rule
2145
2146         if(timelimit > 0)
2147         {
2148                 timelimit += game_starttime;
2149         }
2150         else if (timelimit < 0)
2151         {
2152                 // endmatch
2153                 NextLevel();
2154                 return;
2155         }
2156
2157         float wantovertime;
2158         wantovertime = 0;
2159
2160         if(checkrules_suddendeathend)
2161         {
2162                 if(!checkrules_suddendeathwarning)
2163                 {
2164                         checkrules_suddendeathwarning = TRUE;
2165                         if(g_race && !g_race_qualifying)
2166                                 bcenterprint("^3Everyone, finish your lap! The race is over!");
2167                         else
2168                                 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
2169                 }
2170         }
2171         else
2172         {
2173                 if (timelimit && time >= timelimit)
2174                 {
2175                         if(g_race && (g_race_qualifying == 2) && timelimit > 0)
2176                         {
2177                                 float totalplayers;
2178                                 float playerswithlaps;
2179                                 float readyplayers;
2180                                 entity head;
2181                                 totalplayers = playerswithlaps = readyplayers = 0;
2182                                 FOR_EACH_PLAYER(head)
2183                                 {
2184                                         ++totalplayers;
2185                                         if(PlayerScore_Add(head, SP_RACE_FASTEST, 0))
2186                                                 ++playerswithlaps;
2187                                         if(head.ready)
2188                                                 ++readyplayers;
2189                                 }
2190
2191                                 // at least 2 of the players have completed a lap: start the RACE
2192                                 // otherwise, the players should end the qualifying on their own
2193                                 if(readyplayers || playerswithlaps >= 2)
2194                                 {
2195                                         checkrules_suddendeathend = 0;
2196                                         ReadyRestart(); // go to race
2197                                         return;
2198                                 }
2199                                 else
2200                                         wantovertime |= InitiateSuddenDeath();
2201                         }
2202                         else
2203                                 wantovertime |= InitiateSuddenDeath();
2204                 }
2205         }
2206
2207         if (checkrules_suddendeathend && time >= checkrules_suddendeathend)
2208         {
2209                 NextLevel();
2210                 return;
2211         }
2212
2213         float checkrules_status;
2214         checkrules_status = WinningCondition_RanOutOfSpawns();
2215         if(checkrules_status == WINNING_YES)
2216         {
2217                 bprint("Hey! Someone ran out of spawns!\n");
2218         }
2219         else if(g_race && !g_race_qualifying && timelimit >= 0)
2220         {
2221                 checkrules_status = WinningCondition_Race(fraglimit);
2222                 //print("WC_RACE yields ", ftos(checkrules_status), "\n");
2223         }
2224         else if(g_race && g_race_qualifying == 2 && timelimit >= 0)
2225         {
2226                 checkrules_status = WinningCondition_QualifyingThenRace(fraglimit);
2227                 //print("WC_QUALIFYING_THEN_RACE yields ", ftos(checkrules_status), "\n");
2228         }
2229         else if(g_assault)
2230         {
2231                 checkrules_status = WinningCondition_Assault(); // TODO remove this?
2232         }
2233         else if(g_lms)
2234         {
2235                 checkrules_status = WinningCondition_LMS();
2236         }
2237         else if (g_onslaught)
2238         {
2239                 checkrules_status = WinningCondition_Onslaught(); // TODO remove this?
2240         }
2241         else
2242         {
2243                 checkrules_status = WinningCondition_Scores(fraglimit, leadlimit);
2244                 //print("WC_SCORES yields ", ftos(checkrules_status), "\n");
2245         }
2246
2247         if(checkrules_status == WINNING_STARTSUDDENDEATHOVERTIME)
2248         {
2249                 checkrules_status = WINNING_NEVER;
2250                 checkrules_overtimesadded = -1;
2251                 wantovertime |= InitiateSuddenDeath();
2252         }
2253
2254         if(checkrules_status == WINNING_NEVER)
2255                 // equality cases! Nobody wins if the overtime ends in a draw.
2256                 ClearWinners();
2257
2258         if(wantovertime)
2259         {
2260                 if(checkrules_status == WINNING_NEVER)
2261                         InitiateOvertime();
2262                 else
2263                         checkrules_status = WINNING_YES;
2264         }
2265
2266         if(checkrules_suddendeathend)
2267                 if(checkrules_status != WINNING_NEVER || time >= checkrules_suddendeathend)
2268                         checkrules_status = WINNING_YES;
2269
2270         if(checkrules_status == WINNING_YES)
2271         {
2272                 //print("WINNING\n");
2273                 NextLevel();
2274         }
2275 }
2276
2277 float mapvote_nextthink;
2278 float mapvote_initialized;
2279 float mapvote_keeptwotime;
2280 float mapvote_timeout;
2281 string mapvote_message;
2282 #define MAPVOTE_SCREENSHOT_DIRS_COUNT 4
2283 string mapvote_screenshot_dirs[MAPVOTE_SCREENSHOT_DIRS_COUNT];
2284 float mapvote_screenshot_dirs_count;
2285
2286 float mapvote_count;
2287 float mapvote_count_real;
2288 string mapvote_maps[MAPVOTE_COUNT];
2289 float mapvote_maps_screenshot_dir[MAPVOTE_COUNT];
2290 string mapvote_maps_pakfile[MAPVOTE_COUNT];
2291 float mapvote_maps_suggested[MAPVOTE_COUNT];
2292 string mapvote_suggestions[MAPVOTE_COUNT];
2293 float mapvote_suggestion_ptr;
2294 float mapvote_voters;
2295 float mapvote_selections[MAPVOTE_COUNT];
2296 float mapvote_run;
2297 float mapvote_detail;
2298 float mapvote_abstain;
2299 .float mapvote;
2300
2301 void MapVote_ClearAllVotes()
2302 {
2303         FOR_EACH_CLIENT(other)
2304                 other.mapvote = 0;
2305 }
2306
2307 string MapVote_Suggest(string m)
2308 {
2309         float i;
2310         if(m == "")
2311                 return "That's not how to use this command.";
2312         if(!autocvar_g_maplist_votable_suggestions)
2313                 return "Suggestions are not accepted on this server.";
2314         if(mapvote_initialized)
2315                 return "Can't suggest - voting is already in progress!";
2316         m = MapInfo_FixName(m);
2317         if(!m)
2318                 return "The map you suggested is not available on this server.";
2319         if(!autocvar_g_maplist_votable_suggestions_override_mostrecent)
2320                 if(Map_IsRecent(m))
2321                         return "This server does not allow for recent maps to be played again. Please be patient for some rounds.";
2322
2323         if(!MapInfo_CheckMap(m))
2324                 return "The map you suggested does not support the current game mode.";
2325         for(i = 0; i < mapvote_suggestion_ptr; ++i)
2326                 if(mapvote_suggestions[i] == m)
2327                         return "This map was already suggested.";
2328         if(mapvote_suggestion_ptr >= MAPVOTE_COUNT)
2329         {
2330                 i = floor(random() * mapvote_suggestion_ptr);
2331         }
2332         else
2333         {
2334                 i = mapvote_suggestion_ptr;
2335                 mapvote_suggestion_ptr += 1;
2336         }
2337         if(mapvote_suggestions[i] != "")
2338                 strunzone(mapvote_suggestions[i]);
2339         mapvote_suggestions[i] = strzone(m);
2340         if(autocvar_sv_eventlog)
2341                 GameLogEcho(strcat(":vote:suggested:", m, ":", ftos(self.playerid)));
2342         return strcat("Suggestion of ", m, " accepted.");
2343 }
2344
2345 void MapVote_AddVotable(string nextMap, float isSuggestion)
2346 {
2347         float j, i, o;
2348         string pakfile, mapfile;
2349
2350         if(nextMap == "")
2351                 return;
2352         for(j = 0; j < mapvote_count; ++j)
2353                 if(mapvote_maps[j] == nextMap)
2354                         return;
2355         // suggestions might be no longer valid/allowed after gametype switch!
2356         if(isSuggestion)
2357                 if(!MapInfo_CheckMap(nextMap))
2358                         return;
2359         mapvote_maps[mapvote_count] = strzone(nextMap);
2360         mapvote_maps_suggested[mapvote_count] = isSuggestion;
2361
2362         for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2363         {
2364                 mapfile = strcat(mapvote_screenshot_dirs[i], "/", mapvote_maps[i]);
2365                 pakfile = whichpack(strcat(mapfile, ".tga"));
2366                 if(pakfile == "")
2367                         pakfile = whichpack(strcat(mapfile, ".jpg"));
2368                 if(pakfile == "")
2369                         pakfile = whichpack(strcat(mapfile, ".png"));
2370                 if(pakfile != "")
2371                         break;
2372         }
2373         if(i >= mapvote_screenshot_dirs_count)
2374                 i = 0; // FIXME maybe network this error case, as that means there is no mapshot on the server?
2375         for(o = strstr(pakfile, "/", 0)+1; o > 0; o = strstr(pakfile, "/", 0)+1)
2376                 pakfile = substring(pakfile, o, -1);
2377
2378         mapvote_maps_screenshot_dir[mapvote_count] = i;
2379         mapvote_maps_pakfile[mapvote_count] = strzone(pakfile);
2380
2381         mapvote_count += 1;
2382 }
2383
2384 void MapVote_Spawn();
2385 void MapVote_Init()
2386 {
2387         float i;
2388         float nmax, smax;
2389
2390         MapVote_ClearAllVotes();
2391
2392         mapvote_count = 0;
2393         mapvote_detail = !autocvar_g_maplist_votable_nodetail;
2394         mapvote_abstain = autocvar_g_maplist_votable_abstain;
2395
2396         if(mapvote_abstain)
2397                 nmax = min(MAPVOTE_COUNT - 1, autocvar_g_maplist_votable);
2398         else
2399                 nmax = min(MAPVOTE_COUNT, autocvar_g_maplist_votable);
2400         smax = min3(nmax, autocvar_g_maplist_votable_suggestions, mapvote_suggestion_ptr);
2401
2402         // we need this for AddVotable, as that cycles through the screenshot dirs
2403         mapvote_screenshot_dirs_count = tokenize_console(autocvar_g_maplist_votable_screenshot_dir);
2404         if(mapvote_screenshot_dirs_count == 0)
2405                 mapvote_screenshot_dirs_count = tokenize_console("maps levelshots");
2406         mapvote_screenshot_dirs_count = min(mapvote_screenshot_dirs_count, MAPVOTE_SCREENSHOT_DIRS_COUNT);
2407         for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2408                 mapvote_screenshot_dirs[i] = strzone(argv(i));
2409
2410         if(mapvote_suggestion_ptr)
2411                 for(i = 0; i < 100 && mapvote_count < smax; ++i)
2412                         MapVote_AddVotable(mapvote_suggestions[floor(random() * mapvote_suggestion_ptr)], TRUE);
2413
2414         for(i = 0; i < 100 && mapvote_count < nmax; ++i)
2415                 MapVote_AddVotable(GetNextMap(), FALSE);
2416
2417         if(mapvote_count == 0)
2418         {
2419                 bprint( "Maplist contains no single playable map!  Resetting it to default map list.\n" );
2420                 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
2421                 if(autocvar_g_maplist_shuffle)
2422                         ShuffleMaplist();
2423                 localcmd("\nmenu_cmd sync\n");
2424                 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
2425                         MapVote_AddVotable(GetNextMap(), FALSE);
2426         }
2427
2428         mapvote_count_real = mapvote_count;
2429         if(mapvote_abstain)
2430                 MapVote_AddVotable("don't care", 0);
2431
2432         //dprint("mapvote count is ", ftos(mapvote_count), "\n");
2433
2434         mapvote_keeptwotime = time + autocvar_g_maplist_votable_keeptwotime;
2435         mapvote_timeout = time + autocvar_g_maplist_votable_timeout;
2436         if(mapvote_count_real < 3 || mapvote_keeptwotime <= time)
2437                 mapvote_keeptwotime = 0;
2438         mapvote_message = "Choose a map and press its key!";
2439
2440         MapVote_Spawn();
2441 }
2442
2443 void MapVote_SendPicture(float id)
2444 {
2445         msg_entity = self;
2446         WriteByte(MSG_ONE, SVC_TEMPENTITY);
2447         WriteByte(MSG_ONE, TE_CSQC_PICTURE);
2448         WriteByte(MSG_ONE, id);
2449         WritePicture(MSG_ONE, strcat(mapvote_screenshot_dirs[mapvote_maps_screenshot_dir[id]], "/", mapvote_maps[id]), 3072);
2450 }
2451
2452 float MapVote_GetMapMask()
2453 {
2454         float mask, i, power;
2455         mask = 0;
2456         for(i = 0, power = 1; i < mapvote_count; ++i, power *= 2)
2457                 if(mapvote_maps[i] != "")
2458                         mask |= power;
2459         return mask;
2460 }
2461
2462 entity mapvote_ent;
2463 float MapVote_SendEntity(entity to, float sf)
2464 {
2465         float i;
2466
2467         if(sf & 1)
2468                 sf &~= 2; // if we send 1, we don't need to also send 2
2469
2470         WriteByte(MSG_ENTITY, ENT_CLIENT_MAPVOTE);
2471         WriteByte(MSG_ENTITY, sf);
2472
2473         if(sf & 1)
2474         {
2475                 // flag 1 == initialization
2476                 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2477                         WriteString(MSG_ENTITY, mapvote_screenshot_dirs[i]);
2478                 WriteString(MSG_ENTITY, "");
2479                 WriteByte(MSG_ENTITY, mapvote_count);
2480                 WriteByte(MSG_ENTITY, mapvote_abstain);
2481                 WriteByte(MSG_ENTITY, mapvote_detail);
2482                 WriteCoord(MSG_ENTITY, mapvote_timeout);
2483                 if(mapvote_count <= 8)
2484                         WriteByte(MSG_ENTITY, MapVote_GetMapMask());
2485                 else
2486                         WriteShort(MSG_ENTITY, MapVote_GetMapMask());
2487                 for(i = 0; i < mapvote_count; ++i)
2488                         if(mapvote_maps[i] != "")
2489                         {
2490                                 if(mapvote_abstain && i == mapvote_count - 1)
2491                                 {
2492                                         WriteString(MSG_ENTITY, ""); // abstain needs no text
2493                                         WriteString(MSG_ENTITY, ""); // abstain needs no pack
2494                                         WriteByte(MSG_ENTITY, 0); // abstain needs no screenshot dir
2495                                 }
2496                                 else
2497                                 {
2498                                         WriteString(MSG_ENTITY, mapvote_maps[i]);
2499                                         WriteString(MSG_ENTITY, mapvote_maps_pakfile[i]);
2500                                         WriteByte(MSG_ENTITY, mapvote_maps_screenshot_dir[i]);
2501                                 }
2502                         }
2503         }
2504
2505         if(sf & 2)
2506         {
2507                 // flag 2 == update of mask
2508                 if(mapvote_count <= 8)
2509                         WriteByte(MSG_ENTITY, MapVote_GetMapMask());
2510                 else
2511                         WriteShort(MSG_ENTITY, MapVote_GetMapMask());
2512         }
2513
2514         if(sf & 4)
2515         {
2516                 if(mapvote_detail)
2517                         for(i = 0; i < mapvote_count; ++i)
2518                                 if(mapvote_maps[i] != "")
2519                                         WriteByte(MSG_ENTITY, mapvote_selections[i]);
2520
2521                 WriteByte(MSG_ENTITY, to.mapvote);
2522         }
2523
2524         return TRUE;
2525 }
2526
2527 void MapVote_Spawn()
2528 {
2529         Net_LinkEntity(mapvote_ent = spawn(), FALSE, 0, MapVote_SendEntity);
2530 }
2531
2532 void MapVote_TouchMask()
2533 {
2534         mapvote_ent.SendFlags |= 2;
2535 }
2536
2537 void MapVote_TouchVotes(entity voter)
2538 {
2539         mapvote_ent.SendFlags |= 4;
2540 }
2541
2542 float MapVote_Finished(float mappos)
2543 {
2544         string result;
2545         float i;
2546         float didntvote;
2547
2548         if(autocvar_sv_eventlog)
2549         {
2550                 result = strcat(":vote:finished:", mapvote_maps[mappos]);
2551                 result = strcat(result, ":", ftos(mapvote_selections[mappos]), "::");
2552                 didntvote = mapvote_voters;
2553                 for(i = 0; i < mapvote_count; ++i)
2554                         if(mapvote_maps[i] != "")
2555                         {
2556                                 didntvote -= mapvote_selections[i];
2557                                 if(i != mappos)
2558                                 {
2559                                         result = strcat(result, ":", mapvote_maps[i]);
2560                                         result = strcat(result, ":", ftos(mapvote_selections[i]));
2561                                 }
2562                         }
2563                 result = strcat(result, ":didn't vote:", ftos(didntvote));
2564
2565                 GameLogEcho(result);
2566                 if(mapvote_maps_suggested[mappos])
2567                         GameLogEcho(strcat(":vote:suggestion_accepted:", mapvote_maps[mappos]));
2568         }
2569
2570         FOR_EACH_REALCLIENT(other)
2571                 FixClientCvars(other);
2572
2573         Map_Goto_SetStr(mapvote_maps[mappos]);
2574         Map_Goto(0);
2575         alreadychangedlevel = TRUE;
2576         return TRUE;
2577 }
2578 void MapVote_CheckRules_1()
2579 {
2580         float i;
2581
2582         for(i = 0; i < mapvote_count; ++i) if(mapvote_maps[i] != "")
2583         {
2584                 //dprint("Map ", ftos(i), ": "); dprint(mapvote_maps[i], "\n");
2585                 mapvote_selections[i] = 0;
2586         }
2587
2588         mapvote_voters = 0;
2589         FOR_EACH_REALCLIENT(other)
2590         {
2591                 ++mapvote_voters;
2592                 if(other.mapvote)
2593                 {
2594                         i = other.mapvote - 1;
2595                         //dprint("Player ", other.netname, " vote = ", ftos(other.mapvote - 1), "\n");
2596                         mapvote_selections[i] = mapvote_selections[i] + 1;
2597                 }
2598         }
2599 }
2600
2601 float MapVote_CheckRules_2()
2602 {
2603         float i;
2604         float firstPlace, secondPlace;
2605         float firstPlaceVotes, secondPlaceVotes;
2606         float mapvote_voters_real;
2607         string result;
2608
2609         if(mapvote_count_real == 1)
2610                 return MapVote_Finished(0);
2611
2612         mapvote_voters_real = mapvote_voters;
2613         if(mapvote_abstain)
2614                 mapvote_voters_real -= mapvote_selections[mapvote_count - 1];
2615
2616         RandomSelection_Init();
2617         for(i = 0; i < mapvote_count_real; ++i) if(mapvote_maps[i] != "")
2618                 RandomSelection_Add(world, i, string_null, 1, mapvote_selections[i]);
2619         firstPlace = RandomSelection_chosen_float;
2620         firstPlaceVotes = RandomSelection_best_priority;
2621         //dprint("First place: ", ftos(firstPlace), "\n");
2622         //dprint("First place votes: ", ftos(firstPlaceVotes), "\n");
2623
2624         RandomSelection_Init();
2625         for(i = 0; i < mapvote_count_real; ++i) if(mapvote_maps[i] != "")
2626                 if(i != firstPlace)
2627                         RandomSelection_Add(world, i, string_null, 1, mapvote_selections[i]);
2628         secondPlace = RandomSelection_chosen_float;
2629         secondPlaceVotes = RandomSelection_best_priority;
2630         //dprint("Second place: ", ftos(secondPlace), "\n");
2631         //dprint("Second place votes: ", ftos(secondPlaceVotes), "\n");
2632
2633         if(firstPlace == -1)
2634                 error("No first place in map vote... WTF?");
2635
2636         if(secondPlace == -1 || time > mapvote_timeout || (mapvote_voters_real - firstPlaceVotes) < firstPlaceVotes)
2637                 return MapVote_Finished(firstPlace);
2638
2639         if(mapvote_keeptwotime)
2640                 if(time > mapvote_keeptwotime || (mapvote_voters_real - firstPlaceVotes - secondPlaceVotes) < secondPlaceVotes)
2641                 {
2642                         float didntvote;
2643                         MapVote_TouchMask();
2644                         mapvote_message = "Now decide between the TOP TWO!";
2645                         mapvote_keeptwotime = 0;
2646                         result = strcat(":vote:keeptwo:", mapvote_maps[firstPlace]);
2647                         result = strcat(result, ":", ftos(firstPlaceVotes));
2648                         result = strcat(result, ":", mapvote_maps[secondPlace]);
2649                         result = strcat(result, ":", ftos(secondPlaceVotes), "::");
2650                         didntvote = mapvote_voters;
2651                         for(i = 0; i < mapvote_count; ++i)
2652                                 if(mapvote_maps[i] != "")
2653                                 {
2654                                         didntvote -= mapvote_selections[i];
2655                                         if(i != firstPlace)
2656                                                 if(i != secondPlace)
2657                                                 {
2658                                                         result = strcat(result, ":", mapvote_maps[i]);
2659                                                         result = strcat(result, ":", ftos(mapvote_selections[i]));
2660                                                         if(i < mapvote_count_real)
2661                                                         {
2662                                                                 strunzone(mapvote_maps[i]);
2663                                                                 mapvote_maps[i] = "";
2664                                                                 strunzone(mapvote_maps_pakfile[i]);
2665                                                                 mapvote_maps_pakfile[i] = "";
2666                                                         }
2667                                                 }
2668                                 }
2669                         result = strcat(result, ":didn't vote:", ftos(didntvote));
2670                         if(autocvar_sv_eventlog)
2671                                 GameLogEcho(result);
2672                 }
2673
2674         return FALSE;
2675 }
2676 void MapVote_Tick()
2677 {
2678         float keeptwo;
2679         float totalvotes;
2680
2681         keeptwo = mapvote_keeptwotime;
2682         MapVote_CheckRules_1(); // count
2683         if(MapVote_CheckRules_2()) // decide
2684                 return;
2685
2686         totalvotes = 0;
2687         FOR_EACH_REALCLIENT(other)
2688         {
2689                 // hide scoreboard again
2690                 if(other.health != 2342)
2691                 {
2692                         other.health = 2342;
2693                         other.impulse = 0;
2694                         if(clienttype(other) == CLIENTTYPE_REAL)
2695                         {
2696                                 msg_entity = other;
2697                                 WriteByte(MSG_ONE, SVC_FINALE);
2698                                 WriteString(MSG_ONE, "");
2699                         }
2700                 }
2701
2702                 // clear possibly invalid votes
2703                 if(mapvote_maps[other.mapvote - 1] == "")
2704                         other.mapvote = 0;
2705                 // use impulses as new vote
2706                 if(other.impulse >= 1 && other.impulse <= mapvote_count)
2707                         if(mapvote_maps[other.impulse - 1] != "")
2708                         {
2709                                 other.mapvote = other.impulse;
2710                                 MapVote_TouchVotes(other);
2711                         }
2712                 other.impulse = 0;
2713
2714                 if(other.mapvote)
2715                         ++totalvotes;
2716         }
2717
2718         MapVote_CheckRules_1(); // just count
2719 }
2720 void MapVote_Start()
2721 {
2722         if(mapvote_run)
2723                 return;
2724
2725         // wait for stats to be sent first
2726         if(!playerstats_waitforme)
2727                 return;
2728
2729         MapInfo_Enumerate();
2730         if(MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
2731                 mapvote_run = TRUE;
2732 }
2733 void MapVote_Think()
2734 {
2735         if(!mapvote_run)
2736                 return;
2737
2738         if(alreadychangedlevel)
2739                 return;
2740
2741         if(time < mapvote_nextthink)
2742                 return;
2743         //dprint("tick\n");
2744
2745         mapvote_nextthink = time + 0.5;
2746
2747         if(!mapvote_initialized)
2748         {
2749                 if(autocvar_rescan_pending == 1)
2750                 {
2751                         cvar_set("rescan_pending", "2");
2752                         localcmd("fs_rescan\nrescan_pending 3\n");
2753                         return;
2754                 }
2755                 else if(autocvar_rescan_pending == 2)
2756                 {
2757                         return;
2758                 }
2759                 else if(autocvar_rescan_pending == 3)
2760                 {
2761                         // now build missing mapinfo files
2762                         if(!MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
2763                                 return;
2764
2765                         // we're done, start the timer
2766                         cvar_set("rescan_pending", "0");
2767                 }
2768
2769                 mapvote_initialized = TRUE;
2770                 if(DoNextMapOverride(0))
2771                         return;
2772                 if(!autocvar_g_maplist_votable || player_count <= 0)
2773                 {
2774                         GotoNextMap(0);
2775                         return;
2776                 }
2777                 MapVote_Init();
2778         }
2779
2780         MapVote_Tick();
2781 }
2782
2783 string GotoMap(string m)
2784 {
2785         if(!MapInfo_CheckMap(m))
2786                 return "The map you chose is not available on this server.";
2787         cvar_set("nextmap", m);
2788         cvar_set("timelimit", "-1");
2789         if(mapvote_initialized || alreadychangedlevel)
2790         {
2791                 if(DoNextMapOverride(0))
2792                         return "Map switch initiated.";
2793                 else
2794                         return "Hm... no. For some reason I like THIS map more.";
2795         }
2796         else
2797                 return "Map switch will happen after scoreboard.";
2798 }
2799
2800
2801 void EndFrame()
2802 {
2803         float altime;
2804         FOR_EACH_REALCLIENT(self)
2805         {
2806                 if(self.classname == "spectator")
2807                 {
2808                         if(self.enemy.typehitsound)
2809                                 self.typehit_time = time;
2810                         else if(self.enemy.hitsound)
2811                                 self.hit_time = time;
2812                 }
2813                 else
2814                 {
2815                         if(self.typehitsound)
2816                                 self.typehit_time = time;
2817                         else if(self.hitsound)
2818                                 self.hit_time = time;
2819                 }
2820         }
2821         altime = time + frametime * (1 + autocvar_g_antilag_nudge);
2822         // add 1 frametime because after this, engine SV_Physics
2823         // increases time by a frametime and then networks the frame
2824         // add another frametime because client shows everything with
2825         // 1 frame of lag (cl_nolerp 0). The last +1 however should not be
2826         // needed!
2827         FOR_EACH_CLIENT(self)
2828         {
2829                 self.hitsound = FALSE;
2830                 self.typehitsound = FALSE;
2831                 antilag_record(self, altime);
2832         }
2833 }
2834
2835
2836 /*
2837  * RedirectionThink:
2838  * returns TRUE if redirecting
2839  */
2840 float redirection_timeout;
2841 float redirection_nextthink;
2842 float RedirectionThink()
2843 {
2844         float clients_found;
2845
2846         if(redirection_target == "")
2847                 return FALSE;
2848
2849         if(!redirection_timeout)
2850         {
2851                 cvar_set("sv_public", "-2");
2852                 redirection_timeout = time + 0.6; // this will only try twice... should be able to keep more clients
2853                 if(redirection_target == "self")
2854                         bprint("^3SERVER NOTICE:^7 restarting the server\n");
2855                 else
2856                         bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
2857         }
2858
2859         if(time < redirection_nextthink)
2860                 return TRUE;
2861
2862         redirection_nextthink = time + 1;
2863
2864         clients_found = 0;
2865         FOR_EACH_REALCLIENT(self)
2866         {
2867                 // TODO add timer
2868                 print("Redirecting: sending connect command to ", self.netname, "\n");
2869                 if(redirection_target == "self")
2870                         stuffcmd(self, "\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " reconnect\n");
2871                 else
2872                         stuffcmd(self, strcat("\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " \"connect ", redirection_target, "\"\n"));
2873                 ++clients_found;
2874         }
2875
2876         print("Redirecting: ", ftos(clients_found), " clients left.\n");
2877
2878         if(time > redirection_timeout || clients_found == 0)
2879                 localcmd("\nwait; wait; wait; quit\n");
2880
2881         return TRUE;
2882 }
2883
2884 void TargetMusic_RestoreGame();
2885 void RestoreGame()
2886 {
2887         // Loaded from a save game
2888         // some things then break, so let's work around them...
2889
2890         // Progs DB (capture records)
2891         ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
2892
2893         // Mapinfo
2894         MapInfo_Shutdown();
2895         MapInfo_Enumerate();
2896         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
2897         WeaponStats_Init();
2898
2899         TargetMusic_RestoreGame();
2900 }
2901
2902 void Shutdown()
2903 {
2904         entity e;
2905
2906         gameover = 2;
2907
2908         if(world_initialized > 0)
2909         {
2910                 world_initialized = 0;
2911                 print("Saving persistent data...\n");
2912                 Ban_SaveBans();
2913
2914                 PlayerStats_EndMatch(0);
2915                 FOR_EACH_CLIENT(e)
2916                         PlayerStats_AddGlobalInfo(e);
2917                 PlayerStats_Shutdown();
2918
2919                 if(!cheatcount_total)
2920                 {
2921                         if(autocvar_sv_db_saveasdump)
2922                                 db_dump(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2923                         else
2924                                 db_save(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2925                 }
2926                 if(autocvar_developer)
2927                 {
2928                         if(autocvar_sv_db_saveasdump)
2929                                 db_dump(TemporaryDB, "server-temp.db");
2930                         else
2931                                 db_save(TemporaryDB, "server-temp.db");
2932                 }
2933                 CheatShutdown(); // must be after cheatcount check
2934                 db_close(ServerProgsDB);
2935                 db_close(TemporaryDB);
2936                 print("done!\n");
2937                 // tell the bot system the game is ending now
2938                 bot_endgame();
2939
2940                 WeaponStats_Shutdown();
2941                 MapInfo_Shutdown();
2942         }
2943         else if(world_initialized == 0)
2944         {
2945                 print("NOTE: crashed before even initializing the world, not saving persistent data\n");
2946         }
2947 }