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