]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/g_world.qc
cnt -> autoscreenshot to make sure (cnt is already used for the previous weapon)
[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 .float autoscreenshot;
725 void() IntermissionThink =
726 {
727         if(cvar("sv_autoscreenshot"))
728         if(self.autoscreenshot)
729         if(time > self.autoscreenshot)
730         {
731                 self.autoscreenshot = FALSE;
732                 if(clienttype(self) == CLIENTTYPE_REAL)
733                         stuffcmd(self, "\nscreenshot\necho \"^5A screenshot has been taken at request of the server.\"\n");
734                 return;
735         }
736
737         if (time < intermission_exittime)
738                 return;
739
740         if (time < intermission_exittime + 10 && !self.button0 && !self.button1 && !self.button2 && !self.button3)
741                 return;
742
743         GotoNextMap ();
744 };
745
746 /*
747 ============
748 FindIntermission
749
750 Returns the entity to view from
751 ============
752 */
753 /*
754 entity() FindIntermission =
755 {
756         local   entity spot;
757         local   float cyc;
758
759 // look for info_intermission first
760         spot = find (world, classname, "info_intermission");
761         if (spot)
762         {       // pick a random one
763                 cyc = random() * 4;
764                 while (cyc > 1)
765                 {
766                         spot = find (spot, classname, "info_intermission");
767                         if (!spot)
768                                 spot = find (spot, classname, "info_intermission");
769                         cyc = cyc - 1;
770                 }
771                 return spot;
772         }
773
774 // then look for the start position
775         spot = find (world, classname, "info_player_start");
776         if (spot)
777                 return spot;
778
779 // testinfo_player_start is only found in regioned levels
780         spot = find (world, classname, "testplayerstart");
781         if (spot)
782                 return spot;
783
784 // then look for the start position
785         spot = find (world, classname, "info_player_deathmatch");
786         if (spot)
787                 return spot;
788
789         //objerror ("FindIntermission: no spot");
790         return world;
791 };
792 */
793
794 /*
795 ===============================================================================
796
797 RULES
798
799 ===============================================================================
800 */
801
802 void() DumpStats =
803 {
804         local float file;
805         local string s;
806
807         if(cvar("_printstats"))
808                 cvar_set("_printstats", "0");
809         else if(!gameover)
810                 return;
811
812         if(gameover)
813                 s = ":scores:";
814         else
815                 s = ":status:";
816
817         s = strcat(s, GetMapname(), ":", ftos(rint(time)));
818
819         if(cvar("sv_eventlog") && gameover)
820                 GameLogEcho(s, FALSE);
821         else if(cvar("sv_logscores_console"))
822                 ServerConsoleEcho(s, FALSE);
823         if(cvar("sv_logscores_file"))
824         {
825                 file = fopen(cvar_string("sv_logscores_filename"), FILE_APPEND);
826                 fputs(file, strcat(s, "\n"));
827         }
828
829         other = findchainflags(flags, FL_CLIENT);
830         while (other)
831         {
832                 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && cvar("sv_logscores_bots")))
833                 {
834                         s = strcat(":player:", ftos(other.frags), ":");
835                         s = strcat(s, ftos(other.deaths), ":");
836                         s = strcat(s, ftos(rint(time - other.jointime)), ":");
837                         s = strcat(s, ftos(other.team), ":");
838
839                         if(cvar("sv_logscores_file"))
840                                 fputs(file, strcat(s, other.netname, "\n"));
841                         if(cvar("sv_eventlog") && gameover)
842                                 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname), TRUE);
843                         else if(cvar("sv_logscores_console"))
844                                 ServerConsoleEcho(strcat(s, other.netname), TRUE);
845                 }
846                 other = other.chain;
847         }
848
849         if(cvar("sv_eventlog") && gameover)
850                 GameLogEcho(":end", FALSE);
851         else if(cvar("sv_logscores_console"))
852                 ServerConsoleEcho(":end", FALSE);
853         if(cvar("sv_logscores_file"))
854         {
855                 fputs(file, ":end\n");
856                 fclose(file);
857         }
858 }
859
860
861 /*
862 go to the next level for deathmatch
863 only called if a time or frag limit has expired
864 */
865 void() NextLevel =
866 {
867         gameover = TRUE;
868
869         intermission_running = 1;
870
871 // enforce a wait time before allowing changelevel
872         if(player_count > 0)
873                 intermission_exittime = time + cvar("sv_mapchange_delay");
874         else
875                 intermission_exittime = -60;
876
877         WriteByte (MSG_ALL, SVC_CDTRACK);
878         WriteByte (MSG_ALL, 3);
879         WriteByte (MSG_ALL, 3);
880
881         //pos = FindIntermission ();
882
883         VoteReset();
884
885         DumpStats();
886
887         if(cvar("sv_eventlog"))
888                 GameLogEcho(":gameover", FALSE);
889
890         GameLogClose();
891
892         other = findchainflags(flags, FL_CLIENT);
893         while (other != world)
894         {
895                 //other.nextthink = time + 0.5;
896                 other.takedamage = DAMAGE_NO;
897                 other.solid = SOLID_NOT;
898                 other.movetype = MOVETYPE_NONE;
899                 other.angles = other.v_angle;
900                 other.angles_x = other.angles_x * -1;
901                 other.autoscreenshot = time + 0.8;      // used for autoscreenshot
902
903                 self = other;
904
905                 if(other.winning)
906                         bprint(strcat(other.netname, " ^7wins.\n"));
907
908                 /*
909                 if (pos != world);
910                 {
911                         other.modelindex = 0;
912                         other.weaponentity = world; // remove weapon model
913                         other.view_ofs = '0 0 0';
914                         other.angles = other.v_angle = pos.mangle;
915                         if (!other.angles)
916                         {
917                                 other.angles = other.v_angle = pos.angles;
918                                 other.v_angle_x = other.v_angle_x * -1;
919                         }
920                         other.fixangle = TRUE;          // turn this way immediately
921                         setorigin (other, pos.origin);
922                 }
923                 */
924                 other = other.chain;
925         }
926
927         if(cvar("g_campaign"))
928                 CampaignPreIntermission();
929
930         WriteByte (MSG_ALL, SVC_INTERMISSION);
931 };
932
933 /*
934 ============
935 CheckRules_Player
936
937 Exit deathmatch games upon conditions
938 ============
939 */
940 void() CheckRules_Player =
941 {
942         if (gameover)   // someone else quit the game already
943                 return;
944
945         // fixme: don't check players; instead check dom_team and ctf_team entities
946         //   (div0: and that in CheckRules_World please)
947         centermsg_check();
948 };
949
950 float checkrules_oneminutewarning;
951 float checkrules_leaderfrags;
952 float tdm_max_score, tdm_old_score;
953
954 float checkrules_equality;
955 float checkrules_overtimewarning;
956 float checkrules_overtimeend;
957
958 void() InitiateOvertime =
959 {
960         if(!checkrules_overtimeend)
961                 checkrules_overtimeend = time + 60 * cvar("timelimit_maxovertime");
962 }
963
964 float WINNING_NO = 0; // no winner, but time limits may terminate the game
965 float WINNING_YES = 1; // winner found
966 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
967 float WINNING_STARTOVERTIME = 3; // no winner, enter overtime NOW
968
969 float(float fraglimitreached, float equality) GetWinningCode =
970 {
971         if(equality)
972                 if(fraglimitreached)
973                         return WINNING_STARTOVERTIME;
974                 else
975                         return WINNING_NEVER;
976         else
977                 if(fraglimitreached)
978                         return WINNING_YES;
979                 else
980                         return WINNING_NO;
981 }
982
983 // set the .winning flag for exactly those players with a given field value
984 void(.float field, float value) SetWinners =
985 {
986         entity head;
987         head = findchain(classname, "player");
988         while (head)
989         {
990                 head.winning = (head.field == value);
991                 head = head.chain;
992         }
993 }
994
995 // set the .winning flag for those players with a given field value
996 void(.float field, float value) AddWinners =
997 {
998         entity head;
999         head = findchain(classname, "player");
1000         while (head)
1001         {
1002                 if(head.field == value)
1003                         head.winning = 1;
1004                 head = head.chain;
1005         }
1006 }
1007
1008 // clear the .winning flags
1009 void(void) ClearWinners =
1010 {
1011         entity head;
1012         head = findchain(classname, "player");
1013         while (head)
1014         {
1015                 head.winning = 0;
1016                 head = head.chain;
1017         }
1018 }
1019
1020 float() LMS_NewPlayerLives =
1021 {
1022         float fl;
1023         fl = cvar("fraglimit");
1024         if(fl == 0)
1025                 fl = 999;
1026
1027         // first player has left the game for dying too much? Nobody else can get in.
1028         if(lms_lowest_lives < 1)
1029                 return FALSE;
1030
1031         if(!cvar("g_lms_join_anytime"))
1032                 if(lms_lowest_lives < fl - cvar("g_lms_last_join"))
1033                         return FALSE;
1034
1035         return bound(1, lms_lowest_lives, fl);
1036 }
1037
1038 // LMS winning condition: game terminates if and only if there's at most one
1039 // one player who's living lives. Top two scores being equal cancels the time
1040 // limit.
1041 float() WinningCondition_LMS =
1042 {
1043         entity head;
1044         float have_player;
1045         float have_players;
1046         float l;
1047
1048         have_player = FALSE;
1049         have_players = FALSE;
1050         l = LMS_NewPlayerLives();
1051
1052         head = find(world, classname, "player");
1053         if(head)
1054                 have_player = TRUE;
1055         head = find(head, classname, "player");
1056         if(head)
1057                 have_players = TRUE;
1058
1059         if(have_player)
1060         {
1061                 // we have at least one player
1062                 if(have_players)
1063                 {
1064                         // two or more active players - continue with the game
1065                 }
1066                 else
1067                 {
1068                         // exactly one player?
1069                         if(l)
1070                         {
1071                                 // but no game has taken place yet
1072                         }
1073                         else
1074                         {
1075                                 // a winner!
1076                                 ClearWinners(); SetWinners(winning, 0); // NOTE: exactly one player is still "player", so this works out
1077                                 dprint("Have a winner, ending game.\n");
1078                                 return WINNING_YES;
1079                         }
1080                 }
1081         }
1082         else
1083         {
1084                 // nobody is playing at all...
1085                 if(l)
1086                 {
1087                         // wait for players...
1088                 }
1089                 else
1090                 {
1091                         // SNAFU (maybe a draw game?)
1092                         ClearWinners();
1093                         dprint("No players, ending game.\n");
1094                         return WINNING_YES;
1095                 }
1096         }
1097
1098         // When we get here, we have at least two players who are actually LIVING,
1099         // or one player who is still waiting for a victim to join the server. Now
1100         // check if the top two players have equal score.
1101
1102         checkrules_leaderfrags = 0;
1103         head = findchain(classname, "player");
1104         checkrules_equality = FALSE;
1105         while (head)
1106         {
1107                 if(head.frags > checkrules_leaderfrags)
1108                 {
1109                         checkrules_leaderfrags = head.frags;
1110                         checkrules_equality = FALSE;
1111                 }
1112                 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1113                         checkrules_equality = TRUE;
1114                 head = head.chain;
1115         }
1116
1117         SetWinners(frags, checkrules_leaderfrags);
1118
1119         // The top two players have the same amount of lives? No timelimit then,
1120         // enter overtime...
1121
1122         if(checkrules_equality)
1123                 return WINNING_NEVER;
1124
1125         // Top two have different scores? Way to go for our beloved TIMELIMIT!
1126         return WINNING_NO;
1127 }
1128
1129 // DM winning condition: game terminates if a player reached the fraglimit,
1130 // unless the first two players have the same score. The latter case also
1131 // breaks the time limit.
1132 float(float fraglimit) WinningCondition_MaxIndividualScore =
1133 {
1134         float checkrules_oldleaderfrags;
1135         entity head;
1136
1137         checkrules_oldleaderfrags = checkrules_leaderfrags;
1138         checkrules_leaderfrags = 0;
1139         head = findchain(classname, "player");
1140         checkrules_equality = FALSE;
1141         while (head)
1142         {
1143                 if(head.frags > checkrules_leaderfrags)
1144                 {
1145                         checkrules_leaderfrags = head.frags;
1146                         checkrules_equality = FALSE;
1147                 }
1148                 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1149                         checkrules_equality = TRUE;
1150                 head = head.chain;
1151         }
1152
1153         if(checkrules_leaderfrags > 0)
1154                 SetWinners(frags, checkrules_leaderfrags);
1155         else
1156                 ClearWinners();
1157
1158         if (!cvar("g_runematch"))
1159                 if (checkrules_leaderfrags != checkrules_oldleaderfrags)
1160                 {
1161                         if (checkrules_leaderfrags == fraglimit - 1)
1162                                 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1163                         else if (checkrules_leaderfrags == fraglimit - 2)
1164                                 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1165                         else if (checkrules_leaderfrags == fraglimit - 3)
1166                                 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1167                 }
1168
1169         return GetWinningCode(fraglimit && checkrules_leaderfrags >= fraglimit, checkrules_equality);
1170 }
1171
1172 float(float fraglimit) WinningConditionBase_Teamplay =
1173 {
1174         tdm_old_score = tdm_max_score;
1175         tdm_max_score = max(team1_score, team2_score, team3_score, team4_score);
1176
1177         checkrules_equality =
1178         (
1179                 (tdm_max_score > 0)
1180                 &&
1181                 (
1182                           (team1_score == tdm_max_score)
1183                         + (team2_score == tdm_max_score)
1184                         + (team3_score == tdm_max_score)
1185                         + (team4_score == tdm_max_score)
1186                         >= 2));
1187
1188         ClearWinners();
1189         if(tdm_max_score > 0)
1190         {
1191                 if(team1_score == tdm_max_score)
1192                         AddWinners(team, COLOR_TEAM1);
1193                 if(team2_score == tdm_max_score)
1194                         AddWinners(team, COLOR_TEAM2);
1195                 if(team3_score == tdm_max_score)
1196                         AddWinners(team, COLOR_TEAM3);
1197                 if(team4_score == tdm_max_score)
1198                         AddWinners(team, COLOR_TEAM4);
1199         }
1200
1201         if(!cvar("g_runematch") && !cvar("g_domination"))
1202                 if(tdm_max_score != tdm_old_score)
1203                 {
1204                         if(tdm_max_score == fraglimit - 1)
1205                                 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1206                         else if(tdm_max_score == fraglimit - 2)
1207                                 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1208                         else if(tdm_max_score == fraglimit - 3)
1209                                 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1210                 }
1211
1212         return GetWinningCode(fraglimit && tdm_max_score >= fraglimit, checkrules_equality);
1213 }
1214
1215 // TDM winning condition: game terminates if a team's score sum reached the
1216 // fraglimit, unless the first two teams have the same total score. The latter
1217 // case also breaks the time limit.
1218 float(float fraglimit) WinningCondition_MaxTeamSum =
1219 {
1220         entity head;
1221
1222         team1_score = team2_score = team3_score = team4_score = 0;
1223
1224         head = findchain(classname, "player");
1225         while (head)
1226         {
1227                 if(head.team == COLOR_TEAM1)
1228                         team1_score += head.frags;
1229                 else if(head.team == COLOR_TEAM2)
1230                         team2_score += head.frags;
1231                 else if(head.team == COLOR_TEAM3)
1232                         team3_score += head.frags;
1233                 else if(head.team == COLOR_TEAM4)
1234                         team4_score += head.frags;
1235                 head = head.chain;
1236         }
1237
1238         return WinningConditionBase_Teamplay(fraglimit);
1239 }
1240
1241 // DOM/CTF winning condition: game terminates if the max of a team's players'
1242 // score reached the fraglimit, unless the first two teams have the same
1243 // maximum score. The latter case also breaks the time limit.
1244 float(float fraglimit) WinningCondition_MaxTeamMax =
1245 {
1246         entity head;
1247
1248         team1_score = team2_score = team3_score = team4_score = 0;
1249
1250         head = findchain(classname, "player");
1251         while (head)
1252         {
1253                 if(head.team == COLOR_TEAM1)
1254                 {
1255                         if(head.frags > team1_score)
1256                                 team1_score = head.frags;
1257                 }
1258                 else if(head.team == COLOR_TEAM2)
1259                 {
1260                         if(head.frags > team2_score)
1261                                 team2_score = head.frags;
1262                 }
1263                 else if(head.team == COLOR_TEAM3)
1264                 {
1265                         if(head.frags > team3_score)
1266                                 team3_score = head.frags;
1267                 }
1268                 else if(head.team == COLOR_TEAM4)
1269                 {
1270                         if(head.frags > team4_score)
1271                                 team4_score = head.frags;
1272                 }
1273                 head = head.chain;
1274         }
1275
1276         return WinningConditionBase_Teamplay(fraglimit);
1277 }
1278
1279 void PrintScoreboardFor(string name, string colorcode, float whichteam)
1280 {
1281         entity head;
1282         float fragtotal;
1283         string s;
1284         float found;
1285         found = FALSE;
1286         head = find(world, classname, "player");
1287         while(head)
1288         {
1289                 if(!whichteam || head.team == whichteam)
1290                 {
1291                         if(name != "")
1292                                 if(!found)
1293                                         ServerConsoleEcho(strcat(" ", colorcode, name, ":"), FALSE);
1294                         found = TRUE;
1295                         fragtotal = fragtotal + head.frags;
1296                         s = ftos(head.frags);
1297                         s = strcat(s, "/", ftos(head.deaths));
1298                         s = strcat(s, " @ ", ftos(head.ping));
1299                         if(clienttype(head) == CLIENTTYPE_BOT)
1300                                 s = strcat(s, "botms");
1301                         else
1302                                 s = strcat(s, "ms");
1303                         ServerConsoleEcho(strcat("  ", colorcode, head.netname, colorcode, " (", s, ")"), TRUE);
1304                 }
1305                 head = find(head, classname, "player");
1306         }
1307         if(whichteam && found)
1308                 ServerConsoleEcho(strcat(colorcode, "  (total: ", ftos(fragtotal), ")"), FALSE);
1309 }
1310
1311 void PrintScoreboard()
1312 {
1313         ServerConsoleEcho("Scoreboard:", FALSE);
1314         if(teams_matter)
1315         {
1316                 PrintScoreboardFor("Red", "^1", COLOR_TEAM1);
1317                 PrintScoreboardFor("Blue", "^4", COLOR_TEAM2);
1318                 PrintScoreboardFor("Pink", "^6", COLOR_TEAM3);
1319                 PrintScoreboardFor("Yellow", "^3", COLOR_TEAM4);
1320         }
1321         else
1322         {
1323                 PrintScoreboardFor("", "^7", 0);
1324         }
1325         ServerConsoleEcho(".", FALSE);
1326 }
1327
1328 void RemoveFromMaplist(string m)
1329 {
1330         string result;
1331         float litems;
1332         float i;
1333         float found;
1334
1335         litems = tokenize(cvar_string("g_maplist"));
1336         found = 0;
1337         result = "";
1338         for(i = 0; i < litems; ++i)
1339         {
1340                 m = strcat(m);
1341                 result = strcat(result);
1342                 if(argv(i) == m)
1343                         found += 1;
1344                 else
1345                         result = strcat(result, "'", argv(i), "'");
1346         }
1347         if(found)
1348                 cvar_set("g_maplist", result);
1349         ServerConsoleEcho(strcat("Removed ", ftos(found), " items."), FALSE);
1350 }
1351
1352 void AddToMaplist(string m)
1353 {
1354         string result;
1355         float found;
1356         float litems;
1357         float i;
1358         float ipos;
1359         float inserted;
1360
1361         if(!TryFile(strcat("maps/", m, ".mapcfg")))
1362         {
1363                 ServerConsoleEcho("Map not found.", FALSE);
1364                 return;
1365         }
1366
1367         litems = tokenize(cvar_string("g_maplist"));
1368         if(cvar("g_maplist_shuffle"))
1369                 ipos = ceil(random() * (litems + 1)) - 1;
1370         else
1371                 ipos = litems;
1372         found = 0;
1373         inserted = 0;
1374         for(i = 0; i < litems; ++i)
1375         {
1376                 m = strcat(m);
1377                 if(i == ipos)
1378                 {
1379                         result = strcat(result, "'", m, "'");
1380                         inserted = 1;
1381                 }
1382                 result = strcat(result, "'", argv(i), "'");
1383                 if(argv(i) == m)
1384                         found += 1;
1385         }
1386         if(!inserted)
1387                 result = strcat(result, "'", m, "'");
1388         if(!found)
1389         {
1390                 cvar_set("g_maplist", result);
1391                 ServerConsoleEcho("Map added.", FALSE);
1392         }
1393         else
1394                 ServerConsoleEcho("Map already in list.", FALSE);
1395 }
1396
1397 void ShuffleMaplist()
1398 {
1399         string result;
1400         float start;
1401         float litems;
1402         float selected;
1403         float i;
1404
1405         result = cvar_string("g_maplist");
1406         litems = tokenize(result);
1407
1408         for(start = 0; start < litems - 1; ++start)
1409         {
1410                 result = "";
1411
1412                 // select a random item
1413                 selected = ceil(random() * (litems - start) + start) - 1;
1414
1415                 // shift this item to the place start
1416                 for(i = 0; i < start; ++i)
1417                         result = strcat(result, "'", argv(i), "'");
1418                 result = strcat(result, "'", argv(selected), "'");
1419                 for(i = start; i < litems; ++i)
1420                         if(i != selected)
1421                                 result = strcat(result, "'", argv(i), "'");
1422
1423                 litems = tokenize(result);
1424
1425                 //dprint(result, "\n");
1426         }
1427
1428         cvar_set("g_maplist", result);
1429 }
1430
1431 /*
1432 ============
1433 CheckRules_World
1434
1435 Exit deathmatch games upon conditions
1436 ============
1437 */
1438 void() CheckRules_World =
1439 {
1440         local float status;
1441         local float timelimit;
1442         local float fraglimit;
1443
1444         VoteThink();
1445
1446         SetDefaultAlpha();
1447
1448         if (intermission_running)
1449                 if (time >= intermission_exittime + 60)
1450                 {
1451                         GotoNextMap();
1452                         return;
1453                 }
1454
1455         if (gameover)   // someone else quit the game already
1456                 return;
1457
1458         DumpStats();
1459
1460         if(cvar("_scoreboard"))
1461         {
1462                 cvar_set("_scoreboard", "0");
1463                 PrintScoreboard();
1464         }
1465
1466         // automatically shuffle when setting g_maplist_shuffle
1467         if(cvar_string("_g_maplist_add") != "")
1468         {
1469                 AddToMaplist(cvar_string("_g_maplist_add"));
1470                 cvar_set("_g_maplist_add", "");
1471         }
1472         if(cvar_string("_g_maplist_remove") != "")
1473         {
1474                 RemoveFromMaplist(cvar_string("_g_maplist_remove"));
1475                 cvar_set("_g_maplist_remove", "");
1476         }
1477         if(cvar("_g_maplist_shufflenow") || (cvar("g_maplist_shuffle") && !cvar("_g_maplist_have_shuffled")))
1478         {
1479                 ShuffleMaplist();
1480                 localcmd("set _g_maplist_shufflenow 0\nset _g_maplist_have_shuffled 1\necho Shuffled map list.\n");
1481         }
1482         if(cvar("_g_maplist_have_shuffled"))
1483                 if(!cvar("g_maplist_shuffle"))
1484                         localcmd("set _g_maplist_have_shuffled 0\n");
1485
1486         timelimit = cvar("timelimit") * 60;
1487         fraglimit = cvar("fraglimit");
1488
1489         if (timelimit && time >= timelimit)
1490                 InitiateOvertime();
1491
1492         if (checkrules_overtimeend && time >= checkrules_overtimeend)
1493         {
1494                 NextLevel();
1495                 return;
1496         }
1497
1498         if(!checkrules_overtimewarning && checkrules_overtimeend)
1499         {
1500                 checkrules_overtimewarning = TRUE;
1501                 //sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1502                 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
1503         }
1504
1505         if (!checkrules_oneminutewarning && timelimit > 0 && time > timelimit - 60)
1506         {
1507                 checkrules_oneminutewarning = TRUE;
1508                 sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1509         }
1510
1511         status = WINNING_NO;
1512         if(cvar("g_lms"))
1513         {
1514                 status = WinningCondition_LMS();
1515         }
1516         else
1517         {
1518                 if(teams_matter)
1519                 {
1520                         if(cvar("g_tdm") || cvar("g_runematch") || cvar("g_ctf") || cvar("g_domination"))
1521                                 status = WinningCondition_MaxTeamSum(fraglimit);
1522                         //else if()
1523                         //      status = WinningCondition_MaxTeamMax(fraglimit);
1524                         else
1525                         {
1526                                 dprint("div0: How can this happen?\n");
1527                                 status = WinningCondition_MaxTeamMax(fraglimit);
1528                         }
1529                 }
1530                 else
1531                         status = WinningCondition_MaxIndividualScore(fraglimit);
1532         }
1533
1534         if(status == WINNING_STARTOVERTIME)
1535         {
1536                 status = WINNING_NEVER;
1537                 InitiateOvertime();
1538         }
1539
1540         if(status == WINNING_NEVER)
1541                 // equality cases! Nobody wins if the overtime ends in a draw.
1542                 ClearWinners();
1543
1544         if(checkrules_overtimeend)
1545                 if(status != WINNING_NEVER)
1546                         status = WINNING_YES;
1547
1548         if(status == WINNING_YES)
1549                 NextLevel();
1550 };