3 #include "anticheat.qh"
9 #include "command/common.qh"
10 #include "command/getreplies.qh"
11 #include "command/sv_cmd.qh"
12 #include "command/vote.qh"
15 #include "mapvoting.qh"
16 #include "mutators/_mod.qh"
19 #include "teamplay.qh"
20 #include "weapons/weaponstats.qh"
21 #include "../common/constants.qh"
22 #include <common/net_linked.qh>
23 #include "../common/deathtypes/all.qh"
24 #include "../common/mapinfo.qh"
25 #include "../common/monsters/_mod.qh"
26 #include "../common/monsters/sv_monsters.qh"
27 #include "../common/vehicles/all.qh"
28 #include "../common/notifications/all.qh"
29 #include "../common/physics/player.qh"
30 #include "../common/playerstats.qh"
31 #include "../common/stats.qh"
32 #include "../common/teams.qh"
33 #include "../common/triggers/trigger/secret.qh"
34 #include "../common/triggers/target/music.qh"
35 #include "../common/util.qh"
36 #include "../common/items/_mod.qh"
37 #include <common/weapons/_all.qh>
38 #include "../common/state.qh"
40 const float LATENCY_THINKRATE = 10;
45 void PingPLReport_Think(entity this)
50 delta = 3 / maxclients;
51 if(delta < sys_frametime)
53 this.nextthink = time + delta;
55 e = edict_num(this.cnt + 1);
56 if(IS_CLIENT(e) && IS_REAL_CLIENT(e))
58 WriteHeader(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
59 WriteByte(MSG_BROADCAST, this.cnt);
60 WriteShort(MSG_BROADCAST, bound(1, CS(e).ping, 65535));
61 WriteByte(MSG_BROADCAST, min(ceil(CS(e).ping_packetloss * 255), 255));
62 WriteByte(MSG_BROADCAST, min(ceil(CS(e).ping_movementloss * 255), 255));
64 // record latency times for clients throughout the match so we can report it to playerstats
65 if(time > (CS(e).latency_time + LATENCY_THINKRATE))
67 CS(e).latency_sum += CS(e).ping;
68 CS(e).latency_cnt += 1;
69 CS(e).latency_time = time;
70 //print("sum: ", ftos(CS(e).latency_sum), ", cnt: ", ftos(CS(e).latency_cnt), ", avg: ", ftos(CS(e).latency_sum / CS(e).latency_cnt), ".\n");
75 WriteHeader(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
76 WriteByte(MSG_BROADCAST, this.cnt);
77 WriteShort(MSG_BROADCAST, 0);
78 WriteByte(MSG_BROADCAST, 0);
79 WriteByte(MSG_BROADCAST, 0);
81 this.cnt = (this.cnt + 1) % maxclients;
83 void PingPLReport_Spawn()
85 pingplreport = new_pure(pingplreport);
86 setthink(pingplreport, PingPLReport_Think);
87 pingplreport.nextthink = time;
90 const float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
91 string redirection_target;
92 float world_initialized;
95 void ShuffleMaplist();
97 void SetDefaultAlpha()
99 if (!MUTATOR_CALLHOOK(SetDefaultAlpha))
101 default_player_alpha = autocvar_g_player_alpha;
102 if(default_player_alpha == 0)
103 default_player_alpha = 1;
104 default_weapon_alpha = default_player_alpha;
108 void GotoFirstMap(entity this)
111 if(autocvar__sv_init)
113 // cvar_set("_sv_init", "0");
114 // we do NOT set this to 0 any more, so someone "accidentally" changing
115 // to this "init" map on a dedicated server will cause no permanent
117 if(autocvar_g_maplist_shuffle)
119 n = tokenizebyseparator(autocvar_g_maplist, " ");
120 cvar_set("g_maplist_index", ftos(n - 1)); // jump to map 0 in GotoNextMap
123 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
125 if(!DoNextMapOverride(1))
133 this.nextthink = time;
137 this.nextthink = time + 1;
138 LOG_INFO("Waiting for _sv_init being set to 1 by initialization scripts...");
142 void cvar_changes_init()
146 float n, i, adding, pureadding;
149 strunzone(cvar_changes);
150 cvar_changes = string_null;
152 strunzone(cvar_purechanges);
153 cvar_purechanges = string_null;
154 cvar_purechanges_count = 0;
157 buf_cvarlist(h, "", "_"); // exclude all _ cvars as they are temporary
163 for(i = 0; i < n; ++i)
165 k = bufstr_get(h, i);
167 #define BADPREFIX(p) if(substring(k, 0, strlen(p)) == p) continue
168 #define BADPRESUFFIX(p,s) if(substring(k, 0, strlen(p)) == p && substring(k, -strlen(s), -1) == s) continue
169 #define BADCVAR(p) if(k == p) continue
171 // general excludes and namespaces for server admin used cvars
172 BADPREFIX("help_"); // PN's server has this listed as changed, let's not rat him out for THAT
176 BADPREFIX("cvar_check_");
178 BADCVAR("g_configversion");
179 BADCVAR("halflifebsp");
180 BADCVAR("sv_mapformat_is_quake2");
181 BADCVAR("sv_mapformat_is_quake3");
182 BADPREFIX("sv_world");
188 BADPREFIX("scoreboard_");
189 BADPREFIX("g_campaign");
190 BADPREFIX("g_waypointsprite_");
196 BADPREFIX("net_slist_");
202 BADPREFIX("sensitivity");
203 BADPREFIX("userbind");
206 BADPREFIX("crosshair");
207 BADCVAR("mod_q3bsp_lightmapmergepower");
208 BADCVAR("mod_q3bsp_nolightmaps");
210 BADCVAR("mastervolume");
212 BADCVAR("bgmvolume");
213 BADCVAR("in_pitch_min");
214 BADCVAR("in_pitch_max");
217 BADCVAR("developer");
218 BADCVAR("log_dest_udp");
219 BADCVAR("net_address");
220 BADCVAR("net_address_ipv6");
222 BADCVAR("savedgamecfg");
223 BADCVAR("serverconfig");
224 BADCVAR("sv_autoscreenshot");
225 BADCVAR("sv_heartbeatperiod");
226 BADCVAR("sv_vote_master_password");
227 BADCVAR("sys_colortranslation");
228 BADCVAR("sys_specialcharactertranslation");
229 BADCVAR("timeformat");
230 BADCVAR("timestamps");
231 BADCVAR("g_require_stats");
232 BADPREFIX("developer_");
234 BADPREFIX("g_banned_list");
235 BADPREFIX("g_require_stats_");
236 BADPREFIX("g_chat_flood_");
237 BADPREFIX("g_ghost_items");
238 BADPREFIX("g_playerstats_");
239 BADPREFIX("g_voice_flood_");
240 BADPREFIX("log_file");
243 BADPREFIX("sv_allowdownloads");
244 BADPREFIX("sv_autodemo");
245 BADPREFIX("sv_curl_");
246 BADPREFIX("sv_eventlog");
247 BADPREFIX("sv_logscores_");
248 BADPREFIX("sv_master");
249 BADPREFIX("sv_weaponstats_");
250 BADPREFIX("sv_waypointsprite_");
251 BADCVAR("rescan_pending");
253 // these can contain player IDs, so better hide
254 BADPREFIX("g_forced_team_");
255 BADCVAR("sv_muteban_list");
256 BADCVAR("sv_allow_customplayermodels_idlist");
257 BADCVAR("sv_allow_customplayermodels_speciallist");
260 BADCVAR("fraglimit");
262 BADCVAR("g_assault");
264 BADCVAR("g_ca_teams");
265 BADCVAR("g_conquest");
270 BADCVAR("g_domination");
271 BADCVAR("g_domination_default_teams");
272 BADCVAR("g_freezetag");
273 BADCVAR("g_freezetag_teams");
274 BADCVAR("g_invasion_teams");
275 BADCVAR("g_invasion_type");
276 BADCVAR("g_jailbreak");
277 BADCVAR("g_jailbreak_teams");
278 BADCVAR("g_keepaway");
279 BADCVAR("g_keyhunt");
280 BADCVAR("g_keyhunt_teams");
282 BADCVAR("g_nexball");
283 BADCVAR("g_onslaught");
285 BADCVAR("g_race_laps_limit");
286 BADCVAR("g_race_qualifying_timelimit");
287 BADCVAR("g_race_qualifying_timelimit_override");
288 BADCVAR("g_runematch");
291 BADCVAR("g_tdm_teams");
293 BADCVAR("leadlimit");
296 BADCVAR("timelimit");
297 BADCVAR("g_mapinfo_ignore_warnings");
301 BADCVAR("g_maplist");
302 BADCVAR("g_maplist_mostrecent");
306 d = cvar_defstring(k);
312 cvar_changes = strcat(cvar_changes, k, " \"", v, "\" // \"", d, "\"\n");
313 if(strlen(cvar_changes) > 16384)
315 cvar_changes = "// too many settings have been changed to show them here\n";
320 // now check if the changes are actually gameplay relevant
322 // does nothing gameplay relevant
323 BADCVAR("captureleadlimit_override");
324 BADCVAR("condump_stripcolors");
325 BADCVAR("gameversion");
326 BADCVAR("g_allow_oldvortexbeam");
327 BADCVAR("g_balance_kill_delay");
328 BADCVAR("g_buffs_pickup_anyway");
329 BADCVAR("g_buffs_randomize");
330 BADCVAR("g_campcheck_distance");
331 BADCVAR("g_ca_point_leadlimit");
332 BADCVAR("g_ca_point_limit");
333 BADCVAR("g_ctf_captimerecord_always");
334 BADCVAR("g_ctf_flag_glowtrails");
335 BADCVAR("g_ctf_flag_pickup_verbosename");
336 BADCVAR("g_domination_point_leadlimit");
337 BADCVAR("g_forced_respawn");
338 BADCVAR("g_freezetag_point_leadlimit");
339 BADCVAR("g_freezetag_point_limit");
341 BADCVAR("g_invasion_point_limit");
342 BADCVAR("g_jump_grunt");
343 BADCVAR("g_keyhunt_point_leadlimit");
344 BADCVAR("g_nexball_goalleadlimit");
345 BADCVAR("g_new_toys_use_pickupsound");
346 BADCVAR("g_physics_predictall");
347 BADCVAR("g_piggyback");
348 BADCVAR("g_playerclip_collisions");
349 BADCVAR("g_tdm_point_leadlimit");
350 BADCVAR("g_tdm_point_limit");
351 BADCVAR("leadlimit_and_fraglimit");
352 BADCVAR("leadlimit_override");
354 BADCVAR("sv_checkforpacketsduringsleep");
355 BADCVAR("sv_damagetext");
356 BADCVAR("sv_db_saveasdump");
357 BADCVAR("sv_intermission_cdtrack");
358 BADCVAR("sv_minigames");
359 BADCVAR("sv_namechangetimer");
360 BADCVAR("sv_precacheplayermodels");
361 BADCVAR("sv_stepheight");
362 BADCVAR("sv_timeout");
363 BADCVAR("sv_weapons_modeloverride");
364 BADPREFIX("crypto_");
365 BADPREFIX("gameversion_");
366 BADPREFIX("g_chat_");
367 BADPREFIX("g_ctf_captimerecord_");
368 BADPREFIX("g_maplist_");
370 BADPREFIX("g_respawn_");
372 BADPREFIX("notification_");
375 BADPREFIX("sv_allow_");
376 BADPREFIX("sv_cullentities_");
377 BADPREFIX("sv_maxidle_");
378 BADPREFIX("sv_minigames_");
379 BADPREFIX("sv_radio_");
380 BADPREFIX("sv_timeout_");
381 BADPREFIX("sv_vote_");
382 BADPREFIX("timelimit_");
384 // allowed changes to server admins (please sync this to server.cfg)
388 // :%s,//\([^ ]*\).*,BADCVAR("\1");,
390 // yes, this does contain some redundant stuff, don't really care
391 BADCVAR("bot_config_file");
392 BADCVAR("bot_number");
393 BADCVAR("bot_prefix");
394 BADCVAR("bot_suffix");
395 BADCVAR("capturelimit_override");
396 BADCVAR("fraglimit_override");
398 BADCVAR("g_antilag");
399 BADCVAR("g_balance_teams");
400 BADCVAR("g_balance_teams_prevent_imbalance");
401 BADCVAR("g_balance_teams_scorefactor");
402 BADCVAR("g_ban_sync_trusted_servers");
403 BADCVAR("g_ban_sync_uri");
405 BADCVAR("g_ca_teams_override");
406 BADCVAR("g_ctf_ignore_frags");
407 BADCVAR("g_ctf_leaderboard");
408 BADCVAR("g_domination_point_limit");
409 BADCVAR("g_domination_teams_override");
410 BADCVAR("g_freezetag_teams_override");
411 BADCVAR("g_friendlyfire");
412 BADCVAR("g_fullbrightitems");
413 BADCVAR("g_fullbrightplayers");
414 BADCVAR("g_keyhunt_point_limit");
415 BADCVAR("g_keyhunt_teams_override");
416 BADCVAR("g_lms_lives_override");
417 BADCVAR("g_maplist");
418 BADCVAR("g_maxplayers");
419 BADCVAR("g_mirrordamage");
420 BADCVAR("g_nexball_goallimit");
421 BADCVAR("g_norecoil");
422 BADCVAR("g_physics_clientselect");
424 BADCVAR("g_powerups");
425 BADCVAR("g_spawnshieldtime");
426 BADCVAR("g_start_delay");
427 BADCVAR("g_superspectate");
428 BADCVAR("g_tdm_teams_override");
430 BADCVAR("g_weapon_stay"); BADPRESUFFIX("g_", "_weapon_stay");
433 BADCVAR("maxplayers");
434 BADCVAR("minplayers");
435 BADCVAR("net_address");
437 BADCVAR("rcon_password");
438 BADCVAR("rcon_restricted_commands");
439 BADCVAR("rcon_restricted_password");
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");
453 BADCVAR("sv_public");
454 BADCVAR("sv_ready_restart");
455 BADCVAR("sv_status_privacy");
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_");
470 // mutators that announce themselves properly to the server browser
471 BADCVAR("g_instagib");
472 BADCVAR("g_new_toys");
474 BADCVAR("g_grappling_hook");
475 BADCVAR("g_jetpack");
483 cvar_purechanges = strcat(cvar_purechanges, k, " \"", v, "\" // \"", d, "\"\n");
484 if(strlen(cvar_purechanges) > 16384)
486 cvar_purechanges = "// too many settings have been changed to show them here\n";
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,
499 if(cvar_changes == "")
500 cvar_changes = "// this server runs at default server settings\n";
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";
507 cvar_purechanges = strcat("// this server runs at modified gameplay settings:\n", cvar_purechanges);
508 cvar_purechanges = strzone(cvar_purechanges);
511 void detect_maptype()
520 o.x += random() * (world.maxs.x - world.mins.x);
521 o.y += random() * (world.maxs.y - world.mins.y);
522 o.z += random() * (world.maxs.z - world.mins.z);
524 tracebox(o, STAT(PL_MIN), STAT(PL_MAX), o - '0 0 32768', MOVE_WORLDONLY, NULL);
525 if(trace_fraction == 1)
530 for(i = 0; i < 64; i += 4)
532 tracebox(o, '-1 -1 -1' * i, '1 1 1' * i, o - '0 0 32768', MOVE_WORLDONLY, NULL);
533 if(trace_fraction == 1)
535 LOG_INFO(ftos(i), " -> ", vtos(trace_endpos));
544 bool RandomSeed_Send(entity this, entity to, int sf)
546 WriteHeader(MSG_ENTITY, ENT_CLIENT_RANDOMSEED);
547 WriteShort(MSG_ENTITY, this.cnt);
550 void RandomSeed_Think(entity this)
552 this.cnt = bound(0, floor(random() * 65536), 65535);
553 this.nextthink = time + 5;
557 void RandomSeed_Spawn()
559 randomseed = new_pure(randomseed);
560 setthink(randomseed, RandomSeed_Think);
561 Net_LinkEntity(randomseed, false, 0, RandomSeed_Send);
563 getthink(randomseed)(randomseed); // sets random seed and nextthink
566 spawnfunc(__init_dedicated_server)
568 // handler for _init/_init map (only for dedicated server initialization)
570 world_initialized = -1; // don't complain
572 cvar_string = cvar_string_normal;
573 cvar_set = cvar_set_normal;
575 delete_fn = remove_unsafely;
578 setthink(e, GotoFirstMap);
579 e.nextthink = time; // this is usually 1 at this point
581 e = new(info_player_deathmatch); // safeguard against player joining
583 this.classname = "worldspawn"; // safeguard against various stuff ;)
585 // needs to be done so early because of the constants they create
588 static_init_precache();
590 IL_PUSH(g_spawnpoints, e); // just incase
593 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
596 void __init_dedicated_server_shutdown() {
600 void Map_MarkAsRecent(string m);
601 float world_already_spawned;
603 void ClientInit_Spawn();
604 void WeaponStats_Init();
605 void WeaponStats_Shutdown();
606 spawnfunc(worldspawn)
608 server_is_dedicated = boolean(stof(cvar_defstring("is_dedicated")));
610 bool wantrestart = false;
612 if (!server_is_dedicated)
614 // force unloading of server pk3 files when starting a listen server
615 // localcmd("\nfs_rescan\n"); // FIXME: does more harm than good, has unintended side effects. What we really want is to unload temporary pk3s only
616 // restore csqc_progname too
617 string expect = "csprogs.dat";
618 wantrestart = cvar_string_normal("csqc_progname") != expect;
619 cvar_set_normal("csqc_progname", expect);
623 // Try to use versioned csprogs from pk3
624 // Only ever use versioned csprogs.dat files on dedicated servers;
625 // we need to reset csqc_progname on clients ourselves, and it's easier if the client's release name is constant
626 string pk3csprogs = "csprogs-" WATERMARK ".dat";
627 // This always works; fall back to it if a versioned csprogs.dat is suddenly missing
628 string select = "csprogs.dat";
629 if (fexists(pk3csprogs)) select = pk3csprogs;
630 if (cvar_string_normal("csqc_progname") != select)
632 cvar_set_normal("csqc_progname", select);
635 // Check for updates on startup
636 // We do it this way for atomicity so that connecting clients still match the server progs and don't disconnect
637 int sentinel = fopen("progs.txt", FILE_READ);
640 string switchversion = fgets(sentinel);
642 if (switchversion != "" && switchversion != WATERMARK)
644 LOG_INFOF("Switching progs: " WATERMARK " -> %s", switchversion);
645 // if it doesn't exist, assume either:
646 // a) the current program was overwritten
647 // b) this is a client only update
648 string newprogs = sprintf("progs-%s.dat", switchversion);
649 if (fexists(newprogs))
651 cvar_set_normal("sv_progs", newprogs);
654 string newcsprogs = sprintf("csprogs-%s.dat", switchversion);
655 if (fexists(newcsprogs))
657 cvar_set_normal("csqc_progname", newcsprogs);
665 LOG_INFOF("Restart requested");
666 changelevel(mapname);
667 // let initialization continue, shutdown depends on it
672 cvar_string = cvar_string_normal;
673 cvar_set = cvar_set_normal;
675 if(world_already_spawned)
676 error("world already spawned - you may have EXACTLY ONE worldspawn!");
677 world_already_spawned = true;
679 delete_fn = remove_safely; // during spawning, watch what you remove!
681 cvar_changes_init(); // do this very early now so it REALLY matches the server config
684 for (entity head = nextent(NULL); head; head = nextent(head))
689 // needs to be done so early because of the constants they create
692 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
694 TemporaryDB = db_create();
699 // 1 FLICKER (first variety)
700 lightstyle(1, "mmnmmommommnonmmonqnmmo");
702 // 2 SLOW STRONG PULSE
703 lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
705 // 3 CANDLE (first variety)
706 lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
709 lightstyle(4, "mamamamamama");
712 lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
714 // 6 FLICKER (second variety)
715 lightstyle(6, "nmonqnmomnmomomno");
717 // 7 CANDLE (second variety)
718 lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
720 // 8 CANDLE (third variety)
721 lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
723 // 9 SLOW STROBE (fourth variety)
724 lightstyle(9, "aaaaaaaazzzzzzzz");
726 // 10 FLUORESCENT FLICKER
727 lightstyle(10, "mmamammmmammamamaaamammma");
729 // 11 SLOW PULSE NOT FADE TO BLACK
730 lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
732 // styles 32-62 are assigned by the spawnfunc_light program for switchable lights
737 if(autocvar_g_campaign)
740 Map_MarkAsRecent(mapname);
742 PlayerStats_GameReport_Init(); // we need this to be initiated before InitGameplayMode
746 static_init_precache();
750 GameRules_limit_fallbacks();
752 if(warmup_limit == 0)
753 warmup_limit = (autocvar_timelimit > 0) ? autocvar_timelimit * 60 : autocvar_timelimit;
756 bot_waypoints_for_items = autocvar_g_waypoints_for_items;
757 if(bot_waypoints_for_items == 1)
758 if(this.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
759 bot_waypoints_for_items = 0;
763 WaypointSprite_Init();
765 GameLogInit(); // prepare everything
767 // changing the logic generating it is okay. But:
768 // it HAS to stay <= 64 chars
769 // character set: ASCII 33-126 without the following characters: : ; ' " \ $
770 if(autocvar_sv_eventlog)
772 string s = sprintf("%d.%s.%06d", itos(autocvar_sv_eventlog_files_counter), strftime(false, "%s"), floor(random() * 1000000));
773 matchid = strzone(s);
775 GameLogEcho(strcat(":gamestart:", GetGametype(), "_", GetMapname(), ":", s));
776 s = ":gameinfo:mutators:LIST";
778 MUTATOR_CALLHOOK(BuildMutatorsString, s);
779 s = M_ARGV(0, string);
781 // initialiation stuff, not good in the mutator system
782 if(!autocvar_g_use_ammunition)
783 s = strcat(s, ":no_use_ammunition");
785 // initialiation stuff, not good in the mutator system
786 if(autocvar_g_pickup_items == 0)
787 s = strcat(s, ":no_pickup_items");
788 if(autocvar_g_pickup_items > 0)
789 s = strcat(s, ":pickup_items");
791 // initialiation stuff, not good in the mutator system
792 if(autocvar_g_weaponarena != "0")
793 s = strcat(s, ":", autocvar_g_weaponarena, " arena");
795 // TODO to mutator system
796 if(autocvar_g_norecoil)
797 s = strcat(s, ":norecoil");
799 // TODO to mutator system
800 if(autocvar_g_powerups == 0)
801 s = strcat(s, ":no_powerups");
802 if(autocvar_g_powerups > 0)
803 s = strcat(s, ":powerups");
806 GameLogEcho(":gameinfo:end");
809 matchid = strzone(ftos(random()));
811 cvar_set("nextmap", "");
815 if(autocvar_g_campaign)
821 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
823 if(whichpack(strcat("maps/", mapname, ".cfg")) != "")
825 int fd = fopen(strcat("maps/", mapname, ".cfg"), FILE_READ);
829 while((s = fgets(fd)))
831 int l = tokenize_console(s);
836 LOG_INFO("Found ^1UNSUPPORTED^7 cd loop command in .cfg file; put this line in mapinfo instead:");
837 LOG_INFO(" cdtrack ", argv(2));
839 else if(argv(0) == "fog")
841 LOG_INFO("Found ^1UNSUPPORTED^7 fog command in .cfg file; put this line in worldspawn in the .map/.bsp/.ent file instead:");
842 LOG_INFO(" \"fog\" \"", s, "\"");
844 else if(argv(0) == "set")
846 LOG_INFO("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:");
847 LOG_INFO(" clientsettemp_for_type all ", argv(1), " ", argv(2));
849 else if(argv(0) != "//")
851 LOG_INFO("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:");
852 LOG_INFO(" clientsettemp_for_type all ", argv(0), " ", argv(1));
863 next_pingtime = time + 5;
867 // set up information replies for clients and server to use
868 maplist_reply = strzone(getmaplist());
869 lsmaps_reply = strzone(getlsmaps());
870 monsterlist_reply = strzone(getmonsterlist());
871 for(int i = 0; i < 10; ++i)
873 string s = getrecords(i);
875 records_reply[i] = strzone(s);
877 ladder_reply = strzone(getladder());
878 rankings_reply = strzone(getrankings());
883 PingPLReport_Spawn();
887 if (!wantrestart) localcmd("\n_sv_hook_gamestart ", GetGametype(), "\n");
889 // fill sv_curl_serverpackages from .serverpackage files
890 if (autocvar_sv_curl_serverpackages_auto)
892 string s = "csprogs-" WATERMARK ".txt";
893 // remove automatically managed files from the list to prevent duplicates
894 for (int i = 0, n = tokenize_console(cvar_string("sv_curl_serverpackages")); i < n; ++i)
896 string pkg = argv(i);
897 if (startsWith(pkg, "csprogs-")) continue;
898 if (endsWith(pkg, "-serverpackage.txt")) continue;
899 if (endsWith(pkg, ".serverpackage")) continue; // OLD legacy
902 // add automatically managed files to the list
903 #define X(match) MACRO_BEGIN { \
904 int fd = search_begin(match, true, false); \
907 for (int i = 0, j = search_getsize(fd); i < j; ++i) \
909 s = cons(s, search_getfilename(fd, i)); \
914 X("*-serverpackage.txt");
915 X("*.serverpackage");
917 cvar_set("sv_curl_serverpackages", s);
920 // MOD AUTHORS: change this, and possibly remove a few of the blocks below to ignore certain changes
922 // physics/balance/config changes that count as mod
923 if(cvar_string("g_mod_physics") != cvar_defstring("g_mod_physics"))
924 modname = cvar_string("g_mod_physics");
925 if(cvar_string("g_mod_balance") != cvar_defstring("g_mod_balance"))
926 modname = cvar_string("g_mod_balance");
927 if(cvar_string("g_mod_config") != cvar_defstring("g_mod_config"))
928 modname = cvar_string("g_mod_config");
929 // extra mutators that deserve to count as mod
930 MUTATOR_CALLHOOK(SetModname, modname);
931 modname = M_ARGV(0, string);
934 modname = strzone(modname);
936 WinningConditionHelper(this); // set worldstatus
938 world_initialized = 1;
939 __spawnfunc_spawn_all();
944 //makestatic (this); // Who the f___ did that?
950 return MapInfo_Type_ToString(MapInfo_LoadedGametype);
958 float Map_Count, Map_Current;
959 string Map_Current_Name;
961 // NOTE: this now expects the map list to be already tokenized and the count in Map_Count
962 float GetMaplistPosition()
968 idx = autocvar_g_maplist_index;
975 for(pos = 0; pos < Map_Count; ++pos)
979 // resume normal maplist rotation if current map is not in g_maplist
983 float MapHasRightSize(string map)
986 if(currentbots || autocvar_bot_number || player_count < autocvar_minplayers)
987 if(autocvar_g_maplist_check_waypoints)
989 LOG_TRACE("checkwp "); LOG_TRACE(map);
990 if(!fexists(strcat("maps/", map, ".waypoints")))
992 LOG_TRACE(": no waypoints");
995 LOG_TRACE(": has waypoints");
998 // open map size restriction file
999 LOG_TRACE("opensize "); LOG_TRACE(map);
1000 fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
1003 float mapmin, mapmax;
1004 LOG_TRACE(": ok, ");
1005 mapmin = stof(fgets(fh));
1006 mapmax = stof(fgets(fh));
1008 if(player_count < mapmin)
1010 LOG_TRACE("not enough");
1013 if(player_count > mapmax)
1015 LOG_TRACE("too many");
1018 LOG_TRACE("right size");
1021 LOG_TRACE(": not found");
1025 string Map_Filename(float position)
1027 return strcat("maps/", argv(position), ".bsp");
1030 void Map_MarkAsRecent(string m)
1032 cvar_set("g_maplist_mostrecent", strwords(strcat(m, " ", autocvar_g_maplist_mostrecent), max(0, autocvar_g_maplist_mostrecent_count)));
1035 float Map_IsRecent(string m)
1037 return strhasword(autocvar_g_maplist_mostrecent, m);
1040 float Map_Check(float position, float pass)
1044 map_next = argv(position);
1047 if(Map_IsRecent(map_next))
1050 filename = Map_Filename(position);
1051 if(MapInfo_CheckMap(map_next))
1055 if(MapHasRightSize(map_next))
1060 LOG_DEBUG( "Couldn't select '", filename, "'..." );
1065 void Map_Goto_SetStr(string nextmapname)
1067 if(getmapname_stored != "")
1068 strunzone(getmapname_stored);
1069 if(nextmapname == "")
1070 getmapname_stored = "";
1072 getmapname_stored = strzone(nextmapname);
1075 void Map_Goto_SetFloat(float position)
1077 cvar_set("g_maplist_index", ftos(position));
1078 Map_Goto_SetStr(argv(position));
1081 void Map_Goto(float reinit)
1083 MapInfo_LoadMap(getmapname_stored, reinit);
1086 // return codes of map selectors:
1087 // -1 = temporary failure (that is, try some method that is guaranteed to succeed)
1088 // -2 = permanent failure
1089 float() MaplistMethod_Iterate = // usual method
1093 LOG_TRACE("Trying MaplistMethod_Iterate");
1095 for(pass = 1; pass <= 2; ++pass)
1097 for(i = 1; i < Map_Count; ++i)
1100 mapindex = (i + Map_Current) % Map_Count;
1101 if(Map_Check(mapindex, pass))
1108 float() MaplistMethod_Repeat = // fallback method
1110 LOG_TRACE("Trying MaplistMethod_Repeat");
1112 if(Map_Check(Map_Current, 2))
1117 float() MaplistMethod_Random = // random map selection
1121 LOG_TRACE("Trying MaplistMethod_Random");
1125 for(i = 0; i <= imax; ++i)
1128 mapindex = (Map_Current + floor(random() * (Map_Count - 1) + 1)) % Map_Count; // any OTHER map
1129 if(Map_Check(mapindex, 1))
1135 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
1136 // the exponent sets a bias on the map selection:
1137 // the higher the exponent, the less likely "shortly repeated" same maps are
1139 float i, j, imax, insertpos;
1141 LOG_TRACE("Trying MaplistMethod_Shuffle");
1145 for(i = 0; i <= imax; ++i)
1149 // now reinsert this at another position
1150 insertpos = (random() ** (1 / exponent)); // ]0, 1]
1151 insertpos = insertpos * (Map_Count - 1); // ]0, Map_Count - 1]
1152 insertpos = ceil(insertpos) + 1; // {2, 3, 4, ..., Map_Count}
1153 LOG_TRACE("SHUFFLE: insert pos = ", ftos(insertpos));
1155 // insert the current map there
1157 for(j = 1; j < insertpos; ++j) // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
1158 newlist = strcat(newlist, " ", argv(j));
1159 newlist = strcat(newlist, " ", argv(0)); // now insert the just selected map
1160 for(j = insertpos; j < Map_Count; ++j) // i == Map_Count: no loop, has just been inserted as last
1161 newlist = strcat(newlist, " ", argv(j));
1162 newlist = substring(newlist, 1, strlen(newlist) - 1);
1163 cvar_set("g_maplist", newlist);
1164 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1166 // NOTE: the selected map has just been inserted at (insertpos-1)th position
1167 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
1168 if(Map_Check(Map_Current, 1))
1176 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1178 for (i = 0; i < Map_Count; ++i)
1179 if (Map_Check(i, 2))
1183 bprint( "Maplist contains no usable maps! Resetting it to default map list.\n" );
1184 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags() | MAPINFO_FLAG_NOAUTOMAPLIST));
1185 if(autocvar_g_maplist_shuffle)
1187 localcmd("\nmenu_cmd sync\n");
1188 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1191 error("empty maplist, cannot select a new map");
1192 Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
1194 if(Map_Current_Name)
1195 strunzone(Map_Current_Name);
1196 Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
1197 // this may or may not be correct, but who cares, in the worst case a map
1198 // isn't chosen in the first pass that should have been
1209 if(autocvar_g_maplist_shuffle > 0)
1210 nextMap = MaplistMethod_Shuffle(autocvar_g_maplist_shuffle + 1);
1213 if(autocvar_g_maplist_selectrandom)
1214 nextMap = MaplistMethod_Random();
1217 nextMap = MaplistMethod_Iterate();
1220 nextMap = MaplistMethod_Repeat();
1224 Map_Goto_SetFloat(nextMap);
1225 return getmapname_stored;
1231 float DoNextMapOverride(float reinit)
1233 if(autocvar_g_campaign)
1235 CampaignPostIntermission();
1236 alreadychangedlevel = true;
1239 if(autocvar_quit_when_empty)
1241 if(player_count <= currentbots)
1244 alreadychangedlevel = true;
1248 if(autocvar_quit_and_redirect != "")
1250 redirection_target = strzone(autocvar_quit_and_redirect);
1251 alreadychangedlevel = true;
1254 if (!reinit && autocvar_samelevel) // if samelevel is set, stay on same level
1256 localcmd("restart\n");
1257 alreadychangedlevel = true;
1260 if(autocvar_nextmap != "")
1263 m = GameTypeVote_MapInfo_FixName(autocvar_nextmap);
1264 cvar_set("nextmap",m);
1266 if(!m || gametypevote)
1268 if(autocvar_sv_vote_gametype)
1274 if(MapInfo_CheckMap(m))
1278 alreadychangedlevel = true;
1282 if(!reinit && autocvar_lastlevel)
1284 cvar_settemp_restore();
1285 localcmd("set lastlevel 0\ntogglemenu 1\n");
1286 alreadychangedlevel = true;
1292 void GotoNextMap(float reinit)
1297 if (alreadychangedlevel)
1299 alreadychangedlevel = true;
1303 nextMap = GetNextMap();
1305 error("Everything is broken - cannot find a next map. Please report this to the developers.");
1314 When the player presses attack or jump, change to the next level
1317 .float autoscreenshot;
1318 void IntermissionThink(entity this)
1320 FixIntermissionClient(this);
1322 float server_screenshot = (autocvar_sv_autoscreenshot && CS(this).cvar_cl_autoscreenshot);
1323 float client_screenshot = (CS(this).cvar_cl_autoscreenshot == 2);
1325 if( (server_screenshot || client_screenshot)
1326 && ((this.autoscreenshot > 0) && (time > this.autoscreenshot)) )
1328 this.autoscreenshot = -1;
1329 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"))); }
1333 if (time < intermission_exittime)
1336 if(!mapvote_initialized)
1337 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)))
1347 Returns the entity to view from
1351 entity FindIntermission()
1356 // look for info_intermission first
1357 spot = find(NULL, classname, "info_intermission");
1359 { // pick a random one
1363 spot = find(spot, classname, "info_intermission");
1365 spot = find(spot, classname, "info_intermission");
1371 // then look for the start position
1372 spot = find(NULL, classname, "info_player_start");
1376 // testinfo_player_start is only found in regioned levels
1377 spot = find(NULL, classname, "testplayerstart");
1381 // then look for the start position
1382 spot = find(NULL, classname, "info_player_deathmatch");
1386 //objerror ("FindIntermission: no spot");
1392 ===============================================================================
1396 ===============================================================================
1399 void DumpStats(float final)
1408 to_console = autocvar_sv_logscores_console;
1409 to_eventlog = autocvar_sv_eventlog;
1410 to_file = autocvar_sv_logscores_file;
1414 to_console = true; // always print printstats replies
1415 to_eventlog = false; // but never print them to the event log
1419 if(autocvar_sv_eventlog_console)
1420 to_console = false; // otherwise we get the output twice
1426 s = strcat(s, GetGametype(), "_", GetMapname(), ":", ftos(rint(time)));
1436 file = fopen(autocvar_sv_logscores_filename, FILE_APPEND);
1440 fputs(file, strcat(s, "\n"));
1443 s = strcat(":labels:player:", GetPlayerScoreString(NULL, 0));
1449 fputs(file, strcat(s, "\n"));
1451 FOREACH_CLIENT(IS_REAL_CLIENT(it) || (IS_BOT_CLIENT(it) && autocvar_sv_logscores_bots), {
1452 s = strcat(":player:see-labels:", GetPlayerScoreString(it, 0), ":");
1453 s = strcat(s, ftos(rint(time - CS(it).jointime)), ":");
1454 if(IS_PLAYER(it) || MUTATOR_CALLHOOK(GetPlayerStatus, it))
1455 s = strcat(s, ftos(it.team), ":");
1457 s = strcat(s, "spectator:");
1460 LOG_INFO(s, playername(it, false));
1462 GameLogEcho(strcat(s, ftos(it.playerid), ":", playername(it, false)));
1464 fputs(file, strcat(s, playername(it, false), "\n"));
1469 s = strcat(":labels:teamscores:", GetTeamScoreString(0, 0));
1475 fputs(file, strcat(s, "\n"));
1477 for(i = 1; i < 16; ++i)
1479 s = strcat(":teamscores:see-labels:", GetTeamScoreString(i, 0));
1480 s = strcat(s, ":", ftos(i));
1486 fputs(file, strcat(s, "\n"));
1493 GameLogEcho(":end");
1496 fputs(file, ":end\n");
1501 void FixIntermissionClient(entity e)
1503 if(!e.autoscreenshot) // initial call
1505 e.autoscreenshot = time + 0.8; // used for autoscreenshot
1507 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
1508 for (int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1510 .entity weaponentity = weaponentities[slot];
1511 if(e.(weaponentity))
1513 e.(weaponentity).effects = EF_NODRAW;
1514 if (e.(weaponentity).weaponchild)
1515 e.(weaponentity).weaponchild.effects = EF_NODRAW;
1518 if(IS_REAL_CLIENT(e))
1520 stuffcmd(e, "\nscr_printspeed 1000000\n");
1521 RandomSelection_Init();
1522 FOREACH_WORD(autocvar_sv_intermission_cdtrack, true, {
1523 RandomSelection_AddString(it, 1, 1);
1525 if (RandomSelection_chosen_string != "")
1527 stuffcmd(e, sprintf("\ncd loop %s\n", RandomSelection_chosen_string));
1530 WriteByte(MSG_ONE, SVC_INTERMISSION);
1536 go to the next level for deathmatch
1537 only called if a time or frag limit has expired
1541 game_stopped = true;
1542 intermission_running = 1; // game over
1544 // enforce a wait time before allowing changelevel
1545 if(player_count > 0)
1546 intermission_exittime = time + autocvar_sv_mapchange_delay;
1548 intermission_exittime = -1;
1551 WriteByte (MSG_ALL, SVC_CDTRACK);
1552 WriteByte (MSG_ALL, 3);
1553 WriteByte (MSG_ALL, 3);
1554 // done in FixIntermission
1557 //pos = FindIntermission ();
1564 PlayerStats_GameReport(true);
1565 WeaponStats_Shutdown();
1567 Kill_Notification(NOTIF_ALL, NULL, MSG_CENTER, CPID_Null); // kill all centerprints now
1569 if(autocvar_sv_eventlog)
1570 GameLogEcho(":gameover");
1574 FOREACH_CLIENT(IS_PLAYER(it), {
1575 FixIntermissionClient(it);
1577 bprint(playername(it, false), " ^7wins.\n");
1580 target_music_kill();
1582 if(autocvar_g_campaign)
1583 CampaignPreIntermission();
1585 MUTATOR_CALLHOOK(MatchEnd);
1587 localcmd("\nsv_hook_gameend\n");
1591 float InitiateSuddenDeath()
1593 // Check first whether normal overtimes could be added before initiating suddendeath mode
1594 // - for this timelimit_overtime needs to be >0 of course
1595 // - also check the winning condition calculated in the previous frame and only add normal overtime
1596 // again, if at the point at which timelimit would be extended again, still no winner was found
1597 if (!autocvar_g_campaign && (checkrules_overtimesadded >= 0) && (checkrules_overtimesadded < autocvar_timelimit_overtimes || autocvar_timelimit_overtimes < 0) && autocvar_timelimit_overtime && !(g_race && !g_race_qualifying))
1599 return 1; // need to call InitiateOvertime later
1603 if(!checkrules_suddendeathend)
1605 if(autocvar_g_campaign)
1606 checkrules_suddendeathend = time; // no suddendeath in campaign
1608 checkrules_suddendeathend = time + 60 * autocvar_timelimit_suddendeath;
1609 if(g_race && !g_race_qualifying)
1610 race_StartCompleting();
1616 void InitiateOvertime() // ONLY call this if InitiateSuddenDeath returned true
1618 ++checkrules_overtimesadded;
1619 //add one more overtime by simply extending the timelimit
1621 tl = autocvar_timelimit;
1622 tl += autocvar_timelimit_overtime;
1623 cvar_set("timelimit", ftos(tl));
1625 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_OVERTIME_TIME, autocvar_timelimit_overtime * 60);
1628 float GetWinningCode(float fraglimitreached, float equality)
1630 if(autocvar_g_campaign == 1)
1631 if(fraglimitreached)
1638 if(fraglimitreached)
1639 return WINNING_STARTSUDDENDEATHOVERTIME;
1641 return WINNING_NEVER;
1643 if(fraglimitreached)
1649 // set the .winning flag for exactly those players with a given field value
1650 void SetWinners(.float field, float value)
1652 FOREACH_CLIENT(IS_PLAYER(it), { it.winning = (it.(field) == value); });
1655 // set the .winning flag for those players with a given field value
1656 void AddWinners(.float field, float value)
1658 FOREACH_CLIENT(IS_PLAYER(it), {
1659 if(it.(field) == value)
1664 // clear the .winning flags
1667 FOREACH_CLIENT(IS_PLAYER(it), { it.winning = 0; });
1670 void ShuffleMaplist()
1672 cvar_set("g_maplist", shufflewords(autocvar_g_maplist));
1676 float WinningCondition_Scores(float limit, float leadlimit)
1680 // TODO make everything use THIS winning condition (except LMS)
1681 WinningConditionHelper(NULL);
1685 team1_score = TeamScore_GetCompareValue(NUM_TEAM_1);
1686 team2_score = TeamScore_GetCompareValue(NUM_TEAM_2);
1687 team3_score = TeamScore_GetCompareValue(NUM_TEAM_3);
1688 team4_score = TeamScore_GetCompareValue(NUM_TEAM_4);
1692 if(WinningConditionHelper_winner)
1693 WinningConditionHelper_winner.winning = 1;
1694 if(WinningConditionHelper_winnerteam >= 0)
1695 SetWinners(team, WinningConditionHelper_winnerteam);
1697 if(WinningConditionHelper_lowerisbetter)
1699 WinningConditionHelper_topscore = -WinningConditionHelper_topscore;
1700 WinningConditionHelper_secondscore = -WinningConditionHelper_secondscore;
1704 if(WinningConditionHelper_zeroisworst)
1705 leadlimit = 0; // not supported in this mode
1707 if(MUTATOR_CALLHOOK(Scores_CountFragsRemaining))
1708 // these modes always score in increments of 1, thus this makes sense
1710 if(leaderfrags != WinningConditionHelper_topscore)
1712 leaderfrags = WinningConditionHelper_topscore;
1715 if (leaderfrags == limit - 1)
1716 Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_REMAINING_FRAG_1);
1717 else if (leaderfrags == limit - 2)
1718 Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_REMAINING_FRAG_2);
1719 else if (leaderfrags == limit - 3)
1720 Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_REMAINING_FRAG_3);
1724 limitreached = false;
1726 if(WinningConditionHelper_topscore >= limit)
1727 limitreached = true;
1730 float leadlimitreached;
1731 leadlimitreached = (WinningConditionHelper_topscore - WinningConditionHelper_secondscore >= leadlimit);
1732 if(autocvar_leadlimit_and_fraglimit)
1733 limitreached = (limitreached && leadlimitreached);
1735 limitreached = (limitreached || leadlimitreached);
1739 game_completion_ratio = max(game_completion_ratio, bound(0, WinningConditionHelper_topscore / limit, 1));
1741 return GetWinningCode(
1742 WinningConditionHelper_topscore && limitreached,
1743 WinningConditionHelper_equality
1747 float WinningCondition_RanOutOfSpawns()
1749 if(have_team_spawns <= 0)
1752 if(!autocvar_g_spawn_useallspawns)
1755 if(!some_spawn_has_been_used)
1758 team1_score = team2_score = team3_score = team4_score = 0;
1760 FOREACH_CLIENT(IS_PLAYER(it) && !IS_DEAD(it), {
1763 case NUM_TEAM_1: team1_score = 1; break;
1764 case NUM_TEAM_2: team2_score = 1; break;
1765 case NUM_TEAM_3: team3_score = 1; break;
1766 case NUM_TEAM_4: team4_score = 1; break;
1770 IL_EACH(g_spawnpoints, true,
1774 case NUM_TEAM_1: team1_score = 1; break;
1775 case NUM_TEAM_2: team2_score = 1; break;
1776 case NUM_TEAM_3: team3_score = 1; break;
1777 case NUM_TEAM_4: team4_score = 1; break;
1782 if(team1_score + team2_score + team3_score + team4_score == 0)
1784 checkrules_equality = true;
1787 else if(team1_score + team2_score + team3_score + team4_score == 1)
1792 else if(team2_score)
1794 else if(team3_score)
1796 else // if(team4_score)
1798 CheckAllowedTeams(NULL);
1799 for(i = 0; i < MAX_TEAMSCORE; ++i)
1801 if(t != NUM_TEAM_1) if(c1 >= 0) TeamScore_AddToTeam(NUM_TEAM_1, i, -1000);
1802 if(t != NUM_TEAM_2) if(c2 >= 0) TeamScore_AddToTeam(NUM_TEAM_2, i, -1000);
1803 if(t != NUM_TEAM_3) if(c3 >= 0) TeamScore_AddToTeam(NUM_TEAM_3, i, -1000);
1804 if(t != NUM_TEAM_4) if(c4 >= 0) TeamScore_AddToTeam(NUM_TEAM_4, i, -1000);
1807 AddWinners(team, t);
1818 Exit deathmatch games upon conditions
1821 void CheckRules_World()
1832 if (intermission_running) // someone else quit the game already
1834 if(player_count == 0) // Nobody there? Then let's go to the next map
1836 // this will actually check the player count in the next frame
1837 // again, but this shouldn't hurt
1841 timelimit = autocvar_timelimit * 60;
1842 fraglimit = autocvar_fraglimit;
1843 leadlimit = autocvar_leadlimit;
1845 if(warmup_stage || time <= game_starttime) // NOTE: this is <= to prevent problems in the very tic where the game starts
1848 timelimit = 0; // timelimit is not made for warmup
1850 fraglimit = 0; // no fraglimit for now
1851 leadlimit = 0; // no leadlimit for now
1856 timelimit += game_starttime;
1858 else if (timelimit < 0)
1868 if(timelimit > game_starttime)
1869 game_completion_ratio = (time - game_starttime) / (timelimit - game_starttime);
1871 game_completion_ratio = 0;
1873 if(checkrules_suddendeathend)
1875 if(!checkrules_suddendeathwarning)
1877 checkrules_suddendeathwarning = true;
1878 if(g_race && !g_race_qualifying)
1879 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_RACE_FINISHLAP);
1881 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_OVERTIME_FRAG);
1886 if (timelimit && time >= timelimit)
1888 if(g_race && (g_race_qualifying == 2) && timelimit > 0)
1891 float playerswithlaps;
1893 totalplayers = playerswithlaps = readyplayers = 0;
1894 FOREACH_CLIENT(IS_PLAYER(it), {
1896 if(GameRules_scoring_add(it, RACE_FASTEST, 0))
1902 // at least 2 of the players have completed a lap: start the RACE
1903 // otherwise, the players should end the qualifying on their own
1904 if(readyplayers || playerswithlaps >= 2)
1906 checkrules_suddendeathend = 0;
1907 ReadyRestart(); // go to race
1911 wantovertime |= InitiateSuddenDeath();
1914 wantovertime |= InitiateSuddenDeath();
1918 if (checkrules_suddendeathend && time >= checkrules_suddendeathend)
1924 int checkrules_status = WinningCondition_RanOutOfSpawns();
1925 if(checkrules_status == WINNING_YES)
1926 bprint("Hey! Someone ran out of spawns!\n");
1927 else if(MUTATOR_CALLHOOK(CheckRules_World, checkrules_status, timelimit, fraglimit))
1928 checkrules_status = M_ARGV(0, float);
1930 checkrules_status = WinningCondition_Scores(fraglimit, leadlimit);
1932 if(checkrules_status == WINNING_STARTSUDDENDEATHOVERTIME)
1934 checkrules_status = WINNING_NEVER;
1935 checkrules_overtimesadded = -1;
1936 wantovertime |= InitiateSuddenDeath();
1939 if(checkrules_status == WINNING_NEVER)
1940 // equality cases! Nobody wins if the overtime ends in a draw.
1945 if(checkrules_status == WINNING_NEVER)
1948 checkrules_status = WINNING_YES;
1951 if(checkrules_suddendeathend)
1952 if(checkrules_status != WINNING_NEVER || time >= checkrules_suddendeathend)
1953 checkrules_status = WINNING_YES;
1955 if(checkrules_status == WINNING_YES)
1957 //print("WINNING\n");
1962 string GotoMap(string m)
1964 m = GameTypeVote_MapInfo_FixName(m);
1966 return "The map you suggested is not available on this server.";
1967 if (!autocvar_sv_vote_gametype)
1968 if(!MapInfo_CheckMap(m))
1969 return "The map you suggested does not support the current game mode.";
1970 cvar_set("nextmap", m);
1971 cvar_set("timelimit", "-1");
1972 if(mapvote_initialized || alreadychangedlevel)
1974 if(DoNextMapOverride(0))
1975 return "Map switch initiated.";
1977 return "Hm... no. For some reason I like THIS map more.";
1980 return "Map switch will happen after scoreboard.";
1983 bool autocvar_sv_gameplayfix_multiplethinksperframe;
1984 void RunThink(entity this)
1986 // don't let things stay in the past.
1987 // it is possible to start that way by a trigger with a local time.
1988 if(this.nextthink <= 0 || this.nextthink > time + frametime)
1991 float oldtime = time; // do we need to save this?
1993 for (int iterations = 0; iterations < 128 && !wasfreed(this); iterations++)
1995 time = max(oldtime, this.nextthink);
1999 getthink(this)(this);
2000 // mods often set nextthink to time to cause a think every frame,
2001 // we don't want to loop in that case, so exit if the new nextthink is
2002 // <= the time the qc was told, also exit if it is past the end of the
2004 if(this.nextthink <= time || this.nextthink > oldtime + frametime || !autocvar_sv_gameplayfix_multiplethinksperframe)
2011 bool autocvar_sv_freezenonclients;
2012 bool autocvar_sv_gameplayfix_delayprojectiles;
2013 void Physics_Frame()
2015 if(autocvar_sv_freezenonclients)
2018 FOREACH_ENTITY_FLOAT(pure_data, false,
2020 if(IS_CLIENT(it) || it.classname == "" || it.move_movetype == MOVETYPE_PUSH || it.move_movetype == MOVETYPE_FAKEPUSH || it.move_movetype == MOVETYPE_PHYSICS)
2023 //set_movetype(it, it.move_movetype);
2024 // inline the set_movetype function, since this is called a lot
2025 it.movetype = (it.move_qcphysics) ? MOVETYPE_NONE : it.move_movetype;
2027 if(it.move_movetype == MOVETYPE_NONE)
2030 if(it.move_qcphysics)
2031 Movetype_Physics_NoMatchTicrate(it, PHYS_INPUT_TIMELENGTH, false);
2033 if(it.movetype >= MOVETYPE_USER_FIRST && it.movetype <= MOVETYPE_USER_LAST) // these cases have no think handling
2035 // handle thinking here
2036 if (getthink(it) && it.nextthink > 0 && it.nextthink <= time + frametime)
2041 if(autocvar_sv_gameplayfix_delayprojectiles >= 0)
2044 FOREACH_ENTITY_FLOAT(move_qcphysics, true,
2046 if(IS_CLIENT(it) || is_pure(it) || it.classname == "" || it.move_movetype == MOVETYPE_NONE)
2048 Movetype_Physics_NoMatchTicrate(it, PHYS_INPUT_TIMELENGTH, false);
2052 void systems_update();
2055 anticheat_endframe();
2059 FOREACH_CLIENT(IS_REAL_CLIENT(it), {
2060 entity e = IS_SPEC(it) ? it.enemy : it;
2061 if (e.typehitsound) {
2062 it.typehit_time = time;
2063 } else if (e.killsound) {
2064 it.kill_time = time;
2065 } else if (e.damage_dealt) {
2067 it.damage_dealt_total += ceil(e.damage_dealt);
2070 // add 1 frametime because after this, engine SV_Physics
2071 // increases time by a frametime and then networks the frame
2072 // add another frametime because client shows everything with
2073 // 1 frame of lag (cl_nolerp 0). The last +1 however should not be
2075 float altime = time + frametime * (1 + autocvar_g_antilag_nudge);
2076 FOREACH_CLIENT(true, {
2077 it.typehitsound = false;
2078 it.damage_dealt = 0;
2079 it.killsound = false;
2080 antilag_record(it, CS(it), altime);
2082 IL_EACH(g_monsters, true,
2084 antilag_record(it, it, altime);
2093 * returns true if redirecting
2095 float redirection_timeout;
2096 float redirection_nextthink;
2097 float RedirectionThink()
2099 float clients_found;
2101 if(redirection_target == "")
2104 if(!redirection_timeout)
2106 cvar_set("sv_public", "-2");
2107 redirection_timeout = time + 0.6; // this will only try twice... should be able to keep more clients
2108 if(redirection_target == "self")
2109 bprint("^3SERVER NOTICE:^7 restarting the server\n");
2111 bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
2114 if(time < redirection_nextthink)
2117 redirection_nextthink = time + 1;
2120 FOREACH_CLIENT(IS_REAL_CLIENT(it), {
2122 LOG_INFO("Redirecting: sending connect command to ", it.netname);
2123 if(redirection_target == "self")
2124 stuffcmd(it, "\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " reconnect\n");
2126 stuffcmd(it, strcat("\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " \"connect ", redirection_target, "\"\n"));
2130 LOG_INFO("Redirecting: ", ftos(clients_found), " clients left.");
2132 if(time > redirection_timeout || clients_found == 0)
2133 localcmd("\nwait; wait; wait; quit\n");
2138 void TargetMusic_RestoreGame();
2141 // Loaded from a save game
2142 // some things then break, so let's work around them...
2144 // Progs DB (capture records)
2145 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
2149 MapInfo_Enumerate();
2150 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
2153 TargetMusic_RestoreGame();
2160 if(world_initialized > 0)
2162 world_initialized = 0;
2163 LOG_TRACE("Saving persistent data...");
2166 // playerstats with unfinished match
2167 PlayerStats_GameReport(false);
2169 if(!cheatcount_total)
2171 if(autocvar_sv_db_saveasdump)
2172 db_dump(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2174 db_save(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2176 if(autocvar_developer)
2178 if(autocvar_sv_db_saveasdump)
2179 db_dump(TemporaryDB, "server-temp.db");
2181 db_save(TemporaryDB, "server-temp.db");
2183 CheatShutdown(); // must be after cheatcount check
2184 db_close(ServerProgsDB);
2185 db_close(TemporaryDB);
2186 LOG_TRACE("Saving persistent data... done!");
2187 // tell the bot system the game is ending now
2190 WeaponStats_Shutdown();
2193 else if(world_initialized == 0)
2195 LOG_INFO("NOTE: crashed before even initializing the world, not saving persistent data");
2199 __init_dedicated_server_shutdown();