]> icculus.org git repositories - divverent/darkplaces.git/blob - menu.c
don't remove onground flag when riding a pusher, this fixes the e3m2 silver key not...
[divverent/darkplaces.git] / menu.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 #include "quakedef.h"
21 #include "cdaudio.h"
22 #include "image.h"
23 #include "progsvm.h"
24
25 #include "mprogdefs.h"
26
27 #define TYPE_DEMO 1
28 #define TYPE_GAME 2
29 #define TYPE_BOTH 3
30
31 int NehGameType;
32
33 enum m_state_e m_state;
34
35 void M_Menu_Main_f (void);
36         void M_Menu_SinglePlayer_f (void);
37                 void M_Menu_Transfusion_Episode_f (void);
38                         void M_Menu_Transfusion_Skill_f (void);
39                 void M_Menu_Load_f (void);
40                 void M_Menu_Save_f (void);
41         void M_Menu_MultiPlayer_f (void);
42                 void M_Menu_Setup_f (void);
43         void M_Menu_Options_f (void);
44         void M_Menu_Options_Effects_f (void);
45         void M_Menu_Options_Graphics_f (void);
46         void M_Menu_Options_ColorControl_f (void);
47                 void M_Menu_Keys_f (void);
48                 void M_Menu_Reset_f (void);
49                 void M_Menu_Video_f (void);
50         void M_Menu_Help_f (void);
51         void M_Menu_Credits_f (void);
52         void M_Menu_Quit_f (void);
53 void M_Menu_LanConfig_f (void);
54 void M_Menu_GameOptions_f (void);
55 void M_Menu_ServerList_f (void);
56
57 void M_Main_Draw (void);
58         void M_SinglePlayer_Draw (void);
59                 void M_Transfusion_Episode_Draw (void);
60                         void M_Transfusion_Skill_Draw (void);
61                 void M_Load_Draw (void);
62                 void M_Save_Draw (void);
63         void M_MultiPlayer_Draw (void);
64                 void M_Setup_Draw (void);
65         void M_Options_Draw (void);
66         void M_Options_Effects_Draw (void);
67         void M_Options_Graphics_Draw (void);
68         void M_Options_ColorControl_Draw (void);
69                 void M_Keys_Draw (void);
70                 void M_Reset_Draw (void);
71                 void M_Video_Draw (void);
72         void M_Help_Draw (void);
73         void M_Credits_Draw (void);
74         void M_Quit_Draw (void);
75 void M_LanConfig_Draw (void);
76 void M_GameOptions_Draw (void);
77 void M_ServerList_Draw (void);
78
79 void M_Main_Key (int key, char ascii);
80         void M_SinglePlayer_Key (int key, char ascii);
81                 void M_Transfusion_Episode_Key (int key, char ascii);
82                         void M_Transfusion_Skill_Key (int key, char ascii);
83                 void M_Load_Key (int key, char ascii);
84                 void M_Save_Key (int key, char ascii);
85         void M_MultiPlayer_Key (int key, char ascii);
86                 void M_Setup_Key (int key, char ascii);
87         void M_Options_Key (int key, char ascii);
88         void M_Options_Effects_Key (int key, char ascii);
89         void M_Options_Graphics_Key (int key, char ascii);
90         void M_Options_ColorControl_Key (int key, char ascii);
91                 void M_Keys_Key (int key, char ascii);
92                 void M_Reset_Key (int key, char ascii);
93                 void M_Video_Key (int key, char ascii);
94         void M_Help_Key (int key, char ascii);
95         void M_Credits_Key (int key, char ascii);
96         void M_Quit_Key (int key, char ascii);
97 void M_LanConfig_Key (int key, char ascii);
98 void M_GameOptions_Key (int key, char ascii);
99 void M_ServerList_Key (int key, char ascii);
100
101 qboolean        m_entersound;           // play after drawing a frame, so caching
102                                                                 // won't disrupt the sound
103
104 char            m_return_reason [32];
105
106 void M_Update_Return_Reason(char *s)
107 {
108         strlcpy(m_return_reason, s, sizeof(m_return_reason));
109         if (s)
110                 Con_Printf("%s\n", s);
111 }
112
113 #define StartingGame    (m_multiplayer_cursor == 1)
114 #define JoiningGame             (m_multiplayer_cursor == 0)
115
116 // Nehahra
117 #define NumberOfNehahraDemos 34
118 typedef struct
119 {
120         char *name;
121         char *desc;
122 } nehahrademonames_t;
123
124 nehahrademonames_t NehahraDemos[NumberOfNehahraDemos] =
125 {
126         {"intro", "Prologue"},
127         {"genf", "The Beginning"},
128         {"genlab", "A Doomed Project"},
129         {"nehcre", "The New Recruits"},
130         {"maxneh", "Breakthrough"},
131         {"maxchar", "Renewal and Duty"},
132         {"crisis", "Worlds Collide"},
133         {"postcris", "Darkening Skies"},
134         {"hearing", "The Hearing"},
135         {"getjack", "On a Mexican Radio"},
136         {"prelude", "Honor and Justice"},
137         {"abase", "A Message Sent"},
138         {"effect", "The Other Side"},
139         {"uhoh", "Missing in Action"},
140         {"prepare", "The Response"},
141         {"vision", "Farsighted Eyes"},
142         {"maxturns", "Enter the Immortal"},
143         {"backlot", "Separate Ways"},
144         {"maxside", "The Ancient Runes"},
145         {"counter", "The New Initiative"},
146         {"warprep", "Ghosts to the World"},
147         {"counter1", "A Fate Worse Than Death"},
148         {"counter2", "Friendly Fire"},
149         {"counter3", "Minor Setback"},
150         {"madmax", "Scores to Settle"},
151         {"quake", "One Man"},
152         {"cthmm", "Shattered Masks"},
153         {"shades", "Deal with the Dead"},
154         {"gophil", "An Unlikely Hero"},
155         {"cstrike", "War in Hell"},
156         {"shubset", "The Conspiracy"},
157         {"shubdie", "Even Death May Die"},
158         {"newranks", "An Empty Throne"},
159         {"seal", "The Seal is Broken"}
160 };
161
162 float menu_x, menu_y, menu_width, menu_height;
163
164 void M_Background(int width, int height)
165 {
166         menu_width = bound(1, width, vid_conwidth.integer);
167         menu_height = bound(1, height, vid_conheight.integer);
168         menu_x = (vid_conwidth.integer - menu_width) * 0.5;
169         menu_y = (vid_conheight.integer - menu_height) * 0.5;
170         //DrawQ_Fill(menu_x, menu_y, menu_width, menu_height, 0, 0, 0, 0.5, 0);
171         DrawQ_Fill(0, 0, vid_conwidth.integer, vid_conheight.integer, 0, 0, 0, 0.5, 0);
172 }
173
174 /*
175 ================
176 M_DrawCharacter
177
178 Draws one solid graphics character
179 ================
180 */
181 void M_DrawCharacter (float cx, float cy, int num)
182 {
183         char temp[2];
184         temp[0] = num;
185         temp[1] = 0;
186         DrawQ_String(menu_x + cx, menu_y + cy, temp, 1, 8, 8, 1, 1, 1, 1, 0);
187 }
188
189 void M_Print(float cx, float cy, const char *str)
190 {
191         DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
192 }
193
194 void M_PrintRed (float cx, float cy, const char *str)
195 {
196         DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 0, 0, 1, 0);
197 }
198
199 void M_ItemPrint(float cx, float cy, char *str, int unghosted)
200 {
201         if (unghosted)
202                 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
203         else
204                 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 0.4, 0.4, 0.4, 1, 0);
205 }
206
207 void M_DrawPic (float cx, float cy, char *picname)
208 {
209         DrawQ_Pic (menu_x + cx, menu_y + cy, picname, 0, 0, 1, 1, 1, 1, 0);
210 }
211
212 qbyte identityTable[256];
213 qbyte translationTable[256];
214
215 void M_BuildTranslationTable(int top, int bottom)
216 {
217         int j;
218         qbyte *dest, *source;
219
220         for (j = 0; j < 256; j++)
221                 identityTable[j] = j;
222         dest = translationTable;
223         source = identityTable;
224         memcpy (dest, source, 256);
225
226         // LordHavoc: corrected skin color ranges
227         if (top < 128 || (top >= 224 && top < 240))     // the artists made some backwards ranges.  sigh.
228                 memcpy (dest + TOP_RANGE, source + top, 16);
229         else
230                 for (j=0 ; j<16 ; j++)
231                         dest[TOP_RANGE+j] = source[top+15-j];
232
233         // LordHavoc: corrected skin color ranges
234         if (bottom < 128 || (bottom >= 224 && bottom < 240))
235                 memcpy (dest + BOTTOM_RANGE, source + bottom, 16);
236         else
237                 for (j=0 ; j<16 ; j++)
238                         dest[BOTTOM_RANGE+j] = source[bottom+15-j];
239 }
240
241
242 void M_DrawTextBox (float x, float y, float width, float height)
243 {
244         int n;
245         float cx, cy;
246
247         // draw left side
248         cx = x;
249         cy = y;
250         M_DrawPic (cx, cy, "gfx/box_tl.lmp");
251         for (n = 0; n < height; n++)
252         {
253                 cy += 8;
254                 M_DrawPic (cx, cy, "gfx/box_ml.lmp");
255         }
256         M_DrawPic (cx, cy+8, "gfx/box_bl.lmp");
257
258         // draw middle
259         cx += 8;
260         while (width > 0)
261         {
262                 cy = y;
263                 M_DrawPic (cx, cy, "gfx/box_tm.lmp");
264                 for (n = 0; n < height; n++)
265                 {
266                         cy += 8;
267                         if (n >= 1)
268                                 M_DrawPic (cx, cy, "gfx/box_mm2.lmp");
269                         else
270                                 M_DrawPic (cx, cy, "gfx/box_mm.lmp");
271                 }
272                 M_DrawPic (cx, cy+8, "gfx/box_bm.lmp");
273                 width -= 2;
274                 cx += 16;
275         }
276
277         // draw right side
278         cy = y;
279         M_DrawPic (cx, cy, "gfx/box_tr.lmp");
280         for (n = 0; n < height; n++)
281         {
282                 cy += 8;
283                 M_DrawPic (cx, cy, "gfx/box_mr.lmp");
284         }
285         M_DrawPic (cx, cy+8, "gfx/box_br.lmp");
286 }
287
288 //=============================================================================
289
290 //int m_save_demonum;
291
292 /*
293 ================
294 M_ToggleMenu_f
295 ================
296 */
297 void M_ToggleMenu_f (void)
298 {
299         m_entersound = true;
300
301         if (key_dest != key_menu || m_state != m_main)
302                 M_Menu_Main_f ();
303         else
304         {
305                 key_dest = key_game;
306                 m_state = m_none;
307         }
308 }
309
310
311 int demo_cursor;
312 void M_Demo_Draw (void)
313 {
314         int i;
315
316         M_Background(320, 200);
317
318         for (i = 0;i < NumberOfNehahraDemos;i++)
319                 M_Print(16, 16 + 8*i, NehahraDemos[i].desc);
320
321         // line cursor
322         M_DrawCharacter (8, 16 + demo_cursor*8, 12+((int)(realtime*4)&1));
323 }
324
325
326 void M_Menu_Demos_f (void)
327 {
328         key_dest = key_menu;
329         m_state = m_demo;
330         m_entersound = true;
331 }
332
333 void M_Demo_Key (int k, char ascii)
334 {
335         switch (k)
336         {
337         case K_ESCAPE:
338                 M_Menu_Main_f ();
339                 break;
340
341         case K_ENTER:
342                 S_LocalSound ("sound/misc/menu2.wav");
343                 m_state = m_none;
344                 key_dest = key_game;
345                 Cbuf_AddText (va ("playdemo %s\n", NehahraDemos[demo_cursor].name));
346                 return;
347
348         case K_UPARROW:
349         case K_LEFTARROW:
350                 S_LocalSound ("sound/misc/menu1.wav");
351                 demo_cursor--;
352                 if (demo_cursor < 0)
353                         demo_cursor = NumberOfNehahraDemos-1;
354                 break;
355
356         case K_DOWNARROW:
357         case K_RIGHTARROW:
358                 S_LocalSound ("sound/misc/menu1.wav");
359                 demo_cursor++;
360                 if (demo_cursor >= NumberOfNehahraDemos)
361                         demo_cursor = 0;
362                 break;
363         }
364 }
365
366 //=============================================================================
367 /* MAIN MENU */
368
369 int     m_main_cursor;
370
371 int MAIN_ITEMS = 4; // Nehahra: Menu Disable
372
373 void M_Menu_Main_f (void)
374 {
375         if (gamemode == GAME_NEHAHRA)
376         {
377                 if (NehGameType == TYPE_DEMO)
378                         MAIN_ITEMS = 4;
379                 else if (NehGameType == TYPE_GAME)
380                         MAIN_ITEMS = 5;
381                 else
382                         MAIN_ITEMS = 6;
383         }
384         else if (gamemode == GAME_NETHERWORLD)//VORTEX: menu restarting item
385                 MAIN_ITEMS = 6;
386         else if (gamemode == GAME_TRANSFUSION) {
387                 if (sv.active && !cl.intermission && cl.islocalgame)
388                         MAIN_ITEMS = 8;
389                 else
390                         MAIN_ITEMS = 7;
391         }
392         else
393                 MAIN_ITEMS = 5;
394
395         /*
396         if (key_dest != key_menu)
397         {
398                 m_save_demonum = cls.demonum;
399                 cls.demonum = -1;
400         }
401         */
402         key_dest = key_menu;
403         m_state = m_main;
404         m_entersound = true;
405 }
406
407
408 void M_Main_Draw (void)
409 {
410         int             f;
411         cachepic_t      *p;
412
413         if (gamemode == GAME_TRANSFUSION) {
414                 int y1, y2, y3;
415                 M_Background(640, 480);
416                 p = Draw_CachePic ("gfx/tb-transfusion", false);
417                 M_DrawPic (640/2 - p->width/2, 40, "gfx/tb-transfusion");
418                 y2 = 120;
419                 // 8 rather than MAIN_ITEMS to skip a number and not miss the last option
420                 for (y1 = 1; y1 <= 8; y1++)
421                 {
422                         if (MAIN_ITEMS == 7 && y1 == 4)
423                                 y1++;
424                         M_DrawPic (0, y2, va("gfx/mainmenu%i", y1));
425                         y2 += 40;
426                 }
427                 if (MAIN_ITEMS == 7 && m_main_cursor > 2)
428                         y3 = m_main_cursor + 2;
429                 else
430                         y3 = m_main_cursor + 1;
431                 M_DrawPic (0, 120 + m_main_cursor * 40, va("gfx/mainmenu%iselected", y3));
432                 return;
433         }
434
435         M_Background(320, 200);
436         M_DrawPic (16, 4, "gfx/qplaque.lmp");
437         p = Draw_CachePic ("gfx/ttl_main.lmp", false);
438         M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_main.lmp");
439 // Nehahra
440         if (gamemode == GAME_NEHAHRA)
441         {
442                 if (NehGameType == TYPE_BOTH)
443                         M_DrawPic (72, 32, "gfx/mainmenu.lmp");
444                 else if (NehGameType == TYPE_GAME)
445                         M_DrawPic (72, 32, "gfx/gamemenu.lmp");
446                 else
447                         M_DrawPic (72, 32, "gfx/demomenu.lmp");
448         }
449         else
450                 M_DrawPic (72, 32, "gfx/mainmenu.lmp");
451
452         f = (int)(realtime * 10)%6;
453
454         M_DrawPic (54, 32 + m_main_cursor * 20, va("gfx/menudot%i.lmp", f+1));
455 }
456
457
458 void M_Main_Key (int key, char ascii)
459 {
460         switch (key)
461         {
462         case K_ESCAPE:
463                 key_dest = key_game;
464                 m_state = m_none;
465                 //cls.demonum = m_save_demonum;
466                 //if (cls.demonum != -1 && !cls.demoplayback && cls.state != ca_connected)
467                 //      CL_NextDemo ();
468                 break;
469
470         case K_DOWNARROW:
471                 S_LocalSound ("sound/misc/menu1.wav");
472                 if (++m_main_cursor >= MAIN_ITEMS)
473                         m_main_cursor = 0;
474                 break;
475
476         case K_UPARROW:
477                 S_LocalSound ("sound/misc/menu1.wav");
478                 if (--m_main_cursor < 0)
479                         m_main_cursor = MAIN_ITEMS - 1;
480                 break;
481
482         case K_ENTER:
483                 m_entersound = true;
484
485                 if (gamemode == GAME_NEHAHRA)
486                 {
487                         switch (NehGameType)
488                         {
489                         case TYPE_BOTH:
490                                 switch (m_main_cursor)
491                                 {
492                                 case 0:
493                                         M_Menu_SinglePlayer_f ();
494                                         break;
495
496                                 case 1:
497                                         M_Menu_Demos_f ();
498                                         break;
499
500                                 case 2:
501                                         M_Menu_MultiPlayer_f ();
502                                         break;
503
504                                 case 3:
505                                         M_Menu_Options_f ();
506                                         break;
507
508                                 case 4:
509                                         key_dest = key_game;
510                                         if (sv.active)
511                                                 Cbuf_AddText ("disconnect\n");
512                                         Cbuf_AddText ("playdemo endcred\n");
513                                         break;
514
515                                 case 5:
516                                         M_Menu_Quit_f ();
517                                         break;
518                                 }
519                                 break;
520                         case TYPE_GAME:
521                                 switch (m_main_cursor)
522                                 {
523                                 case 0:
524                                         M_Menu_SinglePlayer_f ();
525                                         break;
526
527                                 case 1:
528                                         M_Menu_MultiPlayer_f ();
529                                         break;
530
531                                 case 2:
532                                         M_Menu_Options_f ();
533                                         break;
534
535                                 case 3:
536                                         key_dest = key_game;
537                                         if (sv.active)
538                                                 Cbuf_AddText ("disconnect\n");
539                                         Cbuf_AddText ("playdemo endcred\n");
540                                         break;
541
542                                 case 4:
543                                         M_Menu_Quit_f ();
544                                         break;
545                                 }
546                                 break;
547                         case TYPE_DEMO:
548                                 switch (m_main_cursor)
549                                 {
550                                 case 0:
551                                         M_Menu_Demos_f ();
552                                         break;
553
554                                 case 1:
555                                         key_dest = key_game;
556                                         if (sv.active)
557                                                 Cbuf_AddText ("disconnect\n");
558                                         Cbuf_AddText ("playdemo endcred\n");
559                                         break;
560
561                                 case 2:
562                                         M_Menu_Options_f ();
563                                         break;
564
565                                 case 3:
566                                         M_Menu_Quit_f ();
567                                         break;
568                                 }
569                                 break;
570                         }
571                 }
572                 else if (gamemode == GAME_NETHERWORLD)//VORTEX: menu restarting item
573                 {
574                         switch (m_main_cursor)
575                         {
576                         case 0:
577                                 M_Menu_SinglePlayer_f ();
578                                 break;
579
580                         case 1:
581                                 M_Menu_MultiPlayer_f ();
582                                 break;
583
584                         case 2:
585                                 M_Menu_Options_f ();
586                                 break;
587
588                         case 3:
589                                 M_Menu_Help_f ();
590                                 break;
591
592                         case 4:
593                                 M_Menu_Quit_f ();
594                                 break;
595                         case 5:
596                                 MR_Restart();
597                                 break;
598                         }
599                 }
600                 else if (gamemode == GAME_TRANSFUSION) {
601                         if (MAIN_ITEMS == 7)
602                         {
603                                 switch (m_main_cursor)
604                                 {
605                                 case 0:
606                                         M_Menu_Transfusion_Episode_f ();
607                                         break;
608
609                                 case 1:
610                                         M_Menu_MultiPlayer_f ();
611                                         break;
612
613                                 case 2:
614                                         M_Menu_Options_f ();
615                                         break;
616
617                                 case 3:
618                                         M_Menu_Load_f ();
619                                         break;
620
621                                 case 4:
622                                         M_Menu_Help_f ();
623                                         break;
624
625                                 case 5:
626                                         M_Menu_Credits_f ();
627                                         break;
628
629                                 case 6:
630                                         M_Menu_Quit_f ();
631                                         break;
632                                 }
633                         }
634                         else
635                         {
636                                 switch (m_main_cursor)
637                                 {
638                                 case 0:
639                                         M_Menu_Transfusion_Episode_f ();
640                                         break;
641
642                                 case 1:
643                                         M_Menu_MultiPlayer_f ();
644                                         break;
645
646                                 case 2:
647                                         M_Menu_Options_f ();
648                                         break;
649
650                                 case 3:
651                                         M_Menu_Save_f ();
652                                         break;
653
654                                 case 4:
655                                         M_Menu_Load_f ();
656                                         break;
657
658                                 case 5:
659                                         M_Menu_Help_f ();
660                                         break;
661
662                                 case 6:
663                                         M_Menu_Credits_f ();
664                                         break;
665
666                                 case 7:
667                                         M_Menu_Quit_f ();
668                                         break;
669                                 }
670                         }
671                 }
672                 else
673                 {
674                         switch (m_main_cursor)
675                         {
676                         case 0:
677                                 M_Menu_SinglePlayer_f ();
678                                 break;
679
680                         case 1:
681                                 M_Menu_MultiPlayer_f ();
682                                 break;
683
684                         case 2:
685                                 M_Menu_Options_f ();
686                                 break;
687
688                         case 3:
689                                 M_Menu_Help_f ();
690                                 break;
691
692                         case 4:
693                                 M_Menu_Quit_f ();
694                                 break;
695                         }
696                 }
697         }
698 }
699
700 //=============================================================================
701 /* SINGLE PLAYER MENU */
702
703 int     m_singleplayer_cursor;
704 #define SINGLEPLAYER_ITEMS      3
705
706
707 void M_Menu_SinglePlayer_f (void)
708 {
709         key_dest = key_menu;
710         m_state = m_singleplayer;
711         m_entersound = true;
712 }
713
714
715 void M_SinglePlayer_Draw (void)
716 {
717         cachepic_t      *p;
718
719         M_Background(320, 200);
720
721         M_DrawPic (16, 4, "gfx/qplaque.lmp");
722         p = Draw_CachePic ("gfx/ttl_sgl.lmp", false);
723
724         // Some mods don't have a single player mode
725         if (gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
726         {
727                 M_DrawPic ((320 - p->width) / 2, 4, "gfx/ttl_sgl.lmp");
728
729                 M_DrawTextBox (60, 8 * 8, 23, 4);
730                 if (gamemode == GAME_NEXUIZ)
731                         M_Print(95, 10 * 8, "Nexuiz is for");
732                 else if (gamemode == GAME_GOODVSBAD2)
733                         M_Print(95, 10 * 8, "Good Vs Bad 2 is for");
734                 else  // if (gamemode == GAME_BATTLEMECH)
735                         M_Print(95, 10 * 8, "Battlemech is for");
736                 M_Print(83, 11 * 8, "multiplayer play only");
737         }
738         else
739         {
740                 int             f;
741
742                 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_sgl.lmp");
743                 M_DrawPic (72, 32, "gfx/sp_menu.lmp");
744
745                 f = (int)(realtime * 10)%6;
746
747                 M_DrawPic (54, 32 + m_singleplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
748         }
749 }
750
751
752 void M_SinglePlayer_Key (int key, char ascii)
753 {
754         if (gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
755         {
756                 if (key == K_ESCAPE || key == K_ENTER)
757                         m_state = m_main;
758                 return;
759         }
760
761         switch (key)
762         {
763         case K_ESCAPE:
764                 M_Menu_Main_f ();
765                 break;
766
767         case K_DOWNARROW:
768                 S_LocalSound ("sound/misc/menu1.wav");
769                 if (++m_singleplayer_cursor >= SINGLEPLAYER_ITEMS)
770                         m_singleplayer_cursor = 0;
771                 break;
772
773         case K_UPARROW:
774                 S_LocalSound ("sound/misc/menu1.wav");
775                 if (--m_singleplayer_cursor < 0)
776                         m_singleplayer_cursor = SINGLEPLAYER_ITEMS - 1;
777                 break;
778
779         case K_ENTER:
780                 m_entersound = true;
781
782                 switch (m_singleplayer_cursor)
783                 {
784                 case 0:
785                         key_dest = key_game;
786                         if (sv.active)
787                                 Cbuf_AddText ("disconnect\n");
788                         Cbuf_AddText ("maxplayers 1\n");
789                         Cbuf_AddText ("deathmatch 0\n");
790                         Cbuf_AddText ("coop 0\n");
791                         if (gamemode == GAME_TRANSFUSION)
792                         {
793                                 key_dest = key_menu;
794                                 M_Menu_Transfusion_Episode_f ();
795                                 break;
796                         }
797                         Cbuf_AddText ("startmap_sp\n");
798                         break;
799
800                 case 1:
801                         M_Menu_Load_f ();
802                         break;
803
804                 case 2:
805                         M_Menu_Save_f ();
806                         break;
807                 }
808         }
809 }
810
811 //=============================================================================
812 /* LOAD/SAVE MENU */
813
814 int             load_cursor;            // 0 < load_cursor < MAX_SAVEGAMES
815
816 #define MAX_SAVEGAMES           12
817 char    m_filenames[MAX_SAVEGAMES][SAVEGAME_COMMENT_LENGTH+1];
818 int             loadable[MAX_SAVEGAMES];
819
820 void M_ScanSaves (void)
821 {
822         int             i, j, len;
823         char    name[MAX_OSPATH];
824         char    buf[SAVEGAME_COMMENT_LENGTH + 256];
825         const char *t;
826         qfile_t *f;
827         int             version;
828
829         for (i=0 ; i<MAX_SAVEGAMES ; i++)
830         {
831                 strcpy (m_filenames[i], "--- UNUSED SLOT ---");
832                 loadable[i] = false;
833                 sprintf (name, "s%i.sav", (int)i);
834                 f = FS_Open (name, "rb", false, false);
835                 if (!f)
836                         continue;
837                 // read enough to get the comment
838                 len = FS_Read(f, buf, sizeof(buf) - 1);
839                 buf[sizeof(buf) - 1] = 0;
840                 t = buf;
841                 // version
842                 COM_ParseToken(&t, false);
843                 version = atoi(com_token);
844                 // description
845                 COM_ParseToken(&t, false);
846                 strlcpy (m_filenames[i], com_token, sizeof (m_filenames[i]));
847
848         // change _ back to space
849                 for (j=0 ; j<SAVEGAME_COMMENT_LENGTH ; j++)
850                         if (m_filenames[i][j] == '_')
851                                 m_filenames[i][j] = ' ';
852                 loadable[i] = true;
853                 FS_Close (f);
854         }
855 }
856
857 void M_Menu_Load_f (void)
858 {
859         m_entersound = true;
860         m_state = m_load;
861         key_dest = key_menu;
862         M_ScanSaves ();
863 }
864
865
866 void M_Menu_Save_f (void)
867 {
868         if (!sv.active)
869                 return;
870         if (cl.intermission)
871                 return;
872         if (!cl.islocalgame)
873                 return;
874         m_entersound = true;
875         m_state = m_save;
876         key_dest = key_menu;
877         M_ScanSaves ();
878 }
879
880
881 void M_Load_Draw (void)
882 {
883         int             i;
884         cachepic_t      *p;
885
886         M_Background(320, 200);
887
888         p = Draw_CachePic ("gfx/p_load.lmp", false);
889         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_load.lmp" );
890
891         for (i=0 ; i< MAX_SAVEGAMES; i++)
892                 M_Print(16, 32 + 8*i, m_filenames[i]);
893
894 // line cursor
895         M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
896 }
897
898
899 void M_Save_Draw (void)
900 {
901         int             i;
902         cachepic_t      *p;
903
904         M_Background(320, 200);
905
906         p = Draw_CachePic ("gfx/p_save.lmp", false);
907         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_save.lmp");
908
909         for (i=0 ; i<MAX_SAVEGAMES ; i++)
910                 M_Print(16, 32 + 8*i, m_filenames[i]);
911
912 // line cursor
913         M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
914 }
915
916
917 void M_Load_Key (int k, char ascii)
918 {
919         switch (k)
920         {
921         case K_ESCAPE:
922                 if (gamemode == GAME_TRANSFUSION)
923                         M_Menu_Main_f ();
924                 else
925                         M_Menu_SinglePlayer_f ();
926                 break;
927
928         case K_ENTER:
929                 S_LocalSound ("sound/misc/menu2.wav");
930                 if (!loadable[load_cursor])
931                         return;
932                 m_state = m_none;
933                 key_dest = key_game;
934
935                 // issue the load command
936                 Cbuf_AddText (va ("load s%i\n", load_cursor) );
937                 return;
938
939         case K_UPARROW:
940         case K_LEFTARROW:
941                 S_LocalSound ("sound/misc/menu1.wav");
942                 load_cursor--;
943                 if (load_cursor < 0)
944                         load_cursor = MAX_SAVEGAMES-1;
945                 break;
946
947         case K_DOWNARROW:
948         case K_RIGHTARROW:
949                 S_LocalSound ("sound/misc/menu1.wav");
950                 load_cursor++;
951                 if (load_cursor >= MAX_SAVEGAMES)
952                         load_cursor = 0;
953                 break;
954         }
955 }
956
957
958 void M_Save_Key (int k, char ascii)
959 {
960         switch (k)
961         {
962         case K_ESCAPE:
963                 if (gamemode == GAME_TRANSFUSION)
964                         M_Menu_Main_f ();
965                 else
966                         M_Menu_SinglePlayer_f ();
967                 break;
968
969         case K_ENTER:
970                 m_state = m_none;
971                 key_dest = key_game;
972                 Cbuf_AddText (va("save s%i\n", load_cursor));
973                 return;
974
975         case K_UPARROW:
976         case K_LEFTARROW:
977                 S_LocalSound ("sound/misc/menu1.wav");
978                 load_cursor--;
979                 if (load_cursor < 0)
980                         load_cursor = MAX_SAVEGAMES-1;
981                 break;
982
983         case K_DOWNARROW:
984         case K_RIGHTARROW:
985                 S_LocalSound ("sound/misc/menu1.wav");
986                 load_cursor++;
987                 if (load_cursor >= MAX_SAVEGAMES)
988                         load_cursor = 0;
989                 break;
990         }
991 }
992
993 //=============================================================================
994 /* Transfusion Single Player Episode Menu */
995
996 int     m_episode_cursor;
997 #define EPISODE_ITEMS   6
998
999 void M_Menu_Transfusion_Episode_f (void)
1000 {
1001         m_entersound = true;
1002         m_state = m_transfusion_episode;
1003         key_dest = key_menu;
1004 }
1005
1006 void M_Transfusion_Episode_Draw (void)
1007 {
1008         int y;
1009         cachepic_t *p;
1010         M_Background(640, 480);
1011
1012         p = Draw_CachePic ("gfx/tb-episodes", false);
1013         M_DrawPic (640/2 - p->width/2, 40, "gfx/tb-episodes");
1014         for (y = 0; y < EPISODE_ITEMS; y++){
1015                 M_DrawPic (0, 160 + y * 40, va("gfx/episode%i", y+1));
1016         }
1017
1018         M_DrawPic (0, 120 + (m_episode_cursor + 1) * 40, va("gfx/episode%iselected", m_episode_cursor + 1));
1019 }
1020
1021 void M_Transfusion_Episode_Key (int key, char ascii)
1022 {
1023         switch (key)
1024         {
1025         case K_ESCAPE:
1026                 M_Menu_Main_f ();
1027                 break;
1028
1029         case K_DOWNARROW:
1030                 S_LocalSound ("sound/misc/menu1.wav");
1031                 m_episode_cursor++;
1032                 if (m_episode_cursor >= EPISODE_ITEMS)
1033                         m_episode_cursor = 0;
1034                 break;
1035
1036         case K_UPARROW:
1037                 S_LocalSound ("sound/misc/menu1.wav");
1038                 m_episode_cursor--;
1039                 if (m_episode_cursor < 0)
1040                         m_episode_cursor = EPISODE_ITEMS - 1;
1041                 break;
1042
1043         case K_ENTER:
1044                 Cbuf_AddText ("deathmatch 0\n");
1045                 m_entersound = true;
1046                 M_Menu_Transfusion_Skill_f ();
1047         }
1048 }
1049
1050 //=============================================================================
1051 /* Transfusion Single Player Skill Menu */
1052
1053 int     m_skill_cursor = 2;
1054 #define SKILL_ITEMS     5
1055
1056 void M_Menu_Transfusion_Skill_f (void)
1057 {
1058         m_entersound = true;
1059         m_state = m_transfusion_skill;
1060         key_dest = key_menu;
1061 }
1062
1063 void M_Transfusion_Skill_Draw (void)
1064 {
1065         int y;
1066         cachepic_t      *p;
1067         M_Background(640, 480);
1068
1069         p = Draw_CachePic ("gfx/tb-difficulty", false);
1070         M_DrawPic(640/2 - p->width/2, 40, "gfx/tb-difficulty");
1071
1072         for (y = 0; y < SKILL_ITEMS; y++)
1073         {
1074                 M_DrawPic (0, 180 + y * 40, va("gfx/difficulty%i", y+1));
1075         }
1076         M_DrawPic (0, 140 + (m_skill_cursor + 1) *40, va("gfx/difficulty%iselected", m_skill_cursor + 1));
1077 }
1078
1079 void M_Transfusion_Skill_Key (int key, char ascii)
1080 {
1081         switch (key)
1082         {
1083         case K_ESCAPE:
1084                 M_Menu_Transfusion_Episode_f ();
1085                 break;
1086
1087         case K_DOWNARROW:
1088                 S_LocalSound ("sound/misc/menu1.wav");
1089                 m_skill_cursor++;
1090                 if (m_skill_cursor >= SKILL_ITEMS)
1091                         m_skill_cursor = 0;
1092                 break;
1093
1094         case K_UPARROW:
1095                 S_LocalSound ("sound/misc/menu1.wav");
1096                 m_skill_cursor--;
1097                 if (m_skill_cursor < 0)
1098                         m_skill_cursor = SKILL_ITEMS - 1;
1099                 break;
1100
1101         case K_ENTER:
1102                 m_entersound = true;
1103                 switch (m_skill_cursor)
1104                 {
1105                 case 0:
1106                         Cbuf_AddText ("skill 1\n");
1107                         break;
1108                 case 1:
1109                         Cbuf_AddText ("skill 2\n");
1110                         break;
1111                 case 2:
1112                         Cbuf_AddText ("skill 3\n");
1113                         break;
1114                 case 3:
1115                         Cbuf_AddText ("skill 4\n");
1116                         break;
1117                 case 4:
1118                         Cbuf_AddText ("skill 5\n");
1119                         break;
1120                 }
1121                 key_dest = key_game;
1122                 if (sv.active)
1123                         Cbuf_AddText ("disconnect\n");
1124                 Cbuf_AddText ("maxplayers 1\n");
1125                 Cbuf_AddText ("deathmatch 0\n");
1126                 Cbuf_AddText ("coop 0\n");
1127                 switch (m_episode_cursor)
1128                 {
1129                 case 0:
1130                         Cbuf_AddText ("map e1m1\n");
1131                         break;
1132                 case 1:
1133                         Cbuf_AddText ("map e2m1\n");
1134                         break;
1135                 case 2:
1136                         Cbuf_AddText ("map e3m1\n");
1137                         break;
1138                 case 3:
1139                         Cbuf_AddText ("map e4m1\n");
1140                         break;
1141                 case 4:
1142                         Cbuf_AddText ("map e6m1\n");
1143                         break;
1144                 case 5:
1145                         Cbuf_AddText ("map cp01\n");
1146                         break;
1147                 }
1148         }
1149 }
1150 //=============================================================================
1151 /* MULTIPLAYER MENU */
1152
1153 int     m_multiplayer_cursor;
1154 #define MULTIPLAYER_ITEMS       3
1155
1156
1157 void M_Menu_MultiPlayer_f (void)
1158 {
1159         key_dest = key_menu;
1160         m_state = m_multiplayer;
1161         m_entersound = true;
1162 }
1163
1164
1165 void M_MultiPlayer_Draw (void)
1166 {
1167         int             f;
1168         cachepic_t      *p;
1169
1170         if (gamemode == GAME_TRANSFUSION)
1171         {
1172                 M_Background(640, 480);
1173                 p = Draw_CachePic ("gfx/tb-online", false);
1174                 M_DrawPic (640/2 - p->width/2, 140, "gfx/tb-online");
1175                 for (f = 1; f <= MULTIPLAYER_ITEMS; f++)
1176                         M_DrawPic (0, 180 + f*40, va("gfx/online%i", f));
1177                 M_DrawPic (0, 220 + m_multiplayer_cursor * 40, va("gfx/online%iselected", m_multiplayer_cursor + 1));
1178                 return;
1179         }
1180         M_Background(320, 200);
1181
1182         M_DrawPic (16, 4, "gfx/qplaque.lmp");
1183         p = Draw_CachePic ("gfx/p_multi.lmp", false);
1184         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
1185         M_DrawPic (72, 32, "gfx/mp_menu.lmp");
1186
1187         f = (int)(realtime * 10)%6;
1188
1189         M_DrawPic (54, 32 + m_multiplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
1190 }
1191
1192
1193 void M_MultiPlayer_Key (int key, char ascii)
1194 {
1195         switch (key)
1196         {
1197         case K_ESCAPE:
1198                 M_Menu_Main_f ();
1199                 break;
1200
1201         case K_DOWNARROW:
1202                 S_LocalSound ("sound/misc/menu1.wav");
1203                 if (++m_multiplayer_cursor >= MULTIPLAYER_ITEMS)
1204                         m_multiplayer_cursor = 0;
1205                 break;
1206
1207         case K_UPARROW:
1208                 S_LocalSound ("sound/misc/menu1.wav");
1209                 if (--m_multiplayer_cursor < 0)
1210                         m_multiplayer_cursor = MULTIPLAYER_ITEMS - 1;
1211                 break;
1212
1213         case K_ENTER:
1214                 m_entersound = true;
1215                 switch (m_multiplayer_cursor)
1216                 {
1217                 case 0:
1218                 case 1:
1219                         M_Menu_LanConfig_f ();
1220                         break;
1221
1222                 case 2:
1223                         M_Menu_Setup_f ();
1224                         break;
1225                 }
1226         }
1227 }
1228
1229 //=============================================================================
1230 /* SETUP MENU */
1231
1232 int             setup_cursor = 4;
1233 int             setup_cursor_table[] = {40, 64, 88, 124, 140};
1234
1235 char    setup_myname[32];
1236 int             setup_oldtop;
1237 int             setup_oldbottom;
1238 int             setup_top;
1239 int             setup_bottom;
1240 int             setup_rate;
1241 int             setup_oldrate;
1242
1243 #define NUM_SETUP_CMDS  5
1244
1245 void M_Menu_Setup_f (void)
1246 {
1247         key_dest = key_menu;
1248         m_state = m_setup;
1249         m_entersound = true;
1250         strcpy(setup_myname, cl_name.string);
1251         setup_top = setup_oldtop = cl_color.integer >> 4;
1252         setup_bottom = setup_oldbottom = cl_color.integer & 15;
1253         setup_rate = cl_rate.integer;
1254 }
1255
1256 static int menuplyr_width, menuplyr_height, menuplyr_top, menuplyr_bottom, menuplyr_load;
1257 static qbyte *menuplyr_pixels;
1258 static unsigned int *menuplyr_translated;
1259
1260 typedef struct ratetable_s
1261 {
1262         int rate;
1263         char *name;
1264 }
1265 ratetable_t;
1266
1267 #define RATES ((int)(sizeof(setup_ratetable)/sizeof(setup_ratetable[0])))
1268 static ratetable_t setup_ratetable[] =
1269 {
1270         {1000, "28.8 bad"},
1271         {1500, "28.8 mediocre"},
1272         {2000, "28.8 good"},
1273         {2500, "33.6 mediocre"},
1274         {3000, "33.6 good"},
1275         {3500, "56k bad"},
1276         {4000, "56k mediocre"},
1277         {4500, "56k adequate"},
1278         {5000, "56k good"},
1279         {7000, "64k ISDN"},
1280         {15000, "128k ISDN"},
1281         {25000, "broadband"}
1282 };
1283
1284 static int setup_rateindex(int rate)
1285 {
1286         int i;
1287         for (i = 0;i < RATES;i++)
1288                 if (setup_ratetable[i].rate > setup_rate)
1289                         break;
1290         return bound(1, i, RATES) - 1;
1291 }
1292
1293 void M_Setup_Draw (void)
1294 {
1295         int i;
1296         cachepic_t      *p;
1297
1298         M_Background(320, 200);
1299
1300         M_DrawPic (16, 4, "gfx/qplaque.lmp");
1301         p = Draw_CachePic ("gfx/p_multi.lmp", false);
1302         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
1303
1304         M_Print(64, 40, "Your name");
1305         M_DrawTextBox (160, 32, 16, 1);
1306         M_Print(168, 40, setup_myname);
1307
1308         if (gamemode != GAME_GOODVSBAD2)
1309         {
1310                 M_Print(64, 64, "Shirt color");
1311                 M_Print(64, 88, "Pants color");
1312         }
1313
1314         M_Print(64, 124-8, "Network speed limit");
1315         M_Print(168, 124, va("%i (%s)", setup_rate, setup_ratetable[setup_rateindex(setup_rate)].name));
1316
1317         M_DrawTextBox (64, 140-8, 14, 1);
1318         M_Print(72, 140, "Accept Changes");
1319
1320         // LordHavoc: rewrote this code greatly
1321         if (menuplyr_load)
1322         {
1323                 qbyte *data, *f;
1324                 menuplyr_load = false;
1325                 menuplyr_top = -1;
1326                 menuplyr_bottom = -1;
1327                 if ((f = FS_LoadFile("gfx/menuplyr.lmp", tempmempool, true)))
1328                 {
1329                         data = LoadLMP (f, 0, 0, true);
1330                         menuplyr_width = image_width;
1331                         menuplyr_height = image_height;
1332                         Mem_Free(f);
1333                         menuplyr_pixels = Mem_Alloc(cl_mempool, menuplyr_width * menuplyr_height);
1334                         menuplyr_translated = Mem_Alloc(cl_mempool, menuplyr_width * menuplyr_height * 4);
1335                         memcpy(menuplyr_pixels, data, menuplyr_width * menuplyr_height);
1336                         Mem_Free(data);
1337                 }
1338         }
1339
1340         if (menuplyr_pixels)
1341         {
1342                 if (menuplyr_top != setup_top || menuplyr_bottom != setup_bottom)
1343                 {
1344                         menuplyr_top = setup_top;
1345                         menuplyr_bottom = setup_bottom;
1346                         M_BuildTranslationTable(menuplyr_top*16, menuplyr_bottom*16);
1347                         for (i = 0;i < menuplyr_width * menuplyr_height;i++)
1348                                 menuplyr_translated[i] = palette_complete[translationTable[menuplyr_pixels[i]]];
1349                         Draw_NewPic("gfx/menuplyr.lmp", menuplyr_width, menuplyr_height, true, (qbyte *)menuplyr_translated);
1350                 }
1351                 M_DrawPic(160, 48, "gfx/bigbox.lmp");
1352                 M_DrawPic(172, 56, "gfx/menuplyr.lmp");
1353         }
1354
1355         if (setup_cursor == 0)
1356                 M_DrawCharacter (168 + 8*strlen(setup_myname), setup_cursor_table [setup_cursor], 10+((int)(realtime*4)&1));
1357         else
1358                 M_DrawCharacter (56, setup_cursor_table [setup_cursor], 12+((int)(realtime*4)&1));
1359 }
1360
1361
1362 void M_Setup_Key (int k, char ascii)
1363 {
1364         int                     l;
1365
1366         switch (k)
1367         {
1368         case K_ESCAPE:
1369                 M_Menu_MultiPlayer_f ();
1370                 break;
1371
1372         case K_UPARROW:
1373                 S_LocalSound ("sound/misc/menu1.wav");
1374                 setup_cursor--;
1375                 if (setup_cursor < 0)
1376                         setup_cursor = NUM_SETUP_CMDS-1;
1377                 break;
1378
1379         case K_DOWNARROW:
1380                 S_LocalSound ("sound/misc/menu1.wav");
1381                 setup_cursor++;
1382                 if (setup_cursor >= NUM_SETUP_CMDS)
1383                         setup_cursor = 0;
1384                 break;
1385
1386         case K_LEFTARROW:
1387                 if (setup_cursor < 1)
1388                         return;
1389                 S_LocalSound ("sound/misc/menu3.wav");
1390                 if (setup_cursor == 1)
1391                         setup_top = setup_top - 1;
1392                 if (setup_cursor == 2)
1393                         setup_bottom = setup_bottom - 1;
1394                 if (setup_cursor == 3)
1395                 {
1396                         l = setup_rateindex(setup_rate) - 1;
1397                         if (l < 0)
1398                                 l = RATES - 1;
1399                         setup_rate = setup_ratetable[l].rate;
1400                 }
1401                 break;
1402         case K_RIGHTARROW:
1403                 if (setup_cursor < 1)
1404                         return;
1405 forward:
1406                 S_LocalSound ("sound/misc/menu3.wav");
1407                 if (setup_cursor == 1)
1408                         setup_top = setup_top + 1;
1409                 if (setup_cursor == 2)
1410                         setup_bottom = setup_bottom + 1;
1411                 if (setup_cursor == 3)
1412                 {
1413                         l = setup_rateindex(setup_rate) + 1;
1414                         if (l >= RATES)
1415                                 l = 0;
1416                         setup_rate = setup_ratetable[l].rate;
1417                 }
1418                 break;
1419
1420         case K_ENTER:
1421                 if (setup_cursor == 0)
1422                         return;
1423
1424                 if (setup_cursor == 1 || setup_cursor == 2 || setup_cursor == 3)
1425                         goto forward;
1426
1427                 // setup_cursor == 4 (Accept changes)
1428                 if (strcmp(cl_name.string, setup_myname) != 0)
1429                         Cbuf_AddText ( va ("name \"%s\"\n", setup_myname) );
1430                 if (setup_top != setup_oldtop || setup_bottom != setup_oldbottom)
1431                         Cbuf_AddText( va ("color %i %i\n", setup_top, setup_bottom) );
1432                 if (setup_rate != setup_oldrate)
1433                         Cbuf_AddText(va("rate %i\n", setup_rate));
1434
1435                 m_entersound = true;
1436                 M_Menu_MultiPlayer_f ();
1437                 break;
1438
1439         case K_BACKSPACE:
1440                 if (setup_cursor == 0)
1441                 {
1442                         if (strlen(setup_myname))
1443                                 setup_myname[strlen(setup_myname)-1] = 0;
1444                 }
1445                 break;
1446
1447         default:
1448                 if (ascii < 32 || ascii > 126)
1449                         break;
1450                 if (setup_cursor == 0)
1451                 {
1452                         l = (int)strlen(setup_myname);
1453                         if (l < 15)
1454                         {
1455                                 setup_myname[l+1] = 0;
1456                                 setup_myname[l] = ascii;
1457                         }
1458                 }
1459         }
1460
1461         if (setup_top > 15)
1462                 setup_top = 0;
1463         if (setup_top < 0)
1464                 setup_top = 15;
1465         if (setup_bottom > 15)
1466                 setup_bottom = 0;
1467         if (setup_bottom < 0)
1468                 setup_bottom = 15;
1469 }
1470
1471 //=============================================================================
1472 /* OPTIONS MENU */
1473
1474 #define SLIDER_RANGE    10
1475
1476 void M_DrawSlider (int x, int y, float num, float rangemin, float rangemax)
1477 {
1478         char text[16];
1479         int i;
1480         float range;
1481         range = bound(0, (num - rangemin) / (rangemax - rangemin), 1);
1482         M_DrawCharacter (x-8, y, 128);
1483         for (i = 0;i < SLIDER_RANGE;i++)
1484                 M_DrawCharacter (x + i*8, y, 129);
1485         M_DrawCharacter (x+i*8, y, 130);
1486         M_DrawCharacter (x + (SLIDER_RANGE-1)*8 * range, y, 131);
1487         if (fabs((int)num - num) < 0.01)
1488                 sprintf(text, "%i", (int)num);
1489         else
1490                 sprintf(text, "%.2f", num);
1491         M_Print(x + (SLIDER_RANGE+2) * 8, y, text);
1492 }
1493
1494 void M_DrawCheckbox (int x, int y, int on)
1495 {
1496         if (on)
1497                 M_Print(x, y, "on");
1498         else
1499                 M_Print(x, y, "off");
1500 }
1501
1502
1503 #define OPTIONS_ITEMS 39
1504
1505 int options_cursor;
1506
1507 void M_Menu_Options_f (void)
1508 {
1509         key_dest = key_menu;
1510         m_state = m_options;
1511         m_entersound = true;
1512 }
1513
1514 extern cvar_t slowmo;
1515 extern dllhandle_t jpeg_dll;
1516 extern cvar_t gl_texture_anisotropy;
1517 extern cvar_t r_textshadow;
1518
1519 void M_Menu_Options_AdjustSliders (int dir)
1520 {
1521         int optnum;
1522         S_LocalSound ("sound/misc/menu3.wav");
1523
1524         optnum = 7;
1525         if (options_cursor == optnum++)
1526                 Cvar_SetValueQuick (&vid_conwidth, bound(320, vid_conwidth.value + dir * 64, 2048));
1527         else if (options_cursor == optnum++)
1528                 Cvar_SetValueQuick (&vid_conheight, bound(240, vid_conheight.value + dir * 48, 1536));
1529         else if (options_cursor == optnum++)
1530                 Cvar_SetValueQuick (&scr_conspeed, bound(0, scr_conspeed.value + dir * 100, 1000));
1531         else if (options_cursor == optnum++)
1532                 Cvar_SetValueQuick (&scr_conalpha, bound(0, scr_conalpha.value + dir * 0.2, 1));
1533         else if (options_cursor == optnum++)
1534                 Cvar_SetValueQuick (&scr_conbrightness, bound(0, scr_conbrightness.value + dir * 0.2, 1));
1535         else if (options_cursor == optnum++)
1536                 Cvar_SetValueQuick (&sbar_alpha_bg, bound(0, sbar_alpha_bg.value + dir * 0.1, 1));
1537         else if (options_cursor == optnum++)
1538                 Cvar_SetValueQuick (&sbar_alpha_fg, bound(0, sbar_alpha_fg.value + dir * 0.1, 1));
1539         else if (options_cursor == optnum++)
1540                 Cvar_SetValueQuick (&scr_viewsize, bound(30, scr_viewsize.value + dir * 10, 120));
1541         else if (options_cursor == optnum++)
1542                 Cvar_SetValueQuick (&scr_fov, bound(1, scr_fov.integer + dir * 1, 170));
1543         else if (options_cursor == optnum++)
1544                 Cvar_SetValueQuick (&scr_screenshot_jpeg, !scr_screenshot_jpeg.integer);
1545         else if (options_cursor == optnum++)
1546                 Cvar_SetValueQuick (&scr_screenshot_jpeg_quality, bound(0, scr_screenshot_jpeg_quality.value + dir * 0.1, 1));
1547         else if (options_cursor == optnum++)
1548                 Cvar_SetValueQuick (&r_sky, !r_sky.integer);
1549         else if (options_cursor == optnum++)
1550                 Cvar_SetValueQuick (&gl_dither, !gl_dither.integer);
1551         else if (options_cursor == optnum++)
1552                 Cvar_SetValueQuick (&gl_texture_anisotropy, bound(1, gl_texture_anisotropy.integer + dir, gl_max_anisotropy));
1553         else if (options_cursor == optnum++)
1554                 Cvar_SetValueQuick (&slowmo, bound(0, slowmo.value + dir * 0.25, 5));
1555         else if (options_cursor == optnum++)
1556                 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 0.1, 1));
1557         else if (options_cursor == optnum++)
1558                 Cvar_SetValueQuick (&volume, bound(0, volume.value + dir * 0.1, 1));
1559         else if (options_cursor == optnum++)
1560                 Cvar_SetValueQuick (&snd_staticvolume, bound(0, snd_staticvolume.value + dir * 0.1, 1));
1561         else if (options_cursor == optnum++)
1562                 Cvar_SetValueQuick (&r_textshadow, !r_textshadow.integer);
1563         else if (options_cursor == optnum++)
1564                 Cvar_SetValueQuick (&crosshair, bound(0, crosshair.integer + dir, 6));
1565         else if (options_cursor == optnum++)
1566                 Cvar_SetValueQuick (&crosshair_size, bound(1, crosshair_size.value + dir, 5));
1567         else if (options_cursor == optnum++)
1568                 Cvar_SetValueQuick (&crosshair_static, !crosshair_static.integer);
1569         else if (options_cursor == optnum++)
1570                 Cvar_SetValueQuick (&showfps, !showfps.integer);
1571         else if (options_cursor == optnum++)
1572                 Cvar_SetValueQuick (&showtime, !showtime.integer);
1573         else if (options_cursor == optnum++)
1574                 Cvar_SetValueQuick (&showdate, !showdate.integer);
1575         else if (options_cursor == optnum++)
1576         {
1577                 if (cl_forwardspeed.value > 200)
1578                 {
1579                         Cvar_SetValueQuick (&cl_forwardspeed, 200);
1580                         Cvar_SetValueQuick (&cl_backspeed, 200);
1581                 }
1582                 else
1583                 {
1584                         Cvar_SetValueQuick (&cl_forwardspeed, 400);
1585                         Cvar_SetValueQuick (&cl_backspeed, 400);
1586                 }
1587         }
1588         else if (options_cursor == optnum++)
1589                 Cvar_SetValueQuick (&lookspring, !lookspring.integer);
1590         else if (options_cursor == optnum++)
1591                 Cvar_SetValueQuick (&lookstrafe, !lookstrafe.integer);
1592         else if (options_cursor == optnum++)
1593                 Cvar_SetValueQuick (&sensitivity, bound(1, sensitivity.value + dir * 0.5, 50));
1594         else if (options_cursor == optnum++)
1595                 Cvar_SetValueQuick (&freelook, !freelook.integer);
1596         else if (options_cursor == optnum++)
1597                 Cvar_SetValueQuick (&m_pitch, -m_pitch.value);
1598         else if (options_cursor == optnum++)
1599                 Cvar_SetValueQuick (&vid_mouse, !vid_mouse.integer);
1600 }
1601
1602 int optnum;
1603 int opty;
1604 int optcursor;
1605
1606 void M_Options_PrintCommand(char *s, int enabled)
1607 {
1608         if (opty >= 32)
1609         {
1610                 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1611                 M_ItemPrint(0, opty, s, enabled);
1612         }
1613         opty += 8;
1614         optnum++;
1615 }
1616
1617 void M_Options_PrintCheckbox(char *s, int enabled, int yes)
1618 {
1619         if (opty >= 32)
1620         {
1621                 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1622                 M_ItemPrint(0, opty, s, enabled);
1623                 M_DrawCheckbox(0 + (int)strlen(s) * 8 + 8, opty, yes);
1624         }
1625         opty += 8;
1626         optnum++;
1627 }
1628
1629 void M_Options_PrintSlider(char *s, int enabled, float value, float minvalue, float maxvalue)
1630 {
1631         if (opty >= 32)
1632         {
1633                 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1634                 M_ItemPrint(0, opty, s, enabled);
1635                 M_DrawSlider(0 + (int)strlen(s) * 8 + 8, opty, value, minvalue, maxvalue);
1636         }
1637         opty += 8;
1638         optnum++;
1639 }
1640
1641 void M_Options_Draw (void)
1642 {
1643         int visible;
1644         cachepic_t      *p;
1645
1646         M_Background(320, bound(200, 32 + OPTIONS_ITEMS * 8, vid_conheight.integer));
1647
1648         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1649         p = Draw_CachePic("gfx/p_option.lmp", false);
1650         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1651
1652         optnum = 0;
1653         optcursor = options_cursor;
1654         visible = (menu_height - 32) / 8;
1655         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_ITEMS - visible)) * 8;
1656
1657         M_Options_PrintCommand( "Customize controls", true);
1658         M_Options_PrintCommand( "     Go to console", true);
1659         M_Options_PrintCommand( " Reset to defaults", true);
1660         M_Options_PrintCommand( "             Video", true);
1661         M_Options_PrintCommand( "           Effects", true);
1662         M_Options_PrintCommand( "          Graphics", true);
1663         M_Options_PrintCommand( "     Color Control", true);
1664         M_Options_PrintSlider(  "  2D Screen Width ", true, vid_conwidth.value, 320, 2048);
1665         M_Options_PrintSlider(  "  2D Screen Height", true, vid_conheight.value, 240, 1536);
1666         M_Options_PrintSlider(  "     Console Speed", true, scr_conspeed.value, 0, 1000);
1667         M_Options_PrintSlider(  "     Console Alpha", true, scr_conalpha.value, 0, 1);
1668         M_Options_PrintSlider(  "Conback Brightness", true, scr_conbrightness.value, 0, 1);
1669         M_Options_PrintSlider(  "     Sbar Alpha BG", true, sbar_alpha_bg.value, 0, 1);
1670         M_Options_PrintSlider(  "     Sbar Alpha FG", true, sbar_alpha_fg.value, 0, 1);
1671         M_Options_PrintSlider(  "       Screen size", true, scr_viewsize.value, 30, 120);
1672         M_Options_PrintSlider(  "     Field of View", true, scr_fov.integer, 1, 170);
1673         M_Options_PrintCheckbox("  JPEG screenshots", jpeg_dll != NULL, scr_screenshot_jpeg.integer);
1674         M_Options_PrintSlider(  "      JPEG quality", jpeg_dll != NULL, scr_screenshot_jpeg_quality.value, 0, 1);
1675         M_Options_PrintCheckbox("               Sky", true, r_sky.integer);
1676         M_Options_PrintCheckbox("         Dithering", true, gl_dither.integer);
1677         M_Options_PrintSlider(  "Anisotropic Filter", gl_support_anisotropy, gl_texture_anisotropy.integer, 1, gl_max_anisotropy);
1678         M_Options_PrintSlider(  "        Game Speed", sv.active, slowmo.value, 0, 5);
1679         M_Options_PrintSlider(  "   CD Music Volume", cdaudioinitialized.integer, bgmvolume.value, 0, 1);
1680         M_Options_PrintSlider(  "      Sound Volume", snd_initialized.integer, volume.value, 0, 1);
1681         M_Options_PrintSlider(gamemode == GAME_GOODVSBAD2 ? "      Music Volume" : "    Ambient Volume", snd_initialized.integer, snd_staticvolume.value, 0, 1);
1682         M_Options_PrintCheckbox("       Text Shadow", true, r_textshadow.integer);
1683         M_Options_PrintSlider(  "         Crosshair", true, crosshair.value, 0, 5);
1684         M_Options_PrintSlider(  "    Crosshair Size", true, crosshair_size.value, 1, 5);
1685         M_Options_PrintCheckbox("  Static Crosshair", true, crosshair_static.integer);
1686         M_Options_PrintCheckbox("    Show Framerate", true, showfps.integer);
1687         M_Options_PrintCheckbox("         Show Time", true, showtime.integer);
1688         M_Options_PrintCheckbox("         Show Date", true, showdate.integer);
1689         M_Options_PrintCheckbox("        Always Run", true, cl_forwardspeed.value > 200);
1690         M_Options_PrintCheckbox("        Lookspring", true, lookspring.integer);
1691         M_Options_PrintCheckbox("        Lookstrafe", true, lookstrafe.integer);
1692         M_Options_PrintSlider(  "       Mouse Speed", true, sensitivity.value, 1, 50);
1693         M_Options_PrintCheckbox("        Mouse Look", true, freelook.integer);
1694         M_Options_PrintCheckbox("      Invert Mouse", true, m_pitch.value < 0);
1695         M_Options_PrintCheckbox("         Use Mouse", true, vid_mouse.integer);
1696 }
1697
1698
1699 void M_Options_Key (int k, char ascii)
1700 {
1701         switch (k)
1702         {
1703         case K_ESCAPE:
1704                 M_Menu_Main_f ();
1705                 break;
1706
1707         case K_ENTER:
1708                 m_entersound = true;
1709                 switch (options_cursor)
1710                 {
1711                 case 0:
1712                         M_Menu_Keys_f ();
1713                         break;
1714                 case 1:
1715                         m_state = m_none;
1716                         key_dest = key_game;
1717                         Con_ToggleConsole_f ();
1718                         break;
1719                 case 2:
1720                         M_Menu_Reset_f ();
1721                         break;
1722                 case 3:
1723                         M_Menu_Video_f ();
1724                         break;
1725                 case 4:
1726                         M_Menu_Options_Effects_f ();
1727                         break;
1728                 case 5:
1729                         M_Menu_Options_Graphics_f ();
1730                         break;
1731                 case 6:
1732                         M_Menu_Options_ColorControl_f ();
1733                         break;
1734                 default:
1735                         M_Menu_Options_AdjustSliders (1);
1736                         break;
1737                 }
1738                 return;
1739
1740         case K_UPARROW:
1741                 S_LocalSound ("sound/misc/menu1.wav");
1742                 options_cursor--;
1743                 if (options_cursor < 0)
1744                         options_cursor = OPTIONS_ITEMS-1;
1745                 break;
1746
1747         case K_DOWNARROW:
1748                 S_LocalSound ("sound/misc/menu1.wav");
1749                 options_cursor++;
1750                 if (options_cursor >= OPTIONS_ITEMS)
1751                         options_cursor = 0;
1752                 break;
1753
1754         case K_LEFTARROW:
1755                 M_Menu_Options_AdjustSliders (-1);
1756                 break;
1757
1758         case K_RIGHTARROW:
1759                 M_Menu_Options_AdjustSliders (1);
1760                 break;
1761         }
1762 }
1763
1764 #define OPTIONS_EFFECTS_ITEMS   37
1765
1766 int options_effects_cursor;
1767
1768 void M_Menu_Options_Effects_f (void)
1769 {
1770         key_dest = key_menu;
1771         m_state = m_options_effects;
1772         m_entersound = true;
1773 }
1774
1775
1776 extern cvar_t r_detailtextures;
1777 extern cvar_t cl_stainmaps;
1778 extern cvar_t cl_stainmaps_clearonload;
1779 extern cvar_t r_explosionclip;
1780 extern cvar_t r_modellights;
1781 extern cvar_t r_coronas;
1782 extern cvar_t gl_flashblend;
1783 extern cvar_t cl_beams_polygon;
1784 extern cvar_t cl_beams_relative;
1785 extern cvar_t cl_beams_lightatend;
1786 extern cvar_t r_lightningbeam_thickness;
1787 extern cvar_t r_lightningbeam_scroll;
1788 extern cvar_t r_lightningbeam_repeatdistance;
1789 extern cvar_t r_lightningbeam_color_red;
1790 extern cvar_t r_lightningbeam_color_green;
1791 extern cvar_t r_lightningbeam_color_blue;
1792 extern cvar_t r_lightningbeam_qmbtexture;
1793
1794 void M_Menu_Options_Effects_AdjustSliders (int dir)
1795 {
1796         int optnum;
1797         S_LocalSound ("sound/misc/menu3.wav");
1798
1799         optnum = 0;
1800              if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_modellights, bound(0, r_modellights.value + dir, 8));
1801         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_coronas, bound(0, r_coronas.value + dir * 0.125, 4));
1802         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&gl_flashblend, !gl_flashblend.integer);
1803         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles, !cl_particles.integer);
1804         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_quality, bound(1, cl_particles_quality.value + dir * 0.5, 4));
1805         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_explosions_shell, !cl_particles_explosions_shell.integer);
1806         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_explosionclip, !r_explosionclip.integer);
1807         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_stainmaps, !cl_stainmaps.integer);
1808         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_stainmaps_clearonload, !cl_stainmaps_clearonload.integer);
1809         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_decals, !cl_decals.integer);
1810         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_detailtextures, !r_detailtextures.integer);
1811         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_bulletimpacts, !cl_particles_bulletimpacts.integer);
1812         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_smoke, !cl_particles_smoke.integer);
1813         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_sparks, !cl_particles_sparks.integer);
1814         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_bubbles, !cl_particles_bubbles.integer);
1815         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood, !cl_particles_blood.integer);
1816         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood_alpha, bound(0.2, cl_particles_blood_alpha.value + dir * 0.1, 1));
1817         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood_bloodhack, !cl_particles_blood_bloodhack.integer);
1818         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_polygons, !cl_beams_polygons.integer);
1819         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_relative, !cl_beams_relative.integer);
1820         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_lightatend, !cl_beams_lightatend.integer);
1821         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_thickness, bound(1, r_lightningbeam_thickness.integer + dir, 10));
1822         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_scroll, bound(0, r_lightningbeam_scroll.integer + dir, 10));
1823         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_repeatdistance, bound(64, r_lightningbeam_repeatdistance.integer + dir * 64, 1024));
1824         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_red, bound(0, r_lightningbeam_color_red.value + dir * 0.1, 1));
1825         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_green, bound(0, r_lightningbeam_color_green.value + dir * 0.1, 1));
1826         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_blue, bound(0, r_lightningbeam_color_blue.value + dir * 0.1, 1));
1827         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_qmbtexture, !r_lightningbeam_qmbtexture.integer);
1828         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lerpmodels, !r_lerpmodels.integer);
1829         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lerpsprites, !r_lerpsprites.integer);
1830         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&gl_polyblend, bound(0, gl_polyblend.value + dir * 0.1, 1));
1831         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_skyscroll1, bound(-8, r_skyscroll1.value + dir * 0.1, 8));
1832         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_skyscroll2, bound(-8, r_skyscroll2.value + dir * 0.1, 8));
1833         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_waterwarp, bound(0, r_waterwarp.value + dir * 0.1, 1));
1834         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_wateralpha, bound(0, r_wateralpha.value + dir * 0.1, 1));
1835         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_waterscroll, bound(0, r_waterscroll.value + dir * 0.5, 10));
1836         else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_watershader, bound(0, r_watershader.value + dir * 0.25, 10));
1837 }
1838
1839 void M_Options_Effects_Draw (void)
1840 {
1841         int visible;
1842         cachepic_t      *p;
1843
1844         M_Background(320, bound(200, 32 + OPTIONS_EFFECTS_ITEMS * 8, vid_conheight.integer));
1845
1846         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1847         p = Draw_CachePic("gfx/p_option.lmp", false);
1848         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1849
1850         optcursor = options_effects_cursor;
1851         optnum = 0;
1852         visible = (menu_height - 32) / 8;
1853         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_EFFECTS_ITEMS - visible)) * 8;
1854
1855         M_Options_PrintSlider(  "      Lights Per Model", true, r_modellights.value, 0, 8);
1856         M_Options_PrintSlider(  "      Corona Intensity", true, r_coronas.value, 0, 4);
1857         M_Options_PrintCheckbox("      Use Only Coronas", true, gl_flashblend.integer);
1858         M_Options_PrintCheckbox("             Particles", true, cl_particles.integer);
1859         M_Options_PrintSlider(  "     Particles Quality", true, cl_particles_quality.value, 1, 4);
1860         M_Options_PrintCheckbox("       Explosion Shell", true, cl_particles_explosions_shell.integer);
1861         M_Options_PrintCheckbox("  Explosion Shell Clip", true, r_explosionclip.integer);
1862         M_Options_PrintCheckbox("             Stainmaps", true, cl_stainmaps.integer);
1863         M_Options_PrintCheckbox("Onload Clear Stainmaps", true, cl_stainmaps_clearonload.integer);
1864         M_Options_PrintCheckbox("                Decals", true, cl_decals.integer);
1865         M_Options_PrintCheckbox("      Detail Texturing", true, r_detailtextures.integer);
1866         M_Options_PrintCheckbox("        Bullet Impacts", true, cl_particles_bulletimpacts.integer);
1867         M_Options_PrintCheckbox("                 Smoke", true, cl_particles_smoke.integer);
1868         M_Options_PrintCheckbox("                Sparks", true, cl_particles_sparks.integer);
1869         M_Options_PrintCheckbox("               Bubbles", true, cl_particles_bubbles.integer);
1870         M_Options_PrintCheckbox("                 Blood", true, cl_particles_blood.integer);
1871         M_Options_PrintSlider(  "         Blood Opacity", true, cl_particles_blood_alpha.value, 0.2, 1);
1872         M_Options_PrintCheckbox("Force New Blood Effect", true, cl_particles_blood_bloodhack.integer);
1873         M_Options_PrintCheckbox("    Lightning Polygons", true, cl_beams_polygons.integer);
1874         M_Options_PrintCheckbox("Lightning Smooth Sweep", true, cl_beams_relative.integer);
1875         M_Options_PrintCheckbox("   Lightning End Light", true, cl_beams_lightatend.integer);
1876         M_Options_PrintSlider(  "   Lightning Thickness", cl_beams_polygons.integer, r_lightningbeam_thickness.integer, 1, 10);
1877         M_Options_PrintSlider(  "      Lightning Scroll", cl_beams_polygons.integer, r_lightningbeam_scroll.integer, 0, 10);
1878         M_Options_PrintSlider(  " Lightning Repeat Dist", cl_beams_polygons.integer, r_lightningbeam_repeatdistance.integer, 64, 1024);
1879         M_Options_PrintSlider(  "   Lightning Color Red", cl_beams_polygons.integer, r_lightningbeam_color_red.value, 0, 1);
1880         M_Options_PrintSlider(  " Lightning Color Green", cl_beams_polygons.integer, r_lightningbeam_color_green.value, 0, 1);
1881         M_Options_PrintSlider(  "  Lightning Color Blue", cl_beams_polygons.integer, r_lightningbeam_color_blue.value, 0, 1);
1882         M_Options_PrintCheckbox(" Lightning QMB Texture", cl_beams_polygons.integer, r_lightningbeam_qmbtexture.integer);
1883         M_Options_PrintCheckbox("   Model Interpolation", true, r_lerpmodels.integer);
1884         M_Options_PrintCheckbox("  Sprite Interpolation", true, r_lerpsprites.integer);
1885         M_Options_PrintSlider(  "            View Blend", true, gl_polyblend.value, 0, 1);
1886         M_Options_PrintSlider(  "Upper Sky Scroll Speed", true, r_skyscroll1.value, -8, 8);
1887         M_Options_PrintSlider(  "Lower Sky Scroll Speed", true, r_skyscroll2.value, -8, 8);
1888         M_Options_PrintSlider(  "  Underwater View Warp", true, r_waterwarp.value, 0, 1);
1889         M_Options_PrintSlider(  " Water Alpha (opacity)", true, r_wateralpha.value, 0, 1);
1890         M_Options_PrintSlider(  "        Water Movement", true, r_waterscroll.value, 0, 10);
1891         M_Options_PrintSlider(  " GeForce3 Water Shader", true, r_watershader.value, 0, 10);
1892 }
1893
1894
1895 void M_Options_Effects_Key (int k, char ascii)
1896 {
1897         switch (k)
1898         {
1899         case K_ESCAPE:
1900                 M_Menu_Options_f ();
1901                 break;
1902
1903         case K_ENTER:
1904                 M_Menu_Options_Effects_AdjustSliders (1);
1905                 break;
1906
1907         case K_UPARROW:
1908                 S_LocalSound ("sound/misc/menu1.wav");
1909                 options_effects_cursor--;
1910                 if (options_effects_cursor < 0)
1911                         options_effects_cursor = OPTIONS_EFFECTS_ITEMS-1;
1912                 break;
1913
1914         case K_DOWNARROW:
1915                 S_LocalSound ("sound/misc/menu1.wav");
1916                 options_effects_cursor++;
1917                 if (options_effects_cursor >= OPTIONS_EFFECTS_ITEMS)
1918                         options_effects_cursor = 0;
1919                 break;
1920
1921         case K_LEFTARROW:
1922                 M_Menu_Options_Effects_AdjustSliders (-1);
1923                 break;
1924
1925         case K_RIGHTARROW:
1926                 M_Menu_Options_Effects_AdjustSliders (1);
1927                 break;
1928         }
1929 }
1930
1931
1932 #define OPTIONS_GRAPHICS_ITEMS  14
1933
1934 int options_graphics_cursor;
1935
1936 void M_Menu_Options_Graphics_f (void)
1937 {
1938         key_dest = key_menu;
1939         m_state = m_options_graphics;
1940         m_entersound = true;
1941 }
1942
1943 extern cvar_t r_shadow_gloss;
1944 extern cvar_t r_shadow_realtime_dlight;
1945 extern cvar_t r_shadow_realtime_dlight_shadows;
1946 extern cvar_t r_shadow_realtime_world;
1947 extern cvar_t r_shadow_realtime_world_dlightshadows;
1948 extern cvar_t r_shadow_realtime_world_lightmaps;
1949 extern cvar_t r_shadow_realtime_world_shadows;
1950 extern cvar_t r_bloom;
1951 extern cvar_t r_bloom_intensity;
1952 extern cvar_t r_bloom_power;
1953 extern cvar_t r_bloom_blur;
1954 extern cvar_t r_bloom_resolution;
1955 extern cvar_t gl_picmip;
1956
1957 void M_Menu_Options_Graphics_AdjustSliders (int dir)
1958 {
1959         int optnum;
1960         S_LocalSound ("sound/misc/menu3.wav");
1961
1962         optnum = 0;
1963
1964                  if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_gloss,                                                  bound(0, r_shadow_gloss.integer + dir, 2));
1965         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_dlight,                            !r_shadow_realtime_dlight.integer);
1966         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_dlight_shadows,            !r_shadow_realtime_dlight_shadows.integer);
1967         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world,                                     !r_shadow_realtime_world.integer);
1968         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_dlightshadows,       !r_shadow_realtime_world_dlightshadows.integer);
1969         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_lightmaps,           bound(0, r_shadow_realtime_world_lightmaps.value + dir * 0.1, 1));
1970         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_shadows,                     !r_shadow_realtime_world_shadows.integer);
1971         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom,                                 !r_bloom.integer);
1972         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_intensity,                       bound(1, r_bloom_intensity.value + dir * 1, 16));
1973         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_power,                           bound(1, r_bloom_power.value + dir * 1, 16));
1974         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_blur,                            bound(1, r_bloom_blur.value + dir * 1, 16));
1975         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_resolution,                      bound(64, r_bloom_resolution.value + dir * 64, 2048));
1976         else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&gl_picmip,                               bound(0, gl_picmip.value - dir, 3));
1977         else if (options_graphics_cursor == optnum++) Cbuf_AddText ("r_restart\n");
1978 }
1979
1980
1981 void M_Options_Graphics_Draw (void)
1982 {
1983         int visible;
1984         cachepic_t      *p;
1985
1986         M_Background(320, bound(200, 32 + OPTIONS_GRAPHICS_ITEMS * 8, vid_conheight.integer));
1987
1988         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1989         p = Draw_CachePic("gfx/p_option.lmp", false);
1990         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1991
1992         optcursor = options_graphics_cursor;
1993         optnum = 0;
1994         visible = (menu_height - 32) / 8;
1995         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_GRAPHICS_ITEMS - visible)) * 8;
1996
1997         M_Options_PrintSlider(  "             Gloss Mode", true, r_shadow_gloss.integer, 0, 2);
1998         M_Options_PrintCheckbox("             RT DLights", true, r_shadow_realtime_dlight.integer);
1999         M_Options_PrintCheckbox("      RT DLight Shadows", true, r_shadow_realtime_dlight_shadows.integer);
2000         M_Options_PrintCheckbox("               RT World", true, r_shadow_realtime_world.integer);
2001         M_Options_PrintCheckbox("RT World DLight Shadows", true, r_shadow_realtime_world_dlightshadows.integer);
2002         M_Options_PrintSlider(  "     RT World Lightmaps", true, r_shadow_realtime_world_lightmaps.value, 0, 1);
2003         M_Options_PrintCheckbox("        RT World Shadow", true, r_shadow_realtime_world_shadows.integer);
2004         M_Options_PrintCheckbox("           Bloom Effect", true, r_bloom.integer);
2005         M_Options_PrintSlider(  "        Bloom Intensity", true, r_bloom_intensity.value, 1, 16);
2006         M_Options_PrintSlider(  "            Bloom Power", true, r_bloom_power.value, 1, 16);
2007         M_Options_PrintSlider(  "             Bloom Blur", true, r_bloom_blur.value, 1, 16);
2008         M_Options_PrintSlider(  "       Bloom Resolution", true, r_bloom_resolution.value, 64, 2048);
2009         M_Options_PrintSlider(  "        Texture Quality", true, gl_picmip.value, 3, 0);
2010         M_Options_PrintCommand( "       Restart Renderer", true);
2011 }
2012
2013
2014 void M_Options_Graphics_Key (int k, char ascii)
2015 {
2016         switch (k)
2017         {
2018         case K_ESCAPE:
2019                 M_Menu_Options_f ();
2020                 break;
2021
2022         case K_ENTER:
2023                 M_Menu_Options_Graphics_AdjustSliders (1);
2024                 break;
2025
2026         case K_UPARROW:
2027                 S_LocalSound ("sound/misc/menu1.wav");
2028                 options_graphics_cursor--;
2029                 if (options_graphics_cursor < 0)
2030                         options_graphics_cursor = OPTIONS_GRAPHICS_ITEMS-1;
2031                 break;
2032
2033         case K_DOWNARROW:
2034                 S_LocalSound ("sound/misc/menu1.wav");
2035                 options_graphics_cursor++;
2036                 if (options_graphics_cursor >= OPTIONS_GRAPHICS_ITEMS)
2037                         options_graphics_cursor = 0;
2038                 break;
2039
2040         case K_LEFTARROW:
2041                 M_Menu_Options_Graphics_AdjustSliders (-1);
2042                 break;
2043
2044         case K_RIGHTARROW:
2045                 M_Menu_Options_Graphics_AdjustSliders (1);
2046                 break;
2047         }
2048 }
2049
2050
2051 #define OPTIONS_COLORCONTROL_ITEMS      18
2052
2053 int             options_colorcontrol_cursor;
2054
2055 // intensity value to match up to 50% dither to 'correct' quake
2056 cvar_t menu_options_colorcontrol_correctionvalue = {0, "menu_options_colorcontrol_correctionvalue", "0.25"};
2057
2058 void M_Menu_Options_ColorControl_f (void)
2059 {
2060         key_dest = key_menu;
2061         m_state = m_options_colorcontrol;
2062         m_entersound = true;
2063 }
2064
2065
2066 void M_Menu_Options_ColorControl_AdjustSliders (int dir)
2067 {
2068         int optnum;
2069         float f;
2070         S_LocalSound ("sound/misc/menu3.wav");
2071
2072         optnum = 1;
2073         if (options_colorcontrol_cursor == optnum++)
2074                 Cvar_SetValueQuick (&v_hwgamma, !v_hwgamma.integer);
2075         else if (options_colorcontrol_cursor == optnum++)
2076         {
2077                 Cvar_SetValueQuick (&v_color_enable, 0);
2078                 Cvar_SetValueQuick (&v_gamma, bound(1, v_gamma.value + dir * 0.125, 5));
2079         }
2080         else if (options_colorcontrol_cursor == optnum++)
2081         {
2082                 Cvar_SetValueQuick (&v_color_enable, 0);
2083                 Cvar_SetValueQuick (&v_contrast, bound(1, v_contrast.value + dir * 0.125, 5));
2084         }
2085         else if (options_colorcontrol_cursor == optnum++)
2086         {
2087                 Cvar_SetValueQuick (&v_color_enable, 0);
2088                 Cvar_SetValueQuick (&v_brightness, bound(0, v_brightness.value + dir * 0.05, 0.8));
2089         }
2090         else if (options_colorcontrol_cursor == optnum++)
2091         {
2092                 Cvar_SetValueQuick (&v_color_enable, !v_color_enable.integer);
2093         }
2094         else if (options_colorcontrol_cursor == optnum++)
2095         {
2096                 Cvar_SetValueQuick (&v_color_enable, 1);
2097                 Cvar_SetValueQuick (&v_color_black_r, bound(0, v_color_black_r.value + dir * 0.0125, 0.8));
2098         }
2099         else if (options_colorcontrol_cursor == optnum++)
2100         {
2101                 Cvar_SetValueQuick (&v_color_enable, 1);
2102                 Cvar_SetValueQuick (&v_color_black_g, bound(0, v_color_black_g.value + dir * 0.0125, 0.8));
2103         }
2104         else if (options_colorcontrol_cursor == optnum++)
2105         {
2106                 Cvar_SetValueQuick (&v_color_enable, 1);
2107                 Cvar_SetValueQuick (&v_color_black_b, bound(0, v_color_black_b.value + dir * 0.0125, 0.8));
2108         }
2109         else if (options_colorcontrol_cursor == optnum++)
2110         {
2111                 Cvar_SetValueQuick (&v_color_enable, 1);
2112                 f = bound(0, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3 + dir * 0.0125, 0.8);
2113                 Cvar_SetValueQuick (&v_color_black_r, f);
2114                 Cvar_SetValueQuick (&v_color_black_g, f);
2115                 Cvar_SetValueQuick (&v_color_black_b, f);
2116         }
2117         else if (options_colorcontrol_cursor == optnum++)
2118         {
2119                 Cvar_SetValueQuick (&v_color_enable, 1);
2120                 Cvar_SetValueQuick (&v_color_grey_r, bound(0, v_color_grey_r.value + dir * 0.0125, 0.95));
2121         }
2122         else if (options_colorcontrol_cursor == optnum++)
2123         {
2124                 Cvar_SetValueQuick (&v_color_enable, 1);
2125                 Cvar_SetValueQuick (&v_color_grey_g, bound(0, v_color_grey_g.value + dir * 0.0125, 0.95));
2126         }
2127         else if (options_colorcontrol_cursor == optnum++)
2128         {
2129                 Cvar_SetValueQuick (&v_color_enable, 1);
2130                 Cvar_SetValueQuick (&v_color_grey_b, bound(0, v_color_grey_b.value + dir * 0.0125, 0.95));
2131         }
2132         else if (options_colorcontrol_cursor == optnum++)
2133         {
2134                 Cvar_SetValueQuick (&v_color_enable, 1);
2135                 f = bound(0, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3 + dir * 0.0125, 0.95);
2136                 Cvar_SetValueQuick (&v_color_grey_r, f);
2137                 Cvar_SetValueQuick (&v_color_grey_g, f);
2138                 Cvar_SetValueQuick (&v_color_grey_b, f);
2139         }
2140         else if (options_colorcontrol_cursor == optnum++)
2141         {
2142                 Cvar_SetValueQuick (&v_color_enable, 1);
2143                 Cvar_SetValueQuick (&v_color_white_r, bound(1, v_color_white_r.value + dir * 0.125, 5));
2144         }
2145         else if (options_colorcontrol_cursor == optnum++)
2146         {
2147                 Cvar_SetValueQuick (&v_color_enable, 1);
2148                 Cvar_SetValueQuick (&v_color_white_g, bound(1, v_color_white_g.value + dir * 0.125, 5));
2149         }
2150         else if (options_colorcontrol_cursor == optnum++)
2151         {
2152                 Cvar_SetValueQuick (&v_color_enable, 1);
2153                 Cvar_SetValueQuick (&v_color_white_b, bound(1, v_color_white_b.value + dir * 0.125, 5));
2154         }
2155         else if (options_colorcontrol_cursor == optnum++)
2156         {
2157                 Cvar_SetValueQuick (&v_color_enable, 1);
2158                 f = bound(1, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3 + dir * 0.125, 5);
2159                 Cvar_SetValueQuick (&v_color_white_r, f);
2160                 Cvar_SetValueQuick (&v_color_white_g, f);
2161                 Cvar_SetValueQuick (&v_color_white_b, f);
2162         }
2163 }
2164
2165 void M_Options_ColorControl_Draw (void)
2166 {
2167         int visible;
2168         float x, c, s, t, u, v;
2169         cachepic_t      *p;
2170
2171         M_Background(320, 256);
2172
2173         M_DrawPic(16, 4, "gfx/qplaque.lmp");
2174         p = Draw_CachePic("gfx/p_option.lmp", false);
2175         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
2176
2177         optcursor = options_colorcontrol_cursor;
2178         optnum = 0;
2179         visible = (menu_height - 32) / 8;
2180         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_COLORCONTROL_ITEMS - visible)) * 8;
2181
2182         M_Options_PrintCommand( "     Reset to defaults", true);
2183         M_Options_PrintCheckbox("Hardware Gamma Control", vid_hardwaregammasupported.integer, v_hwgamma.integer);
2184         M_Options_PrintSlider(  "                 Gamma", !v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_gamma.value, 1, 5);
2185         M_Options_PrintSlider(  "              Contrast", !v_color_enable.integer, v_contrast.value, 1, 5);
2186         M_Options_PrintSlider(  "            Brightness", !v_color_enable.integer, v_brightness.value, 0, 0.8);
2187         M_Options_PrintCheckbox("  Color Level Controls", true, v_color_enable.integer);
2188         M_Options_PrintSlider(  "          Black: Red  ", v_color_enable.integer, v_color_black_r.value, 0, 0.8);
2189         M_Options_PrintSlider(  "          Black: Green", v_color_enable.integer, v_color_black_g.value, 0, 0.8);
2190         M_Options_PrintSlider(  "          Black: Blue ", v_color_enable.integer, v_color_black_b.value, 0, 0.8);
2191         M_Options_PrintSlider(  "          Black: Grey ", v_color_enable.integer, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3, 0, 0.8);
2192         M_Options_PrintSlider(  "           Grey: Red  ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_r.value, 0, 0.95);
2193         M_Options_PrintSlider(  "           Grey: Green", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_g.value, 0, 0.95);
2194         M_Options_PrintSlider(  "           Grey: Blue ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_b.value, 0, 0.95);
2195         M_Options_PrintSlider(  "           Grey: Grey ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3, 0, 0.95);
2196         M_Options_PrintSlider(  "          White: Red  ", v_color_enable.integer, v_color_white_r.value, 1, 5);
2197         M_Options_PrintSlider(  "          White: Green", v_color_enable.integer, v_color_white_g.value, 1, 5);
2198         M_Options_PrintSlider(  "          White: Blue ", v_color_enable.integer, v_color_white_b.value, 1, 5);
2199         M_Options_PrintSlider(  "          White: Grey ", v_color_enable.integer, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3, 1, 5);
2200
2201         opty += 4;
2202         DrawQ_Fill(menu_x, menu_y + opty, 320, 4 + 64 + 8 + 64 + 4, 0, 0, 0, 1, 0);opty += 4;
2203         s = (float) 312 / 2 * vid.width / vid_conwidth.integer;
2204         t = (float) 4 / 2 * vid.height / vid_conheight.integer;
2205         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);opty += 4;
2206         DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL                                , 312, 4, 0,0, 0,0,0,1, 1,0, 1,0,0,1, 0,1, 0,0,0,1, 1,1, 1,0,0,1, 0);opty += 4;
2207         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);opty += 4;
2208         DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL                                , 312, 4, 0,0, 0,0,0,1, 1,0, 0,1,0,1, 0,1, 0,0,0,1, 1,1, 0,1,0,1, 0);opty += 4;
2209         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);opty += 4;
2210         DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL                                , 312, 4, 0,0, 0,0,0,1, 1,0, 0,0,1,1, 0,1, 0,0,0,1, 1,1, 0,0,1,1, 0);opty += 4;
2211         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);opty += 4;
2212         DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL                                , 312, 4, 0,0, 0,0,0,1, 1,0, 1,1,1,1, 0,1, 0,0,0,1, 1,1, 1,1,1,1, 0);opty += 4;
2213
2214         c = menu_options_colorcontrol_correctionvalue.value; // intensity value that should be matched up to a 50% dither to 'correct' quake
2215         s = (float) 48 / 2 * vid.width / vid_conwidth.integer;
2216         t = (float) 48 / 2 * vid.height / vid_conheight.integer;
2217         u = s * 0.5;
2218         v = t * 0.5;
2219         opty += 8;
2220         x = 4;
2221         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, c, 0, 0, 1, 0);
2222         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);
2223         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,0,0,1, u,0, 1,0,0,1, 0,v, 1,0,0,1, u,v, 1,0,0,1, 0);
2224         x += 80;
2225         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, 0, c, 0, 1, 0);
2226         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);
2227         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,1,0,1, u,0, 0,1,0,1, 0,v, 0,1,0,1, u,v, 0,1,0,1, 0);
2228         x += 80;
2229         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, 0, 0, c, 1, 0);
2230         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);
2231         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,0,1,1, u,0, 0,0,1,1, 0,v, 0,0,1,1, u,v, 0,0,1,1, 0);
2232         x += 80;
2233         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, c, c, c, 1, 0);
2234         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);
2235         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,1,1,1, u,0, 1,1,1,1, 0,v, 1,1,1,1, u,v, 1,1,1,1, 0);
2236 }
2237
2238
2239 void M_Options_ColorControl_Key (int k, char ascii)
2240 {
2241         switch (k)
2242         {
2243         case K_ESCAPE:
2244                 M_Menu_Options_f ();
2245                 break;
2246
2247         case K_ENTER:
2248                 m_entersound = true;
2249                 switch (options_colorcontrol_cursor)
2250                 {
2251                 case 0:
2252                         Cvar_SetValueQuick(&v_hwgamma, 1);
2253                         Cvar_SetValueQuick(&v_gamma, 1);
2254                         Cvar_SetValueQuick(&v_contrast, 1);
2255                         Cvar_SetValueQuick(&v_brightness, 0);
2256                         Cvar_SetValueQuick(&v_color_enable, 0);
2257                         Cvar_SetValueQuick(&v_color_black_r, 0);
2258                         Cvar_SetValueQuick(&v_color_black_g, 0);
2259                         Cvar_SetValueQuick(&v_color_black_b, 0);
2260                         Cvar_SetValueQuick(&v_color_grey_r, 0);
2261                         Cvar_SetValueQuick(&v_color_grey_g, 0);
2262                         Cvar_SetValueQuick(&v_color_grey_b, 0);
2263                         Cvar_SetValueQuick(&v_color_white_r, 1);
2264                         Cvar_SetValueQuick(&v_color_white_g, 1);
2265                         Cvar_SetValueQuick(&v_color_white_b, 1);
2266                         break;
2267                 default:
2268                         M_Menu_Options_ColorControl_AdjustSliders (1);
2269                         break;
2270                 }
2271                 return;
2272
2273         case K_UPARROW:
2274                 S_LocalSound ("sound/misc/menu1.wav");
2275                 options_colorcontrol_cursor--;
2276                 if (options_colorcontrol_cursor < 0)
2277                         options_colorcontrol_cursor = OPTIONS_COLORCONTROL_ITEMS-1;
2278                 break;
2279
2280         case K_DOWNARROW:
2281                 S_LocalSound ("sound/misc/menu1.wav");
2282                 options_colorcontrol_cursor++;
2283                 if (options_colorcontrol_cursor >= OPTIONS_COLORCONTROL_ITEMS)
2284                         options_colorcontrol_cursor = 0;
2285                 break;
2286
2287         case K_LEFTARROW:
2288                 M_Menu_Options_ColorControl_AdjustSliders (-1);
2289                 break;
2290
2291         case K_RIGHTARROW:
2292                 M_Menu_Options_ColorControl_AdjustSliders (1);
2293                 break;
2294         }
2295 }
2296
2297
2298 //=============================================================================
2299 /* KEYS MENU */
2300
2301 char *quakebindnames[][2] =
2302 {
2303 {"+attack",             "attack"},
2304 {"impulse 10",          "next weapon"},
2305 {"impulse 12",          "previous weapon"},
2306 {"+jump",                       "jump / swim up"},
2307 {"+forward",            "walk forward"},
2308 {"+back",                       "backpedal"},
2309 {"+left",                       "turn left"},
2310 {"+right",                      "turn right"},
2311 {"+speed",                      "run"},
2312 {"+moveleft",           "step left"},
2313 {"+moveright",          "step right"},
2314 {"+strafe",             "sidestep"},
2315 {"+lookup",             "look up"},
2316 {"+lookdown",           "look down"},
2317 {"centerview",          "center view"},
2318 {"+mlook",                      "mouse look"},
2319 {"+klook",                      "keyboard look"},
2320 {"+moveup",                     "swim up"},
2321 {"+movedown",           "swim down"}
2322 };
2323
2324 char *transfusionbindnames[][2] =
2325 {
2326 {"",                            "Movement"},            // Movement commands
2327 {"+forward",            "walk forward"},
2328 {"+back",                       "backpedal"},
2329 {"+left",                       "turn left"},
2330 {"+right",                      "turn right"},
2331 {"+moveleft",           "step left"},
2332 {"+moveright",          "step right"},
2333 {"+jump",                       "jump / swim up"},
2334 {"+movedown",           "swim down"},
2335 {"",                            "Combat"},                      // Combat commands
2336 {"impulse 1",           "Pitch Fork"},
2337 {"impulse 2",           "Flare Gun"},
2338 {"impulse 3",           "Shotgun"},
2339 {"impulse 4",           "Machine Gun"},
2340 {"impulse 5",           "Incinerator"},
2341 {"impulse 6",           "Bombs (TNT)"},
2342 {"impulse 35",          "Proximity Bomb"},
2343 {"impulse 36",          "Remote Detonator"},
2344 {"impulse 7",           "Aerosol Can"},
2345 {"impulse 8",           "Tesla Cannon"},
2346 {"impulse 9",           "Life Leech"},
2347 {"impulse 10",          "Voodoo Doll"},
2348 {"impulse 21",          "next weapon"},
2349 {"impulse 22",          "previous weapon"},
2350 {"+attack",             "attack"},
2351 {"+button3",            "altfire"},
2352 {"",                            "Inventory"},           // Inventory commands
2353 {"impulse 40",          "Dr.'s Bag"},
2354 {"impulse 41",          "Crystal Ball"},
2355 {"impulse 42",          "Beast Vision"},
2356 {"impulse 43",          "Jump Boots"},
2357 {"impulse 23",          "next item"},
2358 {"impulse 24",          "previous item"},
2359 {"impulse 25",          "use item"},
2360 {"",                            "Misc"},                        // Misc commands
2361 {"+button4",            "use"},
2362 {"impulse 50",          "add bot (red)"},
2363 {"impulse 51",          "add bot (blue)"},
2364 {"impulse 52",          "kick a bot"},
2365 {"impulse 26",          "next armor type"},
2366 {"impulse 27",          "identify player"},
2367 {"impulse 55",          "voting menu"},
2368 {"impulse 56",          "observer mode"},
2369 {"",                            "Taunts"},            // Taunts
2370 {"impulse 70",          "taunt 0"},
2371 {"impulse 71",          "taunt 1"},
2372 {"impulse 72",          "taunt 2"},
2373 {"impulse 73",          "taunt 3"},
2374 {"impulse 74",          "taunt 4"},
2375 {"impulse 75",          "taunt 5"},
2376 {"impulse 76",          "taunt 6"},
2377 {"impulse 77",          "taunt 7"},
2378 {"impulse 78",          "taunt 8"},
2379 {"impulse 79",          "taunt 9"}
2380 };
2381
2382 char *goodvsbad2bindnames[][2] =
2383 {
2384 {"impulse 69",          "Power 1"},
2385 {"impulse 70",          "Power 2"},
2386 {"impulse 71",          "Power 3"},
2387 {"+jump",                       "jump / swim up"},
2388 {"+forward",            "walk forward"},
2389 {"+back",                       "backpedal"},
2390 {"+left",                       "turn left"},
2391 {"+right",                      "turn right"},
2392 {"+speed",                      "run"},
2393 {"+moveleft",           "step left"},
2394 {"+moveright",          "step right"},
2395 {"+strafe",             "sidestep"},
2396 {"+lookup",             "look up"},
2397 {"+lookdown",           "look down"},
2398 {"centerview",          "center view"},
2399 {"+mlook",                      "mouse look"},
2400 {"kill",                        "kill yourself"},
2401 {"+moveup",                     "swim up"},
2402 {"+movedown",           "swim down"}
2403 };
2404
2405 int numcommands;
2406 char *(*bindnames)[2];
2407
2408 /*
2409 typedef struct binditem_s
2410 {
2411         char *command, *description;
2412         struct binditem_s *next;
2413 }
2414 binditem_t;
2415
2416 typedef struct bindcategory_s
2417 {
2418         char *name;
2419         binditem_t *binds;
2420         struct bindcategory_s *next;
2421 }
2422 bindcategory_t;
2423
2424 bindcategory_t *bindcategories = NULL;
2425
2426 void M_ClearBinds (void)
2427 {
2428         for (c = bindcategories;c;c = cnext)
2429         {
2430                 cnext = c->next;
2431                 for (b = c->binds;b;b = bnext)
2432                 {
2433                         bnext = b->next;
2434                         Z_Free(b);
2435                 }
2436                 Z_Free(c);
2437         }
2438         bindcategories = NULL;
2439 }
2440
2441 void M_AddBindToCategory(bindcategory_t *c, char *command, char *description)
2442 {
2443         for (b = &c->binds;*b;*b = &(*b)->next);
2444         *b = Z_Alloc(sizeof(binditem_t) + strlen(command) + 1 + strlen(description) + 1);
2445         *b->command = (char *)((*b) + 1);
2446         *b->description = *b->command + strlen(command) + 1;
2447         strcpy(*b->command, command);
2448         strcpy(*b->description, description);
2449 }
2450
2451 void M_AddBind (char *category, char *command, char *description)
2452 {
2453         for (c = &bindcategories;*c;c = &(*c)->next)
2454         {
2455                 if (!strcmp(category, (*c)->name))
2456                 {
2457                         M_AddBindToCategory(*c, command, description);
2458                         return;
2459                 }
2460         }
2461         *c = Z_Alloc(sizeof(bindcategory_t));
2462         M_AddBindToCategory(*c, command, description);
2463 }
2464
2465 void M_DefaultBinds (void)
2466 {
2467         M_ClearBinds();
2468         M_AddBind("movement", "+jump", "jump / swim up");
2469         M_AddBind("movement", "+forward", "walk forward");
2470         M_AddBind("movement", "+back", "backpedal");
2471         M_AddBind("movement", "+left", "turn left");
2472         M_AddBind("movement", "+right", "turn right");
2473         M_AddBind("movement", "+speed", "run");
2474         M_AddBind("movement", "+moveleft", "step left");
2475         M_AddBind("movement", "+moveright", "step right");
2476         M_AddBind("movement", "+strafe", "sidestep");
2477         M_AddBind("movement", "+lookup", "look up");
2478         M_AddBind("movement", "+lookdown", "look down");
2479         M_AddBind("movement", "centerview", "center view");
2480         M_AddBind("movement", "+mlook", "mouse look");
2481         M_AddBind("movement", "+klook", "keyboard look");
2482         M_AddBind("movement", "+moveup", "swim up");
2483         M_AddBind("movement", "+movedown", "swim down");
2484         M_AddBind("weapons", "+attack", "attack");
2485         M_AddBind("weapons", "impulse 10", "next weapon");
2486         M_AddBind("weapons", "impulse 12", "previous weapon");
2487         M_AddBind("weapons", "impulse 1", "select weapon 1 (axe)");
2488         M_AddBind("weapons", "impulse 2", "select weapon 2 (shotgun)");
2489         M_AddBind("weapons", "impulse 3", "select weapon 3 (super )");
2490         M_AddBind("weapons", "impulse 4", "select weapon 4 (nailgun)");
2491         M_AddBind("weapons", "impulse 5", "select weapon 5 (super nailgun)");
2492         M_AddBind("weapons", "impulse 6", "select weapon 6 (grenade launcher)");
2493         M_AddBind("weapons", "impulse 7", "select weapon 7 (rocket launcher)");
2494         M_AddBind("weapons", "impulse 8", "select weapon 8 (lightning gun)");
2495 }
2496 */
2497
2498
2499 int             keys_cursor;
2500 int             bind_grab;
2501
2502 void M_Menu_Keys_f (void)
2503 {
2504         key_dest = key_menu;
2505         m_state = m_keys;
2506         m_entersound = true;
2507 }
2508
2509 #define NUMKEYS 5
2510
2511 void M_FindKeysForCommand (const char *command, int *keys)
2512 {
2513         int             count;
2514         int             j;
2515         char    *b;
2516
2517         for (j = 0;j < NUMKEYS;j++)
2518                 keys[j] = -1;
2519
2520         count = 0;
2521
2522         for (j = 0; j < (int)sizeof (keybindings[0]) / (int)sizeof (keybindings[0][0]); j++)
2523         {
2524                 b = keybindings[0][j];
2525                 if (!b)
2526                         continue;
2527                 if (!strcmp (b, command) )
2528                 {
2529                         keys[count++] = j;
2530                         if (count == NUMKEYS)
2531                                 break;
2532                 }
2533         }
2534 }
2535
2536 void M_UnbindCommand (char *command)
2537 {
2538         int             j;
2539         char    *b;
2540
2541         for (j = 0; j < (int)sizeof (keybindings[0]) / (int)sizeof (keybindings[0][0]); j++)
2542         {
2543                 b = keybindings[0][j];
2544                 if (!b)
2545                         continue;
2546                 if (!strcmp (b, command))
2547                         Key_SetBinding (j, 0, "");
2548         }
2549 }
2550
2551
2552 void M_Keys_Draw (void)
2553 {
2554         int             i, j;
2555         int             keys[NUMKEYS];
2556         int             y;
2557         cachepic_t      *p;
2558         char    keystring[1024];
2559
2560         M_Background(320, 48 + 8 * numcommands);
2561
2562         p = Draw_CachePic ("gfx/ttl_cstm.lmp", false);
2563         M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_cstm.lmp");
2564
2565         if (bind_grab)
2566                 M_Print(12, 32, "Press a key or button for this action");
2567         else
2568                 M_Print(18, 32, "Enter to change, backspace to clear");
2569
2570 // search for known bindings
2571         for (i=0 ; i<numcommands ; i++)
2572         {
2573                 y = 48 + 8*i;
2574
2575                 // If there's no command, it's just a section
2576                 if (bindnames[i][0][0] == '\0')
2577                 {
2578                         M_PrintRed (4, y, "\x0D");  // #13 is the little arrow pointing to the right
2579                         M_PrintRed (16, y, bindnames[i][1]);
2580                         continue;
2581                 }
2582                 else
2583                         M_Print(16, y, bindnames[i][1]);
2584
2585                 M_FindKeysForCommand (bindnames[i][0], keys);
2586
2587                 // LordHavoc: redesigned to print more than 2 keys, inspired by Tomaz's MiniRacer
2588                 if (keys[0] == -1)
2589                         strcpy(keystring, "???");
2590                 else
2591                 {
2592                         keystring[0] = 0;
2593                         for (j = 0;j < NUMKEYS;j++)
2594                         {
2595                                 if (keys[j] != -1)
2596                                 {
2597                                         if (j > 0)
2598                                                 strcat(keystring, " or ");
2599                                         strcat(keystring, Key_KeynumToString (keys[j]));
2600                                 }
2601                         }
2602                 }
2603                 M_Print(150, y, keystring);
2604         }
2605
2606         if (bind_grab)
2607                 M_DrawCharacter (140, 48 + keys_cursor*8, '=');
2608         else
2609                 M_DrawCharacter (140, 48 + keys_cursor*8, 12+((int)(realtime*4)&1));
2610 }
2611
2612
2613 void M_Keys_Key (int k, char ascii)
2614 {
2615         char    cmd[80];
2616         int             keys[NUMKEYS];
2617
2618         if (bind_grab)
2619         {       // defining a key
2620                 S_LocalSound ("sound/misc/menu1.wav");
2621                 if (k == K_ESCAPE)
2622                 {
2623                         bind_grab = false;
2624                 }
2625                 else //if (k != '`')
2626                 {
2627                         sprintf (cmd, "bind \"%s\" \"%s\"\n", Key_KeynumToString (k), bindnames[keys_cursor][0]);
2628                         Cbuf_InsertText (cmd);
2629                 }
2630
2631                 bind_grab = false;
2632                 return;
2633         }
2634
2635         switch (k)
2636         {
2637         case K_ESCAPE:
2638                 M_Menu_Options_f ();
2639                 break;
2640
2641         case K_LEFTARROW:
2642         case K_UPARROW:
2643                 S_LocalSound ("sound/misc/menu1.wav");
2644                 do
2645                 {
2646                         keys_cursor--;
2647                         if (keys_cursor < 0)
2648                                 keys_cursor = numcommands-1;
2649                 }
2650                 while (bindnames[keys_cursor][0][0] == '\0');  // skip sections
2651                 break;
2652
2653         case K_DOWNARROW:
2654         case K_RIGHTARROW:
2655                 S_LocalSound ("sound/misc/menu1.wav");
2656                 do
2657                 {
2658                         keys_cursor++;
2659                         if (keys_cursor >= numcommands)
2660                                 keys_cursor = 0;
2661                 }
2662                 while (bindnames[keys_cursor][0][0] == '\0');  // skip sections
2663                 break;
2664
2665         case K_ENTER:           // go into bind mode
2666                 M_FindKeysForCommand (bindnames[keys_cursor][0], keys);
2667                 S_LocalSound ("sound/misc/menu2.wav");
2668                 if (keys[NUMKEYS - 1] != -1)
2669                         M_UnbindCommand (bindnames[keys_cursor][0]);
2670                 bind_grab = true;
2671                 break;
2672
2673         case K_BACKSPACE:               // delete bindings
2674         case K_DEL:                             // delete bindings
2675                 S_LocalSound ("sound/misc/menu2.wav");
2676                 M_UnbindCommand (bindnames[keys_cursor][0]);
2677                 break;
2678         }
2679 }
2680
2681 void M_Menu_Reset_f (void)
2682 {
2683         key_dest = key_menu;
2684         m_state = m_reset;
2685         m_entersound = true;
2686 }
2687
2688
2689 void M_Reset_Key (int key, char ascii)
2690 {
2691         switch (key)
2692         {
2693         case 'Y':
2694         case 'y':
2695                 Cbuf_AddText ("exec default.cfg\n");
2696                 // no break here since we also exit the menu
2697
2698         case K_ESCAPE:
2699         case 'n':
2700         case 'N':
2701                 m_state = m_options;
2702                 m_entersound = true;
2703                 break;
2704
2705         default:
2706                 break;
2707         }
2708 }
2709
2710 void M_Reset_Draw (void)
2711 {
2712         int lines = 2, linelength = 20;
2713         M_Background(linelength * 8 + 16, lines * 8 + 16);
2714         M_DrawTextBox(0, 0, linelength, lines);
2715         M_Print(8 + 4 * (linelength - 19),  8, "Really wanna reset?");
2716         M_Print(8 + 4 * (linelength - 11), 16, "Press y / n");
2717 }
2718
2719 //=============================================================================
2720 /* VIDEO MENU */
2721
2722 #define VIDEO_ITEMS 5
2723
2724 int video_cursor = 0;
2725 int video_cursor_table[] = {56, 68, 80, 100, 130};
2726 // note: if modes are added to the beginning of this list, update the
2727 // video_resolution = x; in M_Menu_Video_f below
2728 unsigned short video_resolutions[][2] = {{320,240}, {400,300}, {512,384}, {640,480}, {800,600}, {1024,768}, {1152,864}, {1280,960}, {1280,1024}, {1600,1200}, {1792,1344}, {1920,1440}, {2048,1536}, {0,0}};
2729 // this is the number of the 640x480 mode in the list
2730 #define VID_640 3
2731 #define VID_RES_COUNT ((int)(sizeof(video_resolutions) / sizeof(video_resolutions[0])) - 1)
2732 int video_resolution;
2733
2734
2735 void M_Menu_Video_f (void)
2736 {
2737         key_dest = key_menu;
2738         m_state = m_video;
2739         m_entersound = true;
2740
2741         // Look for the current resolution
2742         for (video_resolution = 0; video_resolution < VID_RES_COUNT; video_resolution++)
2743         {
2744                 if (video_resolutions[video_resolution][0] == vid.width &&
2745                         video_resolutions[video_resolution][1] == vid.height)
2746                         break;
2747         }
2748
2749         // Default to VID_640 if we didn't find it
2750         if (video_resolution == VID_RES_COUNT)
2751         {
2752                 // may need to update this number if mode list changes
2753                 video_resolution = VID_640;
2754                 Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2755                 Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2756         }
2757 }
2758
2759
2760 void M_Video_Draw (void)
2761 {
2762         cachepic_t      *p;
2763         const char* string;
2764
2765         M_Background(320, 200);
2766
2767         M_DrawPic(16, 4, "gfx/qplaque.lmp");
2768         p = Draw_CachePic("gfx/vidmodes.lmp", false);
2769         M_DrawPic((320-p->width)/2, 4, "gfx/vidmodes.lmp");
2770
2771         // Resolution
2772         M_Print(16, video_cursor_table[0], "            Resolution");
2773         string = va("%dx%d", video_resolutions[video_resolution][0], video_resolutions[video_resolution][1]);
2774         M_Print(220, video_cursor_table[0], string);
2775
2776         // Bits per pixel
2777         M_Print(16, video_cursor_table[1], "        Bits per pixel");
2778         M_Print(220, video_cursor_table[1], (vid_bitsperpixel.integer == 32) ? "32" : "16");
2779
2780         // Fullscreen
2781         M_Print(16, video_cursor_table[2], "            Fullscreen");
2782         M_DrawCheckbox(220, video_cursor_table[2], vid_fullscreen.integer);
2783
2784         // "Apply" button
2785         M_Print(220, video_cursor_table[3], "Apply");
2786
2787         // Vertical Sync
2788         M_ItemPrint (0, video_cursor_table[4], "         Vertical Sync", gl_videosyncavailable);
2789         M_DrawCheckbox(220, video_cursor_table[4], vid_vsync.integer);
2790
2791         // Cursor
2792         M_DrawCharacter(200, video_cursor_table[video_cursor], 12+((int)(realtime*4)&1));
2793 }
2794
2795
2796 void M_Menu_Video_AdjustSliders (int dir)
2797 {
2798         S_LocalSound ("sound/misc/menu3.wav");
2799
2800         switch (video_cursor)
2801         {
2802                 // Resolution
2803                 case 0:
2804                 {
2805                         int new_resolution = video_resolution + dir;
2806                         if (gamemode == GAME_FNIGGIUM ? new_resolution < VID_640 : new_resolution < 0)
2807                                 video_resolution = VID_RES_COUNT - 1;
2808                         else if (new_resolution > VID_RES_COUNT - 1)
2809                                 video_resolution = gamemode == GAME_FNIGGIUM ? VID_640 : 0;
2810                         else
2811                                 video_resolution = new_resolution;
2812
2813                         Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2814                         Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2815                         break;
2816                 }
2817
2818                 // Bits per pixel
2819                 case 1:
2820                         Cvar_SetValueQuick (&vid_bitsperpixel, (vid_bitsperpixel.integer == 32) ? 16 : 32);
2821                         break;
2822                 case 2:
2823                         Cvar_SetValueQuick (&vid_fullscreen, !vid_fullscreen.integer);
2824                         break;
2825
2826                 case 4:
2827                         Cvar_SetValueQuick (&vid_vsync, !vid_vsync.integer);
2828                         break;
2829         }
2830 }
2831
2832
2833 void M_Video_Key (int key, char ascii)
2834 {
2835         switch (key)
2836         {
2837                 case K_ESCAPE:
2838                         // vid_shared.c has a copy of the current video config. We restore it
2839                         Cvar_SetValueQuick(&vid_fullscreen, vid.fullscreen);
2840                         Cvar_SetValueQuick(&vid_width, vid.width);
2841                         Cvar_SetValueQuick(&vid_height, vid.height);
2842                         Cvar_SetValueQuick(&vid_bitsperpixel, vid.bitsperpixel);
2843
2844                         S_LocalSound ("sound/misc/menu1.wav");
2845                         M_Menu_Options_f ();
2846                         break;
2847
2848                 case K_ENTER:
2849                         m_entersound = true;
2850                         switch (video_cursor)
2851                         {
2852                                 case 3:
2853                                         Cbuf_AddText ("vid_restart\n");
2854                                         M_Menu_Options_f ();
2855                                         break;
2856                                 default:
2857                                         M_Menu_Video_AdjustSliders (1);
2858                         }
2859                         break;
2860
2861                 case K_UPARROW:
2862                         S_LocalSound ("sound/misc/menu1.wav");
2863                         video_cursor--;
2864                         if (video_cursor < 0)
2865                                 video_cursor = VIDEO_ITEMS-1;
2866                         break;
2867
2868                 case K_DOWNARROW:
2869                         S_LocalSound ("sound/misc/menu1.wav");
2870                         video_cursor++;
2871                         if (video_cursor >= VIDEO_ITEMS)
2872                                 video_cursor = 0;
2873                         break;
2874
2875                 case K_LEFTARROW:
2876                         M_Menu_Video_AdjustSliders (-1);
2877                         break;
2878
2879                 case K_RIGHTARROW:
2880                         M_Menu_Video_AdjustSliders (1);
2881                         break;
2882         }
2883 }
2884
2885 //=============================================================================
2886 /* HELP MENU */
2887
2888 int             help_page;
2889 #define NUM_HELP_PAGES  6
2890
2891
2892 void M_Menu_Help_f (void)
2893 {
2894         key_dest = key_menu;
2895         m_state = m_help;
2896         m_entersound = true;
2897         help_page = 0;
2898 }
2899
2900
2901
2902 void M_Help_Draw (void)
2903 {
2904         M_Background(320, 200);
2905         M_DrawPic (0, 0, va("gfx/help%i.lmp", help_page));
2906 }
2907
2908
2909 void M_Help_Key (int key, char ascii)
2910 {
2911         switch (key)
2912         {
2913         case K_ESCAPE:
2914                 M_Menu_Main_f ();
2915                 break;
2916
2917         case K_UPARROW:
2918         case K_RIGHTARROW:
2919                 m_entersound = true;
2920                 if (++help_page >= NUM_HELP_PAGES)
2921                         help_page = 0;
2922                 break;
2923
2924         case K_DOWNARROW:
2925         case K_LEFTARROW:
2926                 m_entersound = true;
2927                 if (--help_page < 0)
2928                         help_page = NUM_HELP_PAGES-1;
2929                 break;
2930         }
2931
2932 }
2933
2934 //=============================================================================
2935 /* CEDITS MENU */
2936
2937 void M_Menu_Credits_f (void)
2938 {
2939         key_dest = key_menu;
2940         m_state = m_credits;
2941         m_entersound = true;
2942 }
2943
2944
2945
2946 void M_Credits_Draw (void)
2947 {
2948         M_Background(640, 480);
2949         DrawQ_Pic (0, 0, "gfx/creditsmiddle", 0, 0, 1, 1, 1, 1, 0);
2950         M_Print (640/2 - 14/2*8, 236, "Coming soon...");
2951         DrawQ_Pic (0, 0, "gfx/creditstop", 0, 0, 1, 1, 1, 1, 0);
2952         DrawQ_Pic (0, 433, "gfx/creditsbottom", 0, 0, 1, 1, 1, 1, 0);
2953 }
2954
2955
2956 void M_Credits_Key (int key, char ascii)
2957 {
2958                 M_Menu_Main_f ();
2959 }
2960
2961 //=============================================================================
2962 /* QUIT MENU */
2963
2964 char *m_quit_message[9];
2965 int             m_quit_prevstate;
2966 qboolean        wasInMenus;
2967
2968
2969 int M_QuitMessage(char *line1, char *line2, char *line3, char *line4, char *line5, char *line6, char *line7, char *line8)
2970 {
2971         m_quit_message[0] = line1;
2972         m_quit_message[1] = line2;
2973         m_quit_message[2] = line3;
2974         m_quit_message[3] = line4;
2975         m_quit_message[4] = line5;
2976         m_quit_message[5] = line6;
2977         m_quit_message[6] = line7;
2978         m_quit_message[7] = line8;
2979         m_quit_message[8] = NULL;
2980         return 1;
2981 }
2982
2983 int M_ChooseQuitMessage(int request)
2984 {
2985         switch (gamemode)
2986         {
2987         case GAME_NORMAL:
2988         case GAME_HIPNOTIC:
2989         case GAME_ROGUE:
2990         case GAME_NEHAHRA:
2991         case GAME_DEFEATINDETAIL2:
2992                 if (request-- == 0) return M_QuitMessage("Are you gonna quit","this game just like","everything else?",NULL,NULL,NULL,NULL,NULL);
2993                 if (request-- == 0) return M_QuitMessage("Milord, methinks that","thou art a lowly","quitter. Is this true?",NULL,NULL,NULL,NULL,NULL);
2994                 if (request-- == 0) return M_QuitMessage("Do I need to bust your","face open for trying","to quit?",NULL,NULL,NULL,NULL,NULL);
2995                 if (request-- == 0) return M_QuitMessage("Man, I oughta smack you","for trying to quit!","Press Y to get","smacked out.",NULL,NULL,NULL,NULL);
2996                 if (request-- == 0) return M_QuitMessage("Press Y to quit like a","big loser in life.","Press N to stay proud","and successful!",NULL,NULL,NULL,NULL);
2997                 if (request-- == 0) return M_QuitMessage("If you press Y to","quit, I will summon","Satan all over your","hard drive!",NULL,NULL,NULL,NULL);
2998                 if (request-- == 0) return M_QuitMessage("Um, Asmodeus dislikes","his children trying to","quit. Press Y to return","to your Tinkertoys.",NULL,NULL,NULL,NULL);
2999                 if (request-- == 0) return M_QuitMessage("If you quit now, I'll","throw a blanket-party","for you next time!",NULL,NULL,NULL,NULL,NULL);
3000                 break;
3001         case GAME_GOODVSBAD2:
3002                 if (request-- == 0) return M_QuitMessage("Press Yes To Quit","...","Yes",NULL,NULL,NULL,NULL,NULL);
3003                 if (request-- == 0) return M_QuitMessage("Do you really want to","Quit?","Play Good vs bad 3!",NULL,NULL,NULL,NULL,NULL);
3004                 if (request-- == 0) return M_QuitMessage("All your quit are","belong to long duck","dong",NULL,NULL,NULL,NULL,NULL);
3005                 if (request-- == 0) return M_QuitMessage("Press Y to quit","","But are you too legit?",NULL,NULL,NULL,NULL,NULL);
3006                 if (request-- == 0) return M_QuitMessage("This game was made by","e@chip-web.com","It is by far the best","game ever made.",NULL,NULL,NULL,NULL);
3007                 if (request-- == 0) return M_QuitMessage("Even I really dont","know of a game better","Press Y to quit","like rougue chedder",NULL,NULL,NULL,NULL);
3008                 if (request-- == 0) return M_QuitMessage("After you stop playing","tell the guys who made","counterstrike to just","kill themselves now",NULL,NULL,NULL,NULL);
3009                 if (request-- == 0) return M_QuitMessage("Press Y to exit to DOS","","SSH login as user Y","to exit to Linux",NULL,NULL,NULL,NULL);
3010                 if (request-- == 0) return M_QuitMessage("Press Y like you","were waanderers","from Ys'",NULL,NULL,NULL,NULL,NULL);
3011                 if (request-- == 0) return M_QuitMessage("This game was made in","Nippon like the SS","announcer's saying ipon",NULL,NULL,NULL,NULL,NULL);
3012                 if (request-- == 0) return M_QuitMessage("you","want to quit?",NULL,NULL,NULL,NULL,NULL,NULL);
3013                 if (request-- == 0) return M_QuitMessage("Please stop playing","this stupid game",NULL,NULL,NULL,NULL,NULL,NULL);
3014                 break;
3015         case GAME_BATTLEMECH:
3016                 if (request-- == 0) return M_QuitMessage("? WHY ?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3017                 if (request-- == 0) return M_QuitMessage("Leave now and your mech is scrap!","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3018                 if (request-- == 0) return M_QuitMessage("Accept Defeat?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3019                 if (request-- == 0) return M_QuitMessage("Wait! There are more mechs to destroy!","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3020                 if (request-- == 0) return M_QuitMessage("Where's your bloodlust?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3021                 if (request-- == 0) return M_QuitMessage("Your mech here is way more impressive","than your car out there...","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL);
3022                 if (request-- == 0) return M_QuitMessage("Quitting won't reduce your debt","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3023                 break;
3024         case GAME_OPENQUARTZ:
3025                 if (request-- == 0) return M_QuitMessage("There is nothing like free beer!","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3026                 if (request-- == 0) return M_QuitMessage("GNU is not Unix!","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3027                 if (request-- == 0) return M_QuitMessage("You prefer free beer over free speech?","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3028                 if (request-- == 0) return M_QuitMessage("Is OpenQuartz Propaganda?","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3029                 break;
3030         default:
3031                 if (request-- == 0) return M_QuitMessage("Tired of fragging already?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3032                 if (request-- == 0) return M_QuitMessage("Quit now and forfeit your bodycount?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3033                 if (request-- == 0) return M_QuitMessage("Are you sure you want to quit?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3034                 if (request-- == 0) return M_QuitMessage("Off to do something constructive?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3035                 break;
3036         }
3037         return 0;
3038 };
3039
3040 void M_Menu_Quit_f (void)
3041 {
3042         int n;
3043         if (m_state == m_quit)
3044                 return;
3045         wasInMenus = (key_dest == key_menu);
3046         key_dest = key_menu;
3047         m_quit_prevstate = m_state;
3048         m_state = m_quit;
3049         m_entersound = true;
3050         // count how many there are
3051         for (n = 0;M_ChooseQuitMessage(n);n++);
3052         // choose one
3053         M_ChooseQuitMessage(rand() % n);
3054 }
3055
3056
3057 void M_Quit_Key (int key, char ascii)
3058 {
3059         switch (key)
3060         {
3061         case K_ESCAPE:
3062         case 'n':
3063         case 'N':
3064                 if (wasInMenus)
3065                 {
3066                         m_state = m_quit_prevstate;
3067                         m_entersound = true;
3068                 }
3069                 else
3070                 {
3071                         key_dest = key_game;
3072                         m_state = m_none;
3073                 }
3074                 break;
3075
3076         case 'Y':
3077         case 'y':
3078                 Host_Quit_f ();
3079                 break;
3080
3081         default:
3082                 break;
3083         }
3084 }
3085
3086 void M_Quit_Draw (void)
3087 {
3088         int i, l, linelength, firstline, lastline, lines;
3089         for (i = 0, linelength = 0, firstline = 9999, lastline = -1;m_quit_message[i];i++)
3090         {
3091                 if ((l = (int)strlen(m_quit_message[i])))
3092                 {
3093                         if (firstline > i)
3094                                 firstline = i;
3095                         if (lastline < i)
3096                                 lastline = i;
3097                         if (linelength < l)
3098                                 linelength = l;
3099                 }
3100         }
3101         lines = (lastline - firstline) + 1;
3102         M_Background(linelength * 8 + 16, lines * 8 + 16);
3103         M_DrawTextBox(0, 0, linelength, lines);
3104         for (i = 0, l = firstline;i < lines;i++, l++)
3105                 M_Print(8 + 4 * (linelength - strlen(m_quit_message[l])), 8 + 8 * i, m_quit_message[l]);
3106 }
3107
3108 //=============================================================================
3109 /* LAN CONFIG MENU */
3110
3111 int             lanConfig_cursor = -1;
3112 int             lanConfig_cursor_table [] = {56, 76, 112};
3113 #define NUM_LANCONFIG_CMDS      3
3114
3115 int     lanConfig_port;
3116 char    lanConfig_portname[6];
3117 char    lanConfig_joinname[22];
3118
3119 void M_Menu_LanConfig_f (void)
3120 {
3121         key_dest = key_menu;
3122         m_state = m_lanconfig;
3123         m_entersound = true;
3124         if (lanConfig_cursor == -1)
3125         {
3126                 if (JoiningGame)
3127                         lanConfig_cursor = 1;
3128         }
3129         if (StartingGame)
3130                 lanConfig_cursor = 1;
3131         lanConfig_port = 26000;
3132         sprintf(lanConfig_portname, "%u", lanConfig_port);
3133
3134         M_Update_Return_Reason("");
3135 }
3136
3137
3138 void M_LanConfig_Draw (void)
3139 {
3140         cachepic_t      *p;
3141         int             basex;
3142         char    *startJoin;
3143         char    *protocol;
3144
3145         M_Background(320, 200);
3146
3147         M_DrawPic (16, 4, "gfx/qplaque.lmp");
3148         p = Draw_CachePic ("gfx/p_multi.lmp", false);
3149         basex = (320-p->width)/2;
3150         M_DrawPic (basex, 4, "gfx/p_multi.lmp");
3151
3152         if (StartingGame)
3153                 startJoin = "New Game";
3154         else
3155                 startJoin = "Join Game";
3156         protocol = "TCP/IP";
3157         M_Print(basex, 32, va ("%s - %s", startJoin, protocol));
3158         basex += 8;
3159
3160         M_Print(basex, lanConfig_cursor_table[0], "Port");
3161         M_DrawTextBox (basex+8*8, lanConfig_cursor_table[0]-8, 6, 1);
3162         M_Print(basex+9*8, lanConfig_cursor_table[0], lanConfig_portname);
3163
3164         if (JoiningGame)
3165         {
3166                 M_Print(basex, lanConfig_cursor_table[1], "Search for games...");
3167                 M_Print(basex, lanConfig_cursor_table[2]-16, "Join game at:");
3168                 M_DrawTextBox (basex+8, lanConfig_cursor_table[2]-8, 22, 1);
3169                 M_Print(basex+16, lanConfig_cursor_table[2], lanConfig_joinname);
3170         }
3171         else
3172         {
3173                 M_DrawTextBox (basex, lanConfig_cursor_table[1]-8, 2, 1);
3174                 M_Print(basex+8, lanConfig_cursor_table[1], "OK");
3175         }
3176
3177         M_DrawCharacter (basex-8, lanConfig_cursor_table [lanConfig_cursor], 12+((int)(realtime*4)&1));
3178
3179         if (lanConfig_cursor == 0)
3180                 M_DrawCharacter (basex+9*8 + 8*strlen(lanConfig_portname), lanConfig_cursor_table [0], 10+((int)(realtime*4)&1));
3181
3182         if (lanConfig_cursor == 2)
3183                 M_DrawCharacter (basex+16 + 8*strlen(lanConfig_joinname), lanConfig_cursor_table [2], 10+((int)(realtime*4)&1));
3184
3185         if (*m_return_reason)
3186                 M_Print(basex, 168, m_return_reason);
3187 }
3188
3189
3190 void M_LanConfig_Key (int key, char ascii)
3191 {
3192         int             l;
3193
3194         switch (key)
3195         {
3196         case K_ESCAPE:
3197                 M_Menu_MultiPlayer_f ();
3198                 break;
3199
3200         case K_UPARROW:
3201                 S_LocalSound ("sound/misc/menu1.wav");
3202                 lanConfig_cursor--;
3203                 if (lanConfig_cursor < 0)
3204                         lanConfig_cursor = NUM_LANCONFIG_CMDS-1;
3205                 break;
3206
3207         case K_DOWNARROW:
3208                 S_LocalSound ("sound/misc/menu1.wav");
3209                 lanConfig_cursor++;
3210                 if (lanConfig_cursor >= NUM_LANCONFIG_CMDS)
3211                         lanConfig_cursor = 0;
3212                 break;
3213
3214         case K_ENTER:
3215                 if (lanConfig_cursor == 0)
3216                         break;
3217
3218                 m_entersound = true;
3219
3220                 Cbuf_AddText ("stopdemo\n");
3221
3222                 Cvar_SetValue("port", lanConfig_port);
3223
3224                 if (lanConfig_cursor == 1)
3225                 {
3226                         if (StartingGame)
3227                         {
3228                                 M_Menu_GameOptions_f ();
3229                                 break;
3230                         }
3231                         M_Menu_ServerList_f();
3232                         break;
3233                 }
3234
3235                 if (lanConfig_cursor == 2)
3236                         Cbuf_AddText ( va ("connect \"%s\"\n", lanConfig_joinname) );
3237                 break;
3238
3239         case K_BACKSPACE:
3240                 if (lanConfig_cursor == 0)
3241                 {
3242                         if (strlen(lanConfig_portname))
3243                                 lanConfig_portname[strlen(lanConfig_portname)-1] = 0;
3244                 }
3245
3246                 if (lanConfig_cursor == 2)
3247                 {
3248                         if (strlen(lanConfig_joinname))
3249                                 lanConfig_joinname[strlen(lanConfig_joinname)-1] = 0;
3250                 }
3251                 break;
3252
3253         default:
3254                 if (ascii < 32 || ascii > 126)
3255                         break;
3256
3257                 if (lanConfig_cursor == 2)
3258                 {
3259                         l = (int)strlen(lanConfig_joinname);
3260                         if (l < 21)
3261                         {
3262                                 lanConfig_joinname[l+1] = 0;
3263                                 lanConfig_joinname[l] = ascii;
3264                         }
3265                 }
3266
3267                 if (ascii < '0' || ascii > '9')
3268                         break;
3269                 if (lanConfig_cursor == 0)
3270                 {
3271                         l = (int)strlen(lanConfig_portname);
3272                         if (l < 5)
3273                         {
3274                                 lanConfig_portname[l+1] = 0;
3275                                 lanConfig_portname[l] = ascii;
3276                         }
3277                 }
3278         }
3279
3280         if (StartingGame && lanConfig_cursor == 2)
3281         {
3282                 if (key == K_UPARROW)
3283                         lanConfig_cursor = 1;
3284                 else
3285                         lanConfig_cursor = 0;
3286         }
3287
3288         l =  atoi(lanConfig_portname);
3289         if (l <= 65535)
3290                 lanConfig_port = l;
3291         sprintf(lanConfig_portname, "%u", lanConfig_port);
3292 }
3293
3294 //=============================================================================
3295 /* GAME OPTIONS MENU */
3296
3297 typedef struct
3298 {
3299         char    *name;
3300         char    *description;
3301 } level_t;
3302
3303 typedef struct
3304 {
3305         char    *description;
3306         int             firstLevel;
3307         int             levels;
3308 } episode_t;
3309
3310 typedef struct
3311 {
3312         char *gamename;
3313         level_t *levels;
3314         episode_t *episodes;
3315         int numepisodes;
3316 }
3317 gamelevels_t;
3318
3319 level_t quakelevels[] =
3320 {
3321         {"start", "Entrance"},  // 0
3322
3323         {"e1m1", "Slipgate Complex"},                           // 1
3324         {"e1m2", "Castle of the Damned"},
3325         {"e1m3", "The Necropolis"},
3326         {"e1m4", "The Grisly Grotto"},
3327         {"e1m5", "Gloom Keep"},
3328         {"e1m6", "The Door To Chthon"},
3329         {"e1m7", "The House of Chthon"},
3330         {"e1m8", "Ziggurat Vertigo"},
3331
3332         {"e2m1", "The Installation"},                           // 9
3333         {"e2m2", "Ogre Citadel"},
3334         {"e2m3", "Crypt of Decay"},
3335         {"e2m4", "The Ebon Fortress"},
3336         {"e2m5", "The Wizard's Manse"},
3337         {"e2m6", "The Dismal Oubliette"},
3338         {"e2m7", "Underearth"},
3339
3340         {"e3m1", "Termination Central"},                        // 16
3341         {"e3m2", "The Vaults of Zin"},
3342         {"e3m3", "The Tomb of Terror"},
3343         {"e3m4", "Satan's Dark Delight"},
3344         {"e3m5", "Wind Tunnels"},
3345         {"e3m6", "Chambers of Torment"},
3346         {"e3m7", "The Haunted Halls"},
3347
3348         {"e4m1", "The Sewage System"},                          // 23
3349         {"e4m2", "The Tower of Despair"},
3350         {"e4m3", "The Elder God Shrine"},
3351         {"e4m4", "The Palace of Hate"},
3352         {"e4m5", "Hell's Atrium"},
3353         {"e4m6", "The Pain Maze"},
3354         {"e4m7", "Azure Agony"},
3355         {"e4m8", "The Nameless City"},
3356
3357         {"end", "Shub-Niggurath's Pit"},                        // 31
3358
3359         {"dm1", "Place of Two Deaths"},                         // 32
3360         {"dm2", "Claustrophobopolis"},
3361         {"dm3", "The Abandoned Base"},
3362         {"dm4", "The Bad Place"},
3363         {"dm5", "The Cistern"},
3364         {"dm6", "The Dark Zone"}
3365 };
3366
3367 episode_t quakeepisodes[] =
3368 {
3369         {"Welcome to Quake", 0, 1},
3370         {"Doomed Dimension", 1, 8},
3371         {"Realm of Black Magic", 9, 7},
3372         {"Netherworld", 16, 7},
3373         {"The Elder World", 23, 8},
3374         {"Final Level", 31, 1},
3375         {"Deathmatch Arena", 32, 6}
3376 };
3377
3378  //MED 01/06/97 added hipnotic levels
3379 level_t     hipnoticlevels[] =
3380 {
3381    {"start", "Command HQ"},  // 0
3382
3383    {"hip1m1", "The Pumping Station"},          // 1
3384    {"hip1m2", "Storage Facility"},
3385    {"hip1m3", "The Lost Mine"},
3386    {"hip1m4", "Research Facility"},
3387    {"hip1m5", "Military Complex"},
3388
3389    {"hip2m1", "Ancient Realms"},          // 6
3390    {"hip2m2", "The Black Cathedral"},
3391    {"hip2m3", "The Catacombs"},
3392    {"hip2m4", "The Crypt"},
3393    {"hip2m5", "Mortum's Keep"},
3394    {"hip2m6", "The Gremlin's Domain"},
3395
3396    {"hip3m1", "Tur Torment"},       // 12
3397    {"hip3m2", "Pandemonium"},
3398    {"hip3m3", "Limbo"},
3399    {"hip3m4", "The Gauntlet"},
3400
3401    {"hipend", "Armagon's Lair"},       // 16
3402
3403    {"hipdm1", "The Edge of Oblivion"}           // 17
3404 };
3405
3406 //MED 01/06/97  added hipnotic episodes
3407 episode_t   hipnoticepisodes[] =
3408 {
3409    {"Scourge of Armagon", 0, 1},
3410    {"Fortress of the Dead", 1, 5},
3411    {"Dominion of Darkness", 6, 6},
3412    {"The Rift", 12, 4},
3413    {"Final Level", 16, 1},
3414    {"Deathmatch Arena", 17, 1}
3415 };
3416
3417 //PGM 01/07/97 added rogue levels
3418 //PGM 03/02/97 added dmatch level
3419 level_t         roguelevels[] =
3420 {
3421         {"start",       "Split Decision"},
3422         {"r1m1",        "Deviant's Domain"},
3423         {"r1m2",        "Dread Portal"},
3424         {"r1m3",        "Judgement Call"},
3425         {"r1m4",        "Cave of Death"},
3426         {"r1m5",        "Towers of Wrath"},
3427         {"r1m6",        "Temple of Pain"},
3428         {"r1m7",        "Tomb of the Overlord"},
3429         {"r2m1",        "Tempus Fugit"},
3430         {"r2m2",        "Elemental Fury I"},
3431         {"r2m3",        "Elemental Fury II"},
3432         {"r2m4",        "Curse of Osiris"},
3433         {"r2m5",        "Wizard's Keep"},
3434         {"r2m6",        "Blood Sacrifice"},
3435         {"r2m7",        "Last Bastion"},
3436         {"r2m8",        "Source of Evil"},
3437         {"ctf1",    "Division of Change"}
3438 };
3439
3440 //PGM 01/07/97 added rogue episodes
3441 //PGM 03/02/97 added dmatch episode
3442 episode_t       rogueepisodes[] =
3443 {
3444         {"Introduction", 0, 1},
3445         {"Hell's Fortress", 1, 7},
3446         {"Corridors of Time", 8, 8},
3447         {"Deathmatch Arena", 16, 1}
3448 };
3449
3450 level_t         nehahralevels[] =
3451 {
3452         {"nehstart",    "Welcome to Nehahra"},
3453         {"neh1m1",      "Forge City1: Slipgates"},
3454         {"neh1m2",      "Forge City2: Boiler"},
3455         {"neh1m3",      "Forge City3: Escape"},
3456         {"neh1m4",      "Grind Core"},
3457         {"neh1m5",      "Industrial Silence"},
3458         {"neh1m6",      "Locked-Up Anger"},
3459         {"neh1m7",      "Wanderer of the Wastes"},
3460         {"neh1m8",      "Artemis System Net"},
3461         {"neh1m9",      "To the Death"},
3462         {"neh2m1",      "The Gates of Ghoro"},
3463         {"neh2m2",      "Sacred Trinity"},
3464         {"neh2m3",      "Realm of the Ancients"},
3465         {"neh2m4",      "Temple of the Ancients"},
3466         {"neh2m5",      "Dreams Made Flesh"},
3467         {"neh2m6",      "Your Last Cup of Sorrow"},
3468         {"nehsec",      "Ogre's Bane"},
3469         {"nehahra",     "Nehahra's Den"},
3470         {"nehend",      "Quintessence"}
3471 };
3472
3473 episode_t       nehahraepisodes[] =
3474 {
3475         {"Welcome to Nehahra", 0, 1},
3476         {"The Fall of Forge", 1, 9},
3477         {"The Outlands", 10, 7},
3478         {"Dimension of the Lost", 17, 2}
3479 };
3480
3481 // Map list for Transfusion
3482 level_t         transfusionlevels[] =
3483 {
3484         {"e1m1",                "Cradle to Grave"},
3485         {"e1m2",                "Wrong Side of the Tracks"},
3486         {"e1m3",                "Phantom Express"},
3487         {"e1m4",                "Dark Carnival"},
3488         {"e1m5",                "Hallowed Grounds"},
3489         {"e1m6",                "The Great Temple"},
3490         {"e1m7",                "Altar of Stone"},
3491         {"e1m8",                "House of Horrors"},
3492
3493         {"e2m1",                "Shipwrecked"},
3494         {"e2m2",                "The Lumber Mill"},
3495         {"e2m3",                "Rest for the Wicked"},
3496         {"e2m4",                "The Overlooked Hotel"},
3497         {"e2m5",                "The Haunting"},
3498         {"e2m6",                "The Cold Rush"},
3499         {"e2m7",                "Bowels of the Earth"},
3500         {"e2m8",                "The Lair of Shial"},
3501         {"e2m9",                "Thin Ice"},
3502
3503         {"e3m1",                "Ghost Town"},
3504         {"e3m2",                "The Siege"},
3505         {"e3m3",                "Raw Sewage"},
3506         {"e3m4",                "The Sick Ward"},
3507         {"e3m5",                "Spare Parts"},
3508         {"e3m6",                "Monster Bait"},
3509         {"e3m7",                "The Pit of Cerberus"},
3510         {"e3m8",                "Catacombs"},
3511
3512         {"e4m1",                "Butchery Loves Company"},
3513         {"e4m2",                "Breeding Grounds"},
3514         {"e4m3",                "Charnel House"},
3515         {"e4m4",                "Crystal Lake"},
3516         {"e4m5",                "Fire and Brimstone"},
3517         {"e4m6",                "The Ganglion Depths"},
3518         {"e4m7",                "In the Flesh"},
3519         {"e4m8",                "The Hall of the Epiphany"},
3520         {"e4m9",                "Mall of the Dead"},
3521
3522         {"bb1",                 "The Stronghold"},
3523         {"bb2",                 "Winter Wonderland"},
3524         {"bb3",                 "Bodies"},
3525         {"bb4",                 "The Tower"},
3526         {"bb5",                 "Click!"},
3527         {"bb6",                 "Twin Fortress"},
3528         {"bb7",                 "Midgard"},
3529         {"bb8",                 "Fun With Heads"},
3530         {"dm1",                 "Monolith Building 11"},
3531         {"dm2",                 "Power!"},
3532         {"dm3",                 "Area 15"},
3533
3534         {"e6m1",                "Welcome to Your Life"},
3535         {"e6m2",                "They Are Here"},
3536         {"e6m3",                "Public Storage"},
3537         {"e6m4",                "Aqueducts"},
3538         {"e6m5",                "The Ruined Temple"},
3539         {"e6m6",                "Forbidden Rituals"},
3540         {"e6m7",                "The Dungeon"},
3541         {"e6m8",                "Beauty and the Beast"},
3542         {"e6m9",                "Forgotten Catacombs"},
3543
3544         {"cp01",                "Boat Docks"},
3545         {"cp02",                "Old Opera House"},
3546         {"cp03",                "Gothic Library"},
3547         {"cp04",                "Lost Monastery"},
3548         {"cp05",                "Steamboat"},
3549         {"cp06",                "Graveyard"},
3550         {"cp07",                "Mountain Pass"},
3551         {"cp08",                "Abysmal Mine"},
3552         {"cp09",                "Castle"},
3553         {"cps1",                "Boggy Creek"},
3554
3555         {"cpbb01",              "Crypt of Despair"},
3556         {"cpbb02",              "Pits of Blood"},
3557         {"cpbb03",              "Unholy Cathedral"},
3558         {"cpbb04",              "Deadly Inspirations"},
3559
3560         {"b2a15",               "Area 15 (B2)"},
3561         {"b2bodies",    "BB_Bodies (B2)"},
3562         {"b2cabana",    "BB_Cabana"},
3563         {"b2power",             "BB_Power"},
3564         {"barena",              "Blood Arena"},
3565         {"bkeep",               "Blood Keep"},
3566         {"bstar",               "Brown Star"},
3567         {"crypt",               "The Crypt"},
3568
3569         {"bb3_2k1",             "Bodies Infusion"},
3570         {"captasao",    "Captasao"},
3571         {"curandero",   "Curandero"},
3572         {"dcamp",               "DeathCamp"},
3573         {"highnoon",    "HighNoon"},
3574         {"qbb1",                "The Confluence"},
3575         {"qbb2",                "KathartiK"},
3576         {"qbb3",                "Caleb's Woodland Retreat"},
3577         {"zoo",                 "Zoo"},
3578
3579         {"dranzbb6",    "Black Coffee"},
3580         {"fragm",               "Frag'M"},
3581         {"maim",                "Maim"},
3582         {"qe1m7",               "The House of Chthon"},
3583         {"qdm1",                "Place of Two Deaths"},
3584         {"qdm4",                "The Bad Place"},
3585         {"qdm5",                "The Cistern"},
3586         {"qmorbias",    "DM-Morbias"},
3587         {"simple",              "Dead Simple"}
3588 };
3589
3590 episode_t       transfusionepisodes[] =
3591 {
3592         {"The Way of All Flesh", 0, 8},
3593         {"Even Death May Die", 8, 9},
3594         {"Farewell to Arms", 17, 8},
3595         {"Dead Reckoning", 25, 9},
3596         {"BloodBath", 34, 11},
3597         {"Post Mortem", 45, 9},
3598         {"Cryptic Passage", 54, 10},
3599         {"Cryptic BloodBath", 64, 4},
3600         {"Blood 2", 68, 8},
3601         {"Transfusion", 76, 9},
3602         {"Conversions", 85, 9}
3603 };
3604
3605 level_t goodvsbad2levels[] =
3606 {
3607         {"rts", "Many Paths"},  // 0
3608         {"chess", "Chess, Scott Hess"},                         // 1
3609         {"dot", "Big Wall"},
3610         {"city2", "The Big City"},
3611         {"bwall", "0 G like Psychic TV"},
3612         {"snow", "Wireframed"},
3613         {"telep", "Infinite Falling"},
3614         {"faces", "Facing Bases"},
3615         {"island", "Adventure Islands"},
3616 };
3617
3618 episode_t goodvsbad2episodes[] =
3619 {
3620         {"Levels? Bevels!", 0, 8},
3621 };
3622
3623 level_t battlemechlevels[] =
3624 {
3625         {"start", "Parking Level"},
3626         {"dm1", "Hot Dump"},                        // 1
3627         {"dm2", "The Pits"},
3628         {"dm3", "Dimber Died"},
3629         {"dm4", "Fire in the Hole"},
3630         {"dm5", "Clubhouses"},
3631         {"dm6", "Army go Underground"},
3632 };
3633
3634 episode_t battlemechepisodes[] =
3635 {
3636         {"Time for Battle", 0, 7},
3637 };
3638
3639 level_t openquartzlevels[] =
3640 {
3641         {"start", "Welcome to Openquartz"},
3642
3643         {"void1", "The center of nowhere"},                        // 1
3644         {"void2", "The place with no name"},
3645         {"void3", "The lost supply base"},
3646         {"void4", "Past the outer limits"},
3647         {"void5", "Into the nonexistance"},
3648         {"void6", "Void walk"},
3649
3650         {"vtest", "Warp Central"},
3651         {"box", "The deathmatch box"},
3652         {"bunkers", "Void command"},
3653         {"house", "House of chaos"},
3654         {"office", "Overnight office kill"},
3655         {"am1", "The nameless chambers"},
3656 };
3657
3658 episode_t openquartzepisodes[] =
3659 {
3660         {"Single Player", 0, 1},
3661         {"Void Deathmatch", 1, 6},
3662         {"Contrib", 7, 6},
3663 };
3664
3665 level_t defeatindetail2levels[] =
3666 {
3667         {"atac3",       "River Crossing"},
3668         {"atac4",       "Canyon Chaos"},
3669         {"atac7",       "Desert Stormer"},
3670 };
3671
3672 episode_t defeatindetail2episodes[] =
3673 {
3674         {"ATAC Campaign", 0, 3},
3675 };
3676
3677 gamelevels_t sharewarequakegame = {"Shareware Quake", quakelevels, quakeepisodes, 2};
3678 gamelevels_t registeredquakegame = {"Quake", quakelevels, quakeepisodes, 7};
3679 gamelevels_t hipnoticgame = {"Scourge of Armagon", hipnoticlevels, hipnoticepisodes, 6};
3680 gamelevels_t roguegame = {"Dissolution of Eternity", roguelevels, rogueepisodes, 4};
3681 gamelevels_t nehahragame = {"Nehahra", nehahralevels, nehahraepisodes, 4};
3682 gamelevels_t transfusiongame = {"Transfusion", transfusionlevels, transfusionepisodes, 11};
3683 gamelevels_t goodvsbad2game = {"Good Vs. Bad 2", goodvsbad2levels, goodvsbad2episodes, 1};
3684 gamelevels_t battlemechgame = {"Battlemech", battlemechlevels, battlemechepisodes, 1};
3685 gamelevels_t openquartzgame = {"OpenQuartz", openquartzlevels, openquartzepisodes, 3};
3686 gamelevels_t defeatindetail2game = {"Defeat In Detail 2", defeatindetail2levels, defeatindetail2episodes, 1};
3687
3688 typedef struct
3689 {
3690         gamemode_t gameid;
3691         gamelevels_t *notregistered;
3692         gamelevels_t *registered;
3693 }
3694 gameinfo_t;
3695
3696 gameinfo_t gamelist[] =
3697 {
3698         {GAME_NORMAL, &sharewarequakegame, &registeredquakegame},
3699         {GAME_HIPNOTIC, &hipnoticgame, &hipnoticgame},
3700         {GAME_ROGUE, &roguegame, &roguegame},
3701         {GAME_NEHAHRA, &nehahragame, &nehahragame},
3702         {GAME_TRANSFUSION, &transfusiongame, &transfusiongame},
3703         {GAME_GOODVSBAD2, &goodvsbad2game, &goodvsbad2game},
3704         {GAME_BATTLEMECH, &battlemechgame, &battlemechgame},
3705         {GAME_OPENQUARTZ, &openquartzgame, &openquartzgame},
3706         {GAME_DEFEATINDETAIL2, &defeatindetail2game, &defeatindetail2game},
3707         {-1, &sharewarequakegame, &registeredquakegame} // final fallback
3708 };
3709
3710 gamelevels_t *lookupgameinfo(void)
3711 {
3712         int i;
3713         for (i = 0;gamelist[i].gameid >= 0 && gamelist[i].gameid != gamemode;i++);
3714         if (registered.integer)
3715                 return gamelist[i].registered;
3716         else
3717                 return gamelist[i].notregistered;
3718 }
3719
3720 int     startepisode;
3721 int     startlevel;
3722 int maxplayers;
3723 qboolean m_serverInfoMessage = false;
3724 double m_serverInfoMessageTime;
3725
3726 void M_Menu_GameOptions_f (void)
3727 {
3728         key_dest = key_menu;
3729         m_state = m_gameoptions;
3730         m_entersound = true;
3731         if (maxplayers == 0)
3732                 maxplayers = svs.maxclients;
3733         if (maxplayers < 2)
3734                 maxplayers = min(8, MAX_SCOREBOARD);
3735 }
3736
3737
3738 int gameoptions_cursor_table[] = {40, 56, 64, 72, 80, 88, 96, 104, 112, 140, 160, 168};
3739 #define NUM_GAMEOPTIONS 12
3740 int             gameoptions_cursor;
3741
3742 void M_GameOptions_Draw (void)
3743 {
3744         cachepic_t      *p;
3745         int             x;
3746         gamelevels_t *g;
3747
3748         M_Background(320, 200);
3749
3750         M_DrawPic (16, 4, "gfx/qplaque.lmp");
3751         p = Draw_CachePic ("gfx/p_multi.lmp", false);
3752         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
3753
3754         M_DrawTextBox (152, 32, 10, 1);
3755         M_Print(160, 40, "begin game");
3756
3757         M_Print(0, 56, "      Max players");
3758         M_Print(160, 56, va("%i", maxplayers) );
3759
3760         if (gamemode != GAME_GOODVSBAD2)
3761         {
3762                 M_Print(0, 64, "        Game Type");
3763                 if (gamemode == GAME_TRANSFUSION)
3764                 {
3765                         if (!coop.integer && !deathmatch.integer)
3766                                 Cvar_SetValue("deathmatch", 1);
3767                         if (deathmatch.integer == 0)
3768                                 M_Print(160, 64, "Cooperative");
3769                         else if (deathmatch.integer == 2)
3770                                 M_Print(160, 64, "Capture the Flag");
3771                         else
3772                                 M_Print(160, 64, "Blood Bath");
3773                 }
3774                 else if (gamemode == GAME_BATTLEMECH)
3775                 {
3776                         if (!deathmatch.integer)
3777                                 Cvar_SetValue("deathmatch", 1);
3778                         if (deathmatch.integer == 2)
3779                                 M_Print(160, 64, "Rambo Match");
3780                         else
3781                                 M_Print(160, 64, "Deathmatch");
3782                 }
3783                 else
3784                 {
3785                         if (!coop.integer && !deathmatch.integer)
3786                                 Cvar_SetValue("deathmatch", 1);
3787                         if (coop.integer)
3788                                 M_Print(160, 64, "Cooperative");
3789                         else
3790                                 M_Print(160, 64, "Deathmatch");
3791                 }
3792
3793                 M_Print(0, 72, "        Teamplay");
3794                 if (gamemode == GAME_ROGUE)
3795                 {
3796                         char *msg;
3797
3798                         switch((int)teamplay.integer)
3799                         {
3800                                 case 1: msg = "No Friendly Fire"; break;
3801                                 case 2: msg = "Friendly Fire"; break;
3802                                 case 3: msg = "Tag"; break;
3803                                 case 4: msg = "Capture the Flag"; break;
3804                                 case 5: msg = "One Flag CTF"; break;
3805                                 case 6: msg = "Three Team CTF"; break;
3806                                 default: msg = "Off"; break;
3807                         }
3808                         M_Print(160, 72, msg);
3809                 }
3810                 else
3811                 {
3812                         char *msg;
3813
3814                         switch (teamplay.integer)
3815                         {
3816                                 case 0: msg = "Off"; break;
3817                                 case 2: msg = "Friendly Fire"; break;
3818                                 default: msg = "No Friendly Fire"; break;
3819                         }
3820                         M_Print(160, 72, msg);
3821                 }
3822                 M_Print(0, 80, "            Skill");
3823                 if (gamemode == GAME_TRANSFUSION)
3824                 {
3825                         if (skill.integer == 1)
3826                                 M_Print(160, 80, "Still Kicking");
3827                         else if (skill.integer == 2)
3828                                 M_Print(160, 80, "Pink On The Inside");
3829                         else if (skill.integer == 3)
3830                                 M_Print(160, 80, "Lightly Broiled");
3831                         else if (skill.integer == 4)
3832                                 M_Print(160, 80, "Well Done");
3833                         else
3834                                 M_Print(160, 80, "Extra Crispy");
3835                 }
3836                 else
3837                 {
3838                         if (skill.integer == 0)
3839                                 M_Print(160, 80, "Easy difficulty");
3840                         else if (skill.integer == 1)
3841                                 M_Print(160, 80, "Normal difficulty");
3842                         else if (skill.integer == 2)
3843                                 M_Print(160, 80, "Hard difficulty");
3844                         else
3845                                 M_Print(160, 80, "Nightmare difficulty");
3846                 }
3847                 M_Print(0, 88, "       Frag Limit");
3848                 if (fraglimit.integer == 0)
3849                         M_Print(160, 88, "none");
3850                 else
3851                         M_Print(160, 88, va("%i frags", fraglimit.integer));
3852
3853                 M_Print(0, 96, "       Time Limit");
3854                 if (timelimit.integer == 0)
3855                         M_Print(160, 96, "none");
3856                 else
3857                         M_Print(160, 96, va("%i minutes", timelimit.integer));
3858         }
3859
3860         M_Print(0, 104, "    Public server");
3861         M_Print(160, 104, (sv_public.integer == 0) ? "no" : "yes");
3862
3863         M_Print(0, 112, "   Server maxrate");
3864         M_Print(160, 112, va("%i", sv_maxrate.integer));
3865
3866         M_Print(0, 128, "      Server name");
3867         M_DrawTextBox (0, 132, 38, 1);
3868         M_Print(8, 140, hostname.string);
3869
3870         g = lookupgameinfo();
3871
3872         if (gamemode != GAME_GOODVSBAD2)
3873         {
3874                 M_Print(0, 160, "         Episode");
3875                 M_Print(160, 160, g->episodes[startepisode].description);
3876         }
3877
3878         M_Print(0, 168, "           Level");
3879         M_Print(160, 168, g->levels[g->episodes[startepisode].firstLevel + startlevel].description);
3880         M_Print(160, 176, g->levels[g->episodes[startepisode].firstLevel + startlevel].name);
3881
3882 // line cursor
3883         if (gameoptions_cursor == 9)
3884                 M_DrawCharacter (8 + 8 * strlen(hostname.string), gameoptions_cursor_table[gameoptions_cursor], 10+((int)(realtime*4)&1));
3885         else
3886                 M_DrawCharacter (144, gameoptions_cursor_table[gameoptions_cursor], 12+((int)(realtime*4)&1));
3887
3888         if (m_serverInfoMessage)
3889         {
3890                 if ((realtime - m_serverInfoMessageTime) < 5.0)
3891                 {
3892                         x = (320-26*8)/2;
3893                         M_DrawTextBox (x, 138, 24, 4);
3894                         x += 8;
3895                         M_Print(x, 146, " More than 64 players?? ");
3896                         M_Print(x, 154, "  First, question your  ");
3897                         M_Print(x, 162, "   sanity, then email   ");
3898                         M_Print(x, 170, " havoc@telefragged.com  ");
3899                 }
3900                 else
3901                         m_serverInfoMessage = false;
3902         }
3903 }
3904
3905
3906 void M_NetStart_Change (int dir)
3907 {
3908         gamelevels_t *g;
3909         int count;
3910
3911         switch (gameoptions_cursor)
3912         {
3913         case 1:
3914                 maxplayers += dir;
3915                 if (maxplayers > MAX_SCOREBOARD)
3916                 {
3917                         maxplayers = MAX_SCOREBOARD;
3918                         m_serverInfoMessage = true;
3919                         m_serverInfoMessageTime = realtime;
3920                 }
3921                 if (maxplayers < 2)
3922                         maxplayers = 2;
3923                 break;
3924
3925         case 2:
3926                 if (gamemode == GAME_GOODVSBAD2)
3927                         break;
3928                 if (gamemode == GAME_TRANSFUSION)
3929                 {
3930                         switch (deathmatch.integer)
3931                         {
3932                                 // From Cooperative to BloodBath
3933                                 case 0:
3934                                         Cvar_SetValueQuick (&coop, 0);
3935                                         Cvar_SetValueQuick (&deathmatch, 1);
3936                                         break;
3937
3938                                 // From BloodBath to CTF
3939                                 case 1:
3940                                         Cvar_SetValueQuick (&coop, 0);
3941                                         Cvar_SetValueQuick (&deathmatch, 2);
3942                                         break;
3943
3944                                 // From CTF to Cooperative
3945                                 //case 2:
3946                                 default:
3947                                         Cvar_SetValueQuick (&coop, 1);
3948                                         Cvar_SetValueQuick (&deathmatch, 0);
3949                         }
3950                 }
3951                 else if (gamemode == GAME_BATTLEMECH)
3952                 {
3953                         if (deathmatch.integer == 2) // changing from Rambo to Deathmatch
3954                                 Cvar_SetValueQuick (&deathmatch, 0);
3955                         else // changing from Deathmatch to Rambo
3956                                 Cvar_SetValueQuick (&deathmatch, 2);
3957                 }
3958                 else
3959                 {
3960                         if (deathmatch.integer) // changing from deathmatch to coop
3961                         {
3962                                 Cvar_SetValueQuick (&coop, 1);
3963                                 Cvar_SetValueQuick (&deathmatch, 0);
3964                         }
3965                         else // changing from coop to deathmatch
3966                         {
3967                                 Cvar_SetValueQuick (&coop, 0);
3968                                 Cvar_SetValueQuick (&deathmatch, 1);
3969                         }
3970                 }
3971                 break;
3972
3973         case 3:
3974                 if (gamemode == GAME_GOODVSBAD2)
3975                         break;
3976                 if (gamemode == GAME_ROGUE)
3977                         count = 6;
3978                 else
3979                         count = 2;
3980
3981                 Cvar_SetValueQuick (&teamplay, teamplay.integer + dir);
3982                 if (teamplay.integer > count)
3983                         Cvar_SetValueQuick (&teamplay, 0);
3984                 else if (teamplay.integer < 0)
3985                         Cvar_SetValueQuick (&teamplay, count);
3986                 break;
3987
3988         case 4:
3989                 if (gamemode == GAME_GOODVSBAD2)
3990                         break;
3991                 Cvar_SetValueQuick (&skill, skill.integer + dir);
3992                 if (gamemode == GAME_TRANSFUSION)
3993                 {
3994                         if (skill.integer > 5)
3995                                 Cvar_SetValueQuick (&skill, 1);
3996                         if (skill.integer < 1)
3997                                 Cvar_SetValueQuick (&skill, 5);
3998                 }
3999                 else
4000                 {
4001                         if (skill.integer > 3)
4002                                 Cvar_SetValueQuick (&skill, 0);
4003                         if (skill.integer < 0)
4004                                 Cvar_SetValueQuick (&skill, 3);
4005                 }
4006                 break;
4007
4008         case 5:
4009                 if (gamemode == GAME_GOODVSBAD2)
4010                         break;
4011                 Cvar_SetValueQuick (&fraglimit, fraglimit.integer + dir*10);
4012                 if (fraglimit.integer > 100)
4013                         Cvar_SetValueQuick (&fraglimit, 0);
4014                 if (fraglimit.integer < 0)
4015                         Cvar_SetValueQuick (&fraglimit, 100);
4016                 break;
4017
4018         case 6:
4019                 if (gamemode == GAME_GOODVSBAD2)
4020                         break;
4021                 Cvar_SetValueQuick (&timelimit, timelimit.value + dir*5);
4022                 if (timelimit.value > 60)
4023                         Cvar_SetValueQuick (&timelimit, 0);
4024                 if (timelimit.value < 0)
4025                         Cvar_SetValueQuick (&timelimit, 60);
4026                 break;
4027
4028         case 7:
4029                 Cvar_SetValueQuick (&sv_public, !sv_public.integer);
4030                 break;
4031
4032         case 8:
4033                 Cvar_SetValueQuick (&sv_maxrate, sv_maxrate.integer + dir*500);
4034                 if (sv_maxrate.integer > NET_MAXRATE)
4035                         Cvar_SetValueQuick (&sv_maxrate, NET_MAXRATE);
4036                 if (sv_maxrate.integer < NET_MINRATE)
4037                         Cvar_SetValueQuick (&sv_maxrate, NET_MINRATE);
4038                 break;
4039
4040         case 9:
4041                 break;
4042
4043         case 10:
4044                 if (gamemode == GAME_GOODVSBAD2)
4045                         break;
4046                 startepisode += dir;
4047                 g = lookupgameinfo();
4048
4049                 if (startepisode < 0)
4050                         startepisode = g->numepisodes - 1;
4051
4052                 if (startepisode >= g->numepisodes)
4053                         startepisode = 0;
4054
4055                 startlevel = 0;
4056                 break;
4057
4058         case 11:
4059                 startlevel += dir;
4060                 g = lookupgameinfo();
4061
4062                 if (startlevel < 0)
4063                         startlevel = g->episodes[startepisode].levels - 1;
4064
4065                 if (startlevel >= g->episodes[startepisode].levels)
4066                         startlevel = 0;
4067                 break;
4068         }
4069 }
4070
4071 void M_GameOptions_Key (int key, char ascii)
4072 {
4073         gamelevels_t *g;
4074         int l;
4075         char hostnamebuf[128];
4076
4077         switch (key)
4078         {
4079         case K_ESCAPE:
4080                 M_Menu_MultiPlayer_f ();
4081                 break;
4082
4083         case K_UPARROW:
4084                 S_LocalSound ("sound/misc/menu1.wav");
4085                 gameoptions_cursor--;
4086                 if (gameoptions_cursor < 0)
4087                         gameoptions_cursor = NUM_GAMEOPTIONS-1;
4088                 break;
4089
4090         case K_DOWNARROW:
4091                 S_LocalSound ("sound/misc/menu1.wav");
4092                 gameoptions_cursor++;
4093                 if (gameoptions_cursor >= NUM_GAMEOPTIONS)
4094                         gameoptions_cursor = 0;
4095                 break;
4096
4097         case K_LEFTARROW:
4098                 if (gameoptions_cursor == 0)
4099                         break;
4100                 S_LocalSound ("sound/misc/menu3.wav");
4101                 M_NetStart_Change (-1);
4102                 break;
4103
4104         case K_RIGHTARROW:
4105                 if (gameoptions_cursor == 0)
4106                         break;
4107                 S_LocalSound ("sound/misc/menu3.wav");
4108                 M_NetStart_Change (1);
4109                 break;
4110
4111         case K_ENTER:
4112                 S_LocalSound ("sound/misc/menu2.wav");
4113                 if (gameoptions_cursor == 0)
4114                 {
4115                         if (sv.active)
4116                                 Cbuf_AddText ("disconnect\n");
4117                         Cbuf_AddText ( va ("maxplayers %u\n", maxplayers) );
4118
4119                         g = lookupgameinfo();
4120                         Cbuf_AddText ( va ("map %s\n", g->levels[g->episodes[startepisode].firstLevel + startlevel].name) );
4121                         return;
4122                 }
4123
4124                 M_NetStart_Change (1);
4125                 break;
4126
4127         case K_BACKSPACE:
4128                 if (gameoptions_cursor == 9)
4129                 {
4130                         l = (int)strlen(hostname.string);
4131                         if (l)
4132                         {
4133                                 l = min(l - 1, 37);
4134                                 memcpy(hostnamebuf, hostname.string, l);
4135                                 hostnamebuf[l] = 0;
4136                                 Cvar_Set("hostname", hostnamebuf);
4137                         }
4138                 }
4139                 break;
4140
4141         default:
4142                 if (ascii < 32 || ascii > 126)
4143                         break;
4144                 if (gameoptions_cursor == 9)
4145                 {
4146                         l = (int)strlen(hostname.string);
4147                         if (l < 37)
4148                         {
4149                                 memcpy(hostnamebuf, hostname.string, l);
4150                                 hostnamebuf[l] = ascii;
4151                                 hostnamebuf[l+1] = 0;
4152                                 Cvar_Set("hostname", hostnamebuf);
4153                         }
4154                 }
4155         }
4156 }
4157
4158 //=============================================================================
4159 /* SLIST MENU */
4160
4161 int slist_cursor;
4162
4163 void M_Menu_ServerList_f (void)
4164 {
4165         key_dest = key_menu;
4166         m_state = m_slist;
4167         m_entersound = true;
4168         slist_cursor = 0;
4169         M_Update_Return_Reason("");
4170         Net_Slist_f();
4171 }
4172
4173
4174 void M_ServerList_Draw (void)
4175 {
4176         int n, y, visible, start, end;
4177         cachepic_t *p;
4178         const char *s;
4179
4180         // use as much vertical space as available
4181         if (gamemode == GAME_TRANSFUSION)
4182                 M_Background(640, vid_conheight.integer - 80);
4183         else
4184                 M_Background(640, vid_conheight.integer);
4185         // scroll the list as the cursor moves
4186         s = va("%i/%i masters %i/%i servers", masterreplycount, masterquerycount, serverreplycount, serverquerycount);
4187         M_PrintRed((640 - strlen(s) * 8) / 2, 32, s);
4188         if (*m_return_reason)
4189                 M_Print(16, menu_height - 8, m_return_reason);
4190         y = 48;
4191         visible = (menu_height - 16 - y) / 8 / 2;
4192         start = bound(0, slist_cursor - (visible >> 1), serverlist_viewcount - visible);
4193         end = min(start + visible, serverlist_viewcount);
4194
4195         p = Draw_CachePic("gfx/p_multi.lmp", false);
4196         M_DrawPic((640 - p->width) / 2, 4, "gfx/p_multi.lmp");
4197         if (end > start)
4198         {
4199                 for (n = start;n < end;n++)
4200                 {
4201                         DrawQ_Fill(menu_x, menu_y + y, 640, 16, n == slist_cursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
4202                         M_Print(0, y, serverlist_viewlist[n]->line1);y += 8;
4203                         M_Print(0, y, serverlist_viewlist[n]->line2);y += 8;
4204                 }
4205         }
4206         else if (realtime - masterquerytime < 3)
4207         {
4208                 if (masterquerycount)
4209                         M_Print(0, y, "No servers found");
4210                 else
4211                         M_Print(0, y, "No master servers found (network problem?)");
4212         }
4213 }
4214
4215
4216 void M_ServerList_Key(int k, char ascii)
4217 {
4218         switch (k)
4219         {
4220         case K_ESCAPE:
4221                 M_Menu_LanConfig_f();
4222                 break;
4223
4224         case K_SPACE:
4225                 Net_Slist_f();
4226                 break;
4227
4228         case K_UPARROW:
4229         case K_LEFTARROW:
4230                 S_LocalSound ("sound/misc/menu1.wav");
4231                 slist_cursor--;
4232                 if (slist_cursor < 0)
4233                         slist_cursor = serverlist_viewcount - 1;
4234                 break;
4235
4236         case K_DOWNARROW:
4237         case K_RIGHTARROW:
4238                 S_LocalSound ("sound/misc/menu1.wav");
4239                 slist_cursor++;
4240                 if (slist_cursor >= serverlist_viewcount)
4241                         slist_cursor = 0;
4242                 break;
4243
4244         case K_ENTER:
4245                 S_LocalSound ("sound/misc/menu2.wav");
4246                 if (serverlist_viewcount)
4247                         Cbuf_AddText(va("connect \"%s\"\n", serverlist_viewlist[slist_cursor]->info.cname));
4248                 break;
4249
4250         default:
4251                 break;
4252         }
4253
4254 }
4255
4256 //=============================================================================
4257 /* Menu Subsystem */
4258
4259 void M_Keydown(int key, char ascii);
4260 void M_Draw(void);
4261 void M_ToggleMenu_f(void);
4262 void M_Shutdown(void);
4263
4264 void M_Init (void)
4265 {
4266         menuplyr_load = true;
4267         menuplyr_pixels = NULL;
4268
4269         Cmd_AddCommand ("menu_main", M_Menu_Main_f);
4270         Cmd_AddCommand ("menu_singleplayer", M_Menu_SinglePlayer_f);
4271         Cmd_AddCommand ("menu_load", M_Menu_Load_f);
4272         Cmd_AddCommand ("menu_save", M_Menu_Save_f);
4273         Cmd_AddCommand ("menu_multiplayer", M_Menu_MultiPlayer_f);
4274         Cmd_AddCommand ("menu_setup", M_Menu_Setup_f);
4275         Cmd_AddCommand ("menu_options", M_Menu_Options_f);
4276         Cmd_AddCommand ("menu_options_effects", M_Menu_Options_Effects_f);
4277         Cmd_AddCommand ("menu_options_graphics", M_Menu_Options_Graphics_f);
4278         Cmd_AddCommand ("menu_options_colorcontrol", M_Menu_Options_ColorControl_f);
4279         Cmd_AddCommand ("menu_keys", M_Menu_Keys_f);
4280         Cmd_AddCommand ("menu_video", M_Menu_Video_f);
4281         Cmd_AddCommand ("menu_reset", M_Menu_Reset_f);
4282         Cmd_AddCommand ("help", M_Menu_Help_f);
4283         Cmd_AddCommand ("menu_quit", M_Menu_Quit_f);
4284         Cmd_AddCommand ("menu_transfusion_episode", M_Menu_Transfusion_Episode_f);
4285         Cmd_AddCommand ("menu_transfusion_skill", M_Menu_Transfusion_Skill_f);
4286         Cmd_AddCommand ("menu_credits", M_Menu_Credits_f);
4287
4288         if (gamemode == GAME_TRANSFUSION)
4289         {
4290                 numcommands = sizeof(transfusionbindnames) / sizeof(transfusionbindnames[0]);
4291                 bindnames = transfusionbindnames;
4292         }
4293         else if (gamemode == GAME_GOODVSBAD2)
4294         {
4295                 numcommands = sizeof(goodvsbad2bindnames) / sizeof(goodvsbad2bindnames[0]);
4296                 bindnames = goodvsbad2bindnames;
4297         }
4298         else
4299         {
4300                 numcommands = sizeof(quakebindnames) / sizeof(quakebindnames[0]);
4301                 bindnames = quakebindnames;
4302         }
4303
4304         // Make sure "keys_cursor" doesn't start on a section in the binding list
4305         keys_cursor = 0;
4306         while (bindnames[keys_cursor][0][0] == '\0')
4307         {
4308                 keys_cursor++;
4309
4310                 // Only sections? There may be a problem somewhere...
4311                 if (keys_cursor >= numcommands)
4312                         Sys_Error ("M_Init: The key binding list only contains sections");
4313         }
4314
4315
4316         if (gamemode == GAME_NEHAHRA)
4317         {
4318                 if (FS_FileExists("maps/neh1m4.bsp"))
4319                 {
4320                         if (FS_FileExists("hearing.dem"))
4321                         {
4322                                 Con_Print("Nehahra movie and game detected.\n");
4323                                 NehGameType = TYPE_BOTH;
4324                         }
4325                         else
4326                         {
4327                                 Con_Print("Nehahra game detected.\n");
4328                                 NehGameType = TYPE_GAME;
4329                         }
4330                 }
4331                 else
4332                 {
4333                         if (FS_FileExists("hearing.dem"))
4334                         {
4335                                 Con_Print("Nehahra movie detected.\n");
4336                                 NehGameType = TYPE_DEMO;
4337                         }
4338                         else
4339                         {
4340                                 Con_Print("Nehahra not found.\n");
4341                                 NehGameType = TYPE_GAME; // could just complain, but...
4342                         }
4343                 }
4344         }
4345 }
4346
4347 void M_Draw (void)
4348 {
4349         if (key_dest != key_menu)
4350                 m_state = m_none;
4351
4352         if (m_state == m_none)
4353                 return;
4354
4355         switch (m_state)
4356         {
4357         case m_none:
4358                 break;
4359
4360         case m_main:
4361                 M_Main_Draw ();
4362                 break;
4363
4364         case m_demo:
4365                 M_Demo_Draw ();
4366                 break;
4367
4368         case m_singleplayer:
4369                 M_SinglePlayer_Draw ();
4370                 break;
4371
4372         case m_transfusion_episode:
4373                 M_Transfusion_Episode_Draw ();
4374                 break;
4375
4376         case m_transfusion_skill:
4377                 M_Transfusion_Skill_Draw ();
4378                 break;
4379
4380         case m_load:
4381                 M_Load_Draw ();
4382                 break;
4383
4384         case m_save:
4385                 M_Save_Draw ();
4386                 break;
4387
4388         case m_multiplayer:
4389                 M_MultiPlayer_Draw ();
4390                 break;
4391
4392         case m_setup:
4393                 M_Setup_Draw ();
4394                 break;
4395
4396         case m_options:
4397                 M_Options_Draw ();
4398                 break;
4399
4400         case m_options_effects:
4401                 M_Options_Effects_Draw ();
4402                 break;
4403
4404         case m_options_graphics:
4405                 M_Options_Graphics_Draw ();
4406                 break;
4407
4408         case m_options_colorcontrol:
4409                 M_Options_ColorControl_Draw ();
4410                 break;
4411
4412         case m_keys:
4413                 M_Keys_Draw ();
4414                 break;
4415
4416         case m_reset:
4417                 M_Reset_Draw ();
4418                 break;
4419
4420         case m_video:
4421                 M_Video_Draw ();
4422                 break;
4423
4424         case m_help:
4425                 M_Help_Draw ();
4426                 break;
4427
4428         case m_credits:
4429                 M_Credits_Draw ();
4430                 break;
4431
4432         case m_quit:
4433                 M_Quit_Draw ();
4434                 break;
4435
4436         case m_lanconfig:
4437                 M_LanConfig_Draw ();
4438                 break;
4439
4440         case m_gameoptions:
4441                 M_GameOptions_Draw ();
4442                 break;
4443
4444         case m_slist:
4445                 M_ServerList_Draw ();
4446                 break;
4447         }
4448
4449         if (gamemode == GAME_TRANSFUSION) {
4450                 if (m_state != m_credits) {
4451                         cachepic_t      *p;
4452                         int g, scale_x, scale_y, scale_y_repeat, top_offset;
4453                         float scale_y_rate;
4454                         scale_y_repeat = vid_conheight.integer * 2;
4455                         g = (int)(realtime * 64)%96;
4456                         scale_y_rate = (float)(g+1) / 96;
4457                         top_offset = (g+12)/12;
4458                         p = Draw_CachePic (va("gfx/blooddrip%i", top_offset), false);
4459                         for (scale_x = 0; scale_x <= vid_conwidth.integer; scale_x += p->width) {
4460                                 for (scale_y = -scale_y_repeat; scale_y <= vid_conheight.integer; scale_y += scale_y_repeat) {
4461                                         DrawQ_Pic (scale_x + 21, scale_y_repeat * .5 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4462                                         DrawQ_Pic (scale_x +  116, scale_y_repeat + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop1", 0, 0, 1, 1, 1, 1, 0);
4463                                         DrawQ_Pic (scale_x + 180, scale_y_repeat * .275 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4464                                         DrawQ_Pic (scale_x + 242, scale_y_repeat * .75 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4465                                         DrawQ_Pic (scale_x + 304, scale_y_repeat * .25 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4466                                         DrawQ_Pic (scale_x + 362, scale_y_repeat * .46125 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4467                                         DrawQ_Pic (scale_x + 402, scale_y_repeat * .1725 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4468                                         DrawQ_Pic (scale_x + 438, scale_y_repeat * .9 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop1", 0, 0, 1, 1, 1, 1, 0);
4469                                         DrawQ_Pic (scale_x + 484, scale_y_repeat * .5 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop3", 0, 0, 1, 1, 1, 1, 0);
4470                                         DrawQ_Pic (scale_x + 557, scale_y_repeat * .9425 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop1", 0, 0, 1, 1, 1, 1, 0);
4471                                         DrawQ_Pic (scale_x + 606, scale_y_repeat * .5 + scale_y + scale_y_rate * scale_y_repeat, "gfx/blooddrop2", 0, 0, 1, 1, 1, 1, 0);
4472                                 }
4473                                 DrawQ_Pic (scale_x, -1, va("gfx/blooddrip%i", top_offset), 0, 0, 1, 1, 1, 1, 0);
4474                         }
4475                 }
4476         }
4477
4478         if (m_entersound)
4479         {
4480                 S_LocalSound ("sound/misc/menu2.wav");
4481                 m_entersound = false;
4482         }
4483
4484         S_ExtraUpdate ();
4485 }
4486
4487
4488 void M_Keydown (int key, char ascii)
4489 {
4490         switch (m_state)
4491         {
4492         case m_none:
4493                 return;
4494
4495         case m_main:
4496                 M_Main_Key (key, ascii);
4497                 return;
4498
4499         case m_demo:
4500                 M_Demo_Key (key, ascii);
4501                 return;
4502
4503         case m_singleplayer:
4504                 M_SinglePlayer_Key (key, ascii);
4505                 return;
4506
4507         case m_transfusion_episode:
4508                 M_Transfusion_Episode_Key (key, ascii);
4509                 return;
4510
4511         case m_transfusion_skill:
4512                 M_Transfusion_Skill_Key (key, ascii);
4513                 return;
4514
4515         case m_load:
4516                 M_Load_Key (key, ascii);
4517                 return;
4518
4519         case m_save:
4520                 M_Save_Key (key, ascii);
4521                 return;
4522
4523         case m_multiplayer:
4524                 M_MultiPlayer_Key (key, ascii);
4525                 return;
4526
4527         case m_setup:
4528                 M_Setup_Key (key, ascii);
4529                 return;
4530
4531         case m_options:
4532                 M_Options_Key (key, ascii);
4533                 return;
4534
4535         case m_options_effects:
4536                 M_Options_Effects_Key (key, ascii);
4537                 return;
4538
4539         case m_options_graphics:
4540                 M_Options_Graphics_Key (key, ascii);
4541                 return;
4542
4543         case m_options_colorcontrol:
4544                 M_Options_ColorControl_Key (key, ascii);
4545                 return;
4546
4547         case m_keys:
4548                 M_Keys_Key (key, ascii);
4549                 return;
4550
4551         case m_reset:
4552                 M_Reset_Key (key, ascii);
4553                 return;
4554
4555
4556         case m_video:
4557                 M_Video_Key (key, ascii);
4558                 return;
4559
4560         case m_help:
4561                 M_Help_Key (key, ascii);
4562                 return;
4563
4564         case m_credits:
4565                 M_Credits_Key (key, ascii);
4566                 return;
4567
4568         case m_quit:
4569                 M_Quit_Key (key, ascii);
4570                 return;
4571
4572         case m_lanconfig:
4573                 M_LanConfig_Key (key, ascii);
4574                 return;
4575
4576         case m_gameoptions:
4577                 M_GameOptions_Key (key, ascii);
4578                 return;
4579
4580         case m_slist:
4581                 M_ServerList_Key (key, ascii);
4582                 return;
4583         }
4584 }
4585
4586 void M_Shutdown(void)
4587 {
4588         // reset key_dest
4589         key_dest = key_game;
4590 }
4591
4592 void M_Restart(void)
4593 {
4594 }
4595
4596 //============================================================================
4597 // Menu prog handling
4598 mfunction_t *PRVM_ED_FindFunction(const char *);
4599
4600 #define M_F_INIT                "m_init"
4601 #define M_F_KEYDOWN             "m_keydown"
4602 #define M_F_DRAW                "m_draw"
4603 // normal menu names (rest)
4604 #define M_F_TOGGLE              "m_toggle"
4605 #define M_F_SHUTDOWN    "m_shutdown"
4606
4607 static char *m_required_func[] = {
4608 M_F_INIT,
4609 M_F_KEYDOWN,
4610 M_F_DRAW,
4611 M_F_TOGGLE,
4612 M_F_SHUTDOWN,
4613 };
4614
4615 #ifdef NG_MENU
4616 qboolean m_displayed;
4617 #endif
4618
4619 static int m_numrequiredfunc = sizeof(m_required_func) / sizeof(char*);
4620
4621 static func_t m_draw, m_keydown;
4622
4623 void MR_SetRouting (qboolean forceold);
4624
4625 void MP_Error(const char *format, ...)
4626 {
4627         static qboolean processingError = false;
4628         char errorstring[4096];
4629         va_list argptr;
4630
4631         va_start (argptr, format);
4632         dpvsnprintf (errorstring, sizeof(errorstring), format, argptr);
4633         va_end (argptr);
4634         Con_Printf( "Menu_Error: %s\n", errorstring );
4635
4636         if( !processingError ) {
4637                 processingError = true;
4638                 PRVM_Crash();
4639                 processingError = false;
4640         } else {
4641                 Con_Printf( "Menu_Error: Recursive call to MP_Error (from PRVM_Crash)!\n" );
4642         }
4643
4644         // fall back to the normal menu
4645
4646         // say it
4647         Con_Print("Falling back to normal menu\n");
4648
4649         key_dest = key_game;
4650
4651         // init the normal menu now -> this will also correct the menu router pointers
4652         MR_SetRouting (TRUE);
4653
4654         Host_AbortCurrentFrame();
4655 }
4656
4657 void MP_Keydown (int key, char ascii)
4658 {
4659         PRVM_Begin;
4660         PRVM_SetProg(PRVM_MENUPROG);
4661
4662         // set time
4663         *prog->time = realtime;
4664
4665         // pass key
4666         prog->globals.generic[OFS_PARM0] = (float) key;
4667         prog->globals.generic[OFS_PARM1] = (float) ascii;
4668         PRVM_ExecuteProgram(m_keydown, M_F_KEYDOWN"(float key, float ascii) required\n");
4669
4670         PRVM_End;
4671 }
4672
4673 void MP_Draw (void)
4674 {
4675         PRVM_Begin;
4676         PRVM_SetProg(PRVM_MENUPROG);
4677
4678         // set time
4679         *prog->time = realtime;
4680
4681         PRVM_ExecuteProgram(m_draw,"");
4682
4683         PRVM_End;
4684 }
4685
4686 void MP_ToggleMenu_f (void)
4687 {
4688         PRVM_Begin;
4689         PRVM_SetProg(PRVM_MENUPROG);
4690
4691         // set time
4692         *prog->time = realtime;
4693
4694 #ifdef NG_MENU
4695         m_displayed = !m_displayed;
4696         if( m_displayed )
4697                 PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_DISPLAY) - prog->functions),"");
4698         else
4699                 PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_HIDE) - prog->functions),"");
4700 #else
4701         PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_TOGGLE) - prog->functions),"");
4702 #endif
4703
4704         PRVM_End;
4705 }
4706
4707 void MP_Shutdown (void)
4708 {
4709         PRVM_Begin;
4710         PRVM_SetProg(PRVM_MENUPROG);
4711
4712         // set time
4713         *prog->time = realtime;
4714
4715         PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_SHUTDOWN) - prog->functions),"");
4716
4717         // reset key_dest
4718         key_dest = key_game;
4719
4720         // AK not using this cause Im not sure whether this is useful at all instead :
4721         PRVM_ResetProg();
4722
4723         PRVM_End;
4724 }
4725
4726 void MP_Fallback (void)
4727 {
4728         MP_Shutdown();
4729
4730         key_dest = key_game;
4731
4732         // init the normal menu now -> this will also correct the menu router pointers
4733         MR_SetRouting (TRUE);
4734 }
4735
4736 void MP_Init (void)
4737 {
4738         PRVM_Begin;
4739         PRVM_InitProg(PRVM_MENUPROG);
4740
4741         prog->headercrc = M_PROGHEADER_CRC;
4742         prog->edictprivate_size = 0; // no private struct used
4743         prog->name = M_NAME;
4744         prog->num_edicts = 1;
4745         prog->limit_edicts = M_MAX_EDICTS;
4746         prog->extensionstring = vm_m_extensions;
4747         prog->builtins = vm_m_builtins;
4748         prog->numbuiltins = vm_m_numbuiltins;
4749         prog->init_cmd = VM_M_Cmd_Init;
4750         prog->reset_cmd = VM_M_Cmd_Reset;
4751         prog->error_cmd = MP_Error;
4752
4753         // allocate the mempools
4754         prog->progs_mempool = Mem_AllocPool(M_PROG_FILENAME, 0, NULL);
4755
4756         PRVM_LoadProgs(M_PROG_FILENAME, m_numrequiredfunc, m_required_func, 0, NULL);
4757
4758         // set m_draw and m_keydown
4759         m_draw = (func_t) (PRVM_ED_FindFunction(M_F_DRAW) - prog->functions);
4760         m_keydown = (func_t) (PRVM_ED_FindFunction(M_F_KEYDOWN) - prog->functions);
4761
4762 #ifdef NG_MENU
4763         m_displayed = false;
4764 #endif
4765
4766         // set time
4767         *prog->time = realtime;
4768
4769         // call the prog init
4770         PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_INIT) - prog->functions),"");
4771
4772         PRVM_End;
4773 }
4774
4775 void MP_Restart(void)
4776 {
4777         MP_Init();
4778 }
4779
4780 //============================================================================
4781 // Menu router
4782
4783 static cvar_t forceqmenu = { 0, "forceqmenu", "0" };
4784
4785 void MR_SetRouting(qboolean forceold)
4786 {
4787         static qboolean m_init = FALSE, mp_init = FALSE;
4788
4789         // if the menu prog isnt available or forceqmenu ist set, use the old menu
4790         if(!FS_FileExists(M_PROG_FILENAME) || forceqmenu.integer || forceold)
4791         {
4792                 // set menu router function pointers
4793                 MR_Keydown = M_Keydown;
4794                 MR_Draw = M_Draw;
4795                 MR_ToggleMenu_f = M_ToggleMenu_f;
4796                 MR_Shutdown = M_Shutdown;
4797
4798                 // init
4799                 if(!m_init)
4800                 {
4801                         M_Init();
4802                         m_init = TRUE;
4803                 }
4804                 else
4805                         M_Restart();
4806         }
4807         else
4808         {
4809                 // set menu router function pointers
4810                 MR_Keydown = MP_Keydown;
4811                 MR_Draw = MP_Draw;
4812                 MR_ToggleMenu_f = MP_ToggleMenu_f;
4813                 MR_Shutdown = MP_Shutdown;
4814
4815                 if(!mp_init)
4816                 {
4817                         MP_Init();
4818                         mp_init = TRUE;
4819                 }
4820                 else
4821                         MP_Restart();
4822         }
4823 }
4824
4825 void MR_Restart(void)
4826 {
4827         MR_Shutdown ();
4828         MR_SetRouting (FALSE);
4829 }
4830
4831 void Call_MR_ToggleMenu_f(void)
4832 {
4833         Host_StartVideo();
4834         if(MR_ToggleMenu_f)
4835                 MR_ToggleMenu_f();
4836 }
4837
4838 void MR_Init_Commands(void)
4839 {
4840         // set router console commands
4841         Cvar_RegisterVariable (&forceqmenu);
4842         Cvar_RegisterVariable (&menu_options_colorcontrol_correctionvalue);
4843         if (gamemode == GAME_NETHERWORLD)
4844                 Cmd_AddCommand ("menu_fallback", MP_Fallback); //Force to old-style menu
4845         Cmd_AddCommand ("menu_restart",MR_Restart);
4846         Cmd_AddCommand ("togglemenu", Call_MR_ToggleMenu_f);
4847 }
4848
4849 void MR_Init(void)
4850 {
4851         // use -forceqmenu to use always the normal quake menu (it sets forceqmenu to 1)
4852 // COMMANDLINEOPTION: Client: -forceqmenu disables menu.dat (same as +forceqmenu 1)
4853         if(COM_CheckParm("-forceqmenu"))
4854                 Cvar_SetValueQuick(&forceqmenu,1);
4855         // use -useqmenu for debugging proposes, cause it starts
4856         // the normal quake menu only the first time
4857 // COMMANDLINEOPTION: Client: -useqmenu causes the first time you open the menu to use the quake menu, then reverts to menu.dat (if forceqmenu is 0)
4858         if(COM_CheckParm("-useqmenu"))
4859                 MR_SetRouting (TRUE);
4860         else
4861                 MR_SetRouting (FALSE);
4862 }