]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/g_world.qc
simplified GetMaplistPosition
[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_fire.ogg");
219         precache_sound ("weapons/grenade_impact.ogg");
220         precache_sound ("weapons/hagar_fire.ogg");
221         precache_sound ("weapons/hagexp1.ogg");
222         precache_sound ("weapons/hagexp2.ogg");
223         precache_sound ("weapons/hagexp3.ogg");
224         precache_sound ("weapons/hook_fire.ogg");
225         precache_sound ("weapons/hook_impact.ogg");
226         precache_sound ("weapons/lasergun_fire.ogg");
227         precache_sound ("weapons/laserimpact.ogg");
228         precache_sound ("weapons/nexfire.ogg");
229         precache_sound ("weapons/neximpact.ogg");
230         precache_sound ("weapons/ric1.ogg");
231         precache_sound ("weapons/ric2.ogg");
232         precache_sound ("weapons/ric3.ogg");
233         precache_sound ("weapons/rocket_fire.ogg");
234         precache_sound ("weapons/rocket_fly.wav");
235         precache_sound ("weapons/rocket_impact.ogg");
236         precache_sound ("weapons/rocket_det.ogg");
237         precache_sound ("weapons/shotgun_fire.ogg");
238         precache_sound ("weapons/tink1.ogg");
239         precache_sound ("weapons/uzi_fire.ogg");
240         precache_sound ("weapons/weapon_switch.ogg");
241         precache_sound ("weapons/weaponpickup.ogg");
242         precache_sound ("weapons/strength_fire.ogg");
243
244         //precache_sound ("announce/male/kill10.ogg");
245         //precache_sound ("announce/male/kill15.ogg");
246         //precache_sound ("announce/male/kill20.ogg");
247         //precache_sound ("announce/male/kill25.ogg");
248         //precache_sound ("announce/male/kill3.ogg");
249         //precache_sound ("announce/male/kill30.ogg");
250         //precache_sound ("announce/male/kill4.ogg");
251         //precache_sound ("announce/male/kill5.ogg");
252         //precache_sound ("announce/male/kill6.ogg");
253         //precache_sound ("announce/male/mapkill1.ogg");
254         //precache_sound ("announce/robotic/last_second_save.ogg");
255         //precache_sound ("announce/robotic/narrowly_averted.ogg");
256         //precache_sound ("minstagib/mockery.ogg");
257
258         // announcer sounds - male
259         precache_sound ("announcer/male/03kills.ogg");
260         precache_sound ("announcer/male/05kills.ogg");
261         precache_sound ("announcer/male/10kills.ogg");
262         precache_sound ("announcer/male/15kills.ogg");
263         precache_sound ("announcer/male/20kills.ogg");
264         precache_sound ("announcer/male/25kills.ogg");
265         precache_sound ("announcer/male/30kills.ogg");
266         precache_sound ("announcer/male/botlike.ogg");
267         precache_sound ("announcer/male/electrobitch.ogg");
268         precache_sound ("announcer/male/welcome.ogg");
269         precache_sound ("announcer/male/yoda.ogg");
270
271         // announcer sounds - robotic
272         precache_sound ("announcer/robotic/1fragleft.ogg");
273         precache_sound ("announcer/robotic/1minuteremains.ogg");
274         precache_sound ("announcer/robotic/2fragsleft.ogg");
275         precache_sound ("announcer/robotic/3fragsleft.ogg");
276         precache_sound ("announcer/robotic/lastsecond.ogg");
277         precache_sound ("announcer/robotic/narrowly.ogg");
278
279         // plays music for the level if there is any
280         if (self.noise)
281         {
282                 precache_sound (self.noise);
283                 ambientsound ('0 0 0', self.noise, 1.00, ATTN_NONE);
284         }
285
286                 // 0 normal
287         lightstyle(0, "m");
288
289         // 1 FLICKER (first variety)
290         lightstyle(1, "mmnmmommommnonmmonqnmmo");
291
292         // 2 SLOW STRONG PULSE
293         lightstyle(2, "abcdefghijklmnopqrstuvwxyzyxwvutsrqponmlkjihgfedcba");
294
295         // 3 CANDLE (first variety)
296         lightstyle(3, "mmmmmaaaaammmmmaaaaaabcdefgabcdefg");
297
298         // 4 FAST STROBE
299         lightstyle(4, "mamamamamama");
300
301         // 5 GENTLE PULSE 1
302         lightstyle(5,"jklmnopqrstuvwxyzyxwvutsrqponmlkj");
303
304         // 6 FLICKER (second variety)
305         lightstyle(6, "nmonqnmomnmomomno");
306
307         // 7 CANDLE (second variety)
308         lightstyle(7, "mmmaaaabcdefgmmmmaaaammmaamm");
309
310         // 8 CANDLE (third variety)
311         lightstyle(8, "mmmaaammmaaammmabcdefaaaammmmabcdefmmmaaaa");
312
313         // 9 SLOW STROBE (fourth variety)
314         lightstyle(9, "aaaaaaaazzzzzzzz");
315
316         // 10 FLUORESCENT FLICKER
317         lightstyle(10, "mmamammmmammamamaaamammma");
318
319         // 11 SLOW PULSE NOT FADE TO BLACK
320         lightstyle(11, "abcdefghijklmnopqrrqponmlkjihgfedcba");
321
322         // styles 32-62 are assigned by the light program for switchable lights
323
324         // 63 testing
325         lightstyle(63, "a");
326
327         player_count = 0;
328         lms_dead_count = 0;
329         lms_lowest_lives = 0;
330         lms_next_place = 0;
331
332         GotoFirstMap();
333
334         if(cvar("g_campaign"))
335                 CampaignPreInit();
336
337         InitGameplayMode();
338         //if (cvar("g_domination"))
339         //      dom_init();
340
341         local entity head;
342         head = nextent(world);
343         maxclients = 0;
344         while(head)
345         {
346                 maxclients++;
347                 head = nextent(head);
348         }
349
350         GameLogInit(); // prepare everything
351         if(cvar("sv_eventlog"))
352         {
353                 local string s;
354                 GameLogEcho(":logversion:2", FALSE);
355                 s = strcat(cvar_string("sv_eventlog_files_counter"), ".");
356                 s = strcat(s, ftos(random()));
357                 GameLogEcho(strcat(":gamestart:", GetMapname(), ":", s), FALSE);
358                 s = ":gameinfo:mutators:LIST";
359                 if(cvar("g_grappling_hook"))
360                         s = strcat(s, ":grappling_hook");
361                 if(!cvar("g_use_ammunition"))
362                         s = strcat(s, ":no_use_ammunition");
363                 if(!cvar("g_pickup_items"))
364                         s = strcat(s, ":no_pickup_items");
365                 if(cvar("g_instagib"))
366                         s = strcat(s, ":instagib");
367                 if(cvar("g_rocketarena"))
368                         s = strcat(s, ":rockerarena");
369                 if(cvar("g_nixnex"))
370                         s = strcat(s, ":nixnex");
371                 if(cvar("g_vampire"))
372                         s = strcat(s, ":vampire");
373                 if(cvar("g_laserguided_missile"))
374                         s = strcat(s, ":laserguided_missile");
375                 if(cvar("g_norecoil"))
376                         s = strcat(s, ":norecoil");
377                 if(cvar("g_midair"))
378                         s = strcat(s, ":midair");
379                 if(cvar("g_minstagib"))
380                         s = strcat(s, ":minstagib");
381                 GameLogEcho(s, FALSE);
382                 GameLogEcho(":gameinfo:end", FALSE);
383         }
384
385         cvar_set("nextmap", "");
386
387         SetDefaultAlpha();
388
389         if(cvar("g_campaign"))
390                 CampaignPostInit();
391
392         fteqcc_testbugs();
393 }
394
395 void light (void)
396 {
397         makestatic (self);
398 }
399
400 float( string pFilename ) TryFile =
401 {
402         local float lHandle;
403         dprint("TryFile(\"", pFilename, "\")\n");
404         lHandle = fopen( pFilename, FILE_READ );
405         if( lHandle != -1 ) {
406                 fclose( lHandle );
407                 return TRUE;
408         } else {
409                 return FALSE;
410         }
411 };
412
413 string GetMapname()
414 {
415         if (game == GAME_DEATHMATCH)
416                 return strcat("dm_", mapname);
417         else if (game == GAME_TEAM_DEATHMATCH)
418                 return strcat("tdm_", mapname);
419         else if (game == GAME_DOMINATION)
420                 return strcat("dom_", mapname);
421         else if (game == GAME_CTF)
422                 return strcat("ctf_", mapname);
423         else if (game == GAME_RUNEMATCH)
424                 return strcat("rune_", mapname);
425         else if (game == GAME_LMS)
426                 return strcat("lms_", mapname);
427         return strcat("dm_", mapname);
428 }
429
430 float Map_Count, Map_Current;
431
432 // NOTE: this now expects the map list to be already tokenize()d and the count in Map_Count
433 float GetMaplistPosition()
434 {
435         float pos;
436         string map;
437
438         map = GetMapname();
439         for(pos = 0; pos < Map_Count; ++pos)
440                 if(map == argv(pos))
441                         return pos;
442
443         // resume normal maplist rotation if current map is not in g_maplist
444         return cvar("g_maplist_index");
445 }
446
447 float MapHasRightSize(string map)
448 {
449         // open map size restriction file
450         float fh;
451         dprint("opensize "); dprint(map);
452         fh = fopen(strcat("maps/", map, ".sizes"), FILE_READ);
453         if(fh >= 0)
454         {
455                 float mapmin, mapmax;
456                 dprint(": ok, ");
457                 mapmin = stof(fgets(fh));
458                 mapmax = stof(fgets(fh));
459                 fclose(fh);
460                 if(player_count < mapmin)
461                 {
462                         dprint("not enough\n");
463                         return FALSE;
464                 }
465                 if(player_count > mapmax)
466                 {
467                         dprint("too many\n");
468                         return FALSE;
469                 }
470                 dprint("right size\n");
471                 return TRUE;
472         }
473         dprint(": not found\n");
474         return TRUE;
475 }
476
477 string Map_Filename(float position)
478 {
479         return strcat("maps/", argv(position), ".mapcfg");
480 }
481
482 float(float position, float pass) Map_Check =
483 {
484         string filename;
485         filename = Map_Filename(position);
486         if(TryFile(filename))
487         {
488                 if(pass == 2)
489                         return 1;
490                 if(MapHasRightSize(argv(position)))
491                         return 1;
492                 return 0;
493         }
494         else
495                 dprint( "Couldn't find '", filename, "'..\n" );
496
497         return 0;
498 }
499
500 void(float position) Map_Goto =
501 {
502         cvar_set("g_maplist_index", ftos(position));
503         localcmd(strcat("exec \"", Map_Filename(position) ,"\"\n"));
504 }
505
506 // return codes of map selectors:
507 //   -1 = temporary failure (that is, try some method that is guaranteed to succeed)
508 //   -2 = permanent failure
509 float() MaplistMethod_Iterate = // usual method
510 {
511         float pass, i;
512
513         for(pass = 1; pass <= 2; ++pass)
514         {
515                 for(i = 1; i < Map_Count; ++i)
516                 {
517                         float mapindex;
518                         mapindex = math_mod(i + Map_Current, Map_Count);
519                         if(Map_Check(mapindex, pass))
520                                 return mapindex;
521                 }
522         }
523         return -1;
524 }
525
526 float() MaplistMethod_Repeat = // fallback method
527 {
528         if(Map_Check(Map_Current, 2))
529                 return Map_Current;
530         return -2;
531 }
532
533 float() MaplistMethod_Random = // random map selection
534 {
535         float i, imax;
536
537         imax = 42;
538
539         for(i = 0; i <= imax; ++i)
540         {
541                 float mapindex;
542                 mapindex = math_mod(Map_Current + ceil(random() * (Map_Count - 1)), Map_Count); // any OTHER map
543                 if(Map_Check(mapindex, 1))
544                         return mapindex;
545         }
546         return -1;
547 }
548
549 float(float exponent) MaplistMethod_Shuffle = // more clever shuffling
550 // the exponent sets a bias on the map selection:
551 // the higher the exponent, the 
552 {
553         float i, j, imax, insertpos;
554
555         imax = 42;
556
557         for(i = 0; i <= imax; ++i)
558         {
559                 string newlist;
560
561                 // now reinsert this at another position
562                 insertpos = pow(Map_Count, exponent);
563                 insertpos = random() * insertpos;              // ]0, (Map_Count)^exponent]
564                 insertpos = pow(insertpos, 1 / exponent);      // ]0, Map_Count]
565                 insertpos = ceil(insertpos);                   // {1, 2, 3, ..., Map_Count}
566                 dprint("SHUFFLE: insert pos = ", ftos(insertpos), "\n");
567
568                 // insert the current map there
569                 newlist = "";
570                 for(j = 1; j < insertpos; ++j)                 // i == 1: no loop, will be inserted as first
571                         newlist = strcat(newlist, "'", argv(j), "'");
572                 newlist = strcat(newlist, "'", argv(0), "'");  // now insert the just selected map
573                 for(j = insertpos; j < Map_Count; ++j)         // i == Map_Count: no loop, has just been inserted as last
574                         newlist = strcat(newlist, "'", argv(j), "'");
575                 cvar_set("g_maplist", newlist);
576                 Map_Count = tokenize(newlist);
577
578                 // NOTE: the selected map has just been inserted at (insertpos-1)th position
579                 Map_Current = insertpos - 1; // this is not really valid, but this way the fallback has a chance of working
580                 if(Map_Check(Map_Current, 1))
581                         return Map_Current;
582         }
583         return -1;
584 }
585
586 void() Maplist_Init =
587 {
588         string temp;
589         temp = cvar_string("g_maplist");
590         Map_Count = tokenize(temp);
591         if(Map_Count == 0)
592         {
593                 bprint( "Maplist is empty!  Resetting it to default map list.\n" );
594                 cvar_set("g_maplist", temp = cvar_string("g_maplist_defaultlist"));
595                 Map_Count = tokenize(temp);
596         }
597         if(Map_Count == 0)
598                 error("empty maplist, cannot select a new map");
599         Map_Current = bound(0, GetMaplistPosition(), Map_Count - 1);
600 }
601
602 void() GotoNextMap =
603 {
604         //local string nextmap;
605         //local float n, nummaps;
606         //local string s;
607         string exit_cfg;
608         if (alreadychangedlevel)
609                 return;
610         alreadychangedlevel = TRUE;
611
612         if(cvar("g_campaign"))
613         {
614                 CampaignPostIntermission();
615                 return;
616         }
617
618         if (cvar("samelevel")) // if samelevel is set, stay on same level
619         {
620                 // 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)
621                 //localcmd(strcat("exec \"maps/", mapname, ".mapcfg\"\n"));
622                 // so instead just restart the current map using the restart command (DOES NOT WORK PROPERLY WITH exit_cfg STUFF)
623                 localcmd("restart\n");
624                 //changelevel (mapname);
625                 return;
626         }
627
628         // if an exit cfg is defined by exiting map, exec it.
629         exit_cfg = cvar_string("exit_cfg");
630         if(exit_cfg != "")
631                 localcmd(strcat("exec \"", exit_cfg, "\"\n"));
632
633         localcmd("exec game_reset.cfg\n");
634
635
636         if (cvar("lastlevel"))
637         {
638                 localcmd(strcat("set lastlevel 0\n"));
639                 localcmd(strcat("togglemenu\n"));
640         }
641         else
642         {
643                 float nextMap;
644                 float allowReset;
645
646                 // cvar "nextmap" always gets priority
647                 if(TryFile(strcat("maps/", cvar_string("nextmap"), ".mapcfg")))
648                 {
649                         localcmd(strcat("exec \"maps/", cvar_string("nextmap"), ".mapcfg\"\n"));
650                         return;
651                 }
652
653                 for(allowReset = 1; allowReset >= 0; --allowReset)
654                 {
655                         Maplist_Init();
656                         nextMap = -1;
657
658                         if(nextMap == -1)
659                                 if(cvar("g_maplist_shuffle") > 0)
660                                         nextMap = MaplistMethod_Shuffle(cvar("g_maplist_shuffle") + 1);
661
662                         if(nextMap == -1)
663                                 if(cvar("g_maplist_selectrandom"))
664                                         nextMap = MaplistMethod_Random();
665
666                         if(nextMap == -1)
667                                 nextMap = MaplistMethod_Iterate();
668
669                         if(nextMap == -1)
670                                 nextMap = MaplistMethod_Repeat();
671
672                         if(nextMap >= 0)
673                         {
674                                 Map_Goto(nextMap);
675                                 break;
676                         }
677                         else // PERMANENT FAILURE
678                         {
679                                 if(allowReset)
680                                 {
681                                         bprint( "Maplist contains no single playable map!  Resetting it to default map list.\n" );
682                                         cvar_set("g_maplist", cvar_string("g_maplist_defaultlist"));
683                                 }
684                                 else
685                                 {
686                                         error("Everything is broken - not even the default map list works. Please report this to the developers.");
687                                 }
688                         }
689                 }
690         }
691 };
692
693
694 /*
695 ============
696 IntermissionThink
697
698 When the player presses attack or jump, change to the next level
699 ============
700 */
701 void() IntermissionThink =
702 {
703         if(cvar("sv_autoscreenshot"))
704         if(self.cnt > time)
705         {
706                 self.cnt = FALSE;
707                 if(clienttype(self) == CLIENTTYPE_REAL)
708                         stuffcmd(self, "screenshot\necho \"^5A screenshot has been taken at request of the server.\"\n");
709                 return;
710         }
711
712         if (time < intermission_exittime)
713                 return;
714
715         if (time < intermission_exittime + 10 && !self.button0 && !self.button1 && !self.button2 && !self.button3)
716                 return;
717
718         GotoNextMap ();
719 };
720
721 /*
722 ============
723 FindIntermission
724
725 Returns the entity to view from
726 ============
727 */
728 /*
729 entity() FindIntermission =
730 {
731         local   entity spot;
732         local   float cyc;
733
734 // look for info_intermission first
735         spot = find (world, classname, "info_intermission");
736         if (spot)
737         {       // pick a random one
738                 cyc = random() * 4;
739                 while (cyc > 1)
740                 {
741                         spot = find (spot, classname, "info_intermission");
742                         if (!spot)
743                                 spot = find (spot, classname, "info_intermission");
744                         cyc = cyc - 1;
745                 }
746                 return spot;
747         }
748
749 // then look for the start position
750         spot = find (world, classname, "info_player_start");
751         if (spot)
752                 return spot;
753
754 // testinfo_player_start is only found in regioned levels
755         spot = find (world, classname, "testplayerstart");
756         if (spot)
757                 return spot;
758
759 // then look for the start position
760         spot = find (world, classname, "info_player_deathmatch");
761         if (spot)
762                 return spot;
763
764         //objerror ("FindIntermission: no spot");
765         return world;
766 };
767 */
768
769 /*
770 ===============================================================================
771
772 RULES
773
774 ===============================================================================
775 */
776
777 void() DumpStats =
778 {
779         local float file;
780         local string s;
781
782         if(cvar("_printstats"))
783                 cvar_set("_printstats", "0");
784         else if(!gameover)
785                 return;
786
787         if(gameover)
788                 s = ":scores:";
789         else
790                 s = ":status:";
791
792         s = strcat(s, GetMapname(), ":", ftos(rint(time)));
793
794         if(cvar("sv_eventlog") && gameover)
795                 GameLogEcho(s, FALSE);
796         else if(cvar("sv_logscores_console"))
797                 ServerConsoleEcho(s, FALSE);
798         if(cvar("sv_logscores_file"))
799         {
800                 file = fopen(cvar_string("sv_logscores_filename"), FILE_APPEND);
801                 fputs(file, strcat(s, "\n"));
802         }
803
804         other = findchainflags(flags, FL_CLIENT);
805         while (other)
806         {
807                 if ((clienttype(other) == CLIENTTYPE_REAL) || (clienttype(other) == CLIENTTYPE_BOT && cvar("sv_logscores_bots")))
808                 {
809                         s = strcat(":player:", ftos(other.frags), ":");
810                         s = strcat(s, ftos(other.deaths), ":");
811                         s = strcat(s, ftos(rint(time - other.jointime)), ":");
812                         s = strcat(s, ftos(other.team), ":");
813
814                         if(cvar("sv_logscores_file"))
815                                 fputs(file, strcat(s, other.netname, "\n"));
816                         if(cvar("sv_eventlog") && gameover)
817                                 GameLogEcho(strcat(s, ftos(other.playerid), ":", other.netname), TRUE);
818                         else if(cvar("sv_logscores_console"))
819                                 ServerConsoleEcho(strcat(s, other.netname), TRUE);
820                 }
821                 other = other.chain;
822         }
823
824         if(cvar("sv_eventlog") && gameover)
825                 GameLogEcho(":end", FALSE);
826         else if(cvar("sv_logscores_console"))
827                 ServerConsoleEcho(":end", FALSE);
828         if(cvar("sv_logscores_file"))
829         {
830                 fputs(file, ":end\n");
831                 fclose(file);
832         }
833 }
834
835
836 /*
837 go to the next level for deathmatch
838 only called if a time or frag limit has expired
839 */
840 void() NextLevel =
841 {
842         gameover = TRUE;
843
844         intermission_running = 1;
845
846 // enforce a wait time before allowing changelevel
847         if(player_count > 0)
848                 intermission_exittime = time + cvar("sv_mapchange_delay");
849         else
850                 intermission_exittime = -60;
851
852         WriteByte (MSG_ALL, SVC_CDTRACK);
853         WriteByte (MSG_ALL, 3);
854         WriteByte (MSG_ALL, 3);
855
856         //pos = FindIntermission ();
857
858         VoteReset();
859
860         DumpStats();
861
862         if(cvar("sv_eventlog"))
863                 GameLogEcho(":gameover", FALSE);
864
865         GameLogClose();
866
867         other = findchainflags(flags, FL_CLIENT);
868         while (other != world)
869         {
870                 //other.nextthink = time + 0.5;
871                 other.takedamage = DAMAGE_NO;
872                 other.solid = SOLID_NOT;
873                 other.movetype = MOVETYPE_NONE;
874                 other.angles = other.v_angle;
875                 other.angles_x = other.angles_x * -1;
876                 other.cnt = time + 0.5; // used for autoscreenshot
877
878                 self = other;
879
880                 if(other.winning)
881                         bprint(strcat(other.netname, " ^7wins.\n"));
882
883                 /*
884                 if (pos != world);
885                 {
886                         other.modelindex = 0;
887                         other.weaponentity = world; // remove weapon model
888                         other.view_ofs = '0 0 0';
889                         other.angles = other.v_angle = pos.mangle;
890                         if (!other.angles)
891                         {
892                                 other.angles = other.v_angle = pos.angles;
893                                 other.v_angle_x = other.v_angle_x * -1;
894                         }
895                         other.fixangle = TRUE;          // turn this way immediately
896                         setorigin (other, pos.origin);
897                 }
898                 */
899                 other = other.chain;
900         }
901
902         if(cvar("g_campaign"))
903                 CampaignPreIntermission();
904
905         WriteByte (MSG_ALL, SVC_INTERMISSION);
906 };
907
908 /*
909 ============
910 CheckRules_Player
911
912 Exit deathmatch games upon conditions
913 ============
914 */
915 void() CheckRules_Player =
916 {
917         if (gameover)   // someone else quit the game already
918                 return;
919
920         // fixme: don't check players; instead check dom_team and ctf_team entities
921         //   (div0: and that in CheckRules_World please)
922         centermsg_check();
923 };
924
925 float checkrules_oneminutewarning;
926 float checkrules_leaderfrags;
927 float tdm_max_score, tdm_old_score;
928
929 float checkrules_equality;
930 float checkrules_overtimewarning;
931 float checkrules_overtimeend;
932
933 void() InitiateOvertime =
934 {
935         if(!checkrules_overtimeend)
936                 checkrules_overtimeend = time + 60 * cvar("timelimit_maxovertime");
937 }
938
939 float WINNING_NO = 0; // no winner, but time limits may terminate the game
940 float WINNING_YES = 1; // winner found
941 float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
942 float WINNING_STARTOVERTIME = 3; // no winner, enter overtime NOW
943
944 float(float fraglimitreached, float equality) GetWinningCode =
945 {
946         if(equality)
947                 if(fraglimitreached)
948                         return WINNING_STARTOVERTIME;
949                 else
950                         return WINNING_NEVER;
951         else
952                 if(fraglimitreached)
953                         return WINNING_YES;
954                 else
955                         return WINNING_NO;
956 }
957
958 // set the .winning flag for exactly those players with a given field value
959 void(.float field, float value) SetWinners =
960 {
961         entity head;
962         head = findchain(classname, "player");
963         while (head)
964         {
965                 head.winning = (head.field == value);
966                 head = head.chain;
967         }
968 }
969
970 // set the .winning flag for those players with a given field value
971 void(.float field, float value) AddWinners =
972 {
973         entity head;
974         head = findchain(classname, "player");
975         while (head)
976         {
977                 if(head.field == value)
978                         head.winning = 1;
979                 head = head.chain;
980         }
981 }
982
983 // clear the .winning flags
984 void(void) ClearWinners =
985 {
986         entity head;
987         head = findchain(classname, "player");
988         while (head)
989         {
990                 head.winning = 0;
991                 head = head.chain;
992         }
993 }
994
995 // LMS winning condition: game terminates if and only if there's at most one
996 // one player who's living lives. Top two scores being equal cancels the time
997 // limit.
998 float() WinningCondition_LMS =
999 {
1000         entity head;
1001
1002         if(lms_dead_count < 0)
1003                 lms_dead_count = 0;
1004
1005         if(player_count > 1 && lms_dead_count >= player_count - 1)
1006                 return WINNING_YES; // He's the last man standing!
1007
1008         if((player_count == 1 && lms_dead_count == 1))
1009                 return WINNING_YES; // All dead... (n:n is handled by the test above)
1010
1011         // dprint("player count = "); dprint(ftos(player_count));
1012         // dprint(", dead count = "); dprint(ftos(lms_dead_count));
1013         // dprint("\n");
1014
1015         // When we get here, we have at least two players who are actually LIVING,
1016         // or one player who is still waiting for a victim to join the server. Now
1017         // check if the top two players have equal score.
1018
1019         checkrules_leaderfrags = 0;
1020         head = findchain(classname, "player");
1021         checkrules_equality = FALSE;
1022         while (head)
1023         {
1024                 if(head.frags > checkrules_leaderfrags)
1025                 {
1026                         checkrules_leaderfrags = head.frags;
1027                         checkrules_equality = FALSE;
1028                 }
1029                 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1030                         checkrules_equality = TRUE;
1031                 head = head.chain;
1032         }
1033
1034         SetWinners(frags, checkrules_leaderfrags);
1035
1036         // The top two players have the same amount of lives? No timelimit then,
1037         // enter overtime...
1038
1039         if(checkrules_equality)
1040                 return WINNING_NEVER;
1041
1042         // Top two have different scores? Way to go for our beloved TIMELIMIT!
1043         return WINNING_NO;
1044 }
1045
1046 // DM winning condition: game terminates if a player reached the fraglimit,
1047 // unless the first two players have the same score. The latter case also
1048 // breaks the time limit.
1049 float(float fraglimit) WinningCondition_MaxIndividualScore =
1050 {
1051         float checkrules_oldleaderfrags;
1052         entity head;
1053
1054         checkrules_oldleaderfrags = checkrules_leaderfrags;
1055         checkrules_leaderfrags = 0;
1056         head = findchain(classname, "player");
1057         checkrules_equality = FALSE;
1058         while (head)
1059         {
1060                 if(head.frags > checkrules_leaderfrags)
1061                 {
1062                         checkrules_leaderfrags = head.frags;
1063                         checkrules_equality = FALSE;
1064                 }
1065                 else if(head.frags > 0 && head.frags == checkrules_leaderfrags)
1066                         checkrules_equality = TRUE;
1067                 head = head.chain;
1068         }
1069
1070         if(checkrules_leaderfrags > 0)
1071                 SetWinners(frags, checkrules_leaderfrags);
1072         else
1073                 ClearWinners();
1074
1075         if (!cvar("g_runematch"))
1076                 if (checkrules_leaderfrags != checkrules_oldleaderfrags)
1077                 {
1078                         if (checkrules_leaderfrags == fraglimit - 1)
1079                                 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1080                         else if (checkrules_leaderfrags == fraglimit - 2)
1081                                 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1082                         else if (checkrules_leaderfrags == fraglimit - 3)
1083                                 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1084                 }
1085
1086         return GetWinningCode(fraglimit && checkrules_leaderfrags >= fraglimit, checkrules_equality);
1087 }
1088
1089 float(float fraglimit) WinningConditionBase_Teamplay =
1090 {
1091         tdm_old_score = tdm_max_score;
1092         tdm_max_score = max(team1_score, team2_score, team3_score, team4_score);
1093
1094         checkrules_equality =
1095         (
1096                 (tdm_max_score > 0)
1097                 &&
1098                 (
1099                           (team1_score == tdm_max_score)
1100                         + (team2_score == tdm_max_score)
1101                         + (team3_score == tdm_max_score)
1102                         + (team4_score == tdm_max_score)
1103                         >= 2));
1104
1105         ClearWinners();
1106         if(tdm_max_score > 0)
1107         {
1108                 if(team1_score == tdm_max_score)
1109                         AddWinners(team, COLOR_TEAM1);
1110                 if(team2_score == tdm_max_score)
1111                         AddWinners(team, COLOR_TEAM2);
1112                 if(team3_score == tdm_max_score)
1113                         AddWinners(team, COLOR_TEAM3);
1114                 if(team4_score == tdm_max_score)
1115                         AddWinners(team, COLOR_TEAM4);
1116         }
1117
1118         if(!cvar("g_runematch") && !cvar("g_domination"))
1119                 if(tdm_max_score != tdm_old_score)
1120                 {
1121                         if(tdm_max_score == fraglimit - 1)
1122                                 sound(world, CHAN_AUTO, "announcer/robotic/1fragleft.ogg", 1, ATTN_NONE);
1123                         else if(tdm_max_score == fraglimit - 2)
1124                                 sound(world, CHAN_AUTO, "announcer/robotic/2fragsleft.ogg", 1, ATTN_NONE);
1125                         else if(tdm_max_score == fraglimit - 3)
1126                                 sound(world, CHAN_AUTO, "announcer/robotic/3fragsleft.ogg", 1, ATTN_NONE);
1127                 }
1128
1129         return GetWinningCode(fraglimit && tdm_max_score >= fraglimit, checkrules_equality);
1130 }
1131
1132 // TDM winning condition: game terminates if a team's score sum reached the
1133 // fraglimit, unless the first two teams have the same total score. The latter
1134 // case also breaks the time limit.
1135 float(float fraglimit) WinningCondition_MaxTeamSum =
1136 {
1137         entity head;
1138
1139         team1_score = team2_score = team3_score = team4_score = 0;
1140
1141         head = findchain(classname, "player");
1142         while (head)
1143         {
1144                 if(head.team == COLOR_TEAM1)
1145                         team1_score += head.frags;
1146                 else if(head.team == COLOR_TEAM2)
1147                         team2_score += head.frags;
1148                 else if(head.team == COLOR_TEAM3)
1149                         team3_score += head.frags;
1150                 else if(head.team == COLOR_TEAM4)
1151                         team4_score += head.frags;
1152                 head = head.chain;
1153         }
1154
1155         return WinningConditionBase_Teamplay(fraglimit);
1156 }
1157
1158 // DOM/CTF winning condition: game terminates if the max of a team's players'
1159 // score reached the fraglimit, unless the first two teams have the same
1160 // maximum score. The latter case also breaks the time limit.
1161 float(float fraglimit) WinningCondition_MaxTeamMax =
1162 {
1163         entity head;
1164
1165         team1_score = team2_score = team3_score = team4_score = 0;
1166
1167         head = findchain(classname, "player");
1168         while (head)
1169         {
1170                 if(head.team == COLOR_TEAM1)
1171                 {
1172                         if(head.frags > team1_score)
1173                                 team1_score = head.frags;
1174                 }
1175                 else if(head.team == COLOR_TEAM2)
1176                 {
1177                         if(head.frags > team2_score)
1178                                 team2_score = head.frags;
1179                 }
1180                 else if(head.team == COLOR_TEAM3)
1181                 {
1182                         if(head.frags > team3_score)
1183                                 team3_score = head.frags;
1184                 }
1185                 else if(head.team == COLOR_TEAM4)
1186                 {
1187                         if(head.frags > team4_score)
1188                                 team4_score = head.frags;
1189                 }
1190                 head = head.chain;
1191         }
1192
1193         return WinningConditionBase_Teamplay(fraglimit);
1194 }
1195
1196 void PrintScoreboardFor(string name, string colorcode, float whichteam)
1197 {
1198         entity head;
1199         float fragtotal;
1200         string s;
1201         float found;
1202         found = FALSE;
1203         head = find(world, classname, "player");
1204         while(head)
1205         {
1206                 if(!whichteam || head.team == whichteam)
1207                 {
1208                         if(name != "")
1209                                 if(!found)
1210                                         ServerConsoleEcho(strcat(" ", colorcode, name, ":"), FALSE);
1211                         found = TRUE;
1212                         fragtotal = fragtotal + head.frags;
1213                         s = ftos(head.frags);
1214                         s = strcat(s, "/", ftos(head.deaths));
1215                         s = strcat(s, " @ ", ftos(head.ping));
1216                         if(clienttype(head) == CLIENTTYPE_BOT)
1217                                 s = strcat(s, "botms");
1218                         else
1219                                 s = strcat(s, "ms");
1220                         ServerConsoleEcho(strcat("  ", colorcode, head.netname, colorcode, " (", s, ")"), TRUE);
1221                 }
1222                 head = find(head, classname, "player");
1223         }
1224         if(whichteam && found)
1225                 ServerConsoleEcho(strcat(colorcode, "  (total: ", ftos(fragtotal), ")"), FALSE);
1226 }
1227
1228 void PrintScoreboard()
1229 {
1230         ServerConsoleEcho("Scoreboard:", FALSE);
1231         if(teams_matter)
1232         {
1233                 PrintScoreboardFor("Red", "^1", COLOR_TEAM1);
1234                 PrintScoreboardFor("Blue", "^4", COLOR_TEAM2);
1235                 PrintScoreboardFor("Pink", "^6", COLOR_TEAM3);
1236                 PrintScoreboardFor("Yellow", "^3", COLOR_TEAM4);
1237         }
1238         else
1239         {
1240                 PrintScoreboardFor("", "^7", 0);
1241         }
1242         ServerConsoleEcho(".", FALSE);
1243 }
1244
1245
1246 /*
1247 ============
1248 CheckRules_World
1249
1250 Exit deathmatch games upon conditions
1251 ============
1252 */
1253 void() CheckRules_World =
1254 {
1255         local float status;
1256         local float timelimit;
1257         local float fraglimit;
1258
1259         VoteThink();
1260
1261         SetDefaultAlpha();
1262
1263         if (intermission_running)
1264                 if (time >= intermission_exittime + 60)
1265                 {
1266                         GotoNextMap();
1267                         return;
1268                 }
1269
1270         if (gameover)   // someone else quit the game already
1271                 return;
1272
1273         DumpStats();
1274
1275         if(cvar("_scoreboard"))
1276         {
1277                 cvar_set("_scoreboard", "0");
1278                 PrintScoreboard();
1279         }
1280
1281         timelimit = cvar("timelimit") * 60;
1282         fraglimit = cvar("fraglimit");
1283
1284         if (timelimit && time >= timelimit)
1285                 InitiateOvertime();
1286
1287         if (checkrules_overtimeend && time >= checkrules_overtimeend)
1288         {
1289                 NextLevel();
1290                 return;
1291         }
1292
1293         if(!checkrules_overtimewarning && checkrules_overtimeend)
1294         {
1295                 checkrules_overtimewarning = TRUE;
1296                 //sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1297                 bcenterprint("^3Now playing ^1OVERTIME^3!\n\n^3Keep fragging until we have a ^1winner^3!");
1298         }
1299
1300         if (!checkrules_oneminutewarning && timelimit > 0 && time > timelimit - 60)
1301         {
1302                 checkrules_oneminutewarning = TRUE;
1303                 sound(world, CHAN_AUTO, "announcer/robotic/1minuteremains.ogg", 1, ATTN_NONE);
1304         }
1305
1306         status = WINNING_NO;
1307         if(cvar("g_lms"))
1308         {
1309                 status = WinningCondition_LMS();
1310         }
1311         else
1312         {
1313                 if(teams_matter)
1314                 {
1315                         if(cvar("g_tdm") || cvar("g_runematch") || cvar("g_ctf") || cvar("g_domination"))
1316                                 status = WinningCondition_MaxTeamSum(fraglimit);
1317                         //else if()
1318                         //      status = WinningCondition_MaxTeamMax(fraglimit);
1319                         else
1320                         {
1321                                 dprint("div0: How can this happen?\n");
1322                                 status = WinningCondition_MaxTeamMax(fraglimit);
1323                         }
1324                 }
1325                 else
1326                         status = WinningCondition_MaxIndividualScore(fraglimit);
1327         }
1328
1329         if(status == WINNING_STARTOVERTIME)
1330         {
1331                 status = WINNING_NEVER;
1332                 InitiateOvertime();
1333         }
1334
1335         if(status == WINNING_NEVER)
1336                 // equality cases! Nobody wins if the overtime ends in a draw.
1337                 ClearWinners();
1338
1339         if(checkrules_overtimeend)
1340                 if(status != WINNING_NEVER)
1341                         status = WINNING_YES;
1342
1343         if(status == WINNING_YES)
1344                 NextLevel();
1345 };