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