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