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