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