2 void PingPLReport_Think()
7 delta = 3 / maxclients;
8 if(delta < sys_frametime)
10 self.nextthink = time + delta;
12 e = edict_num(self.cnt + 1);
13 if(clienttype(e) == CLIENTTYPE_REAL)
15 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
16 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
17 WriteByte(MSG_BROADCAST, self.cnt);
18 WriteShort(MSG_BROADCAST, max(1, e.ping));
19 WriteByte(MSG_BROADCAST, ceil(e.ping_packetloss * 255));
20 WriteByte(MSG_BROADCAST, ceil(e.ping_movementloss * 255));
24 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
25 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
26 WriteByte(MSG_BROADCAST, self.cnt);
27 WriteShort(MSG_BROADCAST, 0);
28 WriteByte(MSG_BROADCAST, 0);
29 WriteByte(MSG_BROADCAST, 0);
31 self.cnt = mod(self.cnt + 1, maxclients);
33 void PingPLReport_Spawn()
35 pingplreport = spawn();
36 pingplreport.classname = "pingplreport";
37 pingplreport.think = PingPLReport_Think;
38 pingplreport.nextthink = time;
41 float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
42 string redirection_target;
43 float world_initialized;
49 float() DoNextMapOverride;
51 void SetDefaultAlpha()
53 if(autocvar_g_running_guns)
55 default_player_alpha = -1;
56 default_weapon_alpha = +1;
60 default_player_alpha = autocvar_g_balance_cloaked_alpha;
61 default_weapon_alpha = default_player_alpha;
65 default_player_alpha = autocvar_g_player_alpha;
66 if(default_player_alpha == 0)
67 default_player_alpha = 1;
68 default_weapon_alpha = default_player_alpha;
72 void fteqcc_testbugs()
76 if(!autocvar_developer_fteqccbugs)
79 dprint("*** fteqcc test: checking for bugs...\n");
83 if(sqrt(a) - sqrt(b - a) == 0)
84 dprint("*** fteqcc test: found same-function-twice bug\n");
86 dprint("*** fteqcc test: same-function-twice bug got FINALLY FIXED! HOORAY!\n");
90 world.enemy.cnt += 10;
91 if(world.cnt > 0.2 || world.cnt < -0.2) // don't error out if it's just roundoff errors
92 dprint("*** fteqcc test: found += bug\n");
94 dprint("*** fteqcc test: += bug got FINALLY FIXED! HOORAY!\n");
99 * Takes care of pausing and unpausing the game.
100 * Centerprints the information about an upcoming or active timeout to all active
101 * players. Also plays reminder sounds.
103 void timeoutHandler_Think() {
105 if (timeoutStatus == 1) {
106 if (remainingLeadTime > 0) {
107 //centerprint the information to every player
108 FOR_EACH_REALCLIENT(plr) {
109 if(plr.classname == "player") {
110 Send_CSQC_Centerprint_Generic(plr, CPID_TIMEOUT_COUNTDOWN, "Timeout begins in %d seconds!", 1, remainingLeadTime);
113 remainingLeadTime -= 1;
114 //think again in 1 second:
115 self.nextthink = time + 1;
118 //now pause the game:
120 //reset all the flood variables
121 FOR_EACH_CLIENT(plr) {
122 plr.nickspamcount = plr.nickspamtime = plr.floodcontrol_chat = plr.floodcontrol_chatteam = plr.floodcontrol_chattell = plr.floodcontrol_voice = plr.floodcontrol_voiceteam = 0;
124 cvar_set("slowmo", ftos(TIMEOUT_SLOWMO_VALUE));
125 //copy .v_angle to .lastV_angle for every player in order to fix their view during pause (see PlayerPreThink)
126 FOR_EACH_REALPLAYER(plr) {
127 plr.lastV_angle = plr.v_angle;
129 self.nextthink = time;
132 else if (timeoutStatus == 2) {
133 if (remainingTimeoutTime > 0) {
134 FOR_EACH_REALCLIENT(plr) {
135 if(plr.classname == "player") {
136 Send_CSQC_Centerprint_Generic(plr, CPID_TIMEOUT_COUNTDOWN, "Timeout ends in %d seconds!", 1, remainingTimeoutTime);
139 if(remainingTimeoutTime == autocvar_sv_timeout_resumetime) { //play a warning sound when only <sv_timeout_resumetime> seconds are left
140 Announce("prepareforbattle");
142 remainingTimeoutTime -= 1;
143 self.nextthink = time + TIMEOUT_SLOWMO_VALUE;
146 //unpause the game again
147 remainingTimeoutTime = timeoutStatus = 0;
148 cvar_set("slowmo", ftos(orig_slowmo));
149 //and unlock the fixed view again once there is no timeout active anymore
150 FOR_EACH_REALPLAYER(plr) {
151 plr.fixangle = FALSE;
153 //get rid of the countdown message
154 FOR_EACH_REALCLIENT(plr) {
155 if(plr.classname == "player") {
156 Send_CSQC_Centerprint_Generic_Expire(plr, CPID_TIMEOUT_COUNTDOWN);
164 else if (timeoutStatus == 0) { //if a player called the resumegame command (which set timeoutStatus to 0 already)
165 FOR_EACH_REALCLIENT(plr) {
166 if(plr.classname == "player") {
167 Send_CSQC_Centerprint_Generic_Expire(plr, CPID_TIMEOUT_COUNTDOWN);
178 if(autocvar__sv_init)
180 // cvar_set("_sv_init", "0");
181 // we do NOT set this to 0 any more, so someone "accidentally" changing
182 // to this "init" map on a dedicated server will cause no permanent
184 if(autocvar_g_maplist_shuffle)
186 n = tokenizebyseparator(autocvar_g_maplist, " ");
187 cvar_set("g_maplist_index", ftos(n - 1)); // jump to map 0 in GotoNextMap
190 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
192 if(!DoNextMapOverride())
200 self.nextthink = time;
204 self.nextthink = time + 1;
205 print("Waiting for _sv_init being set to 1 by initialization scripts...\n");
209 void cvar_changes_init()
213 float n, i, adding, pureadding;
216 strunzone(cvar_changes);
217 cvar_changes = string_null;
219 strunzone(cvar_purechanges);
220 cvar_purechanges = string_null;
221 cvar_purechanges_count = 0;
224 buf_cvarlist(h, "", "_"); // exclude all _ cvars as they are temporary
230 for(i = 0; i < n; ++i)
232 k = bufstr_get(h, i);
234 #define BADPREFIX(p) if(substring(k, 0, strlen(p)) == p) continue
235 #define BADPRESUFFIX(p,s) if(substring(k, 0, strlen(p)) == p && substring(k, -strlen(s), -1) == s) continue
236 #define BADCVAR(p) if(k == p) continue
238 // general excludes and namespaces for server admin used cvars
239 BADPREFIX("help_"); // PN's server has this listed as changed, let's not rat him out for THAT
243 BADPREFIX("cvar_check_");
245 BADCVAR("g_configversion");
246 BADCVAR("g_maplist_index");
247 BADCVAR("halflifebsp");
248 BADPREFIX("sv_world");
254 BADPREFIX("scoreboard_");
255 BADPREFIX("g_campaign");
256 BADPREFIX("g_waypointsprite_");
262 BADPREFIX("net_slist_");
268 BADPREFIX("sensitivity");
269 BADPREFIX("userbind");
272 BADPREFIX("crosshair");
273 BADCVAR("mod_q3bsp_lightmapmergepower");
274 BADCVAR("mod_q3bsp_nolightmaps");
276 BADCVAR("mastervolume");
278 BADCVAR("bgmvolume");
281 BADCVAR("developer");
282 BADCVAR("log_dest_udp");
284 BADCVAR("net_address");
285 BADCVAR("net_address_ipv6");
287 BADCVAR("savedgamecfg");
288 BADCVAR("serverconfig");
289 BADCVAR("sv_autoscreenshot");
290 BADCVAR("sv_heartbeatperiod");
291 BADCVAR("sv_vote_master_password");
292 BADCVAR("sys_colortranslation");
293 BADCVAR("sys_specialcharactertranslation");
294 BADCVAR("timeformat");
295 BADCVAR("timestamps");
296 BADPREFIX("developer_");
298 BADPREFIX("g_banned_list");
299 BADPREFIX("g_chat_flood_");
300 BADPREFIX("g_playerstats_");
301 BADPREFIX("g_voice_flood_");
303 BADPREFIX("settemp_");
304 BADPREFIX("sv_allowdownloads_");
305 BADPREFIX("sv_autodemo");
306 BADPREFIX("sv_curl_");
307 BADPREFIX("sv_eventlog");
308 BADPREFIX("sv_logscores_");
309 BADPREFIX("sv_master");
310 BADPREFIX("sv_weaponstats_");
311 BADPREFIX("sv_waypointsprite_");
312 BADCVAR("rescan_pending");
314 // these can contain player IDs, so better hide
315 BADPREFIX("g_forced_team_");
318 BADCVAR("fraglimit");
320 BADCVAR("g_assault");
325 BADCVAR("g_domination");
326 BADCVAR("g_domination_default_teams");
327 BADCVAR("g_freezetag");
328 BADCVAR("g_keepaway");
329 BADCVAR("g_keyhunt");
330 BADCVAR("g_keyhunt_teams");
331 BADCVAR("g_keyhunt_teams");
333 BADCVAR("g_nexball");
334 BADCVAR("g_onslaught");
336 BADCVAR("g_race_qualifying_timelimit");
337 BADCVAR("g_runematch");
339 BADCVAR("g_tdm_teams");
340 BADCVAR("leadlimit");
343 BADCVAR("timelimit");
347 BADCVAR("g_maplist");
348 BADCVAR("g_maplist_mostrecent");
352 d = cvar_defstring(k);
358 cvar_changes = strcat(cvar_changes, k, " \"", v, "\" // \"", d, "\"\n");
359 if(strlen(cvar_changes) > 16384)
361 cvar_changes = "// too many settings have been changed to show them here\n";
366 // now check if the changes are actually gameplay relevant
368 // does nothing visible
369 BADCVAR("captureleadlimit_override");
370 BADCVAR("g_arena_point_leadlimit");
371 BADCVAR("g_balance_kill_delay");
372 BADCVAR("g_ca_point_leadlimit");
373 BADCVAR("g_ctf_captimerecord_always");
374 BADCVAR("g_ctf_capture_leadlimit");
375 BADCVAR("g_ctf_flag_capture_effects");
376 BADCVAR("g_ctf_flag_glowtrails");
377 BADCVAR("g_ctf_flag_pickup_effects");
378 BADCVAR("g_domination_point_leadlimit");
379 BADCVAR("g_forced_respawn");
380 BADCVAR("g_keyhunt_point_leadlimit");
381 BADCVAR("g_nexball_goalleadlimit");
382 BADCVAR("g_runematch_point_leadlimit");
383 BADCVAR("leadlimit_and_fraglimit");
384 BADCVAR("leadlimit_override");
386 BADCVAR("sv_allow_fullbright");
387 BADCVAR("sv_checkforpacketsduringsleep");
388 BADCVAR("sv_timeout");
389 BADCVAR("welcome_message_time");
390 BADPREFIX("crypto_");
391 BADPREFIX("g_chat_");
392 BADPREFIX("g_ctf_captimerecord_");
393 BADPREFIX("g_maplist_votable_");
397 BADPREFIX("sv_cullentities_");
398 BADPREFIX("sv_fraginfo_");
399 BADPREFIX("sv_maxidle_");
400 BADPREFIX("sv_vote_");
401 BADPREFIX("timelimit_");
402 BADCVAR("gameversion");
403 BADPREFIX("gameversion_");
404 BADCVAR("sv_namechangetimer");
406 // allowed changes to server admins (please sync this to server.cfg)
410 // :%s,//\([^ ]*\).*,BADCVAR("\1");,
412 // yes, this does contain some redundant stuff, don't really care
413 BADCVAR("bot_number");
414 BADCVAR("bot_prefix");
415 BADCVAR("bot_suffix");
416 BADCVAR("bot_config_file");
417 BADCVAR("capturelimit_override");
418 BADCVAR("fraglimit_override");
420 BADCVAR("g_antilag");
421 BADCVAR("g_balance_teams");
422 BADCVAR("g_balance_teams_force");
423 BADCVAR("g_ban_sync_trusted_servers");
424 BADCVAR("g_ban_sync_uri");
425 BADCVAR("g_ctf_capture_limit");
426 BADCVAR("g_ctf_ignore_frags");
427 BADCVAR("g_ctf_win_mode");
428 BADCVAR("g_domination_point_limit");
429 BADCVAR("g_friendlyfire");
430 BADCVAR("g_fullbrightitems");
431 BADCVAR("g_fullbrightplayers");
432 BADCVAR("g_keyhunt_point_limit");
433 BADCVAR("g_keyhunt_teams_override");
434 BADCVAR("g_lms_lives_override");
435 BADCVAR("g_maplist");
436 BADCVAR("g_maplist_check_waypoints");
437 BADCVAR("g_maplist_mostrecent_count");
438 BADCVAR("g_maplist_shuffle");
439 BADCVAR("g_maplist_votable");
440 BADCVAR("g_maplist_votable_abstain");
441 BADCVAR("g_maplist_votable_nodetail");
442 BADCVAR("g_maplist_votable_suggestions");
443 BADCVAR("g_maxplayers");
444 BADCVAR("g_minstagib");
445 BADCVAR("g_mirrordamage");
446 BADCVAR("g_nexball_goallimit");
447 BADCVAR("g_runematch_point_limit");
448 BADCVAR("g_start_delay");
450 BADCVAR("g_weapon_stay"); BADPRESUFFIX("g_", "_weapon_stay");
453 BADCVAR("maxplayers");
454 BADCVAR("minplayers");
455 BADCVAR("net_address");
457 BADCVAR("rcon_password");
458 BADCVAR("rcon_restricted_commands");
459 BADCVAR("rcon_restricted_password");
461 BADCVAR("sv_adminnick");
462 BADCVAR("sv_autoscreenshot");
463 BADCVAR("sv_curl_defaulturl");
464 BADCVAR("sv_defaultcharacter");
465 BADCVAR("sv_defaultplayercolors");
466 BADCVAR("sv_defaultplayermodel");
467 BADCVAR("sv_defaultplayerskin");
468 BADCVAR("sv_maxidle");
469 BADCVAR("sv_maxrate");
471 BADCVAR("sv_public");
472 BADCVAR("sv_ready_restart");
473 BADCVAR("sv_status_privacy");
474 BADCVAR("sv_vote_call");
475 BADCVAR("sv_vote_commands");
476 BADCVAR("sv_vote_majority_factor");
477 BADCVAR("sv_vote_master");
478 BADCVAR("sv_vote_master_commands");
479 BADCVAR("sv_vote_master_password");
480 BADCVAR("sv_vote_simple_majority_factor");
481 BADCVAR("sys_ticrate");
482 BADCVAR("teamplay_mode");
483 BADCVAR("timelimit_override");
484 BADPREFIX("g_warmup_");
486 if(autocvar_g_minstagib)
488 BADCVAR("g_grappling_hook");
489 BADCVAR("g_jetpack");
496 cvar_purechanges = strcat(cvar_purechanges, k, " \"", v, "\" // \"", d, "\"\n");
497 if(strlen(cvar_purechanges) > 16384)
499 cvar_purechanges = "// too many settings have been changed to show them here\n";
503 ++cvar_purechanges_count;
504 // WARNING: this variable is used for the server list
505 // NEVER dare to skip this code!
506 // Hacks to intentionally appearing as "pure server" even though you DO have
507 // modified settings may be punished by removal from the server list.
508 // You can do to the variables cvar_changes and cvar_purechanges all you want,
512 if(cvar_changes == "")
513 cvar_changes = "// this server runs at default server settings\n";
515 cvar_changes = strcat("// this server runs at modified server settings:\n", cvar_changes);
516 cvar_changes = strzone(cvar_changes);
517 if(cvar_purechanges == "")
518 cvar_purechanges = "// this server runs at default gameplay settings\n";
520 cvar_purechanges = strcat("// this server runs at modified gameplay settings:\n", cvar_purechanges);
521 cvar_purechanges = strzone(cvar_purechanges);
524 void detect_maptype()
533 o_x += random() * (world.maxs_x - world.mins_x);
534 o_y += random() * (world.maxs_y - world.mins_y);
535 o_z += random() * (world.maxs_z - world.mins_z);
537 tracebox(o, PL_MIN, PL_MAX, o - '0 0 32768', MOVE_WORLDONLY, world);
538 if(trace_fraction == 1)
543 for(i = 0; i < 64; i += 4)
545 tracebox(o, '-1 -1 -1' * i, '1 1 1' * i, o - '0 0 32768', MOVE_WORLDONLY, world);
546 if(trace_fraction == 1)
548 print(ftos(i), " -> ", vtos(trace_endpos), "\n");
557 float RandomSeed_Send(entity to, float sf)
559 WriteByte(MSG_ENTITY, ENT_CLIENT_RANDOMSEED);
560 WriteShort(MSG_ENTITY, self.cnt);
563 void RandomSeed_Think()
565 self.cnt = bound(0, floor(random() * 65536), 65535);
566 self.nextthink = time + 5;
570 void RandomSeed_Spawn()
572 randomseed = spawn();
573 randomseed.think = RandomSeed_Think;
574 Net_LinkEntity(randomseed, FALSE, 0, RandomSeed_Send);
579 self.think(); // sets random seed and nextthink
583 void spawnfunc___init_dedicated_server(void)
585 // handler for _init/_init map (only for dedicated server initialization)
587 world_initialized = -1; // don't complain
589 cvar_string = cvar_string_normal;
590 cvar_set = cvar_set_normal;
592 remove = remove_unsafely;
596 e.think = GotoFirstMap;
597 e.nextthink = time; // this is usually 1 at this point
600 e.classname = "info_player_deathmatch"; // safeguard against player joining
602 self.classname = "worldspawn"; // safeguard against various stuff ;)
605 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
608 void Map_MarkAsRecent(string m);
609 float world_already_spawned;
610 void RegisterWeapons();
612 void ClientInit_Spawn();
613 void WeaponStats_Init();
614 void WeaponStats_Shutdown();
615 void spawnfunc_worldspawn (void)
617 float fd, l, i, j, n;
621 cvar_string = cvar_string_normal;
622 cvar_set = cvar_set_normal;
624 if(world_already_spawned)
625 error("world already spawned - you may have EXACTLY ONE worldspawn!");
626 world_already_spawned = TRUE;
628 remove = remove_safely; // during spawning, watch what you remove!
630 check_unacceptable_compiler_bugs();
632 cvar_changes_init(); // do this very early now so it REALLY matches the server config
634 compressShortVector_init();
636 allowed_to_spawn = TRUE;
639 head = nextent(world);
644 head = nextent(head);
647 // needs to be done so early as they would still spawn
650 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
652 TemporaryDB = db_create();
657 // 1 FLICKER (first variety)
658 lightstyle(1, "mmnmmommommnonmmonqnmmo");
660 // 2 SLOW STRONG PULSE
661 lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
663 // 3 CANDLE (first variety)
664 lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
667 lightstyle(4, "mamamamamama");
670 lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
672 // 6 FLICKER (second variety)
673 lightstyle(6, "nmonqnmomnmomomno");
675 // 7 CANDLE (second variety)
676 lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
678 // 8 CANDLE (third variety)
679 lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
681 // 9 SLOW STROBE (fourth variety)
682 lightstyle(9, "aaaaaaaazzzzzzzz");
684 // 10 FLUORESCENT FLICKER
685 lightstyle(10, "mmamammmmammamamaaamammma");
687 // 11 SLOW PULSE NOT FADE TO BLACK
688 lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
690 // styles 32-62 are assigned by the spawnfunc_light program for switchable lights
695 if(autocvar_g_campaign)
698 Map_MarkAsRecent(mapname);
700 precache_model ("null"); // we need this one before InitGameplayMode
708 bot_waypoints_for_items = autocvar_g_waypoints_for_items;
709 if(bot_waypoints_for_items == 1)
710 if(self.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
711 bot_waypoints_for_items = 0;
715 WaypointSprite_Init();
720 GameLogInit(); // prepare everything
722 // changing the logic generating it is okay. But:
723 // it HAS to stay <= 64 chars
724 // character set: ASCII 33-126 without the following characters: : ; ' " \ $
725 if(autocvar_sv_eventlog)
727 s = sprintf("%d.%s.%06d", ftos(autocvar_sv_eventlog_files_counter), strftime(FALSE, "%s"), floor(random() * 1000000));
728 matchid = strzone(s);
730 GameLogEcho(strcat(":gamestart:", GetGametype(), "_", GetMapname(), ":", s));
731 s = ":gameinfo:mutators:LIST";
734 MUTATOR_CALLHOOK(BuildMutatorsString);
737 // simple, probably not good in the mutator system
738 if(autocvar_g_grappling_hook)
739 s = strcat(s, ":grappling_hook");
741 // initialiation stuff, not good in the mutator system
742 if(!autocvar_g_use_ammunition)
743 s = strcat(s, ":no_use_ammunition");
745 // initialiation stuff, not good in the mutator system
746 if(!autocvar_g_pickup_items)
747 s = strcat(s, ":no_pickup_items");
749 // initialiation stuff, not good in the mutator system
750 if(autocvar_g_weaponarena != "0")
751 s = strcat(s, ":", autocvar_g_weaponarena, " arena");
753 // TODO to mutator system
754 if(autocvar_g_norecoil)
755 s = strcat(s, ":norecoil");
757 // TODO to mutator system
758 if(autocvar_g_midair)
759 s = strcat(s, ":midair");
761 // TODO to mutator system
762 if(autocvar_g_minstagib)
763 s = strcat(s, ":minstagib");
766 GameLogEcho(":gameinfo:end");
769 matchid = strzone(ftos(random()));
771 cvar_set("nextmap", "");
775 if(autocvar_g_campaign)
783 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
785 if(whichpack(strcat("maps/", mapname, ".cfg")) != "")
787 fd = fopen(strcat("maps/", mapname, ".cfg"), FILE_READ);
790 while((s = fgets(fd)))
792 l = tokenize_console(s);
797 print("Found ^1UNSUPPORTED^7 cd loop command in .cfg file; put this line in mapinfo instead:\n");
798 print(" cdtrack ", argv(2), "\n");
800 else if(argv(0) == "fog")
802 print("Found ^1UNSUPPORTED^7 fog command in .cfg file; put this line in worldspawn in the .map/.bsp/.ent file instead:\n");
803 print(" \"fog\" \"", s, "\"\n");
805 else if(argv(0) == "set")
807 print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
808 print(" clientsettemp_for_type all ", argv(1), " ", argv(2), "\n");
810 else if(argv(0) != "//")
812 print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
813 print(" clientsettemp_for_type all ", argv(0), " ", argv(1), "\n");
822 addstat(STAT_WEAPONS, AS_INT, weapons);
823 addstat(STAT_SWITCHWEAPON, AS_INT, switchweapon);
824 addstat(STAT_SWITCHINGWEAPON, AS_INT, switchingweapon);
825 addstat(STAT_GAMESTARTTIME, AS_FLOAT, stat_game_starttime);
826 addstat(STAT_ALLOW_OLDNEXBEAM, AS_INT, stat_allow_oldnexbeam);
829 addstat(STAT_STRENGTH_FINISHED, AS_FLOAT, strength_finished);
830 addstat(STAT_INVINCIBLE_FINISHED, AS_FLOAT, invincible_finished);
831 addstat(STAT_PRESSED_KEYS, AS_FLOAT, pressedkeys);
832 addstat(STAT_FUEL, AS_INT, ammo_fuel);
833 addstat(STAT_SHOTORG, AS_INT, stat_shotorg);
834 addstat(STAT_LEADLIMIT, AS_FLOAT, stat_leadlimit);
835 addstat(STAT_WEAPON_CLIPLOAD, AS_INT, clip_load);
836 addstat(STAT_WEAPON_CLIPSIZE, AS_INT, clip_size);
837 addstat(STAT_LAST_PICKUP, AS_FLOAT, last_pickup);
838 addstat(STAT_HIT_TIME, AS_FLOAT, hit_time);
839 addstat(STAT_TYPEHIT_TIME, AS_FLOAT, typehit_time);
840 addstat(STAT_LAYED_MINES, AS_INT, minelayer_mines);
842 addstat(STAT_NEX_CHARGE, AS_FLOAT, nex_charge);
843 addstat(STAT_NEX_CHARGEPOOL, AS_FLOAT, nex_chargepool_ammo);
845 addstat(STAT_HAGAR_LOAD, AS_INT, hagar_load);
847 addstat(STAT_ARMOR_LARGE_TIME, AS_FLOAT, item_armor_large_time);
848 addstat(STAT_HEALTH_MEGA_TIME, AS_FLOAT, item_health_mega_time);
849 addstat(STAT_STRENGTH_TIME, AS_FLOAT, item_strength_time);
850 addstat(STAT_INVISIBLE_TIME, AS_FLOAT, item_invisible_time);
851 addstat(STAT_EXTRALIFE_TIME, AS_FLOAT, item_extralife_time);
852 addstat(STAT_SPEED_TIME, AS_FLOAT, item_speed_time);
853 addstat(STAT_SHIELD_TIME, AS_FLOAT, item_shield_time);
854 addstat(STAT_FUELREGEN_TIME, AS_FLOAT, item_fuelregen_time);
855 addstat(STAT_JETPACK_TIME, AS_FLOAT, item_jetpack_time);
857 if(g_ca || g_freezetag)
859 addstat(STAT_REDALIVE, AS_INT, redalive_stat);
860 addstat(STAT_BLUEALIVE, AS_INT, bluealive_stat);
861 addstat(STAT_YELLOWALIVE, AS_INT, yellowalive_stat);
862 addstat(STAT_PINKALIVE, AS_INT, pinkalive_stat);
866 addstat(STAT_FROZEN, AS_INT, freezetag_frozen);
867 addstat(STAT_REVIVE_PROGRESS, AS_FLOAT, freezetag_revive_progress);
870 // g_movementspeed hack
871 addstat(STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW, AS_FLOAT, stat_sv_airspeedlimit_nonqw);
872 addstat(STAT_MOVEVARS_MAXSPEED, AS_FLOAT, stat_sv_maxspeed);
873 addstat(STAT_MOVEVARS_AIRACCEL_QW, AS_FLOAT, stat_sv_airaccel_qw);
874 addstat(STAT_MOVEVARS_AIRSTRAFEACCEL_QW, AS_FLOAT, stat_sv_airstrafeaccel_qw);
877 addstat(STAT_SECRETS_TOTAL, AS_FLOAT, stat_secrets_total);
878 addstat(STAT_SECRETS_FOUND, AS_FLOAT, stat_secrets_found);
880 next_pingtime = time + 5;
884 lsmaps_reply = "^7Maps available: ";
885 lsnewmaps_reply = "^7Maps without a record set: ";
886 for(i = 0, j = 0; i < MapInfo_count; ++i)
888 if(MapInfo_Get_ByID(i))
889 if not(MapInfo_Map_flags & (MAPINFO_FLAG_HIDDEN | MAPINFO_FLAG_FORBIDDEN))
896 lsmaps_reply = strcat(lsmaps_reply, col, MapInfo_Map_bspname, " ");
897 if(g_race && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, RACE_RECORD, "time"))))
898 lsnewmaps_reply = strcat(lsnewmaps_reply, col, MapInfo_Map_bspname, " ");
899 else if(g_cts && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, CTS_RECORD, "time"))))
900 lsnewmaps_reply = strcat(lsnewmaps_reply, col, MapInfo_Map_bspname, " ");
903 lsmaps_reply = strzone(strcat(lsmaps_reply, "\n"));
904 if (!g_race && !g_cts)
905 lsnewmaps_reply = "Need to be playing race or CTS for lsnewmaps to work.";
906 lsnewmaps_reply = strzone(strcat(lsnewmaps_reply, "\n"));
908 maplist_reply = "^7Maps in list: ";
909 n = tokenize_console(autocvar_g_maplist);
910 for(i = 0, j = 0; i < n; ++i)
912 if(MapInfo_CheckMap(argv(i)))
918 maplist_reply = strcat(maplist_reply, col, argv(i), " ");
922 maplist_reply = strzone(strcat(maplist_reply, "\n"));
923 MapInfo_ClearTemps();
925 for(i = 0; i < 10; ++i)
927 records_reply[i] = strzone(getrecords(i));
930 ladder_reply = strzone(getladder());
932 rankings_reply = strzone(getrankings());
936 PingPLReport_Spawn();
940 localcmd("\n_sv_hook_gamestart ", GetGametype(), "\n");
942 // fill sv_curl_serverpackages from .serverpackage files
943 if(autocvar_sv_curl_serverpackages_auto)
946 n = tokenize_console(cvar_string("sv_curl_serverpackages"));
947 for(i = 0; i < n; ++i)
948 if(substring(argv(i), -14, -1) != ".serverpackage")
949 s = strcat(s, " ", argv(i));
950 fd = search_begin("*.serverpackage", TRUE, FALSE);
953 j = search_getsize(fd);
954 for(i = 0; i < j; ++i)
955 s = strcat(s, " ", search_getfilename(fd, i));
958 cvar_set("sv_curl_serverpackages", substring(s, 1, -1));
963 world_initialized = 1;
966 void spawnfunc_light (void)
968 //makestatic (self); // Who the f___ did that?
974 return GametypeNameFromType(game);
977 string getmapname_stored;
983 float Map_Count, Map_Current;
984 string Map_Current_Name;
986 // NOTE: this now expects the map list to be already tokenized and the count in Map_Count
987 float GetMaplistPosition()
993 idx = autocvar_g_maplist_index;
1000 for(pos = 0; pos < Map_Count; ++pos)
1001 if(map == argv(pos))
1004 // resume normal maplist rotation if current map is not in g_maplist
1008 float MapHasRightSize(string map)
1011 if(currentbots || autocvar_bot_number || player_count < autocvar_minplayers)
1012 if(autocvar_g_maplist_check_waypoints)
1014 dprint("checkwp "); dprint(map);
1015 if(!fexists(strcat("maps/", map, ".waypoints")))
1017 dprint(": no waypoints\n");
1020 dprint(": has waypoints\n");
1023 // open map size restriction file
1024 dprint("opensize "); dprint(map);
1025 fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
1028 float mapmin, mapmax;
1030 mapmin = stof(fgets(fh));
1031 mapmax = stof(fgets(fh));
1033 if(player_count < mapmin)
1035 dprint("not enough\n");
1038 if(player_count > mapmax)
1040 dprint("too many\n");
1043 dprint("right size\n");
1046 dprint(": not found\n");
1050 string Map_Filename(float position)
1052 return strcat("maps/", argv(position), ".bsp");
1055 string strwords(string s, float w)
1058 for(endpos = 0; w && endpos >= 0; --w)
1059 endpos = strstrofs(s, " ", endpos + 1);
1063 return substring(s, 0, endpos);
1066 float strhasword(string s, string w)
1068 return strstrofs(strcat(" ", s, " "), strcat(" ", w, " "), 0) >= 0;
1071 void Map_MarkAsRecent(string m)
1073 cvar_set("g_maplist_mostrecent", strwords(strcat(m, " ", autocvar_g_maplist_mostrecent), max(0, autocvar_g_maplist_mostrecent_count)));
1076 float Map_IsRecent(string m)
1078 return strhasword(autocvar_g_maplist_mostrecent, m);
1081 float Map_Check(float position, float pass)
1085 map_next = argv(position);
1088 if(Map_IsRecent(map_next))
1091 filename = Map_Filename(position);
1092 if(MapInfo_CheckMap(map_next))
1096 if(MapHasRightSize(map_next))
1101 dprint( "Couldn't select '", filename, "'..\n" );
1106 void Map_Goto_SetStr(string nextmapname)
1108 if(getmapname_stored != "")
1109 strunzone(getmapname_stored);
1110 if(nextmapname == "")
1111 getmapname_stored = "";
1113 getmapname_stored = strzone(nextmapname);
1116 void Map_Goto_SetFloat(float position)
1118 cvar_set("g_maplist_index", ftos(position));
1119 Map_Goto_SetStr(argv(position));
1124 // settings persist, except...
1125 localcmd("\nsettemp_restore\n");
1131 MapInfo_LoadMap(getmapname_stored);
1134 // return codes of map selectors:
1135 // -1 = temporary failure (that is, try some method that is guaranteed to succeed)
1136 // -2 = permanent failure
1137 float() MaplistMethod_Iterate = // usual method
1141 for(pass = 1; pass <= 2; ++pass)
1143 for(i = 1; i < Map_Count; ++i)
1146 mapindex = mod(i + Map_Current, Map_Count);
1147 if(Map_Check(mapindex, pass))
1154 float() MaplistMethod_Repeat = // fallback method
1156 if(Map_Check(Map_Current, 2))
1161 float() MaplistMethod_Random = // random map selection
1167 for(i = 0; i <= imax; ++i)
1170 mapindex = mod(Map_Current + floor(random() * (Map_Count - 1) + 1), Map_Count); // any OTHER map
1171 if(Map_Check(mapindex, 1))
1177 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
1178 // the exponent sets a bias on the map selection:
1179 // the higher the exponent, the less likely "shortly repeated" same maps are
1181 float i, j, imax, insertpos;
1185 for(i = 0; i <= imax; ++i)
1189 // now reinsert this at another position
1190 insertpos = pow(random(), 1 / exponent); // ]0, 1]
1191 insertpos = insertpos * (Map_Count - 1); // ]0, Map_Count - 1]
1192 insertpos = ceil(insertpos) + 1; // {2, 3, 4, ..., Map_Count}
1193 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
1195 // insert the current map there
1197 for(j = 1; j < insertpos; ++j) // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
1198 newlist = strcat(newlist, " ", argv(j));
1199 newlist = strcat(newlist, " ", argv(0)); // now insert the just selected map
1200 for(j = insertpos; j < Map_Count; ++j) // i == Map_Count: no loop, has just been inserted as last
1201 newlist = strcat(newlist, " ", argv(j));
1202 newlist = substring(newlist, 1, strlen(newlist) - 1);
1203 cvar_set("g_maplist", newlist);
1204 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1206 // NOTE: the selected map has just been inserted at (insertpos-1)th position
1207 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
1208 if(Map_Check(Map_Current, 1))
1216 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1219 bprint( "Maplist is empty! Resetting it to default map list.\n" );
1220 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
1221 if(autocvar_g_maplist_shuffle)
1223 localcmd("\nmenu_cmd sync\n");
1224 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1227 error("empty maplist, cannot select a new map");
1228 Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
1230 if(Map_Current_Name)
1231 strunzone(Map_Current_Name);
1232 Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
1233 // this may or may not be correct, but who cares, in the worst case a map
1234 // isn't chosen in the first pass that should have been
1245 if(autocvar_g_maplist_shuffle > 0)
1246 nextMap = MaplistMethod_Shuffle(autocvar_g_maplist_shuffle + 1);
1249 if(autocvar_g_maplist_selectrandom)
1250 nextMap = MaplistMethod_Random();
1253 nextMap = MaplistMethod_Iterate();
1256 nextMap = MaplistMethod_Repeat();
1260 Map_Goto_SetFloat(nextMap);
1261 return getmapname_stored;
1267 float DoNextMapOverride()
1269 if(autocvar_g_campaign)
1271 CampaignPostIntermission();
1272 alreadychangedlevel = TRUE;
1275 if(autocvar_quit_when_empty)
1277 if(player_count <= currentbots)
1280 alreadychangedlevel = TRUE;
1284 if(autocvar_quit_and_redirect != "")
1286 redirection_target = strzone(autocvar_quit_and_redirect);
1287 alreadychangedlevel = TRUE;
1290 if (autocvar_samelevel) // if samelevel is set, stay on same level
1292 localcmd("restart\n");
1293 alreadychangedlevel = TRUE;
1296 if(autocvar_nextmap != "")
1297 if(MapInfo_CheckMap(autocvar_nextmap))
1299 Map_Goto_SetStr(autocvar_nextmap);
1301 alreadychangedlevel = TRUE;
1304 if(autocvar_lastlevel)
1307 localcmd("set lastlevel 0\ntogglemenu\n");
1308 alreadychangedlevel = TRUE;
1319 if (alreadychangedlevel)
1321 alreadychangedlevel = TRUE;
1327 for(allowReset = 1; allowReset >= 0; --allowReset)
1329 nextMap = GetNextMap();
1335 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
1336 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
1337 if(autocvar_g_maplist_shuffle)
1339 localcmd("\nmenu_cmd sync\n");
1343 error("Everything is broken - not even the default map list works. Please report this to the developers.");
1355 When the player presses attack or jump, change to the next level
1358 .float autoscreenshot;
1359 void() MapVote_Start;
1360 void() MapVote_Think;
1361 float mapvote_initialized;
1362 void IntermissionThink()
1364 FixIntermissionClient(self);
1366 if( (autocvar_sv_autoscreenshot || self.cvar_cl_autoscreenshot)
1367 && ((self.autoscreenshot > 0) && (time > self.autoscreenshot)) )
1369 self.autoscreenshot = -1;
1370 if(clienttype(self) == CLIENTTYPE_REAL)
1371 stuffcmd(self, "\nscreenshot\necho \"^5A screenshot has been taken at request of the server.\"\n");
1375 if (time < intermission_exittime)
1378 if(!mapvote_initialized)
1379 if (time < intermission_exittime + 10 && !(self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE))
1389 Returns the entity to view from
1393 entity FindIntermission()
1398 // look for info_intermission first
1399 spot = find (world, classname, "info_intermission");
1401 { // pick a random one
1405 spot = find (spot, classname, "info_intermission");
1407 spot = find (spot, classname, "info_intermission");
1413 // then look for the start position
1414 spot = find (world, classname, "info_player_start");
1418 // testinfo_player_start is only found in regioned levels
1419 spot = find (world, classname, "testplayerstart");
1423 // then look for the start position
1424 spot = find (world, classname, "info_player_deathmatch");
1428 //objerror ("FindIntermission: no spot");
1434 ===============================================================================
1438 ===============================================================================
1441 void DumpStats(float final)
1450 to_console = autocvar_sv_logscores_console;
1451 to_eventlog = autocvar_sv_eventlog;
1452 to_file = autocvar_sv_logscores_file;
1456 to_console = TRUE; // always print printstats replies
1457 to_eventlog = FALSE; // but never print them to the event log
1461 if(autocvar_sv_eventlog_console)
1462 to_console = FALSE; // otherwise we get the output twice
1468 s = strcat(s, GetGametype(), "_", GetMapname(), ":", ftos(rint(time)));
1476 file = fopen(autocvar_sv_logscores_filename, FILE_APPEND);
1480 fputs(file, strcat(s, "\n"));
1483 s = strcat(":labels:player:", GetPlayerScoreString(world, 0));
1489 fputs(file, strcat(s, "\n"));
1491 FOR_EACH_CLIENT(other)
1493 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && autocvar_sv_logscores_bots))
1495 s = strcat(":player:see-labels:", GetPlayerScoreString(other, 0), ":");
1496 s = strcat(s, ftos(rint(time - other.jointime)), ":");
1497 if(other.classname == "player" || g_arena || g_ca || g_lms)
1498 s = strcat(s, ftos(other.team), ":");
1500 s = strcat(s, "spectator:");
1503 print(s, other.netname, "\n");
1505 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname));
1507 fputs(file, strcat(s, other.netname, "\n"));
1513 s = strcat(":labels:teamscores:", GetTeamScoreString(0, 0));
1519 fputs(file, strcat(s, "\n"));
1521 for(i = 1; i < 16; ++i)
1523 s = strcat(":teamscores:see-labels:", GetTeamScoreString(i, 0));
1524 s = strcat(s, ":", ftos(i));
1530 fputs(file, strcat(s, "\n"));
1537 GameLogEcho(":end");
1540 fputs(file, ":end\n");
1545 void FixIntermissionClient(entity e)
1548 if(!e.autoscreenshot) // initial call
1550 e.autoscreenshot = time + 0.8; // used for autoscreenshot
1552 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
1553 e.solid = SOLID_NOT;
1554 e.movetype = MOVETYPE_NONE;
1555 e.takedamage = DAMAGE_NO;
1558 e.weaponentity.effects = EF_NODRAW;
1559 if (e.weaponentity.weaponentity)
1560 e.weaponentity.weaponentity.effects = EF_NODRAW;
1562 if(clienttype(e) == CLIENTTYPE_REAL)
1564 stuffcmd(e, "\nscr_printspeed 1000000\n");
1565 s = autocvar_sv_intermission_cdtrack;
1567 stuffcmd(e, strcat("\ncd loop ", s, "\n"));
1569 WriteByte(MSG_ONE, SVC_INTERMISSION);
1576 go to the next level for deathmatch
1577 only called if a time or frag limit has expired
1583 intermission_running = 1;
1585 // enforce a wait time before allowing changelevel
1586 if(player_count > 0)
1587 intermission_exittime = time + autocvar_sv_mapchange_delay;
1589 intermission_exittime = -1;
1592 WriteByte (MSG_ALL, SVC_CDTRACK);
1593 WriteByte (MSG_ALL, 3);
1594 WriteByte (MSG_ALL, 3);
1595 // done in FixIntermission
1598 //pos = FindIntermission ();
1606 PlayerStats_EndMatch(1);
1608 PlayerStats_AddGlobalInfo(e);
1609 PlayerStats_Shutdown();
1610 WeaponStats_Shutdown();
1612 if(autocvar_sv_eventlog)
1613 GameLogEcho(":gameover");
1617 FOR_EACH_PLAYER(other) {
1618 FixIntermissionClient(other);
1620 bprint(other.netname, " ^7wins.\n");
1623 if(autocvar_g_campaign)
1624 CampaignPreIntermission();
1626 localcmd("\nsv_hook_gameend\n");
1633 Exit deathmatch games upon conditions
1636 void CheckRules_Player()
1638 if (gameover) // someone else quit the game already
1641 if(self.deadflag == DEAD_NO)
1642 self.play_time += frametime;
1644 // fixme: don't check players; instead check spawnfunc_dom_team and spawnfunc_ctf_team entities
1645 // (div0: and that in CheckRules_World please)
1648 float checkrules_equality;
1649 float checkrules_suddendeathwarning;
1650 float checkrules_suddendeathend;
1651 float checkrules_overtimesadded; //how many overtimes have been already added
1653 float WINNING_NO = 0; // no winner, but time limits may terminate the game
1654 float WINNING_YES = 1; // winner found
1655 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
1656 float WINNING_STARTSUDDENDEATHOVERTIME = 3; // no winner, enter suddendeath overtime NOW
1658 float InitiateSuddenDeath()
1660 // Check first whether normal overtimes could be added before initiating suddendeath mode
1661 // - for this timelimit_overtime needs to be >0 of course
1662 // - also check the winning condition calculated in the previous frame and only add normal overtime
1663 // again, if at the point at which timelimit would be extended again, still no winner was found
1664 if ((checkrules_overtimesadded >= 0) && (checkrules_overtimesadded < autocvar_timelimit_overtimes) && autocvar_timelimit_overtime && !(g_race && !g_race_qualifying))
1666 return 1; // need to call InitiateOvertime later
1670 if(!checkrules_suddendeathend)
1672 checkrules_suddendeathend = time + 60 * autocvar_timelimit_suddendeath;
1673 if(g_race && !g_race_qualifying)
1674 race_StartCompleting();
1680 void InitiateOvertime() // ONLY call this if InitiateSuddenDeath returned true
1682 ++checkrules_overtimesadded;
1683 //add one more overtime by simply extending the timelimit
1685 tl = autocvar_timelimit;
1686 tl += autocvar_timelimit_overtime;
1687 cvar_set("timelimit", ftos(tl));
1688 string minutesPlural;
1689 if (autocvar_timelimit_overtime == 1)
1690 minutesPlural = " ^3minute";
1692 minutesPlural = " ^3minutes";
1696 "^3Now playing ^1OVERTIME^3!\n\n^3Added ^1",
1697 ftos(autocvar_timelimit_overtime),
1704 float GetWinningCode(float fraglimitreached, float equality)
1706 if(autocvar_g_campaign == 1)
1707 if(fraglimitreached)
1714 if(fraglimitreached)
1715 return WINNING_STARTSUDDENDEATHOVERTIME;
1717 return WINNING_NEVER;
1719 if(fraglimitreached)
1725 // set the .winning flag for exactly those players with a given field value
1726 void SetWinners(.float field, float value)
1729 FOR_EACH_PLAYER(head)
1730 head.winning = (head.field == value);
1733 // set the .winning flag for those players with a given field value
1734 void AddWinners(.float field, float value)
1737 FOR_EACH_PLAYER(head)
1738 if(head.field == value)
1742 // clear the .winning flags
1743 void ClearWinners(void)
1746 FOR_EACH_PLAYER(head)
1750 // Onslaught winning condition:
1751 // game terminates if only one team has a working generator (or none)
1752 float WinningCondition_Onslaught()
1755 float t1, t2, t3, t4;
1757 WinningConditionHelper(); // set worldstatus
1762 // first check if the game has ended
1763 t1 = t2 = t3 = t4 = 0;
1764 head = find(world, classname, "onslaught_generator");
1767 if (head.health > 0)
1769 if (head.team == COLOR_TEAM1) t1 = 1;
1770 if (head.team == COLOR_TEAM2) t2 = 1;
1771 if (head.team == COLOR_TEAM3) t3 = 1;
1772 if (head.team == COLOR_TEAM4) t4 = 1;
1774 head = find(head, classname, "onslaught_generator");
1776 if (t1 + t2 + t3 + t4 < 2)
1778 // game over, only one team remains (or none)
1780 if (t1) SetWinners(team, COLOR_TEAM1);
1781 if (t2) SetWinners(team, COLOR_TEAM2);
1782 if (t3) SetWinners(team, COLOR_TEAM3);
1783 if (t4) SetWinners(team, COLOR_TEAM4);
1784 dprint("Have a winner, ending game.\n");
1788 // Two or more teams remain
1792 float LMS_NewPlayerLives()
1795 fl = autocvar_fraglimit;
1799 // first player has left the game for dying too much? Nobody else can get in.
1800 if(lms_lowest_lives < 1)
1803 if(!autocvar_g_lms_join_anytime)
1804 if(lms_lowest_lives < fl - autocvar_g_lms_last_join)
1807 return bound(1, lms_lowest_lives, fl);
1810 // Assault winning condition: If the attackers triggered a round end (by fulfilling all objectives)
1811 // they win. Otherwise the defending team wins once the timelimit passes.
1812 void assault_new_round();
1813 float WinningCondition_Assault()
1817 WinningConditionHelper(); // set worldstatus
1819 status = WINNING_NO;
1820 // as the timelimit has not yet passed just assume the defending team will win
1821 if(assault_attacker_team == COLOR_TEAM1)
1823 SetWinners(team, COLOR_TEAM2);
1827 SetWinners(team, COLOR_TEAM1);
1831 ent = find(world, classname, "target_assault_roundend");
1834 if(ent.winning) // round end has been triggered by attacking team
1836 bprint("ASSAULT: round completed...\n");
1837 SetWinners(team, assault_attacker_team);
1839 TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 666 - TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 0));
1841 if(ent.cnt == 1 || autocvar_g_campaign) // this was the second round
1843 status = WINNING_YES;
1850 assault_new_round();
1859 // LMS winning condition: game terminates if and only if there's at most one
1860 // one player who's living lives. Top two scores being equal cancels the time
1862 float WinningCondition_LMS()
1869 have_player = FALSE;
1870 have_players = FALSE;
1871 l = LMS_NewPlayerLives();
1873 head = find(world, classname, "player");
1876 head2 = find(head, classname, "player");
1878 have_players = TRUE;
1882 // we have at least one player
1885 // two or more active players - continue with the game
1889 // exactly one player?
1892 SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1896 // game still running (that is, nobody got removed from the game by a frag yet)? then continue
1902 // and assign him his first place
1903 PlayerScore_Add(head, SP_LMS_RANK, 1);
1910 // nobody is playing at all...
1913 // wait for players...
1917 // SNAFU (maybe a draw game?)
1919 dprint("No players, ending game.\n");
1924 // When we get here, we have at least two players who are actually LIVING,
1925 // now check if the top two players have equal score.
1926 WinningConditionHelper();
1929 if(WinningConditionHelper_winner)
1930 WinningConditionHelper_winner.winning = TRUE;
1931 if(WinningConditionHelper_topscore == WinningConditionHelper_secondscore)
1932 return WINNING_NEVER;
1934 // Top two have different scores? Way to go for our beloved TIMELIMIT!
1938 void ShuffleMaplist()
1940 cvar_set("g_maplist", shufflewords(autocvar_g_maplist));
1944 float WinningCondition_Scores(float limit, float leadlimit)
1948 // TODO make everything use THIS winning condition (except LMS)
1949 WinningConditionHelper();
1953 team1_score = TeamScore_GetCompareValue(COLOR_TEAM1);
1954 team2_score = TeamScore_GetCompareValue(COLOR_TEAM2);
1955 team3_score = TeamScore_GetCompareValue(COLOR_TEAM3);
1956 team4_score = TeamScore_GetCompareValue(COLOR_TEAM4);
1960 if(WinningConditionHelper_winner)
1961 WinningConditionHelper_winner.winning = 1;
1962 if(WinningConditionHelper_winnerteam >= 0)
1963 SetWinners(team, WinningConditionHelper_winnerteam);
1965 if(WinningConditionHelper_lowerisbetter)
1967 WinningConditionHelper_topscore = -WinningConditionHelper_topscore;
1968 WinningConditionHelper_secondscore = -WinningConditionHelper_secondscore;
1972 if(WinningConditionHelper_zeroisworst)
1973 leadlimit = 0; // not supported in this mode
1975 if(g_dm || g_tdm || g_arena || g_ca || (g_race && !g_race_qualifying) || g_nexball)
1976 // these modes always score in increments of 1, thus this makes sense
1978 if(leaderfrags != WinningConditionHelper_topscore)
1980 leaderfrags = WinningConditionHelper_topscore;
1983 if (leaderfrags == limit - 1)
1984 Announce("1fragleft");
1985 else if (leaderfrags == limit - 2)
1986 Announce("2fragsleft");
1987 else if (leaderfrags == limit - 3)
1988 Announce("3fragsleft");
1992 limitreached = FALSE;
1994 if(WinningConditionHelper_topscore >= limit)
1995 limitreached = TRUE;
1998 float leadlimitreached;
1999 leadlimitreached = (WinningConditionHelper_topscore - WinningConditionHelper_secondscore >= leadlimit);
2000 if(autocvar_leadlimit_and_fraglimit)
2001 limitreached = (limitreached && leadlimitreached);
2003 limitreached = (limitreached || leadlimitreached);
2006 return GetWinningCode(
2007 WinningConditionHelper_topscore && limitreached,
2008 WinningConditionHelper_equality
2012 float WinningCondition_Race(float fraglimit)
2023 if(p.race_completed)
2028 wc = WinningCondition_Scores(fraglimit, 0);
2030 // ALWAYS initiate overtime, unless EVERYONE has finished the race!
2031 if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
2032 // do NOT support equality when the laps are all raced!
2033 return WINNING_STARTSUDDENDEATHOVERTIME;
2035 return WINNING_NEVER;
2039 void ReadyRestart();
2040 float WinningCondition_QualifyingThenRace(float limit)
2043 wc = WinningCondition_Scores(limit, 0);
2045 // NEVER initiate overtime
2046 if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
2054 float WinningCondition_RanOutOfSpawns()
2058 if(have_team_spawns <= 0)
2061 if(autocvar_g_spawn_useallspawns <= 0)
2064 if(!some_spawn_has_been_used)
2067 team1_score = team2_score = team3_score = team4_score = 0;
2069 FOR_EACH_PLAYER(head) if(head.deadflag == DEAD_NO)
2071 if(head.team == COLOR_TEAM1)
2073 else if(head.team == COLOR_TEAM2)
2075 else if(head.team == COLOR_TEAM3)
2077 else if(head.team == COLOR_TEAM4)
2081 for(head = world; (head = find(head, classname, "info_player_deathmatch")) != world; )
2083 if(head.team == COLOR_TEAM1)
2085 else if(head.team == COLOR_TEAM2)
2087 else if(head.team == COLOR_TEAM3)
2089 else if(head.team == COLOR_TEAM4)
2094 if(team1_score + team2_score + team3_score + team4_score == 0)
2096 checkrules_equality = TRUE;
2099 else if(team1_score + team2_score + team3_score + team4_score == 1)
2102 if(team1_score) t = COLOR_TEAM1;
2103 if(team2_score) t = COLOR_TEAM2;
2104 if(team3_score) t = COLOR_TEAM3;
2105 if(team4_score) t = COLOR_TEAM4;
2106 CheckAllowedTeams(world);
2107 for(i = 0; i < MAX_TEAMSCORE; ++i)
2109 if(t != COLOR_TEAM1) if(c1 >= 0) TeamScore_AddToTeam(COLOR_TEAM1, i, -1000);
2110 if(t != COLOR_TEAM2) if(c2 >= 0) TeamScore_AddToTeam(COLOR_TEAM2, i, -1000);
2111 if(t != COLOR_TEAM3) if(c3 >= 0) TeamScore_AddToTeam(COLOR_TEAM3, i, -1000);
2112 if(t != COLOR_TEAM4) if(c4 >= 0) TeamScore_AddToTeam(COLOR_TEAM4, i, -1000);
2115 AddWinners(team, t);
2126 Exit deathmatch games upon conditions
2129 void CheckRules_World()
2141 MapVote_Think should now do that part
2142 if (intermission_running)
2143 if (time >= intermission_exittime + 60)
2145 if(!DoNextMapOverride())
2151 if (gameover) // someone else quit the game already
2153 if(player_count == 0) // Nobody there? Then let's go to the next map
2155 // this will actually check the player count in the next frame
2156 // again, but this shouldn't hurt
2160 timelimit = autocvar_timelimit * 60;
2161 fraglimit = autocvar_fraglimit;
2162 leadlimit = autocvar_leadlimit;
2164 if(inWarmupStage || time <= game_starttime) // NOTE: this is <= to prevent problems in the very tic where the game starts
2167 timelimit = 0; // timelimit is not made for warmup
2169 fraglimit = 0; // no fraglimit for now
2170 leadlimit = 0; // no leadlimit for now
2174 timelimit = 0; // ONS has its own overtime rule
2178 timelimit += game_starttime;
2180 else if (timelimit < 0)
2190 if(checkrules_suddendeathend)
2192 if(!checkrules_suddendeathwarning)
2194 checkrules_suddendeathwarning = TRUE;
2195 if(g_race && !g_race_qualifying)
2196 bcenterprint("^3Everyone, finish your lap! The race is over!");
2198 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
2203 if (timelimit && time >= timelimit)
2205 if(g_race && (g_race_qualifying == 2) && timelimit > 0)
2208 float playerswithlaps;
2211 totalplayers = playerswithlaps = readyplayers = 0;
2212 FOR_EACH_PLAYER(head)
2215 if(PlayerScore_Add(head, SP_RACE_FASTEST, 0))
2221 // at least 2 of the players have completed a lap: start the RACE
2222 // otherwise, the players should end the qualifying on their own
2223 if(readyplayers || playerswithlaps >= 2)
2225 checkrules_suddendeathend = 0;
2226 ReadyRestart(); // go to race
2230 wantovertime |= InitiateSuddenDeath();
2233 wantovertime |= InitiateSuddenDeath();
2237 if (checkrules_suddendeathend && time >= checkrules_suddendeathend)
2243 float checkrules_status;
2244 checkrules_status = WinningCondition_RanOutOfSpawns();
2245 if(checkrules_status == WINNING_YES)
2247 bprint("Hey! Someone ran out of spawns!\n");
2249 else if(g_race && !g_race_qualifying && timelimit >= 0)
2251 checkrules_status = WinningCondition_Race(fraglimit);
2252 //print("WC_RACE yields ", ftos(checkrules_status), "\n");
2254 else if(g_race && g_race_qualifying == 2 && timelimit >= 0)
2256 checkrules_status = WinningCondition_QualifyingThenRace(fraglimit);
2257 //print("WC_QUALIFYING_THEN_RACE yields ", ftos(checkrules_status), "\n");
2261 checkrules_status = WinningCondition_Assault(); // TODO remove this?
2265 checkrules_status = WinningCondition_LMS();
2267 else if (g_onslaught)
2269 checkrules_status = WinningCondition_Onslaught(); // TODO remove this?
2273 checkrules_status = WinningCondition_Scores(fraglimit, leadlimit);
2274 //print("WC_SCORES yields ", ftos(checkrules_status), "\n");
2277 if(checkrules_status == WINNING_STARTSUDDENDEATHOVERTIME)
2279 checkrules_status = WINNING_NEVER;
2280 checkrules_overtimesadded = -1;
2281 wantovertime |= InitiateSuddenDeath();
2284 if(checkrules_status == WINNING_NEVER)
2285 // equality cases! Nobody wins if the overtime ends in a draw.
2290 if(checkrules_status == WINNING_NEVER)
2293 checkrules_status = WINNING_YES;
2296 if(checkrules_suddendeathend)
2297 if(checkrules_status != WINNING_NEVER || time >= checkrules_suddendeathend)
2298 checkrules_status = WINNING_YES;
2300 if(checkrules_status == WINNING_YES)
2302 //print("WINNING\n");
2307 float mapvote_nextthink;
2308 float mapvote_initialized;
2309 float mapvote_keeptwotime;
2310 float mapvote_timeout;
2311 string mapvote_message;
2312 #define MAPVOTE_SCREENSHOT_DIRS_COUNT 4
2313 string mapvote_screenshot_dirs[MAPVOTE_SCREENSHOT_DIRS_COUNT];
2314 float mapvote_screenshot_dirs_count;
2316 float mapvote_count;
2317 float mapvote_count_real;
2318 string mapvote_maps[MAPVOTE_COUNT];
2319 float mapvote_maps_screenshot_dir[MAPVOTE_COUNT];
2320 string mapvote_maps_pakfile[MAPVOTE_COUNT];
2321 float mapvote_maps_suggested[MAPVOTE_COUNT];
2322 string mapvote_suggestions[MAPVOTE_COUNT];
2323 float mapvote_suggestion_ptr;
2324 float mapvote_voters;
2325 float mapvote_votes[MAPVOTE_COUNT];
2327 float mapvote_detail;
2328 float mapvote_abstain;
2331 void MapVote_ClearAllVotes()
2333 FOR_EACH_CLIENT(other)
2337 string MapVote_Suggest(string m)
2341 return "That's not how to use this command.";
2342 if(!autocvar_g_maplist_votable_suggestions)
2343 return "Suggestions are not accepted on this server.";
2344 if(mapvote_initialized)
2345 return "Can't suggest - voting is already in progress!";
2346 m = MapInfo_FixName(m);
2348 return "The map you suggested is not available on this server.";
2349 if(!autocvar_g_maplist_votable_suggestions_override_mostrecent)
2351 return "This server does not allow for recent maps to be played again. Please be patient for some rounds.";
2353 if(!MapInfo_CheckMap(m))
2354 return "The map you suggested does not support the current game mode.";
2355 for(i = 0; i < mapvote_suggestion_ptr; ++i)
2356 if(mapvote_suggestions[i] == m)
2357 return "This map was already suggested.";
2358 if(mapvote_suggestion_ptr >= MAPVOTE_COUNT)
2360 i = floor(random() * mapvote_suggestion_ptr);
2364 i = mapvote_suggestion_ptr;
2365 mapvote_suggestion_ptr += 1;
2367 if(mapvote_suggestions[i] != "")
2368 strunzone(mapvote_suggestions[i]);
2369 mapvote_suggestions[i] = strzone(m);
2370 if(autocvar_sv_eventlog)
2371 GameLogEcho(strcat(":vote:suggested:", m, ":", ftos(self.playerid)));
2372 return strcat("Suggestion of ", m, " accepted.");
2375 void MapVote_AddVotable(string nextMap, float isSuggestion)
2378 string pakfile, mapfile;
2382 for(j = 0; j < mapvote_count; ++j)
2383 if(mapvote_maps[j] == nextMap)
2385 // suggestions might be no longer valid/allowed after gametype switch!
2387 if(!MapInfo_CheckMap(nextMap))
2389 mapvote_maps[mapvote_count] = strzone(nextMap);
2390 mapvote_maps_suggested[mapvote_count] = isSuggestion;
2392 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2394 mapfile = strcat(mapvote_screenshot_dirs[i], "/", mapvote_maps[i]);
2395 pakfile = whichpack(strcat(mapfile, ".tga"));
2397 pakfile = whichpack(strcat(mapfile, ".jpg"));
2399 pakfile = whichpack(strcat(mapfile, ".png"));
2403 if(i >= mapvote_screenshot_dirs_count)
2404 i = 0; // FIXME maybe network this error case, as that means there is no mapshot on the server?
2405 for(o = strstr(pakfile, "/", 0)+1; o > 0; o = strstr(pakfile, "/", 0)+1)
2406 pakfile = substring(pakfile, o, -1);
2408 mapvote_maps_screenshot_dir[mapvote_count] = i;
2409 mapvote_maps_pakfile[mapvote_count] = strzone(pakfile);
2414 void MapVote_Spawn();
2420 MapVote_ClearAllVotes();
2423 mapvote_detail = !autocvar_g_maplist_votable_nodetail;
2424 mapvote_abstain = autocvar_g_maplist_votable_abstain;
2427 nmax = min(MAPVOTE_COUNT - 1, autocvar_g_maplist_votable);
2429 nmax = min(MAPVOTE_COUNT, autocvar_g_maplist_votable);
2430 smax = min3(nmax, autocvar_g_maplist_votable_suggestions, mapvote_suggestion_ptr);
2432 // we need this for AddVotable, as that cycles through the screenshot dirs
2433 mapvote_screenshot_dirs_count = tokenize_console(autocvar_g_maplist_votable_screenshot_dir);
2434 if(mapvote_screenshot_dirs_count == 0)
2435 mapvote_screenshot_dirs_count = tokenize_console("maps levelshots");
2436 mapvote_screenshot_dirs_count = min(mapvote_screenshot_dirs_count, MAPVOTE_SCREENSHOT_DIRS_COUNT);
2437 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2438 mapvote_screenshot_dirs[i] = strzone(argv(i));
2440 if(mapvote_suggestion_ptr)
2441 for(i = 0; i < 100 && mapvote_count < smax; ++i)
2442 MapVote_AddVotable(mapvote_suggestions[floor(random() * mapvote_suggestion_ptr)], TRUE);
2444 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
2445 MapVote_AddVotable(GetNextMap(), FALSE);
2447 if(mapvote_count == 0)
2449 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
2450 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
2451 if(autocvar_g_maplist_shuffle)
2453 localcmd("\nmenu_cmd sync\n");
2454 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
2455 MapVote_AddVotable(GetNextMap(), FALSE);
2458 mapvote_count_real = mapvote_count;
2460 MapVote_AddVotable("don't care", 0);
2462 //dprint("mapvote count is ", ftos(mapvote_count), "\n");
2464 mapvote_keeptwotime = time + autocvar_g_maplist_votable_keeptwotime;
2465 mapvote_timeout = time + autocvar_g_maplist_votable_timeout;
2466 if(mapvote_count_real < 3 || mapvote_keeptwotime <= time)
2467 mapvote_keeptwotime = 0;
2468 mapvote_message = "Choose a map and press its key!";
2473 void MapVote_SendPicture(float id)
2476 WriteByte(MSG_ONE, SVC_TEMPENTITY);
2477 WriteByte(MSG_ONE, TE_CSQC_PICTURE);
2478 WriteByte(MSG_ONE, id);
2479 WritePicture(MSG_ONE, strcat(mapvote_screenshot_dirs[mapvote_maps_screenshot_dir[id]], "/", mapvote_maps[id]), 3072);
2482 float GameCommand_MapVote(string cmd)
2484 if(!intermission_running)
2487 if(cmd == "mv_getpic")
2489 MapVote_SendPicture(stof(argv(1)));
2496 float MapVote_GetMapMask()
2498 float mask, i, power;
2500 for(i = 0, power = 1; i < mapvote_count; ++i, power *= 2)
2501 if(mapvote_maps[i] != "")
2507 float MapVote_SendEntity(entity to, float sf)
2512 sf &~= 2; // if we send 1, we don't need to also send 2
2514 WriteByte(MSG_ENTITY, ENT_CLIENT_MAPVOTE);
2515 WriteByte(MSG_ENTITY, sf);
2519 // flag 1 == initialization
2520 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2521 WriteString(MSG_ENTITY, mapvote_screenshot_dirs[i]);
2522 WriteString(MSG_ENTITY, "");
2523 WriteByte(MSG_ENTITY, mapvote_count);
2524 WriteByte(MSG_ENTITY, mapvote_abstain);
2525 WriteByte(MSG_ENTITY, mapvote_detail);
2526 WriteCoord(MSG_ENTITY, mapvote_timeout);
2527 if(mapvote_count <= 8)
2528 WriteByte(MSG_ENTITY, MapVote_GetMapMask());
2530 WriteShort(MSG_ENTITY, MapVote_GetMapMask());
2531 for(i = 0; i < mapvote_count; ++i)
2532 if(mapvote_maps[i] != "")
2534 if(mapvote_abstain && i == mapvote_count - 1)
2536 WriteString(MSG_ENTITY, ""); // abstain needs no text
2537 WriteString(MSG_ENTITY, ""); // abstain needs no pack
2538 WriteByte(MSG_ENTITY, 0); // abstain needs no screenshot dir
2542 WriteString(MSG_ENTITY, mapvote_maps[i]);
2543 WriteString(MSG_ENTITY, mapvote_maps_pakfile[i]);
2544 WriteByte(MSG_ENTITY, mapvote_maps_screenshot_dir[i]);
2551 // flag 2 == update of mask
2552 if(mapvote_count <= 8)
2553 WriteByte(MSG_ENTITY, MapVote_GetMapMask());
2555 WriteShort(MSG_ENTITY, MapVote_GetMapMask());
2561 for(i = 0; i < mapvote_count; ++i)
2562 if(mapvote_maps[i] != "")
2563 WriteByte(MSG_ENTITY, mapvote_votes[i]);
2565 WriteByte(MSG_ENTITY, to.mapvote);
2571 void MapVote_Spawn()
2573 Net_LinkEntity(mapvote_ent = spawn(), FALSE, 0, MapVote_SendEntity);
2576 void MapVote_TouchMask()
2578 mapvote_ent.SendFlags |= 2;
2581 void MapVote_TouchVotes(entity voter)
2583 mapvote_ent.SendFlags |= 4;
2586 float MapVote_Finished(float mappos)
2592 if(autocvar_sv_eventlog)
2594 result = strcat(":vote:finished:", mapvote_maps[mappos]);
2595 result = strcat(result, ":", ftos(mapvote_votes[mappos]), "::");
2596 didntvote = mapvote_voters;
2597 for(i = 0; i < mapvote_count; ++i)
2598 if(mapvote_maps[i] != "")
2600 didntvote -= mapvote_votes[i];
2603 result = strcat(result, ":", mapvote_maps[i]);
2604 result = strcat(result, ":", ftos(mapvote_votes[i]));
2607 result = strcat(result, ":didn't vote:", ftos(didntvote));
2609 GameLogEcho(result);
2610 if(mapvote_maps_suggested[mappos])
2611 GameLogEcho(strcat(":vote:suggestion_accepted:", mapvote_maps[mappos]));
2614 FOR_EACH_REALCLIENT(other)
2615 FixClientCvars(other);
2617 Map_Goto_SetStr(mapvote_maps[mappos]);
2619 alreadychangedlevel = TRUE;
2622 void MapVote_CheckRules_1()
2626 for(i = 0; i < mapvote_count; ++i) if(mapvote_maps[i] != "")
2628 //dprint("Map ", ftos(i), ": "); dprint(mapvote_maps[i], "\n");
2629 mapvote_votes[i] = 0;
2633 FOR_EACH_REALCLIENT(other)
2638 i = other.mapvote - 1;
2639 //dprint("Player ", other.netname, " vote = ", ftos(other.mapvote - 1), "\n");
2640 mapvote_votes[i] = mapvote_votes[i] + 1;
2645 float MapVote_CheckRules_2()
2648 float firstPlace, secondPlace;
2649 float firstPlaceVotes, secondPlaceVotes;
2650 float mapvote_voters_real;
2653 if(mapvote_count_real == 1)
2654 return MapVote_Finished(0);
2656 mapvote_voters_real = mapvote_voters;
2658 mapvote_voters_real -= mapvote_votes[mapvote_count - 1];
2660 RandomSelection_Init();
2661 for(i = 0; i < mapvote_count_real; ++i) if(mapvote_maps[i] != "")
2662 RandomSelection_Add(world, i, string_null, 1, mapvote_votes[i]);
2663 firstPlace = RandomSelection_chosen_float;
2664 firstPlaceVotes = RandomSelection_best_priority;
2665 //dprint("First place: ", ftos(firstPlace), "\n");
2666 //dprint("First place votes: ", ftos(firstPlaceVotes), "\n");
2668 RandomSelection_Init();
2669 for(i = 0; i < mapvote_count_real; ++i) if(mapvote_maps[i] != "")
2671 RandomSelection_Add(world, i, string_null, 1, mapvote_votes[i]);
2672 secondPlace = RandomSelection_chosen_float;
2673 secondPlaceVotes = RandomSelection_best_priority;
2674 //dprint("Second place: ", ftos(secondPlace), "\n");
2675 //dprint("Second place votes: ", ftos(secondPlaceVotes), "\n");
2677 if(firstPlace == -1)
2678 error("No first place in map vote... WTF?");
2680 if(secondPlace == -1 || time > mapvote_timeout || (mapvote_voters_real - firstPlaceVotes) < firstPlaceVotes)
2681 return MapVote_Finished(firstPlace);
2683 if(mapvote_keeptwotime)
2684 if(time > mapvote_keeptwotime || (mapvote_voters_real - firstPlaceVotes - secondPlaceVotes) < secondPlaceVotes)
2687 MapVote_TouchMask();
2688 mapvote_message = "Now decide between the TOP TWO!";
2689 mapvote_keeptwotime = 0;
2690 result = strcat(":vote:keeptwo:", mapvote_maps[firstPlace]);
2691 result = strcat(result, ":", ftos(firstPlaceVotes));
2692 result = strcat(result, ":", mapvote_maps[secondPlace]);
2693 result = strcat(result, ":", ftos(secondPlaceVotes), "::");
2694 didntvote = mapvote_voters;
2695 for(i = 0; i < mapvote_count; ++i)
2696 if(mapvote_maps[i] != "")
2698 didntvote -= mapvote_votes[i];
2700 if(i != secondPlace)
2702 result = strcat(result, ":", mapvote_maps[i]);
2703 result = strcat(result, ":", ftos(mapvote_votes[i]));
2704 if(i < mapvote_count_real)
2706 strunzone(mapvote_maps[i]);
2707 mapvote_maps[i] = "";
2708 strunzone(mapvote_maps_pakfile[i]);
2709 mapvote_maps_pakfile[i] = "";
2713 result = strcat(result, ":didn't vote:", ftos(didntvote));
2714 if(autocvar_sv_eventlog)
2715 GameLogEcho(result);
2725 keeptwo = mapvote_keeptwotime;
2726 MapVote_CheckRules_1(); // count
2727 if(MapVote_CheckRules_2()) // decide
2731 FOR_EACH_REALCLIENT(other)
2733 // hide scoreboard again
2734 if(other.health != 2342)
2736 other.health = 2342;
2738 if(clienttype(other) == CLIENTTYPE_REAL)
2741 WriteByte(MSG_ONE, SVC_FINALE);
2742 WriteString(MSG_ONE, "");
2746 // clear possibly invalid votes
2747 if(mapvote_maps[other.mapvote - 1] == "")
2749 // use impulses as new vote
2750 if(other.impulse >= 1 && other.impulse <= mapvote_count)
2751 if(mapvote_maps[other.impulse - 1] != "")
2753 other.mapvote = other.impulse;
2754 MapVote_TouchVotes(other);
2762 MapVote_CheckRules_1(); // just count
2764 void MapVote_Start()
2769 // wait for stats to be sent first
2770 if(!playerstats_waitforme)
2773 MapInfo_Enumerate();
2774 if(MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
2777 void MapVote_Think()
2782 if(alreadychangedlevel)
2785 if(time < mapvote_nextthink)
2789 mapvote_nextthink = time + 0.5;
2791 if(!mapvote_initialized)
2793 if(autocvar_rescan_pending == 1)
2795 cvar_set("rescan_pending", "2");
2796 localcmd("fs_rescan\nrescan_pending 3\n");
2799 else if(autocvar_rescan_pending == 2)
2803 else if(autocvar_rescan_pending == 3)
2805 // now build missing mapinfo files
2806 if(!MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
2809 // we're done, start the timer
2810 cvar_set("rescan_pending", "0");
2813 mapvote_initialized = TRUE;
2814 if(DoNextMapOverride())
2816 if(!autocvar_g_maplist_votable || player_count <= 0)
2827 string GotoMap(string m)
2829 if(!MapInfo_CheckMap(m))
2830 return "The map you chose is not available on this server.";
2831 cvar_set("nextmap", m);
2832 cvar_set("timelimit", "-1");
2833 if(mapvote_initialized || alreadychangedlevel)
2835 if(DoNextMapOverride())
2836 return "Map switch initiated.";
2838 return "Hm... no. For some reason I like THIS map more.";
2841 return "Map switch will happen after scoreboard.";
2848 FOR_EACH_REALCLIENT(self)
2850 if(self.classname == "spectator")
2852 if(self.enemy.typehitsound)
2853 self.typehit_time = time;
2854 else if(self.enemy.hitsound)
2855 self.hit_time = time;
2859 if(self.typehitsound)
2860 self.typehit_time = time;
2861 else if(self.hitsound)
2862 self.hit_time = time;
2865 altime = time + frametime * (1 + autocvar_g_antilag_nudge);
2866 // add 1 frametime because after this, engine SV_Physics
2867 // increases time by a frametime and then networks the frame
2868 // add another frametime because client shows everything with
2869 // 1 frame of lag (cl_nolerp 0). The last +1 however should not be
2871 FOR_EACH_CLIENT(self)
2873 self.hitsound = FALSE;
2874 self.typehitsound = FALSE;
2875 antilag_record(self, altime);
2882 * returns TRUE if redirecting
2884 float redirection_timeout;
2885 float redirection_nextthink;
2886 float RedirectionThink()
2888 float clients_found;
2890 if(redirection_target == "")
2893 if(!redirection_timeout)
2895 cvar_set("sv_public", "-2");
2896 redirection_timeout = time + 0.6; // this will only try twice... should be able to keep more clients
2897 if(redirection_target == "self")
2898 bprint("^3SERVER NOTICE:^7 restarting the server\n");
2900 bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
2903 if(time < redirection_nextthink)
2906 redirection_nextthink = time + 1;
2909 FOR_EACH_REALCLIENT(self)
2911 print("Redirecting: sending connect command to ", self.netname, "\n");
2912 if(redirection_target == "self")
2913 stuffcmd(self, "\ndisconnect; reconnect\n");
2915 stuffcmd(self, strcat("\ndisconnect; connect ", redirection_target, "\n"));
2919 print("Redirecting: ", ftos(clients_found), " clients left.\n");
2921 if(time > redirection_timeout || clients_found == 0)
2922 localcmd("\nwait; wait; wait; quit\n");
2927 void TargetMusic_RestoreGame();
2930 // Loaded from a save game
2931 // some things then break, so let's work around them...
2933 // Progs DB (capture records)
2934 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
2938 MapInfo_Enumerate();
2939 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
2942 TargetMusic_RestoreGame();
2949 if(gameover > 1) // shutting down already?
2952 gameover = 2; // 2 = server shutting down
2954 if(world_initialized > 0)
2956 world_initialized = 0;
2957 print("Saving persistent data...\n");
2960 PlayerStats_EndMatch(0);
2962 PlayerStats_AddGlobalInfo(e);
2963 PlayerStats_Shutdown();
2965 if(!cheatcount_total)
2967 if(autocvar_sv_db_saveasdump)
2968 db_dump(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2970 db_save(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2972 if(autocvar_developer)
2974 if(autocvar_sv_db_saveasdump)
2975 db_dump(TemporaryDB, "server-temp.db");
2977 db_save(TemporaryDB, "server-temp.db");
2979 CheatShutdown(); // must be after cheatcount check
2980 db_close(ServerProgsDB);
2981 db_close(TemporaryDB);
2983 // tell the bot system the game is ending now
2986 WeaponStats_Shutdown();
2989 else if(world_initialized == 0)
2991 print("NOTE: crashed before even initializing the world, not saving persistent data\n");