3 #include "../common/buffs.qh"
8 #include "../common/constants.qh"
9 #include "../common/stats.qh"
10 #include "../common/teams.qh"
11 #include "../common/util.qh"
12 #include "../common/monsters/sv_monsters.qh"
13 #include "../common/weapons/weapons.qh"
14 #include "weapons/weaponstats.qh"
15 #include "autocvars.qh"
16 #include "constants.qh"
18 #include "../common/notifications.qh"
19 #include "mutators/mutators_include.qh"
20 #include "campaign.qh"
21 #include "../common/mapinfo.qh"
22 #include "command/common.qh"
23 #include "command/vote.qh"
24 #include "command/getreplies.qh"
25 #include "command/sv_cmd.qh"
26 #include "anticheat.qh"
28 #include "../common/playerstats.qh"
31 #include "mapvoting.qh"
38 const float LATENCY_THINKRATE = 10;
43 void PingPLReport_Think()
48 delta = 3 / maxclients;
49 if(delta < sys_frametime)
51 self.nextthink = time + delta;
53 e = edict_num(self.cnt + 1);
56 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
57 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
58 WriteByte(MSG_BROADCAST, self.cnt);
59 WriteShort(MSG_BROADCAST, max(1, e.ping));
60 WriteByte(MSG_BROADCAST, ceil(e.ping_packetloss * 255));
61 WriteByte(MSG_BROADCAST, ceil(e.ping_movementloss * 255));
63 // record latency times for clients throughout the match so we can report it to playerstats
64 if(time > (e.latency_time + LATENCY_THINKRATE))
66 e.latency_sum += e.ping;
68 e.latency_time = time;
69 //print("sum: ", ftos(e.latency_sum), ", cnt: ", ftos(e.latency_cnt), ", avg: ", ftos(e.latency_sum / e.latency_cnt), ".\n");
74 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
75 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
76 WriteByte(MSG_BROADCAST, self.cnt);
77 WriteShort(MSG_BROADCAST, 0);
78 WriteByte(MSG_BROADCAST, 0);
79 WriteByte(MSG_BROADCAST, 0);
81 self.cnt = (self.cnt + 1) % maxclients;
83 void PingPLReport_Spawn()
85 pingplreport = spawn();
86 pingplreport.classname = "pingplreport";
87 pingplreport.think = PingPLReport_Think;
88 pingplreport.nextthink = time;
91 const float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
92 string redirection_target;
93 float world_initialized;
96 void GotoNextMap(float reinit);
97 void ShuffleMaplist();
98 float(float reinit) DoNextMapOverride;
100 void SetDefaultAlpha()
102 if(autocvar_g_running_guns)
104 default_player_alpha = -1;
105 default_weapon_alpha = +1;
109 default_player_alpha = autocvar_g_balance_cloaked_alpha;
110 default_weapon_alpha = default_player_alpha;
114 default_player_alpha = autocvar_g_player_alpha;
115 if(default_player_alpha == 0)
116 default_player_alpha = 1;
117 default_weapon_alpha = default_player_alpha;
124 if(autocvar__sv_init)
126 // cvar_set("_sv_init", "0");
127 // we do NOT set this to 0 any more, so someone "accidentally" changing
128 // to this "init" map on a dedicated server will cause no permanent
130 if(autocvar_g_maplist_shuffle)
132 n = tokenizebyseparator(autocvar_g_maplist, " ");
133 cvar_set("g_maplist_index", ftos(n - 1)); // jump to map 0 in GotoNextMap
136 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
138 if(!DoNextMapOverride(1))
146 self.nextthink = time;
150 self.nextthink = time + 1;
151 print("Waiting for _sv_init being set to 1 by initialization scripts...\n");
155 void cvar_changes_init()
159 float n, i, adding, pureadding;
162 strunzone(cvar_changes);
163 cvar_changes = string_null;
165 strunzone(cvar_purechanges);
166 cvar_purechanges = string_null;
167 cvar_purechanges_count = 0;
170 buf_cvarlist(h, "", "_"); // exclude all _ cvars as they are temporary
176 for(i = 0; i < n; ++i)
178 k = bufstr_get(h, i);
180 #define BADPREFIX(p) if(substring(k, 0, strlen(p)) == p) continue
181 #define BADPRESUFFIX(p,s) if(substring(k, 0, strlen(p)) == p && substring(k, -strlen(s), -1) == s) continue
182 #define BADCVAR(p) if(k == p) continue
184 // general excludes and namespaces for server admin used cvars
185 BADPREFIX("help_"); // PN's server has this listed as changed, let's not rat him out for THAT
189 BADPREFIX("cvar_check_");
191 BADCVAR("g_configversion");
192 BADCVAR("g_maplist_index");
193 BADCVAR("halflifebsp");
194 BADPREFIX("sv_world");
200 BADPREFIX("scoreboard_");
201 BADPREFIX("g_campaign");
202 BADPREFIX("g_waypointsprite_");
208 BADPREFIX("net_slist_");
214 BADPREFIX("sensitivity");
215 BADPREFIX("userbind");
218 BADPREFIX("crosshair");
219 BADCVAR("mod_q3bsp_lightmapmergepower");
220 BADCVAR("mod_q3bsp_nolightmaps");
222 BADCVAR("mastervolume");
224 BADCVAR("bgmvolume");
227 BADCVAR("developer");
228 BADCVAR("log_dest_udp");
229 BADCVAR("net_address");
230 BADCVAR("net_address_ipv6");
232 BADCVAR("savedgamecfg");
233 BADCVAR("serverconfig");
234 BADCVAR("sv_autoscreenshot");
235 BADCVAR("sv_heartbeatperiod");
236 BADCVAR("sv_vote_master_password");
237 BADCVAR("sys_colortranslation");
238 BADCVAR("sys_specialcharactertranslation");
239 BADCVAR("timeformat");
240 BADCVAR("timestamps");
241 BADPREFIX("developer_");
243 BADPREFIX("g_banned_list");
244 BADPREFIX("g_chat_flood_");
245 BADPREFIX("g_ghost_items");
246 BADPREFIX("g_playerstats_");
247 BADPREFIX("g_respawn_ghosts");
248 BADPREFIX("g_voice_flood_");
249 BADPREFIX("log_file");
251 BADPREFIX("sv_allowdownloads");
252 BADPREFIX("sv_autodemo");
253 BADPREFIX("sv_curl_");
254 BADPREFIX("sv_eventlog");
255 BADPREFIX("sv_logscores_");
256 BADPREFIX("sv_master");
257 BADPREFIX("sv_weaponstats_");
258 BADPREFIX("sv_waypointsprite_");
259 BADCVAR("rescan_pending");
261 // these can contain player IDs, so better hide
262 BADPREFIX("g_forced_team_");
265 BADCVAR("fraglimit");
266 BADCVAR("g_assault");
268 BADCVAR("g_ca_teams");
272 BADCVAR("g_domination");
273 BADCVAR("g_domination_default_teams");
274 BADCVAR("g_freezetag");
275 BADCVAR("g_freezetag_teams");
276 BADCVAR("g_keepaway");
277 BADCVAR("g_keyhunt");
278 BADCVAR("g_keyhunt_teams");
280 BADCVAR("g_nexball");
281 BADCVAR("g_onslaught");
283 BADCVAR("g_race_qualifying_timelimit");
285 BADCVAR("g_tdm_teams");
286 BADCVAR("leadlimit");
289 BADCVAR("timelimit");
293 BADCVAR("g_maplist");
294 BADCVAR("g_maplist_mostrecent");
298 d = cvar_defstring(k);
304 cvar_changes = strcat(cvar_changes, k, " \"", v, "\" // \"", d, "\"\n");
305 if(strlen(cvar_changes) > 16384)
307 cvar_changes = "// too many settings have been changed to show them here\n";
312 // now check if the changes are actually gameplay relevant
314 // does nothing visible
315 BADCVAR("captureleadlimit_override");
316 BADCVAR("g_balance_kill_delay");
317 BADCVAR("g_ca_point_leadlimit");
318 BADCVAR("g_ctf_captimerecord_always");
319 BADCVAR("g_ctf_flag_glowtrails");
320 BADCVAR("g_ctf_flag_pickup_verbosename");
321 BADCVAR("g_domination_point_leadlimit");
322 BADCVAR("g_forced_respawn");
323 BADCVAR("g_keyhunt_point_leadlimit");
325 BADCVAR("g_nexball_goalleadlimit");
326 BADCVAR("leadlimit_and_fraglimit");
327 BADCVAR("leadlimit_override");
329 BADCVAR("sv_allow_fullbright");
330 BADCVAR("sv_checkforpacketsduringsleep");
331 BADCVAR("sv_fraginfo");
332 BADCVAR("sv_timeout");
333 BADPREFIX("sv_timeout_");
334 BADPREFIX("crypto_");
335 BADPREFIX("g_chat_");
336 BADPREFIX("g_ctf_captimerecord_");
337 BADPREFIX("g_maplist_votable_");
341 BADPREFIX("sv_cullentities_");
342 BADPREFIX("sv_fraginfo_");
343 BADPREFIX("sv_maxidle_");
344 BADPREFIX("sv_vote_");
345 BADPREFIX("timelimit_");
346 BADCVAR("gameversion");
347 BADPREFIX("gameversion_");
348 BADCVAR("sv_namechangetimer");
350 // allowed changes to server admins (please sync this to server.cfg)
354 // :%s,//\([^ ]*\).*,BADCVAR("\1");,
356 // yes, this does contain some redundant stuff, don't really care
357 BADCVAR("bot_config_file");
358 BADCVAR("bot_number");
359 BADCVAR("bot_prefix");
360 BADCVAR("bot_suffix");
361 BADCVAR("capturelimit_override");
362 BADCVAR("fraglimit_override");
364 BADCVAR("g_antilag");
365 BADCVAR("g_balance_teams");
366 BADCVAR("g_balance_teams_prevent_imbalance");
367 BADCVAR("g_balance_teams_scorefactor");
368 BADCVAR("g_ban_sync_trusted_servers");
369 BADCVAR("g_ban_sync_uri");
370 BADCVAR("g_ca_teams_override");
371 BADCVAR("g_ctf_ignore_frags");
372 BADCVAR("g_domination_point_limit");
373 BADCVAR("g_freezetag_teams_override");
374 BADCVAR("g_friendlyfire");
375 BADCVAR("g_fullbrightitems");
376 BADCVAR("g_fullbrightplayers");
377 BADCVAR("g_keyhunt_point_limit");
378 BADCVAR("g_keyhunt_teams_override");
379 BADCVAR("g_lms_lives_override");
380 BADCVAR("g_maplist");
381 BADCVAR("g_maplist_check_waypoints");
382 BADCVAR("g_maplist_mostrecent_count");
383 BADCVAR("g_maplist_shuffle");
384 BADCVAR("g_maplist_votable");
385 BADCVAR("g_maplist_votable_abstain");
386 BADCVAR("g_maplist_votable_nodetail");
387 BADCVAR("g_maplist_votable_suggestions");
388 BADCVAR("g_maxplayers");
389 BADCVAR("g_mirrordamage");
390 BADCVAR("g_nexball_goallimit");
391 BADCVAR("g_powerups");
392 BADCVAR("g_start_delay");
394 BADCVAR("g_weapon_stay"); BADPRESUFFIX("g_", "_weapon_stay");
397 BADCVAR("maxplayers");
398 BADCVAR("minplayers");
399 BADCVAR("net_address");
401 BADCVAR("rcon_password");
402 BADCVAR("rcon_restricted_commands");
403 BADCVAR("rcon_restricted_password");
405 BADCVAR("sv_adminnick");
406 BADCVAR("sv_autoscreenshot");
407 BADCVAR("sv_autotaunt");
408 BADCVAR("sv_curl_defaulturl");
409 BADCVAR("sv_defaultcharacter");
410 BADCVAR("sv_defaultplayercolors");
411 BADCVAR("sv_defaultplayermodel");
412 BADCVAR("sv_defaultplayerskin");
413 BADCVAR("sv_maxidle");
414 BADCVAR("sv_maxrate");
416 BADCVAR("sv_public");
417 BADCVAR("sv_ready_restart");
418 BADCVAR("sv_status_privacy");
420 BADCVAR("sv_vote_call");
421 BADCVAR("sv_vote_commands");
422 BADCVAR("sv_vote_majority_factor");
423 BADCVAR("sv_vote_master");
424 BADCVAR("sv_vote_master_commands");
425 BADCVAR("sv_vote_master_password");
426 BADCVAR("sv_vote_simple_majority_factor");
427 BADCVAR("teamplay_mode");
428 BADCVAR("timelimit_override");
429 BADCVAR("g_spawnshieldtime");
430 BADPREFIX("g_warmup_");
431 BADPREFIX("sv_ready_restart_");
433 // mutators that announce themselves properly to the server browser
434 BADCVAR("g_instagib");
435 BADCVAR("g_new_toys");
437 BADCVAR("g_grappling_hook");
438 BADCVAR("g_jetpack");
445 cvar_purechanges = strcat(cvar_purechanges, k, " \"", v, "\" // \"", d, "\"\n");
446 if(strlen(cvar_purechanges) > 16384)
448 cvar_purechanges = "// too many settings have been changed to show them here\n";
452 ++cvar_purechanges_count;
453 // WARNING: this variable is used for the server list
454 // NEVER dare to skip this code!
455 // Hacks to intentionally appearing as "pure server" even though you DO have
456 // modified settings may be punished by removal from the server list.
457 // You can do to the variables cvar_changes and cvar_purechanges all you want,
461 if(cvar_changes == "")
462 cvar_changes = "// this server runs at default server settings\n";
464 cvar_changes = strcat("// this server runs at modified server settings:\n", cvar_changes);
465 cvar_changes = strzone(cvar_changes);
466 if(cvar_purechanges == "")
467 cvar_purechanges = "// this server runs at default gameplay settings\n";
469 cvar_purechanges = strcat("// this server runs at modified gameplay settings:\n", cvar_purechanges);
470 cvar_purechanges = strzone(cvar_purechanges);
473 void detect_maptype()
482 o.x += random() * (world.maxs.x - world.mins.x);
483 o.y += random() * (world.maxs.y - world.mins.y);
484 o.z += random() * (world.maxs.z - world.mins.z);
486 tracebox(o, PL_MIN, PL_MAX, o - '0 0 32768', MOVE_WORLDONLY, world);
487 if(trace_fraction == 1)
492 for(i = 0; i < 64; i += 4)
494 tracebox(o, '-1 -1 -1' * i, '1 1 1' * i, o - '0 0 32768', MOVE_WORLDONLY, world);
495 if(trace_fraction == 1)
497 print(ftos(i), " -> ", vtos(trace_endpos), "\n");
506 float RandomSeed_Send(entity to, float sf)
508 WriteByte(MSG_ENTITY, ENT_CLIENT_RANDOMSEED);
509 WriteShort(MSG_ENTITY, self.cnt);
512 void RandomSeed_Think()
514 self.cnt = bound(0, floor(random() * 65536), 65535);
515 self.nextthink = time + 5;
519 void RandomSeed_Spawn()
521 randomseed = spawn();
522 randomseed.think = RandomSeed_Think;
523 Net_LinkEntity(randomseed, false, 0, RandomSeed_Send);
528 self.think(); // sets random seed and nextthink
532 void spawnfunc___init_dedicated_server(void)
534 // handler for _init/_init map (only for dedicated server initialization)
536 world_initialized = -1; // don't complain
538 cvar_string = cvar_string_normal;
539 cvar_set = cvar_set_normal;
541 remove = remove_unsafely;
545 e.think = GotoFirstMap;
546 e.nextthink = time; // this is usually 1 at this point
549 e.classname = "info_player_deathmatch"; // safeguard against player joining
551 self.classname = "worldspawn"; // safeguard against various stuff ;)
553 // needs to be done so early because of the constants they create
554 CALL_ACCUMULATED_FUNCTION(RegisterWeapons);
555 CALL_ACCUMULATED_FUNCTION(RegisterMonsters);
556 CALL_ACCUMULATED_FUNCTION(RegisterGametypes);
557 CALL_ACCUMULATED_FUNCTION(RegisterNotifications);
558 CALL_ACCUMULATED_FUNCTION(RegisterDeathtypes);
559 CALL_ACCUMULATED_FUNCTION(RegisterBuffs);
562 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
565 void Map_MarkAsRecent(string m);
566 float world_already_spawned;
568 void ClientInit_Spawn();
569 void WeaponStats_Init();
570 void WeaponStats_Shutdown();
571 void spawnfunc_worldspawn (void)
573 float fd, l, i, j, n;
577 cvar_string = cvar_string_normal;
578 cvar_set = cvar_set_normal;
580 if(world_already_spawned)
581 error("world already spawned - you may have EXACTLY ONE worldspawn!");
582 world_already_spawned = true;
584 remove = remove_safely; // during spawning, watch what you remove!
586 cvar_changes_init(); // do this very early now so it REALLY matches the server config
588 compressShortVector_init();
591 head = nextent(world);
596 head = nextent(head);
599 server_is_dedicated = (stof(cvar_defstring("is_dedicated")) ? true : false);
601 // needs to be done so early because of the constants they create
602 CALL_ACCUMULATED_FUNCTION(RegisterWeapons);
603 CALL_ACCUMULATED_FUNCTION(RegisterMonsters);
604 CALL_ACCUMULATED_FUNCTION(RegisterGametypes);
605 CALL_ACCUMULATED_FUNCTION(RegisterNotifications);
606 CALL_ACCUMULATED_FUNCTION(RegisterDeathtypes);
607 CALL_ACCUMULATED_FUNCTION(RegisterBuffs);
609 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
611 TemporaryDB = db_create();
616 // 1 FLICKER (first variety)
617 lightstyle(1, "mmnmmommommnonmmonqnmmo");
619 // 2 SLOW STRONG PULSE
620 lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
622 // 3 CANDLE (first variety)
623 lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
626 lightstyle(4, "mamamamamama");
629 lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
631 // 6 FLICKER (second variety)
632 lightstyle(6, "nmonqnmomnmomomno");
634 // 7 CANDLE (second variety)
635 lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
637 // 8 CANDLE (third variety)
638 lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
640 // 9 SLOW STROBE (fourth variety)
641 lightstyle(9, "aaaaaaaazzzzzzzz");
643 // 10 FLUORESCENT FLICKER
644 lightstyle(10, "mmamammmmammamamaaamammma");
646 // 11 SLOW PULSE NOT FADE TO BLACK
647 lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
649 // styles 32-62 are assigned by the spawnfunc_light program for switchable lights
654 if(autocvar_g_campaign)
657 Map_MarkAsRecent(mapname);
659 PlayerStats_GameReport_Init(); // we need this to be initiated before InitGameplayMode
661 precache_model ("null"); // we need this one before InitGameplayMode
667 bot_waypoints_for_items = autocvar_g_waypoints_for_items;
668 if(bot_waypoints_for_items == 1)
669 if(self.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
670 bot_waypoints_for_items = 0;
674 WaypointSprite_Init();
676 GameLogInit(); // prepare everything
678 // changing the logic generating it is okay. But:
679 // it HAS to stay <= 64 chars
680 // character set: ASCII 33-126 without the following characters: : ; ' " \ $
681 if(autocvar_sv_eventlog)
683 s = sprintf("%d.%s.%06d", ftos(autocvar_sv_eventlog_files_counter), strftime(false, "%s"), floor(random() * 1000000));
684 matchid = strzone(s);
686 GameLogEcho(strcat(":gamestart:", GetGametype(), "_", GetMapname(), ":", s));
687 s = ":gameinfo:mutators:LIST";
690 MUTATOR_CALLHOOK(BuildMutatorsString);
693 // simple, probably not good in the mutator system
694 if(autocvar_g_grappling_hook)
695 s = strcat(s, ":grappling_hook");
697 // initialiation stuff, not good in the mutator system
698 if(!autocvar_g_use_ammunition)
699 s = strcat(s, ":no_use_ammunition");
701 // initialiation stuff, not good in the mutator system
702 if(autocvar_g_pickup_items == 0)
703 s = strcat(s, ":no_pickup_items");
704 if(autocvar_g_pickup_items > 0)
705 s = strcat(s, ":pickup_items");
707 // initialiation stuff, not good in the mutator system
708 if(autocvar_g_weaponarena != "0")
709 s = strcat(s, ":", autocvar_g_weaponarena, " arena");
711 // TODO to mutator system
712 if(autocvar_g_norecoil)
713 s = strcat(s, ":norecoil");
715 // TODO to mutator system
716 if(autocvar_g_powerups == 0)
717 s = strcat(s, ":no_powerups");
718 if(autocvar_g_powerups > 0)
719 s = strcat(s, ":powerups");
722 GameLogEcho(":gameinfo:end");
725 matchid = strzone(ftos(random()));
727 cvar_set("nextmap", "");
731 if(autocvar_g_campaign)
737 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
739 if(whichpack(strcat("maps/", mapname, ".cfg")) != "")
741 fd = fopen(strcat("maps/", mapname, ".cfg"), FILE_READ);
744 while((s = fgets(fd)))
746 l = tokenize_console(s);
751 print("Found ^1UNSUPPORTED^7 cd loop command in .cfg file; put this line in mapinfo instead:\n");
752 print(" cdtrack ", argv(2), "\n");
754 else if(argv(0) == "fog")
756 print("Found ^1UNSUPPORTED^7 fog command in .cfg file; put this line in worldspawn in the .map/.bsp/.ent file instead:\n");
757 print(" \"fog\" \"", s, "\"\n");
759 else if(argv(0) == "set")
761 print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
762 print(" clientsettemp_for_type all ", argv(1), " ", argv(2), "\n");
764 else if(argv(0) != "//")
766 print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
767 print(" clientsettemp_for_type all ", argv(0), " ", argv(1), "\n");
777 addstat(STAT_SWITCHWEAPON, AS_INT, switchweapon);
778 addstat(STAT_SWITCHINGWEAPON, AS_INT, switchingweapon);
779 addstat(STAT_GAMESTARTTIME, AS_FLOAT, stat_game_starttime);
780 addstat(STAT_ROUNDSTARTTIME, AS_FLOAT, stat_round_starttime);
781 addstat(STAT_ALLOW_OLDVORTEXBEAM, AS_INT, stat_allow_oldvortexbeam);
784 addstat(STAT_STRENGTH_FINISHED, AS_FLOAT, strength_finished);
785 addstat(STAT_INVINCIBLE_FINISHED, AS_FLOAT, invincible_finished);
786 addstat(STAT_SUPERWEAPONS_FINISHED, AS_FLOAT, superweapons_finished);
787 addstat(STAT_PRESSED_KEYS, AS_FLOAT, pressedkeys);
788 addstat(STAT_FUEL, AS_INT, ammo_fuel);
789 addstat(STAT_PLASMA, AS_INT, ammo_plasma);
790 addstat(STAT_SHOTORG, AS_INT, stat_shotorg);
791 addstat(STAT_LEADLIMIT, AS_FLOAT, stat_leadlimit);
792 addstat(STAT_WEAPON_CLIPLOAD, AS_INT, clip_load);
793 addstat(STAT_WEAPON_CLIPSIZE, AS_INT, clip_size);
794 addstat(STAT_LAST_PICKUP, AS_FLOAT, last_pickup);
795 addstat(STAT_HIT_TIME, AS_FLOAT, hit_time);
796 addstat(STAT_DAMAGE_DEALT_TOTAL, AS_INT, damage_dealt_total);
797 addstat(STAT_TYPEHIT_TIME, AS_FLOAT, typehit_time);
798 addstat(STAT_LAYED_MINES, AS_INT, minelayer_mines);
800 addstat(STAT_VORTEX_CHARGE, AS_FLOAT, vortex_charge);
801 addstat(STAT_VORTEX_CHARGEPOOL, AS_FLOAT, vortex_chargepool_ammo);
803 addstat(STAT_HAGAR_LOAD, AS_INT, hagar_load);
805 addstat(STAT_ARC_HEAT, AS_FLOAT, arc_heat_percent);
808 addstat(STAT_FROZEN, AS_INT, frozen);
809 addstat(STAT_REVIVE_PROGRESS, AS_FLOAT, revive_progress);
811 // g_movementspeed hack
812 addstat(STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW, AS_FLOAT, stat_sv_airspeedlimit_nonqw);
813 addstat(STAT_MOVEVARS_MAXSPEED, AS_FLOAT, stat_sv_maxspeed);
814 addstat(STAT_MOVEVARS_AIRACCEL_QW, AS_FLOAT, stat_sv_airaccel_qw);
815 addstat(STAT_MOVEVARS_AIRSTRAFEACCEL_QW, AS_FLOAT, stat_sv_airstrafeaccel_qw);
818 addstat(STAT_SECRETS_TOTAL, AS_FLOAT, stat_secrets_total);
819 addstat(STAT_SECRETS_FOUND, AS_FLOAT, stat_secrets_found);
822 addstat(STAT_MONSTERS_TOTAL, AS_FLOAT, stat_monsters_total);
823 addstat(STAT_MONSTERS_KILLED, AS_FLOAT, stat_monsters_killed);
826 addstat(STAT_RESPAWN_TIME, AS_FLOAT, stat_respawn_time);
828 next_pingtime = time + 5;
832 // set up information replies for clients and server to use
833 maplist_reply = strzone(getmaplist());
834 lsmaps_reply = strzone(getlsmaps());
835 monsterlist_reply = strzone(getmonsterlist());
836 for(i = 0; i < 10; ++i)
840 records_reply[i] = strzone(s);
842 ladder_reply = strzone(getladder());
843 rankings_reply = strzone(getrankings());
848 PingPLReport_Spawn();
852 localcmd("\n_sv_hook_gamestart ", GetGametype(), "\n");
854 // fill sv_curl_serverpackages from .serverpackage files
855 if(autocvar_sv_curl_serverpackages_auto)
858 n = tokenize_console(cvar_string("sv_curl_serverpackages"));
859 for(i = 0; i < n; ++i)
860 if(substring(argv(i), -18, -1) != "-serverpackage.txt")
861 if(substring(argv(i), -14, -1) != ".serverpackage") // OLD legacy
862 s = strcat(s, " ", argv(i));
863 fd = search_begin("*-serverpackage.txt", true, false);
866 j = search_getsize(fd);
867 for(i = 0; i < j; ++i)
868 s = strcat(s, " ", search_getfilename(fd, i));
871 fd = search_begin("*.serverpackage", true, false);
874 j = search_getsize(fd);
875 for(i = 0; i < j; ++i)
876 s = strcat(s, " ", search_getfilename(fd, i));
879 cvar_set("sv_curl_serverpackages", substring(s, 1, -1));
882 // MOD AUTHORS: change this, and possibly remove a few of the blocks below to ignore certain changes
884 // physics/balance/config changes that count as mod
885 if(cvar_string("g_mod_physics") != cvar_defstring("g_mod_physics"))
886 modname = cvar_string("g_mod_physics");
887 if(cvar_string("g_mod_balance") != cvar_defstring("g_mod_balance"))
888 modname = cvar_string("g_mod_balance");
889 if(cvar_string("g_mod_config") != cvar_defstring("g_mod_config"))
890 modname = cvar_string("g_mod_config");
891 // extra mutators that deserve to count as mod
892 MUTATOR_CALLHOOK(SetModname);
895 modname = strzone(modname);
897 WinningConditionHelper(); // set worldstatus
899 world_initialized = 1;
902 void spawnfunc_light (void)
904 //makestatic (self); // Who the f___ did that?
910 return MapInfo_Type_ToString(MapInfo_LoadedGametype);
918 float Map_Count, Map_Current;
919 string Map_Current_Name;
921 // NOTE: this now expects the map list to be already tokenized and the count in Map_Count
922 float GetMaplistPosition()
928 idx = autocvar_g_maplist_index;
935 for(pos = 0; pos < Map_Count; ++pos)
939 // resume normal maplist rotation if current map is not in g_maplist
943 float MapHasRightSize(string map)
946 if(currentbots || autocvar_bot_number || player_count < autocvar_minplayers)
947 if(autocvar_g_maplist_check_waypoints)
949 dprint("checkwp "); dprint(map);
950 if(!fexists(strcat("maps/", map, ".waypoints")))
952 dprint(": no waypoints\n");
955 dprint(": has waypoints\n");
958 // open map size restriction file
959 dprint("opensize "); dprint(map);
960 fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
963 float mapmin, mapmax;
965 mapmin = stof(fgets(fh));
966 mapmax = stof(fgets(fh));
968 if(player_count < mapmin)
970 dprint("not enough\n");
973 if(player_count > mapmax)
975 dprint("too many\n");
978 dprint("right size\n");
981 dprint(": not found\n");
985 string Map_Filename(float position)
987 return strcat("maps/", argv(position), ".bsp");
990 string strwords(string s, float w)
993 for(endpos = 0; w && endpos >= 0; --w)
994 endpos = strstrofs(s, " ", endpos + 1);
998 return substring(s, 0, endpos);
1001 float strhasword(string s, string w)
1003 return strstrofs(strcat(" ", s, " "), strcat(" ", w, " "), 0) >= 0;
1006 void Map_MarkAsRecent(string m)
1008 cvar_set("g_maplist_mostrecent", strwords(strcat(m, " ", autocvar_g_maplist_mostrecent), max(0, autocvar_g_maplist_mostrecent_count)));
1011 float Map_IsRecent(string m)
1013 return strhasword(autocvar_g_maplist_mostrecent, m);
1016 float Map_Check(float position, float pass)
1020 map_next = argv(position);
1023 if(Map_IsRecent(map_next))
1026 filename = Map_Filename(position);
1027 if(MapInfo_CheckMap(map_next))
1031 if(MapHasRightSize(map_next))
1036 dprint( "Couldn't select '", filename, "'..\n" );
1041 void Map_Goto_SetStr(string nextmapname)
1043 if(getmapname_stored != "")
1044 strunzone(getmapname_stored);
1045 if(nextmapname == "")
1046 getmapname_stored = "";
1048 getmapname_stored = strzone(nextmapname);
1051 void Map_Goto_SetFloat(float position)
1053 cvar_set("g_maplist_index", ftos(position));
1054 Map_Goto_SetStr(argv(position));
1057 void Map_Goto(float reinit)
1059 MapInfo_LoadMap(getmapname_stored, reinit);
1062 // return codes of map selectors:
1063 // -1 = temporary failure (that is, try some method that is guaranteed to succeed)
1064 // -2 = permanent failure
1065 float() MaplistMethod_Iterate = // usual method
1069 dprint("Trying MaplistMethod_Iterate\n");
1071 for(pass = 1; pass <= 2; ++pass)
1073 for(i = 1; i < Map_Count; ++i)
1076 mapindex = (i + Map_Current) % Map_Count;
1077 if(Map_Check(mapindex, pass))
1084 float() MaplistMethod_Repeat = // fallback method
1086 dprint("Trying MaplistMethod_Repeat\n");
1088 if(Map_Check(Map_Current, 2))
1093 float() MaplistMethod_Random = // random map selection
1097 dprint("Trying MaplistMethod_Random\n");
1101 for(i = 0; i <= imax; ++i)
1104 mapindex = (Map_Current + floor(random() * (Map_Count - 1) + 1)) % Map_Count; // any OTHER map
1105 if(Map_Check(mapindex, 1))
1111 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
1112 // the exponent sets a bias on the map selection:
1113 // the higher the exponent, the less likely "shortly repeated" same maps are
1115 float i, j, imax, insertpos;
1117 dprint("Trying MaplistMethod_Shuffle\n");
1121 for(i = 0; i <= imax; ++i)
1125 // now reinsert this at another position
1126 insertpos = pow(random(), 1 / exponent); // ]0, 1]
1127 insertpos = insertpos * (Map_Count - 1); // ]0, Map_Count - 1]
1128 insertpos = ceil(insertpos) + 1; // {2, 3, 4, ..., Map_Count}
1129 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
1131 // insert the current map there
1133 for(j = 1; j < insertpos; ++j) // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
1134 newlist = strcat(newlist, " ", argv(j));
1135 newlist = strcat(newlist, " ", argv(0)); // now insert the just selected map
1136 for(j = insertpos; j < Map_Count; ++j) // i == Map_Count: no loop, has just been inserted as last
1137 newlist = strcat(newlist, " ", argv(j));
1138 newlist = substring(newlist, 1, strlen(newlist) - 1);
1139 cvar_set("g_maplist", newlist);
1140 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1142 // NOTE: the selected map has just been inserted at (insertpos-1)th position
1143 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
1144 if(Map_Check(Map_Current, 1))
1152 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1154 for (i = 0; i < Map_Count; ++i)
1155 if (Map_Check(i, 2))
1159 bprint( "Maplist contains no usable maps! Resetting it to default map list.\n" );
1160 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags() | MAPINFO_FLAG_NOAUTOMAPLIST));
1161 if(autocvar_g_maplist_shuffle)
1163 localcmd("\nmenu_cmd sync\n");
1164 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1167 error("empty maplist, cannot select a new map");
1168 Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
1170 if(Map_Current_Name)
1171 strunzone(Map_Current_Name);
1172 Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
1173 // this may or may not be correct, but who cares, in the worst case a map
1174 // isn't chosen in the first pass that should have been
1185 if(autocvar_g_maplist_shuffle > 0)
1186 nextMap = MaplistMethod_Shuffle(autocvar_g_maplist_shuffle + 1);
1189 if(autocvar_g_maplist_selectrandom)
1190 nextMap = MaplistMethod_Random();
1193 nextMap = MaplistMethod_Iterate();
1196 nextMap = MaplistMethod_Repeat();
1200 Map_Goto_SetFloat(nextMap);
1201 return getmapname_stored;
1207 float DoNextMapOverride(float reinit)
1209 if(autocvar_g_campaign)
1211 CampaignPostIntermission();
1212 alreadychangedlevel = true;
1215 if(autocvar_quit_when_empty)
1217 if(player_count <= currentbots)
1220 alreadychangedlevel = true;
1224 if(autocvar_quit_and_redirect != "")
1226 redirection_target = strzone(autocvar_quit_and_redirect);
1227 alreadychangedlevel = true;
1230 if (!reinit && autocvar_samelevel) // if samelevel is set, stay on same level
1232 localcmd("restart\n");
1233 alreadychangedlevel = true;
1236 if(autocvar_nextmap != "")
1239 m = GameTypeVote_MapInfo_FixName(autocvar_nextmap);
1240 cvar_set("nextmap",m);
1242 if(!m || gametypevote)
1244 if(autocvar_sv_vote_gametype)
1250 if(MapInfo_CheckMap(m))
1254 alreadychangedlevel = true;
1258 if(!reinit && autocvar_lastlevel)
1260 cvar_settemp_restore();
1261 localcmd("set lastlevel 0\ntogglemenu 1\n");
1262 alreadychangedlevel = true;
1268 void GotoNextMap(float reinit)
1273 if (alreadychangedlevel)
1275 alreadychangedlevel = true;
1279 nextMap = GetNextMap();
1281 error("Everything is broken - cannot find a next map. Please report this to the developers.");
1290 When the player presses attack or jump, change to the next level
1293 .float autoscreenshot;
1294 void IntermissionThink()
1296 FixIntermissionClient(self);
1298 float server_screenshot = (autocvar_sv_autoscreenshot && self.cvar_cl_autoscreenshot);
1299 float client_screenshot = (self.cvar_cl_autoscreenshot == 2);
1301 if( (server_screenshot || client_screenshot)
1302 && ((self.autoscreenshot > 0) && (time > self.autoscreenshot)) )
1304 self.autoscreenshot = -1;
1305 if(IS_REAL_CLIENT(self)) { stuffcmd(self, sprintf("\nscreenshot screenshots/autoscreenshot/%s-%s.jpg; echo \"^5A screenshot has been taken at request of the server.\"\n", GetMapname(), strftime(false, "%s"))); }
1309 if (time < intermission_exittime)
1312 if(!mapvote_initialized)
1313 if (time < intermission_exittime + 10 && !(self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE))
1323 Returns the entity to view from
1327 entity FindIntermission()
1332 // look for info_intermission first
1333 spot = find (world, classname, "info_intermission");
1335 { // pick a random one
1339 spot = find (spot, classname, "info_intermission");
1341 spot = find (spot, classname, "info_intermission");
1347 // then look for the start position
1348 spot = find (world, classname, "info_player_start");
1352 // testinfo_player_start is only found in regioned levels
1353 spot = find (world, classname, "testplayerstart");
1357 // then look for the start position
1358 spot = find (world, classname, "info_player_deathmatch");
1362 //objerror ("FindIntermission: no spot");
1368 ===============================================================================
1372 ===============================================================================
1375 void DumpStats(float final)
1384 to_console = autocvar_sv_logscores_console;
1385 to_eventlog = autocvar_sv_eventlog;
1386 to_file = autocvar_sv_logscores_file;
1390 to_console = true; // always print printstats replies
1391 to_eventlog = false; // but never print them to the event log
1395 if(autocvar_sv_eventlog_console)
1396 to_console = false; // otherwise we get the output twice
1402 s = strcat(s, GetGametype(), "_", GetMapname(), ":", ftos(rint(time)));
1412 file = fopen(autocvar_sv_logscores_filename, FILE_APPEND);
1416 fputs(file, strcat(s, "\n"));
1419 s = strcat(":labels:player:", GetPlayerScoreString(world, 0));
1425 fputs(file, strcat(s, "\n"));
1427 FOR_EACH_CLIENT(other)
1429 if ((IS_REAL_CLIENT(other)) || (IS_BOT_CLIENT(other) && autocvar_sv_logscores_bots))
1431 s = strcat(":player:see-labels:", GetPlayerScoreString(other, 0), ":");
1432 s = strcat(s, ftos(rint(time - other.jointime)), ":");
1433 if(IS_PLAYER(other) || other.caplayer == 1 || g_lms)
1434 s = strcat(s, ftos(other.team), ":");
1436 s = strcat(s, "spectator:");
1439 print(s, other.netname, "\n");
1441 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname));
1443 fputs(file, strcat(s, other.netname, "\n"));
1449 s = strcat(":labels:teamscores:", GetTeamScoreString(0, 0));
1455 fputs(file, strcat(s, "\n"));
1457 for(i = 1; i < 16; ++i)
1459 s = strcat(":teamscores:see-labels:", GetTeamScoreString(i, 0));
1460 s = strcat(s, ":", ftos(i));
1466 fputs(file, strcat(s, "\n"));
1473 GameLogEcho(":end");
1476 fputs(file, ":end\n");
1481 void FixIntermissionClient(entity e)
1484 if(!e.autoscreenshot) // initial call
1486 e.autoscreenshot = time + 0.8; // used for autoscreenshot
1488 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
1489 e.solid = SOLID_NOT;
1490 e.movetype = MOVETYPE_NONE;
1491 e.takedamage = DAMAGE_NO;
1494 e.weaponentity.effects = EF_NODRAW;
1495 if (e.weaponentity.weaponentity)
1496 e.weaponentity.weaponentity.effects = EF_NODRAW;
1498 if(IS_REAL_CLIENT(e))
1500 stuffcmd(e, "\nscr_printspeed 1000000\n");
1501 s = autocvar_sv_intermission_cdtrack;
1503 stuffcmd(e, strcat("\ncd loop ", s, "\n"));
1505 WriteByte(MSG_ONE, SVC_INTERMISSION);
1511 go to the next level for deathmatch
1512 only called if a time or frag limit has expired
1518 intermission_running = 1;
1520 // enforce a wait time before allowing changelevel
1521 if(player_count > 0)
1522 intermission_exittime = time + autocvar_sv_mapchange_delay;
1524 intermission_exittime = -1;
1527 WriteByte (MSG_ALL, SVC_CDTRACK);
1528 WriteByte (MSG_ALL, 3);
1529 WriteByte (MSG_ALL, 3);
1530 // done in FixIntermission
1533 //pos = FindIntermission ();
1540 PlayerStats_GameReport(true);
1541 WeaponStats_Shutdown();
1543 Kill_Notification(NOTIF_ALL, world, MSG_CENTER, 0); // kill all centerprints now
1545 if(autocvar_sv_eventlog)
1546 GameLogEcho(":gameover");
1550 FOR_EACH_PLAYER(other) {
1551 FixIntermissionClient(other);
1553 bprint(other.netname, " ^7wins.\n");
1556 if(autocvar_g_campaign)
1557 CampaignPreIntermission();
1559 MUTATOR_CALLHOOK(MatchEnd);
1561 localcmd("\nsv_hook_gameend\n");
1568 Exit deathmatch games upon conditions
1571 void CheckRules_Player()
1573 if (gameover) // someone else quit the game already
1576 if(self.deadflag == DEAD_NO)
1577 self.play_time += frametime;
1579 // fixme: don't check players; instead check spawnfunc_dom_team and spawnfunc_ctf_team entities
1580 // (div0: and that in CheckRules_World please)
1584 float InitiateSuddenDeath()
1586 // Check first whether normal overtimes could be added before initiating suddendeath mode
1587 // - for this timelimit_overtime needs to be >0 of course
1588 // - also check the winning condition calculated in the previous frame and only add normal overtime
1589 // again, if at the point at which timelimit would be extended again, still no winner was found
1590 if (!autocvar_g_campaign && (checkrules_overtimesadded >= 0) && (checkrules_overtimesadded < autocvar_timelimit_overtimes || autocvar_timelimit_overtimes < 0) && autocvar_timelimit_overtime && !(g_race && !g_race_qualifying))
1592 return 1; // need to call InitiateOvertime later
1596 if(!checkrules_suddendeathend)
1598 if(autocvar_g_campaign)
1599 checkrules_suddendeathend = time; // no suddendeath in campaign
1601 checkrules_suddendeathend = time + 60 * autocvar_timelimit_suddendeath;
1602 if(g_race && !g_race_qualifying)
1603 race_StartCompleting();
1609 void InitiateOvertime() // ONLY call this if InitiateSuddenDeath returned true
1611 ++checkrules_overtimesadded;
1612 //add one more overtime by simply extending the timelimit
1614 tl = autocvar_timelimit;
1615 tl += autocvar_timelimit_overtime;
1616 cvar_set("timelimit", ftos(tl));
1618 Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_OVERTIME_TIME, autocvar_timelimit_overtime * 60);
1621 float GetWinningCode(float fraglimitreached, float equality)
1623 if(autocvar_g_campaign == 1)
1624 if(fraglimitreached)
1631 if(fraglimitreached)
1632 return WINNING_STARTSUDDENDEATHOVERTIME;
1634 return WINNING_NEVER;
1636 if(fraglimitreached)
1642 // set the .winning flag for exactly those players with a given field value
1643 void SetWinners(.float field, float value)
1646 FOR_EACH_PLAYER(head)
1647 head.winning = (head.field == value);
1650 // set the .winning flag for those players with a given field value
1651 void AddWinners(.float field, float value)
1654 FOR_EACH_PLAYER(head)
1655 if(head.field == value)
1659 // clear the .winning flags
1660 void ClearWinners(void)
1663 FOR_EACH_PLAYER(head)
1667 // Assault winning condition: If the attackers triggered a round end (by fulfilling all objectives)
1668 // they win. Otherwise the defending team wins once the timelimit passes.
1669 void assault_new_round();
1670 float WinningCondition_Assault()
1674 WinningConditionHelper(); // set worldstatus
1676 status = WINNING_NO;
1677 // as the timelimit has not yet passed just assume the defending team will win
1678 if(assault_attacker_team == NUM_TEAM_1)
1680 SetWinners(team, NUM_TEAM_2);
1684 SetWinners(team, NUM_TEAM_1);
1688 ent = find(world, classname, "target_assault_roundend");
1691 if(ent.winning) // round end has been triggered by attacking team
1693 bprint("ASSAULT: round completed...\n");
1694 SetWinners(team, assault_attacker_team);
1696 TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 666 - TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 0));
1698 if(ent.cnt == 1 || autocvar_g_campaign) // this was the second round
1700 status = WINNING_YES;
1707 assault_new_round();
1716 // LMS winning condition: game terminates if and only if there's at most one
1717 // one player who's living lives. Top two scores being equal cancels the time
1719 float WinningCondition_LMS()
1726 have_player = false;
1727 have_players = false;
1728 l = LMS_NewPlayerLives();
1730 head = find(world, classname, "player");
1733 head2 = find(head, classname, "player");
1735 have_players = true;
1739 // we have at least one player
1742 // two or more active players - continue with the game
1746 // exactly one player?
1749 SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1753 // game still running (that is, nobody got removed from the game by a frag yet)? then continue
1759 // and assign him his first place
1760 PlayerScore_Add(head, SP_LMS_RANK, 1);
1767 // nobody is playing at all...
1770 // wait for players...
1774 // SNAFU (maybe a draw game?)
1776 dprint("No players, ending game.\n");
1781 // When we get here, we have at least two players who are actually LIVING,
1782 // now check if the top two players have equal score.
1783 WinningConditionHelper();
1786 if(WinningConditionHelper_winner)
1787 WinningConditionHelper_winner.winning = true;
1788 if(WinningConditionHelper_topscore == WinningConditionHelper_secondscore)
1789 return WINNING_NEVER;
1791 // Top two have different scores? Way to go for our beloved TIMELIMIT!
1795 void ShuffleMaplist()
1797 cvar_set("g_maplist", shufflewords(autocvar_g_maplist));
1801 float WinningCondition_Scores(float limit, float leadlimit)
1805 // TODO make everything use THIS winning condition (except LMS)
1806 WinningConditionHelper();
1810 team1_score = TeamScore_GetCompareValue(NUM_TEAM_1);
1811 team2_score = TeamScore_GetCompareValue(NUM_TEAM_2);
1812 team3_score = TeamScore_GetCompareValue(NUM_TEAM_3);
1813 team4_score = TeamScore_GetCompareValue(NUM_TEAM_4);
1817 if(WinningConditionHelper_winner)
1818 WinningConditionHelper_winner.winning = 1;
1819 if(WinningConditionHelper_winnerteam >= 0)
1820 SetWinners(team, WinningConditionHelper_winnerteam);
1822 if(WinningConditionHelper_lowerisbetter)
1824 WinningConditionHelper_topscore = -WinningConditionHelper_topscore;
1825 WinningConditionHelper_secondscore = -WinningConditionHelper_secondscore;
1829 if(WinningConditionHelper_zeroisworst)
1830 leadlimit = 0; // not supported in this mode
1832 if(g_dm || g_tdm || g_ca || g_freezetag || (g_race && !g_race_qualifying) || g_nexball)
1833 // these modes always score in increments of 1, thus this makes sense
1835 if(leaderfrags != WinningConditionHelper_topscore)
1837 leaderfrags = WinningConditionHelper_topscore;
1840 if (leaderfrags == limit - 1)
1841 Send_Notification(NOTIF_ALL, world, MSG_ANNCE, ANNCE_REMAINING_FRAG_1);
1842 else if (leaderfrags == limit - 2)
1843 Send_Notification(NOTIF_ALL, world, MSG_ANNCE, ANNCE_REMAINING_FRAG_2);
1844 else if (leaderfrags == limit - 3)
1845 Send_Notification(NOTIF_ALL, world, MSG_ANNCE, ANNCE_REMAINING_FRAG_3);
1849 limitreached = false;
1851 if(WinningConditionHelper_topscore >= limit)
1852 limitreached = true;
1855 float leadlimitreached;
1856 leadlimitreached = (WinningConditionHelper_topscore - WinningConditionHelper_secondscore >= leadlimit);
1857 if(autocvar_leadlimit_and_fraglimit)
1858 limitreached = (limitreached && leadlimitreached);
1860 limitreached = (limitreached || leadlimitreached);
1864 game_completion_ratio = max(game_completion_ratio, bound(0, WinningConditionHelper_topscore / limit, 1));
1866 return GetWinningCode(
1867 WinningConditionHelper_topscore && limitreached,
1868 WinningConditionHelper_equality
1872 float WinningCondition_Race(float fraglimit)
1883 if(p.race_completed)
1888 wc = WinningCondition_Scores(fraglimit, 0);
1890 // ALWAYS initiate overtime, unless EVERYONE has finished the race!
1891 if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
1892 // do NOT support equality when the laps are all raced!
1893 return WINNING_STARTSUDDENDEATHOVERTIME;
1895 return WINNING_NEVER;
1898 float WinningCondition_QualifyingThenRace(float limit)
1901 wc = WinningCondition_Scores(limit, 0);
1903 // NEVER initiate overtime
1904 if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
1912 float WinningCondition_RanOutOfSpawns()
1916 if(have_team_spawns <= 0)
1919 if(autocvar_g_spawn_useallspawns <= 0)
1922 if(!some_spawn_has_been_used)
1925 team1_score = team2_score = team3_score = team4_score = 0;
1927 FOR_EACH_PLAYER(head) if(head.deadflag == DEAD_NO)
1929 if(head.team == NUM_TEAM_1)
1931 else if(head.team == NUM_TEAM_2)
1933 else if(head.team == NUM_TEAM_3)
1935 else if(head.team == NUM_TEAM_4)
1939 for(head = world; (head = find(head, classname, "info_player_deathmatch")) != world; )
1941 if(head.team == NUM_TEAM_1)
1943 else if(head.team == NUM_TEAM_2)
1945 else if(head.team == NUM_TEAM_3)
1947 else if(head.team == NUM_TEAM_4)
1952 if(team1_score + team2_score + team3_score + team4_score == 0)
1954 checkrules_equality = true;
1957 else if(team1_score + team2_score + team3_score + team4_score == 1)
1962 else if(team2_score)
1964 else if(team3_score)
1966 else // if(team4_score)
1968 CheckAllowedTeams(world);
1969 for(i = 0; i < MAX_TEAMSCORE; ++i)
1971 if(t != NUM_TEAM_1) if(c1 >= 0) TeamScore_AddToTeam(NUM_TEAM_1, i, -1000);
1972 if(t != NUM_TEAM_2) if(c2 >= 0) TeamScore_AddToTeam(NUM_TEAM_2, i, -1000);
1973 if(t != NUM_TEAM_3) if(c3 >= 0) TeamScore_AddToTeam(NUM_TEAM_3, i, -1000);
1974 if(t != NUM_TEAM_4) if(c4 >= 0) TeamScore_AddToTeam(NUM_TEAM_4, i, -1000);
1977 AddWinners(team, t);
1988 Exit deathmatch games upon conditions
1991 void ReadyRestart();
1992 void CheckRules_World()
2003 if (gameover) // someone else quit the game already
2005 if(player_count == 0) // Nobody there? Then let's go to the next map
2007 // this will actually check the player count in the next frame
2008 // again, but this shouldn't hurt
2012 timelimit = autocvar_timelimit * 60;
2013 fraglimit = autocvar_fraglimit;
2014 leadlimit = autocvar_leadlimit;
2016 if(warmup_stage || time <= game_starttime) // NOTE: this is <= to prevent problems in the very tic where the game starts
2019 timelimit = 0; // timelimit is not made for warmup
2021 fraglimit = 0; // no fraglimit for now
2022 leadlimit = 0; // no leadlimit for now
2027 timelimit += game_starttime;
2029 else if (timelimit < 0)
2039 if(timelimit > game_starttime)
2040 game_completion_ratio = (time - game_starttime) / (timelimit - game_starttime);
2042 game_completion_ratio = 0;
2044 if(checkrules_suddendeathend)
2046 if(!checkrules_suddendeathwarning)
2048 checkrules_suddendeathwarning = true;
2049 if(g_race && !g_race_qualifying)
2050 Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_RACE_FINISHLAP);
2052 Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_OVERTIME_FRAG);
2057 if (timelimit && time >= timelimit)
2059 if(g_race && (g_race_qualifying == 2) && timelimit > 0)
2062 float playerswithlaps;
2065 totalplayers = playerswithlaps = readyplayers = 0;
2066 FOR_EACH_PLAYER(head)
2069 if(PlayerScore_Add(head, SP_RACE_FASTEST, 0))
2075 // at least 2 of the players have completed a lap: start the RACE
2076 // otherwise, the players should end the qualifying on their own
2077 if(readyplayers || playerswithlaps >= 2)
2079 checkrules_suddendeathend = 0;
2080 ReadyRestart(); // go to race
2084 wantovertime |= InitiateSuddenDeath();
2087 wantovertime |= InitiateSuddenDeath();
2091 if (checkrules_suddendeathend && time >= checkrules_suddendeathend)
2097 float checkrules_status;
2098 checkrules_status = WinningCondition_RanOutOfSpawns();
2099 if(checkrules_status == WINNING_YES)
2101 bprint("Hey! Someone ran out of spawns!\n");
2103 else if(g_race && !g_race_qualifying && timelimit >= 0)
2105 checkrules_status = WinningCondition_Race(fraglimit);
2106 //print("WC_RACE yields ", ftos(checkrules_status), "\n");
2108 else if(g_race && g_race_qualifying == 2 && timelimit >= 0)
2110 checkrules_status = WinningCondition_QualifyingThenRace(fraglimit);
2111 //print("WC_QUALIFYING_THEN_RACE yields ", ftos(checkrules_status), "\n");
2115 checkrules_status = WinningCondition_Assault(); // TODO remove this?
2119 checkrules_status = WinningCondition_LMS();
2123 checkrules_status = WinningCondition_Scores(fraglimit, leadlimit);
2124 //print("WC_SCORES yields ", ftos(checkrules_status), "\n");
2127 if(checkrules_status == WINNING_STARTSUDDENDEATHOVERTIME)
2129 checkrules_status = WINNING_NEVER;
2130 checkrules_overtimesadded = -1;
2131 wantovertime |= InitiateSuddenDeath();
2134 if(checkrules_status == WINNING_NEVER)
2135 // equality cases! Nobody wins if the overtime ends in a draw.
2140 if(checkrules_status == WINNING_NEVER)
2143 checkrules_status = WINNING_YES;
2146 if(checkrules_suddendeathend)
2147 if(checkrules_status != WINNING_NEVER || time >= checkrules_suddendeathend)
2148 checkrules_status = WINNING_YES;
2150 if(checkrules_status == WINNING_YES)
2152 //print("WINNING\n");
2157 string GotoMap(string m)
2159 m = GameTypeVote_MapInfo_FixName(m);
2161 return "The map you suggested is not available on this server.";
2162 if (!autocvar_sv_vote_gametype)
2163 if(!MapInfo_CheckMap(m))
2164 return "The map you suggested does not support the current game mode.";
2165 cvar_set("nextmap", m);
2166 cvar_set("timelimit", "-1");
2167 if(mapvote_initialized || alreadychangedlevel)
2169 if(DoNextMapOverride(0))
2170 return "Map switch initiated.";
2172 return "Hm... no. For some reason I like THIS map more.";
2175 return "Map switch will happen after scoreboard.";
2181 anticheat_endframe();
2184 FOR_EACH_REALCLIENT(self)
2186 entity e = IS_SPEC(self) ? self.enemy : self;
2188 self.typehit_time = time;
2189 else if(e.damage_dealt)
2191 self.hit_time = time;
2192 self.damage_dealt_total += ceil(e.damage_dealt);
2195 altime = time + frametime * (1 + autocvar_g_antilag_nudge);
2196 // add 1 frametime because after this, engine SV_Physics
2197 // increases time by a frametime and then networks the frame
2198 // add another frametime because client shows everything with
2199 // 1 frame of lag (cl_nolerp 0). The last +1 however should not be
2201 FOR_EACH_CLIENT(self)
2203 self.typehitsound = false;
2204 self.damage_dealt = 0;
2205 antilag_record(self, altime);
2207 FOR_EACH_MONSTER(self)
2208 antilag_record(self, altime);
2214 * returns true if redirecting
2216 float redirection_timeout;
2217 float redirection_nextthink;
2218 float RedirectionThink()
2220 float clients_found;
2222 if(redirection_target == "")
2225 if(!redirection_timeout)
2227 cvar_set("sv_public", "-2");
2228 redirection_timeout = time + 0.6; // this will only try twice... should be able to keep more clients
2229 if(redirection_target == "self")
2230 bprint("^3SERVER NOTICE:^7 restarting the server\n");
2232 bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
2235 if(time < redirection_nextthink)
2238 redirection_nextthink = time + 1;
2241 FOR_EACH_REALCLIENT(self)
2244 print("Redirecting: sending connect command to ", self.netname, "\n");
2245 if(redirection_target == "self")
2246 stuffcmd(self, "\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " reconnect\n");
2248 stuffcmd(self, strcat("\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " \"connect ", redirection_target, "\"\n"));
2252 print("Redirecting: ", ftos(clients_found), " clients left.\n");
2254 if(time > redirection_timeout || clients_found == 0)
2255 localcmd("\nwait; wait; wait; quit\n");
2260 void TargetMusic_RestoreGame();
2263 // Loaded from a save game
2264 // some things then break, so let's work around them...
2266 // Progs DB (capture records)
2267 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
2271 MapInfo_Enumerate();
2272 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
2275 TargetMusic_RestoreGame();
2282 if(world_initialized > 0)
2284 world_initialized = 0;
2285 print("Saving persistent data...\n");
2288 // playerstats with unfinished match
2289 PlayerStats_GameReport(false);
2291 if(!cheatcount_total)
2293 if(autocvar_sv_db_saveasdump)
2294 db_dump(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2296 db_save(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2298 if(autocvar_developer)
2300 if(autocvar_sv_db_saveasdump)
2301 db_dump(TemporaryDB, "server-temp.db");
2303 db_save(TemporaryDB, "server-temp.db");
2305 CheatShutdown(); // must be after cheatcount check
2306 db_close(ServerProgsDB);
2307 db_close(TemporaryDB);
2309 // tell the bot system the game is ending now
2312 WeaponStats_Shutdown();
2315 else if(world_initialized == 0)
2317 print("NOTE: crashed before even initializing the world, not saving persistent data\n");