1 float SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS = 1;
2 string redirection_target;
7 float() DoNextMapOverride;
11 if(cvar("g_running_guns"))
13 default_player_alpha = -1;
14 default_weapon_alpha = +1;
16 else if(cvar("g_cloaked"))
18 default_player_alpha = cvar("g_balance_cloaked_alpha");
19 default_weapon_alpha = default_player_alpha;
23 default_player_alpha = cvar("g_player_alpha");
24 if(default_player_alpha <= 0)
25 default_player_alpha = 1;
26 default_weapon_alpha = default_player_alpha;
30 void fteqcc_testbugs()
34 if(!cvar("developer_fteqccbugs"))
37 dprint("*** fteqcc test: checking for bugs...\n");
41 if(sqrt(a) - sqrt(b - a) == 0)
42 dprint("*** fteqcc test: found same-function-twice bug\n");
44 dprint("*** fteqcc test: same-function-twice bug got FINALLY FIXED! HOORAY!\n");
48 world.enemy.frags += 10;
49 if(world.frags > 0.2 || world.frags < -0.2) // don't error out if it's just roundoff errors
50 dprint("*** fteqcc test: found += bug\n");
52 dprint("*** fteqcc test: += bug got FINALLY FIXED! HOORAY!\n");
60 cvar_set("_sv_init", "0");
61 if(cvar("g_maplist_shuffle"))
63 tokenize(cvar_string("g_maplist"));
64 if(argv(0) != GetMapname())
66 cvar_set("nextmap", argv(0));
67 if(!DoNextMapOverride())
73 float world_already_spawned;
74 void worldspawn (void)
76 if(world_already_spawned)
77 error("world already spawned - you may have EXACTLY ONE worldspawn!");
78 world_already_spawned = TRUE;
81 TODO sound pack system
82 // initialize sound pack system
83 soundpack = cvar_string("g_soundpack");
85 soundpack = strcat(soundpack, "/");
86 soundpack = strzone(soundpack);
89 // Precache all player models
90 // Workaround for "invisible players"
91 precache_model("models/player/carni.zym");
92 precache_model("models/player/crash.zym");
93 precache_model("models/player/grunt.zym");
94 precache_model("models/player/headhunter.zym");
95 precache_model("models/player/insurrectionist.zym");
96 precache_model("models/player/jeandarc.zym");
97 precache_model("models/player/lurk.zym");
98 precache_model("models/player/lycanthrope.zym");
99 precache_model("models/player/marine.zym");
100 precache_model("models/player/nexus.zym");
101 precache_model("models/player/pyria.zym");
102 precache_model("models/player/shock.zym");
103 precache_model("models/player/skadi.zym");
104 precache_model("models/player/specop.zym");
105 precache_model("models/player/visitant.zym");
107 //precache_model ("progs/beam.mdl");
108 precache_model ("models/bullet.mdl");
109 precache_model ("models/casing_bronze.mdl");
110 precache_model ("models/casing_shell.mdl");
111 precache_model ("models/casing_steel.mdl");
112 precache_model ("models/ebomb.mdl");
113 precache_model ("models/elaser.mdl");
114 precache_model ("models/flash.md3");
115 precache_model ("models/gibs/bloodyskull.md3");
116 precache_model ("models/gibs/chunk.mdl");
117 precache_model ("models/gibs/eye.md3");
118 precache_model ("models/gibs/gib1.md3");
119 //precache_model ("models/gibs/gib2.md3");
120 //precache_model ("models/gibs/gib3.md3");
121 //precache_model ("models/gibs/gib4.md3");
122 precache_model ("models/gibs/gib5.md3");
123 //precache_model ("models/gibs/gib6.md3");
124 precache_model ("models/gibs/gib1.mdl");
125 precache_model ("models/gibs/gib2.mdl");
126 precache_model ("models/gibs/gib3.mdl");
127 precache_model ("models/grenademodel.md3");
128 precache_model ("models/hagarmissile.mdl");
129 precache_model ("models/items/a_bullets.mdl");
130 precache_model ("models/items/a_cells.md3");
131 precache_model ("models/items/a_rockets.md3");
132 precache_model ("models/items/a_shells.md3");
133 precache_model ("models/items/g_a1.md3");
134 precache_model ("models/items/g_a25.md3");
135 precache_model ("models/items/g_h1.md3");
136 precache_model ("models/items/g_h25.md3");
137 precache_model ("models/items/g_h100.md3");
138 precache_model ("models/items/g_invincible.md3");
139 precache_model ("models/items/g_strength.md3");
140 precache_model ("models/laser.mdl");
141 precache_model ("models/misc/chatbubble.spr");
142 precache_model ("models/misc/teambubble.spr");
143 precache_model ("models/nexflash.md3");
144 precache_model ("models/plasma.mdl");
145 precache_model ("models/plasmatrail.mdl");
146 precache_model ("models/rocket.md3");
147 //precache_model ("models/sprites/grenexpl.spr");
148 precache_model ("models/runematch/rune.mdl");
149 precache_model ("models/runematch/curse.mdl");
150 //precache_model ("models/sprites/hagar.spr");
151 //precache_model ("models/sprites/muzzleflash.spr32");
152 //precache_model ("models/sprites/electrocombo.spr32");
153 //precache_model ("models/sprites/plasmahitwall.spr32");
154 //precache_model ("models/sprites/plasmashot.spr32");
155 //precache_model ("models/sprites/rockexpl.spr");
156 precache_model ("models/tracer.mdl");
157 precache_model ("models/uziflash.md3");
158 precache_model ("models/weapons/g_crylink.md3");
159 precache_model ("models/weapons/g_electro.md3");
160 precache_model ("models/weapons/g_gl.md3");
161 precache_model ("models/weapons/g_hagar.md3");
162 precache_model ("models/weapons/g_nex.md3");
163 precache_model ("models/weapons/g_rl.md3");
164 precache_model ("models/weapons/g_shotgun.md3");
165 precache_model ("models/weapons/g_uzi.md3");
166 precache_model ("models/weapons/v_crylink.md3");
167 precache_model ("models/weapons/v_electro.md3");
168 precache_model ("models/weapons/v_gl.md3");
169 precache_model ("models/weapons/v_hagar.md3");
170 precache_model ("models/weapons/v_laser.md3");
171 precache_model ("models/weapons/v_nex.md3");
172 precache_model ("models/weapons/v_rl.md3");
173 precache_model ("models/weapons/v_shotgun.md3");
174 precache_model ("models/weapons/v_uzi.md3");
175 precache_model ("models/weapons/w_crylink.zym");
176 precache_model ("models/weapons/w_electro.zym");
177 precache_model ("models/weapons/w_gl.zym");
178 precache_model ("models/weapons/w_hagar.zym");
179 precache_model ("models/weapons/w_laser.zym");
180 precache_model ("models/weapons/w_nex.zym");
181 precache_model ("models/weapons/w_rl.zym");
182 precache_model ("models/weapons/w_shotgun.zym");
183 precache_model ("models/weapons/w_uzi.zym");
185 // laser for laser-guided weapons
186 precache_model ("models/laser_dot.mdl");
188 precache_sound ("misc/null.wav");
189 precache_sound ("misc/armor1.wav");
190 precache_sound ("misc/armor25.wav");
191 precache_sound ("misc/armorimpact.wav");
192 precache_sound ("misc/bodyimpact1.wav");
193 precache_sound ("misc/bodyimpact2.wav");
194 precache_sound ("misc/gib.wav");
195 precache_sound ("misc/gib_splat01.wav");
196 precache_sound ("misc/gib_splat02.wav");
197 precache_sound ("misc/gib_splat03.wav");
198 precache_sound ("misc/gib_splat04.wav");
199 //precache_sound ("misc/h2ohit.wav");
200 precache_sound ("misc/hit.wav");
201 precache_sound ("misc/footstep01.wav");
202 precache_sound ("misc/footstep02.wav");
203 precache_sound ("misc/footstep03.wav");
204 precache_sound ("misc/footstep04.wav");
205 precache_sound ("misc/footstep05.wav");
206 precache_sound ("misc/footstep06.wav");
207 precache_sound ("misc/hitground1.ogg");
208 precache_sound ("misc/hitground2.ogg");
209 precache_sound ("misc/hitground3.ogg");
210 precache_sound ("misc/hitground4.ogg");
211 precache_sound ("misc/itempickup.ogg");
212 precache_sound ("misc/itemrespawn.ogg");
213 precache_sound ("misc/jumppad.ogg");
214 precache_sound ("misc/mediumhealth.ogg");
215 precache_sound ("misc/megahealth.ogg");
216 precache_sound ("misc/minihealth.ogg");
217 precache_sound ("misc/powerup.ogg");
218 precache_sound ("misc/powerup_shield.ogg");
219 precache_sound ("misc/talk.wav");
220 precache_sound ("misc/teleport.ogg");
221 precache_sound ("plats/medplat1.wav");
222 precache_sound ("plats/medplat2.wav");
223 precache_sound ("player/lava.wav");
224 precache_sound ("player/slime.wav");
225 precache_sound ("weapons/crylink_fire.ogg");
226 precache_sound ("weapons/electro_bounce.ogg");
227 precache_sound ("weapons/electro_fire.ogg");
228 precache_sound ("weapons/electro_fire2.ogg");
229 precache_sound ("weapons/electro_fly.wav");
230 precache_sound ("weapons/electro_impact.ogg");
231 precache_sound ("weapons/electro_impact_combo.ogg");
232 //precache_sound ("weapons/grenade_bounce.ogg");
233 precache_sound ("weapons/grenade_bounce1.ogg");
234 precache_sound ("weapons/grenade_bounce2.ogg");
235 precache_sound ("weapons/grenade_bounce3.ogg");
236 precache_sound ("weapons/grenade_bounce4.ogg");
237 precache_sound ("weapons/grenade_bounce5.ogg");
238 precache_sound ("weapons/grenade_bounce6.ogg");
239 precache_sound ("weapons/grenade_fire.ogg");
240 precache_sound ("weapons/grenade_impact.ogg");
241 precache_sound ("weapons/hagar_fire.ogg");
242 precache_sound ("weapons/hagexp1.ogg");
243 precache_sound ("weapons/hagexp2.ogg");
244 precache_sound ("weapons/hagexp3.ogg");
245 precache_sound ("weapons/hook_fire.ogg");
246 precache_sound ("weapons/hook_impact.ogg");
247 precache_sound ("weapons/lasergun_fire.ogg");
248 precache_sound ("weapons/laserimpact.ogg");
249 precache_sound ("weapons/nexfire.ogg");
250 precache_sound ("weapons/neximpact.ogg");
251 precache_sound ("weapons/ric1.ogg");
252 precache_sound ("weapons/ric2.ogg");
253 precache_sound ("weapons/ric3.ogg");
254 precache_sound ("weapons/rocket_fire.ogg");
255 precache_sound ("weapons/rocket_fly.wav");
256 precache_sound ("weapons/rocket_impact.ogg");
257 precache_sound ("weapons/rocket_det.ogg");
258 precache_sound ("weapons/shotgun_fire.ogg");
259 precache_sound ("weapons/tink1.ogg");
260 precache_sound ("weapons/uzi_fire.ogg");
261 precache_sound ("weapons/weapon_switch.ogg");
262 precache_sound ("weapons/weaponpickup.ogg");
263 precache_sound ("weapons/strength_fire.ogg");
265 //precache_sound ("announce/male/kill10.ogg");
266 //precache_sound ("announce/male/kill15.ogg");
267 //precache_sound ("announce/male/kill20.ogg");
268 //precache_sound ("announce/male/kill25.ogg");
269 //precache_sound ("announce/male/kill3.ogg");
270 //precache_sound ("announce/male/kill30.ogg");
271 //precache_sound ("announce/male/kill4.ogg");
272 //precache_sound ("announce/male/kill5.ogg");
273 //precache_sound ("announce/male/kill6.ogg");
274 //precache_sound ("announce/male/mapkill1.ogg");
275 //precache_sound ("announce/robotic/last_second_save.ogg");
276 //precache_sound ("announce/robotic/narrowly_averted.ogg");
277 //precache_sound ("minstagib/mockery.ogg");
279 // announcer sounds - male
280 precache_sound ("announcer/male/03kills.ogg");
281 precache_sound ("announcer/male/05kills.ogg");
282 precache_sound ("announcer/male/10kills.ogg");
283 precache_sound ("announcer/male/15kills.ogg");
284 precache_sound ("announcer/male/20kills.ogg");
285 precache_sound ("announcer/male/25kills.ogg");
286 precache_sound ("announcer/male/30kills.ogg");
287 precache_sound ("announcer/male/botlike.ogg");
288 precache_sound ("announcer/male/electrobitch.ogg");
289 precache_sound ("announcer/male/welcome.ogg");
290 precache_sound ("announcer/male/yoda.ogg");
292 // announcer sounds - robotic
293 precache_sound ("announcer/robotic/1fragleft.ogg");
294 precache_sound ("announcer/robotic/1minuteremains.ogg");
295 precache_sound ("announcer/robotic/2fragsleft.ogg");
296 precache_sound ("announcer/robotic/3fragsleft.ogg");
297 precache_sound ("announcer/robotic/lastsecond.ogg");
298 precache_sound ("announcer/robotic/narrowly.ogg");
299 precache_sound ("announcer/robotic/1.ogg");
300 precache_sound ("announcer/robotic/2.ogg");
301 precache_sound ("announcer/robotic/3.ogg");
302 precache_sound ("announcer/robotic/4.ogg");
303 precache_sound ("announcer/robotic/5.ogg");
304 precache_sound ("announcer/robotic/6.ogg");
305 precache_sound ("announcer/robotic/7.ogg");
306 precache_sound ("announcer/robotic/8.ogg");
307 precache_sound ("announcer/robotic/9.ogg");
308 precache_sound ("announcer/robotic/10.ogg");
310 // plays music for the level if there is any
313 precache_sound (self.noise);
314 ambientsound ('0 0 0', self.noise, 1.00, ATTN_NONE);
320 // 1 FLICKER (first variety)
321 lightstyle(1, "mmnmmommommnonmmonqnmmo");
323 // 2 SLOW STRONG PULSE
324 lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
326 // 3 CANDLE (first variety)
327 lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
330 lightstyle(4, "mamamamamama");
333 lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
335 // 6 FLICKER (second variety)
336 lightstyle(6, "nmonqnmomnmomomno");
338 // 7 CANDLE (second variety)
339 lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
341 // 8 CANDLE (third variety)
342 lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
344 // 9 SLOW STROBE (fourth variety)
345 lightstyle(9, "aaaaaaaazzzzzzzz");
347 // 10 FLUORESCENT FLICKER
348 lightstyle(10, "mmamammmmammamamaaamammma");
350 // 11 SLOW PULSE NOT FADE TO BLACK
351 lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
353 // styles 32-62 are assigned by the light program for switchable lights
359 lms_lowest_lives = 0;
364 bot_waypoints_for_items = cvar("g_waypoints_for_items");
365 if(bot_waypoints_for_items == 1)
366 if(self.spawnflags & SPAWNFLAG_NO_WAYPOINTS_FOR_ITEMS)
367 bot_waypoints_for_items = 0;
369 if(cvar("g_campaign"))
374 WaypointSprite_Init();
376 //if (cvar("g_domination"))
380 head = nextent(world);
385 head = nextent(head);
388 GameLogInit(); // prepare everything
389 if(cvar("sv_eventlog"))
392 GameLogEcho(":logversion:2", FALSE);
393 s = strcat(cvar_string("sv_eventlog_files_counter"), ".");
394 s = strcat(s, ftos(random()));
395 GameLogEcho(strcat(":gamestart:", GetMapname(), ":", s), FALSE);
396 s = ":gameinfo:mutators:LIST";
397 if(cvar("g_grappling_hook"))
398 s = strcat(s, ":grappling_hook");
399 if(!cvar("g_use_ammunition"))
400 s = strcat(s, ":no_use_ammunition");
401 if(!cvar("g_pickup_items"))
402 s = strcat(s, ":no_pickup_items");
403 if(cvar("g_instagib"))
404 s = strcat(s, ":instagib");
405 if(cvar("g_rocketarena"))
406 s = strcat(s, ":rockerarena");
408 s = strcat(s, ":nixnex");
409 if(cvar("g_vampire"))
410 s = strcat(s, ":vampire");
411 if(cvar("g_laserguided_missile"))
412 s = strcat(s, ":laserguided_missile");
413 if(cvar("g_norecoil"))
414 s = strcat(s, ":norecoil");
416 s = strcat(s, ":midair");
417 if(cvar("g_minstagib"))
418 s = strcat(s, ":minstagib");
419 GameLogEcho(s, FALSE);
420 GameLogEcho(":gameinfo:end", FALSE);
423 cvar_set("nextmap", "");
427 if(cvar("g_campaign"))
437 //makestatic (self); // Who the f___ did that?
441 float( string pFilename ) TryFile =
444 dprint("TryFile(\"", pFilename, "\")\n");
445 lHandle = fopen( pFilename, FILE_READ );
446 if( lHandle != -1 ) {
456 if (game == GAME_DEATHMATCH)
458 else if (game == GAME_TEAM_DEATHMATCH)
460 else if (game == GAME_DOMINATION)
462 else if (game == GAME_CTF)
464 else if (game == GAME_RUNEMATCH)
466 else if (game == GAME_LMS)
471 string getmapname_stored;
474 if(getmapname_stored == "")
475 getmapname_stored = strzone(strcat(GetGametype(), "_", mapname));
476 return getmapname_stored;
479 float Map_Count, Map_Current;
480 string Map_Current_Name;
482 // NOTE: this now expects the map list to be already tokenize()d and the count in Map_Count
483 float GetMaplistPosition()
489 idx = cvar("g_maplist_index");
496 for(pos = 0; pos < Map_Count; ++pos)
500 // resume normal maplist rotation if current map is not in g_maplist
504 float MapHasRightSize(string map)
506 // open map size restriction file
508 dprint("opensize "); dprint(map);
509 fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
512 float mapmin, mapmax;
514 mapmin = stof(fgets(fh));
515 mapmax = stof(fgets(fh));
517 if(player_count < mapmin)
519 dprint("not enough\n");
522 if(player_count > mapmax)
524 dprint("too many\n");
527 dprint("right size\n");
530 dprint(": not found\n");
534 string Map_Filename(float position)
537 return strcat("maps/", argv(position), ".mapcfg");
540 float(float position, float pass) Map_Check =
544 map_next = argv(position);
546 if(map_next == Map_Current_Name) // same map again in first pass?
548 filename = Map_Filename(position);
549 if(TryFile(filename))
553 if(MapHasRightSize(argv(position)))
558 dprint( "Couldn't find '", filename, "'..\n" );
563 void(string nextmapname) Map_Goto_SetStr =
565 if(getmapname_stored != "")
566 strunzone(getmapname_stored);
567 if(nextmapname == "")
568 getmapname_stored = "";
570 getmapname_stored = strzone(nextmapname);
573 void(float position) Map_Goto_SetFloat =
575 cvar_set("g_maplist_index", ftos(position));
576 Map_Goto_SetStr(argv(position));
579 void() GameResetCfg =
581 // if an exit cfg is defined by exiting map, exec it.
583 exit_cfg = cvar_string("exit_cfg");
585 localcmd(strcat("exec \"", exit_cfg, "\"\n"));
587 localcmd("exec game_reset.cfg\n");
593 localcmd(strcat("exec \"maps/", getmapname_stored ,".mapcfg\"\n"));
596 // return codes of map selectors:
597 // -1 = temporary failure (that is, try some method that is guaranteed to succeed)
598 // -2 = permanent failure
599 float() MaplistMethod_Iterate = // usual method
603 for(pass = 1; pass <= 2; ++pass)
605 for(i = 1; i < Map_Count; ++i)
608 mapindex = math_mod(i + Map_Current, Map_Count);
609 if(Map_Check(mapindex, pass))
616 float() MaplistMethod_Repeat = // fallback method
618 if(Map_Check(Map_Current, 2))
623 float() MaplistMethod_Random = // random map selection
629 for(i = 0; i <= imax; ++i)
632 mapindex = math_mod(Map_Current + ceil(random() * (Map_Count - 1)), Map_Count); // any OTHER map
633 if(Map_Check(mapindex, 1))
639 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
640 // the exponent sets a bias on the map selection:
641 // the higher the exponent, the less likely "shortly repeated" same maps are
643 float i, j, imax, insertpos;
648 return 0; // only one map, then always play this one
650 for(i = 0; i <= imax; ++i)
654 // now reinsert this at another position
655 insertpos = pow(random(), 1 / exponent); // ]0, 1]
656 insertpos = insertpos * (Map_Count - 1); // ]0, Map_Count - 1]
657 insertpos = ceil(insertpos) + 1; // {2, 3, 4, ..., Map_Count}
658 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
660 // insert the current map there
662 for(j = 1; j < insertpos; ++j) // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
663 newlist = strcat(newlist, "'", argv(j), "'");
664 newlist = strcat(newlist, "'", argv(0), "'"); // now insert the just selected map
665 for(j = insertpos; j < Map_Count; ++j) // i == Map_Count: no loop, has just been inserted as last
666 newlist = strcat(newlist, "'", argv(j), "'");
667 cvar_set("g_maplist", newlist);
668 Map_Count = tokenize(newlist);
670 // NOTE: the selected map has just been inserted at (insertpos-1)th position
671 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
672 if(Map_Check(Map_Current, 1))
678 void() Maplist_Init =
681 temp = cvar_string("g_maplist");
682 Map_Count = tokenize(temp);
685 bprint( "Maplist is empty! Resetting it to default map list.\n" );
686 cvar_set("g_maplist", temp = cvar_string("g_maplist_defaultlist"));
687 Map_Count = tokenize(temp);
690 error("empty maplist, cannot select a new map");
691 Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
693 Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
694 // this may or may not be correct, but who cares, in the worst case a map
695 // isn't chosen in the first pass that should have been
698 string() GetNextMap =
706 if(cvar("g_maplist_shuffle") > 0)
707 nextMap = MaplistMethod_Shuffle(cvar("g_maplist_shuffle") + 1);
710 if(cvar("g_maplist_selectrandom"))
711 nextMap = MaplistMethod_Random();
714 nextMap = MaplistMethod_Iterate();
717 nextMap = MaplistMethod_Repeat();
721 Map_Goto_SetFloat(nextMap);
722 return getmapname_stored;
728 float() DoNextMapOverride =
730 if(cvar("g_campaign"))
732 CampaignPostIntermission();
735 if(cvar("quit_when_empty"))
737 if(player_count <= currentbots)
743 if(cvar_string("quit_and_redirect") != "")
745 redirection_target = strzone(cvar_string("quit_and_redirect"));
748 if (cvar("samelevel")) // if samelevel is set, stay on same level
750 // this does not work because it tries to exec maps/nexdm01.mapcfg (which doesn't exist, it should be trying maps/dm_nexdm01.mapcfg for example)
751 //localcmd(strcat("exec \"maps/", mapname, ".mapcfg\"\n"));
752 // so instead just restart the current map using the restart command (DOES NOT WORK PROPERLY WITH exit_cfg STUFF)
753 localcmd("restart\n");
754 //changelevel (mapname);
757 if(cvar_string("nextmap") != "")
758 if(TryFile(strcat("maps/", cvar_string("nextmap"), ".mapcfg")))
760 Map_Goto_SetStr(cvar_string("nextmap"));
764 if(cvar("lastlevel"))
767 localcmd("set lastlevel 0\ntogglemenu\n");
775 //local string nextmap;
776 //local float n, nummaps;
778 if (alreadychangedlevel)
780 alreadychangedlevel = TRUE;
786 for(allowReset = 1; allowReset >= 0; --allowReset)
788 nextMap = GetNextMap();
794 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
795 cvar_set("g_maplist", cvar_string("g_maplist_defaultlist"));
799 error("Everything is broken - not even the default map list works. Please report this to the developers.");
811 When the player presses attack or jump, change to the next level
814 .float autoscreenshot;
815 void() MapVote_Think;
816 float mapvote_initialized;
817 void() IntermissionThink =
819 FixIntermissionClient(self);
821 if(cvar("sv_autoscreenshot"))
822 if(self.autoscreenshot)
823 if(time > self.autoscreenshot)
825 self.autoscreenshot = FALSE;
826 if(clienttype(self) == CLIENTTYPE_REAL)
827 stuffcmd(self, "\nscreenshot\necho \"^5A screenshot has been taken at request of the server.\"\n");
831 if (time < intermission_exittime)
834 if(!mapvote_initialized)
835 if (time < intermission_exittime + 10 && !self.button0 && !self.button2 && !self.button3 && !self.button6 && !self.buttonuse)
838 if(intermission_exittime >= 0)
846 Returns the entity to view from
850 entity() FindIntermission =
855 // look for info_intermission first
856 spot = find (world, classname, "info_intermission");
858 { // pick a random one
862 spot = find (spot, classname, "info_intermission");
864 spot = find (spot, classname, "info_intermission");
870 // then look for the start position
871 spot = find (world, classname, "info_player_start");
875 // testinfo_player_start is only found in regioned levels
876 spot = find (world, classname, "testplayerstart");
880 // then look for the start position
881 spot = find (world, classname, "info_player_deathmatch");
885 //objerror ("FindIntermission: no spot");
891 ===============================================================================
895 ===============================================================================
898 void(float final) DumpStats =
902 local float to_console;
903 local float to_eventlog;
906 to_console = cvar("sv_logscores_console");
907 to_eventlog = cvar("sv_eventlog");
908 to_file = cvar("sv_logscores_file");
912 to_console = TRUE; // always print printstats replies
913 to_eventlog = FALSE; // but never print them to the event log
917 if(cvar("sv_eventlog_console"))
918 to_console = FALSE; // otherwise we get the output twice
924 s = strcat(s, GetMapname(), ":", ftos(rint(time)));
927 ServerConsoleEcho(s, FALSE);
929 GameLogEcho(s, FALSE);
932 file = fopen(cvar_string("sv_logscores_filename"), FILE_APPEND);
936 fputs(file, strcat(s, "\n"));
939 FOR_EACH_CLIENT(other)
941 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && cvar("sv_logscores_bots")))
943 s = strcat(":player:", ftos(other.frags), ":");
944 s = strcat(s, ftos(other.deaths), ":");
945 s = strcat(s, ftos(rint(time - other.jointime)), ":");
946 s = strcat(s, ftos(other.team), ":");
949 ServerConsoleEcho(strcat(s, other.netname), TRUE);
951 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname), TRUE);
953 fputs(file, strcat(s, other.netname, "\n"));
958 ServerConsoleEcho(":end", FALSE);
960 GameLogEcho(":end", FALSE);
963 fputs(file, ":end\n");
968 void FixIntermissionClient(entity e)
970 if(!e.autoscreenshot) // initial call
972 e.angles = e.v_angle;
973 e.angles_x = -e.angles_x;
974 e.autoscreenshot = time + 0.8; // used for autoscreenshot
976 // first intermission phase; voting phase has positive health (used to decide whether to send SVC_FINALE or not)
978 e.movetype = MOVETYPE_NONE;
979 e.takedamage = DAMAGE_NO;
981 e.weaponentity.effects = EF_NODRAW;
982 stuffcmd(e, "\nscr_printspeed 1000000\n");
983 if(clienttype(e) == CLIENTTYPE_REAL)
986 WriteByte(MSG_ONE, SVC_INTERMISSION);
990 //e.velocity = '0 0 0';
993 // TODO halt weapon animation
998 go to the next level for deathmatch
999 only called if a time or frag limit has expired
1003 float minTotalFrags;
1004 float maxTotalFrags;
1010 intermission_running = 1;
1012 // enforce a wait time before allowing changelevel
1013 if(player_count > 0)
1014 intermission_exittime = time + cvar("sv_mapchange_delay");
1016 intermission_exittime = -60;
1018 WriteByte (MSG_ALL, SVC_CDTRACK);
1019 WriteByte (MSG_ALL, 3);
1020 WriteByte (MSG_ALL, 3);
1022 //pos = FindIntermission ();
1028 if(cvar("sv_eventlog"))
1029 GameLogEcho(":gameover", FALSE);
1034 FOR_EACH_CLIENT(other)
1036 if(maxTotalFrags < other.totalfrags)
1037 maxTotalFrags = other.totalfrags;
1038 if(minTotalFrags > other.totalfrags)
1039 minTotalFrags = other.totalfrags;
1042 FOR_EACH_CLIENT(other)
1044 FixIntermissionClient(other);
1049 bprint(other.netname, " ^7wins.\n");
1053 score = (other.frags - minTotalFrags) / max(maxTotalFrags - minTotalFrags, 1);
1054 f = bound(0, other.play_time / max(time, 1), 1);
1055 // store some statistics?
1059 if(cvar("g_campaign"))
1060 CampaignPreIntermission();
1062 // WriteByte (MSG_ALL, SVC_INTERMISSION);
1069 Exit deathmatch games upon conditions
1072 void() CheckRules_Player =
1074 if (gameover) // someone else quit the game already
1077 if(self.deadflag == DEAD_NO)
1078 self.play_time += frametime;
1080 // fixme: don't check players; instead check dom_team and ctf_team entities
1081 // (div0: and that in CheckRules_World please)
1084 float checkrules_oneminutewarning;
1085 float checkrules_leaderfrags;
1086 float tdm_max_score, tdm_old_score;
1088 float checkrules_equality;
1089 float checkrules_overtimewarning;
1090 float checkrules_overtimeend;
1092 void() InitiateOvertime =
1094 if(!checkrules_overtimeend)
1095 checkrules_overtimeend = time + 60 * cvar("timelimit_maxovertime");
1098 float WINNING_NO = 0; // no winner, but time limits may terminate the game
1099 float WINNING_YES = 1; // winner found
1100 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
1101 float WINNING_STARTOVERTIME = 3; // no winner, enter overtime NOW
1103 float(float fraglimitreached, float equality) GetWinningCode =
1106 if(fraglimitreached)
1107 return WINNING_STARTOVERTIME;
1109 return WINNING_NEVER;
1111 if(fraglimitreached)
1117 // set the .winning flag for exactly those players with a given field value
1118 void(.float field, float value) SetWinners =
1121 FOR_EACH_PLAYER(head)
1122 head.winning = (head.field == value);
1125 // set the .winning flag for those players with a given field value
1126 void(.float field, float value) AddWinners =
1129 FOR_EACH_PLAYER(head)
1130 if(head.field == value)
1134 // clear the .winning flags
1135 void(void) ClearWinners =
1138 FOR_EACH_PLAYER(head)
1142 float() LMS_NewPlayerLives =
1145 fl = cvar("fraglimit");
1149 // first player has left the game for dying too much? Nobody else can get in.
1150 if(lms_lowest_lives < 1)
1153 if(!cvar("g_lms_join_anytime"))
1154 if(lms_lowest_lives < fl - cvar("g_lms_last_join"))
1157 return bound(1, lms_lowest_lives, fl);
1160 // LMS winning condition: game terminates if and only if there's at most one
1161 // one player who's living lives. Top two scores being equal cancels the time
1163 float() WinningCondition_LMS =
1170 have_player = FALSE;
1171 have_players = FALSE;
1172 l = LMS_NewPlayerLives();
1174 head = find(world, classname, "player");
1177 head = find(head, classname, "player");
1179 have_players = TRUE;
1183 // we have at least one player
1186 // two or more active players - continue with the game
1190 // exactly one player?
1193 // but no game has taken place yet
1198 ClearWinners(); SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1199 dprint("Have a winner, ending game.\n");
1206 // nobody is playing at all...
1209 // wait for players...
1213 // SNAFU (maybe a draw game?)
1215 dprint("No players, ending game.\n");
1220 // When we get here, we have at least two players who are actually LIVING,
1221 // or one player who is still waiting for a victim to join the server. Now
1222 // check if the top two players have equal score.
1224 checkrules_leaderfrags = 0;
1225 checkrules_equality = FALSE;
1226 FOR_EACH_PLAYER(head)
1228 if(head.frags > checkrules_leaderfrags)
1230 checkrules_leaderfrags = head.frags;
1231 checkrules_equality = FALSE;
1233 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1234 checkrules_equality = TRUE;
1237 SetWinners(frags, checkrules_leaderfrags);
1239 // The top two players have the same amount of lives? No timelimit then,
1240 // enter overtime...
1242 if(checkrules_equality)
1243 return WINNING_NEVER;
1245 // Top two have different scores? Way to go for our beloved TIMELIMIT!
1249 // DM winning condition: game terminates if a player reached the fraglimit,
1250 // unless the first two players have the same score. The latter case also
1251 // breaks the time limit.
1252 float(float fraglimit) WinningCondition_MaxIndividualScore =
1254 float checkrules_oldleaderfrags;
1257 checkrules_oldleaderfrags = checkrules_leaderfrags;
1258 checkrules_leaderfrags = 0;
1259 checkrules_equality = FALSE;
1260 FOR_EACH_PLAYER(head)
1262 if(head.frags > checkrules_leaderfrags)
1264 checkrules_leaderfrags = head.frags;
1265 checkrules_equality = FALSE;
1267 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1268 checkrules_equality = TRUE;
1271 if(checkrules_leaderfrags > 0)
1272 SetWinners(frags, checkrules_leaderfrags);
1276 if (!cvar("g_runematch"))
1277 if (checkrules_leaderfrags != checkrules_oldleaderfrags)
1279 if (checkrules_leaderfrags == fraglimit - 1)
1280 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1281 else if (checkrules_leaderfrags == fraglimit - 2)
1282 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1283 else if (checkrules_leaderfrags == fraglimit - 3)
1284 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1287 return GetWinningCode(fraglimit && checkrules_leaderfrags >= fraglimit, checkrules_equality);
1290 float(float fraglimit) WinningConditionBase_Teamplay =
1292 tdm_old_score = tdm_max_score;
1293 tdm_max_score = max4(team1_score, team2_score, team3_score, team4_score);
1295 checkrules_equality =
1300 (team1_score == tdm_max_score)
1301 + (team2_score == tdm_max_score)
1302 + (team3_score == tdm_max_score)
1303 + (team4_score == tdm_max_score)
1307 if(tdm_max_score > 0)
1309 if(team1_score == tdm_max_score)
1310 AddWinners(team, COLOR_TEAM1);
1311 if(team2_score == tdm_max_score)
1312 AddWinners(team, COLOR_TEAM2);
1313 if(team3_score == tdm_max_score)
1314 AddWinners(team, COLOR_TEAM3);
1315 if(team4_score == tdm_max_score)
1316 AddWinners(team, COLOR_TEAM4);
1319 if(!cvar("g_runematch") && !cvar("g_domination"))
1320 if(tdm_max_score != tdm_old_score)
1322 if(tdm_max_score == fraglimit - 1)
1323 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1324 else if(tdm_max_score == fraglimit - 2)
1325 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1326 else if(tdm_max_score == fraglimit - 3)
1327 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1330 return GetWinningCode(fraglimit && tdm_max_score >= fraglimit, checkrules_equality);
1333 // TDM winning condition: game terminates if a team's score sum reached the
1334 // fraglimit, unless the first two teams have the same total score. The latter
1335 // case also breaks the time limit.
1336 float(float fraglimit) WinningCondition_MaxTeamSum =
1340 team1_score = team2_score = team3_score = team4_score = 0;
1342 FOR_EACH_PLAYER(head)
1344 if(head.team == COLOR_TEAM1)
1345 team1_score += head.frags;
1346 else if(head.team == COLOR_TEAM2)
1347 team2_score += head.frags;
1348 else if(head.team == COLOR_TEAM3)
1349 team3_score += head.frags;
1350 else if(head.team == COLOR_TEAM4)
1351 team4_score += head.frags;
1354 return WinningConditionBase_Teamplay(fraglimit);
1357 // DOM/CTF winning condition: game terminates if the max of a team's players'
1358 // score reached the fraglimit, unless the first two teams have the same
1359 // maximum score. The latter case also breaks the time limit.
1360 float(float fraglimit) WinningCondition_MaxTeamMax =
1364 team1_score = team2_score = team3_score = team4_score = 0;
1366 FOR_EACH_PLAYER(head)
1368 if(head.team == COLOR_TEAM1)
1370 if(head.frags > team1_score)
1371 team1_score = head.frags;
1373 else if(head.team == COLOR_TEAM2)
1375 if(head.frags > team2_score)
1376 team2_score = head.frags;
1378 else if(head.team == COLOR_TEAM3)
1380 if(head.frags > team3_score)
1381 team3_score = head.frags;
1383 else if(head.team == COLOR_TEAM4)
1385 if(head.frags > team4_score)
1386 team4_score = head.frags;
1390 return WinningConditionBase_Teamplay(fraglimit);
1393 void print_to(entity e, string s)
1396 sprint(e, strcat(s, "\n"));
1398 ServerConsoleEcho(s, TRUE);
1401 void PrintScoreboardFor(entity e, string name, string colorcode, float whichteam)
1411 FOR_EACH_PLAYER(head)
1413 if(!whichteam || head.team == whichteam)
1417 print_to(e, strcat(" ", colorcode, name, ":"));
1419 fragtotal = fragtotal + head.frags;
1420 s = ftos(head.frags);
1421 s = strcat(s, "/", ftos(head.deaths));
1422 s = strcat(s, " @ ", ftos(head.ping));
1423 if(clienttype(head) == CLIENTTYPE_BOT)
1424 s = strcat(s, "botms");
1426 s = strcat(s, "ms");
1427 v = PlayerValue(head);
1429 s = strcat(s, " / ", ftos(v));
1430 print_to(e, strcat(" ", colorcode, head.netname, colorcode, " (", s, ")"));
1433 if(whichteam && found)
1435 s = ftos(fragtotal);
1436 s = strcat(s, " / ", ftos(teamvalue));
1437 print_to(e, strcat(colorcode, " (total: ", s, ")"));
1441 void PrintScoreboard(entity e)
1443 print_to(e, strcat("Time: ", ftos(time / 60)));
1444 print_to(e, strcat("Timelimit: ", ftos(cvar("timelimit"))));
1445 print_to(e, strcat("Fraglimit: ", ftos(cvar("fraglimit"))));
1446 print_to(e, "Scoreboard:");
1449 PrintScoreboardFor(e, "Red", "^1", COLOR_TEAM1);
1450 PrintScoreboardFor(e, "Blue", "^4", COLOR_TEAM2);
1451 PrintScoreboardFor(e, "Pink", "^6", COLOR_TEAM3);
1452 PrintScoreboardFor(e, "Yellow", "^3", COLOR_TEAM4);
1456 PrintScoreboardFor(e, "", "^7", 0);
1461 void ShuffleMaplist()
1469 result = cvar_string("g_maplist");
1470 litems = tokenize(result);
1472 for(start = 0; start < litems - 1; ++start)
1476 // select a random item
1477 selected = ceil(random() * (litems - start) + start) - 1;
1479 // shift this item to the place start
1480 for(i = 0; i < start; ++i)
1481 result = strcat(result, "'", argv(i), "'");
1482 result = strcat(result, "'", argv(selected), "'");
1483 for(i = start; i < litems; ++i)
1485 result = strcat(result, "'", argv(i), "'");
1487 litems = tokenize(result);
1489 //dprint(result, "\n");
1492 cvar_set("g_maplist", result);
1499 Exit deathmatch games upon conditions
1502 void() CheckRules_World =
1505 local float timelimit;
1506 local float fraglimit;
1512 if (intermission_running)
1513 if (time >= intermission_exittime + 60)
1515 if(!DoNextMapOverride())
1520 if (gameover) // someone else quit the game already
1523 timelimit = cvar("timelimit") * 60;
1524 fraglimit = cvar("fraglimit");
1526 if(checkrules_overtimeend)
1528 if(!checkrules_overtimewarning)
1530 checkrules_overtimewarning = TRUE;
1531 //sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1532 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
1537 if (timelimit && time >= timelimit)
1541 if (checkrules_overtimeend && time >= checkrules_overtimeend)
1547 if (!checkrules_oneminutewarning && timelimit > 0 && time > timelimit - 60)
1549 checkrules_oneminutewarning = TRUE;
1550 sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1553 status = WINNING_NO;
1556 status = WinningCondition_LMS();
1562 if(cvar("g_tdm") || cvar("g_runematch") || cvar("g_ctf") || cvar("g_domination"))
1563 status = WinningCondition_MaxTeamSum(fraglimit);
1565 // status = WinningCondition_MaxTeamMax(fraglimit);
1568 dprint("div0: How can this happen?\n");
1569 status = WinningCondition_MaxTeamMax(fraglimit);
1573 status = WinningCondition_MaxIndividualScore(fraglimit);
1576 if(status == WINNING_STARTOVERTIME)
1578 status = WINNING_NEVER;
1582 if(status == WINNING_NEVER)
1583 // equality cases! Nobody wins if the overtime ends in a draw.
1586 if(checkrules_overtimeend)
1587 if(status != WINNING_NEVER || time >= checkrules_overtimeend)
1588 status = WINNING_YES;
1590 if(status == WINNING_YES)
1594 float randsel_value;
1595 float randsel_priority;
1596 float randsel_count;
1600 randsel_priority = -1;
1603 void RandSel_Add(float priority, float value)
1605 if(priority > randsel_priority)
1607 randsel_priority = priority;
1608 randsel_value = value;
1611 else if(priority == randsel_priority)
1614 if(ceil(random() * randsel_count) == 1)
1615 randsel_value = value;
1619 float mapvote_nextthink;
1620 float mapvote_initialized;
1621 float mapvote_keeptwotime;
1622 float mapvote_timeout;
1623 string mapvote_message;
1625 #define MAPVOTE_COUNT 10
1626 float mapvote_count;
1627 string mapvote_maps[MAPVOTE_COUNT];
1628 float mapvote_maps_suggested[MAPVOTE_COUNT];
1629 string mapvote_suggestions[MAPVOTE_COUNT];
1630 float mapvote_suggestion_ptr;
1631 string mapvote_fillstr;
1632 float mapvote_maxlen;
1633 float mapvote_voters;
1634 float mapvote_votes[MAPVOTE_COUNT];
1637 void MapVote_ClearAllVotes()
1639 FOR_EACH_CLIENT(other)
1643 string MapVote_Suggest(string m)
1647 return "That's not how to use this command.";
1648 if(!cvar("g_maplist_votable_suggestions"))
1649 return "Suggestions are not accepted on this server.";
1650 if(mapvote_initialized)
1651 return "Can't suggest - voting is already in progress!";
1652 if(!TryFile(strcat("maps/", m, ".mapcfg")))
1653 return "The map you suggested is not available on this server.";
1654 for(i = 0; i < mapvote_suggestion_ptr; ++i)
1655 if(mapvote_suggestions[i] == m)
1656 return "This map was already suggested.";
1657 if(mapvote_suggestion_ptr >= MAPVOTE_COUNT)
1659 i = ceil(random() * mapvote_suggestion_ptr) - 1;
1663 i = mapvote_suggestion_ptr;
1664 mapvote_suggestion_ptr += 1;
1666 if(mapvote_suggestions[i] != "")
1667 strunzone(mapvote_suggestions[i]);
1668 mapvote_suggestions[i] = strzone(m);
1669 GameLogEcho(strcat(":vote:suggested:", m, ":", ftos(self.playerid), ":", self.netname), TRUE);
1670 return "Suggestion accepted.";
1673 void MapVote_AddVotable(string nextMap, float isSuggestion)
1678 for(j = 0; j < mapvote_count; ++j)
1679 if(mapvote_maps[j] == nextMap)
1681 if(strlen(nextMap) > mapvote_maxlen)
1682 mapvote_maxlen = strlen(nextMap);
1683 mapvote_maps[mapvote_count] = strzone(nextMap);
1684 mapvote_maps_suggested[mapvote_count] = isSuggestion;
1693 MapVote_ClearAllVotes();
1695 nmax = min(MAPVOTE_COUNT, cvar("g_maplist_votable"));
1696 smax = min(nmax, cvar("g_maplist_votable_suggestions"));
1699 for(i = 0; i < 100 && mapvote_count < smax; ++i)
1700 MapVote_AddVotable(mapvote_suggestions[ceil(random() * mapvote_suggestion_ptr) - 1], TRUE);
1702 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
1703 MapVote_AddVotable(GetNextMap(), FALSE);
1705 if(mapvote_count == 0)
1707 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
1708 cvar_set("g_maplist", cvar_string("g_maplist_defaultlist"));
1709 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
1710 MapVote_AddVotable(GetNextMap(), FALSE);
1713 //dprint("mapvote count is ", ftos(mapvote_count), "\n");
1715 mapvote_fillstr = " ";
1716 while(strlen(mapvote_fillstr) < mapvote_maxlen + 16)
1717 mapvote_fillstr = strcat(mapvote_fillstr, mapvote_fillstr);
1718 mapvote_fillstr = strzone(mapvote_fillstr);
1720 mapvote_keeptwotime = time + cvar("g_maplist_votable_keeptwotime");
1721 mapvote_timeout = time + cvar("g_maplist_votable_timeout");
1722 if(mapvote_count < 3 || mapvote_keeptwotime <= time)
1723 mapvote_keeptwotime = 0;
1724 mapvote_message = "Choose a map and press its key!";
1726 float MapVote_Finished(float mappos)
1731 result = strcat(":vote:finished:", mapvote_maps[mappos]);
1732 result = strcat(result, ":", ftos(mapvote_votes[mappos]), "::");
1733 for(i = 0; i < mapvote_count; ++i)
1735 if(mapvote_maps[i] != "")
1737 result = strcat(result, ":", mapvote_maps[i]);
1738 result = strcat(result, ":", ftos(mapvote_votes[i]));
1740 GameLogEcho(result, FALSE);
1741 if(mapvote_maps_suggested[mappos])
1742 GameLogEcho(strcat(":vote:suggestion_accepted:", mapvote_maps[mappos]), FALSE);
1744 FOR_EACH_REALCLIENT(other)
1745 FixClientCvars(other);
1747 Map_Goto_SetStr(mapvote_maps[mappos]);
1751 void MapVote_CheckRules_1()
1755 for(i = 0; i < mapvote_count; ++i) if(mapvote_maps[i] != "")
1757 //dprint("Map ", ftos(i), ": "); dprint(mapvote_maps[i], "\n");
1758 mapvote_votes[i] = 0;
1762 FOR_EACH_REALCLIENT(other)
1767 i = other.mapvote - 1;
1768 //dprint("Player ", other.netname, " vote = ", ftos(other.mapvote - 1), "\n");
1769 mapvote_votes[i] = mapvote_votes[i] + 1;
1774 float MapVote_CheckRules_2()
1777 float firstPlace, secondPlace;
1778 float firstPlaceVotes, secondPlaceVotes;
1782 for(i = 0; i < mapvote_count; ++i) if(mapvote_maps[i] != "")
1783 RandSel_Add(mapvote_votes[i], i);
1784 firstPlace = randsel_value;
1785 firstPlaceVotes = randsel_priority;
1786 //dprint("First place: ", ftos(firstPlace), "\n");
1787 //dprint("First place votes: ", ftos(firstPlaceVotes), "\n");
1790 for(i = 0; i < mapvote_count; ++i) if(mapvote_maps[i] != "")
1792 RandSel_Add(mapvote_votes[i], i);
1793 secondPlace = randsel_value;
1794 secondPlaceVotes = randsel_priority;
1795 //dprint("Second place: ", ftos(secondPlace), "\n");
1796 //dprint("Second place votes: ", ftos(secondPlaceVotes), "\n");
1798 if(firstPlace == -1)
1799 error("No first place in map vote... WTF?");
1801 if(secondPlace == -1 || time > mapvote_timeout || (mapvote_voters - firstPlaceVotes) < firstPlaceVotes)
1802 return MapVote_Finished(firstPlace);
1804 if(mapvote_keeptwotime)
1805 if(time > mapvote_keeptwotime || (mapvote_voters - firstPlaceVotes - secondPlaceVotes) < secondPlaceVotes)
1807 mapvote_message = "Now decide between the TOP TWO!";
1808 mapvote_keeptwotime = 0;
1809 result = strcat(":vote:keeptwo:", mapvote_maps[firstPlace]);
1810 result = strcat(result, ":", ftos(firstPlaceVotes));
1811 result = strcat(result, ":", mapvote_maps[secondPlace]);
1812 result = strcat(result, ":", ftos(secondPlaceVotes), "::");
1813 for(i = 0; i < mapvote_count; ++i)
1815 if(i != secondPlace)
1816 if(mapvote_maps[i] != "")
1818 result = strcat(result, ":", mapvote_maps[i]);
1819 result = strcat(result, ":", ftos(mapvote_votes[i]));
1820 strunzone(mapvote_maps[i]);
1821 mapvote_maps[i] = "";
1823 GameLogEcho(result, FALSE);
1835 keeptwo = mapvote_keeptwotime;
1836 MapVote_CheckRules_1(); // count
1837 if(MapVote_CheckRules_2()) // decide
1840 FOR_EACH_REALCLIENT(other)
1842 // hide scoreboard again
1843 if(other.health != 2342)
1845 other.health = 2342;
1847 if(clienttype(other) == CLIENTTYPE_REAL)
1849 stuffcmd(other, "\nin_bind 7 1 \"impulse 1\"; in_bind 7 2 \"impulse 2\"; in_bind 7 3 \"impulse 3\"; in_bind 7 4 \"impulse 4\"; in_bind 7 5 \"impulse 5\"; in_bind 7 6 \"impulse 6\"; in_bind 7 7 \"impulse 7\"; in_bind 7 8 \"impulse 8\"; in_bind 7 9 \"impulse 9\"; in_bind 7 0 \"impulse 10\"; in_bind 7 KP_1 \"impulse 1\"; in_bind 7 KP_2 \"impulse 2\"; in_bind 7 KP_3 \"impulse 3\"; in_bind 7 KP_4 \"impulse 4\"; in_bind 7 KP_5 \"impulse 5\"; in_bind 7 KP_6 \"impulse 6\"; in_bind 7 KP_7 \"impulse 7\"; in_bind 7 KP_8 \"impulse 8\"; in_bind 7 KP_9 \"impulse 9\"; in_bind 7 KP_0 \"impulse 10\"; in_bindmap 7 0\n");
1851 WriteByte(MSG_ONE, SVC_FINALE);
1852 WriteString(MSG_ONE, "");
1856 // notify about keep-two
1857 if(keeptwo != 0 && mapvote_keeptwotime == 0)
1858 play2(other, "misc/invshot.wav");
1860 // clear possibly invalid votes
1861 if(mapvote_maps[other.mapvote - 1] == "")
1863 // use impulses as new vote
1864 if(other.impulse >= 1 && other.impulse <= mapvote_count)
1865 if(mapvote_maps[other.impulse - 1] != "")
1866 other.mapvote = other.impulse;
1870 MapVote_CheckRules_1(); // just count
1872 FOR_EACH_REALCLIENT(other)
1874 // display voting screen
1875 msgstr = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
1876 msgstr = substring(msgstr, 0, strlen(msgstr) - mapvote_count);
1877 msgstr = strcat(msgstr, mapvote_message);
1878 msgstr = strcat(msgstr, "\n\n");
1879 for(i = 0; i < mapvote_count; ++i)
1880 if(mapvote_maps[i] == "")
1881 msgstr = strcat(msgstr, "\n");
1884 tmp = mapvote_maps[i];
1885 tmp = strcat(tmp, substring(mapvote_fillstr, 0, mapvote_maxlen - strlen(tmp)));
1886 tmp = strcat(ftos(math_mod(i + 1, 10)), ": ", tmp);
1887 tmp = strcat(tmp, " ^2(", ftos(mapvote_votes[i]), " vote");
1888 if(mapvote_votes[i] != 1)
1889 tmp = strcat(tmp, "s");
1890 tmp = strcat(tmp, ")");
1891 tmp = strcat(tmp, substring(mapvote_fillstr, 0, mapvote_maxlen + 15 - strlen(tmp)));
1892 if(other.mapvote == i + 1)
1893 msgstr = strcat(msgstr, "^3> ", tmp, "\n");
1895 msgstr = strcat(msgstr, "^7 ", tmp, "\n");
1897 i = ceil(mapvote_timeout - time);
1898 msgstr = strcat(msgstr, "\n\n", ftos(i), " second");
1900 msgstr = strcat(msgstr, "s");
1901 msgstr = strcat(msgstr, " left");
1903 centerprint_atprio(other, CENTERPRIO_MAPVOTE, msgstr);
1906 void MapVote_Think()
1908 if(alreadychangedlevel)
1911 if(time < mapvote_nextthink)
1915 mapvote_nextthink = time + 0.5;
1917 if(!mapvote_initialized)
1919 mapvote_initialized = TRUE;
1920 if(DoNextMapOverride())
1922 alreadychangedlevel = TRUE;
1925 if(!cvar("g_maplist_votable"))
1940 FOR_EACH_REALCLIENT(self)
1942 if(self.classname == "spectator")
1944 if(self.enemy.hitsound)
1945 play2(self, "misc/hit.wav");
1950 play2(self, "misc/hit.wav");
1953 FOR_EACH_CLIENT(self)
1954 self.hitsound = FALSE;
1960 * returns TRUE if redirecting
1962 float redirection_timeout;
1963 float redirection_nextthink;
1964 float RedirectionThink()
1966 float clients_found;
1968 if(redirection_target == "")
1971 if(!redirection_timeout)
1973 cvar_set("sv_public", "-2");
1974 redirection_timeout = time + 0.5; // this will only try twice... should be able to keep more clients
1975 if(redirection_target == "self")
1976 bprint("^3SERVER NOTICE:^7 restarting the server\n");
1978 bprint("^3SERVER NOTICE:^7 redirecting everyone to ", redirection_target, "\n");
1981 if(time < redirection_nextthink)
1984 redirection_nextthink = time + 1;
1987 FOR_EACH_REALCLIENT(self)
1989 ServerConsoleEcho(strcat("Redirecting: sending connect command to ", self.netname), FALSE);
1990 if(redirection_target == "self")
1991 stuffcmd(self, "\ndisconnect; reconnect\n");
1993 stuffcmd(self, strcat("\ndisconnect; connect ", redirection_target, "\n"));
1997 ServerConsoleEcho(strcat("Redirecting: ", ftos(clients_found), " clients left."), FALSE);
1999 if(time > redirection_timeout || clients_found == 0)
2000 localcmd("\nwait; wait; wait; quit\n");