]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - menu.c
46864a75cacf8c8220da90d70bb363e7ac8d435b
[xonotic/darkplaces.git] / menu.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 #include "quakedef.h"
21 #include "image.h"
22
23
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_PrintWhite (float cx, float cy, const char *str)
172 {
173         DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 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;
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)
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_PrintWhite (95, 10 * 8, "Nexuiz is for");
580                 else if (gamemode == GAME_GOODVSBAD2)
581                         M_PrintWhite (95, 10 * 8, "Good Vs Bad 2 is for");
582                 else
583                         M_PrintWhite (95, 10 * 8, "Transfusion is for");
584                 M_PrintWhite (83, 11 * 8, "multiplayer play only");
585         }
586         else
587         {
588                 int             f;
589
590                 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_sgl.lmp");
591                 M_DrawPic (72, 32, "gfx/sp_menu.lmp");
592
593                 f = (int)(realtime * 10)%6;
594
595                 M_DrawPic (54, 32 + m_singleplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
596         }
597 }
598
599
600 void M_SinglePlayer_Key (int key)
601 {
602         if (gamemode == GAME_TRANSFUSION || gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2)
603         {
604                 if (key == K_ESCAPE || key == K_ENTER)
605                         m_state = m_main;
606                 return;
607         }
608
609         switch (key)
610         {
611         case K_ESCAPE:
612                 M_Menu_Main_f ();
613                 break;
614
615         case K_DOWNARROW:
616                 S_LocalSound ("misc/menu1.wav");
617                 if (++m_singleplayer_cursor >= SINGLEPLAYER_ITEMS)
618                         m_singleplayer_cursor = 0;
619                 break;
620
621         case K_UPARROW:
622                 S_LocalSound ("misc/menu1.wav");
623                 if (--m_singleplayer_cursor < 0)
624                         m_singleplayer_cursor = SINGLEPLAYER_ITEMS - 1;
625                 break;
626
627         case K_ENTER:
628                 m_entersound = true;
629
630                 switch (m_singleplayer_cursor)
631                 {
632                 case 0:
633                         key_dest = key_game;
634                         if (sv.active)
635                                 Cbuf_AddText ("disconnect\n");
636                         Cbuf_AddText ("maxplayers 1\n");
637                         Cbuf_AddText ("deathmatch 0\n");
638                         Cbuf_AddText ("coop 0\n");
639                         if (gamemode == GAME_NEHAHRA)
640                                 Cbuf_AddText ("map nehstart\n");
641                         else
642                                 Cbuf_AddText ("map start\n");
643                         break;
644
645                 case 1:
646                         M_Menu_Load_f ();
647                         break;
648
649                 case 2:
650                         M_Menu_Save_f ();
651                         break;
652                 }
653         }
654 }
655
656 //=============================================================================
657 /* LOAD/SAVE MENU */
658
659 int             load_cursor;            // 0 < load_cursor < MAX_SAVEGAMES
660
661 #define MAX_SAVEGAMES           12
662 char    m_filenames[MAX_SAVEGAMES][SAVEGAME_COMMENT_LENGTH+1];
663 int             loadable[MAX_SAVEGAMES];
664
665 void M_ScanSaves (void)
666 {
667         int             i, j;
668         char    name[MAX_OSPATH];
669         char    *str;
670         qfile_t *f;
671         int             version;
672
673         for (i=0 ; i<MAX_SAVEGAMES ; i++)
674         {
675                 strcpy (m_filenames[i], "--- UNUSED SLOT ---");
676                 loadable[i] = false;
677                 sprintf (name, "s%i.sav", i);
678                 f = FS_Open (name, "r", false);
679                 if (!f)
680                         continue;
681                 str = FS_Getline (f);
682                 sscanf (str, "%i\n", &version);
683                 str = FS_Getline (f);
684                 strncpy (m_filenames[i], str, sizeof(m_filenames[i])-1);
685
686         // change _ back to space
687                 for (j=0 ; j<SAVEGAME_COMMENT_LENGTH ; j++)
688                         if (m_filenames[i][j] == '_')
689                                 m_filenames[i][j] = ' ';
690                 loadable[i] = true;
691                 FS_Close (f);
692         }
693 }
694
695 void M_Menu_Load_f (void)
696 {
697         m_entersound = true;
698         m_state = m_load;
699         key_dest = key_menu;
700         M_ScanSaves ();
701 }
702
703
704 void M_Menu_Save_f (void)
705 {
706         if (!sv.active)
707                 return;
708         if (cl.intermission)
709                 return;
710         if (svs.maxclients != 1)
711                 return;
712         m_entersound = true;
713         m_state = m_save;
714         key_dest = key_menu;
715         M_ScanSaves ();
716 }
717
718
719 void M_Load_Draw (void)
720 {
721         int             i;
722         cachepic_t      *p;
723
724         M_Background(320, 200);
725
726         p = Draw_CachePic ("gfx/p_load.lmp");
727         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_load.lmp");
728
729         for (i=0 ; i< MAX_SAVEGAMES; i++)
730                 M_Print (16, 32 + 8*i, m_filenames[i]);
731
732 // line cursor
733         M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
734 }
735
736
737 void M_Save_Draw (void)
738 {
739         int             i;
740         cachepic_t      *p;
741
742         M_Background(320, 200);
743
744         p = Draw_CachePic ("gfx/p_save.lmp");
745         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_save.lmp");
746
747         for (i=0 ; i<MAX_SAVEGAMES ; i++)
748                 M_Print (16, 32 + 8*i, m_filenames[i]);
749
750 // line cursor
751         M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
752 }
753
754
755 void M_Load_Key (int k)
756 {
757         switch (k)
758         {
759         case K_ESCAPE:
760                 M_Menu_SinglePlayer_f ();
761                 break;
762
763         case K_ENTER:
764                 S_LocalSound ("misc/menu2.wav");
765                 if (!loadable[load_cursor])
766                         return;
767                 m_state = m_none;
768                 key_dest = key_game;
769
770                 // issue the load command
771                 Cbuf_AddText (va ("load s%i\n", load_cursor) );
772                 return;
773
774         case K_UPARROW:
775         case K_LEFTARROW:
776                 S_LocalSound ("misc/menu1.wav");
777                 load_cursor--;
778                 if (load_cursor < 0)
779                         load_cursor = MAX_SAVEGAMES-1;
780                 break;
781
782         case K_DOWNARROW:
783         case K_RIGHTARROW:
784                 S_LocalSound ("misc/menu1.wav");
785                 load_cursor++;
786                 if (load_cursor >= MAX_SAVEGAMES)
787                         load_cursor = 0;
788                 break;
789         }
790 }
791
792
793 void M_Save_Key (int k)
794 {
795         switch (k)
796         {
797         case K_ESCAPE:
798                 M_Menu_SinglePlayer_f ();
799                 break;
800
801         case K_ENTER:
802                 m_state = m_none;
803                 key_dest = key_game;
804                 Cbuf_AddText (va("save s%i\n", load_cursor));
805                 return;
806
807         case K_UPARROW:
808         case K_LEFTARROW:
809                 S_LocalSound ("misc/menu1.wav");
810                 load_cursor--;
811                 if (load_cursor < 0)
812                         load_cursor = MAX_SAVEGAMES-1;
813                 break;
814
815         case K_DOWNARROW:
816         case K_RIGHTARROW:
817                 S_LocalSound ("misc/menu1.wav");
818                 load_cursor++;
819                 if (load_cursor >= MAX_SAVEGAMES)
820                         load_cursor = 0;
821                 break;
822         }
823 }
824
825 //=============================================================================
826 /* MULTIPLAYER MENU */
827
828 int     m_multiplayer_cursor;
829 #define MULTIPLAYER_ITEMS       3
830
831
832 void M_Menu_MultiPlayer_f (void)
833 {
834         key_dest = key_menu;
835         m_state = m_multiplayer;
836         m_entersound = true;
837 }
838
839
840 void M_MultiPlayer_Draw (void)
841 {
842         int             f;
843         cachepic_t      *p;
844
845         M_Background(320, 200);
846
847         M_DrawPic (16, 4, "gfx/qplaque.lmp");
848         p = Draw_CachePic ("gfx/p_multi.lmp");
849         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
850         M_DrawPic (72, 32, "gfx/mp_menu.lmp");
851
852         f = (int)(realtime * 10)%6;
853
854         M_DrawPic (54, 32 + m_multiplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
855 }
856
857
858 void M_MultiPlayer_Key (int key)
859 {
860         switch (key)
861         {
862         case K_ESCAPE:
863                 M_Menu_Main_f ();
864                 break;
865
866         case K_DOWNARROW:
867                 S_LocalSound ("misc/menu1.wav");
868                 if (++m_multiplayer_cursor >= MULTIPLAYER_ITEMS)
869                         m_multiplayer_cursor = 0;
870                 break;
871
872         case K_UPARROW:
873                 S_LocalSound ("misc/menu1.wav");
874                 if (--m_multiplayer_cursor < 0)
875                         m_multiplayer_cursor = MULTIPLAYER_ITEMS - 1;
876                 break;
877
878         case K_ENTER:
879                 m_entersound = true;
880                 switch (m_multiplayer_cursor)
881                 {
882                 case 0:
883                 case 1:
884                         M_Menu_LanConfig_f ();
885                         break;
886
887                 case 2:
888                         M_Menu_Setup_f ();
889                         break;
890                 }
891         }
892 }
893
894 //=============================================================================
895 /* SETUP MENU */
896
897 int             setup_cursor = 3;
898 int             setup_cursor_table[] = {40, 64, 88, 124};
899
900 char    setup_myname[32];
901 int             setup_oldtop;
902 int             setup_oldbottom;
903 int             setup_top;
904 int             setup_bottom;
905
906 #define NUM_SETUP_CMDS  4
907
908 void M_Menu_Setup_f (void)
909 {
910         key_dest = key_menu;
911         m_state = m_setup;
912         m_entersound = true;
913         strcpy(setup_myname, cl_name.string);
914         setup_top = setup_oldtop = cl_color.integer >> 4;
915         setup_bottom = setup_oldbottom = cl_color.integer & 15;
916 }
917
918 static int menuplyr_width, menuplyr_height, menuplyr_top, menuplyr_bottom, menuplyr_load;
919 static qbyte *menuplyr_pixels;
920 static unsigned int *menuplyr_translated;
921
922 void M_Setup_Draw (void)
923 {
924         int i;
925         cachepic_t      *p;
926
927         M_Background(320, 200);
928
929         M_DrawPic (16, 4, "gfx/qplaque.lmp");
930         p = Draw_CachePic ("gfx/p_multi.lmp");
931         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
932
933         M_Print (64, 40, "Your name");
934         M_DrawTextBox (160, 32, 16, 1);
935         M_Print (168, 40, setup_myname);
936
937         if (gamemode != GAME_GOODVSBAD2)
938         {
939                 M_Print (64, 64, "Shirt color");
940                 M_Print (64, 88, "Pants color");
941         }
942
943         M_DrawTextBox (64, 124-8, 14, 1);
944         M_Print (72, 124, "Accept Changes");
945
946         // LordHavoc: rewrote this code greatly
947         if (menuplyr_load)
948         {
949                 qbyte *data, *f;
950                 menuplyr_load = false;
951                 menuplyr_top = -1;
952                 menuplyr_bottom = -1;
953                 if ((f = FS_LoadFile("gfx/menuplyr.lmp", true)))
954                 {
955                         data = LoadLMPAs8Bit (f, 0, 0);
956                         menuplyr_width = image_width;
957                         menuplyr_height = image_height;
958                         Mem_Free(f);
959                         menuplyr_pixels = Mem_Alloc(menu_mempool, menuplyr_width * menuplyr_height);
960                         menuplyr_translated = Mem_Alloc(menu_mempool, menuplyr_width * menuplyr_height * 4);
961                         memcpy(menuplyr_pixels, data, menuplyr_width * menuplyr_height);
962                         Mem_Free(data);
963                 }
964         }
965
966         if (menuplyr_pixels)
967         {
968                 if (menuplyr_top != setup_top || menuplyr_bottom != setup_bottom)
969                 {
970                         menuplyr_top = setup_top;
971                         menuplyr_bottom = setup_bottom;
972                         M_BuildTranslationTable(menuplyr_top*16, menuplyr_bottom*16);
973                         for (i = 0;i < menuplyr_width * menuplyr_height;i++)
974                                 menuplyr_translated[i] = palette_complete[translationTable[menuplyr_pixels[i]]];
975                         Draw_NewPic("gfx/menuplyr.lmp", menuplyr_width, menuplyr_height, true, (qbyte *)menuplyr_translated);
976                 }
977                 M_DrawPic(160, 48, "gfx/bigbox.lmp");
978                 M_DrawPic(172, 56, "gfx/menuplyr.lmp");
979         }
980
981         if (setup_cursor == 0)
982                 M_DrawCharacter (168 + 8*strlen(setup_myname), setup_cursor_table [setup_cursor], 10+((int)(realtime*4)&1));
983         else
984                 M_DrawCharacter (56, setup_cursor_table [setup_cursor], 12+((int)(realtime*4)&1));
985 }
986
987
988 void M_Setup_Key (int k)
989 {
990         int                     l;
991
992         switch (k)
993         {
994         case K_ESCAPE:
995                 M_Menu_MultiPlayer_f ();
996                 break;
997
998         case K_UPARROW:
999                 S_LocalSound ("misc/menu1.wav");
1000                 setup_cursor--;
1001                 if (setup_cursor < 0)
1002                         setup_cursor = NUM_SETUP_CMDS-1;
1003                 break;
1004
1005         case K_DOWNARROW:
1006                 S_LocalSound ("misc/menu1.wav");
1007                 setup_cursor++;
1008                 if (setup_cursor >= NUM_SETUP_CMDS)
1009                         setup_cursor = 0;
1010                 break;
1011
1012         case K_LEFTARROW:
1013                 if (setup_cursor < 1)
1014                         return;
1015                 S_LocalSound ("misc/menu3.wav");
1016                 if (setup_cursor == 1)
1017                         setup_top = setup_top - 1;
1018                 if (setup_cursor == 2)
1019                         setup_bottom = setup_bottom - 1;
1020                 break;
1021         case K_RIGHTARROW:
1022                 if (setup_cursor < 1)
1023                         return;
1024 forward:
1025                 S_LocalSound ("misc/menu3.wav");
1026                 if (setup_cursor == 1)
1027                         setup_top = setup_top + 1;
1028                 if (setup_cursor == 2)
1029                         setup_bottom = setup_bottom + 1;
1030                 break;
1031
1032         case K_ENTER:
1033                 if (setup_cursor == 0)
1034                         return;
1035
1036                 if (setup_cursor == 1 || setup_cursor == 2)
1037                         goto forward;
1038
1039                 // setup_cursor == 3 (Accept changes)
1040                 if (strcmp(cl_name.string, setup_myname) != 0)
1041                         Cbuf_AddText ( va ("name \"%s\"\n", setup_myname) );
1042                 if (setup_top != setup_oldtop || setup_bottom != setup_oldbottom)
1043                         Cbuf_AddText( va ("color %i %i\n", setup_top, setup_bottom) );
1044                 m_entersound = true;
1045                 M_Menu_MultiPlayer_f ();
1046                 break;
1047
1048         case K_BACKSPACE:
1049                 if (setup_cursor == 0)
1050                 {
1051                         if (strlen(setup_myname))
1052                                 setup_myname[strlen(setup_myname)-1] = 0;
1053                 }
1054                 break;
1055
1056         default:
1057                 if (k < 32 || k > 127)
1058                         break;
1059                 if (setup_cursor == 0)
1060                 {
1061                         l = strlen(setup_myname);
1062                         if (l < 15)
1063                         {
1064                                 setup_myname[l+1] = 0;
1065                                 setup_myname[l] = k;
1066                         }
1067                 }
1068         }
1069
1070         if (setup_top > 15)
1071                 setup_top = 0;
1072         if (setup_top < 0)
1073                 setup_top = 15;
1074         if (setup_bottom > 15)
1075                 setup_bottom = 0;
1076         if (setup_bottom < 0)
1077                 setup_bottom = 15;
1078 }
1079
1080 //=============================================================================
1081 /* OPTIONS MENU */
1082
1083 #define SLIDER_RANGE    10
1084
1085 void M_DrawSlider (int x, int y, float num, float rangemin, float rangemax)
1086 {
1087         char text[16];
1088         int i;
1089         float range;
1090         range = bound(0, (num - rangemin) / (rangemax - rangemin), 1);
1091         M_DrawCharacter (x-8, y, 128);
1092         for (i = 0;i < SLIDER_RANGE;i++)
1093                 M_DrawCharacter (x + i*8, y, 129);
1094         M_DrawCharacter (x+i*8, y, 130);
1095         M_DrawCharacter (x + (SLIDER_RANGE-1)*8 * range, y, 131);
1096         sprintf(text, "%g", num);
1097         M_Print(x + (SLIDER_RANGE+2) * 8, y, text);
1098 }
1099
1100 void M_DrawCheckbox (int x, int y, int on)
1101 {
1102         if (on)
1103                 M_Print (x, y, "on");
1104         else
1105                 M_Print (x, y, "off");
1106 }
1107
1108
1109 #define OPTIONS_ITEMS 29
1110
1111 int options_cursor;
1112
1113 void M_Menu_Options_f (void)
1114 {
1115         key_dest = key_menu;
1116         m_state = m_options;
1117         m_entersound = true;
1118 }
1119
1120 extern cvar_t snd_staticvolume;
1121 extern cvar_t gl_delayfinish;
1122 extern cvar_t slowmo;
1123 extern dllhandle_t jpeg_dll;
1124
1125 void M_Menu_Options_AdjustSliders (int dir)
1126 {
1127         S_LocalSound ("misc/menu3.wav");
1128
1129         switch (options_cursor)
1130         {
1131         case 6:
1132                 Cvar_SetValueQuick (&scr_2dresolution, bound(0, scr_2dresolution.value + dir * 0.2, 1));
1133                 break;
1134         case 7:
1135                 Cvar_SetValueQuick (&scr_viewsize, bound(30, scr_viewsize.value + dir * 10, 120));
1136                 break;
1137         case 8:
1138                 if (jpeg_dll != NULL)
1139                         Cvar_SetValueQuick (&scr_screenshot_jpeg, !scr_screenshot_jpeg.integer);
1140                 break;
1141         case 9:
1142                 Cvar_SetValueQuick (&r_sky, !r_sky.integer);
1143                 break;
1144         case 10:
1145                 Cvar_SetValueQuick (&v_overbrightbits, bound(0, v_overbrightbits.integer + dir, 4));
1146                 break;
1147         case 11:
1148                 Cvar_SetValueQuick (&gl_combine, !gl_combine.integer);
1149                 break;
1150         case 12:
1151                 Cvar_SetValueQuick (&gl_dither, !gl_dither.integer);
1152                 break;
1153         case 13:
1154                 Cvar_SetValueQuick (&gl_delayfinish, !gl_delayfinish.integer);
1155                 break;
1156         case 14:
1157                 Cvar_SetValueQuick (&slowmo, bound(0, slowmo.value + dir * 0.25, 5));
1158                 break;
1159         case 15: // music volume
1160                 #ifdef _WIN32
1161                 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 1.0, 1));
1162                 #else
1163                 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 0.1, 1));
1164                 #endif
1165                 break;
1166         case 16: // sfx volume
1167                 Cvar_SetValueQuick (&volume, bound(0, volume.value + dir * 0.1, 1));
1168                 break;
1169         case 17: // static volume
1170                 Cvar_SetValueQuick (&snd_staticvolume, bound(0, snd_staticvolume.value + dir * 0.1, 1));
1171                 break;
1172         case 18:
1173                 Cvar_SetValueQuick (&crosshair, bound(0, crosshair.integer + dir, 5));
1174                 break;
1175         case 19:
1176                 Cvar_SetValueQuick (&crosshair_size, bound(1, crosshair_size.value + dir, 5));
1177                 break;
1178         case 20: // static crosshair
1179                 Cvar_SetValueQuick (&crosshair_static, !crosshair_static.integer);
1180                 break;
1181         case 21: // show framerate
1182                 Cvar_SetValueQuick (&showfps, !showfps.integer);
1183                 break;
1184         case 22: // always run
1185                 if (cl_forwardspeed.value > 200)
1186                 {
1187                         Cvar_SetValueQuick (&cl_forwardspeed, 200);
1188                         Cvar_SetValueQuick (&cl_backspeed, 200);
1189                 }
1190                 else
1191                 {
1192                         Cvar_SetValueQuick (&cl_forwardspeed, 400);
1193                         Cvar_SetValueQuick (&cl_backspeed, 400);
1194                 }
1195                 break;
1196         case 23: // lookspring
1197                 Cvar_SetValueQuick (&lookspring, !lookspring.integer);
1198                 break;
1199         case 24: // lookstrafe
1200                 Cvar_SetValueQuick (&lookstrafe, !lookstrafe.integer);
1201                 break;
1202         case 25: // mouse speed
1203                 Cvar_SetValueQuick (&sensitivity, bound(1, sensitivity.value + dir * 0.5, 50));
1204                 break;
1205         case 26: // mouse look
1206                 Cvar_SetValueQuick (&freelook, !freelook.integer);
1207                 break;
1208         case 27: // invert mouse
1209                 Cvar_SetValueQuick (&m_pitch, -m_pitch.value);
1210                 break;
1211         case 28: // windowed mouse
1212                 Cvar_SetValueQuick (&vid_mouse, !vid_mouse.integer);
1213                 break;
1214         }
1215 }
1216
1217 void M_Options_Draw (void)
1218 {
1219         float y;
1220         cachepic_t      *p;
1221
1222         M_Background(320, 240);
1223
1224         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1225         p = Draw_CachePic("gfx/p_option.lmp");
1226         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1227
1228         y = 32;
1229         M_Print(16, y, "    Customize controls");y += 8;
1230         M_Print(16, y, "         Go to console");y += 8;
1231         M_Print(16, y, "     Reset to defaults");y += 8;
1232         M_Print(16, y, "         Video Options");y += 8;
1233         M_Print(16, y, "       Effects Options");y += 8;
1234         M_Print(16, y, " Color Control Options");y += 8;
1235         M_Print(16, y, "         2D Resolution");M_DrawSlider(220, y, scr_2dresolution.value, 0, 1);y += 8;
1236         M_Print(16, y, "           Screen size");M_DrawSlider(220, y, scr_viewsize.value, 30, 120);y += 8;
1237         M_ItemPrint(16, y, "      JPEG screenshots", jpeg_dll != NULL);M_DrawCheckbox(220, y, scr_screenshot_jpeg.integer);y += 8;
1238         M_Print(16, y, "                   Sky");M_DrawCheckbox(220, y, r_sky.integer);y += 8;
1239         // LordHavoc: FIXME: overbright needs to be disabled in GAME_GOODVSBAD2 but combine should not be disabled
1240         // LordHavoc: perhaps it's time for Overbright Bits to die, and a r_lightmapintensity option to be added?
1241         M_Print(16, y, "       Overbright Bits");M_DrawSlider(220, y, v_overbrightbits.value, 0, 4);y += 8;
1242         M_Print(16, y, "       Texture Combine");M_DrawCheckbox(220, y, gl_combine.integer);y += 8;
1243         M_Print(16, y, "             Dithering");M_DrawCheckbox(220, y, gl_dither.integer);y += 8;
1244         M_Print(16, y, "Delay refresh (faster)");M_DrawCheckbox(220, y, gl_delayfinish.integer);y += 8;
1245         M_ItemPrint(16, y, "        Game Speed", sv.active);M_DrawSlider(220, y, slowmo.value, 0, 5);y += 8;
1246         M_ItemPrint(16, y, "       CD Music Volume", cdaudioinitialized);M_DrawSlider(220, y, bgmvolume.value, 0, 1);y += 8;
1247         M_ItemPrint(16, y, "          Sound Volume", snd_initialized);M_DrawSlider(220, y, volume.value, 0, 1);y += 8;
1248         if (gamemode == GAME_GOODVSBAD2)
1249                 M_ItemPrint(16, y, "          Music Volume", snd_initialized);
1250         else
1251                 M_ItemPrint(16, y, "  Ambient Sound Volume", snd_initialized);
1252         M_DrawSlider(220, y, snd_staticvolume.value, 0, 1);
1253         y += 8;
1254         M_Print(16, y, "             Crosshair");M_DrawSlider(220, y, crosshair.value, 0, 5);y += 8;
1255         M_Print(16, y, "        Crosshair Size");M_DrawSlider(220, y, crosshair_size.value, 1, 5);y += 8;
1256         M_Print(16, y, "      Static Crosshair");M_DrawCheckbox(220, y, crosshair_static.integer);y += 8;
1257         M_Print(16, y, "        Show Framerate");M_DrawCheckbox(220, y, showfps.integer);y += 8;
1258         M_Print(16, y, "            Always Run");M_DrawCheckbox(220, y, cl_forwardspeed.value > 200);y += 8;
1259         M_Print(16, y, "            Lookspring");M_DrawCheckbox(220, y, lookspring.integer);y += 8;
1260         M_Print(16, y, "            Lookstrafe");M_DrawCheckbox(220, y, lookstrafe.integer);y += 8;
1261         M_Print(16, y, "           Mouse Speed");M_DrawSlider(220, y, sensitivity.value, 1, 50);y += 8;
1262         M_Print(16, y, "            Mouse Look");M_DrawCheckbox(220, y, freelook.integer);y += 8;
1263         M_Print(16, y, "          Invert Mouse");M_DrawCheckbox(220, y, m_pitch.value < 0);y += 8;
1264         M_Print(16, y, "             Use Mouse");M_DrawCheckbox(220, y, vid_mouse.integer);y += 8;
1265
1266         // cursor
1267         M_DrawCharacter(200, 32 + options_cursor*8, 12+((int)(realtime*4)&1));
1268 }
1269
1270
1271 void M_Options_Key (int k)
1272 {
1273         switch (k)
1274         {
1275         case K_ESCAPE:
1276                 M_Menu_Main_f ();
1277                 break;
1278
1279         case K_ENTER:
1280                 m_entersound = true;
1281                 switch (options_cursor)
1282                 {
1283                 case 0:
1284                         M_Menu_Keys_f ();
1285                         break;
1286                 case 1:
1287                         m_state = m_none;
1288                         key_dest = key_game;
1289                         Con_ToggleConsole_f ();
1290                         break;
1291                 case 2:
1292                         Cbuf_AddText ("exec default.cfg\n");
1293                         break;
1294                 case 3:
1295                         M_Menu_Video_f ();
1296                         break;
1297                 case 4:
1298                         M_Menu_Options_Effects_f ();
1299                         break;
1300                 case 5:
1301                         M_Menu_Options_ColorControl_f ();
1302                         break;
1303                 default:
1304                         M_Menu_Options_AdjustSliders (1);
1305                         break;
1306                 }
1307                 return;
1308
1309         case K_UPARROW:
1310                 S_LocalSound ("misc/menu1.wav");
1311                 options_cursor--;
1312                 if (options_cursor < 0)
1313                         options_cursor = OPTIONS_ITEMS-1;
1314                 break;
1315
1316         case K_DOWNARROW:
1317                 S_LocalSound ("misc/menu1.wav");
1318                 options_cursor++;
1319                 if (options_cursor >= OPTIONS_ITEMS)
1320                         options_cursor = 0;
1321                 break;
1322
1323         case K_LEFTARROW:
1324                 M_Menu_Options_AdjustSliders (-1);
1325                 break;
1326
1327         case K_RIGHTARROW:
1328                 M_Menu_Options_AdjustSliders (1);
1329                 break;
1330         }
1331 }
1332
1333 #define OPTIONS_EFFECTS_ITEMS   17
1334
1335 int options_effects_cursor;
1336
1337 void M_Menu_Options_Effects_f (void)
1338 {
1339         key_dest = key_menu;
1340         m_state = m_options_effects;
1341         m_entersound = true;
1342 }
1343
1344
1345 extern cvar_t r_detailtextures;
1346 extern cvar_t cl_particles;
1347 extern cvar_t cl_explosions;
1348 extern cvar_t cl_stainmaps;
1349 extern cvar_t cl_decals;
1350 extern cvar_t r_explosionclip;
1351 extern cvar_t r_dlightmap;
1352 extern cvar_t r_modellights;
1353 extern cvar_t r_coronas;
1354 extern cvar_t gl_flashblend;
1355 extern cvar_t cl_particles_bulletimpacts;
1356 extern cvar_t cl_particles_smoke;
1357 extern cvar_t cl_particles_sparks;
1358 extern cvar_t cl_particles_bubbles;
1359 extern cvar_t cl_particles_blood;
1360 extern cvar_t cl_particles_blood_size;
1361 extern cvar_t cl_particles_blood_alpha;
1362
1363 void M_Menu_Options_Effects_AdjustSliders (int dir)
1364 {
1365         S_LocalSound ("misc/menu3.wav");
1366
1367         switch (options_effects_cursor)
1368         {
1369         case 0:
1370                 Cvar_SetValueQuick (&r_modellights, bound(0, r_modellights.value + dir, 8));
1371                 break;
1372         case 1:
1373                 Cvar_SetValueQuick (&r_dlightmap, !r_dlightmap.integer);
1374                 break;
1375         case 2:
1376                 Cvar_SetValueQuick (&r_coronas, !r_coronas.integer);
1377                 break;
1378         case 3:
1379                 Cvar_SetValueQuick (&gl_flashblend, !gl_flashblend.integer);
1380                 break;
1381         case 4:
1382                 Cvar_SetValueQuick (&cl_particles, !cl_particles.integer);
1383                 break;
1384         case 5:
1385                 Cvar_SetValueQuick (&cl_explosions, !cl_explosions.integer);
1386                 break;
1387         case 6:
1388                 Cvar_SetValueQuick (&r_explosionclip, !r_explosionclip.integer);
1389                 break;
1390         case 7:
1391                 Cvar_SetValueQuick (&cl_stainmaps, !cl_stainmaps.integer);
1392                 break;
1393         case 8:
1394                 Cvar_SetValueQuick (&cl_stainmaps, !cl_decals.integer);
1395                 break;
1396         case 9:
1397                 Cvar_SetValueQuick (&r_detailtextures, !r_detailtextures.integer);
1398                 break;
1399         case 10:
1400                 Cvar_SetValueQuick (&cl_particles_bulletimpacts, !cl_particles_bulletimpacts.integer);
1401                 break;
1402         case 11:
1403                 Cvar_SetValueQuick (&cl_particles_smoke, !cl_particles_smoke.integer);
1404                 break;
1405         case 12:
1406                 Cvar_SetValueQuick (&cl_particles_sparks, !cl_particles_sparks.integer);
1407                 break;
1408         case 13:
1409                 Cvar_SetValueQuick (&cl_particles_bubbles, !cl_particles_bubbles.integer);
1410                 break;
1411         case 14:
1412                 Cvar_SetValueQuick (&cl_particles_blood, !cl_particles_blood.integer);
1413                 break;
1414         case 15:
1415                 Cvar_SetValueQuick (&cl_particles_blood_size, bound(2, cl_particles_blood_size.value + dir * 1, 20));
1416                 break;
1417         case 16:
1418                 Cvar_SetValueQuick (&cl_particles_blood_alpha, bound(0.2, cl_particles_blood_alpha.value + dir * 0.1, 1));
1419                 break;
1420         }
1421 }
1422
1423 void M_Options_Effects_Draw (void)
1424 {
1425         float y;
1426         cachepic_t      *p;
1427
1428         M_Background(320, 200);
1429
1430         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1431         p = Draw_CachePic("gfx/p_option.lmp");
1432         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1433
1434         y = 32;
1435         M_Print(16, y, "      Lights Per Model");M_DrawSlider(220, y, r_modellights.value, 0, 8);y += 8;
1436         M_Print(16, y, " Fast Dynamic Lighting");M_DrawCheckbox(220, y, !r_dlightmap.integer);y += 8;
1437         M_Print(16, y, "               Coronas");M_DrawCheckbox(220, y, r_coronas.integer);y += 8;
1438         M_Print(16, y, "      Use Only Coronas");M_DrawCheckbox(220, y, gl_flashblend.integer);y += 8;
1439         M_Print(16, y, "             Particles");M_DrawCheckbox(220, y, cl_particles.integer);y += 8;
1440         M_Print(16, y, "            Explosions");M_DrawCheckbox(220, y, cl_explosions.integer);y += 8;
1441         M_Print(16, y, "    Explosion Clipping");M_DrawCheckbox(220, y, r_explosionclip.integer);y += 8;
1442         M_Print(16, y, "             Stainmaps");M_DrawCheckbox(220, y, cl_stainmaps.integer);y += 8;
1443         M_Print(16, y, "                Decals");M_DrawCheckbox(220, y, cl_decals.integer);y += 8;
1444         M_Print(16, y, "      Detail Texturing");M_DrawCheckbox(220, y, r_detailtextures.integer);y += 8;
1445         M_Print(16, y, "        Bullet Impacts");M_DrawCheckbox(220, y, cl_particles_bulletimpacts.integer);y += 8;
1446         M_Print(16, y, "                 Smoke");M_DrawCheckbox(220, y, cl_particles_smoke.integer);y += 8;
1447         M_Print(16, y, "                Sparks");M_DrawCheckbox(220, y, cl_particles_sparks.integer);y += 8;
1448         M_Print(16, y, "               Bubbles");M_DrawCheckbox(220, y, cl_particles_bubbles.integer);y += 8;
1449         M_Print(16, y, "                 Blood");M_DrawCheckbox(220, y, cl_particles_blood.integer);y += 8;
1450         M_Print(16, y, "            Blood Size");M_DrawSlider(220, y, cl_particles_blood_size.value, 2, 20);y += 8;
1451         M_Print(16, y, "         Blood Opacity");M_DrawSlider(220, y, cl_particles_blood_alpha.value, 0.2, 1);y += 8;
1452
1453         // cursor
1454         M_DrawCharacter(200, 32 + options_effects_cursor*8, 12+((int)(realtime*4)&1));
1455 }
1456
1457
1458 void M_Options_Effects_Key (int k)
1459 {
1460         switch (k)
1461         {
1462         case K_ESCAPE:
1463                 M_Menu_Options_f ();
1464                 break;
1465
1466         case K_ENTER:
1467                 M_Menu_Options_Effects_AdjustSliders (1);
1468                 break;
1469
1470         case K_UPARROW:
1471                 S_LocalSound ("misc/menu1.wav");
1472                 options_effects_cursor--;
1473                 if (options_effects_cursor < 0)
1474                         options_effects_cursor = OPTIONS_EFFECTS_ITEMS-1;
1475                 break;
1476
1477         case K_DOWNARROW:
1478                 S_LocalSound ("misc/menu1.wav");
1479                 options_effects_cursor++;
1480                 if (options_effects_cursor >= OPTIONS_EFFECTS_ITEMS)
1481                         options_effects_cursor = 0;
1482                 break;
1483
1484         case K_LEFTARROW:
1485                 M_Menu_Options_Effects_AdjustSliders (-1);
1486                 break;
1487
1488         case K_RIGHTARROW:
1489                 M_Menu_Options_Effects_AdjustSliders (1);
1490                 break;
1491         }
1492 }
1493
1494
1495
1496
1497
1498 #define OPTIONS_COLORCONTROL_ITEMS      18
1499
1500 int             options_colorcontrol_cursor;
1501
1502 // intensity value to match up to 50% dither to 'correct' quake
1503 cvar_t menu_options_colorcontrol_correctionvalue = {0, "menu_options_colorcontrol_correctionvalue", "0.25"};
1504
1505 void M_Menu_Options_ColorControl_f (void)
1506 {
1507         key_dest = key_menu;
1508         m_state = m_options_colorcontrol;
1509         m_entersound = true;
1510 }
1511
1512
1513 void M_Menu_Options_ColorControl_AdjustSliders (int dir)
1514 {
1515         float f;
1516         S_LocalSound ("misc/menu3.wav");
1517
1518         switch (options_colorcontrol_cursor)
1519         {
1520         case 1:
1521                 Cvar_SetValueQuick (&v_hwgamma, !v_hwgamma.integer);
1522                 break;
1523         case 2:
1524                 Cvar_SetValueQuick (&v_color_enable, 0);
1525                 Cvar_SetValueQuick (&v_gamma, bound(1, v_gamma.value + dir * 0.125, 5));
1526                 break;
1527         case 3:
1528                 Cvar_SetValueQuick (&v_color_enable, 0);
1529                 Cvar_SetValueQuick (&v_contrast, bound(1, v_contrast.value + dir * 0.125, 5));
1530                 break;
1531         case 4:
1532                 Cvar_SetValueQuick (&v_color_enable, 0);
1533                 Cvar_SetValueQuick (&v_brightness, bound(0, v_brightness.value + dir * 0.05, 0.8));
1534                 break;
1535         case 5:
1536                 Cvar_SetValueQuick (&v_color_enable, !v_color_enable.integer);
1537                 break;
1538         case 6:
1539                 Cvar_SetValueQuick (&v_color_enable, 1);
1540                 Cvar_SetValueQuick (&v_color_black_r, bound(0, v_color_black_r.value + dir * 0.0125, 0.8));
1541                 break;
1542         case 7:
1543                 Cvar_SetValueQuick (&v_color_enable, 1);
1544                 Cvar_SetValueQuick (&v_color_black_g, bound(0, v_color_black_g.value + dir * 0.0125, 0.8));
1545                 break;
1546         case 8:
1547                 Cvar_SetValueQuick (&v_color_enable, 1);
1548                 Cvar_SetValueQuick (&v_color_black_b, bound(0, v_color_black_b.value + dir * 0.0125, 0.8));
1549                 break;
1550         case 9:
1551                 Cvar_SetValueQuick (&v_color_enable, 1);
1552                 f = bound(0, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3 + dir * 0.0125, 0.8);
1553                 Cvar_SetValueQuick (&v_color_black_r, f);
1554                 Cvar_SetValueQuick (&v_color_black_g, f);
1555                 Cvar_SetValueQuick (&v_color_black_b, f);
1556                 break;
1557         case 10:
1558                 Cvar_SetValueQuick (&v_color_enable, 1);
1559                 Cvar_SetValueQuick (&v_color_grey_r, bound(0, v_color_grey_r.value + dir * 0.0125, 0.95));
1560                 break;
1561         case 11:
1562                 Cvar_SetValueQuick (&v_color_enable, 1);
1563                 Cvar_SetValueQuick (&v_color_grey_g, bound(0, v_color_grey_g.value + dir * 0.0125, 0.95));
1564                 break;
1565         case 12:
1566                 Cvar_SetValueQuick (&v_color_enable, 1);
1567                 Cvar_SetValueQuick (&v_color_grey_b, bound(0, v_color_grey_b.value + dir * 0.0125, 0.95));
1568                 break;
1569         case 13:
1570                 Cvar_SetValueQuick (&v_color_enable, 1);
1571                 f = bound(0, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3 + dir * 0.0125, 0.95);
1572                 Cvar_SetValueQuick (&v_color_grey_r, f);
1573                 Cvar_SetValueQuick (&v_color_grey_g, f);
1574                 Cvar_SetValueQuick (&v_color_grey_b, f);
1575                 break;
1576         case 14:
1577                 Cvar_SetValueQuick (&v_color_enable, 1);
1578                 Cvar_SetValueQuick (&v_color_white_r, bound(1, v_color_white_r.value + dir * 0.125, 5));
1579                 break;
1580         case 15:
1581                 Cvar_SetValueQuick (&v_color_enable, 1);
1582                 Cvar_SetValueQuick (&v_color_white_g, bound(1, v_color_white_g.value + dir * 0.125, 5));
1583                 break;
1584         case 16:
1585                 Cvar_SetValueQuick (&v_color_enable, 1);
1586                 Cvar_SetValueQuick (&v_color_white_b, bound(1, v_color_white_b.value + dir * 0.125, 5));
1587                 break;
1588         case 17:
1589                 Cvar_SetValueQuick (&v_color_enable, 1);
1590                 f = bound(1, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3 + dir * 0.125, 5);
1591                 Cvar_SetValueQuick (&v_color_white_r, f);
1592                 Cvar_SetValueQuick (&v_color_white_g, f);
1593                 Cvar_SetValueQuick (&v_color_white_b, f);
1594                 break;
1595         }
1596 }
1597
1598 void M_Options_ColorControl_Draw (void)
1599 {
1600         float x, y, c, s, t, u, v;
1601         cachepic_t      *p;
1602
1603         M_Background(320, 256);
1604
1605         M_DrawPic(16, 4, "gfx/qplaque.lmp");
1606         p = Draw_CachePic("gfx/p_option.lmp");
1607         M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1608
1609         y = 32;
1610         M_Print(16, y, "     Reset to defaults");y += 8;
1611         M_ItemPrint(16, y, "Hardware Gamma Control", vid_hardwaregammasupported);M_DrawCheckbox(220, y, v_hwgamma.integer);y += 8;
1612         M_ItemPrint(16, y, "                 Gamma", !v_color_enable.integer && vid_hardwaregammasupported && v_hwgamma.integer);M_DrawSlider(220, y, v_gamma.value, 1, 5);y += 8;
1613         M_ItemPrint(16, y, "              Contrast", !v_color_enable.integer);M_DrawSlider(220, y, v_contrast.value, 1, 5);y += 8;
1614         M_ItemPrint(16, y, "            Brightness", !v_color_enable.integer);M_DrawSlider(220, y, v_brightness.value, 0, 0.8);y += 8;
1615         M_Print(16, y, "  Color Level Controls");M_DrawCheckbox(220, y, v_color_enable.integer);y += 8;
1616         M_ItemPrint(16, y, "          Black: Red  ", v_color_enable.integer);M_DrawSlider(220, y, v_color_black_r.value, 0, 0.8);y += 8;
1617         M_ItemPrint(16, y, "          Black: Green", v_color_enable.integer);M_DrawSlider(220, y, v_color_black_g.value, 0, 0.8);y += 8;
1618         M_ItemPrint(16, y, "          Black: Blue ", v_color_enable.integer);M_DrawSlider(220, y, v_color_black_b.value, 0, 0.8);y += 8;
1619         M_ItemPrint(16, y, "          Black: Grey ", v_color_enable.integer);M_DrawSlider(220, y, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3, 0, 0.8);y += 8;
1620         M_ItemPrint(16, y, "           Grey: Red  ", v_color_enable.integer && vid_hardwaregammasupported && v_hwgamma.integer);M_DrawSlider(220, y, v_color_grey_r.value, 0, 0.95);y += 8;
1621         M_ItemPrint(16, y, "           Grey: Green", v_color_enable.integer && vid_hardwaregammasupported && v_hwgamma.integer);M_DrawSlider(220, y, v_color_grey_g.value, 0, 0.95);y += 8;
1622         M_ItemPrint(16, y, "           Grey: Blue ", v_color_enable.integer && vid_hardwaregammasupported && v_hwgamma.integer);M_DrawSlider(220, y, v_color_grey_b.value, 0, 0.95);y += 8;
1623         M_ItemPrint(16, y, "           Grey: Grey ", v_color_enable.integer && vid_hardwaregammasupported && v_hwgamma.integer);M_DrawSlider(220, y, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3, 0, 0.95);y += 8;
1624         M_ItemPrint(16, y, "          White: Red  ", v_color_enable.integer);M_DrawSlider(220, y, v_color_white_r.value, 1, 5);y += 8;
1625         M_ItemPrint(16, y, "          White: Green", v_color_enable.integer);M_DrawSlider(220, y, v_color_white_g.value, 1, 5);y += 8;
1626         M_ItemPrint(16, y, "          White: Blue ", v_color_enable.integer);M_DrawSlider(220, y, v_color_white_b.value, 1, 5);y += 8;
1627         M_ItemPrint(16, y, "          White: Grey ", v_color_enable.integer);M_DrawSlider(220, y, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3, 1, 5);y += 8;
1628
1629         y += 4;
1630         DrawQ_Fill(menu_x, menu_y + y, 320, 4 + 64 + 8 + 64 + 4, 0, 0, 0, 1, 0);y += 4;
1631         s = (float) 312 / 2 * vid.realwidth / vid.conwidth;
1632         t = (float) 4 / 2 * vid.realheight / vid.conheight;
1633         DrawQ_SuperPic(menu_x + 4, menu_y + y, "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);y += 4;
1634         DrawQ_SuperPic(menu_x + 4, menu_y + y, 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);y += 4;
1635         DrawQ_SuperPic(menu_x + 4, menu_y + y, "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);y += 4;
1636         DrawQ_SuperPic(menu_x + 4, menu_y + y, 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);y += 4;
1637         DrawQ_SuperPic(menu_x + 4, menu_y + y, "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);y += 4;
1638         DrawQ_SuperPic(menu_x + 4, menu_y + y, 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);y += 4;
1639         DrawQ_SuperPic(menu_x + 4, menu_y + y, "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);y += 4;
1640         DrawQ_SuperPic(menu_x + 4, menu_y + y, 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);y += 4;
1641
1642         c = menu_options_colorcontrol_correctionvalue.value; // intensity value that should be matched up to a 50% dither to 'correct' quake
1643         s = (float) 48 / 2 * vid.realwidth / vid.conwidth;
1644         t = (float) 48 / 2 * vid.realheight / vid.conheight;
1645         u = s * 0.5;
1646         v = t * 0.5;
1647         y += 8;
1648         x = 4;
1649         DrawQ_Fill(menu_x + x, menu_y + y, 64, 48, c, 0, 0, 1, 0);
1650         DrawQ_SuperPic(menu_x + x + 16, menu_y + y + 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);
1651         DrawQ_SuperPic(menu_x + x + 32, menu_y + y + 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);
1652         x += 80;
1653         DrawQ_Fill(menu_x + x, menu_y + y, 64, 48, 0, c, 0, 1, 0);
1654         DrawQ_SuperPic(menu_x + x + 16, menu_y + y + 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);
1655         DrawQ_SuperPic(menu_x + x + 32, menu_y + y + 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);
1656         x += 80;
1657         DrawQ_Fill(menu_x + x, menu_y + y, 64, 48, 0, 0, c, 1, 0);
1658         DrawQ_SuperPic(menu_x + x + 16, menu_y + y + 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);
1659         DrawQ_SuperPic(menu_x + x + 32, menu_y + y + 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);
1660         x += 80;
1661         DrawQ_Fill(menu_x + x, menu_y + y, 64, 48, c, c, c, 1, 0);
1662         DrawQ_SuperPic(menu_x + x + 16, menu_y + y + 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);
1663         DrawQ_SuperPic(menu_x + x + 32, menu_y + y + 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);
1664
1665         // cursor
1666         M_DrawCharacter(200, 32 + options_colorcontrol_cursor*8, 12+((int)(realtime*4)&1));
1667 }
1668
1669
1670 void M_Options_ColorControl_Key (int k)
1671 {
1672         switch (k)
1673         {
1674         case K_ESCAPE:
1675                 M_Menu_Main_f ();
1676                 break;
1677
1678         case K_ENTER:
1679                 m_entersound = true;
1680                 switch (options_colorcontrol_cursor)
1681                 {
1682                 case 0:
1683                         Cvar_SetValueQuick(&v_hwgamma, 1);
1684                         Cvar_SetValueQuick(&v_gamma, 1);
1685                         Cvar_SetValueQuick(&v_contrast, 1);
1686                         Cvar_SetValueQuick(&v_brightness, 0);
1687                         Cvar_SetValueQuick(&v_color_enable, 0);
1688                         Cvar_SetValueQuick(&v_color_black_r, 0);
1689                         Cvar_SetValueQuick(&v_color_black_g, 0);
1690                         Cvar_SetValueQuick(&v_color_black_b, 0);
1691                         Cvar_SetValueQuick(&v_color_grey_r, 0);
1692                         Cvar_SetValueQuick(&v_color_grey_g, 0);
1693                         Cvar_SetValueQuick(&v_color_grey_b, 0);
1694                         Cvar_SetValueQuick(&v_color_white_r, 1);
1695                         Cvar_SetValueQuick(&v_color_white_g, 1);
1696                         Cvar_SetValueQuick(&v_color_white_b, 1);
1697                         Cbuf_AddText ("exec default.cfg\n");
1698                         break;
1699                 default:
1700                         M_Menu_Options_ColorControl_AdjustSliders (1);
1701                         break;
1702                 }
1703                 return;
1704
1705         case K_UPARROW:
1706                 S_LocalSound ("misc/menu1.wav");
1707                 options_colorcontrol_cursor--;
1708                 if (options_colorcontrol_cursor < 0)
1709                         options_colorcontrol_cursor = OPTIONS_COLORCONTROL_ITEMS-1;
1710                 break;
1711
1712         case K_DOWNARROW:
1713                 S_LocalSound ("misc/menu1.wav");
1714                 options_colorcontrol_cursor++;
1715                 if (options_colorcontrol_cursor >= OPTIONS_COLORCONTROL_ITEMS)
1716                         options_colorcontrol_cursor = 0;
1717                 break;
1718
1719         case K_LEFTARROW:
1720                 M_Menu_Options_ColorControl_AdjustSliders (-1);
1721                 break;
1722
1723         case K_RIGHTARROW:
1724                 M_Menu_Options_ColorControl_AdjustSliders (1);
1725                 break;
1726         }
1727 }
1728
1729
1730 //=============================================================================
1731 /* KEYS MENU */
1732
1733 char *quakebindnames[][2] =
1734 {
1735 {"+attack",             "attack"},
1736 {"impulse 10",          "next weapon"},
1737 {"impulse 12",          "previous weapon"},
1738 {"+jump",                       "jump / swim up"},
1739 {"+forward",            "walk forward"},
1740 {"+back",                       "backpedal"},
1741 {"+left",                       "turn left"},
1742 {"+right",                      "turn right"},
1743 {"+speed",                      "run"},
1744 {"+moveleft",           "step left"},
1745 {"+moveright",          "step right"},
1746 {"+strafe",             "sidestep"},
1747 {"+lookup",             "look up"},
1748 {"+lookdown",           "look down"},
1749 {"centerview",          "center view"},
1750 {"+mlook",                      "mouse look"},
1751 {"+klook",                      "keyboard look"},
1752 {"+moveup",                     "swim up"},
1753 {"+movedown",           "swim down"}
1754 };
1755
1756 char *transfusionbindnames[][2] =
1757 {
1758 {"+forward",            "walk forward"},
1759 {"+back",                       "backpedal"},
1760 {"+left",                       "turn left"},
1761 {"+right",                      "turn right"},
1762 {"+moveleft",           "step left"},
1763 {"+moveright",          "step right"},
1764 {"+jump",                       "jump / swim up"},
1765 {"+movedown",           "swim down"},
1766 {"+attack",             "attack"},
1767 {"+button3",            "altfire"},
1768 {"impulse 1",           "Pitch Fork"},
1769 {"impulse 2",           "Flare Gun"},
1770 {"impulse 3",           "Shotgun"},
1771 {"impulse 4",           "Machine Gun"},
1772 {"impulse 5",           "Incinerator"},
1773 {"impulse 6",           "Bombs"},
1774 {"impulse 7",           "Aerosol Can"},
1775 {"impulse 8",           "Tesla Cannon"},
1776 {"impulse 9",           "Life Leech"},
1777 {"impulse 17",          "Voodoo Doll"},
1778 {"impulse 11",          "previous weapon"},
1779 {"impulse 10",          "next weapon"},
1780 {"impulse 14",          "previous item"},
1781 {"impulse 15",          "next item"},
1782 {"impulse 13",          "use item"},
1783 {"impulse 100",         "add bot (red)"},
1784 {"impulse 101",         "add bot (blue)"},
1785 {"impulse 102",         "kick a bot"},
1786 {"impulse 50",          "voting menu"},
1787 {"impulse 141",         "identify player"},
1788 {"impulse 16",          "next armor type"},
1789 {"impulse 20",          "observer mode"}
1790 };
1791
1792 char *goodvsbad2bindnames[][2] =
1793 {
1794 {"impulse 69",          "Power 1"},
1795 {"impulse 70",          "Power 2"},
1796 {"impulse 71",          "Power 3"},
1797 {"+jump",                       "jump / swim up"},
1798 {"+forward",            "walk forward"},
1799 {"+back",                       "backpedal"},
1800 {"+left",                       "turn left"},
1801 {"+right",                      "turn right"},
1802 {"+speed",                      "run"},
1803 {"+moveleft",           "step left"},
1804 {"+moveright",          "step right"},
1805 {"+strafe",             "sidestep"},
1806 {"+lookup",             "look up"},
1807 {"+lookdown",           "look down"},
1808 {"centerview",          "center view"},
1809 {"+mlook",                      "mouse look"},
1810 {"kill",                        "kill yourself"},
1811 {"+moveup",                     "swim up"},
1812 {"+movedown",           "swim down"}
1813 };
1814
1815 int numcommands;
1816 char *(*bindnames)[2];
1817
1818 /*
1819 typedef struct binditem_s
1820 {
1821         char *command, *description;
1822         struct binditem_s *next;
1823 }
1824 binditem_t;
1825
1826 typedef struct bindcategory_s
1827 {
1828         char *name;
1829         binditem_t *binds;
1830         struct bindcategory_s *next;
1831 }
1832 bindcategory_t;
1833
1834 bindcategory_t *bindcategories = NULL;
1835
1836 void M_ClearBinds (void)
1837 {
1838         for (c = bindcategories;c;c = cnext)
1839         {
1840                 cnext = c->next;
1841                 for (b = c->binds;b;b = bnext)
1842                 {
1843                         bnext = b->next;
1844                         Z_Free(b);
1845                 }
1846                 Z_Free(c);
1847         }
1848         bindcategories = NULL;
1849 }
1850
1851 void M_AddBindToCategory(bindcategory_t *c, char *command, char *description)
1852 {
1853         for (b = &c->binds;*b;*b = &(*b)->next);
1854         *b = Z_Alloc(sizeof(binditem_t) + strlen(command) + 1 + strlen(description) + 1);
1855         *b->command = (char *)((*b) + 1);
1856         *b->description = *b->command + strlen(command) + 1;
1857         strcpy(*b->command, command);
1858         strcpy(*b->description, description);
1859 }
1860
1861 void M_AddBind (char *category, char *command, char *description)
1862 {
1863         for (c = &bindcategories;*c;c = &(*c)->next)
1864         {
1865                 if (!strcmp(category, (*c)->name))
1866                 {
1867                         M_AddBindToCategory(*c, command, description);
1868                         return;
1869                 }
1870         }
1871         *c = Z_Alloc(sizeof(bindcategory_t));
1872         M_AddBindToCategory(*c, command, description);
1873 }
1874
1875 void M_DefaultBinds (void)
1876 {
1877         M_ClearBinds();
1878         M_AddBind("movement", "+jump", "jump / swim up");
1879         M_AddBind("movement", "+forward", "walk forward");
1880         M_AddBind("movement", "+back", "backpedal");
1881         M_AddBind("movement", "+left", "turn left");
1882         M_AddBind("movement", "+right", "turn right");
1883         M_AddBind("movement", "+speed", "run");
1884         M_AddBind("movement", "+moveleft", "step left");
1885         M_AddBind("movement", "+moveright", "step right");
1886         M_AddBind("movement", "+strafe", "sidestep");
1887         M_AddBind("movement", "+lookup", "look up");
1888         M_AddBind("movement", "+lookdown", "look down");
1889         M_AddBind("movement", "centerview", "center view");
1890         M_AddBind("movement", "+mlook", "mouse look");
1891         M_AddBind("movement", "+klook", "keyboard look");
1892         M_AddBind("movement", "+moveup", "swim up");
1893         M_AddBind("movement", "+movedown", "swim down");
1894         M_AddBind("weapons", "+attack", "attack");
1895         M_AddBind("weapons", "impulse 10", "next weapon");
1896         M_AddBind("weapons", "impulse 12", "previous weapon");
1897         M_AddBind("weapons", "impulse 1", "select weapon 1 (axe)");
1898         M_AddBind("weapons", "impulse 2", "select weapon 2 (shotgun)");
1899         M_AddBind("weapons", "impulse 3", "select weapon 3 (super )");
1900         M_AddBind("weapons", "impulse 4", "select weapon 4 (nailgun)");
1901         M_AddBind("weapons", "impulse 5", "select weapon 5 (super nailgun)");
1902         M_AddBind("weapons", "impulse 6", "select weapon 6 (grenade launcher)");
1903         M_AddBind("weapons", "impulse 7", "select weapon 7 (rocket launcher)");
1904         M_AddBind("weapons", "impulse 8", "select weapon 8 (lightning gun)");
1905 }
1906 */
1907
1908
1909 int             keys_cursor;
1910 int             bind_grab;
1911
1912 void M_Menu_Keys_f (void)
1913 {
1914         key_dest = key_menu;
1915         m_state = m_keys;
1916         m_entersound = true;
1917 }
1918
1919 #define NUMKEYS 5
1920
1921 void M_FindKeysForCommand (char *command, int *keys)
1922 {
1923         int             count;
1924         int             j;
1925         char    *b;
1926
1927         for (j = 0;j < NUMKEYS;j++)
1928                 keys[j] = -1;
1929
1930         count = 0;
1931
1932         for (j=0 ; j<256 ; j++)
1933         {
1934                 b = keybindings[j];
1935                 if (!b)
1936                         continue;
1937                 if (!strcmp (b, command) )
1938                 {
1939                         keys[count++] = j;
1940                         if (count == NUMKEYS)
1941                                 break;
1942                 }
1943         }
1944 }
1945
1946 void M_UnbindCommand (char *command)
1947 {
1948         int             j;
1949         char    *b;
1950
1951         for (j=0 ; j<256 ; j++)
1952         {
1953                 b = keybindings[j];
1954                 if (!b)
1955                         continue;
1956                 if (!strcmp (b, command))
1957                         Key_SetBinding (j, "");
1958         }
1959 }
1960
1961
1962 void M_Keys_Draw (void)
1963 {
1964         int             i, j;
1965         int             keys[NUMKEYS];
1966         int             y;
1967         cachepic_t      *p;
1968         char    keystring[1024];
1969
1970         M_Background(320, 200);
1971
1972         p = Draw_CachePic ("gfx/ttl_cstm.lmp");
1973         M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_cstm.lmp");
1974
1975         if (bind_grab)
1976                 M_Print (12, 32, "Press a key or button for this action");
1977         else
1978                 M_Print (18, 32, "Enter to change, backspace to clear");
1979
1980 // search for known bindings
1981         for (i=0 ; i<numcommands ; i++)
1982         {
1983                 y = 48 + 8*i;
1984
1985                 M_Print (16, y, bindnames[i][1]);
1986
1987                 M_FindKeysForCommand (bindnames[i][0], keys);
1988
1989                 // LordHavoc: redesigned to print more than 2 keys, inspired by Tomaz's MiniRacer
1990                 if (keys[0] == -1)
1991                         strcpy(keystring, "???");
1992                 else
1993                 {
1994                         keystring[0] = 0;
1995                         for (j = 0;j < NUMKEYS;j++)
1996                         {
1997                                 if (keys[j] != -1)
1998                                 {
1999                                         if (j > 0)
2000                                                 strcat(keystring, " or ");
2001                                         strcat(keystring, Key_KeynumToString (keys[j]));
2002                                 }
2003                         }
2004                 }
2005                 M_Print (150, y, keystring);
2006         }
2007
2008         if (bind_grab)
2009                 M_DrawCharacter (140, 48 + keys_cursor*8, '=');
2010         else
2011                 M_DrawCharacter (140, 48 + keys_cursor*8, 12+((int)(realtime*4)&1));
2012 }
2013
2014
2015 void M_Keys_Key (int k)
2016 {
2017         char    cmd[80];
2018         int             keys[NUMKEYS];
2019
2020         if (bind_grab)
2021         {       // defining a key
2022                 S_LocalSound ("misc/menu1.wav");
2023                 if (k == K_ESCAPE)
2024                 {
2025                         bind_grab = false;
2026                 }
2027                 else //if (k != '`')
2028                 {
2029                         sprintf (cmd, "bind \"%s\" \"%s\"\n", Key_KeynumToString (k), bindnames[keys_cursor][0]);
2030                         Cbuf_InsertText (cmd);
2031                 }
2032
2033                 bind_grab = false;
2034                 return;
2035         }
2036
2037         switch (k)
2038         {
2039         case K_ESCAPE:
2040                 M_Menu_Options_f ();
2041                 break;
2042
2043         case K_LEFTARROW:
2044         case K_UPARROW:
2045                 S_LocalSound ("misc/menu1.wav");
2046                 keys_cursor--;
2047                 if (keys_cursor < 0)
2048                         keys_cursor = numcommands-1;
2049                 break;
2050
2051         case K_DOWNARROW:
2052         case K_RIGHTARROW:
2053                 S_LocalSound ("misc/menu1.wav");
2054                 keys_cursor++;
2055                 if (keys_cursor >= numcommands)
2056                         keys_cursor = 0;
2057                 break;
2058
2059         case K_ENTER:           // go into bind mode
2060                 M_FindKeysForCommand (bindnames[keys_cursor][0], keys);
2061                 S_LocalSound ("misc/menu2.wav");
2062                 if (keys[NUMKEYS - 1] != -1)
2063                         M_UnbindCommand (bindnames[keys_cursor][0]);
2064                 bind_grab = true;
2065                 break;
2066
2067         case K_BACKSPACE:               // delete bindings
2068         case K_DEL:                             // delete bindings
2069                 S_LocalSound ("misc/menu2.wav");
2070                 M_UnbindCommand (bindnames[keys_cursor][0]);
2071                 break;
2072         }
2073 }
2074
2075 //=============================================================================
2076 /* VIDEO MENU */
2077
2078 #define VIDEO_ITEMS 5
2079
2080 int video_cursor = 0;
2081 int video_cursor_table[] = {56, 68, 80, 92, 116};
2082 // note: if modes are added to the beginning of this list, update the
2083 // video_resolution = x; in M_Menu_Video_f below
2084 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}};
2085 int video_resolution;
2086
2087 extern int current_vid_fullscreen;
2088 extern int current_vid_width;
2089 extern int current_vid_height;
2090 extern int current_vid_bitsperpixel;
2091 extern int current_vid_stencil;
2092
2093
2094 void M_Menu_Video_f (void)
2095 {
2096         key_dest = key_menu;
2097         m_state = m_video;
2098         m_entersound = true;
2099
2100         // Look for the current resolution
2101         for (video_resolution = 0; video_resolution < (int) (sizeof (video_resolutions) / sizeof (video_resolutions[0])); video_resolution++)
2102         {
2103                 if (video_resolutions[video_resolution][0] == current_vid_width &&
2104                         video_resolutions[video_resolution][1] == current_vid_height)
2105                         break;
2106         }
2107
2108         // Default to 800x600 if we didn't find it
2109         if (video_resolution == sizeof (video_resolutions) / sizeof (video_resolutions[0]))
2110         {
2111                 // may need to update this number if mode list changes
2112                 video_resolution = 4;
2113                 Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2114                 Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2115         }
2116 }
2117
2118
2119 void M_Video_Draw (void)
2120 {
2121         cachepic_t      *p;
2122         const char* string;
2123
2124         M_Background(320, 200);
2125
2126         M_DrawPic(16, 4, "gfx/qplaque.lmp");
2127         p = Draw_CachePic("gfx/vidmodes.lmp");
2128         M_DrawPic((320-p->width)/2, 4, "gfx/vidmodes.lmp");
2129
2130         // Resolution
2131         M_Print(16, video_cursor_table[0], "            Resolution");
2132         string = va("%dx%d", video_resolutions[video_resolution][0], video_resolutions[video_resolution][1]);
2133         M_Print (220, video_cursor_table[0], string);
2134
2135         // Bits per pixel
2136         M_Print(16, video_cursor_table[1], "        Bits per pixel");
2137         M_Print (220, video_cursor_table[1], (vid_bitsperpixel.integer == 32) ? "32" : "16");
2138
2139         // Fullscreen
2140         M_Print(16, video_cursor_table[2], "            Fullscreen");
2141         M_DrawCheckbox(220, video_cursor_table[2], vid_fullscreen.integer);
2142
2143         // Stencil
2144         M_Print(16, video_cursor_table[3], "               Stencil");
2145         M_DrawCheckbox(220, video_cursor_table[3], vid_stencil.integer);
2146
2147         // "Apply" button
2148         M_Print(220, video_cursor_table[4], "Apply");
2149
2150         // Cursor
2151         M_DrawCharacter(200, video_cursor_table[video_cursor], 12+((int)(realtime*4)&1));
2152 }
2153
2154
2155 void M_Menu_Video_AdjustSliders (int dir)
2156 {
2157         S_LocalSound ("misc/menu3.wav");
2158
2159         switch (video_cursor)
2160         {
2161                 // Resolution
2162                 case 0:
2163                 {
2164                         int new_resolution = video_resolution + dir;
2165                         if (new_resolution < 0)
2166                                 video_resolution = sizeof (video_resolutions) / sizeof (video_resolutions[0]) - 1;
2167                         else if (new_resolution > (int) (sizeof (video_resolutions) / sizeof (video_resolutions[0]) - 1))
2168                                 video_resolution = 0;
2169                         else
2170                                 video_resolution = new_resolution;
2171
2172                         Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2173                         Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2174                         break;
2175                 }
2176
2177                 // Bits per pixel
2178                 case 1:
2179                         Cvar_SetValueQuick (&vid_bitsperpixel, (vid_bitsperpixel.integer == 32) ? 16 : 32);
2180                         break;
2181                 case 2:
2182                         Cvar_SetValueQuick (&vid_fullscreen, !vid_fullscreen.integer);
2183                         break;
2184                 case 3:
2185                         Cvar_SetValueQuick (&vid_stencil, !vid_stencil.integer);
2186                         break;
2187         }
2188 }
2189
2190
2191 void M_Video_Key (int key)
2192 {
2193         switch (key)
2194         {
2195                 case K_ESCAPE:
2196                         // vid_shared.c has a copy of the current video config. We restore it
2197                         Cvar_SetValueQuick(&vid_fullscreen, current_vid_fullscreen);
2198                         Cvar_SetValueQuick(&vid_width, current_vid_width);
2199                         Cvar_SetValueQuick(&vid_height, current_vid_height);
2200                         Cvar_SetValueQuick(&vid_bitsperpixel, current_vid_bitsperpixel);
2201                         Cvar_SetValueQuick(&vid_stencil, current_vid_stencil);
2202
2203                         S_LocalSound ("misc/menu1.wav");
2204                         M_Menu_Options_f ();
2205                         break;
2206
2207                 case K_ENTER:
2208                         m_entersound = true;
2209                         switch (video_cursor)
2210                         {
2211                                 case 4:
2212                                         Cbuf_AddText ("vid_restart\n");
2213                                         M_Menu_Options_f ();
2214                                         break;
2215                                 default:
2216                                         M_Menu_Video_AdjustSliders (1);
2217                         }
2218                         break;
2219
2220                 case K_UPARROW:
2221                         S_LocalSound ("misc/menu1.wav");
2222                         video_cursor--;
2223                         if (video_cursor < 0)
2224                                 video_cursor = VIDEO_ITEMS-1;
2225                         break;
2226
2227                 case K_DOWNARROW:
2228                         S_LocalSound ("misc/menu1.wav");
2229                         video_cursor++;
2230                         if (video_cursor >= VIDEO_ITEMS)
2231                                 video_cursor = 0;
2232                         break;
2233
2234                 case K_LEFTARROW:
2235                         M_Menu_Video_AdjustSliders (-1);
2236                         break;
2237
2238                 case K_RIGHTARROW:
2239                         M_Menu_Video_AdjustSliders (1);
2240                         break;
2241         }
2242 }
2243
2244 //=============================================================================
2245 /* HELP MENU */
2246
2247 int             help_page;
2248 #define NUM_HELP_PAGES  6
2249
2250
2251 void M_Menu_Help_f (void)
2252 {
2253         key_dest = key_menu;
2254         m_state = m_help;
2255         m_entersound = true;
2256         help_page = 0;
2257 }
2258
2259
2260
2261 void M_Help_Draw (void)
2262 {
2263         M_Background(320, 200);
2264         M_DrawPic (0, 0, va("gfx/help%i.lmp", help_page));
2265 }
2266
2267
2268 void M_Help_Key (int key)
2269 {
2270         switch (key)
2271         {
2272         case K_ESCAPE:
2273                 M_Menu_Main_f ();
2274                 break;
2275
2276         case K_UPARROW:
2277         case K_RIGHTARROW:
2278                 m_entersound = true;
2279                 if (++help_page >= NUM_HELP_PAGES)
2280                         help_page = 0;
2281                 break;
2282
2283         case K_DOWNARROW:
2284         case K_LEFTARROW:
2285                 m_entersound = true;
2286                 if (--help_page < 0)
2287                         help_page = NUM_HELP_PAGES-1;
2288                 break;
2289         }
2290
2291 }
2292
2293 //=============================================================================
2294 /* QUIT MENU */
2295
2296 int             msgNumber;
2297 int             m_quit_prevstate;
2298 qboolean        wasInMenus;
2299
2300 char *quitMessage [] =
2301 {
2302 /* .........1.........2.... */
2303 /*
2304   "  Are you gonna quit    ",
2305   "  this game just like   ",
2306   "   everything else?     ",
2307   "                        ",
2308
2309   " Milord, methinks that  ",
2310   "   thou art a lowly     ",
2311   " quitter. Is this true? ",
2312   "                        ",
2313
2314   " Do I need to bust your ",
2315   "  face open for trying  ",
2316   "        to quit?        ",
2317   "                        ",
2318
2319   " Man, I oughta smack you",
2320   "   for trying to quit!  ",
2321   "     Press Y to get     ",
2322   "      smacked out.      ",
2323
2324   " Press Y to quit like a ",
2325   "   big loser in life.   ",
2326   "  Press N to stay proud ",
2327   "    and successful!     ",
2328
2329   "   If you press Y to    ",
2330   "  quit, I will summon   ",
2331   "  Satan all over your   ",
2332   "      hard drive!       ",
2333
2334   "  Um, Asmodeus dislikes ",
2335   " his children trying to ",
2336   " quit. Press Y to return",
2337   "   to your Tinkertoys.  ",
2338
2339   "  If you quit now, I'll ",
2340   "  throw a blanket-party ",
2341   "   for you next time!   ",
2342   "                        "
2343   */
2344
2345 /* .........1.........2.... */
2346   "                        ",
2347   "    Tired of fragging   ",
2348   "        already?        ",
2349   "                        ",
2350
2351   "                        ",
2352   "  Quit now and forfeit  ",
2353   "     your bodycount?    ",
2354   "                        ",
2355
2356   "                        ",
2357   "    Are you sure you    ",
2358   "      want to quit?     ",
2359   "                        ",
2360
2361   "                        ",
2362   "   Off to do something  ",
2363   "      constructive?     ",
2364   "                        ",
2365 };
2366
2367 char *goodvsbad2quitMessage [] =
2368 {
2369 /* .........1.........2.... */
2370   "  Press Yes To Quit     ",
2371   "  ...                   ",
2372   "   Yes                  ",
2373   "                        ",
2374
2375   " Do you really want to  ",
2376   "   Quit?                ",
2377   " Play Good vs bad 3!    ",
2378   "                        ",
2379
2380   " All your quit are      ",
2381   "  belong to long duck   ",
2382   "        dong            ",
2383   "                        ",
2384
2385   " Press Y to quit        ",
2386   "                        ",
2387   "  But are you too legit?",
2388   "                        ",
2389
2390   " This game was made by  ",
2391   "   e@chip-web.com       ",
2392   "  It is by far the best ",
2393   "    game ever made.     ",
2394
2395   "   Even I really dont   ",
2396   "  know of a game better ",
2397   "  Press Y to quit       ",
2398   "   like rougue chedder  ",
2399
2400   "  After you stop playing",
2401   " tell the guys who made ",
2402   " counterstrike to just  ",
2403   "  kill themselves now   ",
2404
2405   "  Press Y to exit to DOS",
2406   "                        ",
2407   "  SSH login as user Y   ",
2408   "   to exit to Linux     "
2409
2410   "                        ",
2411   "    Press Y like you    ",
2412   "    were waanderers     ",
2413   "        from Ys'        ",
2414
2415   "                        ",
2416   "  This game was made in ",
2417   "     Nippon like the SS ",
2418   " announcer's saying ipon",
2419
2420   "                        ",
2421   "    you                 ",
2422   "      want to quit?     ",
2423   "                        ",
2424
2425   "                        ",
2426   "   Please stop playing  ",
2427   "      this stupid game  ",
2428   "                        ",
2429 };
2430
2431 void M_Menu_Quit_f (void)
2432 {
2433         if (m_state == m_quit)
2434                 return;
2435         wasInMenus = (key_dest == key_menu);
2436         key_dest = key_menu;
2437         m_quit_prevstate = m_state;
2438         m_state = m_quit;
2439         m_entersound = true;
2440         msgNumber = rand()&3; //&7;
2441 }
2442
2443
2444 void M_Quit_Key (int key)
2445 {
2446         switch (key)
2447         {
2448         case K_ESCAPE:
2449         case 'n':
2450         case 'N':
2451                 if (wasInMenus)
2452                 {
2453                         m_state = m_quit_prevstate;
2454                         m_entersound = true;
2455                 }
2456                 else
2457                 {
2458                         key_dest = key_game;
2459                         m_state = m_none;
2460                 }
2461                 break;
2462
2463         case 'Y':
2464         case 'y':
2465                 Host_Quit_f ();
2466                 break;
2467
2468         default:
2469                 break;
2470         }
2471
2472 }
2473
2474
2475 void M_Quit_Draw (void)
2476 {
2477         M_Background(208, 48);
2478         M_DrawTextBox(0, 0, 24, 4);
2479         M_Print(8,  8, quitMessage[msgNumber*4+0]);
2480         M_Print(8, 16, quitMessage[msgNumber*4+1]);
2481         M_Print(8, 24, quitMessage[msgNumber*4+2]);
2482         M_Print(8, 32, quitMessage[msgNumber*4+3]);
2483 }
2484
2485 //=============================================================================
2486 /* LAN CONFIG MENU */
2487
2488 int             lanConfig_cursor = -1;
2489 int             lanConfig_cursor_table [] = {56, 76, 112};
2490 #define NUM_LANCONFIG_CMDS      3
2491
2492 int     lanConfig_port;
2493 char    lanConfig_portname[6];
2494 char    lanConfig_joinname[22];
2495
2496 void M_Menu_LanConfig_f (void)
2497 {
2498         key_dest = key_menu;
2499         m_state = m_lanconfig;
2500         m_entersound = true;
2501         if (lanConfig_cursor == -1)
2502         {
2503                 if (JoiningGame)
2504                         lanConfig_cursor = 1;
2505         }
2506         if (StartingGame)
2507                 lanConfig_cursor = 1;
2508         lanConfig_port = 26000;
2509         sprintf(lanConfig_portname, "%u", lanConfig_port);
2510
2511         m_return_reason[0] = 0;
2512 }
2513
2514
2515 void M_LanConfig_Draw (void)
2516 {
2517         cachepic_t      *p;
2518         int             basex;
2519         char    *startJoin;
2520         char    *protocol;
2521
2522         M_Background(320, 200);
2523
2524         M_DrawPic (16, 4, "gfx/qplaque.lmp");
2525         p = Draw_CachePic ("gfx/p_multi.lmp");
2526         basex = (320-p->width)/2;
2527         M_DrawPic (basex, 4, "gfx/p_multi.lmp");
2528
2529         if (StartingGame)
2530                 startJoin = "New Game";
2531         else
2532                 startJoin = "Join Game";
2533         protocol = "TCP/IP";
2534         M_Print (basex, 32, va ("%s - %s", startJoin, protocol));
2535         basex += 8;
2536
2537         M_Print (basex, lanConfig_cursor_table[0], "Port");
2538         M_DrawTextBox (basex+8*8, lanConfig_cursor_table[0]-8, 6, 1);
2539         M_Print (basex+9*8, lanConfig_cursor_table[0], lanConfig_portname);
2540
2541         if (JoiningGame)
2542         {
2543                 M_Print (basex, lanConfig_cursor_table[1], "Search for games...");
2544                 M_Print (basex, lanConfig_cursor_table[2]-16, "Join game at:");
2545                 M_DrawTextBox (basex+8, lanConfig_cursor_table[2]-8, 22, 1);
2546                 M_Print (basex+16, lanConfig_cursor_table[2], lanConfig_joinname);
2547         }
2548         else
2549         {
2550                 M_DrawTextBox (basex, lanConfig_cursor_table[1]-8, 2, 1);
2551                 M_Print (basex+8, lanConfig_cursor_table[1], "OK");
2552         }
2553
2554         M_DrawCharacter (basex-8, lanConfig_cursor_table [lanConfig_cursor], 12+((int)(realtime*4)&1));
2555
2556         if (lanConfig_cursor == 0)
2557                 M_DrawCharacter (basex+9*8 + 8*strlen(lanConfig_portname), lanConfig_cursor_table [0], 10+((int)(realtime*4)&1));
2558
2559         if (lanConfig_cursor == 2)
2560                 M_DrawCharacter (basex+16 + 8*strlen(lanConfig_joinname), lanConfig_cursor_table [2], 10+((int)(realtime*4)&1));
2561
2562         if (*m_return_reason)
2563                 M_PrintWhite (basex, 168, m_return_reason);
2564 }
2565
2566
2567 void M_LanConfig_Key (int key)
2568 {
2569         int             l;
2570
2571         switch (key)
2572         {
2573         case K_ESCAPE:
2574                 M_Menu_MultiPlayer_f ();
2575                 break;
2576
2577         case K_UPARROW:
2578                 S_LocalSound ("misc/menu1.wav");
2579                 lanConfig_cursor--;
2580                 if (lanConfig_cursor < 0)
2581                         lanConfig_cursor = NUM_LANCONFIG_CMDS-1;
2582                 break;
2583
2584         case K_DOWNARROW:
2585                 S_LocalSound ("misc/menu1.wav");
2586                 lanConfig_cursor++;
2587                 if (lanConfig_cursor >= NUM_LANCONFIG_CMDS)
2588                         lanConfig_cursor = 0;
2589                 break;
2590
2591         case K_ENTER:
2592                 if (lanConfig_cursor == 0)
2593                         break;
2594
2595                 m_entersound = true;
2596
2597                 Cbuf_AddText ("stopdemo\n");
2598
2599                 Cvar_SetValue("port", lanConfig_port);
2600
2601                 if (lanConfig_cursor == 1)
2602                 {
2603                         if (StartingGame)
2604                         {
2605                                 M_Menu_GameOptions_f ();
2606                                 break;
2607                         }
2608                         M_Menu_ServerList_f();
2609                         break;
2610                 }
2611
2612                 if (lanConfig_cursor == 2)
2613                         Cbuf_AddText ( va ("connect \"%s\"\n", lanConfig_joinname) );
2614                 break;
2615
2616         case K_BACKSPACE:
2617                 if (lanConfig_cursor == 0)
2618                 {
2619                         if (strlen(lanConfig_portname))
2620                                 lanConfig_portname[strlen(lanConfig_portname)-1] = 0;
2621                 }
2622
2623                 if (lanConfig_cursor == 2)
2624                 {
2625                         if (strlen(lanConfig_joinname))
2626                                 lanConfig_joinname[strlen(lanConfig_joinname)-1] = 0;
2627                 }
2628                 break;
2629
2630         default:
2631                 if (key < 32 || key > 127)
2632                         break;
2633
2634                 if (lanConfig_cursor == 2)
2635                 {
2636                         l = strlen(lanConfig_joinname);
2637                         if (l < 21)
2638                         {
2639                                 lanConfig_joinname[l+1] = 0;
2640                                 lanConfig_joinname[l] = key;
2641                         }
2642                 }
2643
2644                 if (key < '0' || key > '9')
2645                         break;
2646                 if (lanConfig_cursor == 0)
2647                 {
2648                         l = strlen(lanConfig_portname);
2649                         if (l < 5)
2650                         {
2651                                 lanConfig_portname[l+1] = 0;
2652                                 lanConfig_portname[l] = key;
2653                         }
2654                 }
2655         }
2656
2657         if (StartingGame && lanConfig_cursor == 2)
2658         {
2659                 if (key == K_UPARROW)
2660                         lanConfig_cursor = 1;
2661                 else
2662                         lanConfig_cursor = 0;
2663         }
2664
2665         l =  atoi(lanConfig_portname);
2666         if (l <= 65535)
2667                 lanConfig_port = l;
2668         sprintf(lanConfig_portname, "%u", lanConfig_port);
2669 }
2670
2671 //=============================================================================
2672 /* GAME OPTIONS MENU */
2673
2674 typedef struct
2675 {
2676         char    *name;
2677         char    *description;
2678 } level_t;
2679
2680 typedef struct
2681 {
2682         char    *description;
2683         int             firstLevel;
2684         int             levels;
2685 } episode_t;
2686
2687 typedef struct
2688 {
2689         char *gamename;
2690         level_t *levels;
2691         episode_t *episodes;
2692         int numepisodes;
2693 }
2694 gamelevels_t;
2695
2696 level_t quakelevels[] =
2697 {
2698         {"start", "Entrance"},  // 0
2699
2700         {"e1m1", "Slipgate Complex"},                           // 1
2701         {"e1m2", "Castle of the Damned"},
2702         {"e1m3", "The Necropolis"},
2703         {"e1m4", "The Grisly Grotto"},
2704         {"e1m5", "Gloom Keep"},
2705         {"e1m6", "The Door To Chthon"},
2706         {"e1m7", "The House of Chthon"},
2707         {"e1m8", "Ziggurat Vertigo"},
2708
2709         {"e2m1", "The Installation"},                           // 9
2710         {"e2m2", "Ogre Citadel"},
2711         {"e2m3", "Crypt of Decay"},
2712         {"e2m4", "The Ebon Fortress"},
2713         {"e2m5", "The Wizard's Manse"},
2714         {"e2m6", "The Dismal Oubliette"},
2715         {"e2m7", "Underearth"},
2716
2717         {"e3m1", "Termination Central"},                        // 16
2718         {"e3m2", "The Vaults of Zin"},
2719         {"e3m3", "The Tomb of Terror"},
2720         {"e3m4", "Satan's Dark Delight"},
2721         {"e3m5", "Wind Tunnels"},
2722         {"e3m6", "Chambers of Torment"},
2723         {"e3m7", "The Haunted Halls"},
2724
2725         {"e4m1", "The Sewage System"},                          // 23
2726         {"e4m2", "The Tower of Despair"},
2727         {"e4m3", "The Elder God Shrine"},
2728         {"e4m4", "The Palace of Hate"},
2729         {"e4m5", "Hell's Atrium"},
2730         {"e4m6", "The Pain Maze"},
2731         {"e4m7", "Azure Agony"},
2732         {"e4m8", "The Nameless City"},
2733
2734         {"end", "Shub-Niggurath's Pit"},                        // 31
2735
2736         {"dm1", "Place of Two Deaths"},                         // 32
2737         {"dm2", "Claustrophobopolis"},
2738         {"dm3", "The Abandoned Base"},
2739         {"dm4", "The Bad Place"},
2740         {"dm5", "The Cistern"},
2741         {"dm6", "The Dark Zone"}
2742 };
2743
2744 episode_t quakeepisodes[] =
2745 {
2746         {"Welcome to Quake", 0, 1},
2747         {"Doomed Dimension", 1, 8},
2748         {"Realm of Black Magic", 9, 7},
2749         {"Netherworld", 16, 7},
2750         {"The Elder World", 23, 8},
2751         {"Final Level", 31, 1},
2752         {"Deathmatch Arena", 32, 6}
2753 };
2754
2755  //MED 01/06/97 added hipnotic levels
2756 level_t     hipnoticlevels[] =
2757 {
2758    {"start", "Command HQ"},  // 0
2759
2760    {"hip1m1", "The Pumping Station"},          // 1
2761    {"hip1m2", "Storage Facility"},
2762    {"hip1m3", "The Lost Mine"},
2763    {"hip1m4", "Research Facility"},
2764    {"hip1m5", "Military Complex"},
2765
2766    {"hip2m1", "Ancient Realms"},          // 6
2767    {"hip2m2", "The Black Cathedral"},
2768    {"hip2m3", "The Catacombs"},
2769    {"hip2m4", "The Crypt"},
2770    {"hip2m5", "Mortum's Keep"},
2771    {"hip2m6", "The Gremlin's Domain"},
2772
2773    {"hip3m1", "Tur Torment"},       // 12
2774    {"hip3m2", "Pandemonium"},
2775    {"hip3m3", "Limbo"},
2776    {"hip3m4", "The Gauntlet"},
2777
2778    {"hipend", "Armagon's Lair"},       // 16
2779
2780    {"hipdm1", "The Edge of Oblivion"}           // 17
2781 };
2782
2783 //MED 01/06/97  added hipnotic episodes
2784 episode_t   hipnoticepisodes[] =
2785 {
2786    {"Scourge of Armagon", 0, 1},
2787    {"Fortress of the Dead", 1, 5},
2788    {"Dominion of Darkness", 6, 6},
2789    {"The Rift", 12, 4},
2790    {"Final Level", 16, 1},
2791    {"Deathmatch Arena", 17, 1}
2792 };
2793
2794 //PGM 01/07/97 added rogue levels
2795 //PGM 03/02/97 added dmatch level
2796 level_t         roguelevels[] =
2797 {
2798         {"start",       "Split Decision"},
2799         {"r1m1",        "Deviant's Domain"},
2800         {"r1m2",        "Dread Portal"},
2801         {"r1m3",        "Judgement Call"},
2802         {"r1m4",        "Cave of Death"},
2803         {"r1m5",        "Towers of Wrath"},
2804         {"r1m6",        "Temple of Pain"},
2805         {"r1m7",        "Tomb of the Overlord"},
2806         {"r2m1",        "Tempus Fugit"},
2807         {"r2m2",        "Elemental Fury I"},
2808         {"r2m3",        "Elemental Fury II"},
2809         {"r2m4",        "Curse of Osiris"},
2810         {"r2m5",        "Wizard's Keep"},
2811         {"r2m6",        "Blood Sacrifice"},
2812         {"r2m7",        "Last Bastion"},
2813         {"r2m8",        "Source of Evil"},
2814         {"ctf1",    "Division of Change"}
2815 };
2816
2817 //PGM 01/07/97 added rogue episodes
2818 //PGM 03/02/97 added dmatch episode
2819 episode_t       rogueepisodes[] =
2820 {
2821         {"Introduction", 0, 1},
2822         {"Hell's Fortress", 1, 7},
2823         {"Corridors of Time", 8, 8},
2824         {"Deathmatch Arena", 16, 1}
2825 };
2826
2827 level_t         nehahralevels[] =
2828 {
2829         {"nehstart",    "Welcome to Nehahra"},
2830         {"neh1m1",      "Forge City1: Slipgates"},
2831         {"neh1m2",      "Forge City2: Boiler"},
2832         {"neh1m3",      "Forge City3: Escape"},
2833         {"neh1m4",      "Grind Core"},
2834         {"neh1m5",      "Industrial Silence"},
2835         {"neh1m6",      "Locked-Up Anger"},
2836         {"neh1m7",      "Wanderer of the Wastes"},
2837         {"neh1m8",      "Artemis System Net"},
2838         {"neh1m9",      "To the Death"},
2839         {"neh2m1",      "The Gates of Ghoro"},
2840         {"neh2m2",      "Sacred Trinity"},
2841         {"neh2m3",      "Realm of the Ancients"},
2842         {"neh2m4",      "Temple of the Ancients"},
2843         {"neh2m5",      "Dreams Made Flesh"},
2844         {"neh2m6",      "Your Last Cup of Sorrow"},
2845         {"nehsec",      "Ogre's Bane"},
2846         {"nehahra",     "Nehahra's Den"},
2847         {"nehend",      "Quintessence"}
2848 };
2849
2850 episode_t       nehahraepisodes[] =
2851 {
2852         {"Welcome to Nehahra", 0, 1},
2853         {"The Fall of Forge", 1, 9},
2854         {"The Outlands", 10, 7},
2855         {"Dimension of the Lost", 17, 2}
2856 };
2857
2858 // Map list for Transfusion
2859 level_t         transfusionlevels[] =
2860 {
2861         {"bb1",                 "The Stronghold"},
2862         {"bb2",                 "Winter Wonderland"},
2863         {"bb3",                 "Bodies"},
2864         {"bb4",                 "The Tower"},
2865         {"bb5",                 "Click!"},
2866         {"bb6",                 "Twin Fortress"},
2867         {"bb7",                 "Midgard"},
2868         {"bb8",                 "Fun With Heads"},
2869
2870         {"e1m1",                "Cradle to Grave"},
2871         {"e1m2",                "Wrong Side of the Tracks"},
2872         {"e1m7",                "Altar of Stone"},
2873         {"e2m8",                "The Lair of Shial"},
2874         {"e3m7",                "The Pit of Cerberus"},
2875         {"e4m8",                "The Hall of the Epiphany"},
2876         {"e4m9",                "Mall of the Dead"},
2877
2878         {"dm1",                 "Monolith Building 11"},
2879         {"dm2",                 "Power!"},
2880         {"dm3",                 "Area 15"},
2881         {"e6m1",                "Welcome to Your Life"},
2882         {"e6m8",                "Beauty and the Beast"},
2883
2884         {"cpbb01",              "Crypt of Despair"},
2885         {"cpbb03",              "Unholy Cathedral"},
2886
2887         {"b2a15",               "Area 15 (B2)"},
2888         {"barena",              "Blood Arena"},
2889         {"bkeep",               "Blood Keep"},
2890         {"bstar",               "Brown Star"},
2891         {"crypt",               "The Crypt"},
2892
2893         {"bb3_2k1",             "Bodies Infusion"},
2894         {"dcamp",               "DeathCamp"},
2895         {"highnoon",    "HighNoon"},
2896         {"qbb1",                "The Confluence"},
2897         {"qbb2",                "KathartiK"},
2898         {"qbb3",                "Caleb's Woodland Retreat"},
2899
2900         {"dranzbb6",    "Black Coffee"},
2901         {"fragm",               "Frag'M"},
2902         {"maim",                "Maim"},
2903         {"qe1m7",               "The House of Chthon"},
2904         {"simple",              "Dead Simple"}
2905 };
2906
2907 episode_t       transfusionepisodes[] =
2908 {
2909         {"Blood", 0, 8},
2910         {"Blood Single Player", 8, 7},
2911         {"Plasma Pack", 15, 5},
2912         {"Cryptic Passage", 20, 2},
2913         {"Blood 2", 22, 5},
2914         {"Transfusion", 27, 6},
2915         {"Conversions", 33, 5}
2916 };
2917
2918 level_t goodvsbad2levels[] =
2919 {
2920         {"rts", "Many Paths"},  // 0
2921         {"chess", "Chess, Scott Hess"},                         // 1
2922         {"dot", "Big Wall"},
2923         {"city2", "The Big City"},
2924         {"bwall", "0 G like Psychic TV"},
2925         {"snow", "Wireframed"},
2926         {"telep", "Infinite Falling"},
2927         {"faces", "Facing Bases"},
2928         {"island", "Adventure Islands"},
2929 };
2930
2931 episode_t goodvsbad2episodes[] =
2932 {
2933         {"Levels? Bevels!", 0, 8},
2934 };
2935
2936 gamelevels_t sharewarequakegame = {"Shareware Quake", quakelevels, quakeepisodes, 2};
2937 gamelevels_t registeredquakegame = {"Quake", quakelevels, quakeepisodes, 7};
2938 gamelevels_t hipnoticgame = {"Scourge of Armagon", hipnoticlevels, hipnoticepisodes, 6};
2939 gamelevels_t roguegame = {"Dissolution of Eternity", roguelevels, rogueepisodes, 4};
2940 gamelevels_t nehahragame = {"Nehahra", nehahralevels, nehahraepisodes, 4};
2941 gamelevels_t transfusiongame = {"Transfusion", transfusionlevels, transfusionepisodes, 7};
2942 gamelevels_t goodvsbad2game = {"Good Vs. Bad 2", goodvsbad2levels, goodvsbad2episodes, 1};
2943
2944 typedef struct
2945 {
2946         int gameid;
2947         gamelevels_t *notregistered;
2948         gamelevels_t *registered;
2949 }
2950 gameinfo_t;
2951
2952 gameinfo_t gamelist[] =
2953 {
2954         {GAME_NORMAL, &sharewarequakegame, &registeredquakegame},
2955         {GAME_HIPNOTIC, &hipnoticgame, &hipnoticgame},
2956         {GAME_ROGUE, &roguegame, &roguegame},
2957         {GAME_NEHAHRA, &nehahragame, &nehahragame},
2958         {GAME_TRANSFUSION, &transfusiongame, &transfusiongame},
2959         {-1, &sharewarequakegame, &registeredquakegame} // final fallback
2960 };
2961
2962 gamelevels_t *lookupgameinfo(void)
2963 {
2964         int i;
2965         for (i = 0;gamelist[i].gameid >= 0 && gamelist[i].gameid != gamemode;i++);
2966         if (registered.integer)
2967                 return gamelist[i].registered;
2968         else
2969                 return gamelist[i].notregistered;
2970 }
2971
2972 int     startepisode;
2973 int     startlevel;
2974 int maxplayers;
2975 qboolean m_serverInfoMessage = false;
2976 double m_serverInfoMessageTime;
2977
2978 extern cvar_t sv_public;
2979
2980 void M_Menu_GameOptions_f (void)
2981 {
2982         key_dest = key_menu;
2983         m_state = m_gameoptions;
2984         m_entersound = true;
2985         if (maxplayers == 0)
2986                 maxplayers = svs.maxclients;
2987         if (maxplayers < 2)
2988                 maxplayers = MAX_SCOREBOARD;
2989 }
2990
2991
2992 int gameoptions_cursor_table[] = {40, 56, 64, 72, 80, 88, 96, 104, 132, 152, 160};
2993 #define NUM_GAMEOPTIONS 11
2994 int             gameoptions_cursor;
2995
2996 void M_GameOptions_Draw (void)
2997 {
2998         cachepic_t      *p;
2999         int             x;
3000         gamelevels_t *g;
3001
3002         M_Background(320, 200);
3003
3004         M_DrawPic (16, 4, "gfx/qplaque.lmp");
3005         p = Draw_CachePic ("gfx/p_multi.lmp");
3006         M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
3007
3008         M_DrawTextBox (152, 32, 10, 1);
3009         M_Print (160, 40, "begin game");
3010
3011         M_Print (0, 56, "      Max players");
3012         M_Print (160, 56, va("%i", maxplayers) );
3013
3014         if (gamemode != GAME_GOODVSBAD2)
3015         {
3016                 M_Print (0, 64, "        Game Type");
3017                 if (gamemode == GAME_TRANSFUSION)
3018                 {
3019                         if (!deathmatch.integer)
3020                                 Cvar_SetValue("deathmatch", 1);
3021                         if (deathmatch.integer == 2)
3022                                 M_Print (160, 64, "Capture the Flag");
3023                         else
3024                                 M_Print (160, 64, "Blood Bath");
3025                 }
3026                 else
3027                 {
3028                         if (!coop.integer && !deathmatch.integer)
3029                                 Cvar_SetValue("deathmatch", 1);
3030                         if (coop.integer)
3031                                 M_Print (160, 64, "Cooperative");
3032                         else
3033                                 M_Print (160, 64, "Deathmatch");
3034                 }
3035
3036                 M_Print (0, 72, "        Teamplay");
3037                 if (gamemode == GAME_ROGUE)
3038                 {
3039                         char *msg;
3040
3041                         switch((int)teamplay.integer)
3042                         {
3043                                 case 1: msg = "No Friendly Fire"; break;
3044                                 case 2: msg = "Friendly Fire"; break;
3045                                 case 3: msg = "Tag"; break;
3046                                 case 4: msg = "Capture the Flag"; break;
3047                                 case 5: msg = "One Flag CTF"; break;
3048                                 case 6: msg = "Three Team CTF"; break;
3049                                 default: msg = "Off"; break;
3050                         }
3051                         M_Print (160, 72, msg);
3052                 }
3053                 else
3054                 {
3055                         char *msg;
3056
3057                         switch (teamplay.integer)
3058                         {
3059                                 case 0: msg = "Off"; break;
3060                                 case 2: msg = "Friendly Fire"; break;
3061                                 default: msg = "No Friendly Fire"; break;
3062                         }
3063                         M_Print (160, 72, msg);
3064                 }
3065
3066                 M_Print (0, 80, "            Skill");
3067                 if (skill.integer == 0)
3068                         M_Print (160, 80, "Easy difficulty");
3069                 else if (skill.integer == 1)
3070                         M_Print (160, 80, "Normal difficulty");
3071                 else if (skill.integer == 2)
3072                         M_Print (160, 80, "Hard difficulty");
3073                 else
3074                         M_Print (160, 80, "Nightmare difficulty");
3075
3076                 M_Print (0, 88, "       Frag Limit");
3077                 if (fraglimit.integer == 0)
3078                         M_Print (160, 88, "none");
3079                 else
3080                         M_Print (160, 88, va("%i frags", fraglimit.integer));
3081
3082                 M_Print (0, 96, "       Time Limit");
3083                 if (timelimit.integer == 0)
3084                         M_Print (160, 96, "none");
3085                 else
3086                         M_Print (160, 96, va("%i minutes", timelimit.integer));
3087         }
3088
3089         M_Print (0, 104, "    Public server");
3090         M_Print (160, 104, (sv_public.integer == 0) ? "no" : "yes");
3091
3092         M_Print (0, 120, "      Server name");
3093         M_DrawTextBox (0, 124, 38, 1);
3094         M_Print (8, 132, hostname.string);
3095
3096         g = lookupgameinfo();
3097
3098         if (gamemode != GAME_GOODVSBAD2)
3099         {
3100                 M_Print (0, 152, "         Episode");
3101                 M_Print (160, 152, g->episodes[startepisode].description);
3102         }
3103
3104         M_Print (0, 160, "           Level");
3105         M_Print (160, 160, g->levels[g->episodes[startepisode].firstLevel + startlevel].description);
3106         M_Print (160, 168, g->levels[g->episodes[startepisode].firstLevel + startlevel].name);
3107
3108 // line cursor
3109         if (gameoptions_cursor == 8)
3110                 M_DrawCharacter (8 + 8 * strlen(hostname.string), gameoptions_cursor_table[gameoptions_cursor], 10+((int)(realtime*4)&1));
3111         else
3112                 M_DrawCharacter (144, gameoptions_cursor_table[gameoptions_cursor], 12+((int)(realtime*4)&1));
3113
3114         if (m_serverInfoMessage)
3115         {
3116                 if ((realtime - m_serverInfoMessageTime) < 5.0)
3117                 {
3118                         x = (320-26*8)/2;
3119                         M_DrawTextBox (x, 138, 24, 4);
3120                         x += 8;
3121                         M_Print (x, 146, " More than 64 players?? ");
3122                         M_Print (x, 154, "  First, question your  ");
3123                         M_Print (x, 162, "   sanity, then email   ");
3124                         M_Print (x, 170, " havoc@telefragged.com  ");
3125                 }
3126                 else
3127                         m_serverInfoMessage = false;
3128         }
3129 }
3130
3131
3132 void M_NetStart_Change (int dir)
3133 {
3134         gamelevels_t *g;
3135         int count;
3136
3137         switch (gameoptions_cursor)
3138         {
3139         case 1:
3140                 maxplayers += dir;
3141                 if (maxplayers > MAX_SCOREBOARD)
3142                 {
3143                         maxplayers = MAX_SCOREBOARD;
3144                         m_serverInfoMessage = true;
3145                         m_serverInfoMessageTime = realtime;
3146                 }
3147                 if (maxplayers < 2)
3148                         maxplayers = 2;
3149                 break;
3150
3151         case 2:
3152                 if (gamemode == GAME_GOODVSBAD2)
3153                         break;
3154                 if (gamemode == GAME_TRANSFUSION)
3155                 {
3156                         if (deathmatch.integer == 2) // changing from CTF to BloodBath
3157                                 Cvar_SetValueQuick (&deathmatch, 0);
3158                         else // changing from BloodBath to CTF
3159                                 Cvar_SetValueQuick (&deathmatch, 2);
3160                 }
3161                 else
3162                 {
3163                         if (deathmatch.integer) // changing from deathmatch to coop
3164                         {
3165                                 Cvar_SetValueQuick (&coop, 1);
3166                                 Cvar_SetValueQuick (&deathmatch, 0);
3167                         }
3168                         else // changing from coop to deathmatch
3169                         {
3170                                 Cvar_SetValueQuick (&coop, 0);
3171                                 Cvar_SetValueQuick (&deathmatch, 1);
3172                         }
3173                 }
3174                 break;
3175
3176         case 3:
3177                 if (gamemode == GAME_GOODVSBAD2)
3178                         break;
3179                 if (gamemode == GAME_ROGUE)
3180                         count = 6;
3181                 else
3182                         count = 2;
3183
3184                 Cvar_SetValueQuick (&teamplay, teamplay.integer + dir);
3185                 if (teamplay.integer > count)
3186                         Cvar_SetValueQuick (&teamplay, 0);
3187                 else if (teamplay.integer < 0)
3188                         Cvar_SetValueQuick (&teamplay, count);
3189                 break;
3190
3191         case 4:
3192                 if (gamemode == GAME_GOODVSBAD2)
3193                         break;
3194                 Cvar_SetValueQuick (&skill, skill.integer + dir);
3195                 if (skill.integer > 3)
3196                         Cvar_SetValueQuick (&skill, 0);
3197                 if (skill.integer < 0)
3198                         Cvar_SetValueQuick (&skill, 3);
3199                 break;
3200
3201         case 5:
3202                 if (gamemode == GAME_GOODVSBAD2)
3203                         break;
3204                 Cvar_SetValueQuick (&fraglimit, fraglimit.integer + dir*10);
3205                 if (fraglimit.integer > 100)
3206                         Cvar_SetValueQuick (&fraglimit, 0);
3207                 if (fraglimit.integer < 0)
3208                         Cvar_SetValueQuick (&fraglimit, 100);
3209                 break;
3210
3211         case 6:
3212                 if (gamemode == GAME_GOODVSBAD2)
3213                         break;
3214                 Cvar_SetValueQuick (&timelimit, timelimit.value + dir*5);
3215                 if (timelimit.value > 60)
3216                         Cvar_SetValueQuick (&timelimit, 0);
3217                 if (timelimit.value < 0)
3218                         Cvar_SetValueQuick (&timelimit, 60);
3219                 break;
3220
3221         case 7:
3222                 Cvar_SetValueQuick (&sv_public, !sv_public.integer);
3223                 break;
3224
3225         case 8:
3226                 break;
3227
3228         case 9:
3229                 if (gamemode == GAME_GOODVSBAD2)
3230                         break;
3231                 startepisode += dir;
3232                 g = lookupgameinfo();
3233
3234                 if (startepisode < 0)
3235                         startepisode = g->numepisodes - 1;
3236
3237                 if (startepisode >= g->numepisodes)
3238                         startepisode = 0;
3239
3240                 startlevel = 0;
3241                 break;
3242
3243         case 10:
3244                 startlevel += dir;
3245                 g = lookupgameinfo();
3246
3247                 if (startlevel < 0)
3248                         startlevel = g->episodes[startepisode].levels - 1;
3249
3250                 if (startlevel >= g->episodes[startepisode].levels)
3251                         startlevel = 0;
3252                 break;
3253         }
3254 }
3255
3256 void M_GameOptions_Key (int key)
3257 {
3258         gamelevels_t *g;
3259         int l;
3260         char hostnamebuf[128];
3261
3262         switch (key)
3263         {
3264         case K_ESCAPE:
3265                 M_Menu_MultiPlayer_f ();
3266                 break;
3267
3268         case K_UPARROW:
3269                 S_LocalSound ("misc/menu1.wav");
3270                 gameoptions_cursor--;
3271                 if (gameoptions_cursor < 0)
3272                         gameoptions_cursor = NUM_GAMEOPTIONS-1;
3273                 break;
3274
3275         case K_DOWNARROW:
3276                 S_LocalSound ("misc/menu1.wav");
3277                 gameoptions_cursor++;
3278                 if (gameoptions_cursor >= NUM_GAMEOPTIONS)
3279                         gameoptions_cursor = 0;
3280                 break;
3281
3282         case K_LEFTARROW:
3283                 if (gameoptions_cursor == 0)
3284                         break;
3285                 S_LocalSound ("misc/menu3.wav");
3286                 M_NetStart_Change (-1);
3287                 break;
3288
3289         case K_RIGHTARROW:
3290                 if (gameoptions_cursor == 0)
3291                         break;
3292                 S_LocalSound ("misc/menu3.wav");
3293                 M_NetStart_Change (1);
3294                 break;
3295
3296         case K_ENTER:
3297                 S_LocalSound ("misc/menu2.wav");
3298                 if (gameoptions_cursor == 0)
3299                 {
3300                         if (sv.active)
3301                                 Cbuf_AddText ("disconnect\n");
3302                         Cbuf_AddText ( va ("maxplayers %u\n", maxplayers) );
3303
3304                         g = lookupgameinfo();
3305                         Cbuf_AddText ( va ("map %s\n", g->levels[g->episodes[startepisode].firstLevel + startlevel].name) );
3306                         return;
3307                 }
3308
3309                 M_NetStart_Change (1);
3310                 break;
3311
3312         case K_BACKSPACE:
3313                 if (gameoptions_cursor == 8)
3314                 {
3315                         l = strlen(hostname.string);
3316                         if (l)
3317                         {
3318                                 l = min(l - 1, 37);
3319                                 memcpy(hostnamebuf, hostname.string, l);
3320                                 hostnamebuf[l] = 0;
3321                                 Cvar_Set("hostname", hostnamebuf);
3322                         }
3323                 }
3324                 break;
3325
3326         default:
3327                 if (key < 32 || key > 127)
3328                         break;
3329                 if (gameoptions_cursor == 8)
3330                 {
3331                         l = strlen(hostname.string);
3332                         if (l < 37)
3333                         {
3334                                 memcpy(hostnamebuf, hostname.string, l);
3335                                 hostnamebuf[l] = key;
3336                                 hostnamebuf[l+1] = 0;
3337                                 Cvar_Set("hostname", hostnamebuf);
3338                         }
3339                 }
3340         }
3341 }
3342
3343 //=============================================================================
3344 /* SLIST MENU */
3345
3346 int slist_cursor;
3347
3348 void M_Menu_ServerList_f (void)
3349 {
3350         key_dest = key_menu;
3351         m_state = m_slist;
3352         m_entersound = true;
3353         slist_cursor = 0;
3354         m_return_reason[0] = 0;
3355         Net_Slist_f();
3356 }
3357
3358
3359 void M_ServerList_Draw (void)
3360 {
3361         int n, y, visible, start, end;
3362         cachepic_t *p;
3363
3364         // use as much vertical space as available
3365         M_Background(640, vid.conheight);
3366         // scroll the list as the cursor moves
3367         visible = (vid.conheight - 16 - 32) / 8;
3368         start = bound(0, slist_cursor - (visible >> 1), hostCacheCount - visible);
3369         end = min(start + visible, hostCacheCount);
3370
3371         p = Draw_CachePic("gfx/p_multi.lmp");
3372         M_DrawPic((640 - p->width) / 2, 4, "gfx/p_multi.lmp");
3373         y = 32;
3374         for (n = start;n < end;n++)
3375         {
3376                 M_Print(0, y, hostcache[n].line1);y += 8;
3377                 M_Print(0, y, hostcache[n].line2);y += 8;
3378         }
3379         M_DrawCharacter(0, 32 + (slist_cursor - start) * 16, 12+((int)(realtime*4)&1));
3380
3381         if (*m_return_reason)
3382                 M_PrintWhite(16, vid.conheight - 8, m_return_reason);
3383 }
3384
3385
3386 void M_ServerList_Key(int k)
3387 {
3388         switch (k)
3389         {
3390         case K_ESCAPE:
3391                 M_Menu_LanConfig_f();
3392                 break;
3393
3394         case K_SPACE:
3395                 Net_Slist_f();
3396                 break;
3397
3398         case K_UPARROW:
3399         case K_LEFTARROW:
3400                 S_LocalSound("misc/menu1.wav");
3401                 slist_cursor--;
3402                 if (slist_cursor < 0)
3403                         slist_cursor = hostCacheCount - 1;
3404                 break;
3405
3406         case K_DOWNARROW:
3407         case K_RIGHTARROW:
3408                 S_LocalSound("misc/menu1.wav");
3409                 slist_cursor++;
3410                 if (slist_cursor >= hostCacheCount)
3411                         slist_cursor = 0;
3412                 break;
3413
3414         case K_ENTER:
3415                 S_LocalSound("misc/menu2.wav");
3416                 Cbuf_AddText(va("connect \"%s\"\n", hostcache[slist_cursor].cname));
3417                 break;
3418
3419         default:
3420                 break;
3421         }
3422
3423 }
3424
3425 //=============================================================================
3426 /* Menu Subsystem */
3427
3428
3429 void M_Init (void)
3430 {
3431         menu_mempool = Mem_AllocPool("Menu");
3432         menuplyr_load = true;
3433         menuplyr_pixels = NULL;
3434
3435         Cmd_AddCommand ("togglemenu", M_ToggleMenu_f);
3436
3437         Cmd_AddCommand ("menu_main", M_Menu_Main_f);
3438         Cmd_AddCommand ("menu_singleplayer", M_Menu_SinglePlayer_f);
3439         Cmd_AddCommand ("menu_load", M_Menu_Load_f);
3440         Cmd_AddCommand ("menu_save", M_Menu_Save_f);
3441         Cmd_AddCommand ("menu_multiplayer", M_Menu_MultiPlayer_f);
3442         Cmd_AddCommand ("menu_setup", M_Menu_Setup_f);
3443         Cmd_AddCommand ("menu_options", M_Menu_Options_f);
3444         Cmd_AddCommand ("menu_options_effects", M_Menu_Options_Effects_f);
3445         Cmd_AddCommand ("menu_options_colorcontrol", M_Menu_Options_ColorControl_f);
3446         Cvar_RegisterVariable (&menu_options_colorcontrol_correctionvalue);
3447         Cmd_AddCommand ("menu_keys", M_Menu_Keys_f);
3448         Cmd_AddCommand ("menu_video", M_Menu_Video_f);
3449         Cmd_AddCommand ("help", M_Menu_Help_f);
3450         Cmd_AddCommand ("menu_quit", M_Menu_Quit_f);
3451
3452         if (gamemode == GAME_TRANSFUSION)
3453         {
3454                 numcommands = sizeof(transfusionbindnames) / sizeof(transfusionbindnames[0]);
3455                 bindnames = transfusionbindnames;
3456         }
3457         else if (gamemode == GAME_GOODVSBAD2)
3458         {
3459                 numcommands = sizeof(goodvsbad2bindnames) / sizeof(goodvsbad2bindnames[0]);
3460                 bindnames = goodvsbad2bindnames;
3461         }
3462         else
3463         {
3464                 numcommands = sizeof(quakebindnames) / sizeof(quakebindnames[0]);
3465                 bindnames = quakebindnames;
3466         }
3467
3468         if (gamemode == GAME_NEHAHRA)
3469         {
3470                 if (FS_FileExists("maps/neh1m4.bsp"))
3471                 {
3472                         if (FS_FileExists("hearing.dem"))
3473                         {
3474                                 Con_Printf("Nehahra movie and game detected.\n");
3475                                 NehGameType = TYPE_BOTH;
3476                         }
3477                         else
3478                         {
3479                                 Con_Printf("Nehahra game detected.\n");
3480                                 NehGameType = TYPE_GAME;
3481                         }
3482                 }
3483                 else
3484                 {
3485                         if (FS_FileExists("hearing.dem"))
3486                         {
3487                                 Con_Printf("Nehahra movie detected.\n");
3488                                 NehGameType = TYPE_DEMO;
3489                         }
3490                         else
3491                         {
3492                                 Con_Printf("Nehahra not found.\n");
3493                                 NehGameType = TYPE_GAME; // could just complain, but...
3494                         }
3495                 }
3496         }
3497 }
3498
3499 void M_Draw (void)
3500 {
3501         if (key_dest != key_menu)
3502                 m_state = m_none;
3503         if (m_state == m_none)
3504                 return;
3505
3506         switch (m_state)
3507         {
3508         case m_none:
3509                 break;
3510
3511         case m_main:
3512                 M_Main_Draw ();
3513                 break;
3514
3515         case m_demo:
3516                 M_Demo_Draw ();
3517                 break;
3518
3519         case m_singleplayer:
3520                 M_SinglePlayer_Draw ();
3521                 break;
3522
3523         case m_load:
3524                 M_Load_Draw ();
3525                 break;
3526
3527         case m_save:
3528                 M_Save_Draw ();
3529                 break;
3530
3531         case m_multiplayer:
3532                 M_MultiPlayer_Draw ();
3533                 break;
3534
3535         case m_setup:
3536                 M_Setup_Draw ();
3537                 break;
3538
3539         case m_options:
3540                 M_Options_Draw ();
3541                 break;
3542
3543         case m_options_effects:
3544                 M_Options_Effects_Draw ();
3545                 break;
3546
3547         case m_options_colorcontrol:
3548                 M_Options_ColorControl_Draw ();
3549                 break;
3550
3551         case m_keys:
3552                 M_Keys_Draw ();
3553                 break;
3554
3555         case m_video:
3556                 M_Video_Draw ();
3557                 break;
3558
3559         case m_help:
3560                 M_Help_Draw ();
3561                 break;
3562
3563         case m_quit:
3564                 M_Quit_Draw ();
3565                 break;
3566
3567         case m_lanconfig:
3568                 M_LanConfig_Draw ();
3569                 break;
3570
3571         case m_gameoptions:
3572                 M_GameOptions_Draw ();
3573                 break;
3574
3575         case m_slist:
3576                 M_ServerList_Draw ();
3577                 break;
3578         }
3579
3580         if (m_entersound)
3581         {
3582                 S_LocalSound ("misc/menu2.wav");
3583                 m_entersound = false;
3584         }
3585
3586         S_ExtraUpdate ();
3587 }
3588
3589
3590 void M_Keydown (int key)
3591 {
3592         switch (m_state)
3593         {
3594         case m_none:
3595                 return;
3596
3597         case m_main:
3598                 M_Main_Key (key);
3599                 return;
3600
3601         case m_demo:
3602                 M_Demo_Key (key);
3603                 return;
3604
3605         case m_singleplayer:
3606                 M_SinglePlayer_Key (key);
3607                 return;
3608
3609         case m_load:
3610                 M_Load_Key (key);
3611                 return;
3612
3613         case m_save:
3614                 M_Save_Key (key);
3615                 return;
3616
3617         case m_multiplayer:
3618                 M_MultiPlayer_Key (key);
3619                 return;
3620
3621         case m_setup:
3622                 M_Setup_Key (key);
3623                 return;
3624
3625         case m_options:
3626                 M_Options_Key (key);
3627                 return;
3628
3629         case m_options_effects:
3630                 M_Options_Effects_Key (key);
3631                 return;
3632
3633         case m_options_colorcontrol:
3634                 M_Options_ColorControl_Key (key);
3635                 return;
3636
3637         case m_keys:
3638                 M_Keys_Key (key);
3639                 return;
3640
3641         case m_video:
3642                 M_Video_Key (key);
3643                 return;
3644
3645         case m_help:
3646                 M_Help_Key (key);
3647                 return;
3648
3649         case m_quit:
3650                 M_Quit_Key (key);
3651                 return;
3652
3653         case m_lanconfig:
3654                 M_LanConfig_Key (key);
3655                 return;
3656
3657         case m_gameoptions:
3658                 M_GameOptions_Key (key);
3659                 return;
3660
3661         case m_slist:
3662                 M_ServerList_Key (key);
3663                 return;
3664         }
3665 }
3666