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