1 #define LATENCY_THINKRATE 10
6 void PingPLReport_Think()
11 delta = 3 / maxclients;
12 if(delta < sys_frametime)
14 self.nextthink = time + delta;
16 e = edict_num(self.cnt + 1);
17 if(clienttype(e) == CLIENTTYPE_REAL)
19 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
20 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
21 WriteByte(MSG_BROADCAST, self.cnt);
22 WriteShort(MSG_BROADCAST, max(1, e.ping));
23 WriteByte(MSG_BROADCAST, ceil(e.ping_packetloss * 255));
24 WriteByte(MSG_BROADCAST, ceil(e.ping_movementloss * 255));
26 // record latency times for clients throughout the match so we can report it to playerstats
27 if(time > (e.latency_time + LATENCY_THINKRATE))
29 e.latency_sum += e.ping;
31 e.latency_time = time;
32 //print("sum: ", ftos(e.latency_sum), ", cnt: ", ftos(e.latency_cnt), ", avg: ", ftos(e.latency_sum / e.latency_cnt), ".\n");
37 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
38 WriteByte(MSG_BROADCAST, TE_CSQC_PINGPLREPORT);
39 WriteByte(MSG_BROADCAST, self.cnt);
40 WriteShort(MSG_BROADCAST, 0);
41 WriteByte(MSG_BROADCAST, 0);
42 WriteByte(MSG_BROADCAST, 0);
44 self.cnt = mod(self.cnt + 1, maxclients);
46 void PingPLReport_Spawn()
48 pingplreport = spawn();
49 pingplreport.classname = "pingplreport";
50 pingplreport.think = PingPLReport_Think;
51 pingplreport.nextthink = time;
54 float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
55 string redirection_target;
56 float world_initialized;
60 void GotoNextMap(float reinit);
61 void ShuffleMaplist();
62 float(float reinit) DoNextMapOverride;
64 void SetDefaultAlpha()
66 if(autocvar_g_running_guns)
68 default_player_alpha = -1;
69 default_weapon_alpha = +1;
73 default_player_alpha = autocvar_g_balance_cloaked_alpha;
74 default_weapon_alpha = default_player_alpha;
78 default_player_alpha = autocvar_g_player_alpha;
79 if(default_player_alpha == 0)
80 default_player_alpha = 1;
81 default_weapon_alpha = default_player_alpha;
85 void fteqcc_testbugs()
89 if(!autocvar_developer_fteqccbugs)
92 dprint("*** fteqcc test: checking for bugs...\n");
96 if(sqrt(a) - sqrt(b - a) == 0)
97 dprint("*** fteqcc test: found same-function-twice bug\n");
99 dprint("*** fteqcc test: same-function-twice bug got FINALLY FIXED! HOORAY!\n");
103 world.enemy.cnt += 10;
104 if(world.cnt > 0.2 || world.cnt < -0.2) // don't error out if it's just roundoff errors
105 dprint("*** fteqcc test: found += bug\n");
107 dprint("*** fteqcc test: += bug got FINALLY FIXED! HOORAY!\n");
114 if(autocvar__sv_init)
116 // cvar_set("_sv_init", "0");
117 // we do NOT set this to 0 any more, so someone "accidentally" changing
118 // to this "init" map on a dedicated server will cause no permanent
120 if(autocvar_g_maplist_shuffle)
122 n = tokenizebyseparator(autocvar_g_maplist, " ");
123 cvar_set("g_maplist_index", ftos(n - 1)); // jump to map 0 in GotoNextMap
126 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
128 if(!DoNextMapOverride(1))
136 self.nextthink = time;
140 self.nextthink = time + 1;
141 print("Waiting for _sv_init being set to 1 by initialization scripts...\n");
145 void cvar_changes_init()
149 float n, i, adding, pureadding;
152 strunzone(cvar_changes);
153 cvar_changes = string_null;
155 strunzone(cvar_purechanges);
156 cvar_purechanges = string_null;
157 cvar_purechanges_count = 0;
160 buf_cvarlist(h, "", "_"); // exclude all _ cvars as they are temporary
166 for(i = 0; i < n; ++i)
168 k = bufstr_get(h, i);
170 #define BADPREFIX(p) if(substring(k, 0, strlen(p)) == p) continue
171 #define BADPRESUFFIX(p,s) if(substring(k, 0, strlen(p)) == p && substring(k, -strlen(s), -1) == s) continue
172 #define BADCVAR(p) if(k == p) continue
174 // general excludes and namespaces for server admin used cvars
175 BADPREFIX("help_"); // PN's server has this listed as changed, let's not rat him out for THAT
179 BADPREFIX("cvar_check_");
181 BADCVAR("g_configversion");
182 BADCVAR("g_maplist_index");
183 BADCVAR("halflifebsp");
184 BADPREFIX("sv_world");
190 BADPREFIX("scoreboard_");
191 BADPREFIX("g_campaign");
192 BADPREFIX("g_waypointsprite_");
198 BADPREFIX("net_slist_");
204 BADPREFIX("sensitivity");
205 BADPREFIX("userbind");
208 BADPREFIX("crosshair");
209 BADCVAR("mod_q3bsp_lightmapmergepower");
210 BADCVAR("mod_q3bsp_nolightmaps");
212 BADCVAR("mastervolume");
214 BADCVAR("bgmvolume");
217 BADCVAR("developer");
218 BADCVAR("log_dest_udp");
220 BADCVAR("net_address");
221 BADCVAR("net_address_ipv6");
223 BADCVAR("savedgamecfg");
224 BADCVAR("serverconfig");
225 BADCVAR("sv_autoscreenshot");
226 BADCVAR("sv_heartbeatperiod");
227 BADCVAR("sv_vote_master_password");
228 BADCVAR("sys_colortranslation");
229 BADCVAR("sys_specialcharactertranslation");
230 BADCVAR("timeformat");
231 BADCVAR("timestamps");
232 BADPREFIX("developer_");
234 BADPREFIX("g_banned_list");
235 BADPREFIX("g_chat_flood_");
236 BADPREFIX("g_ghost_items");
237 BADPREFIX("g_playerstats_");
238 BADPREFIX("g_respawn_ghosts");
239 BADPREFIX("g_voice_flood_");
241 BADPREFIX("sv_allowdownloads");
242 BADPREFIX("sv_autodemo");
243 BADPREFIX("sv_curl_");
244 BADPREFIX("sv_eventlog");
245 BADPREFIX("sv_logscores_");
246 BADPREFIX("sv_master");
247 BADPREFIX("sv_weaponstats_");
248 BADPREFIX("sv_waypointsprite_");
249 BADCVAR("rescan_pending");
251 // these can contain player IDs, so better hide
252 BADPREFIX("g_forced_team_");
255 BADCVAR("fraglimit");
257 BADCVAR("g_assault");
262 BADCVAR("g_domination");
263 BADCVAR("g_domination_default_teams");
264 BADCVAR("g_freezetag");
265 BADCVAR("g_keepaway");
266 BADCVAR("g_keyhunt");
267 BADCVAR("g_keyhunt_teams");
268 BADCVAR("g_keyhunt_teams");
270 BADCVAR("g_nexball");
271 BADCVAR("g_onslaught");
273 BADCVAR("g_race_qualifying_timelimit");
274 BADCVAR("g_runematch");
276 BADCVAR("g_tdm_teams");
277 BADCVAR("leadlimit");
280 BADCVAR("timelimit");
284 BADCVAR("g_maplist");
285 BADCVAR("g_maplist_mostrecent");
289 d = cvar_defstring(k);
295 cvar_changes = strcat(cvar_changes, k, " \"", v, "\" // \"", d, "\"\n");
296 if(strlen(cvar_changes) > 16384)
298 cvar_changes = "// too many settings have been changed to show them here\n";
303 // now check if the changes are actually gameplay relevant
305 // does nothing visible
306 BADCVAR("captureleadlimit_override");
307 BADCVAR("g_arena_point_leadlimit");
308 BADCVAR("g_balance_kill_delay");
309 BADCVAR("g_ca_point_leadlimit");
310 BADCVAR("g_ctf_captimerecord_always");
311 BADCVAR("g_ctf_flag_glowtrails");
312 BADCVAR("g_ctf_flag_pickup_verbosename");
313 BADCVAR("g_domination_point_leadlimit");
314 BADCVAR("g_forced_respawn");
315 BADCVAR("g_keyhunt_point_leadlimit");
317 BADCVAR("g_nexball_goalleadlimit");
318 BADCVAR("g_runematch_point_leadlimit");
319 BADCVAR("leadlimit_and_fraglimit");
320 BADCVAR("leadlimit_override");
322 BADCVAR("sv_allow_fullbright");
323 BADCVAR("sv_checkforpacketsduringsleep");
324 BADCVAR("sv_fraginfo");
325 BADCVAR("sv_timeout");
326 BADPREFIX("sv_timeout_");
327 BADCVAR("welcome_message_time");
328 BADPREFIX("crypto_");
329 BADPREFIX("g_chat_");
330 BADPREFIX("g_ctf_captimerecord_");
331 BADPREFIX("g_maplist_votable_");
335 BADPREFIX("sv_cullentities_");
336 BADPREFIX("sv_fraginfo_");
337 BADPREFIX("sv_maxidle_");
338 BADPREFIX("sv_vote_");
339 BADPREFIX("timelimit_");
340 BADCVAR("gameversion");
341 BADPREFIX("gameversion_");
342 BADCVAR("sv_namechangetimer");
344 // allowed changes to server admins (please sync this to server.cfg)
348 // :%s,//\([^ ]*\).*,BADCVAR("\1");,
350 // yes, this does contain some redundant stuff, don't really care
351 BADCVAR("bot_config_file");
352 BADCVAR("bot_number");
353 BADCVAR("bot_prefix");
354 BADCVAR("bot_suffix");
355 BADCVAR("capturelimit_override");
356 BADCVAR("fraglimit_override");
358 BADCVAR("g_antilag");
359 BADCVAR("g_balance_teams");
360 BADCVAR("g_balance_teams_prevent_imbalance");
361 BADCVAR("g_balance_teams_scorefactor");
362 BADCVAR("g_ban_sync_trusted_servers");
363 BADCVAR("g_ban_sync_uri");
364 BADCVAR("g_ctf_ignore_frags");
365 BADCVAR("g_domination_point_limit");
366 BADCVAR("g_friendlyfire");
367 BADCVAR("g_fullbrightitems");
368 BADCVAR("g_fullbrightplayers");
369 BADCVAR("g_keyhunt_point_limit");
370 BADCVAR("g_keyhunt_teams_override");
371 BADCVAR("g_lms_lives_override");
372 BADCVAR("g_maplist");
373 BADCVAR("g_maplist_check_waypoints");
374 BADCVAR("g_maplist_mostrecent_count");
375 BADCVAR("g_maplist_shuffle");
376 BADCVAR("g_maplist_votable");
377 BADCVAR("g_maplist_votable_abstain");
378 BADCVAR("g_maplist_votable_nodetail");
379 BADCVAR("g_maplist_votable_suggestions");
380 BADCVAR("g_maxplayers");
381 BADCVAR("g_mirrordamage");
382 BADCVAR("g_nexball_goallimit");
383 BADCVAR("g_powerups");
384 BADCVAR("g_runematch_point_limit");
385 BADCVAR("g_start_delay");
387 BADCVAR("g_weapon_stay"); BADPRESUFFIX("g_", "_weapon_stay");
390 BADCVAR("maxplayers");
391 BADCVAR("minplayers");
392 BADCVAR("net_address");
394 BADCVAR("rcon_password");
395 BADCVAR("rcon_restricted_commands");
396 BADCVAR("rcon_restricted_password");
398 BADCVAR("sv_adminnick");
399 BADCVAR("sv_autoscreenshot");
400 BADCVAR("sv_autotaunt");
401 BADCVAR("sv_curl_defaulturl");
402 BADCVAR("sv_defaultcharacter");
403 BADCVAR("sv_defaultplayercolors");
404 BADCVAR("sv_defaultplayermodel");
405 BADCVAR("sv_defaultplayerskin");
406 BADCVAR("sv_maxidle");
407 BADCVAR("sv_maxrate");
409 BADCVAR("sv_public");
410 BADCVAR("sv_ready_restart");
411 BADCVAR("sv_status_privacy");
413 BADCVAR("sv_vote_call");
414 BADCVAR("sv_vote_commands");
415 BADCVAR("sv_vote_majority_factor");
416 BADCVAR("sv_vote_master");
417 BADCVAR("sv_vote_master_commands");
418 BADCVAR("sv_vote_master_password");
419 BADCVAR("sv_vote_simple_majority_factor");
420 BADCVAR("sys_ticrate");
421 BADCVAR("teamplay_mode");
422 BADCVAR("timelimit_override");
423 BADCVAR("g_spawnshieldtime");
424 BADPREFIX("g_warmup_");
425 BADPREFIX("sv_ready_restart_");
427 // mutators that announce themselves properly to the server browser
428 BADCVAR("g_minstagib");
429 BADCVAR("g_new_toys");
432 if(autocvar_g_minstagib)
434 BADCVAR("g_grappling_hook");
435 BADCVAR("g_jetpack");
442 cvar_purechanges = strcat(cvar_purechanges, k, " \"", v, "\" // \"", d, "\"\n");
443 if(strlen(cvar_purechanges) > 16384)
445 cvar_purechanges = "// too many settings have been changed to show them here\n";
449 ++cvar_purechanges_count;
450 // WARNING: this variable is used for the server list
451 // NEVER dare to skip this code!
452 // Hacks to intentionally appearing as "pure server" even though you DO have
453 // modified settings may be punished by removal from the server list.
454 // You can do to the variables cvar_changes and cvar_purechanges all you want,
458 if(cvar_changes == "")
459 cvar_changes = "// this server runs at default server settings\n";
461 cvar_changes = strcat("// this server runs at modified server settings:\n", cvar_changes);
462 cvar_changes = strzone(cvar_changes);
463 if(cvar_purechanges == "")
464 cvar_purechanges = "// this server runs at default gameplay settings\n";
466 cvar_purechanges = strcat("// this server runs at modified gameplay settings:\n", cvar_purechanges);
467 cvar_purechanges = strzone(cvar_purechanges);
470 void detect_maptype()
479 o_x += random() * (world.maxs_x - world.mins_x);
480 o_y += random() * (world.maxs_y - world.mins_y);
481 o_z += random() * (world.maxs_z - world.mins_z);
483 tracebox(o, PL_MIN, PL_MAX, o - '0 0 32768', MOVE_WORLDONLY, world);
484 if(trace_fraction == 1)
489 for(i = 0; i < 64; i += 4)
491 tracebox(o, '-1 -1 -1' * i, '1 1 1' * i, o - '0 0 32768', MOVE_WORLDONLY, world);
492 if(trace_fraction == 1)
494 print(ftos(i), " -> ", vtos(trace_endpos), "\n");
503 float RandomSeed_Send(entity to, float sf)
505 WriteByte(MSG_ENTITY, ENT_CLIENT_RANDOMSEED);
506 WriteShort(MSG_ENTITY, self.cnt);
509 void RandomSeed_Think()
511 self.cnt = bound(0, floor(random() * 65536), 65535);
512 self.nextthink = time + 5;
516 void RandomSeed_Spawn()
518 randomseed = spawn();
519 randomseed.think = RandomSeed_Think;
520 Net_LinkEntity(randomseed, FALSE, 0, RandomSeed_Send);
525 self.think(); // sets random seed and nextthink
529 void spawnfunc___init_dedicated_server(void)
531 // handler for _init/_init map (only for dedicated server initialization)
533 world_initialized = -1; // don't complain
535 cvar_string = cvar_string_normal;
536 cvar_set = cvar_set_normal;
538 remove = remove_unsafely;
542 e.think = GotoFirstMap;
543 e.nextthink = time; // this is usually 1 at this point
546 e.classname = "info_player_deathmatch"; // safeguard against player joining
548 self.classname = "worldspawn"; // safeguard against various stuff ;)
550 // needs to be done so early because of the constants they create
551 CALL_ACCUMULATED_FUNCTION(RegisterWeapons);
552 CALL_ACCUMULATED_FUNCTION(RegisterGametypes);
555 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
558 void Map_MarkAsRecent(string m);
559 float world_already_spawned;
561 void ClientInit_Spawn();
562 void WeaponStats_Init();
563 void WeaponStats_Shutdown();
564 void spawnfunc_worldspawn (void)
566 float fd, l, i, j, n;
570 cvar_string = cvar_string_normal;
571 cvar_set = cvar_set_normal;
573 if(world_already_spawned)
574 error("world already spawned - you may have EXACTLY ONE worldspawn!");
575 world_already_spawned = TRUE;
577 remove = remove_safely; // during spawning, watch what you remove!
579 check_unacceptable_compiler_bugs();
581 cvar_changes_init(); // do this very early now so it REALLY matches the server config
583 compressShortVector_init();
585 allowed_to_spawn = TRUE;
588 head = nextent(world);
593 head = nextent(head);
596 // needs to be done so early because of the constants they create
597 CALL_ACCUMULATED_FUNCTION(RegisterWeapons);
598 CALL_ACCUMULATED_FUNCTION(RegisterGametypes);
600 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
602 TemporaryDB = db_create();
607 // 1 FLICKER (first variety)
608 lightstyle(1, "mmnmmommommnonmmonqnmmo");
610 // 2 SLOW STRONG PULSE
611 lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
613 // 3 CANDLE (first variety)
614 lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
617 lightstyle(4, "mamamamamama");
620 lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
622 // 6 FLICKER (second variety)
623 lightstyle(6, "nmonqnmomnmomomno");
625 // 7 CANDLE (second variety)
626 lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
628 // 8 CANDLE (third variety)
629 lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
631 // 9 SLOW STROBE (fourth variety)
632 lightstyle(9, "aaaaaaaazzzzzzzz");
634 // 10 FLUORESCENT FLICKER
635 lightstyle(10, "mmamammmmammamamaaamammma");
637 // 11 SLOW PULSE NOT FADE TO BLACK
638 lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
640 // styles 32-62 are assigned by the spawnfunc_light program for switchable lights
645 if(autocvar_g_campaign)
648 Map_MarkAsRecent(mapname);
650 PlayerStats_Init(); // we need this to be initiated before InitGameplayMode
652 precache_model ("null"); // we need this one before InitGameplayMode
660 bot_waypoints_for_items = autocvar_g_waypoints_for_items;
661 if(bot_waypoints_for_items == 1)
662 if(self.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
663 bot_waypoints_for_items = 0;
667 WaypointSprite_Init();
669 GameLogInit(); // prepare everything
671 // changing the logic generating it is okay. But:
672 // it HAS to stay <= 64 chars
673 // character set: ASCII 33-126 without the following characters: : ; ' " \ $
674 if(autocvar_sv_eventlog)
676 s = sprintf("%d.%s.%06d", ftos(autocvar_sv_eventlog_files_counter), strftime(FALSE, "%s"), floor(random() * 1000000));
677 matchid = strzone(s);
679 GameLogEcho(strcat(":gamestart:", GetGametype(), "_", GetMapname(), ":", s));
680 s = ":gameinfo:mutators:LIST";
683 MUTATOR_CALLHOOK(BuildMutatorsString);
686 // simple, probably not good in the mutator system
687 if(autocvar_g_grappling_hook)
688 s = strcat(s, ":grappling_hook");
690 // initialiation stuff, not good in the mutator system
691 if(!autocvar_g_use_ammunition)
692 s = strcat(s, ":no_use_ammunition");
694 // initialiation stuff, not good in the mutator system
695 if(autocvar_g_pickup_items == 0)
696 s = strcat(s, ":no_pickup_items");
697 if(autocvar_g_pickup_items > 0)
698 s = strcat(s, ":pickup_items");
700 // initialiation stuff, not good in the mutator system
701 if(autocvar_g_weaponarena != "0")
702 s = strcat(s, ":", autocvar_g_weaponarena, " arena");
704 // TODO to mutator system
705 if(autocvar_g_norecoil)
706 s = strcat(s, ":norecoil");
708 // TODO to mutator system
709 if(autocvar_g_midair)
710 s = strcat(s, ":midair");
712 // TODO to mutator system
713 if(autocvar_g_minstagib)
714 s = strcat(s, ":minstagib");
716 // TODO to mutator system
717 if(autocvar_g_powerups == 0)
718 s = strcat(s, ":no_powerups");
719 if(autocvar_g_powerups > 0)
720 s = strcat(s, ":powerups");
723 GameLogEcho(":gameinfo:end");
726 matchid = strzone(ftos(random()));
728 cvar_set("nextmap", "");
732 if(autocvar_g_campaign)
740 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
742 if(whichpack(strcat("maps/", mapname, ".cfg")) != "")
744 fd = fopen(strcat("maps/", mapname, ".cfg"), FILE_READ);
747 while((s = fgets(fd)))
749 l = tokenize_console(s);
754 print("Found ^1UNSUPPORTED^7 cd loop command in .cfg file; put this line in mapinfo instead:\n");
755 print(" cdtrack ", argv(2), "\n");
757 else if(argv(0) == "fog")
759 print("Found ^1UNSUPPORTED^7 fog command in .cfg file; put this line in worldspawn in the .map/.bsp/.ent file instead:\n");
760 print(" \"fog\" \"", s, "\"\n");
762 else if(argv(0) == "set")
764 print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
765 print(" clientsettemp_for_type all ", argv(1), " ", argv(2), "\n");
767 else if(argv(0) != "//")
769 print("Found ^1UNSUPPORTED^7 set command in .cfg file; put this line in mapinfo instead:\n");
770 print(" clientsettemp_for_type all ", argv(0), " ", argv(1), "\n");
780 addstat(STAT_SWITCHWEAPON, AS_INT, switchweapon);
781 addstat(STAT_SWITCHINGWEAPON, AS_INT, switchingweapon);
782 addstat(STAT_GAMESTARTTIME, AS_FLOAT, stat_game_starttime);
783 addstat(STAT_ALLOW_OLDNEXBEAM, AS_INT, stat_allow_oldnexbeam);
786 addstat(STAT_STRENGTH_FINISHED, AS_FLOAT, strength_finished);
787 addstat(STAT_INVINCIBLE_FINISHED, AS_FLOAT, invincible_finished);
788 addstat(STAT_SUPERWEAPONS_FINISHED, AS_FLOAT, superweapons_finished);
789 addstat(STAT_PRESSED_KEYS, AS_FLOAT, pressedkeys);
790 addstat(STAT_FUEL, AS_INT, ammo_fuel);
791 addstat(STAT_SHOTORG, AS_INT, stat_shotorg);
792 addstat(STAT_LEADLIMIT, AS_FLOAT, stat_leadlimit);
793 addstat(STAT_WEAPON_CLIPLOAD, AS_INT, clip_load);
794 addstat(STAT_WEAPON_CLIPSIZE, AS_INT, clip_size);
795 addstat(STAT_LAST_PICKUP, AS_FLOAT, last_pickup);
796 addstat(STAT_HIT_TIME, AS_FLOAT, hit_time);
797 addstat(STAT_TYPEHIT_TIME, AS_FLOAT, typehit_time);
798 addstat(STAT_LAYED_MINES, AS_INT, minelayer_mines);
800 addstat(STAT_NEX_CHARGE, AS_FLOAT, nex_charge);
801 addstat(STAT_NEX_CHARGEPOOL, AS_FLOAT, nex_chargepool_ammo);
803 addstat(STAT_HAGAR_LOAD, AS_INT, hagar_load);
805 if(g_ca || g_freezetag)
807 addstat(STAT_REDALIVE, AS_INT, redalive_stat);
808 addstat(STAT_BLUEALIVE, AS_INT, bluealive_stat);
809 addstat(STAT_YELLOWALIVE, AS_INT, yellowalive_stat);
810 addstat(STAT_PINKALIVE, AS_INT, pinkalive_stat);
814 addstat(STAT_FROZEN, AS_INT, freezetag_frozen);
815 addstat(STAT_REVIVE_PROGRESS, AS_FLOAT, freezetag_revive_progress);
818 // g_movementspeed hack
819 addstat(STAT_MOVEVARS_AIRSPEEDLIMIT_NONQW, AS_FLOAT, stat_sv_airspeedlimit_nonqw);
820 addstat(STAT_MOVEVARS_MAXSPEED, AS_FLOAT, stat_sv_maxspeed);
821 addstat(STAT_MOVEVARS_AIRACCEL_QW, AS_FLOAT, stat_sv_airaccel_qw);
822 addstat(STAT_MOVEVARS_AIRSTRAFEACCEL_QW, AS_FLOAT, stat_sv_airstrafeaccel_qw);
825 addstat(STAT_SECRETS_TOTAL, AS_FLOAT, stat_secrets_total);
826 addstat(STAT_SECRETS_FOUND, AS_FLOAT, stat_secrets_found);
829 addstat(STAT_RESPAWN_TIME, AS_FLOAT, stat_respawn_time);
831 next_pingtime = time + 5;
835 // set up information replies for clients and server to use
836 lsmaps_reply = "^7Maps available: ";
837 lsnewmaps_reply = "^7Maps without a record set: ";
838 for(i = 0, j = 0; i < MapInfo_count; ++i)
840 if(MapInfo_Get_ByID(i))
841 if not(MapInfo_Map_flags & MapInfo_ForbiddenFlags())
850 lsmaps_reply = strcat(lsmaps_reply, col, MapInfo_Map_bspname, " ");
852 if(g_race && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, RACE_RECORD, "time"))))
853 lsnewmaps_reply = strcat(lsnewmaps_reply, col, MapInfo_Map_bspname, " ");
854 else if(g_cts && !stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, CTS_RECORD, "time"))))
855 lsnewmaps_reply = strcat(lsnewmaps_reply, col, MapInfo_Map_bspname, " ");
859 lsmaps_reply = strzone(strcat(lsmaps_reply, "\n"));
860 lsnewmaps_reply = strzone(strcat(((!g_race && !g_cts) ? "Need to be playing race or CTS for lsnewmaps to work." : lsnewmaps_reply), "\n"));
862 maplist_reply = "^7Maps in list: ";
863 n = tokenize_console(autocvar_g_maplist);
864 for(i = 0, j = 0; i < n; ++i)
866 if(MapInfo_CheckMap(argv(i)))
872 maplist_reply = strcat(maplist_reply, col, argv(i), " ");
876 maplist_reply = strzone(strcat(maplist_reply, "\n"));
877 MapInfo_ClearTemps();
879 for(i = 0; i < 10; ++i)
883 records_reply[i] = strzone(s);
886 ladder_reply = strzone(getladder());
888 rankings_reply = strzone(getrankings());
893 PingPLReport_Spawn();
897 localcmd("\n_sv_hook_gamestart ", GetGametype(), "\n");
899 // fill sv_curl_serverpackages from .serverpackage files
900 if(autocvar_sv_curl_serverpackages_auto)
903 n = tokenize_console(cvar_string("sv_curl_serverpackages"));
904 for(i = 0; i < n; ++i)
905 if(substring(argv(i), -14, -1) != "-serverpackage.txt")
906 if(substring(argv(i), -14, -1) != ".serverpackage") // OLD legacy
907 s = strcat(s, " ", argv(i));
908 fd = search_begin("*-serverpackage.txt", TRUE, FALSE);
911 j = search_getsize(fd);
912 for(i = 0; i < j; ++i)
913 s = strcat(s, " ", search_getfilename(fd, i));
916 fd = search_begin("*.serverpackage", TRUE, FALSE);
919 j = search_getsize(fd);
920 for(i = 0; i < j; ++i)
921 s = strcat(s, " ", search_getfilename(fd, i));
924 cvar_set("sv_curl_serverpackages", substring(s, 1, -1));
927 // MOD AUTHORS: change this, and possibly remove a few of the blocks below to ignore certain changes
929 // physics/balance/config changes that count as mod
930 if(cvar_string("g_mod_physics") != cvar_defstring("g_mod_physics"))
931 modname = cvar_string("g_mod_physics");
932 if(cvar_string("g_mod_balance") != cvar_defstring("g_mod_balance"))
933 modname = cvar_string("g_mod_balance");
934 if(cvar_string("g_mod_config") != cvar_defstring("g_mod_config"))
935 modname = cvar_string("g_mod_config");
936 // weird mutators that deserve to count as mod
937 if(autocvar_g_minstagib)
938 modname = "MinstaGib";
939 // extra mutators that deserve to count as mod
940 MUTATOR_CALLHOOK(SetModname);
943 modname = strzone(modname);
945 WinningConditionHelper(); // set worldstatus
947 world_initialized = 1;
950 void spawnfunc_light (void)
952 //makestatic (self); // Who the f___ did that?
958 return MapInfo_Type_ToString(MapInfo_LoadedGametype);
961 string getmapname_stored;
967 float Map_Count, Map_Current;
968 string Map_Current_Name;
970 // NOTE: this now expects the map list to be already tokenized and the count in Map_Count
971 float GetMaplistPosition()
977 idx = autocvar_g_maplist_index;
984 for(pos = 0; pos < Map_Count; ++pos)
988 // resume normal maplist rotation if current map is not in g_maplist
992 float MapHasRightSize(string map)
995 if(currentbots || autocvar_bot_number || player_count < autocvar_minplayers)
996 if(autocvar_g_maplist_check_waypoints)
998 dprint("checkwp "); dprint(map);
999 if(!fexists(strcat("maps/", map, ".waypoints")))
1001 dprint(": no waypoints\n");
1004 dprint(": has waypoints\n");
1007 // open map size restriction file
1008 dprint("opensize "); dprint(map);
1009 fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
1012 float mapmin, mapmax;
1014 mapmin = stof(fgets(fh));
1015 mapmax = stof(fgets(fh));
1017 if(player_count < mapmin)
1019 dprint("not enough\n");
1022 if(player_count > mapmax)
1024 dprint("too many\n");
1027 dprint("right size\n");
1030 dprint(": not found\n");
1034 string Map_Filename(float position)
1036 return strcat("maps/", argv(position), ".bsp");
1039 string strwords(string s, float w)
1042 for(endpos = 0; w && endpos >= 0; --w)
1043 endpos = strstrofs(s, " ", endpos + 1);
1047 return substring(s, 0, endpos);
1050 float strhasword(string s, string w)
1052 return strstrofs(strcat(" ", s, " "), strcat(" ", w, " "), 0) >= 0;
1055 void Map_MarkAsRecent(string m)
1057 cvar_set("g_maplist_mostrecent", strwords(strcat(m, " ", autocvar_g_maplist_mostrecent), max(0, autocvar_g_maplist_mostrecent_count)));
1060 float Map_IsRecent(string m)
1062 return strhasword(autocvar_g_maplist_mostrecent, m);
1065 float Map_Check(float position, float pass)
1069 map_next = argv(position);
1072 if(Map_IsRecent(map_next))
1075 filename = Map_Filename(position);
1076 if(MapInfo_CheckMap(map_next))
1080 if(MapHasRightSize(map_next))
1085 dprint( "Couldn't select '", filename, "'..\n" );
1090 void Map_Goto_SetStr(string nextmapname)
1092 if(getmapname_stored != "")
1093 strunzone(getmapname_stored);
1094 if(nextmapname == "")
1095 getmapname_stored = "";
1097 getmapname_stored = strzone(nextmapname);
1100 void Map_Goto_SetFloat(float position)
1102 cvar_set("g_maplist_index", ftos(position));
1103 Map_Goto_SetStr(argv(position));
1106 void Map_Goto(float reinit)
1108 MapInfo_LoadMap(getmapname_stored, reinit);
1111 // return codes of map selectors:
1112 // -1 = temporary failure (that is, try some method that is guaranteed to succeed)
1113 // -2 = permanent failure
1114 float() MaplistMethod_Iterate = // usual method
1118 for(pass = 1; pass <= 2; ++pass)
1120 for(i = 1; i < Map_Count; ++i)
1123 mapindex = mod(i + Map_Current, Map_Count);
1124 if(Map_Check(mapindex, pass))
1131 float() MaplistMethod_Repeat = // fallback method
1133 if(Map_Check(Map_Current, 2))
1138 float() MaplistMethod_Random = // random map selection
1144 for(i = 0; i <= imax; ++i)
1147 mapindex = mod(Map_Current + floor(random() * (Map_Count - 1) + 1), Map_Count); // any OTHER map
1148 if(Map_Check(mapindex, 1))
1154 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
1155 // the exponent sets a bias on the map selection:
1156 // the higher the exponent, the less likely "shortly repeated" same maps are
1158 float i, j, imax, insertpos;
1162 for(i = 0; i <= imax; ++i)
1166 // now reinsert this at another position
1167 insertpos = pow(random(), 1 / exponent); // ]0, 1]
1168 insertpos = insertpos * (Map_Count - 1); // ]0, Map_Count - 1]
1169 insertpos = ceil(insertpos) + 1; // {2, 3, 4, ..., Map_Count}
1170 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
1172 // insert the current map there
1174 for(j = 1; j < insertpos; ++j) // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
1175 newlist = strcat(newlist, " ", argv(j));
1176 newlist = strcat(newlist, " ", argv(0)); // now insert the just selected map
1177 for(j = insertpos; j < Map_Count; ++j) // i == Map_Count: no loop, has just been inserted as last
1178 newlist = strcat(newlist, " ", argv(j));
1179 newlist = substring(newlist, 1, strlen(newlist) - 1);
1180 cvar_set("g_maplist", newlist);
1181 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1183 // NOTE: the selected map has just been inserted at (insertpos-1)th position
1184 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
1185 if(Map_Check(Map_Current, 1))
1193 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1196 bprint( "Maplist is empty! Resetting it to default map list.\n" );
1197 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
1198 if(autocvar_g_maplist_shuffle)
1200 localcmd("\nmenu_cmd sync\n");
1201 Map_Count = tokenizebyseparator(autocvar_g_maplist, " ");
1204 error("empty maplist, cannot select a new map");
1205 Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
1207 if(Map_Current_Name)
1208 strunzone(Map_Current_Name);
1209 Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
1210 // this may or may not be correct, but who cares, in the worst case a map
1211 // isn't chosen in the first pass that should have been
1222 if(autocvar_g_maplist_shuffle > 0)
1223 nextMap = MaplistMethod_Shuffle(autocvar_g_maplist_shuffle + 1);
1226 if(autocvar_g_maplist_selectrandom)
1227 nextMap = MaplistMethod_Random();
1230 nextMap = MaplistMethod_Iterate();
1233 nextMap = MaplistMethod_Repeat();
1237 Map_Goto_SetFloat(nextMap);
1238 return getmapname_stored;
1244 float DoNextMapOverride(float reinit)
1246 if(autocvar_g_campaign)
1248 CampaignPostIntermission();
1249 alreadychangedlevel = TRUE;
1252 if(autocvar_quit_when_empty)
1254 if(player_count <= currentbots)
1257 alreadychangedlevel = TRUE;
1261 if(autocvar_quit_and_redirect != "")
1263 redirection_target = strzone(autocvar_quit_and_redirect);
1264 alreadychangedlevel = TRUE;
1267 if (!reinit && autocvar_samelevel) // if samelevel is set, stay on same level
1269 localcmd("restart\n");
1270 alreadychangedlevel = TRUE;
1273 if(autocvar_nextmap != "")
1274 if(MapInfo_CheckMap(autocvar_nextmap))
1276 Map_Goto_SetStr(autocvar_nextmap);
1278 alreadychangedlevel = TRUE;
1281 if(!reinit && autocvar_lastlevel)
1283 cvar_settemp_restore();
1284 localcmd("set lastlevel 0\ntogglemenu 1\n");
1285 alreadychangedlevel = TRUE;
1291 void GotoNextMap(float reinit)
1296 if (alreadychangedlevel)
1298 alreadychangedlevel = TRUE;
1304 for(allowReset = 1; allowReset >= 0; --allowReset)
1306 nextMap = GetNextMap();
1312 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
1313 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
1314 if(autocvar_g_maplist_shuffle)
1316 localcmd("\nmenu_cmd sync\n");
1320 error("Everything is broken - not even the default map list works. Please report this to the developers.");
1332 When the player presses attack or jump, change to the next level
1335 .float autoscreenshot;
1336 void() MapVote_Start;
1337 void() MapVote_Think;
1338 float mapvote_initialized;
1339 void IntermissionThink()
1341 FixIntermissionClient(self);
1343 float server_screenshot = (autocvar_sv_autoscreenshot && self.cvar_cl_autoscreenshot);
1344 float client_screenshot = (self.cvar_cl_autoscreenshot == 2);
1346 if( (server_screenshot || client_screenshot)
1347 && ((self.autoscreenshot > 0) && (time > self.autoscreenshot)) )
1349 self.autoscreenshot = -1;
1350 if(clienttype(self) == CLIENTTYPE_REAL) { stuffcmd(self, sprintf("\nscreenshot screenshots/autoscreenshot/%s-%s.jpg; echo \"^5A screenshot has been taken at request of the server.\"", GetMapname(), strftime(FALSE, "%s"))); }
1354 if (time < intermission_exittime)
1357 if(!mapvote_initialized)
1358 if (time < intermission_exittime + 10 && !(self.BUTTON_ATCK || self.BUTTON_JUMP || self.BUTTON_ATCK2 || self.BUTTON_HOOK || self.BUTTON_USE))
1368 Returns the entity to view from
1372 entity FindIntermission()
1377 // look for info_intermission first
1378 spot = find (world, classname, "info_intermission");
1380 { // pick a random one
1384 spot = find (spot, classname, "info_intermission");
1386 spot = find (spot, classname, "info_intermission");
1392 // then look for the start position
1393 spot = find (world, classname, "info_player_start");
1397 // testinfo_player_start is only found in regioned levels
1398 spot = find (world, classname, "testplayerstart");
1402 // then look for the start position
1403 spot = find (world, classname, "info_player_deathmatch");
1407 //objerror ("FindIntermission: no spot");
1413 ===============================================================================
1417 ===============================================================================
1420 void DumpStats(float final)
1429 to_console = autocvar_sv_logscores_console;
1430 to_eventlog = autocvar_sv_eventlog;
1431 to_file = autocvar_sv_logscores_file;
1435 to_console = TRUE; // always print printstats replies
1436 to_eventlog = FALSE; // but never print them to the event log
1440 if(autocvar_sv_eventlog_console)
1441 to_console = FALSE; // otherwise we get the output twice
1447 s = strcat(s, GetGametype(), "_", GetMapname(), ":", ftos(rint(time)));
1457 file = fopen(autocvar_sv_logscores_filename, FILE_APPEND);
1461 fputs(file, strcat(s, "\n"));
1464 s = strcat(":labels:player:", GetPlayerScoreString(world, 0));
1470 fputs(file, strcat(s, "\n"));
1472 FOR_EACH_CLIENT(other)
1474 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && autocvar_sv_logscores_bots))
1476 s = strcat(":player:see-labels:", GetPlayerScoreString(other, 0), ":");
1477 s = strcat(s, ftos(rint(time - other.jointime)), ":");
1478 if(other.classname == "player" || g_arena || g_ca || g_lms)
1479 s = strcat(s, ftos(other.team), ":");
1481 s = strcat(s, "spectator:");
1484 print(s, other.netname, "\n");
1486 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname));
1488 fputs(file, strcat(s, other.netname, "\n"));
1494 s = strcat(":labels:teamscores:", GetTeamScoreString(0, 0));
1500 fputs(file, strcat(s, "\n"));
1502 for(i = 1; i < 16; ++i)
1504 s = strcat(":teamscores:see-labels:", GetTeamScoreString(i, 0));
1505 s = strcat(s, ":", ftos(i));
1511 fputs(file, strcat(s, "\n"));
1518 GameLogEcho(":end");
1521 fputs(file, ":end\n");
1526 void FixIntermissionClient(entity e)
1529 if(!e.autoscreenshot) // initial call
1531 e.autoscreenshot = time + 0.8; // used for autoscreenshot
1533 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
1534 e.solid = SOLID_NOT;
1535 e.movetype = MOVETYPE_NONE;
1536 e.takedamage = DAMAGE_NO;
1539 e.weaponentity.effects = EF_NODRAW;
1540 if (e.weaponentity.weaponentity)
1541 e.weaponentity.weaponentity.effects = EF_NODRAW;
1543 if(clienttype(e) == CLIENTTYPE_REAL)
1545 stuffcmd(e, "\nscr_printspeed 1000000\n");
1546 s = autocvar_sv_intermission_cdtrack;
1548 stuffcmd(e, strcat("\ncd loop ", s, "\n"));
1550 WriteByte(MSG_ONE, SVC_INTERMISSION);
1555 void minstagib_stop_countdown(entity e);
1557 go to the next level for deathmatch
1558 only called if a time or frag limit has expired
1564 intermission_running = 1;
1566 // enforce a wait time before allowing changelevel
1567 if(player_count > 0)
1568 intermission_exittime = time + autocvar_sv_mapchange_delay;
1570 intermission_exittime = -1;
1573 WriteByte (MSG_ALL, SVC_CDTRACK);
1574 WriteByte (MSG_ALL, 3);
1575 WriteByte (MSG_ALL, 3);
1576 // done in FixIntermission
1579 //pos = FindIntermission ();
1587 PlayerStats_EndMatch(1);
1589 PlayerStats_AddGlobalInfo(e);
1590 PlayerStats_Shutdown();
1591 WeaponStats_Shutdown();
1593 if(autocvar_sv_eventlog)
1594 GameLogEcho(":gameover");
1598 FOR_EACH_PLAYER(other) {
1599 minstagib_stop_countdown(other);
1600 FixIntermissionClient(other);
1602 bprint(other.netname, " ^7wins.\n");
1605 if(autocvar_g_campaign)
1606 CampaignPreIntermission();
1608 MUTATOR_CALLHOOK(MatchEnd);
1610 localcmd("\nsv_hook_gameend\n");
1617 Exit deathmatch games upon conditions
1620 void CheckRules_Player()
1622 if (gameover) // someone else quit the game already
1625 if(self.deadflag == DEAD_NO)
1626 self.play_time += frametime;
1628 // fixme: don't check players; instead check spawnfunc_dom_team and spawnfunc_ctf_team entities
1629 // (div0: and that in CheckRules_World please)
1632 float checkrules_equality;
1633 float checkrules_suddendeathwarning;
1634 float checkrules_suddendeathend;
1635 float checkrules_overtimesadded; //how many overtimes have been already added
1637 float WINNING_NO = 0; // no winner, but time limits may terminate the game
1638 float WINNING_YES = 1; // winner found
1639 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
1640 float WINNING_STARTSUDDENDEATHOVERTIME = 3; // no winner, enter suddendeath overtime NOW
1642 float InitiateSuddenDeath()
1644 // Check first whether normal overtimes could be added before initiating suddendeath mode
1645 // - for this timelimit_overtime needs to be >0 of course
1646 // - also check the winning condition calculated in the previous frame and only add normal overtime
1647 // again, if at the point at which timelimit would be extended again, still no winner was found
1648 if (!autocvar_g_campaign && (checkrules_overtimesadded >= 0) && (checkrules_overtimesadded < autocvar_timelimit_overtimes) && autocvar_timelimit_overtime && !(g_race && !g_race_qualifying))
1650 return 1; // need to call InitiateOvertime later
1654 if(!checkrules_suddendeathend)
1656 if(autocvar_g_campaign)
1657 checkrules_suddendeathend = time; // no suddendeath in campaign
1659 checkrules_suddendeathend = time + 60 * autocvar_timelimit_suddendeath;
1660 if(g_race && !g_race_qualifying)
1661 race_StartCompleting();
1667 void InitiateOvertime() // ONLY call this if InitiateSuddenDeath returned true
1669 ++checkrules_overtimesadded;
1670 //add one more overtime by simply extending the timelimit
1672 tl = autocvar_timelimit;
1673 tl += autocvar_timelimit_overtime;
1674 cvar_set("timelimit", ftos(tl));
1675 string minutesPlural;
1676 if (autocvar_timelimit_overtime == 1)
1677 minutesPlural = " ^3minute";
1679 minutesPlural = " ^3minutes";
1683 "^3Now playing ^1OVERTIME^3!\n\n^3Added ^1",
1684 ftos(autocvar_timelimit_overtime),
1691 float GetWinningCode(float fraglimitreached, float equality)
1693 if(autocvar_g_campaign == 1)
1694 if(fraglimitreached)
1701 if(fraglimitreached)
1702 return WINNING_STARTSUDDENDEATHOVERTIME;
1704 return WINNING_NEVER;
1706 if(fraglimitreached)
1712 // set the .winning flag for exactly those players with a given field value
1713 void SetWinners(.float field, float value)
1716 FOR_EACH_PLAYER(head)
1717 head.winning = (head.field == value);
1720 // set the .winning flag for those players with a given field value
1721 void AddWinners(.float field, float value)
1724 FOR_EACH_PLAYER(head)
1725 if(head.field == value)
1729 // clear the .winning flags
1730 void ClearWinners(void)
1733 FOR_EACH_PLAYER(head)
1737 // Onslaught winning condition:
1738 // game terminates if only one team has a working generator (or none)
1739 float WinningCondition_Onslaught()
1742 float t1, t2, t3, t4;
1744 WinningConditionHelper(); // set worldstatus
1749 // first check if the game has ended
1750 t1 = t2 = t3 = t4 = 0;
1751 head = find(world, classname, "onslaught_generator");
1754 if (head.health > 0)
1756 if (head.team == COLOR_TEAM1) t1 = 1;
1757 if (head.team == COLOR_TEAM2) t2 = 1;
1758 if (head.team == COLOR_TEAM3) t3 = 1;
1759 if (head.team == COLOR_TEAM4) t4 = 1;
1761 head = find(head, classname, "onslaught_generator");
1763 if (t1 + t2 + t3 + t4 < 2)
1765 // game over, only one team remains (or none)
1767 if (t1) SetWinners(team, COLOR_TEAM1);
1768 if (t2) SetWinners(team, COLOR_TEAM2);
1769 if (t3) SetWinners(team, COLOR_TEAM3);
1770 if (t4) SetWinners(team, COLOR_TEAM4);
1771 dprint("Have a winner, ending game.\n");
1775 // Two or more teams remain
1779 float LMS_NewPlayerLives()
1782 fl = autocvar_fraglimit;
1786 // first player has left the game for dying too much? Nobody else can get in.
1787 if(lms_lowest_lives < 1)
1790 if(!autocvar_g_lms_join_anytime)
1791 if(lms_lowest_lives < fl - autocvar_g_lms_last_join)
1794 return bound(1, lms_lowest_lives, fl);
1797 // Assault winning condition: If the attackers triggered a round end (by fulfilling all objectives)
1798 // they win. Otherwise the defending team wins once the timelimit passes.
1799 void assault_new_round();
1800 float WinningCondition_Assault()
1804 WinningConditionHelper(); // set worldstatus
1806 status = WINNING_NO;
1807 // as the timelimit has not yet passed just assume the defending team will win
1808 if(assault_attacker_team == COLOR_TEAM1)
1810 SetWinners(team, COLOR_TEAM2);
1814 SetWinners(team, COLOR_TEAM1);
1818 ent = find(world, classname, "target_assault_roundend");
1821 if(ent.winning) // round end has been triggered by attacking team
1823 bprint("ASSAULT: round completed...\n");
1824 SetWinners(team, assault_attacker_team);
1826 TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 666 - TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 0));
1828 if(ent.cnt == 1 || autocvar_g_campaign) // this was the second round
1830 status = WINNING_YES;
1837 assault_new_round();
1846 // LMS winning condition: game terminates if and only if there's at most one
1847 // one player who's living lives. Top two scores being equal cancels the time
1849 float WinningCondition_LMS()
1856 have_player = FALSE;
1857 have_players = FALSE;
1858 l = LMS_NewPlayerLives();
1860 head = find(world, classname, "player");
1863 head2 = find(head, classname, "player");
1865 have_players = TRUE;
1869 // we have at least one player
1872 // two or more active players - continue with the game
1876 // exactly one player?
1879 SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1883 // game still running (that is, nobody got removed from the game by a frag yet)? then continue
1889 // and assign him his first place
1890 PlayerScore_Add(head, SP_LMS_RANK, 1);
1897 // nobody is playing at all...
1900 // wait for players...
1904 // SNAFU (maybe a draw game?)
1906 dprint("No players, ending game.\n");
1911 // When we get here, we have at least two players who are actually LIVING,
1912 // now check if the top two players have equal score.
1913 WinningConditionHelper();
1916 if(WinningConditionHelper_winner)
1917 WinningConditionHelper_winner.winning = TRUE;
1918 if(WinningConditionHelper_topscore == WinningConditionHelper_secondscore)
1919 return WINNING_NEVER;
1921 // Top two have different scores? Way to go for our beloved TIMELIMIT!
1925 void ShuffleMaplist()
1927 cvar_set("g_maplist", shufflewords(autocvar_g_maplist));
1931 float WinningCondition_Scores(float limit, float leadlimit)
1935 // TODO make everything use THIS winning condition (except LMS)
1936 WinningConditionHelper();
1940 team1_score = TeamScore_GetCompareValue(COLOR_TEAM1);
1941 team2_score = TeamScore_GetCompareValue(COLOR_TEAM2);
1942 team3_score = TeamScore_GetCompareValue(COLOR_TEAM3);
1943 team4_score = TeamScore_GetCompareValue(COLOR_TEAM4);
1947 if(WinningConditionHelper_winner)
1948 WinningConditionHelper_winner.winning = 1;
1949 if(WinningConditionHelper_winnerteam >= 0)
1950 SetWinners(team, WinningConditionHelper_winnerteam);
1952 if(WinningConditionHelper_lowerisbetter)
1954 WinningConditionHelper_topscore = -WinningConditionHelper_topscore;
1955 WinningConditionHelper_secondscore = -WinningConditionHelper_secondscore;
1959 if(WinningConditionHelper_zeroisworst)
1960 leadlimit = 0; // not supported in this mode
1962 if(g_dm || g_tdm || g_arena || g_ca || (g_race && !g_race_qualifying) || g_nexball)
1963 // these modes always score in increments of 1, thus this makes sense
1965 if(leaderfrags != WinningConditionHelper_topscore)
1967 leaderfrags = WinningConditionHelper_topscore;
1970 if (leaderfrags == limit - 1)
1971 Announce("1fragleft");
1972 else if (leaderfrags == limit - 2)
1973 Announce("2fragsleft");
1974 else if (leaderfrags == limit - 3)
1975 Announce("3fragsleft");
1979 limitreached = FALSE;
1981 if(WinningConditionHelper_topscore >= limit)
1982 limitreached = TRUE;
1985 float leadlimitreached;
1986 leadlimitreached = (WinningConditionHelper_topscore - WinningConditionHelper_secondscore >= leadlimit);
1987 if(autocvar_leadlimit_and_fraglimit)
1988 limitreached = (limitreached && leadlimitreached);
1990 limitreached = (limitreached || leadlimitreached);
1994 game_completion_ratio = max(game_completion_ratio, bound(0, WinningConditionHelper_topscore / limit, 1));
1996 return GetWinningCode(
1997 WinningConditionHelper_topscore && limitreached,
1998 WinningConditionHelper_equality
2002 float WinningCondition_Race(float fraglimit)
2013 if(p.race_completed)
2018 wc = WinningCondition_Scores(fraglimit, 0);
2020 // ALWAYS initiate overtime, unless EVERYONE has finished the race!
2021 if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
2022 // do NOT support equality when the laps are all raced!
2023 return WINNING_STARTSUDDENDEATHOVERTIME;
2025 return WINNING_NEVER;
2028 float WinningCondition_QualifyingThenRace(float limit)
2031 wc = WinningCondition_Scores(limit, 0);
2033 // NEVER initiate overtime
2034 if(wc == WINNING_YES || wc == WINNING_STARTSUDDENDEATHOVERTIME)
2042 float WinningCondition_RanOutOfSpawns()
2046 if(have_team_spawns <= 0)
2049 if(autocvar_g_spawn_useallspawns <= 0)
2052 if(!some_spawn_has_been_used)
2055 team1_score = team2_score = team3_score = team4_score = 0;
2057 FOR_EACH_PLAYER(head) if(head.deadflag == DEAD_NO)
2059 if(head.team == COLOR_TEAM1)
2061 else if(head.team == COLOR_TEAM2)
2063 else if(head.team == COLOR_TEAM3)
2065 else if(head.team == COLOR_TEAM4)
2069 for(head = world; (head = find(head, classname, "info_player_deathmatch")) != world; )
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)
2082 if(team1_score + team2_score + team3_score + team4_score == 0)
2084 checkrules_equality = TRUE;
2087 else if(team1_score + team2_score + team3_score + team4_score == 1)
2092 else if(team2_score)
2094 else if(team3_score)
2096 else // if(team4_score)
2098 CheckAllowedTeams(world);
2099 for(i = 0; i < MAX_TEAMSCORE; ++i)
2101 if(t != COLOR_TEAM1) if(c1 >= 0) TeamScore_AddToTeam(COLOR_TEAM1, i, -1000);
2102 if(t != COLOR_TEAM2) if(c2 >= 0) TeamScore_AddToTeam(COLOR_TEAM2, i, -1000);
2103 if(t != COLOR_TEAM3) if(c3 >= 0) TeamScore_AddToTeam(COLOR_TEAM3, i, -1000);
2104 if(t != COLOR_TEAM4) if(c4 >= 0) TeamScore_AddToTeam(COLOR_TEAM4, i, -1000);
2107 AddWinners(team, t);
2118 Exit deathmatch games upon conditions
2121 void ReadyRestart();
2122 void CheckRules_World()
2134 MapVote_Think should now do that part
2135 if (intermission_running)
2136 if (time >= intermission_exittime + 60)
2138 if(!DoNextMapOverride())
2144 if (gameover) // someone else quit the game already
2146 if(player_count == 0) // Nobody there? Then let's go to the next map
2148 // this will actually check the player count in the next frame
2149 // again, but this shouldn't hurt
2153 timelimit = autocvar_timelimit * 60;
2154 fraglimit = autocvar_fraglimit;
2155 leadlimit = autocvar_leadlimit;
2157 if(inWarmupStage || time <= game_starttime) // NOTE: this is <= to prevent problems in the very tic where the game starts
2160 timelimit = 0; // timelimit is not made for warmup
2162 fraglimit = 0; // no fraglimit for now
2163 leadlimit = 0; // no leadlimit for now
2168 timelimit += game_starttime;
2170 else if (timelimit < 0)
2178 timelimit = 0; // ONS has its own overtime rule
2183 if(timelimit > game_starttime)
2184 game_completion_ratio = (time - game_starttime) / (timelimit - game_starttime);
2186 game_completion_ratio = 0;
2188 if(checkrules_suddendeathend)
2190 if(!checkrules_suddendeathwarning)
2192 checkrules_suddendeathwarning = TRUE;
2193 if(g_race && !g_race_qualifying)
2194 bcenterprint("^3Everyone, finish your lap! The race is over!");
2196 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
2201 if (timelimit && time >= timelimit)
2203 if(g_race && (g_race_qualifying == 2) && timelimit > 0)
2206 float playerswithlaps;
2209 totalplayers = playerswithlaps = readyplayers = 0;
2210 FOR_EACH_PLAYER(head)
2213 if(PlayerScore_Add(head, SP_RACE_FASTEST, 0))
2219 // at least 2 of the players have completed a lap: start the RACE
2220 // otherwise, the players should end the qualifying on their own
2221 if(readyplayers || playerswithlaps >= 2)
2223 checkrules_suddendeathend = 0;
2224 ReadyRestart(); // go to race
2228 wantovertime |= InitiateSuddenDeath();
2231 wantovertime |= InitiateSuddenDeath();
2235 if (checkrules_suddendeathend && time >= checkrules_suddendeathend)
2241 float checkrules_status;
2242 checkrules_status = WinningCondition_RanOutOfSpawns();
2243 if(checkrules_status == WINNING_YES)
2245 bprint("Hey! Someone ran out of spawns!\n");
2247 else if(g_race && !g_race_qualifying && timelimit >= 0)
2249 checkrules_status = WinningCondition_Race(fraglimit);
2250 //print("WC_RACE yields ", ftos(checkrules_status), "\n");
2252 else if(g_race && g_race_qualifying == 2 && timelimit >= 0)
2254 checkrules_status = WinningCondition_QualifyingThenRace(fraglimit);
2255 //print("WC_QUALIFYING_THEN_RACE yields ", ftos(checkrules_status), "\n");
2259 checkrules_status = WinningCondition_Assault(); // TODO remove this?
2263 checkrules_status = WinningCondition_LMS();
2265 else if (g_onslaught)
2267 checkrules_status = WinningCondition_Onslaught(); // TODO remove this?
2271 checkrules_status = WinningCondition_Scores(fraglimit, leadlimit);
2272 //print("WC_SCORES yields ", ftos(checkrules_status), "\n");
2275 if(checkrules_status == WINNING_STARTSUDDENDEATHOVERTIME)
2277 checkrules_status = WINNING_NEVER;
2278 checkrules_overtimesadded = -1;
2279 wantovertime |= InitiateSuddenDeath();
2282 if(checkrules_status == WINNING_NEVER)
2283 // equality cases! Nobody wins if the overtime ends in a draw.
2288 if(checkrules_status == WINNING_NEVER)
2291 checkrules_status = WINNING_YES;
2294 if(checkrules_suddendeathend)
2295 if(checkrules_status != WINNING_NEVER || time >= checkrules_suddendeathend)
2296 checkrules_status = WINNING_YES;
2298 if(checkrules_status == WINNING_YES)
2300 //print("WINNING\n");
2305 float mapvote_nextthink;
2306 float mapvote_initialized;
2307 float mapvote_keeptwotime;
2308 float mapvote_timeout;
2309 string mapvote_message;
2310 #define MAPVOTE_SCREENSHOT_DIRS_COUNT 4
2311 string mapvote_screenshot_dirs[MAPVOTE_SCREENSHOT_DIRS_COUNT];
2312 float mapvote_screenshot_dirs_count;
2314 float mapvote_count;
2315 float mapvote_count_real;
2316 string mapvote_maps[MAPVOTE_COUNT];
2317 float mapvote_maps_screenshot_dir[MAPVOTE_COUNT];
2318 string mapvote_maps_pakfile[MAPVOTE_COUNT];
2319 float mapvote_maps_suggested[MAPVOTE_COUNT];
2320 string mapvote_suggestions[MAPVOTE_COUNT];
2321 float mapvote_suggestion_ptr;
2322 float mapvote_voters;
2323 float mapvote_selections[MAPVOTE_COUNT];
2325 float mapvote_detail;
2326 float mapvote_abstain;
2329 void MapVote_ClearAllVotes()
2331 FOR_EACH_CLIENT(other)
2335 string MapVote_Suggest(string m)
2339 return "That's not how to use this command.";
2340 if(!autocvar_g_maplist_votable_suggestions)
2341 return "Suggestions are not accepted on this server.";
2342 if(mapvote_initialized)
2343 return "Can't suggest - voting is already in progress!";
2344 m = MapInfo_FixName(m);
2346 return "The map you suggested is not available on this server.";
2347 if(!autocvar_g_maplist_votable_suggestions_override_mostrecent)
2349 return "This server does not allow for recent maps to be played again. Please be patient for some rounds.";
2351 if(!MapInfo_CheckMap(m))
2352 return "The map you suggested does not support the current game mode.";
2353 for(i = 0; i < mapvote_suggestion_ptr; ++i)
2354 if(mapvote_suggestions[i] == m)
2355 return "This map was already suggested.";
2356 if(mapvote_suggestion_ptr >= MAPVOTE_COUNT)
2358 i = floor(random() * mapvote_suggestion_ptr);
2362 i = mapvote_suggestion_ptr;
2363 mapvote_suggestion_ptr += 1;
2365 if(mapvote_suggestions[i] != "")
2366 strunzone(mapvote_suggestions[i]);
2367 mapvote_suggestions[i] = strzone(m);
2368 if(autocvar_sv_eventlog)
2369 GameLogEcho(strcat(":vote:suggested:", m, ":", ftos(self.playerid)));
2370 return strcat("Suggestion of ", m, " accepted.");
2373 void MapVote_AddVotable(string nextMap, float isSuggestion)
2376 string pakfile, mapfile;
2380 for(j = 0; j < mapvote_count; ++j)
2381 if(mapvote_maps[j] == nextMap)
2383 // suggestions might be no longer valid/allowed after gametype switch!
2385 if(!MapInfo_CheckMap(nextMap))
2387 mapvote_maps[mapvote_count] = strzone(nextMap);
2388 mapvote_maps_suggested[mapvote_count] = isSuggestion;
2390 pakfile = string_null;
2391 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2393 mapfile = strcat(mapvote_screenshot_dirs[i], "/", mapvote_maps[i]);
2394 pakfile = whichpack(strcat(mapfile, ".tga"));
2396 pakfile = whichpack(strcat(mapfile, ".jpg"));
2398 pakfile = whichpack(strcat(mapfile, ".png"));
2402 if(i >= mapvote_screenshot_dirs_count)
2403 i = 0; // FIXME maybe network this error case, as that means there is no mapshot on the server?
2404 for(o = strstr(pakfile, "/", 0)+1; o > 0; o = strstr(pakfile, "/", 0)+1)
2405 pakfile = substring(pakfile, o, -1);
2407 mapvote_maps_screenshot_dir[mapvote_count] = i;
2408 mapvote_maps_pakfile[mapvote_count] = strzone(pakfile);
2413 void MapVote_Spawn();
2419 MapVote_ClearAllVotes();
2422 mapvote_detail = !autocvar_g_maplist_votable_nodetail;
2423 mapvote_abstain = autocvar_g_maplist_votable_abstain;
2426 nmax = min(MAPVOTE_COUNT - 1, autocvar_g_maplist_votable);
2428 nmax = min(MAPVOTE_COUNT, autocvar_g_maplist_votable);
2429 smax = min3(nmax, autocvar_g_maplist_votable_suggestions, mapvote_suggestion_ptr);
2431 // we need this for AddVotable, as that cycles through the screenshot dirs
2432 mapvote_screenshot_dirs_count = tokenize_console(autocvar_g_maplist_votable_screenshot_dir);
2433 if(mapvote_screenshot_dirs_count == 0)
2434 mapvote_screenshot_dirs_count = tokenize_console("maps levelshots");
2435 mapvote_screenshot_dirs_count = min(mapvote_screenshot_dirs_count, MAPVOTE_SCREENSHOT_DIRS_COUNT);
2436 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2437 mapvote_screenshot_dirs[i] = strzone(argv(i));
2439 if(mapvote_suggestion_ptr)
2440 for(i = 0; i < 100 && mapvote_count < smax; ++i)
2441 MapVote_AddVotable(mapvote_suggestions[floor(random() * mapvote_suggestion_ptr)], TRUE);
2443 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
2444 MapVote_AddVotable(GetNextMap(), FALSE);
2446 if(mapvote_count == 0)
2448 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
2449 cvar_set("g_maplist", MapInfo_ListAllAllowedMaps(MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
2450 if(autocvar_g_maplist_shuffle)
2452 localcmd("\nmenu_cmd sync\n");
2453 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
2454 MapVote_AddVotable(GetNextMap(), FALSE);
2457 mapvote_count_real = mapvote_count;
2459 MapVote_AddVotable("don't care", 0);
2461 //dprint("mapvote count is ", ftos(mapvote_count), "\n");
2463 mapvote_keeptwotime = time + autocvar_g_maplist_votable_keeptwotime;
2464 mapvote_timeout = time + autocvar_g_maplist_votable_timeout;
2465 if(mapvote_count_real < 3 || mapvote_keeptwotime <= time)
2466 mapvote_keeptwotime = 0;
2467 mapvote_message = "Choose a map and press its key!";
2472 void MapVote_SendPicture(float id)
2475 WriteByte(MSG_ONE, SVC_TEMPENTITY);
2476 WriteByte(MSG_ONE, TE_CSQC_PICTURE);
2477 WriteByte(MSG_ONE, id);
2478 WritePicture(MSG_ONE, strcat(mapvote_screenshot_dirs[mapvote_maps_screenshot_dir[id]], "/", mapvote_maps[id]), 3072);
2481 float MapVote_GetMapMask()
2483 float mask, i, power;
2485 for(i = 0, power = 1; i < mapvote_count; ++i, power *= 2)
2486 if(mapvote_maps[i] != "")
2492 float MapVote_SendEntity(entity to, float sf)
2497 sf &~= 2; // if we send 1, we don't need to also send 2
2499 WriteByte(MSG_ENTITY, ENT_CLIENT_MAPVOTE);
2500 WriteByte(MSG_ENTITY, sf);
2504 // flag 1 == initialization
2505 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
2506 WriteString(MSG_ENTITY, mapvote_screenshot_dirs[i]);
2507 WriteString(MSG_ENTITY, "");
2508 WriteByte(MSG_ENTITY, mapvote_count);
2509 WriteByte(MSG_ENTITY, mapvote_abstain);
2510 WriteByte(MSG_ENTITY, mapvote_detail);
2511 WriteCoord(MSG_ENTITY, mapvote_timeout);
2512 if(mapvote_count <= 8)
2513 WriteByte(MSG_ENTITY, MapVote_GetMapMask());
2515 WriteShort(MSG_ENTITY, MapVote_GetMapMask());
2516 for(i = 0; i < mapvote_count; ++i)
2517 if(mapvote_maps[i] != "")
2519 if(mapvote_abstain && i == mapvote_count - 1)
2521 WriteString(MSG_ENTITY, ""); // abstain needs no text
2522 WriteString(MSG_ENTITY, ""); // abstain needs no pack
2523 WriteByte(MSG_ENTITY, 0); // abstain needs no screenshot dir
2527 WriteString(MSG_ENTITY, mapvote_maps[i]);
2528 WriteString(MSG_ENTITY, mapvote_maps_pakfile[i]);
2529 WriteByte(MSG_ENTITY, mapvote_maps_screenshot_dir[i]);
2536 // flag 2 == update of mask
2537 if(mapvote_count <= 8)
2538 WriteByte(MSG_ENTITY, MapVote_GetMapMask());
2540 WriteShort(MSG_ENTITY, MapVote_GetMapMask());
2546 for(i = 0; i < mapvote_count; ++i)
2547 if(mapvote_maps[i] != "")
2548 WriteByte(MSG_ENTITY, mapvote_selections[i]);
2550 WriteByte(MSG_ENTITY, to.mapvote);
2556 void MapVote_Spawn()
2558 Net_LinkEntity(mapvote_ent = spawn(), FALSE, 0, MapVote_SendEntity);
2561 void MapVote_TouchMask()
2563 mapvote_ent.SendFlags |= 2;
2566 void MapVote_TouchVotes(entity voter)
2568 mapvote_ent.SendFlags |= 4;
2571 float MapVote_Finished(float mappos)
2577 if(autocvar_sv_eventlog)
2579 result = strcat(":vote:finished:", mapvote_maps[mappos]);
2580 result = strcat(result, ":", ftos(mapvote_selections[mappos]), "::");
2581 didntvote = mapvote_voters;
2582 for(i = 0; i < mapvote_count; ++i)
2583 if(mapvote_maps[i] != "")
2585 didntvote -= mapvote_selections[i];
2588 result = strcat(result, ":", mapvote_maps[i]);
2589 result = strcat(result, ":", ftos(mapvote_selections[i]));
2592 result = strcat(result, ":didn't vote:", ftos(didntvote));
2594 GameLogEcho(result);
2595 if(mapvote_maps_suggested[mappos])
2596 GameLogEcho(strcat(":vote:suggestion_accepted:", mapvote_maps[mappos]));
2599 FOR_EACH_REALCLIENT(other)
2600 FixClientCvars(other);
2602 Map_Goto_SetStr(mapvote_maps[mappos]);
2604 alreadychangedlevel = TRUE;
2607 void MapVote_CheckRules_1()
2611 for(i = 0; i < mapvote_count; ++i) if(mapvote_maps[i] != "")
2613 //dprint("Map ", ftos(i), ": "); dprint(mapvote_maps[i], "\n");
2614 mapvote_selections[i] = 0;
2618 FOR_EACH_REALCLIENT(other)
2623 i = other.mapvote - 1;
2624 //dprint("Player ", other.netname, " vote = ", ftos(other.mapvote - 1), "\n");
2625 mapvote_selections[i] = mapvote_selections[i] + 1;
2630 float MapVote_CheckRules_2()
2633 float firstPlace, secondPlace;
2634 float firstPlaceVotes, secondPlaceVotes;
2635 float mapvote_voters_real;
2638 if(mapvote_count_real == 1)
2639 return MapVote_Finished(0);
2641 mapvote_voters_real = mapvote_voters;
2643 mapvote_voters_real -= mapvote_selections[mapvote_count - 1];
2645 RandomSelection_Init();
2646 for(i = 0; i < mapvote_count_real; ++i) if(mapvote_maps[i] != "")
2647 RandomSelection_Add(world, i, string_null, 1, mapvote_selections[i]);
2648 firstPlace = RandomSelection_chosen_float;
2649 firstPlaceVotes = RandomSelection_best_priority;
2650 //dprint("First place: ", ftos(firstPlace), "\n");
2651 //dprint("First place votes: ", ftos(firstPlaceVotes), "\n");
2653 RandomSelection_Init();
2654 for(i = 0; i < mapvote_count_real; ++i) if(mapvote_maps[i] != "")
2656 RandomSelection_Add(world, i, string_null, 1, mapvote_selections[i]);
2657 secondPlace = RandomSelection_chosen_float;
2658 secondPlaceVotes = RandomSelection_best_priority;
2659 //dprint("Second place: ", ftos(secondPlace), "\n");
2660 //dprint("Second place votes: ", ftos(secondPlaceVotes), "\n");
2662 if(firstPlace == -1)
2663 error("No first place in map vote... WTF?");
2665 if(secondPlace == -1 || time > mapvote_timeout || (mapvote_voters_real - firstPlaceVotes) < firstPlaceVotes)
2666 return MapVote_Finished(firstPlace);
2668 if(mapvote_keeptwotime)
2669 if(time > mapvote_keeptwotime || (mapvote_voters_real - firstPlaceVotes - secondPlaceVotes) < secondPlaceVotes)
2672 MapVote_TouchMask();
2673 mapvote_message = "Now decide between the TOP TWO!";
2674 mapvote_keeptwotime = 0;
2675 result = strcat(":vote:keeptwo:", mapvote_maps[firstPlace]);
2676 result = strcat(result, ":", ftos(firstPlaceVotes));
2677 result = strcat(result, ":", mapvote_maps[secondPlace]);
2678 result = strcat(result, ":", ftos(secondPlaceVotes), "::");
2679 didntvote = mapvote_voters;
2680 for(i = 0; i < mapvote_count; ++i)
2681 if(mapvote_maps[i] != "")
2683 didntvote -= mapvote_selections[i];
2685 if(i != secondPlace)
2687 result = strcat(result, ":", mapvote_maps[i]);
2688 result = strcat(result, ":", ftos(mapvote_selections[i]));
2689 if(i < mapvote_count_real)
2691 strunzone(mapvote_maps[i]);
2692 mapvote_maps[i] = "";
2693 strunzone(mapvote_maps_pakfile[i]);
2694 mapvote_maps_pakfile[i] = "";
2698 result = strcat(result, ":didn't vote:", ftos(didntvote));
2699 if(autocvar_sv_eventlog)
2700 GameLogEcho(result);
2710 keeptwo = mapvote_keeptwotime;
2711 MapVote_CheckRules_1(); // count
2712 if(MapVote_CheckRules_2()) // decide
2716 FOR_EACH_REALCLIENT(other)
2718 // hide scoreboard again
2719 if(other.health != 2342)
2721 other.health = 2342;
2723 if(clienttype(other) == CLIENTTYPE_REAL)
2726 WriteByte(MSG_ONE, SVC_FINALE);
2727 WriteString(MSG_ONE, "");
2731 // clear possibly invalid votes
2732 if(mapvote_maps[other.mapvote - 1] == "")
2734 // use impulses as new vote
2735 if(other.impulse >= 1 && other.impulse <= mapvote_count)
2736 if(mapvote_maps[other.impulse - 1] != "")
2738 other.mapvote = other.impulse;
2739 MapVote_TouchVotes(other);
2747 MapVote_CheckRules_1(); // just count
2749 void MapVote_Start()
2754 // wait for stats to be sent first
2755 if(!playerstats_waitforme)
2758 MapInfo_Enumerate();
2759 if(MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
2762 void MapVote_Think()
2767 if(alreadychangedlevel)
2770 if(time < mapvote_nextthink)
2774 mapvote_nextthink = time + 0.5;
2776 if(!mapvote_initialized)
2778 if(autocvar_rescan_pending == 1)
2780 cvar_set("rescan_pending", "2");
2781 localcmd("fs_rescan\nrescan_pending 3\n");
2784 else if(autocvar_rescan_pending == 2)
2788 else if(autocvar_rescan_pending == 3)
2790 // now build missing mapinfo files
2791 if(!MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
2794 // we're done, start the timer
2795 cvar_set("rescan_pending", "0");
2798 mapvote_initialized = TRUE;
2799 if(DoNextMapOverride(0))
2801 if(!autocvar_g_maplist_votable || player_count <= 0)
2812 string GotoMap(string m)
2814 if(!MapInfo_CheckMap(m))
2815 return "The map you chose is not available on this server.";
2816 cvar_set("nextmap", m);
2817 cvar_set("timelimit", "-1");
2818 if(mapvote_initialized || alreadychangedlevel)
2820 if(DoNextMapOverride(0))
2821 return "Map switch initiated.";
2823 return "Hm... no. For some reason I like THIS map more.";
2826 return "Map switch will happen after scoreboard.";
2833 FOR_EACH_REALCLIENT(self)
2835 if(self.classname == "spectator")
2837 if(self.enemy.typehitsound)
2838 self.typehit_time = time;
2839 else if(self.enemy.hitsound)
2840 self.hit_time = time;
2844 if(self.typehitsound)
2845 self.typehit_time = time;
2846 else if(self.hitsound)
2847 self.hit_time = time;
2850 altime = time + frametime * (1 + autocvar_g_antilag_nudge);
2851 // add 1 frametime because after this, engine SV_Physics
2852 // increases time by a frametime and then networks the frame
2853 // add another frametime because client shows everything with
2854 // 1 frame of lag (cl_nolerp 0). The last +1 however should not be
2856 FOR_EACH_CLIENT(self)
2858 self.hitsound = FALSE;
2859 self.typehitsound = FALSE;
2860 antilag_record(self, altime);
2867 * returns TRUE if redirecting
2869 float redirection_timeout;
2870 float redirection_nextthink;
2871 float RedirectionThink()
2873 float clients_found;
2875 if(redirection_target == "")
2878 if(!redirection_timeout)
2880 cvar_set("sv_public", "-2");
2881 redirection_timeout = time + 0.6; // this will only try twice... should be able to keep more clients
2882 if(redirection_target == "self")
2883 bprint("^3SERVER NOTICE:^7 restarting the server\n");
2885 bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
2888 if(time < redirection_nextthink)
2891 redirection_nextthink = time + 1;
2894 FOR_EACH_REALCLIENT(self)
2897 print("Redirecting: sending connect command to ", self.netname, "\n");
2898 if(redirection_target == "self")
2899 stuffcmd(self, "\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " reconnect\n");
2901 stuffcmd(self, strcat("\ndisconnect; defer ", ftos(autocvar_quit_and_redirect_timer), " \"connect ", redirection_target, "\"\n"));
2905 print("Redirecting: ", ftos(clients_found), " clients left.\n");
2907 if(time > redirection_timeout || clients_found == 0)
2908 localcmd("\nwait; wait; wait; quit\n");
2913 void TargetMusic_RestoreGame();
2916 // Loaded from a save game
2917 // some things then break, so let's work around them...
2919 // Progs DB (capture records)
2920 ServerProgsDB = db_load(strcat("server.db", autocvar_sessionid));
2924 MapInfo_Enumerate();
2925 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1);
2928 TargetMusic_RestoreGame();
2937 if(world_initialized > 0)
2939 world_initialized = 0;
2940 print("Saving persistent data...\n");
2943 PlayerStats_EndMatch(0);
2945 PlayerStats_AddGlobalInfo(e);
2946 PlayerStats_Shutdown();
2948 if(!cheatcount_total)
2950 if(autocvar_sv_db_saveasdump)
2951 db_dump(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2953 db_save(ServerProgsDB, strcat("server.db", autocvar_sessionid));
2955 if(autocvar_developer)
2957 if(autocvar_sv_db_saveasdump)
2958 db_dump(TemporaryDB, "server-temp.db");
2960 db_save(TemporaryDB, "server-temp.db");
2962 CheatShutdown(); // must be after cheatcount check
2963 db_close(ServerProgsDB);
2964 db_close(TemporaryDB);
2966 // tell the bot system the game is ending now
2969 WeaponStats_Shutdown();
2972 else if(world_initialized == 0)
2974 print("NOTE: crashed before even initializing the world, not saving persistent data\n");