]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/g_world.qc
new cvar: quit_when_empty - exits the server once it is empty (apart from bots)
[divverent/nexuiz.git] / data / qcsrc / server / g_world.qc
1 string GetMapname();
2 void GotoNextMap();
3
4 void SetDefaultAlpha()
5 {
6         if(cvar("g_running_guns"))
7         {
8                 default_player_alpha = -1;
9                 default_weapon_alpha = +1;
10         }
11         else if(cvar("g_cloaked"))
12         {
13                 default_player_alpha = cvar("g_balance_cloaked_alpha");
14                 default_weapon_alpha = default_player_alpha;
15         }
16         else
17         {
18                 default_player_alpha = cvar("g_player_alpha");
19                 if(default_player_alpha <= 0)
20                         default_player_alpha = 1;
21                 default_weapon_alpha = default_player_alpha;
22         }
23 }
24
25 void fteqcc_testbugs()
26 {
27         float a, b;
28
29         if(!cvar("developer_fteqccbugs"))
30                 return;
31
32         dprint("*** fteqcc test: checking for bugs...\n");
33
34         a = 1;
35         b = 5;
36         if(sqrt(a) - sqrt(b - a) == 0)
37                 dprint("*** fteqcc test: found same-function-twice bug\n");
38         else
39                 dprint("*** fteqcc test: same-function-twice bug got FINALLY FIXED! HOORAY!\n");
40
41         world.frags = -10;
42         world.enemy = world;
43         world.enemy.frags += 10;
44         if(world.frags > 0.2 || world.frags < -0.2) // don't error out if it's just roundoff errors
45                 dprint("*** fteqcc test: found += bug\n");
46         else
47                 dprint("*** fteqcc test: += bug got FINALLY FIXED! HOORAY!\n");
48         world.frags = 0;
49 }
50
51 void GotoFirstMap()
52 {
53         if(cvar("_sv_init"))
54         {
55                 cvar_set("_sv_init", "0");
56                 tokenize(cvar_string("g_maplist"));
57                 if(argv(0) != GetMapname())
58                 {
59                         cvar_set("nextmap", argv(0));
60                         GotoNextMap();
61                 }
62         }
63 }
64
65 float world_already_spawned;
66 void worldspawn (void)
67 {
68         if(world_already_spawned)
69                 error("world already spawned - you may have EXACTLY ONE worldspawn!");
70         world_already_spawned = TRUE;
71         // Precache all player models
72         // Workaround for "invisible players"
73         precache_model("models/player/carni.zym");
74         precache_model("models/player/crash.zym");
75         precache_model("models/player/grunt.zym");
76         precache_model("models/player/headhunter.zym");
77         precache_model("models/player/insurrectionist.zym");
78         precache_model("models/player/jeandarc.zym");
79         precache_model("models/player/lurk.zym");
80         precache_model("models/player/lycanthrope.zym");
81         precache_model("models/player/marine.zym");
82         precache_model("models/player/nexus.zym");
83         precache_model("models/player/pyria.zym");
84         precache_model("models/player/shock.zym");
85         precache_model("models/player/skadi.zym");
86         precache_model("models/player/specop.zym");
87         precache_model("models/player/visitant.zym");
88
89         //precache_model ("progs/beam.mdl");
90         precache_model ("models/bullet.mdl");
91         precache_model ("models/casing_bronze.mdl");
92         precache_model ("models/casing_shell.mdl");
93         precache_model ("models/casing_steel.mdl");
94         precache_model ("models/ebomb.mdl");
95         precache_model ("models/elaser.mdl");
96         precache_model ("models/flash.md3");
97         precache_model ("models/gibs/bloodyskull.md3");
98         precache_model ("models/gibs/chunk.mdl");
99         precache_model ("models/gibs/eye.md3");
100         precache_model ("models/gibs/gib1.md3");
101         //precache_model ("models/gibs/gib2.md3");
102         //precache_model ("models/gibs/gib3.md3");
103         //precache_model ("models/gibs/gib4.md3");
104         precache_model ("models/gibs/gib5.md3");
105         //precache_model ("models/gibs/gib6.md3");
106         precache_model ("models/gibs/gib1.mdl");
107         precache_model ("models/gibs/gib2.mdl");
108         precache_model ("models/gibs/gib3.mdl");
109         precache_model ("models/grenademodel.md3");
110         precache_model ("models/hagarmissile.mdl");
111         precache_model ("models/items/a_bullets.mdl");
112         precache_model ("models/items/a_cells.md3");
113         precache_model ("models/items/a_rockets.md3");
114         precache_model ("models/items/a_shells.md3");
115         precache_model ("models/items/g_a1.md3");
116         precache_model ("models/items/g_a25.md3");
117         precache_model ("models/items/g_h1.md3");
118         precache_model ("models/items/g_h25.md3");
119         precache_model ("models/items/g_h100.md3");
120         precache_model ("models/items/g_invincible.md3");
121         precache_model ("models/items/g_strength.md3");
122         precache_model ("models/laser.mdl");
123         precache_model ("models/misc/chatbubble.spr");
124         precache_model ("models/misc/teambubble.spr");
125         precache_model ("models/nexflash.md3");
126         precache_model ("models/plasma.mdl");
127         precache_model ("models/plasmatrail.mdl");
128         precache_model ("models/rocket.md3");
129         //precache_model ("models/sprites/grenexpl.spr");
130         precache_model ("models/runematch/rune.mdl");
131         precache_model ("models/runematch/curse.mdl");
132         //precache_model ("models/sprites/hagar.spr");
133         //precache_model ("models/sprites/muzzleflash.spr32");
134         //precache_model ("models/sprites/electrocombo.spr32");
135         //precache_model ("models/sprites/plasmahitwall.spr32");
136         //precache_model ("models/sprites/plasmashot.spr32");
137         //precache_model ("models/sprites/rockexpl.spr");
138         precache_model ("models/tracer.mdl");
139         precache_model ("models/uziflash.md3");
140         precache_model ("models/weapons/g_crylink.md3");
141         precache_model ("models/weapons/g_electro.md3");
142         precache_model ("models/weapons/g_gl.md3");
143         precache_model ("models/weapons/g_hagar.md3");
144         precache_model ("models/weapons/g_nex.md3");
145         precache_model ("models/weapons/g_rl.md3");
146         precache_model ("models/weapons/g_shotgun.md3");
147         precache_model ("models/weapons/g_uzi.md3");
148         precache_model ("models/weapons/v_crylink.md3");
149         precache_model ("models/weapons/v_electro.md3");
150         precache_model ("models/weapons/v_gl.md3");
151         precache_model ("models/weapons/v_hagar.md3");
152         precache_model ("models/weapons/v_laser.md3");
153         precache_model ("models/weapons/v_nex.md3");
154         precache_model ("models/weapons/v_rl.md3");
155         precache_model ("models/weapons/v_shotgun.md3");
156         precache_model ("models/weapons/v_uzi.md3");
157         precache_model ("models/weapons/w_crylink.zym");
158         precache_model ("models/weapons/w_electro.zym");
159         precache_model ("models/weapons/w_gl.zym");
160         precache_model ("models/weapons/w_hagar.zym");
161         precache_model ("models/weapons/w_laser.zym");
162         precache_model ("models/weapons/w_nex.zym");
163         precache_model ("models/weapons/w_rl.zym");
164         precache_model ("models/weapons/w_shotgun.zym");
165         precache_model ("models/weapons/w_uzi.zym");
166
167         // laser for laser-guided weapons
168         precache_model ("models/laser_dot.mdl");
169
170         precache_sound ("misc/null.wav");
171         precache_sound ("misc/armor1.wav");
172         precache_sound ("misc/armor25.wav");
173         precache_sound ("misc/armorimpact.wav");
174         precache_sound ("misc/bodyimpact1.wav");
175         precache_sound ("misc/bodyimpact2.wav");
176         precache_sound ("misc/gib.wav");
177         precache_sound ("misc/gib_splat01.wav");
178         precache_sound ("misc/gib_splat02.wav");
179         precache_sound ("misc/gib_splat03.wav");
180         precache_sound ("misc/gib_splat04.wav");
181         //precache_sound ("misc/h2ohit.wav");
182         precache_sound ("misc/hit.wav");
183         precache_sound ("misc/footstep01.wav");
184         precache_sound ("misc/footstep02.wav");
185         precache_sound ("misc/footstep03.wav");
186         precache_sound ("misc/footstep04.wav");
187         precache_sound ("misc/footstep05.wav");
188         precache_sound ("misc/footstep06.wav");
189         precache_sound ("misc/hitground1.ogg");
190         precache_sound ("misc/hitground2.ogg");
191         precache_sound ("misc/hitground3.ogg");
192         precache_sound ("misc/hitground4.ogg");
193         precache_sound ("misc/itempickup.ogg");
194         precache_sound ("misc/itemrespawn.ogg");
195         precache_sound ("misc/jumppad.ogg");
196         precache_sound ("misc/mediumhealth.ogg");
197         precache_sound ("misc/megahealth.ogg");
198         precache_sound ("misc/minihealth.ogg");
199         precache_sound ("misc/powerup.ogg");
200         precache_sound ("misc/powerup_shield.ogg");
201         precache_sound ("misc/talk.wav");
202         precache_sound ("misc/teleport.ogg");
203         precache_sound ("plats/medplat1.wav");
204         precache_sound ("plats/medplat2.wav");
205         precache_sound ("player/lava.wav");
206         precache_sound ("player/slime.wav");
207         precache_sound ("weapons/crylink_fire.ogg");
208         precache_sound ("weapons/electro_bounce.ogg");
209         precache_sound ("weapons/electro_fire.ogg");
210         precache_sound ("weapons/electro_fire2.ogg");
211         precache_sound ("weapons/electro_fly.wav");
212         precache_sound ("weapons/electro_impact.ogg");
213         precache_sound ("weapons/electro_impact_combo.ogg");
214         //precache_sound ("weapons/grenade_bounce.ogg");
215         precache_sound ("weapons/grenade_bounce1.ogg");
216         precache_sound ("weapons/grenade_bounce2.ogg");
217         precache_sound ("weapons/grenade_bounce3.ogg");
218         precache_sound ("weapons/grenade_bounce4.ogg");
219         precache_sound ("weapons/grenade_bounce5.ogg");
220         precache_sound ("weapons/grenade_bounce6.ogg");
221         precache_sound ("weapons/grenade_fire.ogg");
222         precache_sound ("weapons/grenade_impact.ogg");
223         precache_sound ("weapons/hagar_fire.ogg");
224         precache_sound ("weapons/hagexp1.ogg");
225         precache_sound ("weapons/hagexp2.ogg");
226         precache_sound ("weapons/hagexp3.ogg");
227         precache_sound ("weapons/hook_fire.ogg");
228         precache_sound ("weapons/hook_impact.ogg");
229         precache_sound ("weapons/lasergun_fire.ogg");
230         precache_sound ("weapons/laserimpact.ogg");
231         precache_sound ("weapons/nexfire.ogg");
232         precache_sound ("weapons/neximpact.ogg");
233         precache_sound ("weapons/ric1.ogg");
234         precache_sound ("weapons/ric2.ogg");
235         precache_sound ("weapons/ric3.ogg");
236         precache_sound ("weapons/rocket_fire.ogg");
237         precache_sound ("weapons/rocket_fly.wav");
238         precache_sound ("weapons/rocket_impact.ogg");
239         precache_sound ("weapons/rocket_det.ogg");
240         precache_sound ("weapons/shotgun_fire.ogg");
241         precache_sound ("weapons/tink1.ogg");
242         precache_sound ("weapons/uzi_fire.ogg");
243         precache_sound ("weapons/weapon_switch.ogg");
244         precache_sound ("weapons/weaponpickup.ogg");
245         precache_sound ("weapons/strength_fire.ogg");
246
247         //precache_sound ("announce/male/kill10.ogg");
248         //precache_sound ("announce/male/kill15.ogg");
249         //precache_sound ("announce/male/kill20.ogg");
250         //precache_sound ("announce/male/kill25.ogg");
251         //precache_sound ("announce/male/kill3.ogg");
252         //precache_sound ("announce/male/kill30.ogg");
253         //precache_sound ("announce/male/kill4.ogg");
254         //precache_sound ("announce/male/kill5.ogg");
255         //precache_sound ("announce/male/kill6.ogg");
256         //precache_sound ("announce/male/mapkill1.ogg");
257         //precache_sound ("announce/robotic/last_second_save.ogg");
258         //precache_sound ("announce/robotic/narrowly_averted.ogg");
259         //precache_sound ("minstagib/mockery.ogg");
260
261         // announcer sounds - male
262         precache_sound ("announcer/male/03kills.ogg");
263         precache_sound ("announcer/male/05kills.ogg");
264         precache_sound ("announcer/male/10kills.ogg");
265         precache_sound ("announcer/male/15kills.ogg");
266         precache_sound ("announcer/male/20kills.ogg");
267         precache_sound ("announcer/male/25kills.ogg");
268         precache_sound ("announcer/male/30kills.ogg");
269         precache_sound ("announcer/male/botlike.ogg");
270         precache_sound ("announcer/male/electrobitch.ogg");
271         precache_sound ("announcer/male/welcome.ogg");
272         precache_sound ("announcer/male/yoda.ogg");
273
274         // announcer sounds - robotic
275         precache_sound ("announcer/robotic/1fragleft.ogg");
276         precache_sound ("announcer/robotic/1minuteremains.ogg");
277         precache_sound ("announcer/robotic/2fragsleft.ogg");
278         precache_sound ("announcer/robotic/3fragsleft.ogg");
279         precache_sound ("announcer/robotic/lastsecond.ogg");
280         precache_sound ("announcer/robotic/narrowly.ogg");
281
282         // plays music for the level if there is any
283         if (self.noise)
284         {
285                 precache_sound (self.noise);
286                 ambientsound ('0 0 0', self.noise, 1.00, ATTN_NONE);
287         }
288
289                 // 0 normal
290         lightstyle(0, "m");
291
292         // 1 FLICKER (first variety)
293         lightstyle(1, "mmnmmommommnonmmonqnmmo");
294
295         // 2 SLOW STRONG PULSE
296         lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
297
298         // 3 CANDLE (first variety)
299         lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
300
301         // 4 FAST STROBE
302         lightstyle(4, "mamamamamama");
303
304         // 5 GENTLE PULSE 1
305         lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
306
307         // 6 FLICKER (second variety)
308         lightstyle(6, "nmonqnmomnmomomno");
309
310         // 7 CANDLE (second variety)
311         lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
312
313         // 8 CANDLE (third variety)
314         lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
315
316         // 9 SLOW STROBE (fourth variety)
317         lightstyle(9, "aaaaaaaazzzzzzzz");
318
319         // 10 FLUORESCENT FLICKER
320         lightstyle(10, "mmamammmmammamamaaamammma");
321
322         // 11 SLOW PULSE NOT FADE TO BLACK
323         lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
324
325         // styles 32-62 are assigned by the light program for switchable lights
326
327         // 63 testing
328         lightstyle(63, "a");
329
330         player_count = 0;
331         lms_lowest_lives = 0;
332         lms_next_place = 0;
333
334         GotoFirstMap();
335
336         if(cvar("g_campaign"))
337                 CampaignPreInit();
338
339         InitGameplayMode();
340         //if (cvar("g_domination"))
341         //      dom_init();
342
343         local entity head;
344         head = nextent(world);
345         maxclients = 0;
346         while(head)
347         {
348                 maxclients++;
349                 head = nextent(head);
350         }
351
352         GameLogInit(); // prepare everything
353         if(cvar("sv_eventlog"))
354         {
355                 local string s;
356                 GameLogEcho(":logversion:2", FALSE);
357                 s = strcat(cvar_string("sv_eventlog_files_counter"), ".");
358                 s = strcat(s, ftos(random()));
359                 GameLogEcho(strcat(":gamestart:", GetMapname(), ":", s), FALSE);
360                 s = ":gameinfo:mutators:LIST";
361                 if(cvar("g_grappling_hook"))
362                         s = strcat(s, ":grappling_hook");
363                 if(!cvar("g_use_ammunition"))
364                         s = strcat(s, ":no_use_ammunition");
365                 if(!cvar("g_pickup_items"))
366                         s = strcat(s, ":no_pickup_items");
367                 if(cvar("g_instagib"))
368                         s = strcat(s, ":instagib");
369                 if(cvar("g_rocketarena"))
370                         s = strcat(s, ":rockerarena");
371                 if(cvar("g_nixnex"))
372                         s = strcat(s, ":nixnex");
373                 if(cvar("g_vampire"))
374                         s = strcat(s, ":vampire");
375                 if(cvar("g_laserguided_missile"))
376                         s = strcat(s, ":laserguided_missile");
377                 if(cvar("g_norecoil"))
378                         s = strcat(s, ":norecoil");
379                 if(cvar("g_midair"))
380                         s = strcat(s, ":midair");
381                 if(cvar("g_minstagib"))
382                         s = strcat(s, ":minstagib");
383                 GameLogEcho(s, FALSE);
384                 GameLogEcho(":gameinfo:end", FALSE);
385         }
386
387         cvar_set("nextmap", "");
388
389         SetDefaultAlpha();
390
391         if(cvar("g_campaign"))
392                 CampaignPostInit();
393
394         fteqcc_testbugs();
395 }
396
397 void light (void)
398 {
399         makestatic (self);
400 }
401
402 float( string pFilename ) TryFile =
403 {
404         local float lHandle;
405         dprint("TryFile(\"", pFilename, "\")\n");
406         lHandle = fopen( pFilename, FILE_READ );
407         if( lHandle != -1 ) {
408                 fclose( lHandle );
409                 return TRUE;
410         } else {
411                 return FALSE;
412         }
413 };
414
415 string GetMapname()
416 {
417         if (game == GAME_DEATHMATCH)
418                 return strcat("dm_", mapname);
419         else if (game == GAME_TEAM_DEATHMATCH)
420                 return strcat("tdm_", mapname);
421         else if (game == GAME_DOMINATION)
422                 return strcat("dom_", mapname);
423         else if (game == GAME_CTF)
424                 return strcat("ctf_", mapname);
425         else if (game == GAME_RUNEMATCH)
426                 return strcat("rune_", mapname);
427         else if (game == GAME_LMS)
428                 return strcat("lms_", mapname);
429         return strcat("dm_", mapname);
430 }
431
432 float Map_Count, Map_Current;
433 string Map_Current_Name;
434
435 // NOTE: this now expects the map list to be already tokenize()d and the count in Map_Count
436 float GetMaplistPosition()
437 {
438         float pos;
439         string map;
440
441         map = GetMapname();
442         for(pos = 0; pos < Map_Count; ++pos)
443                 if(map == argv(pos))
444                         return pos;
445
446         // resume normal maplist rotation if current map is not in g_maplist
447         return cvar("g_maplist_index");
448 }
449
450 float MapHasRightSize(string map)
451 {
452         // open map size restriction file
453         float fh;
454         dprint("opensize "); dprint(map);
455         fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
456         if(fh >= 0)
457         {
458                 float mapmin, mapmax;
459                 dprint(": ok, ");
460                 mapmin = stof(fgets(fh));
461                 mapmax = stof(fgets(fh));
462                 fclose(fh);
463                 if(player_count < mapmin)
464                 {
465                         dprint("not enough\n");
466                         return FALSE;
467                 }
468                 if(player_count > mapmax)
469                 {
470                         dprint("too many\n");
471                         return FALSE;
472                 }
473                 dprint("right size\n");
474                 return TRUE;
475         }
476         dprint(": not found\n");
477         return TRUE;
478 }
479
480 string Map_Filename(float position)
481 {
482         return strcat("maps/", argv(position), ".mapcfg");
483 }
484
485 float(float position, float pass) Map_Check =
486 {
487         string filename;
488         string map_next;
489         map_next = argv(position);
490         if(pass <= 1)
491                 if(map_next == Map_Current_Name) // same map again in first pass?
492                         return 0;
493         filename = Map_Filename(position);
494         if(TryFile(filename))
495         {
496                 if(pass == 2)
497                         return 1;
498                 if(MapHasRightSize(argv(position)))
499                         return 1;
500                 return 0;
501         }
502         else
503                 dprint( "Couldn't find '", filename, "'..\n" );
504
505         return 0;
506 }
507
508 void(float position) Map_Goto =
509 {
510         cvar_set("g_maplist_index", ftos(position));
511         localcmd(strcat("exec \"", Map_Filename(position) ,"\"\n"));
512 }
513
514 // return codes of map selectors:
515 //   -1 = temporary failure (that is, try some method that is guaranteed to succeed)
516 //   -2 = permanent failure
517 float() MaplistMethod_Iterate = // usual method
518 {
519         float pass, i;
520
521         for(pass = 1; pass <= 2; ++pass)
522         {
523                 for(i = 1; i < Map_Count; ++i)
524                 {
525                         float mapindex;
526                         mapindex = math_mod(i + Map_Current, Map_Count);
527                         if(Map_Check(mapindex, pass))
528                                 return mapindex;
529                 }
530         }
531         return -1;
532 }
533
534 float() MaplistMethod_Repeat = // fallback method
535 {
536         if(Map_Check(Map_Current, 2))
537                 return Map_Current;
538         return -2;
539 }
540
541 float() MaplistMethod_Random = // random map selection
542 {
543         float i, imax;
544
545         imax = 42;
546
547         for(i = 0; i <= imax; ++i)
548         {
549                 float mapindex;
550                 mapindex = math_mod(Map_Current + ceil(random() * (Map_Count - 1)), Map_Count); // any OTHER map
551                 if(Map_Check(mapindex, 1))
552                         return mapindex;
553         }
554         return -1;
555 }
556
557 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
558 // the exponent sets a bias on the map selection:
559 // the higher the exponent, the 
560 {
561         float i, j, imax, insertpos;
562
563         imax = 42;
564
565         if(Map_Count <= 1)
566                 return 0; // only one map, then always play this one
567
568         for(i = 0; i <= imax; ++i)
569         {
570                 string newlist;
571
572                 // now reinsert this at another position
573                 insertpos = pow(random(), 1 / exponent);       // ]0, 1]
574                 insertpos = insertpos * (Map_Count - 1);       // ]0, Map_Count - 1]
575                 insertpos = ceil(insertpos) + 1;               // {2, 3, 4, ..., Map_Count}
576                 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
577
578                 // insert the current map there
579                 newlist = "";
580                 for(j = 1; j < insertpos; ++j)                 // i == 1: no loop, will be inserted as first; however, i == 1 has been excluded above
581                         newlist = strcat(newlist, "'", argv(j), "'");
582                 newlist = strcat(newlist, "'", argv(0), "'");  // now insert the just selected map
583                 for(j = insertpos; j < Map_Count; ++j)         // i == Map_Count: no loop, has just been inserted as last
584                         newlist = strcat(newlist, "'", argv(j), "'");
585                 cvar_set("g_maplist", newlist);
586                 Map_Count = tokenize(newlist);
587
588                 // NOTE: the selected map has just been inserted at (insertpos-1)th position
589                 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
590                 if(Map_Check(Map_Current, 1))
591                         return Map_Current;
592         }
593         return -1;
594 }
595
596 void() Maplist_Init =
597 {
598         string temp;
599         temp = cvar_string("g_maplist");
600         Map_Count = tokenize(temp);
601         if(Map_Count == 0)
602         {
603                 bprint( "Maplist is empty!  Resetting it to default map list.\n" );
604                 cvar_set("g_maplist", temp = cvar_string("g_maplist_defaultlist"));
605                 Map_Count = tokenize(temp);
606         }
607         if(Map_Count == 0)
608                 error("empty maplist, cannot select a new map");
609         Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
610
611         Map_Current_Name = strzone(argv(Map_Current)); // will be automatically freed on exit thanks to DP
612         // this may or may not be correct, but who cares, in the worst case a map
613         // isn't chosen in the first pass that should have been
614 }
615
616 void() GotoNextMap =
617 {
618         //local string nextmap;
619         //local float n, nummaps;
620         //local string s;
621         string exit_cfg;
622         if (alreadychangedlevel)
623                 return;
624         alreadychangedlevel = TRUE;
625
626         if(cvar("g_campaign"))
627         {
628                 CampaignPostIntermission();
629                 return;
630         }
631
632         if(cvar("quit_when_empty"))
633         {
634                 if(player_count <= currentbots)
635                 {
636                         localcmd("quit\n");
637                         return;
638                 }
639         }
640
641         if (cvar("samelevel")) // if samelevel is set, stay on same level
642         {
643                 // 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)
644                 //localcmd(strcat("exec \"maps/", mapname, ".mapcfg\"\n"));
645                 // so instead just restart the current map using the restart command (DOES NOT WORK PROPERLY WITH exit_cfg STUFF)
646                 localcmd("restart\n");
647                 //changelevel (mapname);
648                 return;
649         }
650
651         // if an exit cfg is defined by exiting map, exec it.
652         exit_cfg = cvar_string("exit_cfg");
653         if(exit_cfg != "")
654                 localcmd(strcat("exec \"", exit_cfg, "\"\n"));
655
656         localcmd("exec game_reset.cfg\n");
657
658
659         if (cvar("lastlevel"))
660         {
661                 localcmd(strcat("set lastlevel 0\n"));
662                 localcmd(strcat("togglemenu\n"));
663         }
664         else
665         {
666                 float nextMap;
667                 float allowReset;
668
669                 // cvar "nextmap" always gets priority
670                 if(TryFile(strcat("maps/", cvar_string("nextmap"), ".mapcfg")))
671                 {
672                         localcmd(strcat("exec \"maps/", cvar_string("nextmap"), ".mapcfg\"\n"));
673                         return;
674                 }
675
676                 for(allowReset = 1; allowReset >= 0; --allowReset)
677                 {
678                         Maplist_Init();
679                         nextMap = -1;
680
681                         if(nextMap == -1)
682                                 if(cvar("g_maplist_shuffle") > 0)
683                                         nextMap = MaplistMethod_Shuffle(cvar("g_maplist_shuffle") + 1);
684
685                         if(nextMap == -1)
686                                 if(cvar("g_maplist_selectrandom"))
687                                         nextMap = MaplistMethod_Random();
688
689                         if(nextMap == -1)
690                                 nextMap = MaplistMethod_Iterate();
691
692                         if(nextMap == -1)
693                                 nextMap = MaplistMethod_Repeat();
694
695                         if(nextMap >= 0)
696                         {
697                                 Map_Goto(nextMap);
698                                 break;
699                         }
700                         else // PERMANENT FAILURE
701                         {
702                                 if(allowReset)
703                                 {
704                                         bprint( "Maplist contains no single playable map!  Resetting it to default map list.\n" );
705                                         cvar_set("g_maplist", cvar_string("g_maplist_defaultlist"));
706                                 }
707                                 else
708                                 {
709                                         error("Everything is broken - not even the default map list works. Please report this to the developers.");
710                                 }
711                         }
712                 }
713         }
714 };
715
716
717 /*
718 ============
719 IntermissionThink
720
721 When the player presses attack or jump, change to the next level
722 ============
723 */
724 void() IntermissionThink =
725 {
726         if(cvar("sv_autoscreenshot"))
727         if(self.cnt > time)
728         {
729                 self.cnt = FALSE;
730                 if(clienttype(self) == CLIENTTYPE_REAL)
731                         stuffcmd(self, "screenshot\necho \"^5A screenshot has been taken at request of the server.\"\n");
732                 return;
733         }
734
735         if (time < intermission_exittime)
736                 return;
737
738         if (time < intermission_exittime + 10 && !self.button0 && !self.button1 && !self.button2 && !self.button3)
739                 return;
740
741         GotoNextMap ();
742 };
743
744 /*
745 ============
746 FindIntermission
747
748 Returns the entity to view from
749 ============
750 */
751 /*
752 entity() FindIntermission =
753 {
754         local   entity spot;
755         local   float cyc;
756
757 // look for info_intermission first
758         spot = find (world, classname, "info_intermission");
759         if (spot)
760         {       // pick a random one
761                 cyc = random() * 4;
762                 while (cyc > 1)
763                 {
764                         spot = find (spot, classname, "info_intermission");
765                         if (!spot)
766                                 spot = find (spot, classname, "info_intermission");
767                         cyc = cyc - 1;
768                 }
769                 return spot;
770         }
771
772 // then look for the start position
773         spot = find (world, classname, "info_player_start");
774         if (spot)
775                 return spot;
776
777 // testinfo_player_start is only found in regioned levels
778         spot = find (world, classname, "testplayerstart");
779         if (spot)
780                 return spot;
781
782 // then look for the start position
783         spot = find (world, classname, "info_player_deathmatch");
784         if (spot)
785                 return spot;
786
787         //objerror ("FindIntermission: no spot");
788         return world;
789 };
790 */
791
792 /*
793 ===============================================================================
794
795 RULES
796
797 ===============================================================================
798 */
799
800 void() DumpStats =
801 {
802         local float file;
803         local string s;
804
805         if(cvar("_printstats"))
806                 cvar_set("_printstats", "0");
807         else if(!gameover)
808                 return;
809
810         if(gameover)
811                 s = ":scores:";
812         else
813                 s = ":status:";
814
815         s = strcat(s, GetMapname(), ":", ftos(rint(time)));
816
817         if(cvar("sv_eventlog") && gameover)
818                 GameLogEcho(s, FALSE);
819         else if(cvar("sv_logscores_console"))
820                 ServerConsoleEcho(s, FALSE);
821         if(cvar("sv_logscores_file"))
822         {
823                 file = fopen(cvar_string("sv_logscores_filename"), FILE_APPEND);
824                 fputs(file, strcat(s, "\n"));
825         }
826
827         other = findchainflags(flags, FL_CLIENT);
828         while (other)
829         {
830                 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && cvar("sv_logscores_bots")))
831                 {
832                         s = strcat(":player:", ftos(other.frags), ":");
833                         s = strcat(s, ftos(other.deaths), ":");
834                         s = strcat(s, ftos(rint(time - other.jointime)), ":");
835                         s = strcat(s, ftos(other.team), ":");
836
837                         if(cvar("sv_logscores_file"))
838                                 fputs(file, strcat(s, other.netname, "\n"));
839                         if(cvar("sv_eventlog") && gameover)
840                                 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname), TRUE);
841                         else if(cvar("sv_logscores_console"))
842                                 ServerConsoleEcho(strcat(s, other.netname), TRUE);
843                 }
844                 other = other.chain;
845         }
846
847         if(cvar("sv_eventlog") && gameover)
848                 GameLogEcho(":end", FALSE);
849         else if(cvar("sv_logscores_console"))
850                 ServerConsoleEcho(":end", FALSE);
851         if(cvar("sv_logscores_file"))
852         {
853                 fputs(file, ":end\n");
854                 fclose(file);
855         }
856 }
857
858
859 /*
860 go to the next level for deathmatch
861 only called if a time or frag limit has expired
862 */
863 void() NextLevel =
864 {
865         gameover = TRUE;
866
867         intermission_running = 1;
868
869 // enforce a wait time before allowing changelevel
870         if(player_count > 0)
871                 intermission_exittime = time + cvar("sv_mapchange_delay");
872         else
873                 intermission_exittime = -60;
874
875         WriteByte (MSG_ALL, SVC_CDTRACK);
876         WriteByte (MSG_ALL, 3);
877         WriteByte (MSG_ALL, 3);
878
879         //pos = FindIntermission ();
880
881         VoteReset();
882
883         DumpStats();
884
885         if(cvar("sv_eventlog"))
886                 GameLogEcho(":gameover", FALSE);
887
888         GameLogClose();
889
890         other = findchainflags(flags, FL_CLIENT);
891         while (other != world)
892         {
893                 //other.nextthink = time + 0.5;
894                 other.takedamage = DAMAGE_NO;
895                 other.solid = SOLID_NOT;
896                 other.movetype = MOVETYPE_NONE;
897                 other.angles = other.v_angle;
898                 other.angles_x = other.angles_x * -1;
899                 other.cnt = time + 0.5; // used for autoscreenshot
900
901                 self = other;
902
903                 if(other.winning)
904                         bprint(strcat(other.netname, " ^7wins.\n"));
905
906                 /*
907                 if (pos != world);
908                 {
909                         other.modelindex = 0;
910                         other.weaponentity = world; // remove weapon model
911                         other.view_ofs = '0 0 0';
912                         other.angles = other.v_angle = pos.mangle;
913                         if (!other.angles)
914                         {
915                                 other.angles = other.v_angle = pos.angles;
916                                 other.v_angle_x = other.v_angle_x * -1;
917                         }
918                         other.fixangle = TRUE;          // turn this way immediately
919                         setorigin (other, pos.origin);
920                 }
921                 */
922                 other = other.chain;
923         }
924
925         if(cvar("g_campaign"))
926                 CampaignPreIntermission();
927
928         WriteByte (MSG_ALL, SVC_INTERMISSION);
929 };
930
931 /*
932 ============
933 CheckRules_Player
934
935 Exit deathmatch games upon conditions
936 ============
937 */
938 void() CheckRules_Player =
939 {
940         if (gameover)   // someone else quit the game already
941                 return;
942
943         // fixme: don't check players; instead check dom_team and ctf_team entities
944         //   (div0: and that in CheckRules_World please)
945         centermsg_check();
946 };
947
948 float checkrules_oneminutewarning;
949 float checkrules_leaderfrags;
950 float tdm_max_score, tdm_old_score;
951
952 float checkrules_equality;
953 float checkrules_overtimewarning;
954 float checkrules_overtimeend;
955
956 void() InitiateOvertime =
957 {
958         if(!checkrules_overtimeend)
959                 checkrules_overtimeend = time + 60 * cvar("timelimit_maxovertime");
960 }
961
962 float WINNING_NO = 0; // no winner, but time limits may terminate the game
963 float WINNING_YES = 1; // winner found
964 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
965 float WINNING_STARTOVERTIME = 3; // no winner, enter overtime NOW
966
967 float(float fraglimitreached, float equality) GetWinningCode =
968 {
969         if(equality)
970                 if(fraglimitreached)
971                         return WINNING_STARTOVERTIME;
972                 else
973                         return WINNING_NEVER;
974         else
975                 if(fraglimitreached)
976                         return WINNING_YES;
977                 else
978                         return WINNING_NO;
979 }
980
981 // set the .winning flag for exactly those players with a given field value
982 void(.float field, float value) SetWinners =
983 {
984         entity head;
985         head = findchain(classname, "player");
986         while (head)
987         {
988                 head.winning = (head.field == value);
989                 head = head.chain;
990         }
991 }
992
993 // set the .winning flag for those players with a given field value
994 void(.float field, float value) AddWinners =
995 {
996         entity head;
997         head = findchain(classname, "player");
998         while (head)
999         {
1000                 if(head.field == value)
1001                         head.winning = 1;
1002                 head = head.chain;
1003         }
1004 }
1005
1006 // clear the .winning flags
1007 void(void) ClearWinners =
1008 {
1009         entity head;
1010         head = findchain(classname, "player");
1011         while (head)
1012         {
1013                 head.winning = 0;
1014                 head = head.chain;
1015         }
1016 }
1017
1018 float() LMS_NewPlayerLives =
1019 {
1020         float fl;
1021         fl = cvar("fraglimit");
1022         if(fl == 0)
1023                 fl = 999;
1024
1025         // first player has left the game for dying too much? Nobody else can get in.
1026         if(lms_lowest_lives < 1)
1027                 return FALSE;
1028
1029         if(!cvar("g_lms_join_anytime"))
1030                 if(lms_lowest_lives < fl - cvar("g_lms_last_join"))
1031                         return FALSE;
1032
1033         return bound(1, lms_lowest_lives, fl);
1034 }
1035
1036 // LMS winning condition: game terminates if and only if there's at most one
1037 // one player who's living lives. Top two scores being equal cancels the time
1038 // limit.
1039 float() WinningCondition_LMS =
1040 {
1041         entity head;
1042         float have_player;
1043         float have_players;
1044         float l;
1045
1046         have_player = FALSE;
1047         have_players = FALSE;
1048         l = LMS_NewPlayerLives();
1049
1050         head = find(world, classname, "player");
1051         if(head)
1052                 have_player = TRUE;
1053         head = find(head, classname, "player");
1054         if(head)
1055                 have_players = TRUE;
1056
1057         if(have_player)
1058         {
1059                 // we have at least one player
1060                 if(have_players)
1061                 {
1062                         // two or more active players - continue with the game
1063                 }
1064                 else
1065                 {
1066                         // exactly one player?
1067                         if(l)
1068                         {
1069                                 // but no game has taken place yet
1070                         }
1071                         else
1072                         {
1073                                 // a winner!
1074                                 SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1075                                 dprint("Have a winner, ending game.\n");
1076                                 return WINNING_YES;
1077                         }
1078                 }
1079         }
1080         else
1081         {
1082                 // nobody is playing at all...
1083                 if(l)
1084                 {
1085                         // wait for players...
1086                 }
1087                 else
1088                 {
1089                         // SNAFU (maybe a draw game?)
1090                         ClearWinners();
1091                         dprint("No players, ending game.\n");
1092                         return WINNING_YES;
1093                 }
1094         }
1095
1096         // When we get here, we have at least two players who are actually LIVING,
1097         // or one player who is still waiting for a victim to join the server. Now
1098         // check if the top two players have equal score.
1099
1100         checkrules_leaderfrags = 0;
1101         head = findchain(classname, "player");
1102         checkrules_equality = FALSE;
1103         while (head)
1104         {
1105                 if(head.frags > checkrules_leaderfrags)
1106                 {
1107                         checkrules_leaderfrags = head.frags;
1108                         checkrules_equality = FALSE;
1109                 }
1110                 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1111                         checkrules_equality = TRUE;
1112                 head = head.chain;
1113         }
1114
1115         SetWinners(frags, checkrules_leaderfrags);
1116
1117         // The top two players have the same amount of lives? No timelimit then,
1118         // enter overtime...
1119
1120         if(checkrules_equality)
1121                 return WINNING_NEVER;
1122
1123         // Top two have different scores? Way to go for our beloved TIMELIMIT!
1124         return WINNING_NO;
1125 }
1126
1127 // DM winning condition: game terminates if a player reached the fraglimit,
1128 // unless the first two players have the same score. The latter case also
1129 // breaks the time limit.
1130 float(float fraglimit) WinningCondition_MaxIndividualScore =
1131 {
1132         float checkrules_oldleaderfrags;
1133         entity head;
1134
1135         checkrules_oldleaderfrags = checkrules_leaderfrags;
1136         checkrules_leaderfrags = 0;
1137         head = findchain(classname, "player");
1138         checkrules_equality = FALSE;
1139         while (head)
1140         {
1141                 if(head.frags > checkrules_leaderfrags)
1142                 {
1143                         checkrules_leaderfrags = head.frags;
1144                         checkrules_equality = FALSE;
1145                 }
1146                 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1147                         checkrules_equality = TRUE;
1148                 head = head.chain;
1149         }
1150
1151         if(checkrules_leaderfrags > 0)
1152                 SetWinners(frags, checkrules_leaderfrags);
1153         else
1154                 ClearWinners();
1155
1156         if (!cvar("g_runematch"))
1157                 if (checkrules_leaderfrags != checkrules_oldleaderfrags)
1158                 {
1159                         if (checkrules_leaderfrags == fraglimit - 1)
1160                                 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1161                         else if (checkrules_leaderfrags == fraglimit - 2)
1162                                 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1163                         else if (checkrules_leaderfrags == fraglimit - 3)
1164                                 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1165                 }
1166
1167         return GetWinningCode(fraglimit && checkrules_leaderfrags >= fraglimit, checkrules_equality);
1168 }
1169
1170 float(float fraglimit) WinningConditionBase_Teamplay =
1171 {
1172         tdm_old_score = tdm_max_score;
1173         tdm_max_score = max(team1_score, team2_score, team3_score, team4_score);
1174
1175         checkrules_equality =
1176         (
1177                 (tdm_max_score > 0)
1178                 &&
1179                 (
1180                           (team1_score == tdm_max_score)
1181                         + (team2_score == tdm_max_score)
1182                         + (team3_score == tdm_max_score)
1183                         + (team4_score == tdm_max_score)
1184                         >= 2));
1185
1186         ClearWinners();
1187         if(tdm_max_score > 0)
1188         {
1189                 if(team1_score == tdm_max_score)
1190                         AddWinners(team, COLOR_TEAM1);
1191                 if(team2_score == tdm_max_score)
1192                         AddWinners(team, COLOR_TEAM2);
1193                 if(team3_score == tdm_max_score)
1194                         AddWinners(team, COLOR_TEAM3);
1195                 if(team4_score == tdm_max_score)
1196                         AddWinners(team, COLOR_TEAM4);
1197         }
1198
1199         if(!cvar("g_runematch") && !cvar("g_domination"))
1200                 if(tdm_max_score != tdm_old_score)
1201                 {
1202                         if(tdm_max_score == fraglimit - 1)
1203                                 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1204                         else if(tdm_max_score == fraglimit - 2)
1205                                 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1206                         else if(tdm_max_score == fraglimit - 3)
1207                                 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1208                 }
1209
1210         return GetWinningCode(fraglimit && tdm_max_score >= fraglimit, checkrules_equality);
1211 }
1212
1213 // TDM winning condition: game terminates if a team's score sum reached the
1214 // fraglimit, unless the first two teams have the same total score. The latter
1215 // case also breaks the time limit.
1216 float(float fraglimit) WinningCondition_MaxTeamSum =
1217 {
1218         entity head;
1219
1220         team1_score = team2_score = team3_score = team4_score = 0;
1221
1222         head = findchain(classname, "player");
1223         while (head)
1224         {
1225                 if(head.team == COLOR_TEAM1)
1226                         team1_score += head.frags;
1227                 else if(head.team == COLOR_TEAM2)
1228                         team2_score += head.frags;
1229                 else if(head.team == COLOR_TEAM3)
1230                         team3_score += head.frags;
1231                 else if(head.team == COLOR_TEAM4)
1232                         team4_score += head.frags;
1233                 head = head.chain;
1234         }
1235
1236         return WinningConditionBase_Teamplay(fraglimit);
1237 }
1238
1239 // DOM/CTF winning condition: game terminates if the max of a team's players'
1240 // score reached the fraglimit, unless the first two teams have the same
1241 // maximum score. The latter case also breaks the time limit.
1242 float(float fraglimit) WinningCondition_MaxTeamMax =
1243 {
1244         entity head;
1245
1246         team1_score = team2_score = team3_score = team4_score = 0;
1247
1248         head = findchain(classname, "player");
1249         while (head)
1250         {
1251                 if(head.team == COLOR_TEAM1)
1252                 {
1253                         if(head.frags > team1_score)
1254                                 team1_score = head.frags;
1255                 }
1256                 else if(head.team == COLOR_TEAM2)
1257                 {
1258                         if(head.frags > team2_score)
1259                                 team2_score = head.frags;
1260                 }
1261                 else if(head.team == COLOR_TEAM3)
1262                 {
1263                         if(head.frags > team3_score)
1264                                 team3_score = head.frags;
1265                 }
1266                 else if(head.team == COLOR_TEAM4)
1267                 {
1268                         if(head.frags > team4_score)
1269                                 team4_score = head.frags;
1270                 }
1271                 head = head.chain;
1272         }
1273
1274         return WinningConditionBase_Teamplay(fraglimit);
1275 }
1276
1277 void PrintScoreboardFor(string name, string colorcode, float whichteam)
1278 {
1279         entity head;
1280         float fragtotal;
1281         string s;
1282         float found;
1283         found = FALSE;
1284         head = find(world, classname, "player");
1285         while(head)
1286         {
1287                 if(!whichteam || head.team == whichteam)
1288                 {
1289                         if(name != "")
1290                                 if(!found)
1291                                         ServerConsoleEcho(strcat(" ", colorcode, name, ":"), FALSE);
1292                         found = TRUE;
1293                         fragtotal = fragtotal + head.frags;
1294                         s = ftos(head.frags);
1295                         s = strcat(s, "/", ftos(head.deaths));
1296                         s = strcat(s, " @ ", ftos(head.ping));
1297                         if(clienttype(head) == CLIENTTYPE_BOT)
1298                                 s = strcat(s, "botms");
1299                         else
1300                                 s = strcat(s, "ms");
1301                         ServerConsoleEcho(strcat("  ", colorcode, head.netname, colorcode, " (", s, ")"), TRUE);
1302                 }
1303                 head = find(head, classname, "player");
1304         }
1305         if(whichteam && found)
1306                 ServerConsoleEcho(strcat(colorcode, "  (total: ", ftos(fragtotal), ")"), FALSE);
1307 }
1308
1309 void PrintScoreboard()
1310 {
1311         ServerConsoleEcho("Scoreboard:", FALSE);
1312         if(teams_matter)
1313         {
1314                 PrintScoreboardFor("Red", "^1", COLOR_TEAM1);
1315                 PrintScoreboardFor("Blue", "^4", COLOR_TEAM2);
1316                 PrintScoreboardFor("Pink", "^6", COLOR_TEAM3);
1317                 PrintScoreboardFor("Yellow", "^3", COLOR_TEAM4);
1318         }
1319         else
1320         {
1321                 PrintScoreboardFor("", "^7", 0);
1322         }
1323         ServerConsoleEcho(".", FALSE);
1324 }
1325
1326 void RemoveFromMaplist(string m)
1327 {
1328         string result;
1329         float litems;
1330         float i;
1331         float found;
1332
1333         litems = tokenize(cvar_string("g_maplist"));
1334         found = 0;
1335         result = "";
1336         for(i = 0; i < litems; ++i)
1337         {
1338                 m = strcat(m);
1339                 result = strcat(result);
1340                 if(argv(i) == m)
1341                         found += 1;
1342                 else
1343                         result = strcat(result, "'", argv(i), "'");
1344         }
1345         if(found)
1346                 cvar_set("g_maplist", result);
1347         ServerConsoleEcho(strcat("Removed ", ftos(found), " items."), FALSE);
1348 }
1349
1350 void AddToMaplist(string m)
1351 {
1352         string result;
1353         float found;
1354         float litems;
1355         float i;
1356         float ipos;
1357         float inserted;
1358
1359         if(!TryFile(strcat("maps/", m, ".mapcfg")))
1360         {
1361                 ServerConsoleEcho("Map not found.", FALSE);
1362                 return;
1363         }
1364
1365         litems = tokenize(cvar_string("g_maplist"));
1366         if(cvar("g_maplist_shuffle"))
1367                 ipos = ceil(random() * (litems + 1)) - 1;
1368         else
1369                 ipos = litems;
1370         found = 0;
1371         inserted = 0;
1372         for(i = 0; i < litems; ++i)
1373         {
1374                 m = strcat(m);
1375                 if(i == ipos)
1376                 {
1377                         result = strcat(result, "'", m, "'");
1378                         inserted = 1;
1379                 }
1380                 result = strcat(result, "'", argv(i), "'");
1381                 if(argv(i) == m)
1382                         found += 1;
1383         }
1384         if(!inserted)
1385                 result = strcat(result, "'", m, "'");
1386         if(!found)
1387         {
1388                 cvar_set("g_maplist", result);
1389                 ServerConsoleEcho("Map added.", FALSE);
1390         }
1391         else
1392                 ServerConsoleEcho("Map already in list.", FALSE);
1393 }
1394
1395 void ShuffleMaplist()
1396 {
1397         string result;
1398         float start;
1399         float litems;
1400         float selected;
1401         float i;
1402
1403         result = cvar_string("g_maplist");
1404         litems = tokenize(result);
1405
1406         for(start = 0; start < litems - 1; ++start)
1407         {
1408                 result = "";
1409
1410                 // select a random item
1411                 selected = ceil(random() * (litems - start) + start) - 1;
1412
1413                 // shift this item to the place start
1414                 for(i = 0; i < start; ++i)
1415                         result = strcat(result, "'", argv(i), "'");
1416                 result = strcat(result, "'", argv(selected), "'");
1417                 for(i = start; i < litems; ++i)
1418                         if(i != selected)
1419                                 result = strcat(result, "'", argv(i), "'");
1420
1421                 litems = tokenize(result);
1422
1423                 //dprint(result, "\n");
1424         }
1425
1426         cvar_set("g_maplist", result);
1427 }
1428
1429 /*
1430 ============
1431 CheckRules_World
1432
1433 Exit deathmatch games upon conditions
1434 ============
1435 */
1436 void() CheckRules_World =
1437 {
1438         local float status;
1439         local float timelimit;
1440         local float fraglimit;
1441
1442         VoteThink();
1443
1444         SetDefaultAlpha();
1445
1446         if (intermission_running)
1447                 if (time >= intermission_exittime + 60)
1448                 {
1449                         GotoNextMap();
1450                         return;
1451                 }
1452
1453         if (gameover)   // someone else quit the game already
1454                 return;
1455
1456         DumpStats();
1457
1458         if(cvar("_scoreboard"))
1459         {
1460                 cvar_set("_scoreboard", "0");
1461                 PrintScoreboard();
1462         }
1463
1464         // automatically shuffle when setting g_maplist_shuffle
1465         if(cvar_string("_g_maplist_add") != "")
1466         {
1467                 AddToMaplist(cvar_string("_g_maplist_add"));
1468                 cvar_set("_g_maplist_add", "");
1469         }
1470         if(cvar_string("_g_maplist_remove") != "")
1471         {
1472                 RemoveFromMaplist(cvar_string("_g_maplist_remove"));
1473                 cvar_set("_g_maplist_remove", "");
1474         }
1475         if(cvar("_g_maplist_shufflenow") || (cvar("g_maplist_shuffle") && !cvar("_g_maplist_have_shuffled")))
1476         {
1477                 ShuffleMaplist();
1478                 localcmd("set _g_maplist_shufflenow 0\nset _g_maplist_have_shuffled 1\necho Shuffled map list.\n");
1479         }
1480         if(cvar("_g_maplist_have_shuffled"))
1481                 if(!cvar("g_maplist_shuffle"))
1482                         localcmd("set _g_maplist_have_shuffled 0\n");
1483
1484         timelimit = cvar("timelimit") * 60;
1485         fraglimit = cvar("fraglimit");
1486
1487         if (timelimit && time >= timelimit)
1488                 InitiateOvertime();
1489
1490         if (checkrules_overtimeend && time >= checkrules_overtimeend)
1491         {
1492                 NextLevel();
1493                 return;
1494         }
1495
1496         if(!checkrules_overtimewarning && checkrules_overtimeend)
1497         {
1498                 checkrules_overtimewarning = TRUE;
1499                 //sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1500                 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
1501         }
1502
1503         if (!checkrules_oneminutewarning && timelimit > 0 && time > timelimit - 60)
1504         {
1505                 checkrules_oneminutewarning = TRUE;
1506                 sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1507         }
1508
1509         status = WINNING_NO;
1510         if(cvar("g_lms"))
1511         {
1512                 status = WinningCondition_LMS();
1513         }
1514         else
1515         {
1516                 if(teams_matter)
1517                 {
1518                         if(cvar("g_tdm") || cvar("g_runematch") || cvar("g_ctf") || cvar("g_domination"))
1519                                 status = WinningCondition_MaxTeamSum(fraglimit);
1520                         //else if()
1521                         //      status = WinningCondition_MaxTeamMax(fraglimit);
1522                         else
1523                         {
1524                                 dprint("div0: How can this happen?\n");
1525                                 status = WinningCondition_MaxTeamMax(fraglimit);
1526                         }
1527                 }
1528                 else
1529                         status = WinningCondition_MaxIndividualScore(fraglimit);
1530         }
1531
1532         if(status == WINNING_STARTOVERTIME)
1533         {
1534                 status = WINNING_NEVER;
1535                 InitiateOvertime();
1536         }
1537
1538         if(status == WINNING_NEVER)
1539                 // equality cases! Nobody wins if the overtime ends in a draw.
1540                 ClearWinners();
1541
1542         if(checkrules_overtimeend)
1543                 if(status != WINNING_NEVER)
1544                         status = WINNING_YES;
1545
1546         if(status == WINNING_YES)
1547                 NextLevel();
1548 };