]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - menu.c
added scr_screenshot_jpeg_quality cvar (and added it to the menu)
[xonotic/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 "image.h"
22
23 #include "mprogdefs.h"
24
25 #define TYPE_DEMO 1
26 #define TYPE_GAME 2
27 #define TYPE_BOTH 3
28
29 mempool_t *menu_mempool;
30
31 int NehGameType;
32
33 enum m_state_e m_state;
34
35 void M_Menu_Main_f (void);
36         void M_Menu_SinglePlayer_f (void);
37                 void M_Menu_Load_f (void);
38                 void M_Menu_Save_f (void);
39         void M_Menu_MultiPlayer_f (void);
40                 void M_Menu_Setup_f (void);
41         void M_Menu_Options_f (void);
42         void M_Menu_Options_Effects_f (void);
43         void M_Menu_Options_ColorControl_f (void);
44                 void M_Menu_Keys_f (void);
45                 void M_Menu_Video_f (void);
46         void M_Menu_Help_f (void);
47         void M_Menu_Quit_f (void);
48 void M_Menu_LanConfig_f (void);
49 void M_Menu_GameOptions_f (void);
50 void M_Menu_ServerList_f (void);
51
52 void M_Main_Draw (void);
53         void M_SinglePlayer_Draw (void);
54                 void M_Load_Draw (void);
55                 void M_Save_Draw (void);
56         void M_MultiPlayer_Draw (void);
57                 void M_Setup_Draw (void);
58         void M_Options_Draw (void);
59         void M_Options_Effects_Draw (void);
60         void M_Options_ColorControl_Draw (void);
61                 void M_Keys_Draw (void);
62                 void M_Video_Draw (void);
63         void M_Help_Draw (void);
64         void M_Quit_Draw (void);
65 void M_LanConfig_Draw (void);
66 void M_GameOptions_Draw (void);
67 void M_ServerList_Draw (void);
68
69 void M_Main_Key (int key, char ascii);
70         void M_SinglePlayer_Key (int key, char ascii);
71                 void M_Load_Key (int key, char ascii);
72                 void M_Save_Key (int key, char ascii);
73         void M_MultiPlayer_Key (int key, char ascii);
74                 void M_Setup_Key (int key, char ascii);
75         void M_Options_Key (int key, char ascii);
76         void M_Options_Effects_Key (int key, char ascii);
77         void M_Options_ColorControl_Key (int key, char ascii);
78                 void M_Keys_Key (int key, char ascii);
79                 void M_Video_Key (int key, char ascii);
80         void M_Help_Key (int key, char ascii);
81         void M_Quit_Key (int key, char ascii);
82 void M_LanConfig_Key (int key, char ascii);
83 void M_GameOptions_Key (int key, char ascii);
84 void M_ServerList_Key (int key, char ascii);
85
86 qboolean        m_entersound;           // play after drawing a frame, so caching
87                                                                 // won't disrupt the sound
88
89 char            m_return_reason [32];
90
91 #define StartingGame    (m_multiplayer_cursor == 1)
92 #define JoiningGame             (m_multiplayer_cursor == 0)
93
94 // Nehahra
95 #define NumberOfNehahraDemos 34
96 typedef struct
97 {
98         char *name;
99         char *desc;
100 } nehahrademonames_t;
101
102 nehahrademonames_t NehahraDemos[NumberOfNehahraDemos] =
103 {
104         {"intro", "Prologue"},
105         {"genf", "The Beginning"},
106         {"genlab", "A Doomed Project"},
107         {"nehcre", "The New Recruits"},
108         {"maxneh", "Breakthrough"},
109         {"maxchar", "Renewal and Duty"},
110         {"crisis", "Worlds Collide"},
111         {"postcris", "Darkening Skies"},
112         {"hearing", "The Hearing"},
113         {"getjack", "On a Mexican Radio"},
114         {"prelude", "Honor and Justice"},
115         {"abase", "A Message Sent"},
116         {"effect", "The Other Side"},
117         {"uhoh", "Missing in Action"},
118         {"prepare", "The Response"},
119         {"vision", "Farsighted Eyes"},
120         {"maxturns", "Enter the Immortal"},
121         {"backlot", "Separate Ways"},
122         {"maxside", "The Ancient Runes"},
123         {"counter", "The New Initiative"},
124         {"warprep", "Ghosts to the World"},
125         {"counter1", "A Fate Worse Than Death"},
126         {"counter2", "Friendly Fire"},
127         {"counter3", "Minor Setback"},
128         {"madmax", "Scores to Settle"},
129         {"quake", "One Man"},
130         {"cthmm", "Shattered Masks"},
131         {"shades", "Deal with the Dead"},
132         {"gophil", "An Unlikely Hero"},
133         {"cstrike", "War in Hell"},
134         {"shubset", "The Conspiracy"},
135         {"shubdie", "Even Death May Die"},
136         {"newranks", "An Empty Throne"},
137         {"seal", "The Seal is Broken"}
138 };
139
140 float menu_x, menu_y, menu_width, menu_height;
141
142 void M_Background(int width, int height)
143 {
144         menu_width = width;
145         menu_height = height;
146         menu_x = (vid.conwidth - menu_width) * 0.5;
147         menu_y = (vid.conheight - menu_height) * 0.5;
148         //DrawQ_Fill(menu_x, menu_y, menu_width, menu_height, 0, 0, 0, 0.5, 0);
149         DrawQ_Fill(0, 0, vid.conwidth, vid.conheight, 0, 0, 0, 0.5, 0);
150 }
151
152 /*
153 ================
154 M_DrawCharacter
155
156 Draws one solid graphics character
157 ================
158 */
159 void M_DrawCharacter (float cx, float cy, int num)
160 {
161         char temp[2];
162         temp[0] = num;
163         temp[1] = 0;
164         DrawQ_String(menu_x + cx, menu_y + cy, temp, 1, 8, 8, 1, 1, 1, 1, 0);
165 }
166
167 void M_Print (float cx, float cy, const char *str)
168 {
169         DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
170 }
171
172 void M_PrintRed (float cx, float cy, const char *str)
173 {
174         DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 0, 0, 1, 0);
175 }
176
177 void M_ItemPrint (float cx, float cy, char *str, int unghosted)
178 {
179         if (unghosted)
180                 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
181         else
182                 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 0.4, 0.4, 0.4, 1, 0);
183 }
184
185 void M_DrawPic (float cx, float cy, char *picname)
186 {
187         DrawQ_Pic (menu_x + cx, menu_y + cy, picname, 0, 0, 1, 1, 1, 1, 0);
188 }
189
190 qbyte identityTable[256];
191 qbyte translationTable[256];
192
193 void M_BuildTranslationTable(int top, int bottom)
194 {
195         int j;
196         qbyte *dest, *source;
197
198         for (j = 0; j < 256; j++)
199                 identityTable[j] = j;
200         dest = translationTable;
201         source = identityTable;
202         memcpy (dest, source, 256);
203
204         // LordHavoc: corrected skin color ranges
205         if (top < 128 || (top >= 224 && top < 240))     // the artists made some backwards ranges.  sigh.
206                 memcpy (dest + TOP_RANGE, source + top, 16);
207         else
208                 for (j=0 ; j<16 ; j++)
209                         dest[TOP_RANGE+j] = source[top+15-j];
210
211         // LordHavoc: corrected skin color ranges
212         if (bottom < 128 || (bottom >= 224 && bottom < 240))
213                 memcpy (dest + BOTTOM_RANGE, source + bottom, 16);
214         else
215                 for (j=0 ; j<16 ; j++)
216                         dest[BOTTOM_RANGE+j] = source[bottom+15-j];
217 }
218
219
220 void M_DrawTextBox (float x, float y, float width, float height)
221 {
222         int n;
223         float cx, cy;
224
225         // draw left side
226         cx = x;
227         cy = y;
228         M_DrawPic (cx, cy, "gfx/box_tl.lmp");
229         for (n = 0; n < height; n++)
230         {
231                 cy += 8;
232                 M_DrawPic (cx, cy, "gfx/box_ml.lmp");
233         }
234         M_DrawPic (cx, cy+8, "gfx/box_bl.lmp");
235
236         // draw middle
237         cx += 8;
238         while (width > 0)
239         {
240                 cy = y;
241                 M_DrawPic (cx, cy, "gfx/box_tm.lmp");
242                 for (n = 0; n < height; n++)
243                 {
244                         cy += 8;
245                         if (n >= 1)
246                                 M_DrawPic (cx, cy, "gfx/box_mm2.lmp");
247                         else
248                                 M_DrawPic (cx, cy, "gfx/box_mm.lmp");
249                 }
250                 M_DrawPic (cx, cy+8, "gfx/box_bm.lmp");
251                 width -= 2;
252                 cx += 16;
253         }
254
255         // draw right side
256         cy = y;
257         M_DrawPic (cx, cy, "gfx/box_tr.lmp");
258         for (n = 0; n < height; n++)
259         {
260                 cy += 8;
261                 M_DrawPic (cx, cy, "gfx/box_mr.lmp");
262         }
263         M_DrawPic (cx, cy+8, "gfx/box_br.lmp");
264 }
265
266 //=============================================================================
267
268 //int m_save_demonum;
269
270 /*
271 ================
272 M_ToggleMenu_f
273 ================
274 */
275 void M_ToggleMenu_f (void)
276 {
277         m_entersound = true;
278
279         if (key_dest != key_menu || m_state != m_main)
280                 M_Menu_Main_f ();
281         else
282         {
283                 key_dest = key_game;
284                 m_state = m_none;
285         }
286 }
287
288
289 int demo_cursor;
290 void M_Demo_Draw (void)
291 {
292         int i;
293
294         M_Background(320, 200);
295
296         for (i = 0;i < NumberOfNehahraDemos;i++)
297                 M_Print (16, 16 + 8*i, NehahraDemos[i].desc);
298
299         // line cursor
300         M_DrawCharacter (8, 16 + demo_cursor*8, 12+((int)(realtime*4)&1));
301 }
302
303
304 void M_Menu_Demos_f (void)
305 {
306         key_dest = key_menu;
307         m_state = m_demo;
308         m_entersound = true;
309 }
310
311 void M_Demo_Key (int k, char ascii)
312 {
313         switch (k)
314         {
315         case K_ESCAPE:
316                 M_Menu_Main_f ();
317                 break;
318
319         case K_ENTER:
320                 S_LocalSound ("misc/menu2.wav");
321                 m_state = m_none;
322                 key_dest = key_game;
323                 Cbuf_AddText (va ("playdemo %s\n", NehahraDemos[demo_cursor].name));
324                 return;
325
326         case K_UPARROW:
327         case K_LEFTARROW:
328                 S_LocalSound ("misc/menu1.wav");
329                 demo_cursor--;
330                 if (demo_cursor < 0)
331                         demo_cursor = NumberOfNehahraDemos-1;
332                 break;
333
334         case K_DOWNARROW:
335         case K_RIGHTARROW:
336                 S_LocalSound ("misc/menu1.wav");
337                 demo_cursor++;
338                 if (demo_cursor >= NumberOfNehahraDemos)
339                         demo_cursor = 0;
340                 break;
341         }
342 }
343
344 //=============================================================================
345 /* MAIN MENU */
346
347 int     m_main_cursor;
348
349 int MAIN_ITEMS = 4; // Nehahra: Menu Disable
350
351 void M_Menu_Main_f (void)
352 {
353         if (gamemode == GAME_NEHAHRA)
354         {
355                 if (NehGameType == TYPE_DEMO)
356                         MAIN_ITEMS = 4;
357                 else if (NehGameType == TYPE_GAME)
358                         MAIN_ITEMS = 5;
359                 else
360                         MAIN_ITEMS = 6;
361         }
362         else
363                 MAIN_ITEMS = 5;
364
365         /*
366         if (key_dest != key_menu)
367         {
368                 m_save_demonum = cls.demonum;
369                 cls.demonum = -1;
370         }
371         */
372         key_dest = key_menu;
373         m_state = m_main;
374         m_entersound = true;
375 }
376
377
378 void M_Main_Draw (void)
379 {
380         int             f;
381         cachepic_t      *p;
382
383         M_Background(320, 200);
384
385         M_DrawPic (16, 4, "gfx/qplaque.lmp");
386         p = Draw_CachePic ("gfx/ttl_main.lmp");
387         M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_main.lmp");
388 // Nehahra
389         if (gamemode == GAME_NEHAHRA)
390         {
391                 if (NehGameType == TYPE_BOTH)
392                         M_DrawPic (72, 32, "gfx/mainmenu.lmp");
393                 else if (NehGameType == TYPE_GAME)
394                         M_DrawPic (72, 32, "gfx/gamemenu.lmp");
395                 else
396                         M_DrawPic (72, 32, "gfx/demomenu.lmp");
397         }
398         else
399                 M_DrawPic (72, 32, "gfx/mainmenu.lmp");
400
401         f = (int)(realtime * 10)%6;
402
403         M_DrawPic (54, 32 + m_main_cursor * 20, va("gfx/menudot%i.lmp", f+1));
404 }
405
406
407 void M_Main_Key (int key, char ascii)
408 {
409         switch (key)
410         {
411         case K_ESCAPE:
412                 key_dest = key_game;
413                 m_state = m_none;
414                 //cls.demonum = m_save_demonum;
415                 //if (cls.demonum != -1 && !cls.demoplayback && cls.state != ca_connected)
416                 //      CL_NextDemo ();
417                 break;
418
419         case K_DOWNARROW:
420                 S_LocalSound ("misc/menu1.wav");
421                 if (++m_main_cursor >= MAIN_ITEMS)
422                         m_main_cursor = 0;
423                 break;
424
425         case K_UPARROW:
426                 S_LocalSound ("misc/menu1.wav");
427                 if (--m_main_cursor < 0)
428                         m_main_cursor = MAIN_ITEMS - 1;
429                 break;
430
431         case K_ENTER:
432                 m_entersound = true;
433
434                 if (gamemode == GAME_NEHAHRA)
435                 {
436                         switch (NehGameType)
437                         {
438                         case TYPE_BOTH:
439                                 switch (m_main_cursor)
440                                 {
441                                 case 0:
442                                         M_Menu_SinglePlayer_f ();
443                                         break;
444
445                                 case 1:
446                                         M_Menu_Demos_f ();
447                                         break;
448
449                                 case 2:
450                                         M_Menu_MultiPlayer_f ();
451                                         break;
452
453                                 case 3:
454                                         M_Menu_Options_f ();
455                                         break;
456
457                                 case 4:
458                                         key_dest = key_game;
459                                         if (sv.active)
460                                                 Cbuf_AddText ("disconnect\n");
461                                         Cbuf_AddText ("playdemo endcred\n");
462                                         break;
463
464                                 case 5:
465                                         M_Menu_Quit_f ();
466                                         break;
467                                 }
468                                 break;
469                         case TYPE_GAME:
470                                 switch (m_main_cursor)
471                                 {
472                                 case 0:
473                                         M_Menu_SinglePlayer_f ();
474                                         break;
475
476                                 case 1:
477                                         M_Menu_MultiPlayer_f ();
478                                         break;
479
480                                 case 2:
481                                         M_Menu_Options_f ();
482                                         break;
483
484                                 case 3:
485                                         key_dest = key_game;
486                                         if (sv.active)
487                                                 Cbuf_AddText ("disconnect\n");
488                                         Cbuf_AddText ("playdemo endcred\n");
489                                         break;
490
491                                 case 4:
492                                         M_Menu_Quit_f ();
493                                         break;
494                                 }
495                                 break;
496                         case TYPE_DEMO:
497                                 switch (m_main_cursor)
498                                 {
499                                 case 0:
500                                         M_Menu_Demos_f ();
501                                         break;
502
503                                 case 1:
504                                         key_dest = key_game;
505                                         if (sv.active)
506                                                 Cbuf_AddText ("disconnect\n");
507                                         Cbuf_AddText ("playdemo endcred\n");
508                                         break;
509
510                                 case 2:
511                                         M_Menu_Options_f ();
512                                         break;
513
514                                 case 3:
515                                         M_Menu_Quit_f ();
516                                         break;
517                                 }
518                                 break;
519                         }
520                 }
521                 else
522                 {
523                         switch (m_main_cursor)
524                         {
525                         case 0:
526                                 M_Menu_SinglePlayer_f ();
527                                 break;
528
529                         case 1:
530                                 M_Menu_MultiPlayer_f ();
531                                 break;
532
533                         case 2:
534                                 M_Menu_Options_f ();
535                                 break;
536
537                         case 3:
538                                 M_Menu_Help_f ();
539                                 break;
540
541                         case 4:
542                                 M_Menu_Quit_f ();
543                                 break;
544                         }
545                 }
546         }
547 }
548
549 //=============================================================================
550 /* SINGLE PLAYER MENU */
551
552 int     m_singleplayer_cursor;
553 #define SINGLEPLAYER_ITEMS      3
554
555
556 void M_Menu_SinglePlayer_f (void)
557 {
558         key_dest = key_menu;
559         m_state = m_singleplayer;
560         m_entersound = true;
561 }
562
563
564 void M_SinglePlayer_Draw (void)
565 {
566         cachepic_t      *p;
567
568         M_Background(320, 200);
569
570         M_DrawPic (16, 4, "gfx/qplaque.lmp");
571         p = Draw_CachePic ("gfx/ttl_sgl.lmp");
572
573         // Transfusion doesn't have a single player mode
574         if (gamemode == GAME_TRANSFUSION || gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
575         {
576                 M_DrawPic ((320 - p->width) / 2, 4, "gfx/ttl_sgl.lmp");
577
578                 M_DrawTextBox (60, 8 * 8, 23, 4);
579                 if (gamemode == GAME_NEXUIZ)
580                         M_Print (95, 10 * 8, "Nexuiz is for");
581                 else if (gamemode == GAME_GOODVSBAD2)
582                         M_Print (95, 10 * 8, "Good Vs Bad 2 is for");
583                 else if (gamemode == GAME_BATTLEMECH)
584                         M_Print (95, 10 * 8, "Battlemech is for");
585                 else
586                         M_Print (95, 10 * 8, "Transfusion is for");
587                 M_Print (83, 11 * 8, "multiplayer play only");
588         }
589         else
590         {
591                 int             f;
592
593                 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_sgl.lmp");
594                 M_DrawPic (72, 32, "gfx/sp_menu.lmp");
595
596                 f = (int)(realtime * 10)%6;
597
598                 M_DrawPic (54, 32 + m_singleplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
599         }
600 }
601
602
603 void M_SinglePlayer_Key (int key, char ascii)
604 {
605         if (gamemode == GAME_TRANSFUSION || gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
606         {
607                 if (key == K_ESCAPE || key == K_ENTER)
608                         m_state = m_main;
609                 return;
610         }
611
612         switch (key)
613         {
614         case K_ESCAPE:
615                 M_Menu_Main_f ();
616                 break;
617
618         case K_DOWNARROW:
619                 S_LocalSound ("misc/menu1.wav");
620                 if (++m_singleplayer_cursor >= SINGLEPLAYER_ITEMS)
621                         m_singleplayer_cursor = 0;
622                 break;
623
624         case K_UPARROW:
625                 S_LocalSound ("misc/menu1.wav");
626                 if (--m_singleplayer_cursor < 0)
627                         m_singleplayer_cursor = SINGLEPLAYER_ITEMS - 1;
628                 break;
629
630         case K_ENTER:
631                 m_entersound = true;
632
633                 switch (m_singleplayer_cursor)
634                 {
635                 case 0:
636                         key_dest = key_game;
637                         if (sv.active)
638                                 Cbuf_AddText ("disconnect\n");
639                         Cbuf_AddText ("maxplayers 1\n");
640                         Cbuf_AddText ("deathmatch 0\n");
641                         Cbuf_AddText ("coop 0\n");
642                         if (gamemode == GAME_NEHAHRA)
643                                 Cbuf_AddText ("map nehstart\n");
644                         else
645                                 Cbuf_AddText ("map start\n");
646                         break;
647
648                 case 1:
649                         M_Menu_Load_f ();
650                         break;
651
652                 case 2:
653                         M_Menu_Save_f ();
654                         break;
655                 }
656         }
657 }
658
659 //=============================================================================
660 /* LOAD/SAVE MENU */
661
662 int             load_cursor;            // 0 < load_cursor < MAX_SAVEGAMES
663
664 #define MAX_SAVEGAMES           12
665 char    m_filenames[MAX_SAVEGAMES][SAVEGAME_COMMENT_LENGTH+1];
666 int             loadable[MAX_SAVEGAMES];
667
668 void M_ScanSaves (void)
669 {
670         int             i, j;
671         char    name[MAX_OSPATH];
672         char    *str;
673         qfile_t *f;
674         int             version;
675
676         for (i=0 ; i<MAX_SAVEGAMES ; i++)
677         {
678                 strcpy (m_filenames[i], "--- UNUSED SLOT ---");
679                 loadable[i] = false;
680                 sprintf (name, "s%i.sav", i);
681                 f = FS_Open (name, "r", false);
682                 if (!f)
683                         continue;
684                 str = FS_Getline (f);
685                 sscanf (str, "%i\n", &version);
686                 str = FS_Getline (f);
687                 strlcpy (m_filenames[i], str, sizeof (m_filenames[i]));
688
689         // change _ back to space
690                 for (j=0 ; j<SAVEGAME_COMMENT_LENGTH ; j++)
691                         if (m_filenames[i][j] == '_')
692                                 m_filenames[i][j] = ' ';
693                 loadable[i] = true;
694                 FS_Close (f);
695         }
696 }
697
698 void M_Menu_Load_f (void)
699 {
700         m_entersound = true;
701         m_state = m_load;
702         key_dest = key_menu;
703         M_ScanSaves ();
704 }
705
706
707 void M_Menu_Save_f (void)
708 {
709         if (!sv.active)
710                 return;
711         if (cl.intermission)
712                 return;
713         if (!cl.islocalgame)
714                 return;
715         m_entersound = true;
716         m_state = m_save;
717         key_dest = key_menu;
718         M_ScanSaves ();
719 }
720
721
722 void M_Load_Draw (void)
723 {
724         int             i;
725         cachepic_t      *p;
726
727         M_Background(320, 200);
728
729         p = Draw_CachePic ("gfx/p_load.lmp");
730         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_load.lmp");
731
732         for (i=0 ; i< MAX_SAVEGAMES; i++)
733                 M_Print (16, 32 + 8*i, m_filenames[i]);
734
735 // line cursor
736         M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
737 }
738
739
740 void M_Save_Draw (void)
741 {
742         int             i;
743         cachepic_t      *p;
744
745         M_Background(320, 200);
746
747         p = Draw_CachePic ("gfx/p_save.lmp");
748         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_save.lmp");
749
750         for (i=0 ; i<MAX_SAVEGAMES ; i++)
751                 M_Print (16, 32 + 8*i, m_filenames[i]);
752
753 // line cursor
754         M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
755 }
756
757
758 void M_Load_Key (int k, char ascii)
759 {
760         switch (k)
761         {
762         case K_ESCAPE:
763                 M_Menu_SinglePlayer_f ();
764                 break;
765
766         case K_ENTER:
767                 S_LocalSound ("misc/menu2.wav");
768                 if (!loadable[load_cursor])
769                         return;
770                 m_state = m_none;
771                 key_dest = key_game;
772
773                 // issue the load command
774                 Cbuf_AddText (va ("load s%i\n", load_cursor) );
775                 return;
776
777         case K_UPARROW:
778         case K_LEFTARROW:
779                 S_LocalSound ("misc/menu1.wav");
780                 load_cursor--;
781                 if (load_cursor < 0)
782                         load_cursor = MAX_SAVEGAMES-1;
783                 break;
784
785         case K_DOWNARROW:
786         case K_RIGHTARROW:
787                 S_LocalSound ("misc/menu1.wav");
788                 load_cursor++;
789                 if (load_cursor >= MAX_SAVEGAMES)
790                         load_cursor = 0;
791                 break;
792         }
793 }
794
795
796 void M_Save_Key (int k, char ascii)
797 {
798         switch (k)
799         {
800         case K_ESCAPE:
801                 M_Menu_SinglePlayer_f ();
802                 break;
803
804         case K_ENTER:
805                 m_state = m_none;
806                 key_dest = key_game;
807                 Cbuf_AddText (va("save s%i\n", load_cursor));
808                 return;
809
810         case K_UPARROW:
811         case K_LEFTARROW:
812                 S_LocalSound ("misc/menu1.wav");
813                 load_cursor--;
814                 if (load_cursor < 0)
815                         load_cursor = MAX_SAVEGAMES-1;
816                 break;
817
818         case K_DOWNARROW:
819         case K_RIGHTARROW:
820                 S_LocalSound ("misc/menu1.wav");
821                 load_cursor++;
822                 if (load_cursor >= MAX_SAVEGAMES)
823                         load_cursor = 0;
824                 break;
825         }
826 }
827
828 //=============================================================================
829 /* MULTIPLAYER MENU */
830
831 int     m_multiplayer_cursor;
832 #define MULTIPLAYER_ITEMS       3
833
834
835 void M_Menu_MultiPlayer_f (void)
836 {
837         key_dest = key_menu;
838         m_state = m_multiplayer;
839         m_entersound = true;
840 }
841
842
843 void M_MultiPlayer_Draw (void)
844 {
845         int             f;
846         cachepic_t      *p;
847
848         M_Background(320, 200);
849
850         M_DrawPic (16, 4, "gfx/qplaque.lmp");
851         p = Draw_CachePic ("gfx/p_multi.lmp");
852         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
853         M_DrawPic (72, 32, "gfx/mp_menu.lmp");
854
855         f = (int)(realtime * 10)%6;
856
857         M_DrawPic (54, 32 + m_multiplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
858 }
859
860
861 void M_MultiPlayer_Key (int key, char ascii)
862 {
863         switch (key)
864         {
865         case K_ESCAPE:
866                 M_Menu_Main_f ();
867                 break;
868
869         case K_DOWNARROW:
870                 S_LocalSound ("misc/menu1.wav");
871                 if (++m_multiplayer_cursor >= MULTIPLAYER_ITEMS)
872                         m_multiplayer_cursor = 0;
873                 break;
874
875         case K_UPARROW:
876                 S_LocalSound ("misc/menu1.wav");
877                 if (--m_multiplayer_cursor < 0)
878                         m_multiplayer_cursor = MULTIPLAYER_ITEMS - 1;
879                 break;
880
881         case K_ENTER:
882                 m_entersound = true;
883                 switch (m_multiplayer_cursor)
884                 {
885                 case 0:
886                 case 1:
887                         M_Menu_LanConfig_f ();
888                         break;
889
890                 case 2:
891                         M_Menu_Setup_f ();
892                         break;
893                 }
894         }
895 }
896
897 //=============================================================================
898 /* SETUP MENU */
899
900 int             setup_cursor = 3;
901 int             setup_cursor_table[] = {40, 64, 88, 124};
902
903 char    setup_myname[32];
904 int             setup_oldtop;
905 int             setup_oldbottom;
906 int             setup_top;
907 int             setup_bottom;
908
909 #define NUM_SETUP_CMDS  4
910
911 void M_Menu_Setup_f (void)
912 {
913         key_dest = key_menu;
914         m_state = m_setup;
915         m_entersound = true;
916         strcpy(setup_myname, cl_name.string);
917         setup_top = setup_oldtop = cl_color.integer >> 4;
918         setup_bottom = setup_oldbottom = cl_color.integer & 15;
919 }
920
921 static int menuplyr_width, menuplyr_height, menuplyr_top, menuplyr_bottom, menuplyr_load;
922 static qbyte *menuplyr_pixels;
923 static unsigned int *menuplyr_translated;
924
925 void M_Setup_Draw (void)
926 {
927         int i;
928         cachepic_t      *p;
929
930         M_Background(320, 200);
931
932         M_DrawPic (16, 4, "gfx/qplaque.lmp");
933         p = Draw_CachePic ("gfx/p_multi.lmp");
934         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
935
936         M_Print (64, 40, "Your name");
937         M_DrawTextBox (160, 32, 16, 1);
938         M_Print (168, 40, setup_myname);
939
940         if (gamemode != GAME_GOODVSBAD2)
941         {
942                 M_Print (64, 64, "Shirt color");
943                 M_Print (64, 88, "Pants color");
944         }
945
946         M_DrawTextBox (64, 124-8, 14, 1);
947         M_Print (72, 124, "Accept Changes");
948
949         // LordHavoc: rewrote this code greatly
950         if (menuplyr_load)
951         {
952                 qbyte *data, *f;
953                 menuplyr_load = false;
954                 menuplyr_top = -1;
955                 menuplyr_bottom = -1;
956                 if ((f = FS_LoadFile("gfx/menuplyr.lmp", true)))
957                 {
958                         data = LoadLMPAs8Bit (f, 0, 0);
959                         menuplyr_width = image_width;
960                         menuplyr_height = image_height;
961                         Mem_Free(f);
962                         menuplyr_pixels = Mem_Alloc(menu_mempool, menuplyr_width * menuplyr_height);
963                         menuplyr_translated = Mem_Alloc(menu_mempool, menuplyr_width * menuplyr_height * 4);
964                         memcpy(menuplyr_pixels, data, menuplyr_width * menuplyr_height);
965                         Mem_Free(data);
966                 }
967         }
968
969         if (menuplyr_pixels)
970         {
971                 if (menuplyr_top != setup_top || menuplyr_bottom != setup_bottom)
972                 {
973                         menuplyr_top = setup_top;
974                         menuplyr_bottom = setup_bottom;
975                         M_BuildTranslationTable(menuplyr_top*16, menuplyr_bottom*16);
976                         for (i = 0;i < menuplyr_width * menuplyr_height;i++)
977                                 menuplyr_translated[i] = palette_complete[translationTable[menuplyr_pixels[i]]];
978                         Draw_NewPic("gfx/menuplyr.lmp", menuplyr_width, menuplyr_height, true, (qbyte *)menuplyr_translated);
979                 }
980                 M_DrawPic(160, 48, "gfx/bigbox.lmp");
981                 M_DrawPic(172, 56, "gfx/menuplyr.lmp");
982         }
983
984         if (setup_cursor == 0)
985                 M_DrawCharacter (168 + 8*strlen(setup_myname), setup_cursor_table [setup_cursor], 10+((int)(realtime*4)&1));
986         else
987                 M_DrawCharacter (56, setup_cursor_table [setup_cursor], 12+((int)(realtime*4)&1));
988 }
989
990
991 void M_Setup_Key (int k, char ascii)
992 {
993         int                     l;
994
995         switch (k)
996         {
997         case K_ESCAPE:
998                 M_Menu_MultiPlayer_f ();
999                 break;
1000
1001         case K_UPARROW:
1002                 S_LocalSound ("misc/menu1.wav");
1003                 setup_cursor--;
1004                 if (setup_cursor < 0)
1005                         setup_cursor = NUM_SETUP_CMDS-1;
1006                 break;
1007
1008         case K_DOWNARROW:
1009                 S_LocalSound ("misc/menu1.wav");
1010                 setup_cursor++;
1011                 if (setup_cursor >= NUM_SETUP_CMDS)
1012                         setup_cursor = 0;
1013                 break;
1014
1015         case K_LEFTARROW:
1016                 if (setup_cursor < 1)
1017                         return;
1018                 S_LocalSound ("misc/menu3.wav");
1019                 if (setup_cursor == 1)
1020                         setup_top = setup_top - 1;
1021                 if (setup_cursor == 2)
1022                         setup_bottom = setup_bottom - 1;
1023                 break;
1024         case K_RIGHTARROW:
1025                 if (setup_cursor < 1)
1026                         return;
1027 forward:
1028                 S_LocalSound ("misc/menu3.wav");
1029                 if (setup_cursor == 1)
1030                         setup_top = setup_top + 1;
1031                 if (setup_cursor == 2)
1032                         setup_bottom = setup_bottom + 1;
1033                 break;
1034
1035         case K_ENTER:
1036                 if (setup_cursor == 0)
1037                         return;
1038
1039                 if (setup_cursor == 1 || setup_cursor == 2)
1040                         goto forward;
1041
1042                 // setup_cursor == 3 (Accept changes)
1043                 if (strcmp(cl_name.string, setup_myname) != 0)
1044                         Cbuf_AddText ( va ("name \"%s\"\n", setup_myname) );
1045                 if (setup_top != setup_oldtop || setup_bottom != setup_oldbottom)
1046                         Cbuf_AddText( va ("color %i %i\n", setup_top, setup_bottom) );
1047                 m_entersound = true;
1048                 M_Menu_MultiPlayer_f ();
1049                 break;
1050
1051         case K_BACKSPACE:
1052                 if (setup_cursor == 0)
1053                 {
1054                         if (strlen(setup_myname))
1055                                 setup_myname[strlen(setup_myname)-1] = 0;
1056                 }
1057                 break;
1058
1059         default:
1060                 if (ascii < 32 || ascii > 126)
1061                         break;
1062                 if (setup_cursor == 0)
1063                 {
1064                         l = strlen(setup_myname);
1065                         if (l < 15)
1066                         {
1067                                 setup_myname[l+1] = 0;
1068                                 setup_myname[l] = ascii;
1069                         }
1070                 }
1071         }
1072
1073         if (setup_top > 15)
1074                 setup_top = 0;
1075         if (setup_top < 0)
1076                 setup_top = 15;
1077         if (setup_bottom > 15)
1078                 setup_bottom = 0;
1079         if (setup_bottom < 0)
1080                 setup_bottom = 15;
1081 }
1082
1083 //=============================================================================
1084 /* OPTIONS MENU */
1085
1086 #define SLIDER_RANGE    10
1087
1088 void M_DrawSlider (int x, int y, float num, float rangemin, float rangemax)
1089 {
1090         char text[16];
1091         int i;
1092         float range;
1093         range = bound(0, (num - rangemin) / (rangemax - rangemin), 1);
1094         M_DrawCharacter (x-8, y, 128);
1095         for (i = 0;i < SLIDER_RANGE;i++)
1096                 M_DrawCharacter (x + i*8, y, 129);
1097         M_DrawCharacter (x+i*8, y, 130);
1098         M_DrawCharacter (x + (SLIDER_RANGE-1)*8 * range, y, 131);
1099         if (fabs((int)num - num) < 0.01)
1100                 sprintf(text, "%i", (int)num);
1101         else
1102                 sprintf(text, "%.2f", num);
1103         M_Print(x + (SLIDER_RANGE+2) * 8, y, text);
1104 }
1105
1106 void M_DrawCheckbox (int x, int y, int on)
1107 {
1108         if (on)
1109                 M_Print (x, y, "on");
1110         else
1111                 M_Print (x, y, "off");
1112 }
1113
1114
1115 #define OPTIONS_ITEMS 34
1116
1117 int options_cursor;
1118
1119 void M_Menu_Options_f (void)
1120 {
1121         key_dest = key_menu;
1122         m_state = m_options;
1123         m_entersound = true;
1124 }
1125
1126 extern cvar_t snd_staticvolume;
1127 extern cvar_t gl_delayfinish;
1128 extern cvar_t slowmo;
1129 extern dllhandle_t jpeg_dll;
1130 extern cvar_t gl_texture_anisotropy;
1131
1132 void M_Menu_Options_AdjustSliders (int dir)
1133 {
1134         int optnum;
1135         S_LocalSound ("misc/menu3.wav");
1136
1137         optnum = 6;
1138         if (options_cursor == optnum++)
1139                 Cvar_SetValueQuick (&vid_conwidth, bound(320, vid_conwidth.value + dir * 64, 2048));
1140         else if (options_cursor == optnum++)
1141                 Cvar_SetValueQuick (&vid_conheight, bound(240, vid_conheight.value + dir * 48, 1536));
1142         else if (options_cursor == optnum++)
1143                 Cvar_SetValueQuick (&scr_conspeed, bound(0, scr_conspeed.value + dir * 100, 1000));
1144         else if (options_cursor == optnum++)
1145                 Cvar_SetValueQuick (&scr_conalpha, bound(0, scr_conalpha.value + dir * 0.2, 1));
1146         else if (options_cursor == optnum++)
1147                 Cvar_SetValueQuick (&scr_conbrightness, bound(0, scr_conbrightness.value + dir * 0.2, 1));
1148         else if (options_cursor == optnum++)
1149                 Cvar_SetValueQuick (&scr_viewsize, bound(30, scr_viewsize.value + dir * 10, 120));
1150         else if (options_cursor == optnum++)
1151                 Cvar_SetValueQuick (&scr_screenshot_jpeg, !scr_screenshot_jpeg.integer);
1152         else if (options_cursor == optnum++)
1153                 Cvar_SetValueQuick (&scr_screenshot_jpeg, bound(0, scr_screenshot_jpeg_quality.value + dir * 0.1, 1));
1154         else if (options_cursor == optnum++)
1155                 Cvar_SetValueQuick (&r_sky, !r_sky.integer);
1156         else if (options_cursor == optnum++)
1157                 Cvar_SetValueQuick (&gl_combine, !gl_combine.integer);
1158         else if (options_cursor == optnum++)
1159                 Cvar_SetValueQuick (&gl_dither, !gl_dither.integer);
1160         else if (options_cursor == optnum++)
1161                 Cvar_SetValueQuick (&gl_delayfinish, !gl_delayfinish.integer);
1162         else if (options_cursor == optnum++)
1163                 Cvar_SetValueQuick (&gl_texture_anisotropy, bound(0, gl_texture_anisotropy.value + dir, 8));
1164         else if (options_cursor == optnum++)
1165                 Cvar_SetValueQuick (&slowmo, bound(0, slowmo.value + dir * 0.25, 5));
1166         else if (options_cursor == optnum++)
1167 #ifdef _WIN32
1168                 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 1.0, 1));
1169 #else
1170                 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 0.1, 1));
1171 #endif
1172         else if (options_cursor == optnum++)
1173                 Cvar_SetValueQuick (&volume, bound(0, volume.value + dir * 0.1, 1));
1174         else if (options_cursor == optnum++)
1175                 Cvar_SetValueQuick (&snd_staticvolume, bound(0, snd_staticvolume.value + dir * 0.1, 1));
1176         else if (options_cursor == optnum++)
1177                 Cvar_SetValueQuick (&crosshair, bound(0, crosshair.integer + dir, 5));
1178         else if (options_cursor == optnum++)
1179                 Cvar_SetValueQuick (&crosshair_size, bound(1, crosshair_size.value + dir, 5));
1180         else if (options_cursor == optnum++)
1181                 Cvar_SetValueQuick (&crosshair_static, !crosshair_static.integer);
1182         else if (options_cursor == optnum++)
1183                 Cvar_SetValueQuick (&showfps, !showfps.integer);
1184         else if (options_cursor == optnum++)
1185         {
1186                 if (cl_forwardspeed.value > 200)
1187                 {
1188                         Cvar_SetValueQuick (&cl_forwardspeed, 200);
1189                         Cvar_SetValueQuick (&cl_backspeed, 200);
1190                 }
1191                 else
1192                 {
1193                         Cvar_SetValueQuick (&cl_forwardspeed, 400);
1194                         Cvar_SetValueQuick (&cl_backspeed, 400);
1195                 }
1196         }
1197         else if (options_cursor == optnum++)
1198                 Cvar_SetValueQuick (&lookspring, !lookspring.integer);
1199         else if (options_cursor == optnum++)
1200                 Cvar_SetValueQuick (&lookstrafe, !lookstrafe.integer);
1201         else if (options_cursor == optnum++)
1202                 Cvar_SetValueQuick (&sensitivity, bound(1, sensitivity.value + dir * 0.5, 50));
1203         else if (options_cursor == optnum++)
1204                 Cvar_SetValueQuick (&freelook, !freelook.integer);
1205         else if (options_cursor == optnum++)
1206                 Cvar_SetValueQuick (&m_pitch, -m_pitch.value);
1207         else if (options_cursor == optnum++)
1208                 Cvar_SetValueQuick (&vid_mouse, !vid_mouse.integer);
1209 }
1210
1211 int optnum;
1212 int opty;
1213 int optcursor;
1214
1215 void M_Options_PrintCommand(char *s, int enabled)
1216 {
1217         if (opty >= 32)
1218         {
1219                 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1220                 M_ItemPrint(0, opty, s, enabled);
1221         }
1222         opty += 8;
1223         optnum++;
1224 }
1225
1226 void M_Options_PrintCheckbox(char *s, int enabled, int yes)
1227 {
1228         if (opty >= 32)
1229         {
1230                 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1231                 M_ItemPrint(0, opty, s, enabled);
1232                 M_DrawCheckbox(0 + strlen(s) * 8 + 8, opty, yes);
1233         }
1234         opty += 8;
1235         optnum++;
1236 }
1237
1238 void M_Options_PrintSlider(char *s, int enabled, float value, float minvalue, float maxvalue)
1239 {
1240         if (opty >= 32)
1241         {
1242                 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1243                 M_ItemPrint(0, opty, s, enabled);
1244                 M_DrawSlider(0 + strlen(s) * 8 + 8, opty, value, minvalue, maxvalue);
1245         }
1246         opty += 8;
1247         optnum++;
1248 }
1249
1250 void M_Options_Draw (void)
1251 {
1252         int visible;
1253         cachepic_t      *p;
1254
1255         M_Background(320, 240);
1256
1257         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1258         p = Draw_CachePic("gfx/p_option.lmp");
1259         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1260
1261         optnum = 0;
1262         optcursor = options_cursor;
1263         visible = (vid.conheight - 32) / 8;
1264         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_ITEMS - visible)) * 8;
1265
1266         M_Options_PrintCommand( "Customize controls", true);
1267         M_Options_PrintCommand( "     Go to console", true);
1268         M_Options_PrintCommand( " Reset to defaults", true);
1269         M_Options_PrintCommand( "             Video", true);
1270         M_Options_PrintCommand( "           Effects", true);
1271         M_Options_PrintCommand( "     Color Control", true);
1272         M_Options_PrintSlider(  "  2D Screen Width ", true, vid_conwidth.value, 320, 2048);
1273         M_Options_PrintSlider(  "  2D Screen Height", true, vid_conheight.value, 240, 1536);
1274         M_Options_PrintSlider(  "     Console Speed", true, scr_conspeed.value, 0, 1000);
1275         M_Options_PrintSlider(  "     Console Alpha", true, scr_conalpha.value, 0, 1);
1276         M_Options_PrintSlider(  "Conback Brightness", true, scr_conbrightness.value, 0, 1);
1277         M_Options_PrintSlider(  "       Screen size", true, scr_viewsize.value, 30, 120);
1278         M_Options_PrintCheckbox("  JPEG screenshots", jpeg_dll != NULL, scr_screenshot_jpeg.integer);
1279         M_Options_PrintSlider(  "      JPEG quality", jpeg_dll != NULL, scr_screenshot_jpeg_quality.value, 0, 1);
1280         M_Options_PrintCheckbox("               Sky", true, r_sky.integer);
1281         M_Options_PrintCheckbox("   Texture Combine", true, gl_combine.integer);
1282         M_Options_PrintCheckbox("         Dithering", true, gl_dither.integer);
1283         M_Options_PrintCheckbox("Delay gfx (faster)", true, gl_delayfinish.integer);
1284         M_Options_PrintSlider(  "Anisotropic Filter", gl_support_anisotropy, gl_texture_anisotropy.value, 0, 8);
1285         M_Options_PrintSlider(  "        Game Speed", sv.active, slowmo.value, 0, 5);
1286         M_Options_PrintSlider(  "   CD Music Volume", cdaudioinitialized, bgmvolume.value, 0, 1);
1287         M_Options_PrintSlider(  "      Sound Volume", snd_initialized, volume.value, 0, 1);
1288         M_Options_PrintSlider(gamemode == GAME_GOODVSBAD2 ? "      Music Volume" : "    Ambient Volume", snd_initialized, snd_staticvolume.value, 0, 1);
1289         M_Options_PrintSlider(  "         Crosshair", true, crosshair.value, 0, 5);
1290         M_Options_PrintSlider(  "    Crosshair Size", true, crosshair_size.value, 1, 5);
1291         M_Options_PrintCheckbox("  Static Crosshair", true, crosshair_static.integer);
1292         M_Options_PrintCheckbox("    Show Framerate", true, showfps.integer);
1293         M_Options_PrintCheckbox("        Always Run", true, cl_forwardspeed.value > 200);
1294         M_Options_PrintCheckbox("        Lookspring", true, lookspring.integer);
1295         M_Options_PrintCheckbox("        Lookstrafe", true, lookstrafe.integer);
1296         M_Options_PrintSlider(  "       Mouse Speed", true, sensitivity.value, 1, 50);
1297         M_Options_PrintCheckbox("        Mouse Look", true, freelook.integer);
1298         M_Options_PrintCheckbox("      Invert Mouse", true, m_pitch.value < 0);
1299         M_Options_PrintCheckbox("         Use Mouse", true, vid_mouse.integer);
1300 }
1301
1302
1303 void M_Options_Key (int k, char ascii)
1304 {
1305         switch (k)
1306         {
1307         case K_ESCAPE:
1308                 M_Menu_Main_f ();
1309                 break;
1310
1311         case K_ENTER:
1312                 m_entersound = true;
1313                 switch (options_cursor)
1314                 {
1315                 case 0:
1316                         M_Menu_Keys_f ();
1317                         break;
1318                 case 1:
1319                         m_state = m_none;
1320                         key_dest = key_game;
1321                         Con_ToggleConsole_f ();
1322                         break;
1323                 case 2:
1324                         Cbuf_AddText ("exec default.cfg\n");
1325                         break;
1326                 case 3:
1327                         M_Menu_Video_f ();
1328                         break;
1329                 case 4:
1330                         M_Menu_Options_Effects_f ();
1331                         break;
1332                 case 5:
1333                         M_Menu_Options_ColorControl_f ();
1334                         break;
1335                 default:
1336                         M_Menu_Options_AdjustSliders (1);
1337                         break;
1338                 }
1339                 return;
1340
1341         case K_UPARROW:
1342                 S_LocalSound ("misc/menu1.wav");
1343                 options_cursor--;
1344                 if (options_cursor < 0)
1345                         options_cursor = OPTIONS_ITEMS-1;
1346                 break;
1347
1348         case K_DOWNARROW:
1349                 S_LocalSound ("misc/menu1.wav");
1350                 options_cursor++;
1351                 if (options_cursor >= OPTIONS_ITEMS)
1352                         options_cursor = 0;
1353                 break;
1354
1355         case K_LEFTARROW:
1356                 M_Menu_Options_AdjustSliders (-1);
1357                 break;
1358
1359         case K_RIGHTARROW:
1360                 M_Menu_Options_AdjustSliders (1);
1361                 break;
1362         }
1363 }
1364
1365 #define OPTIONS_EFFECTS_ITEMS   21
1366
1367 int options_effects_cursor;
1368
1369 void M_Menu_Options_Effects_f (void)
1370 {
1371         key_dest = key_menu;
1372         m_state = m_options_effects;
1373         m_entersound = true;
1374 }
1375
1376
1377 extern cvar_t r_detailtextures;
1378 extern cvar_t cl_particles;
1379 extern cvar_t cl_explosions;
1380 extern cvar_t cl_stainmaps;
1381 extern cvar_t cl_decals;
1382 extern cvar_t r_explosionclip;
1383 extern cvar_t r_modellights;
1384 extern cvar_t r_coronas;
1385 extern cvar_t gl_flashblend;
1386 extern cvar_t cl_particles_quality;
1387 extern cvar_t cl_particles_bulletimpacts;
1388 extern cvar_t cl_particles_smoke;
1389 extern cvar_t cl_particles_sparks;
1390 extern cvar_t cl_particles_bubbles;
1391 extern cvar_t cl_particles_blood;
1392 extern cvar_t cl_particles_blood_alpha;
1393
1394 void M_Menu_Options_Effects_AdjustSliders (int dir)
1395 {
1396         int optnum;
1397         S_LocalSound ("misc/menu3.wav");
1398
1399         optnum = 0;
1400         if (options_effects_cursor == optnum++)
1401                 Cvar_SetValueQuick (&r_modellights, bound(0, r_modellights.value + dir, 8));
1402         else if (options_effects_cursor == optnum++)
1403                 Cvar_SetValueQuick (&r_coronas, !r_coronas.integer);
1404         else if (options_effects_cursor == optnum++)
1405                 Cvar_SetValueQuick (&gl_flashblend, !gl_flashblend.integer);
1406         else if (options_effects_cursor == optnum++)
1407                 Cvar_SetValueQuick (&cl_particles, !cl_particles.integer);
1408         else if (options_effects_cursor == optnum++)
1409                 Cvar_SetValueQuick (&cl_particles_quality, bound(1, cl_particles_quality.value + dir * 0.5, 4));
1410         else if (options_effects_cursor == optnum++)
1411                 Cvar_SetValueQuick (&cl_explosions, !cl_explosions.integer);
1412         else if (options_effects_cursor == optnum++)
1413                 Cvar_SetValueQuick (&r_explosionclip, !r_explosionclip.integer);
1414         else if (options_effects_cursor == optnum++)
1415                 Cvar_SetValueQuick (&cl_stainmaps, !cl_stainmaps.integer);
1416         else if (options_effects_cursor == optnum++)
1417                 Cvar_SetValueQuick (&cl_decals, !cl_decals.integer);
1418         else if (options_effects_cursor == optnum++)
1419                 Cvar_SetValueQuick (&r_detailtextures, !r_detailtextures.integer);
1420         else if (options_effects_cursor == optnum++)
1421                 Cvar_SetValueQuick (&cl_particles_bulletimpacts, !cl_particles_bulletimpacts.integer);
1422         else if (options_effects_cursor == optnum++)
1423                 Cvar_SetValueQuick (&cl_particles_smoke, !cl_particles_smoke.integer);
1424         else if (options_effects_cursor == optnum++)
1425                 Cvar_SetValueQuick (&cl_particles_sparks, !cl_particles_sparks.integer);
1426         else if (options_effects_cursor == optnum++)
1427                 Cvar_SetValueQuick (&cl_particles_bubbles, !cl_particles_bubbles.integer);
1428         else if (options_effects_cursor == optnum++)
1429                 Cvar_SetValueQuick (&cl_particles_blood, !cl_particles_blood.integer);
1430         else if (options_effects_cursor == optnum++)
1431                 Cvar_SetValueQuick (&cl_particles_blood_alpha, bound(0.2, cl_particles_blood_alpha.value + dir * 0.1, 1));
1432         else if (options_effects_cursor == optnum++)
1433                 Cvar_SetValueQuick (&r_lerpmodels, !r_lerpmodels.integer);
1434         else if (options_effects_cursor == optnum++)
1435                 Cvar_SetValueQuick (&r_lerpsprites, !r_lerpsprites.integer);
1436         else if (options_effects_cursor == optnum++)
1437                 Cvar_SetValueQuick (&r_wateralpha, bound(0, r_wateralpha.value + dir * 0.1, 1));
1438         else if (options_effects_cursor == optnum++)
1439                 Cvar_SetValueQuick (&r_waterscroll, bound(0, r_waterscroll.value + dir * 0.5, 10));
1440         else if (options_effects_cursor == optnum++)
1441                 Cvar_SetValueQuick (&r_watershader, bound(0, r_watershader.value + dir * 0.25, 10));
1442 }
1443
1444 void M_Options_Effects_Draw (void)
1445 {
1446         int visible;
1447         cachepic_t      *p;
1448
1449         M_Background(320, 200);
1450
1451         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1452         p = Draw_CachePic("gfx/p_option.lmp");
1453         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1454
1455         optcursor = options_effects_cursor;
1456         optnum = 0;
1457         visible = (vid.conheight - 32) / 8;
1458         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_EFFECTS_ITEMS - visible)) * 8;
1459
1460         M_Options_PrintSlider(  "      Lights Per Model", true, r_modellights.value, 0, 8);
1461         M_Options_PrintCheckbox("               Coronas", true, r_coronas.integer);
1462         M_Options_PrintCheckbox("      Use Only Coronas", true, gl_flashblend.integer);
1463         M_Options_PrintCheckbox("             Particles", true, cl_particles.integer);
1464         M_Options_PrintSlider(  "     Particles Quality", true, cl_particles_quality.value, 1, 4);
1465         M_Options_PrintCheckbox("            Explosions", true, cl_explosions.integer);
1466         M_Options_PrintCheckbox("    Explosion Clipping", true, r_explosionclip.integer);
1467         M_Options_PrintCheckbox("             Stainmaps", true, cl_stainmaps.integer);
1468         M_Options_PrintCheckbox("                Decals", true, cl_decals.integer);
1469         M_Options_PrintCheckbox("      Detail Texturing", true, r_detailtextures.integer);
1470         M_Options_PrintCheckbox("        Bullet Impacts", true, cl_particles_bulletimpacts.integer);
1471         M_Options_PrintCheckbox("                 Smoke", true, cl_particles_smoke.integer);
1472         M_Options_PrintCheckbox("                Sparks", true, cl_particles_sparks.integer);
1473         M_Options_PrintCheckbox("               Bubbles", true, cl_particles_bubbles.integer);
1474         M_Options_PrintCheckbox("                 Blood", true, cl_particles_blood.integer);
1475         M_Options_PrintSlider(  "         Blood Opacity", true, cl_particles_blood_alpha.value, 0.2, 1);
1476         M_Options_PrintCheckbox("   Model Interpolation", true, r_lerpmodels.integer);
1477         M_Options_PrintCheckbox("  Sprite Interpolation", true, r_lerpsprites.integer);
1478         M_Options_PrintSlider(  " Water Alpha (opacity)", true, r_wateralpha.value, 0, 1);
1479         M_Options_PrintSlider(  "        Water Movement", true, r_waterscroll.value, 0, 10);
1480         M_Options_PrintSlider(  " GeForce3 Water Shader", true, r_watershader.value, 0, 10);
1481 }
1482
1483
1484 void M_Options_Effects_Key (int k, char ascii)
1485 {
1486         switch (k)
1487         {
1488         case K_ESCAPE:
1489                 M_Menu_Options_f ();
1490                 break;
1491
1492         case K_ENTER:
1493                 M_Menu_Options_Effects_AdjustSliders (1);
1494                 break;
1495
1496         case K_UPARROW:
1497                 S_LocalSound ("misc/menu1.wav");
1498                 options_effects_cursor--;
1499                 if (options_effects_cursor < 0)
1500                         options_effects_cursor = OPTIONS_EFFECTS_ITEMS-1;
1501                 break;
1502
1503         case K_DOWNARROW:
1504                 S_LocalSound ("misc/menu1.wav");
1505                 options_effects_cursor++;
1506                 if (options_effects_cursor >= OPTIONS_EFFECTS_ITEMS)
1507                         options_effects_cursor = 0;
1508                 break;
1509
1510         case K_LEFTARROW:
1511                 M_Menu_Options_Effects_AdjustSliders (-1);
1512                 break;
1513
1514         case K_RIGHTARROW:
1515                 M_Menu_Options_Effects_AdjustSliders (1);
1516                 break;
1517         }
1518 }
1519
1520
1521
1522
1523
1524 #define OPTIONS_COLORCONTROL_ITEMS      18
1525
1526 int             options_colorcontrol_cursor;
1527
1528 // intensity value to match up to 50% dither to 'correct' quake
1529 cvar_t menu_options_colorcontrol_correctionvalue = {0, "menu_options_colorcontrol_correctionvalue", "0.25"};
1530
1531 void M_Menu_Options_ColorControl_f (void)
1532 {
1533         key_dest = key_menu;
1534         m_state = m_options_colorcontrol;
1535         m_entersound = true;
1536 }
1537
1538
1539 void M_Menu_Options_ColorControl_AdjustSliders (int dir)
1540 {
1541         int optnum;
1542         float f;
1543         S_LocalSound ("misc/menu3.wav");
1544
1545         optnum = 1;
1546         if (options_colorcontrol_cursor == optnum++)
1547                 Cvar_SetValueQuick (&v_hwgamma, !v_hwgamma.integer);
1548         else if (options_colorcontrol_cursor == optnum++)
1549         {
1550                 Cvar_SetValueQuick (&v_color_enable, 0);
1551                 Cvar_SetValueQuick (&v_gamma, bound(1, v_gamma.value + dir * 0.125, 5));
1552         }
1553         else if (options_colorcontrol_cursor == optnum++)
1554         {
1555                 Cvar_SetValueQuick (&v_color_enable, 0);
1556                 Cvar_SetValueQuick (&v_contrast, bound(1, v_contrast.value + dir * 0.125, 5));
1557         }
1558         else if (options_colorcontrol_cursor == optnum++)
1559         {
1560                 Cvar_SetValueQuick (&v_color_enable, 0);
1561                 Cvar_SetValueQuick (&v_brightness, bound(0, v_brightness.value + dir * 0.05, 0.8));
1562         }
1563         else if (options_colorcontrol_cursor == optnum++)
1564         {
1565                 Cvar_SetValueQuick (&v_color_enable, !v_color_enable.integer);
1566         }
1567         else if (options_colorcontrol_cursor == optnum++)
1568         {
1569                 Cvar_SetValueQuick (&v_color_enable, 1);
1570                 Cvar_SetValueQuick (&v_color_black_r, bound(0, v_color_black_r.value + dir * 0.0125, 0.8));
1571         }
1572         else if (options_colorcontrol_cursor == optnum++)
1573         {
1574                 Cvar_SetValueQuick (&v_color_enable, 1);
1575                 Cvar_SetValueQuick (&v_color_black_g, bound(0, v_color_black_g.value + dir * 0.0125, 0.8));
1576         }
1577         else if (options_colorcontrol_cursor == optnum++)
1578         {
1579                 Cvar_SetValueQuick (&v_color_enable, 1);
1580                 Cvar_SetValueQuick (&v_color_black_b, bound(0, v_color_black_b.value + dir * 0.0125, 0.8));
1581         }
1582         else if (options_colorcontrol_cursor == optnum++)
1583         {
1584                 Cvar_SetValueQuick (&v_color_enable, 1);
1585                 f = bound(0, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3 + dir * 0.0125, 0.8);
1586                 Cvar_SetValueQuick (&v_color_black_r, f);
1587                 Cvar_SetValueQuick (&v_color_black_g, f);
1588                 Cvar_SetValueQuick (&v_color_black_b, f);
1589         }
1590         else if (options_colorcontrol_cursor == optnum++)
1591         {
1592                 Cvar_SetValueQuick (&v_color_enable, 1);
1593                 Cvar_SetValueQuick (&v_color_grey_r, bound(0, v_color_grey_r.value + dir * 0.0125, 0.95));
1594         }
1595         else if (options_colorcontrol_cursor == optnum++)
1596         {
1597                 Cvar_SetValueQuick (&v_color_enable, 1);
1598                 Cvar_SetValueQuick (&v_color_grey_g, bound(0, v_color_grey_g.value + dir * 0.0125, 0.95));
1599         }
1600         else if (options_colorcontrol_cursor == optnum++)
1601         {
1602                 Cvar_SetValueQuick (&v_color_enable, 1);
1603                 Cvar_SetValueQuick (&v_color_grey_b, bound(0, v_color_grey_b.value + dir * 0.0125, 0.95));
1604         }
1605         else if (options_colorcontrol_cursor == optnum++)
1606         {
1607                 Cvar_SetValueQuick (&v_color_enable, 1);
1608                 f = bound(0, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3 + dir * 0.0125, 0.95);
1609                 Cvar_SetValueQuick (&v_color_grey_r, f);
1610                 Cvar_SetValueQuick (&v_color_grey_g, f);
1611                 Cvar_SetValueQuick (&v_color_grey_b, f);
1612         }
1613         else if (options_colorcontrol_cursor == optnum++)
1614         {
1615                 Cvar_SetValueQuick (&v_color_enable, 1);
1616                 Cvar_SetValueQuick (&v_color_white_r, bound(1, v_color_white_r.value + dir * 0.125, 5));
1617         }
1618         else if (options_colorcontrol_cursor == optnum++)
1619         {
1620                 Cvar_SetValueQuick (&v_color_enable, 1);
1621                 Cvar_SetValueQuick (&v_color_white_g, bound(1, v_color_white_g.value + dir * 0.125, 5));
1622         }
1623         else if (options_colorcontrol_cursor == optnum++)
1624         {
1625                 Cvar_SetValueQuick (&v_color_enable, 1);
1626                 Cvar_SetValueQuick (&v_color_white_b, bound(1, v_color_white_b.value + dir * 0.125, 5));
1627         }
1628         else if (options_colorcontrol_cursor == optnum++)
1629         {
1630                 Cvar_SetValueQuick (&v_color_enable, 1);
1631                 f = bound(1, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3 + dir * 0.125, 5);
1632                 Cvar_SetValueQuick (&v_color_white_r, f);
1633                 Cvar_SetValueQuick (&v_color_white_g, f);
1634                 Cvar_SetValueQuick (&v_color_white_b, f);
1635         }
1636 }
1637
1638 void M_Options_ColorControl_Draw (void)
1639 {
1640         int visible;
1641         float x, c, s, t, u, v;
1642         cachepic_t      *p;
1643
1644         M_Background(320, 256);
1645
1646         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1647         p = Draw_CachePic("gfx/p_option.lmp");
1648         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1649
1650         optcursor = options_colorcontrol_cursor;
1651         optnum = 0;
1652         visible = (vid.conheight - 32) / 8;
1653         opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_COLORCONTROL_ITEMS - visible)) * 8;
1654
1655         M_Options_PrintCommand( "     Reset to defaults", true);
1656         M_Options_PrintCheckbox("Hardware Gamma Control", vid_hardwaregammasupported.integer, v_hwgamma.integer);
1657         M_Options_PrintSlider(  "                 Gamma", !v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_gamma.value, 1, 5);
1658         M_Options_PrintSlider(  "              Contrast", !v_color_enable.integer, v_contrast.value, 1, 5);
1659         M_Options_PrintSlider(  "            Brightness", !v_color_enable.integer, v_brightness.value, 0, 0.8);
1660         M_Options_PrintCheckbox("  Color Level Controls", true, v_color_enable.integer);
1661         M_Options_PrintSlider(  "          Black: Red  ", v_color_enable.integer, v_color_black_r.value, 0, 0.8);
1662         M_Options_PrintSlider(  "          Black: Green", v_color_enable.integer, v_color_black_g.value, 0, 0.8);
1663         M_Options_PrintSlider(  "          Black: Blue ", v_color_enable.integer, v_color_black_b.value, 0, 0.8);
1664         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);
1665         M_Options_PrintSlider(  "           Grey: Red  ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_r.value, 0, 0.95);
1666         M_Options_PrintSlider(  "           Grey: Green", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_g.value, 0, 0.95);
1667         M_Options_PrintSlider(  "           Grey: Blue ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_b.value, 0, 0.95);
1668         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);
1669         M_Options_PrintSlider(  "          White: Red  ", v_color_enable.integer, v_color_white_r.value, 1, 5);
1670         M_Options_PrintSlider(  "          White: Green", v_color_enable.integer, v_color_white_g.value, 1, 5);
1671         M_Options_PrintSlider(  "          White: Blue ", v_color_enable.integer, v_color_white_b.value, 1, 5);
1672         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);
1673
1674         opty += 4;
1675         DrawQ_Fill(menu_x, menu_y + opty, 320, 4 + 64 + 8 + 64 + 4, 0, 0, 0, 1, 0);opty += 4;
1676         s = (float) 312 / 2 * vid.realwidth / vid.conwidth;
1677         t = (float) 4 / 2 * vid.realheight / vid.conheight;
1678         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);opty += 4;
1679         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;
1680         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);opty += 4;
1681         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;
1682         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);opty += 4;
1683         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;
1684         DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);opty += 4;
1685         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;
1686
1687         c = menu_options_colorcontrol_correctionvalue.value; // intensity value that should be matched up to a 50% dither to 'correct' quake
1688         s = (float) 48 / 2 * vid.realwidth / vid.conwidth;
1689         t = (float) 48 / 2 * vid.realheight / vid.conheight;
1690         u = s * 0.5;
1691         v = t * 0.5;
1692         opty += 8;
1693         x = 4;
1694         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, c, 0, 0, 1, 0);
1695         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);
1696         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,0,0,1, u,0, 1,0,0,1, 0,v, 1,0,0,1, u,v, 1,0,0,1, 0);
1697         x += 80;
1698         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, 0, c, 0, 1, 0);
1699         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);
1700         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,1,0,1, u,0, 0,1,0,1, 0,v, 0,1,0,1, u,v, 0,1,0,1, 0);
1701         x += 80;
1702         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, 0, 0, c, 1, 0);
1703         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);
1704         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,0,1,1, u,0, 0,0,1,1, 0,v, 0,0,1,1, u,v, 0,0,1,1, 0);
1705         x += 80;
1706         DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, c, c, c, 1, 0);
1707         DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);
1708         DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,1,1,1, u,0, 1,1,1,1, 0,v, 1,1,1,1, u,v, 1,1,1,1, 0);
1709 }
1710
1711
1712 void M_Options_ColorControl_Key (int k, char ascii)
1713 {
1714         switch (k)
1715         {
1716         case K_ESCAPE:
1717                 M_Menu_Options_f ();
1718                 break;
1719
1720         case K_ENTER:
1721                 m_entersound = true;
1722                 switch (options_colorcontrol_cursor)
1723                 {
1724                 case 0:
1725                         Cvar_SetValueQuick(&v_hwgamma, 1);
1726                         Cvar_SetValueQuick(&v_gamma, 1);
1727                         Cvar_SetValueQuick(&v_contrast, 1);
1728                         Cvar_SetValueQuick(&v_brightness, 0);
1729                         Cvar_SetValueQuick(&v_color_enable, 0);
1730                         Cvar_SetValueQuick(&v_color_black_r, 0);
1731                         Cvar_SetValueQuick(&v_color_black_g, 0);
1732                         Cvar_SetValueQuick(&v_color_black_b, 0);
1733                         Cvar_SetValueQuick(&v_color_grey_r, 0);
1734                         Cvar_SetValueQuick(&v_color_grey_g, 0);
1735                         Cvar_SetValueQuick(&v_color_grey_b, 0);
1736                         Cvar_SetValueQuick(&v_color_white_r, 1);
1737                         Cvar_SetValueQuick(&v_color_white_g, 1);
1738                         Cvar_SetValueQuick(&v_color_white_b, 1);
1739                         Cbuf_AddText ("exec default.cfg\n");
1740                         break;
1741                 default:
1742                         M_Menu_Options_ColorControl_AdjustSliders (1);
1743                         break;
1744                 }
1745                 return;
1746
1747         case K_UPARROW:
1748                 S_LocalSound ("misc/menu1.wav");
1749                 options_colorcontrol_cursor--;
1750                 if (options_colorcontrol_cursor < 0)
1751                         options_colorcontrol_cursor = OPTIONS_COLORCONTROL_ITEMS-1;
1752                 break;
1753
1754         case K_DOWNARROW:
1755                 S_LocalSound ("misc/menu1.wav");
1756                 options_colorcontrol_cursor++;
1757                 if (options_colorcontrol_cursor >= OPTIONS_COLORCONTROL_ITEMS)
1758                         options_colorcontrol_cursor = 0;
1759                 break;
1760
1761         case K_LEFTARROW:
1762                 M_Menu_Options_ColorControl_AdjustSliders (-1);
1763                 break;
1764
1765         case K_RIGHTARROW:
1766                 M_Menu_Options_ColorControl_AdjustSliders (1);
1767                 break;
1768         }
1769 }
1770
1771
1772 //=============================================================================
1773 /* KEYS MENU */
1774
1775 char *quakebindnames[][2] =
1776 {
1777 {"+attack",             "attack"},
1778 {"impulse 10",          "next weapon"},
1779 {"impulse 12",          "previous weapon"},
1780 {"+jump",                       "jump / swim up"},
1781 {"+forward",            "walk forward"},
1782 {"+back",                       "backpedal"},
1783 {"+left",                       "turn left"},
1784 {"+right",                      "turn right"},
1785 {"+speed",                      "run"},
1786 {"+moveleft",           "step left"},
1787 {"+moveright",          "step right"},
1788 {"+strafe",             "sidestep"},
1789 {"+lookup",             "look up"},
1790 {"+lookdown",           "look down"},
1791 {"centerview",          "center view"},
1792 {"+mlook",                      "mouse look"},
1793 {"+klook",                      "keyboard look"},
1794 {"+moveup",                     "swim up"},
1795 {"+movedown",           "swim down"}
1796 };
1797
1798 char *transfusionbindnames[][2] =
1799 {
1800 {"",                            "Movement"},            // Movement commands
1801 {"+forward",            "walk forward"},
1802 {"+back",                       "backpedal"},
1803 {"+left",                       "turn left"},
1804 {"+right",                      "turn right"},
1805 {"+moveleft",           "step left"},
1806 {"+moveright",          "step right"},
1807 {"+jump",                       "jump / swim up"},
1808 {"+movedown",           "swim down"},
1809 {"",                            "Combat"},                      // Combat commands
1810 {"impulse 1",           "Pitch Fork"},
1811 {"impulse 2",           "Flare Gun"},
1812 {"impulse 3",           "Shotgun"},
1813 {"impulse 4",           "Machine Gun"},
1814 {"impulse 5",           "Incinerator"},
1815 {"impulse 6",           "Bombs (TNT)"},
1816 {"impulse 35",          "Proximity Bomb"},
1817 {"impulse 36",          "Remote Detonator"},
1818 {"impulse 7",           "Aerosol Can"},
1819 {"impulse 8",           "Tesla Cannon"},
1820 {"impulse 9",           "Life Leech"},
1821 {"impulse 10",          "Voodoo Doll"},
1822 {"impulse 21",          "next weapon"},
1823 {"impulse 22",          "previous weapon"},
1824 {"+attack",             "attack"},
1825 {"+button3",            "altfire"},
1826 {"",                            "Inventory"},           // Inventory commands
1827 {"impulse 40",          "Dr.'s Bag"},
1828 {"impulse 41",          "Crystal Ball"},
1829 {"impulse 42",          "Beast Vision"},
1830 {"impulse 43",          "Jump Boots"},
1831 {"impulse 23",          "next item"},
1832 {"impulse 24",          "previous item"},
1833 {"impulse 25",          "use item"},
1834 {"",                            "Misc"},                        // Misc commands
1835 {"+button4",            "use"},
1836 {"impulse 50",          "add bot (red)"},
1837 {"impulse 51",          "add bot (blue)"},
1838 {"impulse 52",          "kick a bot"},
1839 {"impulse 26",          "next armor type"},
1840 {"impulse 27",          "identify player"},
1841 {"impulse 55",          "voting menu"},
1842 {"impulse 56",          "observer mode"}
1843 };
1844
1845 char *goodvsbad2bindnames[][2] =
1846 {
1847 {"impulse 69",          "Power 1"},
1848 {"impulse 70",          "Power 2"},
1849 {"impulse 71",          "Power 3"},
1850 {"+jump",                       "jump / swim up"},
1851 {"+forward",            "walk forward"},
1852 {"+back",                       "backpedal"},
1853 {"+left",                       "turn left"},
1854 {"+right",                      "turn right"},
1855 {"+speed",                      "run"},
1856 {"+moveleft",           "step left"},
1857 {"+moveright",          "step right"},
1858 {"+strafe",             "sidestep"},
1859 {"+lookup",             "look up"},
1860 {"+lookdown",           "look down"},
1861 {"centerview",          "center view"},
1862 {"+mlook",                      "mouse look"},
1863 {"kill",                        "kill yourself"},
1864 {"+moveup",                     "swim up"},
1865 {"+movedown",           "swim down"}
1866 };
1867
1868 int numcommands;
1869 char *(*bindnames)[2];
1870
1871 /*
1872 typedef struct binditem_s
1873 {
1874         char *command, *description;
1875         struct binditem_s *next;
1876 }
1877 binditem_t;
1878
1879 typedef struct bindcategory_s
1880 {
1881         char *name;
1882         binditem_t *binds;
1883         struct bindcategory_s *next;
1884 }
1885 bindcategory_t;
1886
1887 bindcategory_t *bindcategories = NULL;
1888
1889 void M_ClearBinds (void)
1890 {
1891         for (c = bindcategories;c;c = cnext)
1892         {
1893                 cnext = c->next;
1894                 for (b = c->binds;b;b = bnext)
1895                 {
1896                         bnext = b->next;
1897                         Z_Free(b);
1898                 }
1899                 Z_Free(c);
1900         }
1901         bindcategories = NULL;
1902 }
1903
1904 void M_AddBindToCategory(bindcategory_t *c, char *command, char *description)
1905 {
1906         for (b = &c->binds;*b;*b = &(*b)->next);
1907         *b = Z_Alloc(sizeof(binditem_t) + strlen(command) + 1 + strlen(description) + 1);
1908         *b->command = (char *)((*b) + 1);
1909         *b->description = *b->command + strlen(command) + 1;
1910         strcpy(*b->command, command);
1911         strcpy(*b->description, description);
1912 }
1913
1914 void M_AddBind (char *category, char *command, char *description)
1915 {
1916         for (c = &bindcategories;*c;c = &(*c)->next)
1917         {
1918                 if (!strcmp(category, (*c)->name))
1919                 {
1920                         M_AddBindToCategory(*c, command, description);
1921                         return;
1922                 }
1923         }
1924         *c = Z_Alloc(sizeof(bindcategory_t));
1925         M_AddBindToCategory(*c, command, description);
1926 }
1927
1928 void M_DefaultBinds (void)
1929 {
1930         M_ClearBinds();
1931         M_AddBind("movement", "+jump", "jump / swim up");
1932         M_AddBind("movement", "+forward", "walk forward");
1933         M_AddBind("movement", "+back", "backpedal");
1934         M_AddBind("movement", "+left", "turn left");
1935         M_AddBind("movement", "+right", "turn right");
1936         M_AddBind("movement", "+speed", "run");
1937         M_AddBind("movement", "+moveleft", "step left");
1938         M_AddBind("movement", "+moveright", "step right");
1939         M_AddBind("movement", "+strafe", "sidestep");
1940         M_AddBind("movement", "+lookup", "look up");
1941         M_AddBind("movement", "+lookdown", "look down");
1942         M_AddBind("movement", "centerview", "center view");
1943         M_AddBind("movement", "+mlook", "mouse look");
1944         M_AddBind("movement", "+klook", "keyboard look");
1945         M_AddBind("movement", "+moveup", "swim up");
1946         M_AddBind("movement", "+movedown", "swim down");
1947         M_AddBind("weapons", "+attack", "attack");
1948         M_AddBind("weapons", "impulse 10", "next weapon");
1949         M_AddBind("weapons", "impulse 12", "previous weapon");
1950         M_AddBind("weapons", "impulse 1", "select weapon 1 (axe)");
1951         M_AddBind("weapons", "impulse 2", "select weapon 2 (shotgun)");
1952         M_AddBind("weapons", "impulse 3", "select weapon 3 (super )");
1953         M_AddBind("weapons", "impulse 4", "select weapon 4 (nailgun)");
1954         M_AddBind("weapons", "impulse 5", "select weapon 5 (super nailgun)");
1955         M_AddBind("weapons", "impulse 6", "select weapon 6 (grenade launcher)");
1956         M_AddBind("weapons", "impulse 7", "select weapon 7 (rocket launcher)");
1957         M_AddBind("weapons", "impulse 8", "select weapon 8 (lightning gun)");
1958 }
1959 */
1960
1961
1962 int             keys_cursor;
1963 int             bind_grab;
1964
1965 void M_Menu_Keys_f (void)
1966 {
1967         key_dest = key_menu;
1968         m_state = m_keys;
1969         m_entersound = true;
1970 }
1971
1972 #define NUMKEYS 5
1973
1974 void M_FindKeysForCommand (char *command, int *keys)
1975 {
1976         int             count;
1977         int             j;
1978         char    *b;
1979
1980         for (j = 0;j < NUMKEYS;j++)
1981                 keys[j] = -1;
1982
1983         count = 0;
1984
1985         for (j=0 ; j<256 ; j++)
1986         {
1987                 b = keybindings[j];
1988                 if (!b)
1989                         continue;
1990                 if (!strcmp (b, command) )
1991                 {
1992                         keys[count++] = j;
1993                         if (count == NUMKEYS)
1994                                 break;
1995                 }
1996         }
1997 }
1998
1999 void M_UnbindCommand (char *command)
2000 {
2001         int             j;
2002         char    *b;
2003
2004         for (j=0 ; j<256 ; j++)
2005         {
2006                 b = keybindings[j];
2007                 if (!b)
2008                         continue;
2009                 if (!strcmp (b, command))
2010                         Key_SetBinding (j, "");
2011         }
2012 }
2013
2014
2015 void M_Keys_Draw (void)
2016 {
2017         int             i, j;
2018         int             keys[NUMKEYS];
2019         int             y;
2020         cachepic_t      *p;
2021         char    keystring[1024];
2022
2023         M_Background(320, 48 + 8 * numcommands);
2024
2025         p = Draw_CachePic ("gfx/ttl_cstm.lmp");
2026         M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_cstm.lmp");
2027
2028         if (bind_grab)
2029                 M_Print (12, 32, "Press a key or button for this action");
2030         else
2031                 M_Print (18, 32, "Enter to change, backspace to clear");
2032
2033 // search for known bindings
2034         for (i=0 ; i<numcommands ; i++)
2035         {
2036                 y = 48 + 8*i;
2037
2038                 // If there's no command, it's just a section
2039                 if (bindnames[i][0][0] == '\0')
2040                 {
2041                         M_PrintRed (4, y, "\x0D");  // #13 is the little arrow pointing to the right
2042                         M_PrintRed (16, y, bindnames[i][1]);
2043                         continue;
2044                 }
2045                 else
2046                         M_Print (16, y, bindnames[i][1]);
2047
2048                 M_FindKeysForCommand (bindnames[i][0], keys);
2049
2050                 // LordHavoc: redesigned to print more than 2 keys, inspired by Tomaz's MiniRacer
2051                 if (keys[0] == -1)
2052                         strcpy(keystring, "???");
2053                 else
2054                 {
2055                         keystring[0] = 0;
2056                         for (j = 0;j < NUMKEYS;j++)
2057                         {
2058                                 if (keys[j] != -1)
2059                                 {
2060                                         if (j > 0)
2061                                                 strcat(keystring, " or ");
2062                                         strcat(keystring, Key_KeynumToString (keys[j]));
2063                                 }
2064                         }
2065                 }
2066                 M_Print (150, y, keystring);
2067         }
2068
2069         if (bind_grab)
2070                 M_DrawCharacter (140, 48 + keys_cursor*8, '=');
2071         else
2072                 M_DrawCharacter (140, 48 + keys_cursor*8, 12+((int)(realtime*4)&1));
2073 }
2074
2075
2076 void M_Keys_Key (int k, char ascii)
2077 {
2078         char    cmd[80];
2079         int             keys[NUMKEYS];
2080
2081         if (bind_grab)
2082         {       // defining a key
2083                 S_LocalSound ("misc/menu1.wav");
2084                 if (k == K_ESCAPE)
2085                 {
2086                         bind_grab = false;
2087                 }
2088                 else //if (k != '`')
2089                 {
2090                         sprintf (cmd, "bind \"%s\" \"%s\"\n", Key_KeynumToString (k), bindnames[keys_cursor][0]);
2091                         Cbuf_InsertText (cmd);
2092                 }
2093
2094                 bind_grab = false;
2095                 return;
2096         }
2097
2098         switch (k)
2099         {
2100         case K_ESCAPE:
2101                 M_Menu_Options_f ();
2102                 break;
2103
2104         case K_LEFTARROW:
2105         case K_UPARROW:
2106                 S_LocalSound ("misc/menu1.wav");
2107                 do
2108                 {
2109                         keys_cursor--;
2110                         if (keys_cursor < 0)
2111                                 keys_cursor = numcommands-1;
2112                 }
2113                 while (bindnames[keys_cursor][0][0] == '\0');  // skip sections
2114                 break;
2115
2116         case K_DOWNARROW:
2117         case K_RIGHTARROW:
2118                 S_LocalSound ("misc/menu1.wav");
2119                 do
2120                 {
2121                         keys_cursor++;
2122                         if (keys_cursor >= numcommands)
2123                                 keys_cursor = 0;
2124                 }
2125                 while (bindnames[keys_cursor][0][0] == '\0');  // skip sections
2126                 break;
2127
2128         case K_ENTER:           // go into bind mode
2129                 M_FindKeysForCommand (bindnames[keys_cursor][0], keys);
2130                 S_LocalSound ("misc/menu2.wav");
2131                 if (keys[NUMKEYS - 1] != -1)
2132                         M_UnbindCommand (bindnames[keys_cursor][0]);
2133                 bind_grab = true;
2134                 break;
2135
2136         case K_BACKSPACE:               // delete bindings
2137         case K_DEL:                             // delete bindings
2138                 S_LocalSound ("misc/menu2.wav");
2139                 M_UnbindCommand (bindnames[keys_cursor][0]);
2140                 break;
2141         }
2142 }
2143
2144 //=============================================================================
2145 /* VIDEO MENU */
2146
2147 #define VIDEO_ITEMS 4
2148
2149 int video_cursor = 0;
2150 int video_cursor_table[] = {56, 68, 80, 100};
2151 // note: if modes are added to the beginning of this list, update the
2152 // video_resolution = x; in M_Menu_Video_f below
2153 unsigned short video_resolutions[][2] = {{320,240}, {400,300}, {512,384}, {640,480}, {800,600}, {1024,768}, {1152,864}, {1280,960}, {1280,1024}, {1600,1200}, {1792,1344}, {1920,1440}, {2048,1536}, {0,0}};
2154 // this is the number of the 640x480 mode in the list
2155 #define VID_640 3
2156 #define VID_RES_COUNT ((int)(sizeof(video_resolutions) / sizeof(video_resolutions[0])) - 1)
2157 int video_resolution;
2158
2159 extern int current_vid_fullscreen;
2160 extern int current_vid_width;
2161 extern int current_vid_height;
2162 extern int current_vid_bitsperpixel;
2163
2164
2165 void M_Menu_Video_f (void)
2166 {
2167         key_dest = key_menu;
2168         m_state = m_video;
2169         m_entersound = true;
2170
2171         // Look for the current resolution
2172         for (video_resolution = 0; video_resolution < VID_RES_COUNT; video_resolution++)
2173         {
2174                 if (video_resolutions[video_resolution][0] == current_vid_width &&
2175                         video_resolutions[video_resolution][1] == current_vid_height)
2176                         break;
2177         }
2178
2179         // Default to VID_640 if we didn't find it
2180         if (video_resolution == VID_RES_COUNT)
2181         {
2182                 // may need to update this number if mode list changes
2183                 video_resolution = VID_640;
2184                 Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2185                 Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2186         }
2187 }
2188
2189
2190 void M_Video_Draw (void)
2191 {
2192         cachepic_t      *p;
2193         const char* string;
2194
2195         M_Background(320, 200);
2196
2197         M_DrawPic(16, 4, "gfx/qplaque.lmp");
2198         p = Draw_CachePic("gfx/vidmodes.lmp");
2199         M_DrawPic((320-p->width)/2, 4, "gfx/vidmodes.lmp");
2200
2201         // Resolution
2202         M_Print(16, video_cursor_table[0], "            Resolution");
2203         string = va("%dx%d", video_resolutions[video_resolution][0], video_resolutions[video_resolution][1]);
2204         M_Print (220, video_cursor_table[0], string);
2205
2206         // Bits per pixel
2207         M_Print(16, video_cursor_table[1], "        Bits per pixel");
2208         M_Print (220, video_cursor_table[1], (vid_bitsperpixel.integer == 32) ? "32" : "16");
2209
2210         // Fullscreen
2211         M_Print(16, video_cursor_table[2], "            Fullscreen");
2212         M_DrawCheckbox(220, video_cursor_table[2], vid_fullscreen.integer);
2213
2214         // "Apply" button
2215         M_Print(220, video_cursor_table[3], "Apply");
2216
2217         // Cursor
2218         M_DrawCharacter(200, video_cursor_table[video_cursor], 12+((int)(realtime*4)&1));
2219 }
2220
2221
2222 void M_Menu_Video_AdjustSliders (int dir)
2223 {
2224         S_LocalSound ("misc/menu3.wav");
2225
2226         switch (video_cursor)
2227         {
2228                 // Resolution
2229                 case 0:
2230                 {
2231                         int new_resolution = video_resolution + dir;
2232                         if (gamemode == GAME_FNIGGIUM ? new_resolution < VID_640 : new_resolution < 0)
2233                                 video_resolution = VID_RES_COUNT - 1;
2234                         else if (new_resolution > VID_RES_COUNT)
2235                                 video_resolution = gamemode == GAME_FNIGGIUM ? VID_640 : 0;
2236                         else
2237                                 video_resolution = new_resolution;
2238
2239                         Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2240                         Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2241                         break;
2242                 }
2243
2244                 // Bits per pixel
2245                 case 1:
2246                         Cvar_SetValueQuick (&vid_bitsperpixel, (vid_bitsperpixel.integer == 32) ? 16 : 32);
2247                         break;
2248                 case 2:
2249                         Cvar_SetValueQuick (&vid_fullscreen, !vid_fullscreen.integer);
2250                         break;
2251         }
2252 }
2253
2254
2255 void M_Video_Key (int key, char ascii)
2256 {
2257         switch (key)
2258         {
2259                 case K_ESCAPE:
2260                         // vid_shared.c has a copy of the current video config. We restore it
2261                         Cvar_SetValueQuick(&vid_fullscreen, current_vid_fullscreen);
2262                         Cvar_SetValueQuick(&vid_width, current_vid_width);
2263                         Cvar_SetValueQuick(&vid_height, current_vid_height);
2264                         Cvar_SetValueQuick(&vid_bitsperpixel, current_vid_bitsperpixel);
2265
2266                         S_LocalSound ("misc/menu1.wav");
2267                         M_Menu_Options_f ();
2268                         break;
2269
2270                 case K_ENTER:
2271                         m_entersound = true;
2272                         switch (video_cursor)
2273                         {
2274                                 case 3:
2275                                         Cbuf_AddText ("vid_restart\n");
2276                                         M_Menu_Options_f ();
2277                                         break;
2278                                 default:
2279                                         M_Menu_Video_AdjustSliders (1);
2280                         }
2281                         break;
2282
2283                 case K_UPARROW:
2284                         S_LocalSound ("misc/menu1.wav");
2285                         video_cursor--;
2286                         if (video_cursor < 0)
2287                                 video_cursor = VIDEO_ITEMS-1;
2288                         break;
2289
2290                 case K_DOWNARROW:
2291                         S_LocalSound ("misc/menu1.wav");
2292                         video_cursor++;
2293                         if (video_cursor >= VIDEO_ITEMS)
2294                                 video_cursor = 0;
2295                         break;
2296
2297                 case K_LEFTARROW:
2298                         M_Menu_Video_AdjustSliders (-1);
2299                         break;
2300
2301                 case K_RIGHTARROW:
2302                         M_Menu_Video_AdjustSliders (1);
2303                         break;
2304         }
2305 }
2306
2307 //=============================================================================
2308 /* HELP MENU */
2309
2310 int             help_page;
2311 #define NUM_HELP_PAGES  6
2312
2313
2314 void M_Menu_Help_f (void)
2315 {
2316         key_dest = key_menu;
2317         m_state = m_help;
2318         m_entersound = true;
2319         help_page = 0;
2320 }
2321
2322
2323
2324 void M_Help_Draw (void)
2325 {
2326         M_Background(320, 200);
2327         M_DrawPic (0, 0, va("gfx/help%i.lmp", help_page));
2328 }
2329
2330
2331 void M_Help_Key (int key, char ascii)
2332 {
2333         switch (key)
2334         {
2335         case K_ESCAPE:
2336                 M_Menu_Main_f ();
2337                 break;
2338
2339         case K_UPARROW:
2340         case K_RIGHTARROW:
2341                 m_entersound = true;
2342                 if (++help_page >= NUM_HELP_PAGES)
2343                         help_page = 0;
2344                 break;
2345
2346         case K_DOWNARROW:
2347         case K_LEFTARROW:
2348                 m_entersound = true;
2349                 if (--help_page < 0)
2350                         help_page = NUM_HELP_PAGES-1;
2351                 break;
2352         }
2353
2354 }
2355
2356 //=============================================================================
2357 /* QUIT MENU */
2358
2359 char *m_quit_message[9];
2360 int             m_quit_prevstate;
2361 qboolean        wasInMenus;
2362
2363
2364 int M_QuitMessage(char *line1, char *line2, char *line3, char *line4, char *line5, char *line6, char *line7, char *line8)
2365 {
2366         m_quit_message[0] = line1;
2367         m_quit_message[1] = line2;
2368         m_quit_message[2] = line3;
2369         m_quit_message[3] = line4;
2370         m_quit_message[4] = line5;
2371         m_quit_message[5] = line6;
2372         m_quit_message[6] = line7;
2373         m_quit_message[7] = line8;
2374         m_quit_message[8] = NULL;
2375         return 1;
2376 }
2377
2378 int M_ChooseQuitMessage(int request)
2379 {
2380         switch (gamemode)
2381         {
2382         case GAME_NORMAL:
2383         case GAME_HIPNOTIC:
2384         case GAME_ROGUE:
2385         case GAME_NEHAHRA:
2386                 if (request-- == 0) return M_QuitMessage("Are you gonna quit","this game just like","everything else?",NULL,NULL,NULL,NULL,NULL);
2387                 if (request-- == 0) return M_QuitMessage("Milord, methinks that","thou art a lowly","quitter. Is this true?",NULL,NULL,NULL,NULL,NULL);
2388                 if (request-- == 0) return M_QuitMessage("Do I need to bust your","face open for trying","to quit?",NULL,NULL,NULL,NULL,NULL);
2389                 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);
2390                 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);
2391                 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);
2392                 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);
2393                 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);
2394                 break;
2395         case GAME_GOODVSBAD2:
2396                 if (request-- == 0) return M_QuitMessage("Press Yes To Quit","...","Yes",NULL,NULL,NULL,NULL,NULL);
2397                 if (request-- == 0) return M_QuitMessage("Do you really want to","Quit?","Play Good vs bad 3!",NULL,NULL,NULL,NULL,NULL);
2398                 if (request-- == 0) return M_QuitMessage("All your quit are","belong to long duck","dong",NULL,NULL,NULL,NULL,NULL);
2399                 if (request-- == 0) return M_QuitMessage("Press Y to quit","","But are you too legit?",NULL,NULL,NULL,NULL,NULL);
2400                 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);
2401                 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);
2402                 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);
2403                 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);
2404                 if (request-- == 0) return M_QuitMessage("Press Y like you","were waanderers","from Ys'",NULL,NULL,NULL,NULL,NULL);
2405                 if (request-- == 0) return M_QuitMessage("This game was made in","Nippon like the SS","announcer's saying ipon",NULL,NULL,NULL,NULL,NULL);
2406                 if (request-- == 0) return M_QuitMessage("you","want to quit?",NULL,NULL,NULL,NULL,NULL,NULL);
2407                 if (request-- == 0) return M_QuitMessage("Please stop playing","this stupid game",NULL,NULL,NULL,NULL,NULL,NULL);
2408                 break;
2409         case GAME_BATTLEMECH:
2410                 if (request-- == 0) return M_QuitMessage("? WHY ?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
2411                 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);
2412                 if (request-- == 0) return M_QuitMessage("Accept Defeat?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
2413                 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);
2414                 if (request-- == 0) return M_QuitMessage("Where's your bloodlust?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
2415                 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);
2416                 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);
2417                 break;
2418         default:
2419                 if (request-- == 0) return M_QuitMessage("Tired of fragging already?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
2420                 if (request-- == 0) return M_QuitMessage("Quit now and forfeit your bodycount?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
2421                 if (request-- == 0) return M_QuitMessage("Are you sure you want to quit?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
2422                 if (request-- == 0) return M_QuitMessage("Off to do something constructive?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
2423                 break;
2424         }
2425         return 0;
2426 };
2427
2428 void M_Menu_Quit_f (void)
2429 {
2430         int n;
2431         if (m_state == m_quit)
2432                 return;
2433         wasInMenus = (key_dest == key_menu);
2434         key_dest = key_menu;
2435         m_quit_prevstate = m_state;
2436         m_state = m_quit;
2437         m_entersound = true;
2438         // count how many there are
2439         for (n = 0;M_ChooseQuitMessage(n);n++);
2440         // choose one
2441         M_ChooseQuitMessage(rand() % n);
2442 }
2443
2444
2445 void M_Quit_Key (int key, char ascii)
2446 {
2447         switch (key)
2448         {
2449         case K_ESCAPE:
2450         case 'n':
2451         case 'N':
2452                 if (wasInMenus)
2453                 {
2454                         m_state = m_quit_prevstate;
2455                         m_entersound = true;
2456                 }
2457                 else
2458                 {
2459                         key_dest = key_game;
2460                         m_state = m_none;
2461                 }
2462                 break;
2463
2464         case 'Y':
2465         case 'y':
2466                 Host_Quit_f ();
2467                 break;
2468
2469         default:
2470                 break;
2471         }
2472 }
2473
2474 void M_Quit_Draw (void)
2475 {
2476         int i, l, linelength, firstline, lastline, lines;
2477         for (i = 0, linelength = 0, firstline = 9999, lastline = -1;m_quit_message[i];i++)
2478         {
2479                 if ((l = strlen(m_quit_message[i])))
2480                 {
2481                         if (firstline > i)
2482                                 firstline = i;
2483                         if (lastline < i)
2484                                 lastline = i;
2485                         if (linelength < l)
2486                                 linelength = l;
2487                 }
2488         }
2489         lines = (lastline - firstline) + 1;
2490         M_Background(linelength * 8 + 16, lines * 8 + 16);
2491         M_DrawTextBox(0, 0, linelength, lines);
2492         for (i = 0, l = firstline;i < lines;i++, l++)
2493                 M_Print(8 + 4 * (linelength - strlen(m_quit_message[l])), 8 + 8 * i, m_quit_message[l]);
2494 }
2495
2496 //=============================================================================
2497 /* LAN CONFIG MENU */
2498
2499 int             lanConfig_cursor = -1;
2500 int             lanConfig_cursor_table [] = {56, 76, 112};
2501 #define NUM_LANCONFIG_CMDS      3
2502
2503 int     lanConfig_port;
2504 char    lanConfig_portname[6];
2505 char    lanConfig_joinname[22];
2506
2507 void M_Menu_LanConfig_f (void)
2508 {
2509         key_dest = key_menu;
2510         m_state = m_lanconfig;
2511         m_entersound = true;
2512         if (lanConfig_cursor == -1)
2513         {
2514                 if (JoiningGame)
2515                         lanConfig_cursor = 1;
2516         }
2517         if (StartingGame)
2518                 lanConfig_cursor = 1;
2519         lanConfig_port = 26000;
2520         sprintf(lanConfig_portname, "%u", lanConfig_port);
2521
2522         m_return_reason[0] = 0;
2523 }
2524
2525
2526 void M_LanConfig_Draw (void)
2527 {
2528         cachepic_t      *p;
2529         int             basex;
2530         char    *startJoin;
2531         char    *protocol;
2532
2533         M_Background(320, 200);
2534
2535         M_DrawPic (16, 4, "gfx/qplaque.lmp");
2536         p = Draw_CachePic ("gfx/p_multi.lmp");
2537         basex = (320-p->width)/2;
2538         M_DrawPic (basex, 4, "gfx/p_multi.lmp");
2539
2540         if (StartingGame)
2541                 startJoin = "New Game";
2542         else
2543                 startJoin = "Join Game";
2544         protocol = "TCP/IP";
2545         M_Print (basex, 32, va ("%s - %s", startJoin, protocol));
2546         basex += 8;
2547
2548         M_Print (basex, lanConfig_cursor_table[0], "Port");
2549         M_DrawTextBox (basex+8*8, lanConfig_cursor_table[0]-8, 6, 1);
2550         M_Print (basex+9*8, lanConfig_cursor_table[0], lanConfig_portname);
2551
2552         if (JoiningGame)
2553         {
2554                 M_Print (basex, lanConfig_cursor_table[1], "Search for games...");
2555                 M_Print (basex, lanConfig_cursor_table[2]-16, "Join game at:");
2556                 M_DrawTextBox (basex+8, lanConfig_cursor_table[2]-8, 22, 1);
2557                 M_Print (basex+16, lanConfig_cursor_table[2], lanConfig_joinname);
2558         }
2559         else
2560         {
2561                 M_DrawTextBox (basex, lanConfig_cursor_table[1]-8, 2, 1);
2562                 M_Print (basex+8, lanConfig_cursor_table[1], "OK");
2563         }
2564
2565         M_DrawCharacter (basex-8, lanConfig_cursor_table [lanConfig_cursor], 12+((int)(realtime*4)&1));
2566
2567         if (lanConfig_cursor == 0)
2568                 M_DrawCharacter (basex+9*8 + 8*strlen(lanConfig_portname), lanConfig_cursor_table [0], 10+((int)(realtime*4)&1));
2569
2570         if (lanConfig_cursor == 2)
2571                 M_DrawCharacter (basex+16 + 8*strlen(lanConfig_joinname), lanConfig_cursor_table [2], 10+((int)(realtime*4)&1));
2572
2573         if (*m_return_reason)
2574                 M_Print (basex, 168, m_return_reason);
2575 }
2576
2577
2578 void M_LanConfig_Key (int key, char ascii)
2579 {
2580         int             l;
2581
2582         switch (key)
2583         {
2584         case K_ESCAPE:
2585                 M_Menu_MultiPlayer_f ();
2586                 break;
2587
2588         case K_UPARROW:
2589                 S_LocalSound ("misc/menu1.wav");
2590                 lanConfig_cursor--;
2591                 if (lanConfig_cursor < 0)
2592                         lanConfig_cursor = NUM_LANCONFIG_CMDS-1;
2593                 break;
2594
2595         case K_DOWNARROW:
2596                 S_LocalSound ("misc/menu1.wav");
2597                 lanConfig_cursor++;
2598                 if (lanConfig_cursor >= NUM_LANCONFIG_CMDS)
2599                         lanConfig_cursor = 0;
2600                 break;
2601
2602         case K_ENTER:
2603                 if (lanConfig_cursor == 0)
2604                         break;
2605
2606                 m_entersound = true;
2607
2608                 Cbuf_AddText ("stopdemo\n");
2609
2610                 Cvar_SetValue("port", lanConfig_port);
2611
2612                 if (lanConfig_cursor == 1)
2613                 {
2614                         if (StartingGame)
2615                         {
2616                                 M_Menu_GameOptions_f ();
2617                                 break;
2618                         }
2619                         M_Menu_ServerList_f();
2620                         break;
2621                 }
2622
2623                 if (lanConfig_cursor == 2)
2624                         Cbuf_AddText ( va ("connect \"%s\"\n", lanConfig_joinname) );
2625                 break;
2626
2627         case K_BACKSPACE:
2628                 if (lanConfig_cursor == 0)
2629                 {
2630                         if (strlen(lanConfig_portname))
2631                                 lanConfig_portname[strlen(lanConfig_portname)-1] = 0;
2632                 }
2633
2634                 if (lanConfig_cursor == 2)
2635                 {
2636                         if (strlen(lanConfig_joinname))
2637                                 lanConfig_joinname[strlen(lanConfig_joinname)-1] = 0;
2638                 }
2639                 break;
2640
2641         default:
2642                 if (ascii < 32 || ascii > 126)
2643                         break;
2644
2645                 if (lanConfig_cursor == 2)
2646                 {
2647                         l = strlen(lanConfig_joinname);
2648                         if (l < 21)
2649                         {
2650                                 lanConfig_joinname[l+1] = 0;
2651                                 lanConfig_joinname[l] = ascii;
2652                         }
2653                 }
2654
2655                 if (ascii < '0' || ascii > '9')
2656                         break;
2657                 if (lanConfig_cursor == 0)
2658                 {
2659                         l = strlen(lanConfig_portname);
2660                         if (l < 5)
2661                         {
2662                                 lanConfig_portname[l+1] = 0;
2663                                 lanConfig_portname[l] = ascii;
2664                         }
2665                 }
2666         }
2667
2668         if (StartingGame && lanConfig_cursor == 2)
2669         {
2670                 if (key == K_UPARROW)
2671                         lanConfig_cursor = 1;
2672                 else
2673                         lanConfig_cursor = 0;
2674         }
2675
2676         l =  atoi(lanConfig_portname);
2677         if (l <= 65535)
2678                 lanConfig_port = l;
2679         sprintf(lanConfig_portname, "%u", lanConfig_port);
2680 }
2681
2682 //=============================================================================
2683 /* GAME OPTIONS MENU */
2684
2685 typedef struct
2686 {
2687         char    *name;
2688         char    *description;
2689 } level_t;
2690
2691 typedef struct
2692 {
2693         char    *description;
2694         int             firstLevel;
2695         int             levels;
2696 } episode_t;
2697
2698 typedef struct
2699 {
2700         char *gamename;
2701         level_t *levels;
2702         episode_t *episodes;
2703         int numepisodes;
2704 }
2705 gamelevels_t;
2706
2707 level_t quakelevels[] =
2708 {
2709         {"start", "Entrance"},  // 0
2710
2711         {"e1m1", "Slipgate Complex"},                           // 1
2712         {"e1m2", "Castle of the Damned"},
2713         {"e1m3", "The Necropolis"},
2714         {"e1m4", "The Grisly Grotto"},
2715         {"e1m5", "Gloom Keep"},
2716         {"e1m6", "The Door To Chthon"},
2717         {"e1m7", "The House of Chthon"},
2718         {"e1m8", "Ziggurat Vertigo"},
2719
2720         {"e2m1", "The Installation"},                           // 9
2721         {"e2m2", "Ogre Citadel"},
2722         {"e2m3", "Crypt of Decay"},
2723         {"e2m4", "The Ebon Fortress"},
2724         {"e2m5", "The Wizard's Manse"},
2725         {"e2m6", "The Dismal Oubliette"},
2726         {"e2m7", "Underearth"},
2727
2728         {"e3m1", "Termination Central"},                        // 16
2729         {"e3m2", "The Vaults of Zin"},
2730         {"e3m3", "The Tomb of Terror"},
2731         {"e3m4", "Satan's Dark Delight"},
2732         {"e3m5", "Wind Tunnels"},
2733         {"e3m6", "Chambers of Torment"},
2734         {"e3m7", "The Haunted Halls"},
2735
2736         {"e4m1", "The Sewage System"},                          // 23
2737         {"e4m2", "The Tower of Despair"},
2738         {"e4m3", "The Elder God Shrine"},
2739         {"e4m4", "The Palace of Hate"},
2740         {"e4m5", "Hell's Atrium"},
2741         {"e4m6", "The Pain Maze"},
2742         {"e4m7", "Azure Agony"},
2743         {"e4m8", "The Nameless City"},
2744
2745         {"end", "Shub-Niggurath's Pit"},                        // 31
2746
2747         {"dm1", "Place of Two Deaths"},                         // 32
2748         {"dm2", "Claustrophobopolis"},
2749         {"dm3", "The Abandoned Base"},
2750         {"dm4", "The Bad Place"},
2751         {"dm5", "The Cistern"},
2752         {"dm6", "The Dark Zone"}
2753 };
2754
2755 episode_t quakeepisodes[] =
2756 {
2757         {"Welcome to Quake", 0, 1},
2758         {"Doomed Dimension", 1, 8},
2759         {"Realm of Black Magic", 9, 7},
2760         {"Netherworld", 16, 7},
2761         {"The Elder World", 23, 8},
2762         {"Final Level", 31, 1},
2763         {"Deathmatch Arena", 32, 6}
2764 };
2765
2766  //MED 01/06/97 added hipnotic levels
2767 level_t     hipnoticlevels[] =
2768 {
2769    {"start", "Command HQ"},  // 0
2770
2771    {"hip1m1", "The Pumping Station"},          // 1
2772    {"hip1m2", "Storage Facility"},
2773    {"hip1m3", "The Lost Mine"},
2774    {"hip1m4", "Research Facility"},
2775    {"hip1m5", "Military Complex"},
2776
2777    {"hip2m1", "Ancient Realms"},          // 6
2778    {"hip2m2", "The Black Cathedral"},
2779    {"hip2m3", "The Catacombs"},
2780    {"hip2m4", "The Crypt"},
2781    {"hip2m5", "Mortum's Keep"},
2782    {"hip2m6", "The Gremlin's Domain"},
2783
2784    {"hip3m1", "Tur Torment"},       // 12
2785    {"hip3m2", "Pandemonium"},
2786    {"hip3m3", "Limbo"},
2787    {"hip3m4", "The Gauntlet"},
2788
2789    {"hipend", "Armagon's Lair"},       // 16
2790
2791    {"hipdm1", "The Edge of Oblivion"}           // 17
2792 };
2793
2794 //MED 01/06/97  added hipnotic episodes
2795 episode_t   hipnoticepisodes[] =
2796 {
2797    {"Scourge of Armagon", 0, 1},
2798    {"Fortress of the Dead", 1, 5},
2799    {"Dominion of Darkness", 6, 6},
2800    {"The Rift", 12, 4},
2801    {"Final Level", 16, 1},
2802    {"Deathmatch Arena", 17, 1}
2803 };
2804
2805 //PGM 01/07/97 added rogue levels
2806 //PGM 03/02/97 added dmatch level
2807 level_t         roguelevels[] =
2808 {
2809         {"start",       "Split Decision"},
2810         {"r1m1",        "Deviant's Domain"},
2811         {"r1m2",        "Dread Portal"},
2812         {"r1m3",        "Judgement Call"},
2813         {"r1m4",        "Cave of Death"},
2814         {"r1m5",        "Towers of Wrath"},
2815         {"r1m6",        "Temple of Pain"},
2816         {"r1m7",        "Tomb of the Overlord"},
2817         {"r2m1",        "Tempus Fugit"},
2818         {"r2m2",        "Elemental Fury I"},
2819         {"r2m3",        "Elemental Fury II"},
2820         {"r2m4",        "Curse of Osiris"},
2821         {"r2m5",        "Wizard's Keep"},
2822         {"r2m6",        "Blood Sacrifice"},
2823         {"r2m7",        "Last Bastion"},
2824         {"r2m8",        "Source of Evil"},
2825         {"ctf1",    "Division of Change"}
2826 };
2827
2828 //PGM 01/07/97 added rogue episodes
2829 //PGM 03/02/97 added dmatch episode
2830 episode_t       rogueepisodes[] =
2831 {
2832         {"Introduction", 0, 1},
2833         {"Hell's Fortress", 1, 7},
2834         {"Corridors of Time", 8, 8},
2835         {"Deathmatch Arena", 16, 1}
2836 };
2837
2838 level_t         nehahralevels[] =
2839 {
2840         {"nehstart",    "Welcome to Nehahra"},
2841         {"neh1m1",      "Forge City1: Slipgates"},
2842         {"neh1m2",      "Forge City2: Boiler"},
2843         {"neh1m3",      "Forge City3: Escape"},
2844         {"neh1m4",      "Grind Core"},
2845         {"neh1m5",      "Industrial Silence"},
2846         {"neh1m6",      "Locked-Up Anger"},
2847         {"neh1m7",      "Wanderer of the Wastes"},
2848         {"neh1m8",      "Artemis System Net"},
2849         {"neh1m9",      "To the Death"},
2850         {"neh2m1",      "The Gates of Ghoro"},
2851         {"neh2m2",      "Sacred Trinity"},
2852         {"neh2m3",      "Realm of the Ancients"},
2853         {"neh2m4",      "Temple of the Ancients"},
2854         {"neh2m5",      "Dreams Made Flesh"},
2855         {"neh2m6",      "Your Last Cup of Sorrow"},
2856         {"nehsec",      "Ogre's Bane"},
2857         {"nehahra",     "Nehahra's Den"},
2858         {"nehend",      "Quintessence"}
2859 };
2860
2861 episode_t       nehahraepisodes[] =
2862 {
2863         {"Welcome to Nehahra", 0, 1},
2864         {"The Fall of Forge", 1, 9},
2865         {"The Outlands", 10, 7},
2866         {"Dimension of the Lost", 17, 2}
2867 };
2868
2869 // Map list for Transfusion
2870 level_t         transfusionlevels[] =
2871 {
2872         {"bb1",                 "The Stronghold"},
2873         {"bb2",                 "Winter Wonderland"},
2874         {"bb3",                 "Bodies"},
2875         {"bb4",                 "The Tower"},
2876         {"bb5",                 "Click!"},
2877         {"bb6",                 "Twin Fortress"},
2878         {"bb7",                 "Midgard"},
2879         {"bb8",                 "Fun With Heads"},
2880
2881         {"e1m1",                "Cradle to Grave"},
2882         {"e1m2",                "Wrong Side of the Tracks"},
2883         {"e1m7",                "Altar of Stone"},
2884         {"e2m8",                "The Lair of Shial"},
2885         {"e3m7",                "The Pit of Cerberus"},
2886         {"e4m8",                "The Hall of the Epiphany"},
2887         {"e4m9",                "Mall of the Dead"},
2888
2889         {"dm1",                 "Monolith Building 11"},
2890         {"dm2",                 "Power!"},
2891         {"dm3",                 "Area 15"},
2892         {"e6m1",                "Welcome to Your Life"},
2893         {"e6m8",                "Beauty and the Beast"},
2894
2895         {"cpbb01",              "Crypt of Despair"},
2896         {"cpbb03",              "Unholy Cathedral"},
2897
2898         {"b2a15",               "Area 15 (B2)"},
2899         {"barena",              "Blood Arena"},
2900         {"bkeep",               "Blood Keep"},
2901         {"bstar",               "Brown Star"},
2902         {"crypt",               "The Crypt"},
2903
2904         {"bb3_2k1",             "Bodies Infusion"},
2905         {"dcamp",               "DeathCamp"},
2906         {"highnoon",    "HighNoon"},
2907         {"qbb1",                "The Confluence"},
2908         {"qbb2",                "KathartiK"},
2909         {"qbb3",                "Caleb's Woodland Retreat"},
2910
2911         {"dranzbb6",    "Black Coffee"},
2912         {"fragm",               "Frag'M"},
2913         {"maim",                "Maim"},
2914         {"qe1m7",               "The House of Chthon"},
2915         {"simple",              "Dead Simple"}
2916 };
2917
2918 episode_t       transfusionepisodes[] =
2919 {
2920         {"Blood", 0, 8},
2921         {"Blood Single Player", 8, 7},
2922         {"Plasma Pack", 15, 5},
2923         {"Cryptic Passage", 20, 2},
2924         {"Blood 2", 22, 5},
2925         {"Transfusion", 27, 6},
2926         {"Conversions", 33, 5}
2927 };
2928
2929 level_t goodvsbad2levels[] =
2930 {
2931         {"rts", "Many Paths"},  // 0
2932         {"chess", "Chess, Scott Hess"},                         // 1
2933         {"dot", "Big Wall"},
2934         {"city2", "The Big City"},
2935         {"bwall", "0 G like Psychic TV"},
2936         {"snow", "Wireframed"},
2937         {"telep", "Infinite Falling"},
2938         {"faces", "Facing Bases"},
2939         {"island", "Adventure Islands"},
2940 };
2941
2942 episode_t goodvsbad2episodes[] =
2943 {
2944         {"Levels? Bevels!", 0, 8},
2945 };
2946
2947 level_t battlemechlevels[] =
2948 {
2949         {"start", "Parking Level"},
2950         {"dm1", "Hot Dump"},                        // 1
2951         {"dm2", "The Pits"},
2952         {"dm3", "Dimber Died"},
2953         {"dm4", "Fire in the Hole"},
2954         {"dm5", "Clubhouses"},
2955         {"dm6", "Army go Underground"},
2956 };
2957
2958 episode_t battlemechepisodes[] =
2959 {
2960         {"Time for Battle", 0, 7},
2961 };
2962
2963 gamelevels_t sharewarequakegame = {"Shareware Quake", quakelevels, quakeepisodes, 2};
2964 gamelevels_t registeredquakegame = {"Quake", quakelevels, quakeepisodes, 7};
2965 gamelevels_t hipnoticgame = {"Scourge of Armagon", hipnoticlevels, hipnoticepisodes, 6};
2966 gamelevels_t roguegame = {"Dissolution of Eternity", roguelevels, rogueepisodes, 4};
2967 gamelevels_t nehahragame = {"Nehahra", nehahralevels, nehahraepisodes, 4};
2968 gamelevels_t transfusiongame = {"Transfusion", transfusionlevels, transfusionepisodes, 7};
2969 gamelevels_t goodvsbad2game = {"Good Vs. Bad 2", goodvsbad2levels, goodvsbad2episodes, 1};
2970 gamelevels_t battlemechgame = {"Battlemech", battlemechlevels, battlemechepisodes, 1};
2971
2972 typedef struct
2973 {
2974         int gameid;
2975         gamelevels_t *notregistered;
2976         gamelevels_t *registered;
2977 }
2978 gameinfo_t;
2979
2980 gameinfo_t gamelist[] =
2981 {
2982         {GAME_NORMAL, &sharewarequakegame, &registeredquakegame},
2983         {GAME_HIPNOTIC, &hipnoticgame, &hipnoticgame},
2984         {GAME_ROGUE, &roguegame, &roguegame},
2985         {GAME_NEHAHRA, &nehahragame, &nehahragame},
2986         {GAME_TRANSFUSION, &transfusiongame, &transfusiongame},
2987         {GAME_GOODVSBAD2, &goodvsbad2game, &goodvsbad2game},
2988         {GAME_BATTLEMECH, &battlemechgame, &battlemechgame},
2989         {-1, &sharewarequakegame, &registeredquakegame} // final fallback
2990 };
2991
2992 gamelevels_t *lookupgameinfo(void)
2993 {
2994         int i;
2995         for (i = 0;gamelist[i].gameid >= 0 && gamelist[i].gameid != gamemode;i++);
2996         if (registered.integer)
2997                 return gamelist[i].registered;
2998         else
2999                 return gamelist[i].notregistered;
3000 }
3001
3002 int     startepisode;
3003 int     startlevel;
3004 int maxplayers;
3005 qboolean m_serverInfoMessage = false;
3006 double m_serverInfoMessageTime;
3007
3008 extern cvar_t sv_public;
3009
3010 void M_Menu_GameOptions_f (void)
3011 {
3012         key_dest = key_menu;
3013         m_state = m_gameoptions;
3014         m_entersound = true;
3015         if (maxplayers == 0)
3016                 maxplayers = svs.maxclients;
3017         if (maxplayers < 2)
3018                 maxplayers = min(8, MAX_SCOREBOARD);
3019 }
3020
3021
3022 int gameoptions_cursor_table[] = {40, 56, 64, 72, 80, 88, 96, 104, 132, 152, 160};
3023 #define NUM_GAMEOPTIONS 11
3024 int             gameoptions_cursor;
3025
3026 void M_GameOptions_Draw (void)
3027 {
3028         cachepic_t      *p;
3029         int             x;
3030         gamelevels_t *g;
3031
3032         M_Background(320, 200);
3033
3034         M_DrawPic (16, 4, "gfx/qplaque.lmp");
3035         p = Draw_CachePic ("gfx/p_multi.lmp");
3036         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
3037
3038         M_DrawTextBox (152, 32, 10, 1);
3039         M_Print (160, 40, "begin game");
3040
3041         M_Print (0, 56, "      Max players");
3042         M_Print (160, 56, va("%i", maxplayers) );
3043
3044         if (gamemode != GAME_GOODVSBAD2)
3045         {
3046                 M_Print (0, 64, "        Game Type");
3047                 if (gamemode == GAME_TRANSFUSION)
3048                 {
3049                         if (!deathmatch.integer)
3050                                 Cvar_SetValue("deathmatch", 1);
3051                         if (deathmatch.integer == 2)
3052                                 M_Print (160, 64, "Capture the Flag");
3053                         else
3054                                 M_Print (160, 64, "Blood Bath");
3055                 }
3056                 else if (gamemode == GAME_BATTLEMECH)
3057                 {
3058                         if (!deathmatch.integer)
3059                                 Cvar_SetValue("deathmatch", 1);
3060                         if (deathmatch.integer == 2)
3061                                 M_Print (160, 64, "Rambo Match");
3062                         else
3063                                 M_Print (160, 64, "Deathmatch");
3064                 }
3065                 else
3066                 {
3067                         if (!coop.integer && !deathmatch.integer)
3068                                 Cvar_SetValue("deathmatch", 1);
3069                         if (coop.integer)
3070                                 M_Print (160, 64, "Cooperative");
3071                         else
3072                                 M_Print (160, 64, "Deathmatch");
3073                 }
3074
3075                 M_Print (0, 72, "        Teamplay");
3076                 if (gamemode == GAME_ROGUE)
3077                 {
3078                         char *msg;
3079
3080                         switch((int)teamplay.integer)
3081                         {
3082                                 case 1: msg = "No Friendly Fire"; break;
3083                                 case 2: msg = "Friendly Fire"; break;
3084                                 case 3: msg = "Tag"; break;
3085                                 case 4: msg = "Capture the Flag"; break;
3086                                 case 5: msg = "One Flag CTF"; break;
3087                                 case 6: msg = "Three Team CTF"; break;
3088                                 default: msg = "Off"; break;
3089                         }
3090                         M_Print (160, 72, msg);
3091                 }
3092                 else
3093                 {
3094                         char *msg;
3095
3096                         switch (teamplay.integer)
3097                         {
3098                                 case 0: msg = "Off"; break;
3099                                 case 2: msg = "Friendly Fire"; break;
3100                                 default: msg = "No Friendly Fire"; break;
3101                         }
3102                         M_Print (160, 72, msg);
3103                 }
3104
3105                 M_Print (0, 80, "            Skill");
3106                 if (skill.integer == 0)
3107                         M_Print (160, 80, "Easy difficulty");
3108                 else if (skill.integer == 1)
3109                         M_Print (160, 80, "Normal difficulty");
3110                 else if (skill.integer == 2)
3111                         M_Print (160, 80, "Hard difficulty");
3112                 else
3113                         M_Print (160, 80, "Nightmare difficulty");
3114
3115                 M_Print (0, 88, "       Frag Limit");
3116                 if (fraglimit.integer == 0)
3117                         M_Print (160, 88, "none");
3118                 else
3119                         M_Print (160, 88, va("%i frags", fraglimit.integer));
3120
3121                 M_Print (0, 96, "       Time Limit");
3122                 if (timelimit.integer == 0)
3123                         M_Print (160, 96, "none");
3124                 else
3125                         M_Print (160, 96, va("%i minutes", timelimit.integer));
3126         }
3127
3128         M_Print (0, 104, "    Public server");
3129         M_Print (160, 104, (sv_public.integer == 0) ? "no" : "yes");
3130
3131         M_Print (0, 120, "      Server name");
3132         M_DrawTextBox (0, 124, 38, 1);
3133         M_Print (8, 132, hostname.string);
3134
3135         g = lookupgameinfo();
3136
3137         if (gamemode != GAME_GOODVSBAD2)
3138         {
3139                 M_Print (0, 152, "         Episode");
3140                 M_Print (160, 152, g->episodes[startepisode].description);
3141         }
3142
3143         M_Print (0, 160, "           Level");
3144         M_Print (160, 160, g->levels[g->episodes[startepisode].firstLevel + startlevel].description);
3145         M_Print (160, 168, g->levels[g->episodes[startepisode].firstLevel + startlevel].name);
3146
3147 // line cursor
3148         if (gameoptions_cursor == 8)
3149                 M_DrawCharacter (8 + 8 * strlen(hostname.string), gameoptions_cursor_table[gameoptions_cursor], 10+((int)(realtime*4)&1));
3150         else
3151                 M_DrawCharacter (144, gameoptions_cursor_table[gameoptions_cursor], 12+((int)(realtime*4)&1));
3152
3153         if (m_serverInfoMessage)
3154         {
3155                 if ((realtime - m_serverInfoMessageTime) < 5.0)
3156                 {
3157                         x = (320-26*8)/2;
3158                         M_DrawTextBox (x, 138, 24, 4);
3159                         x += 8;
3160                         M_Print (x, 146, " More than 64 players?? ");
3161                         M_Print (x, 154, "  First, question your  ");
3162                         M_Print (x, 162, "   sanity, then email   ");
3163                         M_Print (x, 170, " havoc@telefragged.com  ");
3164                 }
3165                 else
3166                         m_serverInfoMessage = false;
3167         }
3168 }
3169
3170
3171 void M_NetStart_Change (int dir)
3172 {
3173         gamelevels_t *g;
3174         int count;
3175
3176         switch (gameoptions_cursor)
3177         {
3178         case 1:
3179                 maxplayers += dir;
3180                 if (maxplayers > MAX_SCOREBOARD)
3181                 {
3182                         maxplayers = MAX_SCOREBOARD;
3183                         m_serverInfoMessage = true;
3184                         m_serverInfoMessageTime = realtime;
3185                 }
3186                 if (maxplayers < 2)
3187                         maxplayers = 2;
3188                 break;
3189
3190         case 2:
3191                 if (gamemode == GAME_GOODVSBAD2)
3192                         break;
3193                 if (gamemode == GAME_TRANSFUSION)
3194                 {
3195                         if (deathmatch.integer == 2) // changing from CTF to BloodBath
3196                                 Cvar_SetValueQuick (&deathmatch, 0);
3197                         else // changing from BloodBath to CTF
3198                                 Cvar_SetValueQuick (&deathmatch, 2);
3199                 }
3200                 else if (gamemode == GAME_BATTLEMECH)
3201                 {
3202                         if (deathmatch.integer == 2) // changing from Rambo to Deathmatch
3203                                 Cvar_SetValueQuick (&deathmatch, 0);
3204                         else // changing from Deathmatch to Rambo
3205                                 Cvar_SetValueQuick (&deathmatch, 2);
3206                 }
3207                 else
3208                 {
3209                         if (deathmatch.integer) // changing from deathmatch to coop
3210                         {
3211                                 Cvar_SetValueQuick (&coop, 1);
3212                                 Cvar_SetValueQuick (&deathmatch, 0);
3213                         }
3214                         else // changing from coop to deathmatch
3215                         {
3216                                 Cvar_SetValueQuick (&coop, 0);
3217                                 Cvar_SetValueQuick (&deathmatch, 1);
3218                         }
3219                 }
3220                 break;
3221
3222         case 3:
3223                 if (gamemode == GAME_GOODVSBAD2)
3224                         break;
3225                 if (gamemode == GAME_ROGUE)
3226                         count = 6;
3227                 else
3228                         count = 2;
3229
3230                 Cvar_SetValueQuick (&teamplay, teamplay.integer + dir);
3231                 if (teamplay.integer > count)
3232                         Cvar_SetValueQuick (&teamplay, 0);
3233                 else if (teamplay.integer < 0)
3234                         Cvar_SetValueQuick (&teamplay, count);
3235                 break;
3236
3237         case 4:
3238                 if (gamemode == GAME_GOODVSBAD2)
3239                         break;
3240                 Cvar_SetValueQuick (&skill, skill.integer + dir);
3241                 if (skill.integer > 3)
3242                         Cvar_SetValueQuick (&skill, 0);
3243                 if (skill.integer < 0)
3244                         Cvar_SetValueQuick (&skill, 3);
3245                 break;
3246
3247         case 5:
3248                 if (gamemode == GAME_GOODVSBAD2)
3249                         break;
3250                 Cvar_SetValueQuick (&fraglimit, fraglimit.integer + dir*10);
3251                 if (fraglimit.integer > 100)
3252                         Cvar_SetValueQuick (&fraglimit, 0);
3253                 if (fraglimit.integer < 0)
3254                         Cvar_SetValueQuick (&fraglimit, 100);
3255                 break;
3256
3257         case 6:
3258                 if (gamemode == GAME_GOODVSBAD2)
3259                         break;
3260                 Cvar_SetValueQuick (&timelimit, timelimit.value + dir*5);
3261                 if (timelimit.value > 60)
3262                         Cvar_SetValueQuick (&timelimit, 0);
3263                 if (timelimit.value < 0)
3264                         Cvar_SetValueQuick (&timelimit, 60);
3265                 break;
3266
3267         case 7:
3268                 Cvar_SetValueQuick (&sv_public, !sv_public.integer);
3269                 break;
3270
3271         case 8:
3272                 break;
3273
3274         case 9:
3275                 if (gamemode == GAME_GOODVSBAD2)
3276                         break;
3277                 startepisode += dir;
3278                 g = lookupgameinfo();
3279
3280                 if (startepisode < 0)
3281                         startepisode = g->numepisodes - 1;
3282
3283                 if (startepisode >= g->numepisodes)
3284                         startepisode = 0;
3285
3286                 startlevel = 0;
3287                 break;
3288
3289         case 10:
3290                 startlevel += dir;
3291                 g = lookupgameinfo();
3292
3293                 if (startlevel < 0)
3294                         startlevel = g->episodes[startepisode].levels - 1;
3295
3296                 if (startlevel >= g->episodes[startepisode].levels)
3297                         startlevel = 0;
3298                 break;
3299         }
3300 }
3301
3302 void M_GameOptions_Key (int key, char ascii)
3303 {
3304         gamelevels_t *g;
3305         int l;
3306         char hostnamebuf[128];
3307
3308         switch (key)
3309         {
3310         case K_ESCAPE:
3311                 M_Menu_MultiPlayer_f ();
3312                 break;
3313
3314         case K_UPARROW:
3315                 S_LocalSound ("misc/menu1.wav");
3316                 gameoptions_cursor--;
3317                 if (gameoptions_cursor < 0)
3318                         gameoptions_cursor = NUM_GAMEOPTIONS-1;
3319                 break;
3320
3321         case K_DOWNARROW:
3322                 S_LocalSound ("misc/menu1.wav");
3323                 gameoptions_cursor++;
3324                 if (gameoptions_cursor >= NUM_GAMEOPTIONS)
3325                         gameoptions_cursor = 0;
3326                 break;
3327
3328         case K_LEFTARROW:
3329                 if (gameoptions_cursor == 0)
3330                         break;
3331                 S_LocalSound ("misc/menu3.wav");
3332                 M_NetStart_Change (-1);
3333                 break;
3334
3335         case K_RIGHTARROW:
3336                 if (gameoptions_cursor == 0)
3337                         break;
3338                 S_LocalSound ("misc/menu3.wav");
3339                 M_NetStart_Change (1);
3340                 break;
3341
3342         case K_ENTER:
3343                 S_LocalSound ("misc/menu2.wav");
3344                 if (gameoptions_cursor == 0)
3345                 {
3346                         if (sv.active)
3347                                 Cbuf_AddText ("disconnect\n");
3348                         Cbuf_AddText ( va ("maxplayers %u\n", maxplayers) );
3349
3350                         g = lookupgameinfo();
3351                         Cbuf_AddText ( va ("map %s\n", g->levels[g->episodes[startepisode].firstLevel + startlevel].name) );
3352                         return;
3353                 }
3354
3355                 M_NetStart_Change (1);
3356                 break;
3357
3358         case K_BACKSPACE:
3359                 if (gameoptions_cursor == 8)
3360                 {
3361                         l = strlen(hostname.string);
3362                         if (l)
3363                         {
3364                                 l = min(l - 1, 37);
3365                                 memcpy(hostnamebuf, hostname.string, l);
3366                                 hostnamebuf[l] = 0;
3367                                 Cvar_Set("hostname", hostnamebuf);
3368                         }
3369                 }
3370                 break;
3371
3372         default:
3373                 if (ascii < 32 || ascii > 126)
3374                         break;
3375                 if (gameoptions_cursor == 8)
3376                 {
3377                         l = strlen(hostname.string);
3378                         if (l < 37)
3379                         {
3380                                 memcpy(hostnamebuf, hostname.string, l);
3381                                 hostnamebuf[l] = ascii;
3382                                 hostnamebuf[l+1] = 0;
3383                                 Cvar_Set("hostname", hostnamebuf);
3384                         }
3385                 }
3386         }
3387 }
3388
3389 //=============================================================================
3390 /* SLIST MENU */
3391
3392 int slist_cursor;
3393
3394 void M_Menu_ServerList_f (void)
3395 {
3396         key_dest = key_menu;
3397         m_state = m_slist;
3398         m_entersound = true;
3399         slist_cursor = 0;
3400         m_return_reason[0] = 0;
3401         Net_Slist_f();
3402 }
3403
3404
3405 void M_ServerList_Draw (void)
3406 {
3407         int n, y, visible, start, end;
3408         cachepic_t *p;
3409         const char *s;
3410
3411         // use as much vertical space as available
3412         M_Background(640, vid.conheight);
3413         // scroll the list as the cursor moves
3414         s = va("%i/%i masters %i/%i servers", masterreplycount, masterquerycount, serverreplycount, serverquerycount);
3415         M_PrintRed((640 - strlen(s) * 8) / 2, 32, s);
3416         if (*m_return_reason)
3417                 M_Print(16, vid.conheight - 8, m_return_reason);
3418         y = 48;
3419         visible = (vid.conheight - 16 - y) / 8;
3420         start = bound(0, slist_cursor - (visible >> 1), hostCacheCount - visible);
3421         end = min(start + visible, hostCacheCount);
3422
3423         p = Draw_CachePic("gfx/p_multi.lmp");
3424         M_DrawPic((640 - p->width) / 2, 4, "gfx/p_multi.lmp");
3425         if (end > start)
3426         {
3427                 for (n = start;n < end;n++)
3428                 {
3429                         DrawQ_Fill(menu_x, menu_y + y, 640, 16, n == slist_cursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
3430                         M_Print(0, y, hostcache[n].line1);y += 8;
3431                         M_Print(0, y, hostcache[n].line2);y += 8;
3432                 }
3433         }
3434         else if (realtime - masterquerytime < 3)
3435         {
3436                 if (masterquerycount)
3437                         M_Print(0, y, "No servers found");
3438                 else
3439                         M_Print(0, y, "No master servers found (network problem?)");
3440         }
3441 }
3442
3443
3444 void M_ServerList_Key(int k, char ascii)
3445 {
3446         switch (k)
3447         {
3448         case K_ESCAPE:
3449                 M_Menu_LanConfig_f();
3450                 break;
3451
3452         case K_SPACE:
3453                 Net_Slist_f();
3454                 break;
3455
3456         case K_UPARROW:
3457         case K_LEFTARROW:
3458                 S_LocalSound("misc/menu1.wav");
3459                 slist_cursor--;
3460                 if (slist_cursor < 0)
3461                         slist_cursor = hostCacheCount - 1;
3462                 break;
3463
3464         case K_DOWNARROW:
3465         case K_RIGHTARROW:
3466                 S_LocalSound("misc/menu1.wav");
3467                 slist_cursor++;
3468                 if (slist_cursor >= hostCacheCount)
3469                         slist_cursor = 0;
3470                 break;
3471
3472         case K_ENTER:
3473                 S_LocalSound("misc/menu2.wav");
3474                 Cbuf_AddText(va("connect \"%s\"\n", hostcache[slist_cursor].cname));
3475                 break;
3476
3477         default:
3478                 break;
3479         }
3480
3481 }
3482
3483 //=============================================================================
3484 /* Menu Subsystem */
3485
3486 void M_Keydown(int key, char ascii);
3487 void M_Draw(void);
3488 void M_ToggleMenu_f(void);
3489 void M_Shutdown(void);
3490
3491 void M_Init (void)
3492 {
3493         menu_mempool = Mem_AllocPool("Menu");
3494         menuplyr_load = true;
3495         menuplyr_pixels = NULL;
3496
3497         Cmd_AddCommand ("togglemenu", M_ToggleMenu_f);
3498
3499         Cmd_AddCommand ("menu_main", M_Menu_Main_f);
3500         Cmd_AddCommand ("menu_singleplayer", M_Menu_SinglePlayer_f);
3501         Cmd_AddCommand ("menu_load", M_Menu_Load_f);
3502         Cmd_AddCommand ("menu_save", M_Menu_Save_f);
3503         Cmd_AddCommand ("menu_multiplayer", M_Menu_MultiPlayer_f);
3504         Cmd_AddCommand ("menu_setup", M_Menu_Setup_f);
3505         Cmd_AddCommand ("menu_options", M_Menu_Options_f);
3506         Cmd_AddCommand ("menu_options_effects", M_Menu_Options_Effects_f);
3507         Cmd_AddCommand ("menu_options_colorcontrol", M_Menu_Options_ColorControl_f);
3508         Cvar_RegisterVariable (&menu_options_colorcontrol_correctionvalue);
3509         Cmd_AddCommand ("menu_keys", M_Menu_Keys_f);
3510         Cmd_AddCommand ("menu_video", M_Menu_Video_f);
3511         Cmd_AddCommand ("help", M_Menu_Help_f);
3512         Cmd_AddCommand ("menu_quit", M_Menu_Quit_f);
3513
3514         if (gamemode == GAME_TRANSFUSION)
3515         {
3516                 numcommands = sizeof(transfusionbindnames) / sizeof(transfusionbindnames[0]);
3517                 bindnames = transfusionbindnames;
3518         }
3519         else if (gamemode == GAME_GOODVSBAD2)
3520         {
3521                 numcommands = sizeof(goodvsbad2bindnames) / sizeof(goodvsbad2bindnames[0]);
3522                 bindnames = goodvsbad2bindnames;
3523         }
3524         else
3525         {
3526                 numcommands = sizeof(quakebindnames) / sizeof(quakebindnames[0]);
3527                 bindnames = quakebindnames;
3528         }
3529
3530         // Make sure "keys_cursor" doesn't start on a section in the binding list
3531         keys_cursor = 0;
3532         while (bindnames[keys_cursor][0][0] == '\0')
3533         {
3534                 keys_cursor++;
3535
3536                 // Only sections? There may be a problem somewhere...
3537                 if (keys_cursor >= numcommands)
3538                         Sys_Error ("M_Init: The key binding list only contains sections");
3539         }
3540
3541
3542         if (gamemode == GAME_NEHAHRA)
3543         {
3544                 if (FS_FileExists("maps/neh1m4.bsp"))
3545                 {
3546                         if (FS_FileExists("hearing.dem"))
3547                         {
3548                                 Con_Printf("Nehahra movie and game detected.\n");
3549                                 NehGameType = TYPE_BOTH;
3550                         }
3551                         else
3552                         {
3553                                 Con_Printf("Nehahra game detected.\n");
3554                                 NehGameType = TYPE_GAME;
3555                         }
3556                 }
3557                 else
3558                 {
3559                         if (FS_FileExists("hearing.dem"))
3560                         {
3561                                 Con_Printf("Nehahra movie detected.\n");
3562                                 NehGameType = TYPE_DEMO;
3563                         }
3564                         else
3565                         {
3566                                 Con_Printf("Nehahra not found.\n");
3567                                 NehGameType = TYPE_GAME; // could just complain, but...
3568                         }
3569                 }
3570         }
3571 }
3572
3573 void M_Draw (void)
3574 {
3575         if (key_dest != key_menu)
3576                 m_state = m_none;
3577
3578         if (m_state == m_none)
3579                 return;
3580
3581         switch (m_state)
3582         {
3583         case m_none:
3584                 break;
3585
3586         case m_main:
3587                 M_Main_Draw ();
3588                 break;
3589
3590         case m_demo:
3591                 M_Demo_Draw ();
3592                 break;
3593
3594         case m_singleplayer:
3595                 M_SinglePlayer_Draw ();
3596                 break;
3597
3598         case m_load:
3599                 M_Load_Draw ();
3600                 break;
3601
3602         case m_save:
3603                 M_Save_Draw ();
3604                 break;
3605
3606         case m_multiplayer:
3607                 M_MultiPlayer_Draw ();
3608                 break;
3609
3610         case m_setup:
3611                 M_Setup_Draw ();
3612                 break;
3613
3614         case m_options:
3615                 M_Options_Draw ();
3616                 break;
3617
3618         case m_options_effects:
3619                 M_Options_Effects_Draw ();
3620                 break;
3621
3622         case m_options_colorcontrol:
3623                 M_Options_ColorControl_Draw ();
3624                 break;
3625
3626         case m_keys:
3627                 M_Keys_Draw ();
3628                 break;
3629
3630         case m_video:
3631                 M_Video_Draw ();
3632                 break;
3633
3634         case m_help:
3635                 M_Help_Draw ();
3636                 break;
3637
3638         case m_quit:
3639                 M_Quit_Draw ();
3640                 break;
3641
3642         case m_lanconfig:
3643                 M_LanConfig_Draw ();
3644                 break;
3645
3646         case m_gameoptions:
3647                 M_GameOptions_Draw ();
3648                 break;
3649
3650         case m_slist:
3651                 M_ServerList_Draw ();
3652                 break;
3653         }
3654
3655         if (m_entersound)
3656         {
3657                 S_LocalSound ("misc/menu2.wav");
3658                 m_entersound = false;
3659         }
3660
3661         S_ExtraUpdate ();
3662 }
3663
3664
3665 void M_Keydown (int key, char ascii)
3666 {
3667         switch (m_state)
3668         {
3669         case m_none:
3670                 return;
3671
3672         case m_main:
3673                 M_Main_Key (key, ascii);
3674                 return;
3675
3676         case m_demo:
3677                 M_Demo_Key (key, ascii);
3678                 return;
3679
3680         case m_singleplayer:
3681                 M_SinglePlayer_Key (key, ascii);
3682                 return;
3683
3684         case m_load:
3685                 M_Load_Key (key, ascii);
3686                 return;
3687
3688         case m_save:
3689                 M_Save_Key (key, ascii);
3690                 return;
3691
3692         case m_multiplayer:
3693                 M_MultiPlayer_Key (key, ascii);
3694                 return;
3695
3696         case m_setup:
3697                 M_Setup_Key (key, ascii);
3698                 return;
3699
3700         case m_options:
3701                 M_Options_Key (key, ascii);
3702                 return;
3703
3704         case m_options_effects:
3705                 M_Options_Effects_Key (key, ascii);
3706                 return;
3707
3708         case m_options_colorcontrol:
3709                 M_Options_ColorControl_Key (key, ascii);
3710                 return;
3711
3712         case m_keys:
3713                 M_Keys_Key (key, ascii);
3714                 return;
3715
3716         case m_video:
3717                 M_Video_Key (key, ascii);
3718                 return;
3719
3720         case m_help:
3721                 M_Help_Key (key, ascii);
3722                 return;
3723
3724         case m_quit:
3725                 M_Quit_Key (key, ascii);
3726                 return;
3727
3728         case m_lanconfig:
3729                 M_LanConfig_Key (key, ascii);
3730                 return;
3731
3732         case m_gameoptions:
3733                 M_GameOptions_Key (key, ascii);
3734                 return;
3735
3736         case m_slist:
3737                 M_ServerList_Key (key, ascii);
3738                 return;
3739         }
3740 }
3741
3742 void M_Shutdown(void)
3743 {
3744         // reset key_dest
3745         key_dest = key_game;
3746 }
3747
3748 void M_Restart(void)
3749 {
3750 }
3751
3752 //============================================================================
3753 // Menu prog handling
3754 mfunction_t *PRVM_ED_FindFunction(const char *);
3755
3756 #define M_F_INIT                "m_init"
3757 #define M_F_KEYDOWN             "m_keydown"
3758 #define M_F_DRAW                "m_draw"
3759 #define M_F_TOGGLE              "m_toggle"
3760 #define M_F_SHUTDOWN    "m_shutdown"
3761
3762 static char *m_required_func[] = {
3763 M_F_INIT,
3764 M_F_KEYDOWN,
3765 M_F_DRAW,
3766 M_F_TOGGLE,
3767 M_F_SHUTDOWN,
3768 };
3769
3770 static int m_numrequiredfunc = sizeof(m_required_func) / sizeof(char*);
3771
3772 static func_t m_draw,m_keydown;
3773
3774 void MR_SetRouting (qboolean forceold);
3775
3776 void MP_Error(void)
3777 {
3778         // fall back to the normal menu
3779
3780         // say it
3781         Con_Printf("Falling back to normal menu\n");
3782
3783         key_dest = key_game;
3784
3785         //PRVM_ResetProg();
3786
3787         // init the normal menu now -> this will also correct the menu router pointers
3788         MR_SetRouting (TRUE);
3789 }
3790
3791 void MP_Keydown (int key, char ascii)
3792 {
3793         PRVM_Begin;
3794         PRVM_SetProg(PRVM_MENUPROG);
3795
3796         // set time
3797         *prog->time = realtime;
3798
3799         // pass key
3800         prog->globals[OFS_PARM0] = (float) key;
3801         prog->globals[OFS_PARM1] = (float) ascii;
3802         PRVM_ExecuteProgram(m_keydown, M_F_KEYDOWN"(float key, float ascii) required\n");
3803
3804         PRVM_End;
3805 }
3806
3807 void MP_Draw (void)
3808 {
3809         PRVM_Begin;
3810         PRVM_SetProg(PRVM_MENUPROG);
3811
3812         // set time
3813         *prog->time = realtime;
3814
3815         PRVM_ExecuteProgram(m_draw,"");
3816
3817         PRVM_End;
3818 }
3819
3820 void MP_ToggleMenu_f (void)
3821 {
3822         PRVM_Begin;
3823         PRVM_SetProg(PRVM_MENUPROG);
3824
3825         // set time
3826         *prog->time = realtime;
3827
3828         PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_TOGGLE) - prog->functions),"");
3829
3830         PRVM_End;
3831 }
3832
3833 void MP_Shutdown (void)
3834 {
3835         PRVM_Begin;
3836         PRVM_SetProg(PRVM_MENUPROG);
3837
3838         // set time
3839         *prog->time = realtime;
3840
3841         PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_SHUTDOWN) - prog->functions),"");
3842
3843         // reset key_dest
3844         key_dest = key_game;
3845
3846         // AK not using this cause Im not sure whether this is useful at all instead :
3847         PRVM_ResetProg();
3848
3849         PRVM_End;
3850 }
3851
3852 void MP_Init (void)
3853 {
3854         PRVM_Begin;
3855         PRVM_InitProg(PRVM_MENUPROG);
3856
3857         prog->crc = M_PROGHEADER_CRC;
3858         prog->edictprivate_size = 0; // no private struct used
3859         prog->name = M_NAME;
3860         prog->limit_edicts = M_MAX_EDICTS;
3861         prog->extensionstring = vm_m_extensions;
3862         prog->builtins = vm_m_builtins;
3863         prog->numbuiltins = vm_m_numbuiltins;
3864         prog->init_cmd = VM_M_Cmd_Init;
3865         prog->reset_cmd = VM_M_Cmd_Reset;
3866         prog->error_cmd = MP_Error;
3867
3868         // allocate the mempools
3869         prog->edicts_mempool = Mem_AllocPool(M_NAME " edicts mempool");
3870         prog->edictstring_mempool = Mem_AllocPool( M_NAME " edict string mempool");
3871         prog->progs_mempool = Mem_AllocPool(M_PROG_FILENAME);
3872
3873         PRVM_LoadProgs(M_PROG_FILENAME, m_numrequiredfunc, m_required_func);
3874
3875         // set m_draw and m_keydown
3876         m_draw = (func_t) (PRVM_ED_FindFunction(M_F_DRAW) - prog->functions);
3877         m_keydown = (func_t) (PRVM_ED_FindFunction(M_F_KEYDOWN) - prog->functions);
3878
3879         // set time
3880         *prog->time = realtime;
3881
3882         // call the prog init
3883         PRVM_ExecuteProgram((func_t) (PRVM_ED_FindFunction(M_F_INIT) - prog->functions),"");
3884
3885         PRVM_End;
3886 }
3887
3888 void MP_Restart(void)
3889 {
3890
3891         MP_Init();
3892 }
3893
3894 //============================================================================
3895 // Menu router
3896
3897 static cvar_t forceqmenu = { 0, "forceqmenu", "0" };
3898
3899 void MR_SetRouting(qboolean forceold)
3900 {
3901         static qboolean m_init = FALSE, mp_init = FALSE;
3902
3903         // if the menu prog isnt available or forceqmenu ist set, use the old menu
3904         if(!FS_FileExists(M_PROG_FILENAME) || forceqmenu.integer || forceold)
3905         {
3906                 // set menu router function pointers
3907                 MR_Keydown = M_Keydown;
3908                 MR_Draw = M_Draw;
3909                 MR_ToggleMenu_f = M_ToggleMenu_f;
3910                 MR_Shutdown = M_Shutdown;
3911
3912                 // init
3913                 if(!m_init)
3914                 {
3915                         M_Init();
3916                         m_init = TRUE;
3917                 }
3918                 else
3919                         M_Restart();
3920         }
3921         else
3922         {
3923                 // set menu router function pointers
3924                 MR_Keydown = MP_Keydown;
3925                 MR_Draw = MP_Draw;
3926                 MR_ToggleMenu_f = MP_ToggleMenu_f;
3927                 MR_Shutdown = MP_Shutdown;
3928
3929                 if(!mp_init)
3930                 {
3931                         MP_Init();
3932                         mp_init = TRUE;
3933                 }
3934                 else
3935                         MP_Restart();
3936         }
3937 }
3938
3939 void MR_Restart(void)
3940 {
3941         MR_Shutdown ();
3942         MR_SetRouting (FALSE);
3943 }
3944
3945 void MR_Init()
3946 {
3947         // set router console commands
3948         Cvar_RegisterVariable (&forceqmenu);
3949         Cmd_AddCommand ("menu_restart",MR_Restart);
3950
3951         // use -forceqmenu to use always the normal quake menu (it sets forceqmenu to 1)
3952         if(COM_CheckParm("-forceqmenu"))
3953                 Cvar_SetValueQuick(&forceqmenu,1);
3954         // use -useqmenu for debugging proposes, cause it starts
3955         // the normal quake menu only the first time
3956         else if(COM_CheckParm("-useqmenu"))
3957                 MR_SetRouting (TRUE);
3958         else
3959                 MR_SetRouting (FALSE);
3960 }
3961
3962
3963
3964