]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/g_world.qc
Clean up some misplaced fields/globals in sv_main
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_world.qc
1 #include "g_world.qh"
2
3 #include "anticheat.qh"
4 #include "antilag.qh"
5 #include "bot/api.qh"
6 #include "campaign.qh"
7 #include "cheats.qh"
8 #include "client.qh"
9 #include "command/common.qh"
10 #include "command/getreplies.qh"
11 #include "command/sv_cmd.qh"
12 #include "command/vote.qh"
13 #include "g_hook.qh"
14 #include "ipban.qh"
15 #include "mapvoting.qh"
16 #include <server/mutators/_mod.qh>
17 #include "race.qh"
18 #include "scores.qh"
19 #include "scores_rules.qh"
20 #include "teamplay.qh"
21 #include "weapons/weaponstats.qh"
22 #include "../common/constants.qh"
23 #include <common/net_linked.qh>
24 #include "../common/deathtypes/all.qh"
25 #include "../common/gamemodes/sv_rules.qh"
26 #include "../common/mapinfo.qh"
27 #include "../common/monsters/_mod.qh"
28 #include "../common/monsters/sv_monsters.qh"
29 #include "../common/vehicles/all.qh"
30 #include "../common/notifications/all.qh"
31 #include "../common/physics/player.qh"
32 #include "../common/playerstats.qh"
33 #include "../common/stats.qh"
34 #include "../common/teams.qh"
35 #include "../common/mapobjects/trigger/secret.qh"
36 #include "../common/mapobjects/target/music.qh"
37 #include "../common/util.qh"
38 #include "../common/items/_mod.qh"
39 #include <common/weapons/_all.qh>
40 #include "../common/state.qh"
41
42 const float LATENCY_THINKRATE = 10;
43 .float latency_sum;
44 .float latency_cnt;
45 .float latency_time;
46 entity pingplreport;
47 void PingPLReport_Think(entity this)
48 {
49         float delta;
50         entity e;
51
52         delta = 3 / maxclients;
53         if(delta < sys_frametime)
54                 delta = 0;
55         this.nextthink = time + delta;
56
57         e = edict_num(this.cnt + 1);
58         if(IS_CLIENT(e) && IS_REAL_CLIENT(e))
59         {
60                 WriteHeader(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
61                 WriteByte(MSG_BROADCAST, this.cnt);
62                 WriteShort(MSG_BROADCAST, bound(1, CS(e).ping, 65535));
63                 WriteByte(MSG_BROADCAST, min(ceil(CS(e).ping_packetloss * 255), 255));
64                 WriteByte(MSG_BROADCAST, min(ceil(CS(e).ping_movementloss * 255), 255));
65
66                 // record latency times for clients throughout the match so we can report it to playerstats
67                 if(time > (CS(e).latency_time + LATENCY_THINKRATE))
68                 {
69                         CS(e).latency_sum += CS(e).ping;
70                         CS(e).latency_cnt += 1;
71                         CS(e).latency_time = time;
72                         //print("sum: ", ftos(CS(e).latency_sum), ", cnt: ", ftos(CS(e).latency_cnt), ", avg: ", ftos(CS(e).latency_sum / CS(e).latency_cnt), ".\n");
73                 }
74         }
75         else
76         {
77                 WriteHeader(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
78                 WriteByte(MSG_BROADCAST, this.cnt);
79                 WriteShort(MSG_BROADCAST, 0);
80                 WriteByte(MSG_BROADCAST, 0);
81                 WriteByte(MSG_BROADCAST, 0);
82         }
83         this.cnt = (this.cnt + 1) % maxclients;
84 }
85 void PingPLReport_Spawn()
86 {
87         pingplreport = new_pure(pingplreport);
88         setthink(pingplreport, PingPLReport_Think);
89         pingplreport.nextthink = time;
90 }
91
92 const float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
93 string redirection_target;
94 float world_initialized;
95
96 void SetDefaultAlpha()
97 {
98         if (!MUTATOR_CALLHOOK(SetDefaultAlpha))
99         {
100                 default_player_alpha = autocvar_g_player_alpha;
101                 if(default_player_alpha == 0)
102                         default_player_alpha = 1;
103                 default_weapon_alpha = default_player_alpha;
104         }
105 }
106
107 void GotoFirstMap(entity this)
108 {
109         float n;
110         if(autocvar__sv_init)
111         {
112                 // cvar_set("_sv_init", "0");
113                 // we do NOT set this to 0 any more, so someone "accidentally" changing
114                 // to this "init" map on a dedicated server will cause no permanent
115                 // harm
116                 if(autocvar_g_maplist_shuffle)
117                         ShuffleMaplist();
118                 n = tokenizebyseparator(autocvar_g_maplist, " ");
119                 cvar_set("g_maplist_index", ftos(n - 1)); // jump to map 0 in GotoNextMap
120
121                 MapInfo_Enumerate();
122                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
123
124                 if(!DoNextMapOverride(1))
125                         GotoNextMap(1);
126
127                 return;
128         }
129
130         if(time < 5)
131         {
132                 this.nextthink = time;
133         }
134         else
135         {
136                 this.nextthink = time + 1;
137                 LOG_INFO("Waiting for _sv_init being set to 1 by initialization scripts...");
138         }
139 }
140
141 void cvar_changes_init()
142 {
143         float h;
144         string k, v, d;
145         float n, i, adding, pureadding;
146
147         strfree(cvar_changes);
148         strfree(cvar_purechanges);
149         cvar_purechanges_count = 0;
150
151         h = buf_create();
152         buf_cvarlist(h, "", "_"); // exclude all _ cvars as they are temporary
153         n = buf_getsize(h);
154
155         adding = true;
156         pureadding = true;
157
158         for(i = 0; i < n; ++i)
159         {
160                 k = bufstr_get(h, i);
161
162 #define BADPREFIX(p) if(substring(k, 0, strlen(p)) == p) continue
163 #define BADPRESUFFIX(p,s) if(substring(k, 0, strlen(p)) == p && substring(k, -strlen(s), -1) == s) continue
164 #define BADCVAR(p) if(k == p) continue
165
166                 // general excludes and namespaces for server admin used cvars
167                 BADPREFIX("help_"); // PN's server has this listed as changed, let's not rat him out for THAT
168
169                 // internal
170                 BADPREFIX("csqc_");
171                 BADPREFIX("cvar_check_");
172                 BADCVAR("gamecfg");
173                 BADCVAR("g_configversion");
174                 BADCVAR("halflifebsp");
175                 BADCVAR("sv_mapformat_is_quake2");
176                 BADCVAR("sv_mapformat_is_quake3");
177                 BADPREFIX("sv_world");
178
179                 // client
180                 BADPREFIX("chase_");
181                 BADPREFIX("cl_");
182                 BADPREFIX("con_");
183                 BADPREFIX("scoreboard_");
184                 BADPREFIX("g_campaign");
185                 BADPREFIX("g_waypointsprite_");
186                 BADPREFIX("gl_");
187                 BADPREFIX("joy");
188                 BADPREFIX("hud_");
189                 BADPREFIX("m_");
190                 BADPREFIX("menu_");
191                 BADPREFIX("net_slist_");
192                 BADPREFIX("r_");
193                 BADPREFIX("sbar_");
194                 BADPREFIX("scr_");
195                 BADPREFIX("snd_");
196                 BADPREFIX("show");
197                 BADPREFIX("sensitivity");
198                 BADPREFIX("userbind");
199                 BADPREFIX("v_");
200                 BADPREFIX("vid_");
201                 BADPREFIX("crosshair");
202                 BADCVAR("mod_q3bsp_lightmapmergepower");
203                 BADCVAR("mod_q3bsp_nolightmaps");
204                 BADCVAR("fov");
205                 BADCVAR("mastervolume");
206                 BADCVAR("volume");
207                 BADCVAR("bgmvolume");
208                 BADCVAR("in_pitch_min");
209                 BADCVAR("in_pitch_max");
210
211                 // private
212                 BADCVAR("developer");
213                 BADCVAR("log_dest_udp");
214                 BADCVAR("net_address");
215                 BADCVAR("net_address_ipv6");
216                 BADCVAR("port");
217                 BADCVAR("savedgamecfg");
218                 BADCVAR("serverconfig");
219                 BADCVAR("sv_autoscreenshot");
220                 BADCVAR("sv_heartbeatperiod");
221                 BADCVAR("sv_vote_master_password");
222                 BADCVAR("sys_colortranslation");
223                 BADCVAR("sys_specialcharactertranslation");
224                 BADCVAR("timeformat");
225                 BADCVAR("timestamps");
226                 BADCVAR("g_require_stats");
227                 BADPREFIX("developer_");
228                 BADPREFIX("g_ban_");
229                 BADPREFIX("g_banned_list");
230                 BADPREFIX("g_require_stats_");
231                 BADPREFIX("g_chat_flood_");
232                 BADPREFIX("g_ghost_items");
233                 BADPREFIX("g_playerstats_");
234                 BADPREFIX("g_voice_flood_");
235                 BADPREFIX("log_file");
236                 BADPREFIX("quit_");
237                 BADPREFIX("rcon_");
238                 BADPREFIX("sv_allowdownloads");
239                 BADPREFIX("sv_autodemo");
240                 BADPREFIX("sv_curl_");
241                 BADPREFIX("sv_eventlog");
242                 BADPREFIX("sv_logscores_");
243                 BADPREFIX("sv_master");
244                 BADPREFIX("sv_weaponstats_");
245                 BADPREFIX("sv_waypointsprite_");
246                 BADCVAR("rescan_pending");
247
248                 // these can contain player IDs, so better hide
249                 BADPREFIX("g_forced_team_");
250                 BADCVAR("sv_muteban_list");
251                 BADCVAR("sv_voteban_list");
252                 BADCVAR("sv_allow_customplayermodels_idlist");
253                 BADCVAR("sv_allow_customplayermodels_speciallist");
254
255                 // mapinfo
256                 BADCVAR("fraglimit");
257                 BADCVAR("g_arena");
258                 BADCVAR("g_assault");
259                 BADCVAR("g_ca");
260                 BADCVAR("g_ca_teams");
261                 BADCVAR("g_conquest");
262                 BADCVAR("g_ctf");
263                 BADCVAR("g_cts");
264                 BADCVAR("g_dotc");
265                 BADCVAR("g_dm");
266                 BADCVAR("g_domination");
267                 BADCVAR("g_domination_default_teams");
268                 BADCVAR("g_duel");
269                 BADCVAR("g_freezetag");
270                 BADCVAR("g_freezetag_teams");
271                 BADCVAR("g_invasion_teams");
272                 BADCVAR("g_invasion_type");
273                 BADCVAR("g_jailbreak");
274                 BADCVAR("g_jailbreak_teams");
275                 BADCVAR("g_keepaway");
276                 BADCVAR("g_keyhunt");
277                 BADCVAR("g_keyhunt_teams");
278                 BADCVAR("g_lms");
279                 BADCVAR("g_nexball");
280                 BADCVAR("g_onslaught");
281                 BADCVAR("g_race");
282                 BADCVAR("g_race_laps_limit");
283                 BADCVAR("g_race_qualifying_timelimit");
284                 BADCVAR("g_race_qualifying_timelimit_override");
285                 BADCVAR("g_runematch");
286                 BADCVAR("g_snafu");
287                 BADCVAR("g_tdm");
288                 BADCVAR("g_tdm_teams");
289                 BADCVAR("g_vip");
290                 BADCVAR("leadlimit");
291                 BADCVAR("nextmap");
292                 BADCVAR("teamplay");
293                 BADCVAR("timelimit");
294                 BADCVAR("g_mapinfo_ignore_warnings");
295
296                 // long
297                 BADCVAR("hostname");
298                 BADCVAR("g_maplist");
299                 BADCVAR("g_maplist_mostrecent");
300                 BADCVAR("sv_motd");
301
302                 v = cvar_string(k);
303                 d = cvar_defstring(k);
304                 if(v == d)
305                         continue;
306
307                 if(adding)
308                 {
309                         cvar_changes = strcat(cvar_changes, k, " \"", v, "\" // \"", d, "\"\n");
310                         if(strlen(cvar_changes) > 16384)
311                         {
312                                 cvar_changes = "// too many settings have been changed to show them here\n";
313                                 adding = 0;
314                         }
315                 }
316
317                 // now check if the changes are actually gameplay relevant
318
319                 // does nothing gameplay relevant
320                 BADCVAR("captureleadlimit_override");
321                 BADCVAR("condump_stripcolors");
322                 BADCVAR("gameversion");
323                 BADCVAR("g_allow_oldvortexbeam");
324                 BADCVAR("g_balance_kill_delay");
325                 BADCVAR("g_buffs_pickup_anyway");
326                 BADCVAR("g_buffs_randomize");
327                 BADCVAR("g_campcheck_distance");
328                 BADCVAR("g_ca_point_leadlimit");
329                 BADCVAR("g_ca_point_limit");
330                 BADCVAR("g_ctf_captimerecord_always");
331                 BADCVAR("g_ctf_flag_glowtrails");
332                 BADCVAR("g_ctf_flag_pickup_verbosename");
333                 BADCVAR("g_domination_point_leadlimit");
334                 BADCVAR("g_forced_respawn");
335                 BADCVAR("g_freezetag_point_leadlimit");
336                 BADCVAR("g_freezetag_point_limit");
337                 BADCVAR("g_hats");
338                 BADCVAR("g_invasion_point_limit");
339                 BADCVAR("g_jump_grunt");
340                 BADCVAR("g_keyhunt_point_leadlimit");
341                 BADCVAR("g_nexball_goalleadlimit");
342                 BADCVAR("g_new_toys_use_pickupsound");
343                 BADCVAR("g_physics_predictall");
344                 BADCVAR("g_piggyback");
345                 BADCVAR("g_playerclip_collisions");
346                 BADCVAR("g_tdm_point_leadlimit");
347                 BADCVAR("g_tdm_point_limit");
348                 BADCVAR("leadlimit_and_fraglimit");
349                 BADCVAR("leadlimit_override");
350                 BADCVAR("pausable");
351                 BADCVAR("sv_checkforpacketsduringsleep");
352                 BADCVAR("sv_damagetext");
353                 BADCVAR("sv_db_saveasdump");
354                 BADCVAR("sv_intermission_cdtrack");
355                 BADCVAR("sv_minigames");
356                 BADCVAR("sv_namechangetimer");
357                 BADCVAR("sv_precacheplayermodels");
358                 BADCVAR("sv_stepheight");
359                 BADCVAR("sv_timeout");
360                 BADCVAR("sv_weapons_modeloverride");
361                 BADCVAR("w_prop_interval");
362                 BADPREFIX("crypto_");
363                 BADPREFIX("gameversion_");
364                 BADPREFIX("g_chat_");
365                 BADPREFIX("g_ctf_captimerecord_");
366                 BADPREFIX("g_hats_");
367                 BADPREFIX("g_maplist_");
368                 BADPREFIX("g_mod_");
369                 BADPREFIX("g_respawn_");
370                 BADPREFIX("net_");
371                 BADPREFIX("notification_");
372                 BADPREFIX("prvm_");
373                 BADPREFIX("skill_");
374                 BADPREFIX("sv_allow_");
375                 BADPREFIX("sv_cullentities_");
376                 BADPREFIX("sv_maxidle_");
377                 BADPREFIX("sv_minigames_");
378                 BADPREFIX("sv_radio_");
379                 BADPREFIX("sv_timeout_");
380                 BADPREFIX("sv_vote_");
381                 BADPREFIX("timelimit_");
382
383                 // allowed changes to server admins (please sync this to server.cfg)
384                 // vi commands:
385                 //   :/"impure"/,$d
386                 //   :g!,^\/\/[^ /],d
387                 //   :%s,//\([^ ]*\).*,BADCVAR("\1");,
388                 //   :%!sort
389                 // yes, this does contain some redundant stuff, don't really care
390                 BADCVAR("bot_config_file");
391                 BADCVAR("bot_number");
392                 BADCVAR("bot_prefix");
393                 BADCVAR("bot_suffix");
394                 BADCVAR("capturelimit_override");
395                 BADCVAR("fraglimit_override");
396                 BADCVAR("gametype");
397                 BADCVAR("g_antilag");
398                 BADCVAR("g_balance_teams");
399                 BADCVAR("g_balance_teams_prevent_imbalance");
400                 BADCVAR("g_balance_teams_scorefactor");
401                 BADCVAR("g_ban_sync_trusted_servers");
402                 BADCVAR("g_ban_sync_uri");
403                 BADCVAR("g_buffs");
404                 BADCVAR("g_ca_teams_override");
405                 BADCVAR("g_ctf_ignore_frags");
406                 BADCVAR("g_ctf_leaderboard");
407                 BADCVAR("g_domination_point_limit");
408                 BADCVAR("g_domination_teams_override");
409                 BADCVAR("g_freezetag_teams_override");
410                 BADCVAR("g_friendlyfire");
411                 BADCVAR("g_fullbrightitems");
412                 BADCVAR("g_fullbrightplayers");
413                 BADCVAR("g_keyhunt_point_limit");
414                 BADCVAR("g_keyhunt_teams_override");
415                 BADCVAR("g_lms_lives_override");
416                 BADCVAR("g_maplist");
417                 BADCVAR("g_maxplayers");
418                 BADCVAR("g_mirrordamage");
419                 BADCVAR("g_nexball_goallimit");
420                 BADCVAR("g_norecoil");
421                 BADCVAR("g_physics_clientselect");
422                 BADCVAR("g_pinata");
423                 BADCVAR("g_powerups");
424                 BADCVAR("g_spawnshieldtime");
425                 BADCVAR("g_start_delay");
426                 BADCVAR("g_superspectate");
427                 BADCVAR("g_tdm_teams_override");
428                 BADCVAR("g_warmup");
429                 BADCVAR("g_weapon_stay"); BADPRESUFFIX("g_", "_weapon_stay");
430                 BADCVAR("hostname");
431                 BADCVAR("log_file");
432                 BADCVAR("maxplayers");
433                 BADCVAR("minplayers");
434                 BADCVAR("minplayers_per_team");
435                 BADCVAR("net_address");
436                 BADCVAR("port");
437                 BADCVAR("rcon_password");
438                 BADCVAR("rcon_restricted_commands");
439                 BADCVAR("rcon_restricted_password");
440                 BADCVAR("skill");
441                 BADCVAR("sv_adminnick");
442                 BADCVAR("sv_autoscreenshot");
443                 BADCVAR("sv_autotaunt");
444                 BADCVAR("sv_curl_defaulturl");
445                 BADCVAR("sv_defaultcharacter");
446                 BADCVAR("sv_defaultcharacterskin");
447                 BADCVAR("sv_defaultplayercolors");
448                 BADCVAR("sv_defaultplayermodel");
449                 BADCVAR("sv_defaultplayerskin");
450                 BADCVAR("sv_maxidle");
451                 BADCVAR("sv_maxrate");
452                 BADCVAR("sv_motd");
453                 BADCVAR("sv_public");
454                 BADCVAR("sv_ready_restart");
455                 BADCVAR("sv_status_privacy");
456                 BADCVAR("sv_taunt");
457                 BADCVAR("sv_vote_call");
458                 BADCVAR("sv_vote_commands");
459                 BADCVAR("sv_vote_majority_factor");
460                 BADCVAR("sv_vote_master");
461                 BADCVAR("sv_vote_master_commands");
462                 BADCVAR("sv_vote_master_password");
463                 BADCVAR("sv_vote_simple_majority_factor");
464                 BADCVAR("teamplay_mode");
465                 BADCVAR("timelimit_override");
466                 BADPREFIX("g_warmup_");
467                 BADPREFIX("sv_info_");
468                 BADPREFIX("sv_ready_restart_");
469
470                 // mutators that announce themselves properly to the server browser
471                 BADCVAR("g_instagib");
472                 BADCVAR("g_new_toys");
473                 BADCVAR("g_nix");
474                 BADCVAR("g_grappling_hook");
475                 BADCVAR("g_jetpack");
476
477 #undef BADPRESUFFIX
478 #undef BADPREFIX
479 #undef BADCVAR
480
481                 if(pureadding)
482                 {
483                         cvar_purechanges = strcat(cvar_purechanges, k, " \"", v, "\" // \"", d, "\"\n");
484                         if(strlen(cvar_purechanges) > 16384)
485                         {
486                                 cvar_purechanges = "// too many settings have been changed to show them here\n";
487                                 pureadding = 0;
488                         }
489                 }
490                 ++cvar_purechanges_count;
491                 // WARNING: this variable is used for the server list
492                 // NEVER dare to skip this code!
493                 // Hacks to intentionally appearing as "pure server" even though you DO have
494                 // modified settings may be punished by removal from the server list.
495                 // You can do to the variables cvar_changes and cvar_purechanges all you want,
496                 // though.
497         }
498         buf_del(h);
499         if(cvar_changes == "")
500                 cvar_changes = "// this server runs at default server settings\n";
501         else
502                 cvar_changes = strcat("// this server runs at modified server settings:\n", cvar_changes);
503         cvar_changes = strzone(cvar_changes);
504         if(cvar_purechanges == "")
505                 cvar_purechanges = "// this server runs at default gameplay settings\n";
506         else
507                 cvar_purechanges = strcat("// this server runs at modified gameplay settings:\n", cvar_purechanges);
508         cvar_purechanges = strzone(cvar_purechanges);
509 }
510
511 entity randomseed;
512 bool RandomSeed_Send(entity this, entity to, int sf)
513 {
514         WriteHeader(MSG_ENTITY, ENT_CLIENT_RANDOMSEED);
515         WriteShort(MSG_ENTITY, this.cnt);
516         return true;
517 }
518 void RandomSeed_Think(entity this)
519 {
520         this.cnt = bound(0, floor(random() * 65536), 65535);
521         this.nextthink = time + 5;
522
523         this.SendFlags |= 1;
524 }
525 void RandomSeed_Spawn()
526 {
527         randomseed = new_pure(randomseed);
528         setthink(randomseed, RandomSeed_Think);
529         Net_LinkEntity(randomseed, false, 0, RandomSeed_Send);
530
531         getthink(randomseed)(randomseed); // sets random seed and nextthink
532 }
533
534 spawnfunc(__init_dedicated_server)
535 {
536         // handler for _init/_init map (only for dedicated server initialization)
537
538         world_initialized = -1; // don't complain
539         cvar = cvar_normal;
540         cvar_string = cvar_string_normal;
541         cvar_set = cvar_set_normal;
542
543         delete_fn = remove_unsafely;
544
545         entity e = spawn();
546         setthink(e, GotoFirstMap);
547         e.nextthink = time; // this is usually 1 at this point
548
549         e = new(info_player_deathmatch);  // safeguard against player joining
550
551     // assign reflectively to avoid "assignment to world" warning
552     for (int i = 0, n = numentityfields(); i < n; ++i) {
553         string k = entityfieldname(i);
554         if (k == "classname") {
555             // safeguard against various stuff ;)
556             putentityfieldstring(i, this, "worldspawn");
557             break;
558         }
559     }
560
561         // needs to be done so early because of the constants they create
562         static_init();
563         static_init_late();
564         static_init_precache();
565
566         IL_PUSH(g_spawnpoints, e); // just incase
567
568         MapInfo_Enumerate();
569         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
570 }
571
572 void __init_dedicated_server_shutdown() {
573         MapInfo_Shutdown();
574 }
575
576 STATIC_INIT_EARLY(maxclients)
577 {
578         maxclients = 0;
579         for (entity head = nextent(NULL); head; head = nextent(head)) {
580                 ++maxclients;
581         }
582 }
583
584 void default_delayedinit(entity this)
585 {
586         if(!scores_initialized)
587                 ScoreRules_generic();
588 }
589
590 void InitGameplayMode()
591 {
592         VoteReset();
593
594         // find out good world mins/maxs bounds, either the static bounds found by looking for solid, or the mapinfo specified bounds
595         get_mi_min_max(1);
596         // assign reflectively to avoid "assignment to world" warning
597         int done = 0; for (int i = 0, n = numentityfields(); i < n; ++i) {
598             string k = entityfieldname(i); vector v = (k == "mins") ? mi_min : (k == "maxs") ? mi_max : '0 0 0';
599             if (v) {
600             putentityfieldstring(i, world, sprintf("%v", v));
601             if (++done == 2) break;
602         }
603         }
604         // currently, NetRadiant's limit is 131072 qu for each side
605         // distance from one corner of a 131072qu cube to the opposite corner is approx. 227023 qu
606         // set the distance according to map size but don't go over the limit to avoid issues with float precision
607         // in case somebody makes extremely large maps
608         max_shot_distance = min(230000, vlen(world.maxs - world.mins));
609
610         MapInfo_LoadMapSettings(mapname);
611         GameRules_teams(false);
612
613         if (!cvar_value_issafe(world.fog))
614         {
615                 LOG_INFO("The current map contains a potentially harmful fog setting, ignored");
616                 world.fog = string_null;
617         }
618         if(MapInfo_Map_fog != "")
619         {
620                 if(MapInfo_Map_fog == "none")
621                         world.fog = string_null;
622                 else
623                         world.fog = strzone(MapInfo_Map_fog);
624         }
625         clientstuff = strzone(MapInfo_Map_clientstuff);
626
627         MapInfo_ClearTemps();
628
629         gamemode_name = MapInfo_Type_ToText(MapInfo_LoadedGametype);
630
631         cache_mutatormsg = strzone("");
632         cache_lastmutatormsg = strzone("");
633
634         InitializeEntity(NULL, default_delayedinit, INITPRIO_GAMETYPE_FALLBACK);
635 }
636
637 void Map_MarkAsRecent(string m);
638 float world_already_spawned;
639 spawnfunc(worldspawn)
640 {
641         server_is_dedicated = boolean(stof(cvar_defstring("is_dedicated")));
642
643         bool wantrestart = false;
644         {
645                 if (!server_is_dedicated)
646                 {
647                         // force unloading of server pk3 files when starting a listen server
648                         // localcmd("\nfs_rescan\n"); // FIXME: does more harm than good, has unintended side effects. What we really want is to unload temporary pk3s only
649                         // restore csqc_progname too
650                         string expect = "csprogs.dat";
651                         wantrestart = cvar_string_normal("csqc_progname") != expect;
652                         cvar_set_normal("csqc_progname", expect);
653                 }
654                 else
655                 {
656                         // Try to use versioned csprogs from pk3
657                         // Only ever use versioned csprogs.dat files on dedicated servers;
658                         // we need to reset csqc_progname on clients ourselves, and it's easier if the client's release name is constant
659                         string pk3csprogs = "csprogs-" WATERMARK ".dat";
660                         // This always works; fall back to it if a versioned csprogs.dat is suddenly missing
661                         string select = "csprogs.dat";
662                         if (fexists(pk3csprogs)) select = pk3csprogs;
663                         if (cvar_string_normal("csqc_progname") != select)
664                         {
665                                 cvar_set_normal("csqc_progname", select);
666                                 wantrestart = true;
667                         }
668                         // Check for updates on startup
669                         // We do it this way for atomicity so that connecting clients still match the server progs and don't disconnect
670                         int sentinel = fopen("progs.txt", FILE_READ);
671                         if (sentinel >= 0)
672                         {
673                                 string switchversion = fgets(sentinel);
674                                 fclose(sentinel);
675                                 if (switchversion != "" && switchversion != WATERMARK)
676                                 {
677                                         LOG_INFOF("Switching progs: " WATERMARK " -> %s", switchversion);
678                                         // if it doesn't exist, assume either:
679                                         //   a) the current program was overwritten
680                                         //   b) this is a client only update
681                                         string newprogs = sprintf("progs-%s.dat", switchversion);
682                                         if (fexists(newprogs))
683                                         {
684                                                 cvar_set_normal("sv_progs", newprogs);
685                                                 wantrestart = true;
686                                         }
687                                         string newcsprogs = sprintf("csprogs-%s.dat", switchversion);
688                                         if (fexists(newcsprogs))
689                                         {
690                                                 cvar_set_normal("csqc_progname", newcsprogs);
691                                                 wantrestart = true;
692                                         }
693                                 }
694                         }
695                 }
696                 if (wantrestart)
697                 {
698                         LOG_INFO("Restart requested");
699                         changelevel(mapname);
700                         // let initialization continue, shutdown depends on it
701                 }
702         }
703
704         cvar = cvar_normal;
705         cvar_string = cvar_string_normal;
706         cvar_set = cvar_set_normal;
707
708         if(world_already_spawned)
709                 error("world already spawned - you may have EXACTLY ONE worldspawn!");
710         world_already_spawned = true;
711
712         delete_fn = remove_safely; // during spawning, watch what you remove!
713
714         cvar_changes_init(); // do this very early now so it REALLY matches the server config
715
716         // needs to be done so early because of the constants they create
717         static_init();
718
719         ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
720
721         TemporaryDB = db_create();
722
723         // 0 normal
724         lightstyle(0, "m");
725
726         // 1 FLICKER (first variety)
727         lightstyle(1, "mmnmmommommnonmmonqnmmo");
728
729         // 2 SLOW STRONG PULSE
730         lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
731
732         // 3 CANDLE (first variety)
733         lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
734
735         // 4 FAST STROBE
736         lightstyle(4, "mamamamamama");
737
738         // 5 GENTLE PULSE 1
739         lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
740
741         // 6 FLICKER (second variety)
742         lightstyle(6, "nmonqnmomnmomomno");
743
744         // 7 CANDLE (second variety)
745         lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
746
747         // 8 CANDLE (third variety)
748         lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
749
750         // 9 SLOW STROBE (fourth variety)
751         lightstyle(9, "aaaaaaaazzzzzzzz");
752
753         // 10 FLUORESCENT FLICKER
754         lightstyle(10, "mmamammmmammamamaaamammma");
755
756         // 11 SLOW PULSE NOT FADE TO BLACK
757         lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
758
759         // styles 32-62 are assigned by the spawnfunc_light program for switchable lights
760
761         // 63 testing
762         lightstyle(63, "a");
763
764         if(autocvar_g_campaign)
765                 CampaignPreInit();
766
767         Map_MarkAsRecent(mapname);
768
769         PlayerStats_GameReport_Init(); // we need this to be initiated before InitGameplayMode
770
771         InitGameplayMode();
772         static_init_late();
773         static_init_precache();
774         readlevelcvars();
775         GrappleHookInit();
776
777         GameRules_limit_fallbacks();
778
779         if(warmup_limit == 0)
780                 warmup_limit = (autocvar_timelimit > 0) ? autocvar_timelimit * 60 : autocvar_timelimit;
781
782         player_count = 0;
783         bot_waypoints_for_items = autocvar_g_waypoints_for_items;
784         if(bot_waypoints_for_items == 1)
785                 if(this.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
786                         bot_waypoints_for_items = 0;
787
788         precache();
789
790         WaypointSprite_Init();
791
792         GameLogInit(); // prepare everything
793         // NOTE for matchid:
794         // changing the logic generating it is okay. But:
795         // it HAS to stay <= 64 chars
796         // character set: ASCII 33-126 without the following characters: : ; ' " \ $
797         if(autocvar_sv_eventlog)
798         {
799                 string s = sprintf("%d.%s.%06d", itos(autocvar_sv_eventlog_files_counter), strftime(false, "%s"), floor(random() * 1000000));
800                 matchid = strzone(s);
801
802                 GameLogEcho(strcat(":gamestart:", GetGametype(), "_", GetMapname(), ":", s));
803                 s = ":gameinfo:mutators:LIST";
804
805                 MUTATOR_CALLHOOK(BuildMutatorsString, s);
806                 s = M_ARGV(0, string);
807
808                 // initialiation stuff, not good in the mutator system
809                 if(!autocvar_g_use_ammunition)
810                         s = strcat(s, ":no_use_ammunition");
811
812                 // initialiation stuff, not good in the mutator system
813                 if(autocvar_g_pickup_items == 0)
814                         s = strcat(s, ":no_pickup_items");
815                 if(autocvar_g_pickup_items > 0)
816                         s = strcat(s, ":pickup_items");
817
818                 // initialiation stuff, not good in the mutator system
819                 if(autocvar_g_weaponarena != "0")
820                         s = strcat(s, ":", autocvar_g_weaponarena, " arena");
821
822                 // TODO to mutator system
823                 if(autocvar_g_norecoil)
824                         s = strcat(s, ":norecoil");
825
826                 // TODO to mutator system
827                 if(autocvar_g_powerups == 0)
828                         s = strcat(s, ":no_powerups");
829                 if(autocvar_g_powerups > 0)
830                         s = strcat(s, ":powerups");
831
832                 GameLogEcho(s);
833                 GameLogEcho(":gameinfo:end");
834         }
835         else
836                 matchid = strzone(ftos(random()));
837
838         cvar_set("nextmap", "");
839
840         SetDefaultAlpha();
841
842         if(autocvar_g_campaign)
843                 CampaignPostInit();
844
845         Ban_LoadBans();
846
847         MapInfo_Enumerate();
848         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
849
850         if(whichpack(strcat("maps/", mapname, ".cfg")) != "")
851         {
852                 int fd = fopen(strcat("maps/", mapname, ".cfg"), FILE_READ);
853                 if(fd != -1)
854                 {
855                         string s;
856                         while((s = fgets(fd)))
857                         {
858                                 int l = tokenize_console(s);
859                                 if(l < 2)
860                                         continue;
861                                 if(argv(0) == "cd")
862                                 {
863                                         LOG_INFO("Found ^1UNSUPPORTED^7 cd loop command in .cfg file; put this line in mapinfo instead:");
864                                         LOG_INFO("  cdtrack ", argv(2));
865                                 }
866                                 else if(argv(0) == "fog")
867                                 {
868                                         LOG_INFO("Found ^1UNSUPPORTED^7 fog command in .cfg file; put this line in worldspawn in the .map/.bsp/.ent file instead:");
869                                         LOG_INFO("  \"fog\" \"", s, "\"");
870                                 }
871                                 else if(argv(0) == "set")
872                                 {
873                                         LOG_INFO("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:");
874                                         LOG_INFO("  clientsettemp_for_type all ", argv(1), " ", argv(2));
875                                 }
876                                 else if(argv(0) != "//")
877                                 {
878                                         LOG_INFO("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:");
879                                         LOG_INFO("  clientsettemp_for_type all ", argv(0), " ", argv(1));
880                                 }
881                         }
882                         fclose(fd);
883                 }
884         }
885
886         WeaponStats_Init();
887
888         Nagger_Init();
889
890         next_pingtime = time + 5;
891
892         // set up information replies for clients and server to use
893         maplist_reply = strzone(getmaplist());
894         lsmaps_reply = strzone(getlsmaps());
895         monsterlist_reply = strzone(getmonsterlist());
896         for(int i = 0; i < 10; ++i)
897         {
898                 string s = getrecords(i);
899                 if (s)
900                         records_reply[i] = strzone(s);
901         }
902         ladder_reply = strzone(getladder());
903         rankings_reply = strzone(getrankings());
904
905         // begin other init
906         ClientInit_Spawn();
907         RandomSeed_Spawn();
908         PingPLReport_Spawn();
909
910         CheatInit();
911
912         if (!wantrestart) localcmd("\n_sv_hook_gamestart ", GetGametype(), "\n");
913
914         // fill sv_curl_serverpackages from .serverpackage files
915         if (autocvar_sv_curl_serverpackages_auto)
916         {
917                 string s = "csprogs-" WATERMARK ".txt";
918                 // remove automatically managed files from the list to prevent duplicates
919                 for (int i = 0, n = tokenize_console(cvar_string("sv_curl_serverpackages")); i < n; ++i)
920                 {
921                         string pkg = argv(i);
922                         if (startsWith(pkg, "csprogs-")) continue;
923                         if (endsWith(pkg, "-serverpackage.txt")) continue;
924                         if (endsWith(pkg, ".serverpackage")) continue;  // OLD legacy
925                         s = cons(s, pkg);
926                 }
927                 // add automatically managed files to the list
928                 #define X(match) MACRO_BEGIN \
929                         int fd = search_begin(match, true, false); \
930                         if (fd >= 0) \
931                         { \
932                                 for (int i = 0, j = search_getsize(fd); i < j; ++i) \
933                                 { \
934                                         s = cons(s, search_getfilename(fd, i)); \
935                                 } \
936                                 search_end(fd); \
937                         } \
938                 MACRO_END
939                 X("*-serverpackage.txt");
940                 X("*.serverpackage");
941                 #undef X
942                 cvar_set("sv_curl_serverpackages", s);
943         }
944
945         // MOD AUTHORS: change this, and possibly remove a few of the blocks below to ignore certain changes
946         modname = "Xonotic";
947         // physics/balance/config changes that count as mod
948         if(cvar_string("g_mod_physics") != cvar_defstring("g_mod_physics"))
949                 modname = cvar_string("g_mod_physics");
950         if(cvar_string("g_mod_balance") != cvar_defstring("g_mod_balance"))
951                 modname = cvar_string("g_mod_balance");
952         if(cvar_string("g_mod_config") != cvar_defstring("g_mod_config"))
953                 modname = cvar_string("g_mod_config");
954         // extra mutators that deserve to count as mod
955         MUTATOR_CALLHOOK(SetModname, modname);
956         modname = M_ARGV(0, string);
957
958         // save it for later
959         modname = strzone(modname);
960
961         WinningConditionHelper(this); // set worldstatus
962
963         world_initialized = 1;
964         __spawnfunc_spawn_all();
965 }
966
967 spawnfunc(light)
968 {
969         //makestatic (this); // Who the f___ did that?
970         delete(this);
971 }
972
973 string GetGametype()
974 {
975         return MapInfo_Type_ToString(MapInfo_LoadedGametype);
976 }
977
978 string GetMapname()
979 {
980         return mapname;
981 }
982
983 float Map_Count, Map_Current;
984 string Map_Current_Name;
985
986 // NOTE: this now expects the map list to be already tokenized and the count in Map_Count
987 int GetMaplistPosition()
988 {
989         string map = GetMapname();
990         int idx = autocvar_g_maplist_index;
991
992         if(idx >= 0)
993         {
994                 if(idx < Map_Count)
995                 {
996                         if(map == argv(idx))
997                         {
998                                 return idx;
999                         }
1000                 }
1001         }
1002
1003         for(int pos = 0; pos < Map_Count; ++pos)
1004         {
1005                 if(map == argv(pos))
1006                         return pos;
1007         }
1008
1009         // resume normal maplist rotation if current map is not in g_maplist
1010         return idx;
1011 }
1012
1013 bool MapHasRightSize(string map)
1014 {
1015         int minplayers = max(0, floor(autocvar_minplayers));
1016         if (teamplay)
1017                 minplayers = max(0, floor(autocvar_minplayers_per_team) * AvailableTeams());
1018         if (autocvar_g_maplist_check_waypoints
1019                 && (currentbots || autocvar_bot_number || player_count < minplayers))
1020         {
1021                 string checkwp_msg = strcat("checkwp ", map);
1022                 if(!fexists(strcat("maps/", map, ".waypoints")))
1023                 {
1024                         LOG_TRACE(checkwp_msg, ": no waypoints");
1025                         return false;
1026                 }
1027                 LOG_TRACE(checkwp_msg, ": has waypoints");
1028         }
1029
1030         if(autocvar_g_maplist_ignore_sizes)
1031                 return true;
1032
1033         // open map size restriction file
1034         string opensize_msg = strcat("opensize ", map);
1035         float fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
1036         if(fh >= 0)
1037         {
1038                 opensize_msg = strcat(opensize_msg, ": ok, ");
1039                 int mapmin = stoi(fgets(fh));
1040                 int mapmax = stoi(fgets(fh));
1041                 fclose(fh);
1042                 if(player_count < mapmin)
1043                 {
1044                         LOG_TRACE(opensize_msg, "not enough");
1045                         return false;
1046                 }
1047                 if(mapmax && player_count > mapmax)
1048                 {
1049                         LOG_TRACE(opensize_msg, "too many");
1050                         return false;
1051                 }
1052                 LOG_TRACE(opensize_msg, "right size");
1053                 return true;
1054         }
1055         LOG_TRACE(opensize_msg, ": not found");
1056         return true;
1057 }
1058
1059 string Map_Filename(float position)
1060 {
1061         return strcat("maps/", argv(position), ".bsp");
1062 }
1063
1064 void Map_MarkAsRecent(string m)
1065 {
1066         cvar_set("g_maplist_mostrecent", strwords(strcat(m, " ", autocvar_g_maplist_mostrecent), max(0, autocvar_g_maplist_mostrecent_count)));
1067 }
1068
1069 float Map_IsRecent(string m)
1070 {
1071         return strhasword(autocvar_g_maplist_mostrecent, m);
1072 }
1073
1074 float Map_Check(float position, float pass)
1075 {
1076         string filename;
1077         string map_next;
1078         map_next = argv(position);
1079         if(pass <= 1)
1080         {
1081                 if(Map_IsRecent(map_next))
1082                         return 0;
1083         }
1084         filename = Map_Filename(position);
1085         if(MapInfo_CheckMap(map_next))
1086         {
1087                 if(pass == 2)
1088                         return 1;
1089                 if(MapHasRightSize(map_next))
1090                         return 1;
1091                 return 0;
1092         }
1093         else
1094                 LOG_DEBUG( "Couldn't select '", filename, "'..." );
1095
1096         return 0;
1097 }
1098
1099 void Map_Goto_SetStr(string nextmapname)
1100 {
1101         if(getmapname_stored != "")
1102                 strunzone(getmapname_stored);
1103         if(nextmapname == "")
1104                 getmapname_stored = "";
1105         else
1106                 getmapname_stored = strzone(nextmapname);
1107 }
1108
1109 void Map_Goto_SetFloat(float position)
1110 {
1111         cvar_set("g_maplist_index", ftos(position));
1112         Map_Goto_SetStr(argv(position));
1113 }
1114
1115 void Map_Goto(float reinit)
1116 {
1117         MapInfo_LoadMap(getmapname_stored, reinit);
1118 }
1119
1120 // return codes of map selectors:
1121 //   -1 = temporary failure (that is, try some method that is guaranteed to succeed)
1122 //   -2 = permanent failure
1123 float MaplistMethod_Iterate() // usual method
1124 {
1125         float pass, i;
1126
1127         LOG_TRACE("Trying MaplistMethod_Iterate");
1128
1129         for(pass = 1; pass <= 2; ++pass)
1130         {
1131                 for(i = 1; i < Map_Count; ++i)
1132                 {
1133                         float mapindex;
1134                         mapindex = (i + Map_Current) % Map_Count;
1135                         if(Map_Check(mapindex, pass))
1136                                 return mapindex;
1137                 }
1138         }
1139         return -1;
1140 }
1141
1142 float MaplistMethod_Repeat() // fallback method
1143 {
1144         LOG_TRACE("Trying MaplistMethod_Repeat");
1145
1146         if(Map_Check(Map_Current, 2))
1147                 return Map_Current;
1148         return -2;
1149 }
1150
1151 float MaplistMethod_Random() // random map selection
1152 {
1153         float i, imax;
1154
1155         LOG_TRACE("Trying MaplistMethod_Random");
1156
1157         imax = 42;
1158
1159         for(i = 0; i <= imax; ++i)
1160         {
1161                 float mapindex;
1162                 mapindex = (Map_Current + floor(random() * (Map_Count - 1) + 1)) % Map_Count; // any OTHER map
1163                 if(Map_Check(mapindex, 1))
1164                         return mapindex;
1165         }
1166         return -1;
1167 }
1168
1169 float MaplistMethod_Shuffle(float exponent) // more clever shuffling
1170 // the exponent sets a bias on the map selection:
1171 // the higher the exponent, the less likely "shortly repeated" same maps are
1172 {
1173         float i, j, imax, insertpos;
1174
1175         LOG_TRACE("Trying MaplistMethod_Shuffle");
1176
1177         imax = 42;
1178
1179         for(i = 0; i <= imax; ++i)
1180         {
1181                 string newlist;
1182
1183                 // now reinsert this at another position
1184                 insertpos = (random() ** (1 / exponent));       // ]0, 1]
1185                 insertpos = insertpos * (Map_Count - 1);       // ]0, Map_Count - 1]
1186                 insertpos = ceil(insertpos) + 1;               // {2, 3, 4, ..., Map_Count}
1187                 LOG_TRACE("SHUFFLE: insert pos = ", ftos(insertpos));
1188
1189                 // insert the current map there
1190                 newlist = "";
1191                 for(j = 1; j < insertpos; ++j)                 // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
1192                         newlist = strcat(newlist, " ", argv(j));
1193                 newlist = strcat(newlist, " ", argv(0));       // now insert the just selected map
1194                 for(j = insertpos; j < Map_Count; ++j)         // i == Map_Count: no loop, has just been inserted as last
1195                         newlist = strcat(newlist, " ", argv(j));
1196                 newlist = substring(newlist, 1, strlen(newlist) - 1);
1197                 cvar_set("g_maplist", newlist);
1198                 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1199
1200                 // NOTE: the selected map has just been inserted at (insertpos-1)th position
1201                 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
1202                 if(Map_Check(Map_Current, 1))
1203                         return Map_Current;
1204         }
1205         return -1;
1206 }
1207
1208 void Maplist_Init()
1209 {
1210         float i = Map_Count = 0;
1211         if(autocvar_g_maplist != "")
1212         {
1213                 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1214                 for (i = 0; i < Map_Count; ++i)
1215                 {
1216                         if (Map_Check(i, 2))
1217                                 break;
1218                 }
1219         }
1220         
1221         if (i == Map_Count)
1222         {
1223                 bprint( "Maplist contains no usable maps!  Resetting it to default map list.\n" );
1224                 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags() | MAPINFO_FLAG_NOAUTOMAPLIST));
1225                 if(autocvar_g_maplist_shuffle)
1226                         ShuffleMaplist();
1227                 if(!server_is_dedicated)
1228                         localcmd("\nmenu_cmd sync\n");
1229                 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1230         }
1231         if(Map_Count == 0)
1232                 error("empty maplist, cannot select a new map");
1233         Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
1234
1235         strcpy(Map_Current_Name, argv(Map_Current)); // will be automatically freed on exit thanks to DP
1236         // this may or may not be correct, but who cares, in the worst case a map
1237         // isn't chosen in the first pass that should have been
1238 }
1239
1240 string GetNextMap()
1241 {
1242         Maplist_Init();
1243         float nextMap = -1;
1244
1245         if(nextMap == -1)
1246                 if(autocvar_g_maplist_shuffle > 0)
1247                         nextMap = MaplistMethod_Shuffle(autocvar_g_maplist_shuffle + 1);
1248
1249         if(nextMap == -1)
1250                 if(autocvar_g_maplist_selectrandom)
1251                         nextMap = MaplistMethod_Random();
1252
1253         if(nextMap == -1)
1254                 nextMap = MaplistMethod_Iterate();
1255
1256         if(nextMap == -1)
1257                 nextMap = MaplistMethod_Repeat();
1258
1259         if(nextMap >= 0)
1260         {
1261                 Map_Goto_SetFloat(nextMap);
1262                 return getmapname_stored;
1263         }
1264
1265         return "";
1266 }
1267
1268 float DoNextMapOverride(float reinit)
1269 {
1270         if(autocvar_g_campaign)
1271         {
1272                 CampaignPostIntermission();
1273                 alreadychangedlevel = true;
1274                 return true;
1275         }
1276         if(autocvar_quit_when_empty)
1277         {
1278                 if(player_count <= currentbots)
1279                 {
1280                         localcmd("quit\n");
1281                         alreadychangedlevel = true;
1282                         return true;
1283                 }
1284         }
1285         if(autocvar_quit_and_redirect != "")
1286         {
1287                 redirection_target = strzone(autocvar_quit_and_redirect);
1288                 alreadychangedlevel = true;
1289                 return true;
1290         }
1291         if (!reinit && autocvar_samelevel) // if samelevel is set, stay on same level
1292         {
1293                 localcmd("restart\n");
1294                 alreadychangedlevel = true;
1295                 return true;
1296         }
1297         if(autocvar_nextmap != "")
1298         {
1299                 string m;
1300                 m = GameTypeVote_MapInfo_FixName(autocvar_nextmap);
1301                 cvar_set("nextmap",m);
1302
1303                 if(!m || gametypevote)
1304                         return false;
1305                 if(autocvar_sv_vote_gametype)
1306                 {
1307                         Map_Goto_SetStr(m);
1308                         return false;
1309                 }
1310
1311                 if(MapInfo_CheckMap(m))
1312                 {
1313                         Map_Goto_SetStr(m);
1314                         Map_Goto(reinit);
1315                         alreadychangedlevel = true;
1316                         return true;
1317                 }
1318         }
1319         if(!reinit && autocvar_lastlevel)
1320         {
1321                 cvar_settemp_restore();
1322                 localcmd("set lastlevel 0\ntogglemenu 1\n");
1323                 alreadychangedlevel = true;
1324                 return true;
1325         }
1326         return false;
1327 }
1328
1329 void GotoNextMap(float reinit)
1330 {
1331         //string nextmap;
1332         //float n, nummaps;
1333         //string s;
1334         if (alreadychangedlevel)
1335                 return;
1336         alreadychangedlevel = true;
1337
1338         string nextMap = GetNextMap();
1339         if(nextMap == "")
1340                 error("Everything is broken - cannot find a next map. Please report this to the developers.");
1341         Map_Goto(reinit);
1342 }
1343
1344
1345 /*
1346 ============
1347 IntermissionThink
1348
1349 When the player presses attack or jump, change to the next level
1350 ============
1351 */
1352 .float autoscreenshot;
1353 void IntermissionThink(entity this)
1354 {
1355         FixIntermissionClient(this);
1356
1357         float server_screenshot = (autocvar_sv_autoscreenshot && CS(this).cvar_cl_autoscreenshot);
1358         float client_screenshot = (CS(this).cvar_cl_autoscreenshot == 2);
1359
1360         if( (server_screenshot || client_screenshot)
1361                 && ((this.autoscreenshot > 0) && (time > this.autoscreenshot)) )
1362         {
1363                 this.autoscreenshot = -1;
1364                 if(IS_REAL_CLIENT(this)) { stuffcmd(this, sprintf("\nscreenshot screenshots/autoscreenshot/%s-%s.jpg; echo \"^5A screenshot has been taken at request of the server.\"\n", GetMapname(), strftime(false, "%s"))); }
1365                 return;
1366         }
1367
1368         if (time < intermission_exittime)
1369                 return;
1370
1371         if(!mapvote_initialized)
1372                 if (time < intermission_exittime + 10 && !(PHYS_INPUT_BUTTON_ATCK(this) || PHYS_INPUT_BUTTON_JUMP(this) || PHYS_INPUT_BUTTON_ATCK2(this) || PHYS_INPUT_BUTTON_HOOK(this) || PHYS_INPUT_BUTTON_USE(this)))
1373                         return;
1374
1375         MapVote_Start();
1376 }
1377
1378 /*
1379 ============
1380 FindIntermission
1381
1382 Returns the entity to view from
1383 ============
1384 */
1385 /*
1386 entity FindIntermission()
1387 {
1388         local   entity spot;
1389         local   float cyc;
1390
1391 // look for info_intermission first
1392         spot = find(NULL, classname, "info_intermission");
1393         if (spot)
1394         {       // pick a random one
1395                 cyc = random() * 4;
1396                 while (cyc > 1)
1397                 {
1398                         spot = find(spot, classname, "info_intermission");
1399                         if (!spot)
1400                                 spot = find(spot, classname, "info_intermission");
1401                         cyc = cyc - 1;
1402                 }
1403                 return spot;
1404         }
1405
1406 // then look for the start position
1407         spot = find(NULL, classname, "info_player_start");
1408         if (spot)
1409                 return spot;
1410
1411 // testinfo_player_start is only found in regioned levels
1412         spot = find(NULL, classname, "testplayerstart");
1413         if (spot)
1414                 return spot;
1415
1416 // then look for the start position
1417         spot = find(NULL, classname, "info_player_deathmatch");
1418         if (spot)
1419                 return spot;
1420
1421         //objerror ("FindIntermission: no spot");
1422         return NULL;
1423 }
1424 */
1425
1426 /*
1427 ===============================================================================
1428
1429 RULES
1430
1431 ===============================================================================
1432 */
1433
1434 void DumpStats(float final)
1435 {
1436         float file;
1437         string s;
1438         float to_console;
1439         float to_eventlog;
1440         float to_file;
1441         float i;
1442
1443         to_console = autocvar_sv_logscores_console;
1444         to_eventlog = autocvar_sv_eventlog;
1445         to_file = autocvar_sv_logscores_file;
1446
1447         if(!final)
1448         {
1449                 to_console = true; // always print printstats replies
1450                 to_eventlog = false; // but never print them to the event log
1451         }
1452
1453         if(to_eventlog)
1454                 if(autocvar_sv_eventlog_console)
1455                         to_console = false; // otherwise we get the output twice
1456
1457         if(final)
1458                 s = ":scores:";
1459         else
1460                 s = ":status:";
1461         s = strcat(s, GetGametype(), "_", GetMapname(), ":", ftos(rint(time)));
1462
1463         if(to_console)
1464                 LOG_INFO(s);
1465         if(to_eventlog)
1466                 GameLogEcho(s);
1467
1468         file = -1;
1469         if(to_file)
1470         {
1471                 file = fopen(autocvar_sv_logscores_filename, FILE_APPEND);
1472                 if(file == -1)
1473                         to_file = false;
1474                 else
1475                         fputs(file, strcat(s, "\n"));
1476         }
1477
1478         s = strcat(":labels:player:", GetPlayerScoreString(NULL, 0));
1479         if(to_console)
1480                 LOG_INFO(s);
1481         if(to_eventlog)
1482                 GameLogEcho(s);
1483         if(to_file)
1484                 fputs(file, strcat(s, "\n"));
1485
1486         FOREACH_CLIENT(IS_REAL_CLIENT(it) || (IS_BOT_CLIENT(it) && autocvar_sv_logscores_bots), {
1487                 s = strcat(":player:see-labels:", GetPlayerScoreString(it, 0), ":");
1488                 s = strcat(s, ftos(rint(time - CS(it).jointime)), ":");
1489                 if(IS_PLAYER(it) || MUTATOR_CALLHOOK(GetPlayerStatus, it))
1490                         s = strcat(s, ftos(it.team), ":");
1491                 else
1492                         s = strcat(s, "spectator:");
1493
1494                 if(to_console)
1495                         LOG_INFO(s, playername(it, false));
1496                 if(to_eventlog)
1497                         GameLogEcho(strcat(s, ftos(it.playerid), ":", playername(it, false)));
1498                 if(to_file)
1499                         fputs(file, strcat(s, playername(it, false), "\n"));
1500         });
1501
1502         if(teamplay)
1503         {
1504                 s = strcat(":labels:teamscores:", GetTeamScoreString(0, 0));
1505                 if(to_console)
1506                         LOG_INFO(s);
1507                 if(to_eventlog)
1508                         GameLogEcho(s);
1509                 if(to_file)
1510                         fputs(file, strcat(s, "\n"));
1511
1512                 for(i = 1; i < 16; ++i)
1513                 {
1514                         s = strcat(":teamscores:see-labels:", GetTeamScoreString(i, 0));
1515                         s = strcat(s, ":", ftos(i));
1516                         if(to_console)
1517                                 LOG_INFO(s);
1518                         if(to_eventlog)
1519                                 GameLogEcho(s);
1520                         if(to_file)
1521                                 fputs(file, strcat(s, "\n"));
1522                 }
1523         }
1524
1525         if(to_console)
1526                 LOG_INFO(":end");
1527         if(to_eventlog)
1528                 GameLogEcho(":end");
1529         if(to_file)
1530         {
1531                 fputs(file, ":end\n");
1532                 fclose(file);
1533         }
1534 }
1535
1536 void FixIntermissionClient(entity e)
1537 {
1538         if(!e.autoscreenshot) // initial call
1539         {
1540                 e.autoscreenshot = time + 0.8;  // used for autoscreenshot
1541                 SetResourceExplicit(e, RES_HEALTH, -2342);
1542                 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
1543                 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1544                 {
1545                     .entity weaponentity = weaponentities[slot];
1546                         if(e.(weaponentity))
1547                         {
1548                                 e.(weaponentity).effects = EF_NODRAW;
1549                                 if (e.(weaponentity).weaponchild)
1550                                         e.(weaponentity).weaponchild.effects = EF_NODRAW;
1551                         }
1552                 }
1553                 if(IS_REAL_CLIENT(e))
1554                 {
1555                         stuffcmd(e, "\nscr_printspeed 1000000\n");
1556                         RandomSelection_Init();
1557                         FOREACH_WORD(autocvar_sv_intermission_cdtrack, true, {
1558                                 RandomSelection_AddString(it, 1, 1);
1559                         });
1560                         if (RandomSelection_chosen_string != "")
1561                         {
1562                                 stuffcmd(e, sprintf("\ncd loop %s\n", RandomSelection_chosen_string));
1563                         }
1564                         msg_entity = e;
1565                         WriteByte(MSG_ONE, SVC_INTERMISSION);
1566                 }
1567         }
1568 }
1569
1570 /*
1571 go to the next level for deathmatch
1572 only called if a time or frag limit has expired
1573 */
1574 void NextLevel()
1575 {
1576         game_stopped = true;
1577         intermission_running = 1; // game over
1578
1579         // enforce a wait time before allowing changelevel
1580         if(player_count > 0)
1581                 intermission_exittime = time + autocvar_sv_mapchange_delay;
1582         else
1583                 intermission_exittime = -1;
1584
1585         /*
1586         WriteByte (MSG_ALL, SVC_CDTRACK);
1587         WriteByte (MSG_ALL, 3);
1588         WriteByte (MSG_ALL, 3);
1589         // done in FixIntermission
1590         */
1591
1592         //pos = FindIntermission ();
1593
1594         VoteReset();
1595
1596         DumpStats(true);
1597
1598         // send statistics
1599         PlayerStats_GameReport(true);
1600         WeaponStats_Shutdown();
1601
1602         Kill_Notification(NOTIF_ALL, NULL, MSG_CENTER, CPID_Null); // kill all centerprints now
1603
1604         if(autocvar_sv_eventlog)
1605                 GameLogEcho(":gameover");
1606
1607         GameLogClose();
1608
1609         FOREACH_CLIENT(IS_PLAYER(it), {
1610                 FixIntermissionClient(it);
1611                 if(it.winning)
1612                         bprint(playername(it, false), " ^7wins.\n");
1613         });
1614
1615         target_music_kill();
1616
1617         if(autocvar_g_campaign)
1618                 CampaignPreIntermission();
1619
1620         MUTATOR_CALLHOOK(MatchEnd);
1621
1622         localcmd("\nsv_hook_gameend\n");
1623 }
1624
1625
1626 float InitiateSuddenDeath()
1627 {
1628         // Check first whether normal overtimes could be added before initiating suddendeath mode
1629         // - for this timelimit_overtime needs to be >0 of course
1630         // - also check the winning condition calculated in the previous frame and only add normal overtime
1631         //   again, if at the point at which timelimit would be extended again, still no winner was found
1632         if (!autocvar_g_campaign && checkrules_overtimesadded >= 0
1633                 && (checkrules_overtimesadded < autocvar_timelimit_overtimes || autocvar_timelimit_overtimes < 0)
1634                 && autocvar_timelimit_overtime && !(g_race && !g_race_qualifying))
1635         {
1636                 return 1; // need to call InitiateOvertime later
1637         }
1638         else
1639         {
1640                 if(!checkrules_suddendeathend)
1641                 {
1642                         if(autocvar_g_campaign)
1643                                 checkrules_suddendeathend = time; // no suddendeath in campaign
1644                         else
1645                                 checkrules_suddendeathend = time + 60 * autocvar_timelimit_suddendeath;
1646                         if(g_race && !g_race_qualifying)
1647                                 race_StartCompleting();
1648                 }
1649                 return 0;
1650         }
1651 }
1652
1653 void InitiateOvertime() // ONLY call this if InitiateSuddenDeath returned true
1654 {
1655         ++checkrules_overtimesadded;
1656         //add one more overtime by simply extending the timelimit
1657         cvar_set("timelimit", ftos(autocvar_timelimit + autocvar_timelimit_overtime));
1658         Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_OVERTIME_TIME, autocvar_timelimit_overtime * 60);
1659 }
1660
1661 float GetWinningCode(float fraglimitreached, float equality)
1662 {
1663         if(autocvar_g_campaign == 1)
1664         {
1665                 if(fraglimitreached)
1666                         return WINNING_YES;
1667                 else
1668                         return WINNING_NO;
1669         }
1670         else
1671         {
1672                 if(equality)
1673                 {
1674                         if(fraglimitreached)
1675                                 return WINNING_STARTSUDDENDEATHOVERTIME;
1676                         else
1677                                 return WINNING_NEVER;
1678                 }
1679                 else
1680                 {
1681                         if(fraglimitreached)
1682                                 return WINNING_YES;
1683                         else
1684                                 return WINNING_NO;
1685                 }
1686         }
1687 }
1688
1689 // set the .winning flag for exactly those players with a given field value
1690 void SetWinners(.float field, float value)
1691 {
1692         FOREACH_CLIENT(IS_PLAYER(it), { it.winning = (it.(field) == value); });
1693 }
1694
1695 // set the .winning flag for those players with a given field value
1696 void AddWinners(.float field, float value)
1697 {
1698         FOREACH_CLIENT(IS_PLAYER(it), {
1699                 if(it.(field) == value)
1700                         it.winning = 1;
1701         });
1702 }
1703
1704 // clear the .winning flags
1705 void ClearWinners()
1706 {
1707         FOREACH_CLIENT(IS_PLAYER(it), { it.winning = 0; });
1708 }
1709
1710 void ShuffleMaplist()
1711 {
1712         cvar_set("g_maplist", shufflewords(autocvar_g_maplist));
1713 }
1714
1715 float leaderfrags;
1716 float WinningCondition_Scores(float limit, float leadlimit)
1717 {
1718         float limitreached;
1719
1720         // TODO make everything use THIS winning condition (except LMS)
1721         WinningConditionHelper(NULL);
1722
1723         if(teamplay)
1724         {
1725                 for (int i = 1; i < 5; ++i)
1726                 {
1727                         Team_SetTeamScore(Team_GetTeamFromIndex(i),
1728                                 TeamScore_GetCompareValue(Team_IndexToTeam(i)));
1729                 }
1730         }
1731
1732         ClearWinners();
1733         if(WinningConditionHelper_winner)
1734                 WinningConditionHelper_winner.winning = 1;
1735         if(WinningConditionHelper_winnerteam >= 0)
1736                 SetWinners(team, WinningConditionHelper_winnerteam);
1737
1738         if(WinningConditionHelper_lowerisbetter)
1739         {
1740                 WinningConditionHelper_topscore = -WinningConditionHelper_topscore;
1741                 WinningConditionHelper_secondscore = -WinningConditionHelper_secondscore;
1742                 limit = -limit;
1743         }
1744
1745         if(WinningConditionHelper_zeroisworst)
1746                 leadlimit = 0; // not supported in this mode
1747
1748         if(MUTATOR_CALLHOOK(Scores_CountFragsRemaining))
1749         // these modes always score in increments of 1, thus this makes sense
1750         {
1751                 if(leaderfrags != WinningConditionHelper_topscore)
1752                 {
1753                         leaderfrags = WinningConditionHelper_topscore;
1754
1755                         if (limit)
1756                         {
1757                                 if (leaderfrags == limit - 1)
1758                                         Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_REMAINING_FRAG_1);
1759                                 else if (leaderfrags == limit - 2)
1760                                         Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_REMAINING_FRAG_2);
1761                                 else if (leaderfrags == limit - 3)
1762                                         Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_REMAINING_FRAG_3);
1763                         }
1764                 }
1765         }
1766
1767         limitreached = false;
1768         if (limit && WinningConditionHelper_topscore >= limit)
1769                 limitreached = true;
1770         if(leadlimit)
1771         {
1772                 float leadlimitreached;
1773                 leadlimitreached = (WinningConditionHelper_topscore - WinningConditionHelper_secondscore >= leadlimit);
1774                 if(autocvar_leadlimit_and_fraglimit)
1775                         limitreached = (limitreached && leadlimitreached);
1776                 else
1777                         limitreached = (limitreached || leadlimitreached);
1778         }
1779
1780         if(limit)
1781                 game_completion_ratio = max(game_completion_ratio, bound(0, WinningConditionHelper_topscore / limit, 1));
1782
1783         return GetWinningCode(
1784                 WinningConditionHelper_topscore && limitreached,
1785                 WinningConditionHelper_equality
1786         );
1787 }
1788
1789 float WinningCondition_RanOutOfSpawns()
1790 {
1791         if(have_team_spawns <= 0)
1792                 return WINNING_NO;
1793
1794         if(!autocvar_g_spawn_useallspawns)
1795                 return WINNING_NO;
1796
1797         if(!some_spawn_has_been_used)
1798                 return WINNING_NO;
1799
1800         for (int i = 1; i < 5; ++i)
1801         {
1802                 Team_SetTeamScore(Team_GetTeamFromIndex(i), 0);
1803         }
1804
1805         FOREACH_CLIENT(IS_PLAYER(it) && !IS_DEAD(it),
1806         {
1807                 if (Team_IsValidTeam(it.team))
1808                 {
1809                         Team_SetTeamScore(Team_GetTeam(it.team), 1);
1810                 }
1811         });
1812
1813         IL_EACH(g_spawnpoints, true,
1814         {
1815                 if (Team_IsValidTeam(it.team))
1816                 {
1817                         Team_SetTeamScore(Team_GetTeam(it.team), 1);
1818                 }
1819         });
1820
1821         ClearWinners();
1822         float team1_score = Team_GetTeamScore(Team_GetTeamFromIndex(1));
1823         float team2_score = Team_GetTeamScore(Team_GetTeamFromIndex(2));
1824         float team3_score = Team_GetTeamScore(Team_GetTeamFromIndex(3));
1825         float team4_score = Team_GetTeamScore(Team_GetTeamFromIndex(4));
1826         if(team1_score + team2_score + team3_score + team4_score == 0)
1827         {
1828                 checkrules_equality = true;
1829                 return WINNING_YES;
1830         }
1831         else if(team1_score + team2_score + team3_score + team4_score == 1)
1832         {
1833                 float t, i;
1834                 if(team1_score)
1835                         t = 1;
1836                 else if(team2_score)
1837                         t = 2;
1838                 else if(team3_score)
1839                         t = 3;
1840                 else // if(team4_score)
1841                         t = 4;
1842                 entity balance = TeamBalance_CheckAllowedTeams(NULL);
1843                 for(i = 0; i < MAX_TEAMSCORE; ++i)
1844                 {
1845                         for (int j = 1; j <= NUM_TEAMS; ++j)
1846                         {
1847                                 if (t == j)
1848                                 {
1849                                         continue;
1850                                 }
1851                                 if (!TeamBalance_IsTeamAllowed(balance, j))
1852                                 {
1853                                         continue;
1854                                 }
1855                                 TeamScore_AddToTeam(Team_IndexToTeam(j), i, -1000);
1856                         }
1857                 }
1858
1859                 AddWinners(team, t);
1860                 return WINNING_YES;
1861         }
1862         else
1863                 return WINNING_NO;
1864 }
1865
1866 /*
1867 ============
1868 CheckRules_World
1869
1870 Exit deathmatch games upon conditions
1871 ============
1872 */
1873 void CheckRules_World()
1874 {
1875         float timelimit;
1876         float fraglimit;
1877         float leadlimit;
1878
1879         VoteThink();
1880         MapVote_Think();
1881
1882         SetDefaultAlpha();
1883
1884         if (intermission_running) // someone else quit the game already
1885         {
1886                 if(player_count == 0) // Nobody there? Then let's go to the next map
1887                         MapVote_Start();
1888                         // this will actually check the player count in the next frame
1889                         // again, but this shouldn't hurt
1890                 return;
1891         }
1892
1893         timelimit = autocvar_timelimit * 60;
1894         fraglimit = autocvar_fraglimit;
1895         leadlimit = autocvar_leadlimit;
1896
1897         if(warmup_stage || time <= game_starttime) // NOTE: this is <= to prevent problems in the very tic where the game starts
1898         {
1899                 if(timelimit > 0)
1900                         timelimit = 0; // timelimit is not made for warmup
1901                 if(fraglimit > 0)
1902                         fraglimit = 0; // no fraglimit for now
1903                 leadlimit = 0; // no leadlimit for now
1904         }
1905
1906         if(timelimit > 0)
1907         {
1908                 timelimit += game_starttime;
1909         }
1910         else if (timelimit < 0)
1911         {
1912                 // endmatch
1913                 NextLevel();
1914                 return;
1915         }
1916
1917         float wantovertime;
1918         wantovertime = 0;
1919
1920         if(timelimit > game_starttime)
1921                 game_completion_ratio = (time - game_starttime) / (timelimit - game_starttime);
1922         else
1923                 game_completion_ratio = 0;
1924
1925         if(checkrules_suddendeathend)
1926         {
1927                 if(!checkrules_suddendeathwarning)
1928                 {
1929                         checkrules_suddendeathwarning = true;
1930                         if(g_race && !g_race_qualifying)
1931                                 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_RACE_FINISHLAP);
1932                         else
1933                                 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_OVERTIME_FRAG);
1934                 }
1935         }
1936         else
1937         {
1938                 if (timelimit && time >= timelimit)
1939                 {
1940                         if(g_race && (g_race_qualifying == 2) && timelimit > 0)
1941                         {
1942                                 float totalplayers;
1943                                 float playerswithlaps;
1944                                 float readyplayers;
1945                                 totalplayers = playerswithlaps = readyplayers = 0;
1946                                 FOREACH_CLIENT(IS_PLAYER(it), {
1947                                         ++totalplayers;
1948                                         if(GameRules_scoring_add(it, RACE_FASTEST, 0))
1949                                                 ++playerswithlaps;
1950                                         if(it.ready)
1951                                                 ++readyplayers;
1952                                 });
1953
1954                                 // at least 2 of the players have completed a lap: start the RACE
1955                                 // otherwise, the players should end the qualifying on their own
1956                                 if(readyplayers || playerswithlaps >= 2)
1957                                 {
1958                                         checkrules_suddendeathend = 0;
1959                                         ReadyRestart(); // go to race
1960                                         return;
1961                                 }
1962                                 else
1963                                         wantovertime |= InitiateSuddenDeath();
1964                         }
1965                         else
1966                                 wantovertime |= InitiateSuddenDeath();
1967                 }
1968         }
1969
1970         if (checkrules_suddendeathend && time >= checkrules_suddendeathend)
1971         {
1972                 NextLevel();
1973                 return;
1974         }
1975
1976         int checkrules_status = WinningCondition_RanOutOfSpawns();
1977         if(checkrules_status == WINNING_YES)
1978                 bprint("Hey! Someone ran out of spawns!\n");
1979         else if(MUTATOR_CALLHOOK(CheckRules_World, checkrules_status, timelimit, fraglimit))
1980                 checkrules_status = M_ARGV(0, float);
1981         else
1982                 checkrules_status = WinningCondition_Scores(fraglimit, leadlimit);
1983
1984         if(checkrules_status == WINNING_STARTSUDDENDEATHOVERTIME)
1985         {
1986                 checkrules_status = WINNING_NEVER;
1987                 checkrules_overtimesadded = -1;
1988                 wantovertime |= InitiateSuddenDeath();
1989         }
1990
1991         if(checkrules_status == WINNING_NEVER)
1992                 // equality cases! Nobody wins if the overtime ends in a draw.
1993                 ClearWinners();
1994
1995         if(wantovertime)
1996         {
1997                 if(checkrules_status == WINNING_NEVER)
1998                         InitiateOvertime();
1999                 else
2000                         checkrules_status = WINNING_YES;
2001         }
2002
2003         if(checkrules_suddendeathend)
2004                 if(checkrules_status != WINNING_NEVER || time >= checkrules_suddendeathend)
2005                         checkrules_status = WINNING_YES;
2006
2007         if(checkrules_status == WINNING_YES)
2008         {
2009                 //print("WINNING\n");
2010                 NextLevel();
2011         }
2012 }
2013
2014 string GotoMap(string m)
2015 {
2016         m = GameTypeVote_MapInfo_FixName(m);
2017         if (!m)
2018                 return "The map you suggested is not available on this server.";
2019         if (!autocvar_sv_vote_gametype)
2020         if(!MapInfo_CheckMap(m))
2021                 return "The map you suggested does not support the current game mode.";
2022         cvar_set("nextmap", m);
2023         cvar_set("timelimit", "-1");
2024         if(mapvote_initialized || alreadychangedlevel)
2025         {
2026                 if(DoNextMapOverride(0))
2027                         return "Map switch initiated.";
2028                 else
2029                         return "Hm... no. For some reason I like THIS map more.";
2030         }
2031         else
2032                 return "Map switch will happen after scoreboard.";
2033 }
2034
2035 bool autocvar_sv_gameplayfix_multiplethinksperframe;
2036 void RunThink(entity this)
2037 {
2038         // don't let things stay in the past.
2039         // it is possible to start that way by a trigger with a local time.
2040         if(this.nextthink <= 0 || this.nextthink > time + frametime)
2041                 return;
2042
2043         float oldtime = time; // do we need to save this?
2044
2045         for (int iterations = 0; iterations < 128 && !wasfreed(this); iterations++)
2046         {
2047                 time = max(oldtime, this.nextthink);
2048                 this.nextthink = 0;
2049
2050                 if(getthink(this))
2051                         getthink(this)(this);
2052                 // mods often set nextthink to time to cause a think every frame,
2053                 // we don't want to loop in that case, so exit if the new nextthink is
2054                 // <= the time the qc was told, also exit if it is past the end of the
2055                 // frame
2056                 if(this.nextthink <= time || this.nextthink > oldtime + frametime || !autocvar_sv_gameplayfix_multiplethinksperframe)
2057                         break;
2058         }
2059
2060         time = oldtime;
2061 }
2062
2063 bool autocvar_sv_freezenonclients;
2064 bool autocvar_sv_gameplayfix_delayprojectiles;
2065 void Physics_Frame()
2066 {
2067         if(autocvar_sv_freezenonclients)
2068                 return;
2069
2070         FOREACH_ENTITY_FLOAT(pure_data, false,
2071         {
2072                 if(IS_CLIENT(it) || it.classname == "" || it.move_movetype == MOVETYPE_PUSH || it.move_movetype == MOVETYPE_FAKEPUSH || it.move_movetype == MOVETYPE_PHYSICS)
2073                         continue;
2074
2075                 //set_movetype(it, it.move_movetype);
2076                 // inline the set_movetype function, since this is called a lot
2077                 it.movetype = (it.move_qcphysics) ? MOVETYPE_NONE : it.move_movetype;
2078
2079                 if(it.move_movetype == MOVETYPE_NONE)
2080                         continue;
2081
2082                 if(it.move_qcphysics)
2083                         Movetype_Physics_NoMatchTicrate(it, PHYS_INPUT_TIMELENGTH, false);
2084
2085                 if(it.movetype >= MOVETYPE_USER_FIRST && it.movetype <= MOVETYPE_USER_LAST) // these cases have no think handling
2086                 {
2087                         // handle thinking here
2088                         if (getthink(it) && it.nextthink > 0 && it.nextthink <= time + frametime)
2089                                 RunThink(it);
2090                 }
2091         });
2092
2093         if(autocvar_sv_gameplayfix_delayprojectiles >= 0)
2094                 return;
2095
2096         FOREACH_ENTITY_FLOAT(move_qcphysics, true,
2097         {
2098                 if(IS_CLIENT(it) || is_pure(it) || it.classname == "" || it.move_movetype == MOVETYPE_NONE)
2099                         continue;
2100                 Movetype_Physics_NoMatchTicrate(it, PHYS_INPUT_TIMELENGTH, false);
2101         });
2102 }
2103
2104 void systems_update();
2105 void EndFrame()
2106 {
2107         anticheat_endframe();
2108
2109         Physics_Frame();
2110
2111         FOREACH_CLIENT(IS_REAL_CLIENT(it), {
2112                 entity e = IS_SPEC(it) ? it.enemy : it;
2113                 if (e.typehitsound) {
2114                         STAT(TYPEHIT_TIME, it) = time;
2115                 } else if (e.killsound) {
2116                         STAT(KILL_TIME, it) = time;
2117                 } else if (e.damage_dealt) {
2118                         STAT(HIT_TIME, it) = time;
2119                         STAT(DAMAGE_DEALT_TOTAL, it) += ceil(e.damage_dealt);
2120                 }
2121         });
2122         // add 1 frametime because after this, engine SV_Physics
2123         // increases time by a frametime and then networks the frame
2124         // add another frametime because client shows everything with
2125         // 1 frame of lag (cl_nolerp 0). The last +1 however should not be
2126         // needed!
2127         float altime = time + frametime * (1 + autocvar_g_antilag_nudge);
2128         FOREACH_CLIENT(true, {
2129                 it.typehitsound = false;
2130                 it.damage_dealt = 0;
2131                 it.killsound = false;
2132                 antilag_record(it, CS(it), altime);
2133         });
2134         IL_EACH(g_monsters, true,
2135         {
2136                 antilag_record(it, it, altime);
2137         });
2138         IL_EACH(g_projectiles, it.classname == "nade",
2139         {
2140                 antilag_record(it, it, altime);
2141         });
2142         systems_update();
2143         IL_ENDFRAME();
2144 }
2145
2146
2147 /*
2148  * RedirectionThink:
2149  * returns true if redirecting
2150  */
2151 float redirection_timeout;
2152 float redirection_nextthink;
2153 float RedirectionThink()
2154 {
2155         float clients_found;
2156
2157         if(redirection_target == "")
2158                 return false;
2159
2160         if(!redirection_timeout)
2161         {
2162                 cvar_set("sv_public", "-2");
2163                 redirection_timeout = time + 0.6; // this will only try twice... should be able to keep more clients
2164                 if(redirection_target == "self")
2165                         bprint("^3SERVER NOTICE:^7 restarting the server\n");
2166                 else
2167                         bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
2168         }
2169
2170         if(time < redirection_nextthink)
2171                 return true;
2172
2173         redirection_nextthink = time + 1;
2174
2175         clients_found = 0;
2176         FOREACH_CLIENT(IS_REAL_CLIENT(it), {
2177                 // TODO add timer
2178                 LOG_INFO("Redirecting: sending connect command to ", it.netname);
2179                 if(redirection_target == "self")
2180                         stuffcmd(it, "\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " reconnect\n");
2181                 else
2182                         stuffcmd(it, strcat("\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " \"connect ", redirection_target, "\"\n"));
2183                 ++clients_found;
2184         });
2185
2186         LOG_INFO("Redirecting: ", ftos(clients_found), " clients left.");
2187
2188         if(time > redirection_timeout || clients_found == 0)
2189                 localcmd("\nwait; wait; wait; quit\n");
2190
2191         return true;
2192 }
2193
2194 void RestoreGame()
2195 {
2196         // Loaded from a save game
2197         // some things then break, so let's work around them...
2198
2199         // Progs DB (capture records)
2200         ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
2201
2202         // Mapinfo
2203         MapInfo_Shutdown();
2204         MapInfo_Enumerate();
2205         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
2206         WeaponStats_Init();
2207
2208         TargetMusic_RestoreGame();
2209 }
2210
2211 void Shutdown()
2212 {
2213         game_stopped = 2;
2214
2215         if(world_initialized > 0)
2216         {
2217                 world_initialized = 0;
2218                 LOG_TRACE("Saving persistent data...");
2219                 Ban_SaveBans();
2220
2221                 // playerstats with unfinished match
2222                 PlayerStats_GameReport(false);
2223
2224                 if(!cheatcount_total)
2225                 {
2226                         if(autocvar_sv_db_saveasdump)
2227                                 db_dump(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2228                         else
2229                                 db_save(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2230                 }
2231                 if(autocvar_developer)
2232                 {
2233                         if(autocvar_sv_db_saveasdump)
2234                                 db_dump(TemporaryDB, "server-temp.db");
2235                         else
2236                                 db_save(TemporaryDB, "server-temp.db");
2237                 }
2238                 CheatShutdown(); // must be after cheatcount check
2239                 db_close(ServerProgsDB);
2240                 db_close(TemporaryDB);
2241                 LOG_TRACE("Saving persistent data... done!");
2242                 // tell the bot system the game is ending now
2243                 bot_endgame();
2244
2245                 WeaponStats_Shutdown();
2246                 MapInfo_Shutdown();
2247         }
2248         else if(world_initialized == 0)
2249         {
2250                 LOG_INFO("NOTE: crashed before even initializing the world, not saving persistent data");
2251         }
2252         else
2253         {
2254                 __init_dedicated_server_shutdown();
2255         }
2256 }