2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
25 #include "mprogdefs.h"
31 static int NehGameType;
33 enum m_state_e m_state;
34 char m_return_reason[32];
36 void M_Menu_Main_f (void);
37 void M_Menu_SinglePlayer_f (void);
38 void M_Menu_Transfusion_Episode_f (void);
39 void M_Menu_Transfusion_Skill_f (void);
40 void M_Menu_Load_f (void);
41 void M_Menu_Save_f (void);
42 void M_Menu_MultiPlayer_f (void);
43 void M_Menu_Setup_f (void);
44 void M_Menu_Options_f (void);
45 void M_Menu_Options_Effects_f (void);
46 void M_Menu_Options_Graphics_f (void);
47 void M_Menu_Options_ColorControl_f (void);
48 void M_Menu_Keys_f (void);
49 void M_Menu_Reset_f (void);
50 void M_Menu_Video_f (void);
51 void M_Menu_Help_f (void);
52 void M_Menu_Credits_f (void);
53 void M_Menu_Quit_f (void);
54 void M_Menu_LanConfig_f (void);
55 void M_Menu_GameOptions_f (void);
56 void M_Menu_ServerList_f (void);
58 static void M_Main_Draw (void);
59 static void M_SinglePlayer_Draw (void);
60 static void M_Transfusion_Episode_Draw (void);
61 static void M_Transfusion_Skill_Draw (void);
62 static void M_Load_Draw (void);
63 static void M_Save_Draw (void);
64 static void M_MultiPlayer_Draw (void);
65 static void M_Setup_Draw (void);
66 static void M_Options_Draw (void);
67 static void M_Options_Effects_Draw (void);
68 static void M_Options_Graphics_Draw (void);
69 static void M_Options_ColorControl_Draw (void);
70 static void M_Keys_Draw (void);
71 static void M_Reset_Draw (void);
72 static void M_Video_Draw (void);
73 static void M_Help_Draw (void);
74 static void M_Credits_Draw (void);
75 static void M_Quit_Draw (void);
76 static void M_LanConfig_Draw (void);
77 static void M_GameOptions_Draw (void);
78 static void M_ServerList_Draw (void);
80 static void M_Main_Key (int key, char ascii);
81 static void M_SinglePlayer_Key (int key, char ascii);
82 static void M_Transfusion_Episode_Key (int key, char ascii);
83 static void M_Transfusion_Skill_Key (int key, char ascii);
84 static void M_Load_Key (int key, char ascii);
85 static void M_Save_Key (int key, char ascii);
86 static void M_MultiPlayer_Key (int key, char ascii);
87 static void M_Setup_Key (int key, char ascii);
88 static void M_Options_Key (int key, char ascii);
89 static void M_Options_Effects_Key (int key, char ascii);
90 static void M_Options_Graphics_Key (int key, char ascii);
91 static void M_Options_ColorControl_Key (int key, char ascii);
92 static void M_Keys_Key (int key, char ascii);
93 static void M_Reset_Key (int key, char ascii);
94 static void M_Video_Key (int key, char ascii);
95 static void M_Help_Key (int key, char ascii);
96 static void M_Credits_Key (int key, char ascii);
97 static void M_Quit_Key (int key, char ascii);
98 static void M_LanConfig_Key (int key, char ascii);
99 static void M_GameOptions_Key (int key, char ascii);
100 static void M_ServerList_Key (int key, char ascii);
102 static qboolean m_entersound; // play after drawing a frame, so caching won't disrupt the sound
104 void M_Update_Return_Reason(char *s)
106 strlcpy(m_return_reason, s, sizeof(m_return_reason));
108 Con_Printf("%s\n", s);
111 #define StartingGame (m_multiplayer_cursor == 1)
112 #define JoiningGame (m_multiplayer_cursor == 0)
115 #define NumberOfNehahraDemos 34
116 typedef struct nehahrademonames_s
120 } nehahrademonames_t;
122 static nehahrademonames_t NehahraDemos[NumberOfNehahraDemos] =
124 {"intro", "Prologue"},
125 {"genf", "The Beginning"},
126 {"genlab", "A Doomed Project"},
127 {"nehcre", "The New Recruits"},
128 {"maxneh", "Breakthrough"},
129 {"maxchar", "Renewal and Duty"},
130 {"crisis", "Worlds Collide"},
131 {"postcris", "Darkening Skies"},
132 {"hearing", "The Hearing"},
133 {"getjack", "On a Mexican Radio"},
134 {"prelude", "Honor and Justice"},
135 {"abase", "A Message Sent"},
136 {"effect", "The Other Side"},
137 {"uhoh", "Missing in Action"},
138 {"prepare", "The Response"},
139 {"vision", "Farsighted Eyes"},
140 {"maxturns", "Enter the Immortal"},
141 {"backlot", "Separate Ways"},
142 {"maxside", "The Ancient Runes"},
143 {"counter", "The New Initiative"},
144 {"warprep", "Ghosts to the World"},
145 {"counter1", "A Fate Worse Than Death"},
146 {"counter2", "Friendly Fire"},
147 {"counter3", "Minor Setback"},
148 {"madmax", "Scores to Settle"},
149 {"quake", "One Man"},
150 {"cthmm", "Shattered Masks"},
151 {"shades", "Deal with the Dead"},
152 {"gophil", "An Unlikely Hero"},
153 {"cstrike", "War in Hell"},
154 {"shubset", "The Conspiracy"},
155 {"shubdie", "Even Death May Die"},
156 {"newranks", "An Empty Throne"},
157 {"seal", "The Seal is Broken"}
160 static float menu_x, menu_y, menu_width, menu_height;
162 static void M_Background(int width, int height)
164 menu_width = bound(1, width, vid_conwidth.integer);
165 menu_height = bound(1, height, vid_conheight.integer);
166 menu_x = (vid_conwidth.integer - menu_width) * 0.5;
167 menu_y = (vid_conheight.integer - menu_height) * 0.5;
168 //DrawQ_Pic(menu_x, menu_y, NULL, menu_width, menu_height, 0, 0, 0, 0.5, 0);
169 DrawQ_Pic(0, 0, NULL, vid_conwidth.integer, vid_conheight.integer, 0, 0, 0, 0.5, 0);
176 Draws one solid graphics character
179 static void M_DrawCharacter (float cx, float cy, int num)
184 DrawQ_String(menu_x + cx, menu_y + cy, temp, 1, 8, 8, 1, 1, 1, 1, 0);
187 static void M_PrintColored(float cx, float cy, const char *str)
189 DrawQ_ColoredString(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0, NULL);
192 static void M_Print(float cx, float cy, const char *str)
194 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
197 static void M_PrintRed(float cx, float cy, const char *str)
199 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 0, 0, 1, 0);
202 static void M_ItemPrint(float cx, float cy, const char *str, int unghosted)
205 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
207 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 0.4, 0.4, 0.4, 1, 0);
210 static void M_DrawPic(float cx, float cy, const char *picname)
212 DrawQ_Pic(menu_x + cx, menu_y + cy, Draw_CachePic(picname, true), 0, 0, 1, 1, 1, 1, 0);
215 static unsigned char identityTable[256];
216 static unsigned char translationTable[256];
218 static void M_BuildTranslationTable(int top, int bottom)
221 unsigned char *dest, *source;
223 for (j = 0; j < 256; j++)
224 identityTable[j] = j;
225 dest = translationTable;
226 source = identityTable;
227 memcpy (dest, source, 256);
229 // LordHavoc: corrected skin color ranges
230 if (top < 128 || (top >= 224 && top < 240)) // the artists made some backwards ranges. sigh.
231 memcpy (dest + TOP_RANGE, source + top, 16);
233 for (j=0 ; j<16 ; j++)
234 dest[TOP_RANGE+j] = source[top+15-j];
236 // LordHavoc: corrected skin color ranges
237 if (bottom < 128 || (bottom >= 224 && bottom < 240))
238 memcpy (dest + BOTTOM_RANGE, source + bottom, 16);
240 for (j=0 ; j<16 ; j++)
241 dest[BOTTOM_RANGE+j] = source[bottom+15-j];
244 static void M_DrawTextBox(float x, float y, float width, float height)
252 M_DrawPic (cx, cy, "gfx/box_tl");
253 for (n = 0; n < height; n++)
256 M_DrawPic (cx, cy, "gfx/box_ml");
258 M_DrawPic (cx, cy+8, "gfx/box_bl");
265 M_DrawPic (cx, cy, "gfx/box_tm");
266 for (n = 0; n < height; n++)
270 M_DrawPic (cx, cy, "gfx/box_mm2");
272 M_DrawPic (cx, cy, "gfx/box_mm");
274 M_DrawPic (cx, cy+8, "gfx/box_bm");
281 M_DrawPic (cx, cy, "gfx/box_tr");
282 for (n = 0; n < height; n++)
285 M_DrawPic (cx, cy, "gfx/box_mr");
287 M_DrawPic (cx, cy+8, "gfx/box_br");
290 //=============================================================================
292 //int m_save_demonum;
299 void M_ToggleMenu_f (void)
303 if (key_dest != key_menu || m_state != m_main)
313 static int demo_cursor;
314 static void M_Demo_Draw (void)
318 M_Background(320, 200);
320 for (i = 0;i < NumberOfNehahraDemos;i++)
321 M_Print(16, 16 + 8*i, NehahraDemos[i].desc);
324 M_DrawCharacter (8, 16 + demo_cursor*8, 12+((int)(realtime*4)&1));
328 void M_Menu_Demos_f (void)
336 static void M_Demo_Key (int k, char ascii)
345 S_LocalSound ("sound/misc/menu2.wav");
348 Cbuf_AddText (va ("playdemo %s\n", NehahraDemos[demo_cursor].name));
353 S_LocalSound ("sound/misc/menu1.wav");
356 demo_cursor = NumberOfNehahraDemos-1;
361 S_LocalSound ("sound/misc/menu1.wav");
363 if (demo_cursor >= NumberOfNehahraDemos)
369 //=============================================================================
372 static int m_main_cursor;
374 static int MAIN_ITEMS = 4; // Nehahra: Menu Disable
377 void M_Menu_Main_f (void)
379 if (gamemode == GAME_NEHAHRA)
381 if (NehGameType == TYPE_DEMO)
383 else if (NehGameType == TYPE_GAME)
388 else if (gamemode == GAME_NETHERWORLD)//VORTEX: menu restarting item
390 else if (gamemode == GAME_TRANSFUSION) {
391 if (sv.active && !cl.intermission && cl.islocalgame)
396 else if (gamemode == GAME_NEXUIZ) {
403 if (key_dest != key_menu)
405 m_save_demonum = cls.demonum;
415 static void M_Main_Draw (void)
420 if (gamemode == GAME_TRANSFUSION) {
422 M_Background(640, 480);
423 p = Draw_CachePic ("gfx/menu/tb-transfusion", true);
424 M_DrawPic (640/2 - p->width/2, 40, "gfx/menu/tb-transfusion");
426 // 8 rather than MAIN_ITEMS to skip a number and not miss the last option
427 for (y1 = 1; y1 <= 8; y1++)
429 if (MAIN_ITEMS == 7 && y1 == 4)
431 M_DrawPic (0, y2, va("gfx/menu/mainmenu%i", y1));
434 if (MAIN_ITEMS == 7 && m_main_cursor > 2)
435 y3 = m_main_cursor + 2;
437 y3 = m_main_cursor + 1;
438 M_DrawPic (0, 120 + m_main_cursor * 40, va("gfx/menu/mainmenu%iselected", y3));
441 else if (gamemode == GAME_NEXUIZ)
443 M_Background(640, 480); //fall back is always to 640x480, this makes it most readable at that.
444 M_PrintRed (40, (480/3)-16, "You have reached this menu due to missing or unlocatable content/data");
445 M_Print ((640/2)-92, (480/3), "You may consider adding");
446 M_Print ((640/2)-136, (480/3)+8, "-basedir /path/to/nexuiz");
447 M_Print ((640/2)-76, (480/3)+16, "to your launch commandline");
448 M_Print (640/2 - 48, 480/2, "Open Console"); //The console usually better shows errors (failures)
449 M_Print (640/2 - 48, 480/2 + 8, "Quit");
450 M_DrawCharacter(640/2 - 56, 480/2 + (8 * m_main_cursor), 12+((int)(realtime*4)&1));
453 M_Background(320, 200);
454 M_DrawPic (16, 4, "gfx/qplaque");
455 p = Draw_CachePic ("gfx/ttl_main", true);
456 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_main");
458 if (gamemode == GAME_NEHAHRA)
460 if (NehGameType == TYPE_BOTH)
461 M_DrawPic (72, 32, "gfx/mainmenu");
462 else if (NehGameType == TYPE_GAME)
463 M_DrawPic (72, 32, "gfx/gamemenu");
465 M_DrawPic (72, 32, "gfx/demomenu");
468 M_DrawPic (72, 32, "gfx/mainmenu");
470 f = (int)(realtime * 10)%6;
472 M_DrawPic (54, 32 + m_main_cursor * 20, va("gfx/menudot%i", f+1));
476 static void M_Main_Key (int key, char ascii)
483 //cls.demonum = m_save_demonum;
484 //if (cls.demonum != -1 && !cls.demoplayback && cls.state != ca_connected)
489 S_LocalSound ("sound/misc/menu1.wav");
490 if (++m_main_cursor >= MAIN_ITEMS)
495 S_LocalSound ("sound/misc/menu1.wav");
496 if (--m_main_cursor < 0)
497 m_main_cursor = MAIN_ITEMS - 1;
503 if (gamemode == GAME_NEHAHRA)
508 switch (m_main_cursor)
511 M_Menu_SinglePlayer_f ();
519 M_Menu_MultiPlayer_f ();
529 Cbuf_AddText ("disconnect\n");
530 Cbuf_AddText ("playdemo endcred\n");
539 switch (m_main_cursor)
542 M_Menu_SinglePlayer_f ();
546 M_Menu_MultiPlayer_f ();
556 Cbuf_AddText ("disconnect\n");
557 Cbuf_AddText ("playdemo endcred\n");
566 switch (m_main_cursor)
575 Cbuf_AddText ("disconnect\n");
576 Cbuf_AddText ("playdemo endcred\n");
590 else if (gamemode == GAME_NETHERWORLD)//VORTEX: menu restarting item
592 switch (m_main_cursor)
595 M_Menu_SinglePlayer_f ();
599 M_Menu_MultiPlayer_f ();
618 else if (gamemode == GAME_TRANSFUSION) {
621 switch (m_main_cursor)
624 M_Menu_Transfusion_Episode_f ();
628 M_Menu_MultiPlayer_f ();
654 switch (m_main_cursor)
657 M_Menu_Transfusion_Episode_f ();
661 M_Menu_MultiPlayer_f ();
690 else if (gamemode == GAME_NEXUIZ) {
691 switch (m_main_cursor)
694 if (cls.state == ca_connected)
699 Con_ToggleConsole_f ();
708 switch (m_main_cursor)
711 M_Menu_SinglePlayer_f ();
715 M_Menu_MultiPlayer_f ();
734 //=============================================================================
735 /* SINGLE PLAYER MENU */
737 static int m_singleplayer_cursor;
738 #define SINGLEPLAYER_ITEMS 3
741 void M_Menu_SinglePlayer_f (void)
744 m_state = m_singleplayer;
749 static void M_SinglePlayer_Draw (void)
753 M_Background(320, 200);
755 M_DrawPic (16, 4, "gfx/qplaque");
756 p = Draw_CachePic ("gfx/ttl_sgl", true);
758 // Some mods don't have a single player mode
759 if (gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
761 M_DrawPic ((320 - p->width) / 2, 4, "gfx/ttl_sgl");
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");
774 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_sgl");
775 M_DrawPic (72, 32, "gfx/sp_menu");
777 f = (int)(realtime * 10)%6;
779 M_DrawPic (54, 32 + m_singleplayer_cursor * 20, va("gfx/menudot%i", f+1));
784 static void M_SinglePlayer_Key (int key, char ascii)
786 if (gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
788 if (key == K_ESCAPE || key == K_ENTER)
800 S_LocalSound ("sound/misc/menu1.wav");
801 if (++m_singleplayer_cursor >= SINGLEPLAYER_ITEMS)
802 m_singleplayer_cursor = 0;
806 S_LocalSound ("sound/misc/menu1.wav");
807 if (--m_singleplayer_cursor < 0)
808 m_singleplayer_cursor = SINGLEPLAYER_ITEMS - 1;
814 switch (m_singleplayer_cursor)
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)
826 M_Menu_Transfusion_Episode_f ();
829 Cbuf_AddText ("startmap_sp\n");
843 //=============================================================================
846 static int load_cursor; // 0 < load_cursor < MAX_SAVEGAMES
848 #define MAX_SAVEGAMES 12
849 static char m_filenames[MAX_SAVEGAMES][SAVEGAME_COMMENT_LENGTH+1];
850 static int loadable[MAX_SAVEGAMES];
852 static void M_ScanSaves (void)
855 char name[MAX_OSPATH];
856 char buf[SAVEGAME_COMMENT_LENGTH + 256];
861 for (i=0 ; i<MAX_SAVEGAMES ; i++)
863 strcpy (m_filenames[i], "--- UNUSED SLOT ---");
865 sprintf (name, "s%i.sav", (int)i);
866 f = FS_Open (name, "rb", false, false);
869 // read enough to get the comment
870 len = FS_Read(f, buf, sizeof(buf) - 1);
871 buf[sizeof(buf) - 1] = 0;
874 COM_ParseToken(&t, false);
875 version = atoi(com_token);
877 COM_ParseToken(&t, false);
878 strlcpy (m_filenames[i], com_token, sizeof (m_filenames[i]));
880 // change _ back to space
881 for (j=0 ; j<SAVEGAME_COMMENT_LENGTH ; j++)
882 if (m_filenames[i][j] == '_')
883 m_filenames[i][j] = ' ';
889 void M_Menu_Load_f (void)
898 void M_Menu_Save_f (void)
913 static void M_Load_Draw (void)
918 M_Background(320, 200);
920 p = Draw_CachePic ("gfx/p_load", true);
921 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_load" );
923 for (i=0 ; i< MAX_SAVEGAMES; i++)
924 M_Print(16, 32 + 8*i, m_filenames[i]);
927 M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
931 static void M_Save_Draw (void)
936 M_Background(320, 200);
938 p = Draw_CachePic ("gfx/p_save", true);
939 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_save");
941 for (i=0 ; i<MAX_SAVEGAMES ; i++)
942 M_Print(16, 32 + 8*i, m_filenames[i]);
945 M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
949 static void M_Load_Key (int k, char ascii)
954 if (gamemode == GAME_TRANSFUSION)
957 M_Menu_SinglePlayer_f ();
961 S_LocalSound ("sound/misc/menu2.wav");
962 if (!loadable[load_cursor])
967 // issue the load command
968 Cbuf_AddText (va ("load s%i\n", load_cursor) );
973 S_LocalSound ("sound/misc/menu1.wav");
976 load_cursor = MAX_SAVEGAMES-1;
981 S_LocalSound ("sound/misc/menu1.wav");
983 if (load_cursor >= MAX_SAVEGAMES)
990 static void M_Save_Key (int k, char ascii)
995 if (gamemode == GAME_TRANSFUSION)
998 M_Menu_SinglePlayer_f ();
1003 key_dest = key_game;
1004 Cbuf_AddText (va("save s%i\n", load_cursor));
1009 S_LocalSound ("sound/misc/menu1.wav");
1011 if (load_cursor < 0)
1012 load_cursor = MAX_SAVEGAMES-1;
1017 S_LocalSound ("sound/misc/menu1.wav");
1019 if (load_cursor >= MAX_SAVEGAMES)
1025 //=============================================================================
1026 /* Transfusion Single Player Episode Menu */
1028 static int m_episode_cursor;
1029 #define EPISODE_ITEMS 6
1031 void M_Menu_Transfusion_Episode_f (void)
1033 m_entersound = true;
1034 m_state = m_transfusion_episode;
1035 key_dest = key_menu;
1038 static void M_Transfusion_Episode_Draw (void)
1042 M_Background(640, 480);
1044 p = Draw_CachePic ("gfx/menu/tb-episodes", true);
1045 M_DrawPic (640/2 - p->width/2, 40, "gfx/menu/tb-episodes");
1046 for (y = 0; y < EPISODE_ITEMS; y++){
1047 M_DrawPic (0, 160 + y * 40, va("gfx/menu/episode%i", y+1));
1050 M_DrawPic (0, 120 + (m_episode_cursor + 1) * 40, va("gfx/menu/episode%iselected", m_episode_cursor + 1));
1053 static void M_Transfusion_Episode_Key (int key, char ascii)
1062 S_LocalSound ("sound/misc/menu1.wav");
1064 if (m_episode_cursor >= EPISODE_ITEMS)
1065 m_episode_cursor = 0;
1069 S_LocalSound ("sound/misc/menu1.wav");
1071 if (m_episode_cursor < 0)
1072 m_episode_cursor = EPISODE_ITEMS - 1;
1076 Cbuf_AddText ("deathmatch 0\n");
1077 m_entersound = true;
1078 M_Menu_Transfusion_Skill_f ();
1082 //=============================================================================
1083 /* Transfusion Single Player Skill Menu */
1085 static int m_skill_cursor = 2;
1086 #define SKILL_ITEMS 5
1088 void M_Menu_Transfusion_Skill_f (void)
1090 m_entersound = true;
1091 m_state = m_transfusion_skill;
1092 key_dest = key_menu;
1095 static void M_Transfusion_Skill_Draw (void)
1099 M_Background(640, 480);
1101 p = Draw_CachePic ("gfx/menu/tb-difficulty", true);
1102 M_DrawPic(640/2 - p->width/2, 40, "gfx/menu/tb-difficulty");
1104 for (y = 0; y < SKILL_ITEMS; y++)
1106 M_DrawPic (0, 180 + y * 40, va("gfx/menu/difficulty%i", y+1));
1108 M_DrawPic (0, 140 + (m_skill_cursor + 1) *40, va("gfx/menu/difficulty%iselected", m_skill_cursor + 1));
1111 static void M_Transfusion_Skill_Key (int key, char ascii)
1116 M_Menu_Transfusion_Episode_f ();
1120 S_LocalSound ("sound/misc/menu1.wav");
1122 if (m_skill_cursor >= SKILL_ITEMS)
1127 S_LocalSound ("sound/misc/menu1.wav");
1129 if (m_skill_cursor < 0)
1130 m_skill_cursor = SKILL_ITEMS - 1;
1134 m_entersound = true;
1135 switch (m_skill_cursor)
1138 Cbuf_AddText ("skill 1\n");
1141 Cbuf_AddText ("skill 2\n");
1144 Cbuf_AddText ("skill 3\n");
1147 Cbuf_AddText ("skill 4\n");
1150 Cbuf_AddText ("skill 5\n");
1153 key_dest = key_game;
1155 Cbuf_AddText ("disconnect\n");
1156 Cbuf_AddText ("maxplayers 1\n");
1157 Cbuf_AddText ("deathmatch 0\n");
1158 Cbuf_AddText ("coop 0\n");
1159 switch (m_episode_cursor)
1162 Cbuf_AddText ("map e1m1\n");
1165 Cbuf_AddText ("map e2m1\n");
1168 Cbuf_AddText ("map e3m1\n");
1171 Cbuf_AddText ("map e4m1\n");
1174 Cbuf_AddText ("map e6m1\n");
1177 Cbuf_AddText ("map cp01\n");
1182 //=============================================================================
1183 /* MULTIPLAYER MENU */
1185 static int m_multiplayer_cursor;
1186 #define MULTIPLAYER_ITEMS 3
1189 void M_Menu_MultiPlayer_f (void)
1191 key_dest = key_menu;
1192 m_state = m_multiplayer;
1193 m_entersound = true;
1197 static void M_MultiPlayer_Draw (void)
1202 if (gamemode == GAME_TRANSFUSION)
1204 M_Background(640, 480);
1205 p = Draw_CachePic ("gfx/menu/tb-online", true);
1206 M_DrawPic (640/2 - p->width/2, 140, "gfx/menu/tb-online");
1207 for (f = 1; f <= MULTIPLAYER_ITEMS; f++)
1208 M_DrawPic (0, 180 + f*40, va("gfx/menu/online%i", f));
1209 M_DrawPic (0, 220 + m_multiplayer_cursor * 40, va("gfx/menu/online%iselected", m_multiplayer_cursor + 1));
1212 M_Background(320, 200);
1214 M_DrawPic (16, 4, "gfx/qplaque");
1215 p = Draw_CachePic ("gfx/p_multi", true);
1216 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi");
1217 M_DrawPic (72, 32, "gfx/mp_menu");
1219 f = (int)(realtime * 10)%6;
1221 M_DrawPic (54, 32 + m_multiplayer_cursor * 20, va("gfx/menudot%i", f+1));
1225 static void M_MultiPlayer_Key (int key, char ascii)
1234 S_LocalSound ("sound/misc/menu1.wav");
1235 if (++m_multiplayer_cursor >= MULTIPLAYER_ITEMS)
1236 m_multiplayer_cursor = 0;
1240 S_LocalSound ("sound/misc/menu1.wav");
1241 if (--m_multiplayer_cursor < 0)
1242 m_multiplayer_cursor = MULTIPLAYER_ITEMS - 1;
1246 m_entersound = true;
1247 switch (m_multiplayer_cursor)
1251 M_Menu_LanConfig_f ();
1261 //=============================================================================
1264 static int setup_cursor = 4;
1265 static int setup_cursor_table[] = {40, 64, 88, 124, 140};
1267 static char setup_myname[32];
1268 static int setup_oldtop;
1269 static int setup_oldbottom;
1270 static int setup_top;
1271 static int setup_bottom;
1272 static int setup_rate;
1273 static int setup_oldrate;
1275 #define NUM_SETUP_CMDS 5
1277 void M_Menu_Setup_f (void)
1279 key_dest = key_menu;
1281 m_entersound = true;
1282 strcpy(setup_myname, cl_name.string);
1283 setup_top = setup_oldtop = cl_color.integer >> 4;
1284 setup_bottom = setup_oldbottom = cl_color.integer & 15;
1285 setup_rate = cl_rate.integer;
1288 static int menuplyr_width, menuplyr_height, menuplyr_top, menuplyr_bottom, menuplyr_load;
1289 static unsigned char *menuplyr_pixels;
1290 static unsigned int *menuplyr_translated;
1292 typedef struct ratetable_s
1299 #define RATES ((int)(sizeof(setup_ratetable)/sizeof(setup_ratetable[0])))
1300 static ratetable_t setup_ratetable[] =
1303 {1500, "28.8 mediocre"},
1304 {2000, "28.8 good"},
1305 {2500, "33.6 mediocre"},
1306 {3000, "33.6 good"},
1308 {4000, "56k mediocre"},
1309 {4500, "56k adequate"},
1312 {15000, "128k ISDN"},
1313 {25000, "broadband"}
1316 static int setup_rateindex(int rate)
1319 for (i = 0;i < RATES;i++)
1320 if (setup_ratetable[i].rate > setup_rate)
1322 return bound(1, i, RATES) - 1;
1325 static void M_Setup_Draw (void)
1330 M_Background(320, 200);
1332 M_DrawPic (16, 4, "gfx/qplaque");
1333 p = Draw_CachePic ("gfx/p_multi", true);
1334 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi");
1336 M_Print(64, 40, "Your name");
1337 M_DrawTextBox (160, 32, 16, 1);
1338 M_PrintColored(168, 40, setup_myname);
1340 if (gamemode != GAME_GOODVSBAD2)
1342 M_Print(64, 64, "Shirt color");
1343 M_Print(64, 88, "Pants color");
1346 M_Print(64, 124-8, "Network speed limit");
1347 M_Print(168, 124, va("%i (%s)", setup_rate, setup_ratetable[setup_rateindex(setup_rate)].name));
1349 M_DrawTextBox (64, 140-8, 14, 1);
1350 M_Print(72, 140, "Accept Changes");
1352 // LordHavoc: rewrote this code greatly
1355 unsigned char *data, *f;
1356 fs_offset_t filesize;
1357 menuplyr_load = false;
1359 menuplyr_bottom = -1;
1360 if ((f = FS_LoadFile("gfx/menuplyr.lmp", tempmempool, true, &filesize)))
1362 data = LoadLMP (f, filesize, 0, 0, true);
1363 menuplyr_width = image_width;
1364 menuplyr_height = image_height;
1366 menuplyr_pixels = (unsigned char *)Mem_Alloc(cls.permanentmempool, menuplyr_width * menuplyr_height);
1367 menuplyr_translated = (unsigned int *)Mem_Alloc(cls.permanentmempool, menuplyr_width * menuplyr_height * 4);
1368 memcpy(menuplyr_pixels, data, menuplyr_width * menuplyr_height);
1373 if (menuplyr_pixels)
1375 if (menuplyr_top != setup_top || menuplyr_bottom != setup_bottom)
1377 menuplyr_top = setup_top;
1378 menuplyr_bottom = setup_bottom;
1379 M_BuildTranslationTable(menuplyr_top*16, menuplyr_bottom*16);
1380 for (i = 0;i < menuplyr_width * menuplyr_height;i++)
1381 menuplyr_translated[i] = palette_transparent[translationTable[menuplyr_pixels[i]]];
1382 Draw_NewPic("gfx/menuplyr", menuplyr_width, menuplyr_height, true, (unsigned char *)menuplyr_translated);
1384 M_DrawPic(160, 48, "gfx/bigbox");
1385 M_DrawPic(172, 56, "gfx/menuplyr");
1388 if (setup_cursor == 0)
1389 M_DrawCharacter (168 + 8*strlen(setup_myname), setup_cursor_table [setup_cursor], 10+((int)(realtime*4)&1));
1391 M_DrawCharacter (56, setup_cursor_table [setup_cursor], 12+((int)(realtime*4)&1));
1395 static void M_Setup_Key (int k, char ascii)
1402 M_Menu_MultiPlayer_f ();
1406 S_LocalSound ("sound/misc/menu1.wav");
1408 if (setup_cursor < 0)
1409 setup_cursor = NUM_SETUP_CMDS-1;
1413 S_LocalSound ("sound/misc/menu1.wav");
1415 if (setup_cursor >= NUM_SETUP_CMDS)
1420 if (setup_cursor < 1)
1422 S_LocalSound ("sound/misc/menu3.wav");
1423 if (setup_cursor == 1)
1424 setup_top = setup_top - 1;
1425 if (setup_cursor == 2)
1426 setup_bottom = setup_bottom - 1;
1427 if (setup_cursor == 3)
1429 l = setup_rateindex(setup_rate) - 1;
1432 setup_rate = setup_ratetable[l].rate;
1436 if (setup_cursor < 1)
1439 S_LocalSound ("sound/misc/menu3.wav");
1440 if (setup_cursor == 1)
1441 setup_top = setup_top + 1;
1442 if (setup_cursor == 2)
1443 setup_bottom = setup_bottom + 1;
1444 if (setup_cursor == 3)
1446 l = setup_rateindex(setup_rate) + 1;
1449 setup_rate = setup_ratetable[l].rate;
1454 if (setup_cursor == 0)
1457 if (setup_cursor == 1 || setup_cursor == 2 || setup_cursor == 3)
1460 // setup_cursor == 4 (Accept changes)
1461 if (strcmp(cl_name.string, setup_myname) != 0)
1462 Cbuf_AddText ( va ("name \"%s\"\n", setup_myname) );
1463 if (setup_top != setup_oldtop || setup_bottom != setup_oldbottom)
1464 Cbuf_AddText( va ("color %i %i\n", setup_top, setup_bottom) );
1465 if (setup_rate != setup_oldrate)
1466 Cbuf_AddText(va("rate %i\n", setup_rate));
1468 m_entersound = true;
1469 M_Menu_MultiPlayer_f ();
1473 if (setup_cursor == 0)
1475 if (strlen(setup_myname))
1476 setup_myname[strlen(setup_myname)-1] = 0;
1483 if (setup_cursor == 0)
1485 l = (int)strlen(setup_myname);
1488 setup_myname[l+1] = 0;
1489 setup_myname[l] = ascii;
1498 if (setup_bottom > 15)
1500 if (setup_bottom < 0)
1504 //=============================================================================
1507 #define SLIDER_RANGE 10
1509 static void M_DrawSlider (int x, int y, float num, float rangemin, float rangemax)
1514 range = bound(0, (num - rangemin) / (rangemax - rangemin), 1);
1515 M_DrawCharacter (x-8, y, 128);
1516 for (i = 0;i < SLIDER_RANGE;i++)
1517 M_DrawCharacter (x + i*8, y, 129);
1518 M_DrawCharacter (x+i*8, y, 130);
1519 M_DrawCharacter (x + (SLIDER_RANGE-1)*8 * range, y, 131);
1520 if (fabs((int)num - num) < 0.01)
1521 sprintf(text, "%i", (int)num);
1523 sprintf(text, "%.2f", num);
1524 M_Print(x + (SLIDER_RANGE+2) * 8, y, text);
1527 static void M_DrawCheckbox (int x, int y, int on)
1530 M_Print(x, y, "on");
1532 M_Print(x, y, "off");
1536 #define OPTIONS_ITEMS 40
1538 static int options_cursor;
1540 void M_Menu_Options_f (void)
1542 key_dest = key_menu;
1543 m_state = m_options;
1544 m_entersound = true;
1547 extern cvar_t slowmo;
1548 extern dllhandle_t jpeg_dll;
1549 extern cvar_t gl_texture_anisotropy;
1550 extern cvar_t r_textshadow;
1552 static void M_Menu_Options_AdjustSliders (int dir)
1555 S_LocalSound ("sound/misc/menu3.wav");
1558 if (options_cursor == optnum++)
1559 Cvar_SetValueQuick (&vid_conwidth, bound(320, vid_conwidth.value + dir * 64, 2048));
1560 else if (options_cursor == optnum++)
1561 Cvar_SetValueQuick (&vid_conheight, bound(240, vid_conheight.value + dir * 48, 1536));
1562 else if (options_cursor == optnum++)
1563 Cvar_SetValueQuick (&scr_conalpha, bound(0, scr_conalpha.value + dir * 0.2, 1));
1564 else if (options_cursor == optnum++)
1565 Cvar_SetValueQuick (&scr_conbrightness, bound(0, scr_conbrightness.value + dir * 0.2, 1));
1566 else if (options_cursor == optnum++)
1567 Cvar_SetValueQuick (&sbar_alpha_bg, bound(0, sbar_alpha_bg.value + dir * 0.1, 1));
1568 else if (options_cursor == optnum++)
1569 Cvar_SetValueQuick (&sbar_alpha_fg, bound(0, sbar_alpha_fg.value + dir * 0.1, 1));
1570 else if (options_cursor == optnum++)
1571 Cvar_SetValueQuick (&scr_viewsize, bound(30, scr_viewsize.value + dir * 10, 120));
1572 else if (options_cursor == optnum++)
1573 Cvar_SetValueQuick (&scr_fov, bound(1, scr_fov.integer + dir * 1, 170));
1574 else if (options_cursor == optnum++)
1575 Cvar_SetValueQuick (&scr_screenshot_jpeg, !scr_screenshot_jpeg.integer);
1576 else if (options_cursor == optnum++)
1577 Cvar_SetValueQuick (&scr_screenshot_jpeg_quality, bound(0, scr_screenshot_jpeg_quality.value + dir * 0.1, 1));
1578 else if (options_cursor == optnum++)
1579 Cvar_SetValueQuick (&scr_screenshot_gammaboost, bound(0.1, scr_screenshot_gammaboost.value + dir * 0.1, 4));
1580 else if (options_cursor == optnum++)
1581 Cvar_SetValueQuick (&r_sky, !r_sky.integer);
1582 else if (options_cursor == optnum++)
1583 Cvar_SetValueQuick (&gl_dither, !gl_dither.integer);
1584 else if (options_cursor == optnum++)
1585 Cvar_SetValueQuick (&gl_texture_anisotropy, bound(1, gl_texture_anisotropy.integer + dir, gl_max_anisotropy));
1586 else if (options_cursor == optnum++)
1587 Cvar_SetValueQuick (&slowmo, bound(0, slowmo.value + dir * 0.25, 5));
1588 else if (options_cursor == optnum++)
1589 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 0.1, 1));
1590 else if (options_cursor == optnum++)
1591 Cvar_SetValueQuick (&volume, bound(0, volume.value + dir * 0.1, 1));
1592 else if (options_cursor == optnum++)
1593 Cvar_SetValueQuick (&snd_staticvolume, bound(0, snd_staticvolume.value + dir * 0.1, 1));
1594 else if (options_cursor == optnum++)
1595 Cvar_SetValueQuick (&r_textshadow, !r_textshadow.integer);
1596 else if (options_cursor == optnum++)
1597 Cvar_SetValueQuick (&crosshair, bound(0, crosshair.integer + dir, 6));
1598 else if (options_cursor == optnum++)
1599 Cvar_SetValueQuick (&crosshair_size, bound(1, crosshair_size.value + dir, 5));
1600 else if (options_cursor == optnum++)
1601 Cvar_SetValueQuick (&crosshair_static, !crosshair_static.integer);
1602 else if (options_cursor == optnum++)
1603 Cvar_SetValueQuick (&showfps, !showfps.integer);
1604 else if (options_cursor == optnum++)
1605 Cvar_SetValueQuick (&showtime, !showtime.integer);
1606 else if (options_cursor == optnum++)
1607 Cvar_SetValueQuick (&showdate, !showdate.integer);
1608 else if (options_cursor == optnum++)
1610 if (cl_forwardspeed.value > 200)
1612 Cvar_SetValueQuick (&cl_forwardspeed, 200);
1613 Cvar_SetValueQuick (&cl_backspeed, 200);
1617 Cvar_SetValueQuick (&cl_forwardspeed, 400);
1618 Cvar_SetValueQuick (&cl_backspeed, 400);
1621 else if (options_cursor == optnum++)
1622 Cvar_SetValueQuick (&lookspring, !lookspring.integer);
1623 else if (options_cursor == optnum++)
1624 Cvar_SetValueQuick (&lookstrafe, !lookstrafe.integer);
1625 else if (options_cursor == optnum++)
1626 Cvar_SetValueQuick (&sensitivity, bound(1, sensitivity.value + dir * 0.5, 50));
1627 else if (options_cursor == optnum++)
1628 Cvar_SetValueQuick (&freelook, !freelook.integer);
1629 else if (options_cursor == optnum++)
1630 Cvar_SetValueQuick (&m_pitch, -m_pitch.value);
1631 else if (options_cursor == optnum++)
1632 Cvar_SetValueQuick (&vid_mouse, !vid_mouse.integer);
1637 static int optcursor;
1639 static void M_Options_PrintCommand(const char *s, int enabled)
1643 DrawQ_Pic(menu_x, menu_y + opty, NULL, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1644 M_ItemPrint(0, opty, s, enabled);
1650 static void M_Options_PrintCheckbox(const char *s, int enabled, int yes)
1654 DrawQ_Pic(menu_x, menu_y + opty, NULL, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1655 M_ItemPrint(0, opty, s, enabled);
1656 M_DrawCheckbox(0 + (int)strlen(s) * 8 + 8, opty, yes);
1662 static void M_Options_PrintSlider(const char *s, int enabled, float value, float minvalue, float maxvalue)
1666 DrawQ_Pic(menu_x, menu_y + opty, NULL, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1667 M_ItemPrint(0, opty, s, enabled);
1668 M_DrawSlider(0 + (int)strlen(s) * 8 + 8, opty, value, minvalue, maxvalue);
1674 static void M_Options_Draw (void)
1679 M_Background(320, bound(200, 32 + OPTIONS_ITEMS * 8, vid_conheight.integer));
1681 M_DrawPic(16, 4, "gfx/qplaque");
1682 p = Draw_CachePic("gfx/p_option", true);
1683 M_DrawPic((320-p->width)/2, 4, "gfx/p_option");
1686 optcursor = options_cursor;
1687 visible = (int)((menu_height - 32) / 8);
1688 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_ITEMS - visible)) * 8;
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( " Video", true);
1694 M_Options_PrintCommand( " Effects", true);
1695 M_Options_PrintCommand( " Graphics", true);
1696 M_Options_PrintCommand( " Color Control", true);
1697 M_Options_PrintSlider( " 2D Screen Width ", true, vid_conwidth.value, 320, 2048);
1698 M_Options_PrintSlider( " 2D Screen Height", true, vid_conheight.value, 240, 1536);
1699 M_Options_PrintSlider( " Console Alpha", true, scr_conalpha.value, 0, 1);
1700 M_Options_PrintSlider( "Conback Brightness", true, scr_conbrightness.value, 0, 1);
1701 M_Options_PrintSlider( " Sbar Alpha BG", true, sbar_alpha_bg.value, 0, 1);
1702 M_Options_PrintSlider( " Sbar Alpha FG", true, sbar_alpha_fg.value, 0, 1);
1703 M_Options_PrintSlider( " Screen size", true, scr_viewsize.value, 30, 120);
1704 M_Options_PrintSlider( " Field of View", true, scr_fov.integer, 1, 170);
1705 M_Options_PrintCheckbox(" JPEG screenshots", jpeg_dll != NULL, scr_screenshot_jpeg.integer);
1706 M_Options_PrintSlider( " JPEG quality", jpeg_dll != NULL, scr_screenshot_jpeg_quality.value, 0, 1);
1707 M_Options_PrintSlider( " Screenshot Gamma", jpeg_dll != NULL, scr_screenshot_gammaboost.value, 0.1, 4);
1708 M_Options_PrintCheckbox(" Sky", true, r_sky.integer);
1709 M_Options_PrintCheckbox(" Dithering", true, gl_dither.integer);
1710 M_Options_PrintSlider( "Anisotropic Filter", gl_support_anisotropy, gl_texture_anisotropy.integer, 1, gl_max_anisotropy);
1711 M_Options_PrintSlider( " Game Speed", sv.active, slowmo.value, 0, 5);
1712 M_Options_PrintSlider( " CD Music Volume", cdaudioinitialized.integer, bgmvolume.value, 0, 1);
1713 M_Options_PrintSlider( " Sound Volume", snd_initialized.integer, volume.value, 0, 1);
1714 M_Options_PrintSlider(gamemode == GAME_GOODVSBAD2 ? " Music Volume" : " Ambient Volume", snd_initialized.integer, snd_staticvolume.value, 0, 1);
1715 M_Options_PrintCheckbox(" Text Shadow", true, r_textshadow.integer);
1716 M_Options_PrintSlider( " Crosshair", true, crosshair.value, 0, 5);
1717 M_Options_PrintSlider( " Crosshair Size", true, crosshair_size.value, 1, 5);
1718 M_Options_PrintCheckbox(" Static Crosshair", true, crosshair_static.integer);
1719 M_Options_PrintCheckbox(" Show Framerate", true, showfps.integer);
1720 M_Options_PrintCheckbox(" Show Time", true, showtime.integer);
1721 M_Options_PrintCheckbox(" Show Date", true, showdate.integer);
1722 M_Options_PrintCheckbox(" Always Run", true, cl_forwardspeed.value > 200);
1723 M_Options_PrintCheckbox(" Lookspring", true, lookspring.integer);
1724 M_Options_PrintCheckbox(" Lookstrafe", true, lookstrafe.integer);
1725 M_Options_PrintSlider( " Mouse Speed", true, sensitivity.value, 1, 50);
1726 M_Options_PrintCheckbox(" Mouse Look", true, freelook.integer);
1727 M_Options_PrintCheckbox(" Invert Mouse", true, m_pitch.value < 0);
1728 M_Options_PrintCheckbox(" Use Mouse", true, vid_mouse.integer);
1732 static void M_Options_Key (int k, char ascii)
1741 m_entersound = true;
1742 switch (options_cursor)
1749 key_dest = key_game;
1750 Con_ToggleConsole_f ();
1759 M_Menu_Options_Effects_f ();
1762 M_Menu_Options_Graphics_f ();
1765 M_Menu_Options_ColorControl_f ();
1768 M_Menu_Options_AdjustSliders (1);
1774 S_LocalSound ("sound/misc/menu1.wav");
1776 if (options_cursor < 0)
1777 options_cursor = OPTIONS_ITEMS-1;
1781 S_LocalSound ("sound/misc/menu1.wav");
1783 if (options_cursor >= OPTIONS_ITEMS)
1788 M_Menu_Options_AdjustSliders (-1);
1792 M_Menu_Options_AdjustSliders (1);
1797 #define OPTIONS_EFFECTS_ITEMS 36
1799 static int options_effects_cursor;
1801 void M_Menu_Options_Effects_f (void)
1803 key_dest = key_menu;
1804 m_state = m_options_effects;
1805 m_entersound = true;
1809 extern cvar_t cl_stainmaps;
1810 extern cvar_t cl_stainmaps_clearonload;
1811 extern cvar_t r_explosionclip;
1812 extern cvar_t r_coronas;
1813 extern cvar_t gl_flashblend;
1814 extern cvar_t cl_beams_polygons;
1815 extern cvar_t cl_beams_quakepositionhack;
1816 extern cvar_t cl_beams_instantaimhack;
1817 extern cvar_t cl_beams_lightatend;
1818 extern cvar_t r_lightningbeam_thickness;
1819 extern cvar_t r_lightningbeam_scroll;
1820 extern cvar_t r_lightningbeam_repeatdistance;
1821 extern cvar_t r_lightningbeam_color_red;
1822 extern cvar_t r_lightningbeam_color_green;
1823 extern cvar_t r_lightningbeam_color_blue;
1824 extern cvar_t r_lightningbeam_qmbtexture;
1826 static void M_Menu_Options_Effects_AdjustSliders (int dir)
1829 S_LocalSound ("sound/misc/menu3.wav");
1832 if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_coronas, bound(0, r_coronas.value + dir * 0.125, 4));
1833 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&gl_flashblend, !gl_flashblend.integer);
1834 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles, !cl_particles.integer);
1835 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_quake, !cl_particles_quake.integer);
1836 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_quality, bound(1, cl_particles_quality.value + dir * 0.5, 4));
1837 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_explosions_shell, !cl_particles_explosions_shell.integer);
1838 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_explosionclip, !r_explosionclip.integer);
1839 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_stainmaps, !cl_stainmaps.integer);
1840 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_stainmaps_clearonload, !cl_stainmaps_clearonload.integer);
1841 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_decals, !cl_decals.integer);
1842 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_bulletimpacts, !cl_particles_bulletimpacts.integer);
1843 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_smoke, !cl_particles_smoke.integer);
1844 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_sparks, !cl_particles_sparks.integer);
1845 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_bubbles, !cl_particles_bubbles.integer);
1846 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood, !cl_particles_blood.integer);
1847 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood_alpha, bound(0.2, cl_particles_blood_alpha.value + dir * 0.1, 1));
1848 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood_bloodhack, !cl_particles_blood_bloodhack.integer);
1849 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_polygons, !cl_beams_polygons.integer);
1850 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_instantaimhack, !cl_beams_instantaimhack.integer);
1851 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_quakepositionhack, !cl_beams_quakepositionhack.integer);
1852 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_lightatend, !cl_beams_lightatend.integer);
1853 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_thickness, bound(1, r_lightningbeam_thickness.integer + dir, 10));
1854 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_scroll, bound(0, r_lightningbeam_scroll.integer + dir, 10));
1855 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_repeatdistance, bound(64, r_lightningbeam_repeatdistance.integer + dir * 64, 1024));
1856 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_red, bound(0, r_lightningbeam_color_red.value + dir * 0.1, 1));
1857 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_green, bound(0, r_lightningbeam_color_green.value + dir * 0.1, 1));
1858 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_blue, bound(0, r_lightningbeam_color_blue.value + dir * 0.1, 1));
1859 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_qmbtexture, !r_lightningbeam_qmbtexture.integer);
1860 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lerpmodels, !r_lerpmodels.integer);
1861 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lerpsprites, !r_lerpsprites.integer);
1862 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&gl_polyblend, bound(0, gl_polyblend.value + dir * 0.1, 1));
1863 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_skyscroll1, bound(-8, r_skyscroll1.value + dir * 0.1, 8));
1864 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_skyscroll2, bound(-8, r_skyscroll2.value + dir * 0.1, 8));
1865 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_waterwarp, bound(0, r_waterwarp.value + dir * 0.1, 1));
1866 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_wateralpha, bound(0, r_wateralpha.value + dir * 0.1, 1));
1867 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_waterscroll, bound(0, r_waterscroll.value + dir * 0.5, 10));
1870 static void M_Options_Effects_Draw (void)
1875 M_Background(320, bound(200, 32 + OPTIONS_EFFECTS_ITEMS * 8, vid_conheight.integer));
1877 M_DrawPic(16, 4, "gfx/qplaque");
1878 p = Draw_CachePic("gfx/p_option", true);
1879 M_DrawPic((320-p->width)/2, 4, "gfx/p_option");
1881 optcursor = options_effects_cursor;
1883 visible = (int)((menu_height - 32) / 8);
1884 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_EFFECTS_ITEMS - visible)) * 8;
1886 M_Options_PrintSlider( " Corona Intensity", true, r_coronas.value, 0, 4);
1887 M_Options_PrintCheckbox(" Use Only Coronas", true, gl_flashblend.integer);
1888 M_Options_PrintCheckbox(" Particles", true, cl_particles.integer);
1889 M_Options_PrintCheckbox(" Quake-style Particles", true, cl_particles_quake.integer);
1890 M_Options_PrintSlider( " Particles Quality", true, cl_particles_quality.value, 1, 4);
1891 M_Options_PrintCheckbox(" Explosion Shell", true, cl_particles_explosions_shell.integer);
1892 M_Options_PrintCheckbox(" Explosion Shell Clip", true, r_explosionclip.integer);
1893 M_Options_PrintCheckbox(" Stainmaps", true, cl_stainmaps.integer);
1894 M_Options_PrintCheckbox("Onload Clear Stainmaps", true, cl_stainmaps_clearonload.integer);
1895 M_Options_PrintCheckbox(" Decals", true, cl_decals.integer);
1896 M_Options_PrintCheckbox(" Bullet Impacts", true, cl_particles_bulletimpacts.integer);
1897 M_Options_PrintCheckbox(" Smoke", true, cl_particles_smoke.integer);
1898 M_Options_PrintCheckbox(" Sparks", true, cl_particles_sparks.integer);
1899 M_Options_PrintCheckbox(" Bubbles", true, cl_particles_bubbles.integer);
1900 M_Options_PrintCheckbox(" Blood", true, cl_particles_blood.integer);
1901 M_Options_PrintSlider( " Blood Opacity", true, cl_particles_blood_alpha.value, 0.2, 1);
1902 M_Options_PrintCheckbox("Force New Blood Effect", true, cl_particles_blood_bloodhack.integer);
1903 M_Options_PrintCheckbox(" Polygon Lightning", true, cl_beams_polygons.integer);
1904 M_Options_PrintCheckbox("Smooth Sweep Lightning", true, cl_beams_instantaimhack.integer);
1905 M_Options_PrintCheckbox(" Waist-level Lightning", true, cl_beams_quakepositionhack.integer);
1906 M_Options_PrintCheckbox(" Lightning End Light", true, cl_beams_lightatend.integer);
1907 M_Options_PrintSlider( " Lightning Thickness", cl_beams_polygons.integer, r_lightningbeam_thickness.integer, 1, 10);
1908 M_Options_PrintSlider( " Lightning Scroll", cl_beams_polygons.integer, r_lightningbeam_scroll.integer, 0, 10);
1909 M_Options_PrintSlider( " Lightning Repeat Dist", cl_beams_polygons.integer, r_lightningbeam_repeatdistance.integer, 64, 1024);
1910 M_Options_PrintSlider( " Lightning Color Red", cl_beams_polygons.integer, r_lightningbeam_color_red.value, 0, 1);
1911 M_Options_PrintSlider( " Lightning Color Green", cl_beams_polygons.integer, r_lightningbeam_color_green.value, 0, 1);
1912 M_Options_PrintSlider( " Lightning Color Blue", cl_beams_polygons.integer, r_lightningbeam_color_blue.value, 0, 1);
1913 M_Options_PrintCheckbox(" Lightning QMB Texture", cl_beams_polygons.integer, r_lightningbeam_qmbtexture.integer);
1914 M_Options_PrintCheckbox(" Model Interpolation", true, r_lerpmodels.integer);
1915 M_Options_PrintCheckbox(" Sprite Interpolation", true, r_lerpsprites.integer);
1916 M_Options_PrintSlider( " View Blend", true, gl_polyblend.value, 0, 1);
1917 M_Options_PrintSlider( "Upper Sky Scroll Speed", true, r_skyscroll1.value, -8, 8);
1918 M_Options_PrintSlider( "Lower Sky Scroll Speed", true, r_skyscroll2.value, -8, 8);
1919 M_Options_PrintSlider( " Underwater View Warp", true, r_waterwarp.value, 0, 1);
1920 M_Options_PrintSlider( " Water Alpha (opacity)", true, r_wateralpha.value, 0, 1);
1921 M_Options_PrintSlider( " Water Movement", true, r_waterscroll.value, 0, 10);
1925 static void M_Options_Effects_Key (int k, char ascii)
1930 M_Menu_Options_f ();
1934 M_Menu_Options_Effects_AdjustSliders (1);
1938 S_LocalSound ("sound/misc/menu1.wav");
1939 options_effects_cursor--;
1940 if (options_effects_cursor < 0)
1941 options_effects_cursor = OPTIONS_EFFECTS_ITEMS-1;
1945 S_LocalSound ("sound/misc/menu1.wav");
1946 options_effects_cursor++;
1947 if (options_effects_cursor >= OPTIONS_EFFECTS_ITEMS)
1948 options_effects_cursor = 0;
1952 M_Menu_Options_Effects_AdjustSliders (-1);
1956 M_Menu_Options_Effects_AdjustSliders (1);
1962 #define OPTIONS_GRAPHICS_ITEMS 14
1964 static int options_graphics_cursor;
1966 void M_Menu_Options_Graphics_f (void)
1968 key_dest = key_menu;
1969 m_state = m_options_graphics;
1970 m_entersound = true;
1973 extern cvar_t r_shadow_gloss;
1974 extern cvar_t r_shadow_realtime_dlight;
1975 extern cvar_t r_shadow_realtime_dlight_shadows;
1976 extern cvar_t r_shadow_realtime_world;
1977 extern cvar_t r_shadow_realtime_world_dlightshadows;
1978 extern cvar_t r_shadow_realtime_world_lightmaps;
1979 extern cvar_t r_shadow_realtime_world_shadows;
1980 extern cvar_t r_bloom;
1981 extern cvar_t r_bloom_intensity;
1982 extern cvar_t r_bloom_power;
1983 extern cvar_t r_bloom_blur;
1984 extern cvar_t r_bloom_resolution;
1985 extern cvar_t gl_picmip;
1987 static void M_Menu_Options_Graphics_AdjustSliders (int dir)
1990 S_LocalSound ("sound/misc/menu3.wav");
1994 if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_gloss, bound(0, r_shadow_gloss.integer + dir, 2));
1995 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_dlight, !r_shadow_realtime_dlight.integer);
1996 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_dlight_shadows, !r_shadow_realtime_dlight_shadows.integer);
1997 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world, !r_shadow_realtime_world.integer);
1998 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_dlightshadows, !r_shadow_realtime_world_dlightshadows.integer);
1999 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));
2000 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_shadows, !r_shadow_realtime_world_shadows.integer);
2001 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom, !r_bloom.integer);
2002 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_intensity, bound(1, r_bloom_intensity.value + dir * 1, 16));
2003 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_power, bound(1, r_bloom_power.value + dir * 1, 16));
2004 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_blur, bound(1, r_bloom_blur.value + dir * 1, 16));
2005 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_resolution, bound(64, r_bloom_resolution.value + dir * 64, 2048));
2006 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&gl_picmip, bound(0, gl_picmip.value - dir, 3));
2007 else if (options_graphics_cursor == optnum++) Cbuf_AddText ("r_restart\n");
2011 static void M_Options_Graphics_Draw (void)
2016 M_Background(320, bound(200, 32 + OPTIONS_GRAPHICS_ITEMS * 8, vid_conheight.integer));
2018 M_DrawPic(16, 4, "gfx/qplaque");
2019 p = Draw_CachePic("gfx/p_option", true);
2020 M_DrawPic((320-p->width)/2, 4, "gfx/p_option");
2022 optcursor = options_graphics_cursor;
2024 visible = (int)((menu_height - 32) / 8);
2025 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_GRAPHICS_ITEMS - visible)) * 8;
2027 M_Options_PrintSlider( " Gloss Mode", true, r_shadow_gloss.integer, 0, 2);
2028 M_Options_PrintCheckbox(" RT DLights", true, r_shadow_realtime_dlight.integer);
2029 M_Options_PrintCheckbox(" RT DLight Shadows", true, r_shadow_realtime_dlight_shadows.integer);
2030 M_Options_PrintCheckbox(" RT World", true, r_shadow_realtime_world.integer);
2031 M_Options_PrintCheckbox("RT World DLight Shadows", true, r_shadow_realtime_world_dlightshadows.integer);
2032 M_Options_PrintSlider( " RT World Lightmaps", true, r_shadow_realtime_world_lightmaps.value, 0, 1);
2033 M_Options_PrintCheckbox(" RT World Shadow", true, r_shadow_realtime_world_shadows.integer);
2034 M_Options_PrintCheckbox(" Bloom Effect", true, r_bloom.integer);
2035 M_Options_PrintSlider( " Bloom Intensity", true, r_bloom_intensity.value, 1, 16);
2036 M_Options_PrintSlider( " Bloom Power", true, r_bloom_power.value, 1, 16);
2037 M_Options_PrintSlider( " Bloom Blur", true, r_bloom_blur.value, 1, 16);
2038 M_Options_PrintSlider( " Bloom Resolution", true, r_bloom_resolution.value, 64, 2048);
2039 M_Options_PrintSlider( " Texture Quality", true, gl_picmip.value, 3, 0);
2040 M_Options_PrintCommand( " Restart Renderer", true);
2044 static void M_Options_Graphics_Key (int k, char ascii)
2049 M_Menu_Options_f ();
2053 M_Menu_Options_Graphics_AdjustSliders (1);
2057 S_LocalSound ("sound/misc/menu1.wav");
2058 options_graphics_cursor--;
2059 if (options_graphics_cursor < 0)
2060 options_graphics_cursor = OPTIONS_GRAPHICS_ITEMS-1;
2064 S_LocalSound ("sound/misc/menu1.wav");
2065 options_graphics_cursor++;
2066 if (options_graphics_cursor >= OPTIONS_GRAPHICS_ITEMS)
2067 options_graphics_cursor = 0;
2071 M_Menu_Options_Graphics_AdjustSliders (-1);
2075 M_Menu_Options_Graphics_AdjustSliders (1);
2081 #define OPTIONS_COLORCONTROL_ITEMS 18
2083 static int options_colorcontrol_cursor;
2085 // intensity value to match up to 50% dither to 'correct' quake
2086 static cvar_t menu_options_colorcontrol_correctionvalue = {0, "menu_options_colorcontrol_correctionvalue", "0.25", "intensity value that matches up to white/black dither pattern, due to Quake's grey level being quite dark this is 0.25, other games may use other values"};
2088 void M_Menu_Options_ColorControl_f (void)
2090 key_dest = key_menu;
2091 m_state = m_options_colorcontrol;
2092 m_entersound = true;
2096 static void M_Menu_Options_ColorControl_AdjustSliders (int dir)
2100 S_LocalSound ("sound/misc/menu3.wav");
2103 if (options_colorcontrol_cursor == optnum++)
2104 Cvar_SetValueQuick (&v_hwgamma, !v_hwgamma.integer);
2105 else if (options_colorcontrol_cursor == optnum++)
2107 Cvar_SetValueQuick (&v_color_enable, 0);
2108 Cvar_SetValueQuick (&v_gamma, bound(1, v_gamma.value + dir * 0.125, 5));
2110 else if (options_colorcontrol_cursor == optnum++)
2112 Cvar_SetValueQuick (&v_color_enable, 0);
2113 Cvar_SetValueQuick (&v_contrast, bound(1, v_contrast.value + dir * 0.125, 5));
2115 else if (options_colorcontrol_cursor == optnum++)
2117 Cvar_SetValueQuick (&v_color_enable, 0);
2118 Cvar_SetValueQuick (&v_brightness, bound(0, v_brightness.value + dir * 0.05, 0.8));
2120 else if (options_colorcontrol_cursor == optnum++)
2122 Cvar_SetValueQuick (&v_color_enable, !v_color_enable.integer);
2124 else if (options_colorcontrol_cursor == optnum++)
2126 Cvar_SetValueQuick (&v_color_enable, 1);
2127 Cvar_SetValueQuick (&v_color_black_r, bound(0, v_color_black_r.value + dir * 0.0125, 0.8));
2129 else if (options_colorcontrol_cursor == optnum++)
2131 Cvar_SetValueQuick (&v_color_enable, 1);
2132 Cvar_SetValueQuick (&v_color_black_g, bound(0, v_color_black_g.value + dir * 0.0125, 0.8));
2134 else if (options_colorcontrol_cursor == optnum++)
2136 Cvar_SetValueQuick (&v_color_enable, 1);
2137 Cvar_SetValueQuick (&v_color_black_b, bound(0, v_color_black_b.value + dir * 0.0125, 0.8));
2139 else if (options_colorcontrol_cursor == optnum++)
2141 Cvar_SetValueQuick (&v_color_enable, 1);
2142 f = bound(0, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3 + dir * 0.0125, 0.8);
2143 Cvar_SetValueQuick (&v_color_black_r, f);
2144 Cvar_SetValueQuick (&v_color_black_g, f);
2145 Cvar_SetValueQuick (&v_color_black_b, f);
2147 else if (options_colorcontrol_cursor == optnum++)
2149 Cvar_SetValueQuick (&v_color_enable, 1);
2150 Cvar_SetValueQuick (&v_color_grey_r, bound(0, v_color_grey_r.value + dir * 0.0125, 0.95));
2152 else if (options_colorcontrol_cursor == optnum++)
2154 Cvar_SetValueQuick (&v_color_enable, 1);
2155 Cvar_SetValueQuick (&v_color_grey_g, bound(0, v_color_grey_g.value + dir * 0.0125, 0.95));
2157 else if (options_colorcontrol_cursor == optnum++)
2159 Cvar_SetValueQuick (&v_color_enable, 1);
2160 Cvar_SetValueQuick (&v_color_grey_b, bound(0, v_color_grey_b.value + dir * 0.0125, 0.95));
2162 else if (options_colorcontrol_cursor == optnum++)
2164 Cvar_SetValueQuick (&v_color_enable, 1);
2165 f = bound(0, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3 + dir * 0.0125, 0.95);
2166 Cvar_SetValueQuick (&v_color_grey_r, f);
2167 Cvar_SetValueQuick (&v_color_grey_g, f);
2168 Cvar_SetValueQuick (&v_color_grey_b, f);
2170 else if (options_colorcontrol_cursor == optnum++)
2172 Cvar_SetValueQuick (&v_color_enable, 1);
2173 Cvar_SetValueQuick (&v_color_white_r, bound(1, v_color_white_r.value + dir * 0.125, 5));
2175 else if (options_colorcontrol_cursor == optnum++)
2177 Cvar_SetValueQuick (&v_color_enable, 1);
2178 Cvar_SetValueQuick (&v_color_white_g, bound(1, v_color_white_g.value + dir * 0.125, 5));
2180 else if (options_colorcontrol_cursor == optnum++)
2182 Cvar_SetValueQuick (&v_color_enable, 1);
2183 Cvar_SetValueQuick (&v_color_white_b, bound(1, v_color_white_b.value + dir * 0.125, 5));
2185 else if (options_colorcontrol_cursor == optnum++)
2187 Cvar_SetValueQuick (&v_color_enable, 1);
2188 f = bound(1, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3 + dir * 0.125, 5);
2189 Cvar_SetValueQuick (&v_color_white_r, f);
2190 Cvar_SetValueQuick (&v_color_white_g, f);
2191 Cvar_SetValueQuick (&v_color_white_b, f);
2195 static void M_Options_ColorControl_Draw (void)
2198 float x, c, s, t, u, v;
2199 cachepic_t *p, *dither;
2201 dither = Draw_CachePic("gfx/colorcontrol/ditherpattern", true);
2203 M_Background(320, 256);
2205 M_DrawPic(16, 4, "gfx/qplaque");
2206 p = Draw_CachePic("gfx/p_option", true);
2207 M_DrawPic((320-p->width)/2, 4, "gfx/p_option");
2209 optcursor = options_colorcontrol_cursor;
2211 visible = (int)((menu_height - 32) / 8);
2212 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_COLORCONTROL_ITEMS - visible)) * 8;
2214 M_Options_PrintCommand( " Reset to defaults", true);
2215 M_Options_PrintCheckbox("Hardware Gamma Control", vid_hardwaregammasupported.integer, v_hwgamma.integer);
2216 M_Options_PrintSlider( " Gamma", !v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_gamma.value, 1, 5);
2217 M_Options_PrintSlider( " Contrast", !v_color_enable.integer, v_contrast.value, 1, 5);
2218 M_Options_PrintSlider( " Brightness", !v_color_enable.integer, v_brightness.value, 0, 0.8);
2219 M_Options_PrintCheckbox(" Color Level Controls", true, v_color_enable.integer);
2220 M_Options_PrintSlider( " Black: Red ", v_color_enable.integer, v_color_black_r.value, 0, 0.8);
2221 M_Options_PrintSlider( " Black: Green", v_color_enable.integer, v_color_black_g.value, 0, 0.8);
2222 M_Options_PrintSlider( " Black: Blue ", v_color_enable.integer, v_color_black_b.value, 0, 0.8);
2223 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);
2224 M_Options_PrintSlider( " Grey: Red ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_r.value, 0, 0.95);
2225 M_Options_PrintSlider( " Grey: Green", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_g.value, 0, 0.95);
2226 M_Options_PrintSlider( " Grey: Blue ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_b.value, 0, 0.95);
2227 M_Options_PrintSlider( " Grey: Grey ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3, 0, 0.95);
2228 M_Options_PrintSlider( " White: Red ", v_color_enable.integer, v_color_white_r.value, 1, 5);
2229 M_Options_PrintSlider( " White: Green", v_color_enable.integer, v_color_white_g.value, 1, 5);
2230 M_Options_PrintSlider( " White: Blue ", v_color_enable.integer, v_color_white_b.value, 1, 5);
2231 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);
2234 DrawQ_Pic(menu_x, menu_y + opty, NULL, 320, 4 + 64 + 8 + 64 + 4, 0, 0, 0, 1, 0);opty += 4;
2235 s = (float) 312 / 2 * vid.width / vid_conwidth.integer;
2236 t = (float) 4 / 2 * vid.height / vid_conheight.integer;
2237 DrawQ_SuperPic(menu_x + 4, menu_y + opty, dither, 312, 4, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);opty += 4;
2238 DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL , 312, 4, 0,0, 0,0,0,1, 1,0, 1,0,0,1, 0,1, 0,0,0,1, 1,1, 1,0,0,1, 0);opty += 4;
2239 DrawQ_SuperPic(menu_x + 4, menu_y + opty, dither, 312, 4, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);opty += 4;
2240 DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL , 312, 4, 0,0, 0,0,0,1, 1,0, 0,1,0,1, 0,1, 0,0,0,1, 1,1, 0,1,0,1, 0);opty += 4;
2241 DrawQ_SuperPic(menu_x + 4, menu_y + opty, dither, 312, 4, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);opty += 4;
2242 DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL , 312, 4, 0,0, 0,0,0,1, 1,0, 0,0,1,1, 0,1, 0,0,0,1, 1,1, 0,0,1,1, 0);opty += 4;
2243 DrawQ_SuperPic(menu_x + 4, menu_y + opty, dither, 312, 4, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);opty += 4;
2244 DrawQ_SuperPic(menu_x + 4, menu_y + opty, NULL , 312, 4, 0,0, 0,0,0,1, 1,0, 1,1,1,1, 0,1, 0,0,0,1, 1,1, 1,1,1,1, 0);opty += 4;
2246 c = menu_options_colorcontrol_correctionvalue.value; // intensity value that should be matched up to a 50% dither to 'correct' quake
2247 s = (float) 48 / 2 * vid.width / vid_conwidth.integer;
2248 t = (float) 48 / 2 * vid.height / vid_conheight.integer;
2253 DrawQ_Pic(menu_x + x, menu_y + opty, NULL, 64, 48, c, 0, 0, 1, 0);
2254 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, dither, 16, 16, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);
2255 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, dither, 16, 16, 0,0, 1,0,0,1, u,0, 1,0,0,1, 0,v, 1,0,0,1, u,v, 1,0,0,1, 0);
2257 DrawQ_Pic(menu_x + x, menu_y + opty, NULL, 64, 48, 0, c, 0, 1, 0);
2258 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, dither, 16, 16, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);
2259 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, dither, 16, 16, 0,0, 0,1,0,1, u,0, 0,1,0,1, 0,v, 0,1,0,1, u,v, 0,1,0,1, 0);
2261 DrawQ_Pic(menu_x + x, menu_y + opty, NULL, 64, 48, 0, 0, c, 1, 0);
2262 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, dither, 16, 16, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);
2263 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, dither, 16, 16, 0,0, 0,0,1,1, u,0, 0,0,1,1, 0,v, 0,0,1,1, u,v, 0,0,1,1, 0);
2265 DrawQ_Pic(menu_x + x, menu_y + opty, NULL, 64, 48, c, c, c, 1, 0);
2266 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, dither, 16, 16, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);
2267 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, dither, 16, 16, 0,0, 1,1,1,1, u,0, 1,1,1,1, 0,v, 1,1,1,1, u,v, 1,1,1,1, 0);
2271 static void M_Options_ColorControl_Key (int k, char ascii)
2276 M_Menu_Options_f ();
2280 m_entersound = true;
2281 switch (options_colorcontrol_cursor)
2284 Cvar_SetValueQuick(&v_hwgamma, 1);
2285 Cvar_SetValueQuick(&v_gamma, 1);
2286 Cvar_SetValueQuick(&v_contrast, 1);
2287 Cvar_SetValueQuick(&v_brightness, 0);
2288 Cvar_SetValueQuick(&v_color_enable, 0);
2289 Cvar_SetValueQuick(&v_color_black_r, 0);
2290 Cvar_SetValueQuick(&v_color_black_g, 0);
2291 Cvar_SetValueQuick(&v_color_black_b, 0);
2292 Cvar_SetValueQuick(&v_color_grey_r, 0);
2293 Cvar_SetValueQuick(&v_color_grey_g, 0);
2294 Cvar_SetValueQuick(&v_color_grey_b, 0);
2295 Cvar_SetValueQuick(&v_color_white_r, 1);
2296 Cvar_SetValueQuick(&v_color_white_g, 1);
2297 Cvar_SetValueQuick(&v_color_white_b, 1);
2300 M_Menu_Options_ColorControl_AdjustSliders (1);
2306 S_LocalSound ("sound/misc/menu1.wav");
2307 options_colorcontrol_cursor--;
2308 if (options_colorcontrol_cursor < 0)
2309 options_colorcontrol_cursor = OPTIONS_COLORCONTROL_ITEMS-1;
2313 S_LocalSound ("sound/misc/menu1.wav");
2314 options_colorcontrol_cursor++;
2315 if (options_colorcontrol_cursor >= OPTIONS_COLORCONTROL_ITEMS)
2316 options_colorcontrol_cursor = 0;
2320 M_Menu_Options_ColorControl_AdjustSliders (-1);
2324 M_Menu_Options_ColorControl_AdjustSliders (1);
2330 //=============================================================================
2333 static char *quakebindnames[][2] =
2335 {"+attack", "attack"},
2336 {"impulse 10", "next weapon"},
2337 {"impulse 12", "previous weapon"},
2338 {"+jump", "jump / swim up"},
2339 {"+forward", "walk forward"},
2340 {"+back", "backpedal"},
2341 {"+left", "turn left"},
2342 {"+right", "turn right"},
2344 {"+moveleft", "step left"},
2345 {"+moveright", "step right"},
2346 {"+strafe", "sidestep"},
2347 {"+lookup", "look up"},
2348 {"+lookdown", "look down"},
2349 {"centerview", "center view"},
2350 {"+mlook", "mouse look"},
2351 {"+klook", "keyboard look"},
2352 {"+moveup", "swim up"},
2353 {"+movedown", "swim down"}
2356 static char *transfusionbindnames[][2] =
2358 {"", "Movement"}, // Movement commands
2359 {"+forward", "walk forward"},
2360 {"+back", "backpedal"},
2361 {"+left", "turn left"},
2362 {"+right", "turn right"},
2363 {"+moveleft", "step left"},
2364 {"+moveright", "step right"},
2365 {"+jump", "jump / swim up"},
2366 {"+movedown", "swim down"},
2367 {"", "Combat"}, // Combat commands
2368 {"impulse 1", "Pitch Fork"},
2369 {"impulse 2", "Flare Gun"},
2370 {"impulse 3", "Shotgun"},
2371 {"impulse 4", "Machine Gun"},
2372 {"impulse 5", "Incinerator"},
2373 {"impulse 6", "Bombs (TNT)"},
2374 {"impulse 35", "Proximity Bomb"},
2375 {"impulse 36", "Remote Detonator"},
2376 {"impulse 7", "Aerosol Can"},
2377 {"impulse 8", "Tesla Cannon"},
2378 {"impulse 9", "Life Leech"},
2379 {"impulse 10", "Voodoo Doll"},
2380 {"impulse 21", "next weapon"},
2381 {"impulse 22", "previous weapon"},
2382 {"+attack", "attack"},
2383 {"+button3", "altfire"},
2384 {"", "Inventory"}, // Inventory commands
2385 {"impulse 40", "Dr.'s Bag"},
2386 {"impulse 41", "Crystal Ball"},
2387 {"impulse 42", "Beast Vision"},
2388 {"impulse 43", "Jump Boots"},
2389 {"impulse 23", "next item"},
2390 {"impulse 24", "previous item"},
2391 {"impulse 25", "use item"},
2392 {"", "Misc"}, // Misc commands
2393 {"+button4", "use"},
2394 {"impulse 50", "add bot (red)"},
2395 {"impulse 51", "add bot (blue)"},
2396 {"impulse 52", "kick a bot"},
2397 {"impulse 26", "next armor type"},
2398 {"impulse 27", "identify player"},
2399 {"impulse 55", "voting menu"},
2400 {"impulse 56", "observer mode"},
2401 {"", "Taunts"}, // Taunts
2402 {"impulse 70", "taunt 0"},
2403 {"impulse 71", "taunt 1"},
2404 {"impulse 72", "taunt 2"},
2405 {"impulse 73", "taunt 3"},
2406 {"impulse 74", "taunt 4"},
2407 {"impulse 75", "taunt 5"},
2408 {"impulse 76", "taunt 6"},
2409 {"impulse 77", "taunt 7"},
2410 {"impulse 78", "taunt 8"},
2411 {"impulse 79", "taunt 9"}
2414 static char *goodvsbad2bindnames[][2] =
2416 {"impulse 69", "Power 1"},
2417 {"impulse 70", "Power 2"},
2418 {"impulse 71", "Power 3"},
2419 {"+jump", "jump / swim up"},
2420 {"+forward", "walk forward"},
2421 {"+back", "backpedal"},
2422 {"+left", "turn left"},
2423 {"+right", "turn right"},
2425 {"+moveleft", "step left"},
2426 {"+moveright", "step right"},
2427 {"+strafe", "sidestep"},
2428 {"+lookup", "look up"},
2429 {"+lookdown", "look down"},
2430 {"centerview", "center view"},
2431 {"+mlook", "mouse look"},
2432 {"kill", "kill yourself"},
2433 {"+moveup", "swim up"},
2434 {"+movedown", "swim down"}
2437 static int numcommands;
2438 static char *(*bindnames)[2];
2441 typedef struct binditem_s
2443 char *command, *description;
2444 struct binditem_s *next;
2448 typedef struct bindcategory_s
2452 struct bindcategory_s *next;
2456 static bindcategory_t *bindcategories = NULL;
2458 static void M_ClearBinds (void)
2460 for (c = bindcategories;c;c = cnext)
2463 for (b = c->binds;b;b = bnext)
2470 bindcategories = NULL;
2473 static void M_AddBindToCategory(bindcategory_t *c, char *command, char *description)
2475 for (b = &c->binds;*b;*b = &(*b)->next);
2476 *b = Z_Alloc(sizeof(binditem_t) + strlen(command) + 1 + strlen(description) + 1);
2477 *b->command = (char *)((*b) + 1);
2478 *b->description = *b->command + strlen(command) + 1;
2479 strcpy(*b->command, command);
2480 strcpy(*b->description, description);
2483 static void M_AddBind (char *category, char *command, char *description)
2485 for (c = &bindcategories;*c;c = &(*c)->next)
2487 if (!strcmp(category, (*c)->name))
2489 M_AddBindToCategory(*c, command, description);
2493 *c = Z_Alloc(sizeof(bindcategory_t));
2494 M_AddBindToCategory(*c, command, description);
2497 static void M_DefaultBinds (void)
2500 M_AddBind("movement", "+jump", "jump / swim up");
2501 M_AddBind("movement", "+forward", "walk forward");
2502 M_AddBind("movement", "+back", "backpedal");
2503 M_AddBind("movement", "+left", "turn left");
2504 M_AddBind("movement", "+right", "turn right");
2505 M_AddBind("movement", "+speed", "run");
2506 M_AddBind("movement", "+moveleft", "step left");
2507 M_AddBind("movement", "+moveright", "step right");
2508 M_AddBind("movement", "+strafe", "sidestep");
2509 M_AddBind("movement", "+lookup", "look up");
2510 M_AddBind("movement", "+lookdown", "look down");
2511 M_AddBind("movement", "centerview", "center view");
2512 M_AddBind("movement", "+mlook", "mouse look");
2513 M_AddBind("movement", "+klook", "keyboard look");
2514 M_AddBind("movement", "+moveup", "swim up");
2515 M_AddBind("movement", "+movedown", "swim down");
2516 M_AddBind("weapons", "+attack", "attack");
2517 M_AddBind("weapons", "impulse 10", "next weapon");
2518 M_AddBind("weapons", "impulse 12", "previous weapon");
2519 M_AddBind("weapons", "impulse 1", "select weapon 1 (axe)");
2520 M_AddBind("weapons", "impulse 2", "select weapon 2 (shotgun)");
2521 M_AddBind("weapons", "impulse 3", "select weapon 3 (super )");
2522 M_AddBind("weapons", "impulse 4", "select weapon 4 (nailgun)");
2523 M_AddBind("weapons", "impulse 5", "select weapon 5 (super nailgun)");
2524 M_AddBind("weapons", "impulse 6", "select weapon 6 (grenade launcher)");
2525 M_AddBind("weapons", "impulse 7", "select weapon 7 (rocket launcher)");
2526 M_AddBind("weapons", "impulse 8", "select weapon 8 (lightning gun)");
2531 static int keys_cursor;
2532 static int bind_grab;
2534 void M_Menu_Keys_f (void)
2536 key_dest = key_menu;
2538 m_entersound = true;
2543 void M_FindKeysForCommand (const char *command, int *keys)
2549 for (j = 0;j < NUMKEYS;j++)
2554 for (j = 0; j < (int)sizeof (keybindings[0]) / (int)sizeof (keybindings[0][0]); j++)
2556 b = keybindings[0][j];
2559 if (!strcmp (b, command) )
2562 if (count == NUMKEYS)
2568 static void M_UnbindCommand (char *command)
2573 for (j = 0; j < (int)sizeof (keybindings[0]) / (int)sizeof (keybindings[0][0]); j++)
2575 b = keybindings[0][j];
2578 if (!strcmp (b, command))
2579 Key_SetBinding (j, 0, "");
2584 static void M_Keys_Draw (void)
2590 char keystring[MAX_INPUTLINE];
2592 M_Background(320, 48 + 8 * numcommands);
2594 p = Draw_CachePic ("gfx/ttl_cstm", true);
2595 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_cstm");
2598 M_Print(12, 32, "Press a key or button for this action");
2600 M_Print(18, 32, "Enter to change, backspace to clear");
2602 // search for known bindings
2603 for (i=0 ; i<numcommands ; i++)
2607 // If there's no command, it's just a section
2608 if (bindnames[i][0][0] == '\0')
2610 M_PrintRed (4, y, "\x0D"); // #13 is the little arrow pointing to the right
2611 M_PrintRed (16, y, bindnames[i][1]);
2615 M_Print(16, y, bindnames[i][1]);
2617 M_FindKeysForCommand (bindnames[i][0], keys);
2619 // LordHavoc: redesigned to print more than 2 keys, inspired by Tomaz's MiniRacer
2621 strcpy(keystring, "???");
2625 for (j = 0;j < NUMKEYS;j++)
2630 strcat(keystring, " or ");
2631 strcat(keystring, Key_KeynumToString (keys[j]));
2635 M_Print(150, y, keystring);
2639 M_DrawCharacter (140, 48 + keys_cursor*8, '=');
2641 M_DrawCharacter (140, 48 + keys_cursor*8, 12+((int)(realtime*4)&1));
2645 static void M_Keys_Key (int k, char ascii)
2652 S_LocalSound ("sound/misc/menu1.wav");
2657 else //if (k != '`')
2659 sprintf (cmd, "bind \"%s\" \"%s\"\n", Key_KeynumToString (k), bindnames[keys_cursor][0]);
2660 Cbuf_InsertText (cmd);
2670 M_Menu_Options_f ();
2675 S_LocalSound ("sound/misc/menu1.wav");
2679 if (keys_cursor < 0)
2680 keys_cursor = numcommands-1;
2682 while (bindnames[keys_cursor][0][0] == '\0'); // skip sections
2687 S_LocalSound ("sound/misc/menu1.wav");
2691 if (keys_cursor >= numcommands)
2694 while (bindnames[keys_cursor][0][0] == '\0'); // skip sections
2697 case K_ENTER: // go into bind mode
2698 M_FindKeysForCommand (bindnames[keys_cursor][0], keys);
2699 S_LocalSound ("sound/misc/menu2.wav");
2700 if (keys[NUMKEYS - 1] != -1)
2701 M_UnbindCommand (bindnames[keys_cursor][0]);
2705 case K_BACKSPACE: // delete bindings
2706 case K_DEL: // delete bindings
2707 S_LocalSound ("sound/misc/menu2.wav");
2708 M_UnbindCommand (bindnames[keys_cursor][0]);
2713 void M_Menu_Reset_f (void)
2715 key_dest = key_menu;
2717 m_entersound = true;
2721 static void M_Reset_Key (int key, char ascii)
2727 Cbuf_AddText ("exec default.cfg\n");
2728 // no break here since we also exit the menu
2733 m_state = m_options;
2734 m_entersound = true;
2742 static void M_Reset_Draw (void)
2744 int lines = 2, linelength = 20;
2745 M_Background(linelength * 8 + 16, lines * 8 + 16);
2746 M_DrawTextBox(0, 0, linelength, lines);
2747 M_Print(8 + 4 * (linelength - 19), 8, "Really wanna reset?");
2748 M_Print(8 + 4 * (linelength - 11), 16, "Press y / n");
2751 //=============================================================================
2754 // note: if modes are added to the beginning of this list, update VID_DEFAULT
2755 typedef struct video_resolution_s
2759 int conwidth, conheight;
2760 double pixelheight; // pixel aspect
2763 video_resolution_t video_resolutions[] =
2765 {"Standard 4x3" , 320, 240, 320, 240, 1 },
2766 {"Standard 4x3" , 400, 300, 400, 300, 1 },
2767 {"Standard 4x3" , 512, 384, 512, 384, 1 },
2768 {"Standard 4x3" , 640, 480, 640, 480, 1 },
2769 {"Standard 4x3" , 800, 600, 640, 480, 1 },
2770 {"Standard 4x3" , 1024, 768, 640, 480, 1 },
2771 {"Standard 4x3" , 1152, 864, 640, 480, 1 },
2772 {"Standard 4x3" , 1280, 960, 640, 480, 1 },
2773 {"Standard 4x3" , 1400,1050, 640, 480, 1 },
2774 {"Standard 4x3" , 1600,1200, 640, 480, 1 },
2775 {"Standard 4x3" , 1792,1344, 640, 480, 1 },
2776 {"Standard 4x3" , 1856,1392, 640, 480, 1 },
2777 {"Standard 4x3" , 1920,1440, 640, 480, 1 },
2778 {"Standard 4x3" , 2048,1536, 640, 480, 1 },
2779 {"Short Pixel (CRT) 5x4" , 320, 256, 320, 256, 0.9375},
2780 {"Short Pixel (CRT) 5x4" , 640, 512, 640, 512, 0.9375},
2781 {"Short Pixel (CRT) 5x4" , 1280,1024, 640, 512, 0.9375},
2782 {"Tall Pixel (CRT) 8x5" , 320, 200, 320, 200, 1.2 },
2783 {"Tall Pixel (CRT) 8x5" , 640, 400, 640, 400, 1.2 },
2784 {"Tall Pixel (CRT) 8x5" , 840, 525, 640, 400, 1.2 },
2785 {"Tall Pixel (CRT) 8x5" , 960, 600, 640, 400, 1.2 },
2786 {"Tall Pixel (CRT) 8x5" , 1680,1050, 640, 400, 1.2 },
2787 {"Tall Pixel (CRT) 8x5" , 1920,1200, 640, 400, 1.2 },
2788 {"Square Pixel (LCD) 5x4" , 320, 256, 320, 256, 1 },
2789 {"Square Pixel (LCD) 5x4" , 640, 512, 640, 512, 1 },
2790 {"Square Pixel (LCD) 5x4" , 1280,1024, 640, 512, 1 },
2791 {"WideScreen 5x3" , 640, 384, 640, 384, 1 },
2792 {"WideScreen 5x3" , 1280, 768, 640, 384, 1 },
2793 {"WideScreen 8x5" , 320, 200, 320, 200, 1 },
2794 {"WideScreen 8x5" , 640, 400, 640, 400, 1 },
2795 {"WideScreen 8x5" , 720, 450, 720, 450, 1 },
2796 {"WideScreen 8x5" , 840, 525, 640, 400, 1 },
2797 {"WideScreen 8x5" , 960, 600, 640, 400, 1 },
2798 {"WideScreen 8x5" , 1280, 800, 640, 400, 1 },
2799 {"WideScreen 8x5" , 1440, 900, 720, 450, 1 },
2800 {"WideScreen 8x5" , 1680,1050, 640, 400, 1 },
2801 {"WideScreen 8x5" , 1920,1200, 640, 400, 1 },
2802 {"WideScreen 8x5" , 2560,1600, 640, 400, 1 },
2803 {"WideScreen 8x5" , 3840,2400, 640, 400, 1 },
2804 {"WideScreen 14x9" , 840, 540, 640, 400, 1 },
2805 {"WideScreen 14x9" , 1680,1080, 640, 400, 1 },
2806 {"WideScreen 16x9" , 640, 360, 640, 360, 1 },
2807 {"WideScreen 16x9" , 683, 384, 683, 384, 1 },
2808 {"WideScreen 16x9" , 960, 540, 640, 360, 1 },
2809 {"WideScreen 16x9" , 1280, 720, 640, 360, 1 },
2810 {"WideScreen 16x9" , 1366, 768, 683, 384, 1 },
2811 {"WideScreen 16x9" , 1920,1080, 640, 360, 1 },
2812 {"WideScreen 16x9" , 2560,1440, 640, 360, 1 },
2813 {"WideScreen 16x9" , 3840,2160, 640, 360, 1 },
2814 {"NTSC 3x2" , 360, 240, 360, 240, 1.125 },
2815 {"NTSC 3x2" , 720, 480, 720, 480, 1.125 },
2816 {"PAL 14x11" , 360, 283, 360, 283, 0.9545},
2817 {"PAL 14x11" , 720, 566, 720, 566, 0.9545},
2818 {"NES 8x7" , 256, 224, 256, 224, 1.1667},
2819 {"SNES 8x7" , 512, 448, 512, 448, 1.1667},
2820 {NULL, 0, 0, 0, 0, 0}
2822 // this is the number of the default mode (640x480) in the list above
2823 #define VID_DEFAULT 3
2824 #define VID_RES_COUNT ((int)(sizeof(video_resolutions) / sizeof(video_resolutions[0])) - 1)
2826 #define VIDEO_ITEMS 7
2827 static int video_cursor = 0;
2828 static int video_cursor_table[] = {56, 68, 88, 100, 112, 132, 162};
2829 static int video_resolution;
2831 void M_Menu_Video_f (void)
2835 key_dest = key_menu;
2837 m_entersound = true;
2839 // Look for the closest match to the current resolution
2840 video_resolution = 0;
2841 for (i = 1;i < VID_RES_COUNT;i++)
2843 // if the new mode would be a worse match in width, skip it
2844 if (fabs(video_resolutions[i].width - vid.width) > fabs(video_resolutions[video_resolution].width - vid.width))
2846 // if it is equal in width, check height
2847 if (video_resolutions[i].width == vid.width && video_resolutions[video_resolution].width == vid.width)
2849 // if the new mode would be a worse match in height, skip it
2850 if (fabs(video_resolutions[i].height - vid.height) > fabs(video_resolutions[video_resolution].height - vid.height))
2852 // if it is equal in width and height, check pixel aspect
2853 if (video_resolutions[i].height == vid.height && video_resolutions[video_resolution].height == vid.height)
2855 // if the new mode would be a worse match in pixel aspect, skip it
2856 if (fabs(video_resolutions[i].pixelheight - vid_pixelheight.value) > fabs(video_resolutions[video_resolution].pixelheight - vid_pixelheight.value))
2858 // if it is equal in everything, skip it (prefer earlier modes)
2859 if (video_resolutions[i].pixelheight == vid_pixelheight.value && video_resolutions[video_resolution].pixelheight == vid_pixelheight.value)
2861 // better match for width, height, and pixel aspect
2862 video_resolution = i;
2864 else // better match for width and height
2865 video_resolution = i;
2867 else // better match for width
2868 video_resolution = i;
2873 static void M_Video_Draw (void)
2877 M_Background(320, 200);
2879 M_DrawPic(16, 4, "gfx/qplaque");
2880 p = Draw_CachePic("gfx/vidmodes", true);
2881 M_DrawPic((320-p->width)/2, 4, "gfx/vidmodes");
2883 // Current Resolution
2884 M_Print(16, video_cursor_table[0], " Current Resolution");
2885 if (vid_supportrefreshrate && vid.fullscreen)
2886 M_Print(220, video_cursor_table[0], va("%dx%d %dhz", vid.width, vid.height, vid.refreshrate));
2888 M_Print(220, video_cursor_table[0], va("%dx%d", vid.width, vid.height));
2890 // Proposed Resolution
2891 M_Print(16, video_cursor_table[1], " New Resolution");
2892 M_Print(220, video_cursor_table[1], va("%dx%d", video_resolutions[video_resolution].width, video_resolutions[video_resolution].height));
2893 M_Print(96, video_cursor_table[1] + 8, va("Type: %s", video_resolutions[video_resolution].type));
2896 M_Print(16, video_cursor_table[2], " Bits per pixel");
2897 M_Print(220, video_cursor_table[2], (vid_bitsperpixel.integer == 32) ? "32" : "16");
2900 M_ItemPrint(16, video_cursor_table[3], " Refresh Rate", vid_supportrefreshrate);
2901 M_DrawSlider(220, video_cursor_table[3], vid_refreshrate.integer, 60, 150);
2904 M_Print(16, video_cursor_table[4], " Fullscreen");
2905 M_DrawCheckbox(220, video_cursor_table[4], vid_fullscreen.integer);
2908 M_Print(220, video_cursor_table[5], "Apply");
2911 M_ItemPrint(16, video_cursor_table[6], " Vertical Sync", gl_videosyncavailable);
2912 M_DrawCheckbox(220, video_cursor_table[6], vid_vsync.integer);
2915 M_DrawCharacter(200, video_cursor_table[video_cursor], 12+((int)(realtime*4)&1));
2919 static void M_Menu_Video_AdjustSliders (int dir)
2921 S_LocalSound ("sound/misc/menu3.wav");
2923 switch (video_cursor)
2929 for(r = 0;r < VID_RES_COUNT;r++)
2931 video_resolution += dir;
2932 if (video_resolution >= VID_RES_COUNT)
2933 video_resolution = 0;
2934 if (video_resolution < 0)
2935 video_resolution = VID_RES_COUNT - 1;
2936 if (video_resolutions[video_resolution].width >= vid_minwidth.integer && video_resolutions[video_resolution].height >= vid_minheight.integer)
2944 Cvar_SetValueQuick (&vid_bitsperpixel, (vid_bitsperpixel.integer == 32) ? 16 : 32);
2948 Cvar_SetValueQuick (&vid_refreshrate, vid_refreshrate.integer + dir);
2951 Cvar_SetValueQuick (&vid_fullscreen, !vid_fullscreen.integer);
2955 Cvar_SetValueQuick (&vid_vsync, !vid_vsync.integer);
2961 static void M_Video_Key (int key, char ascii)
2966 // vid_shared.c has a copy of the current video config. We restore it
2967 Cvar_SetValueQuick(&vid_fullscreen, vid.fullscreen);
2968 Cvar_SetValueQuick(&vid_bitsperpixel, vid.bitsperpixel);
2969 if (vid_supportrefreshrate)
2970 Cvar_SetValueQuick(&vid_refreshrate, vid.refreshrate);
2972 S_LocalSound ("sound/misc/menu1.wav");
2973 M_Menu_Options_f ();
2977 m_entersound = true;
2978 switch (video_cursor)
2981 Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution].width);
2982 Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution].height);
2983 Cvar_SetValueQuick (&vid_conwidth, video_resolutions[video_resolution].conwidth);
2984 Cvar_SetValueQuick (&vid_conheight, video_resolutions[video_resolution].conheight);
2985 Cvar_SetValueQuick (&vid_pixelheight, video_resolutions[video_resolution].pixelheight);
2986 Cbuf_AddText ("vid_restart\n");
2987 M_Menu_Options_f ();
2990 M_Menu_Video_AdjustSliders (1);
2995 S_LocalSound ("sound/misc/menu1.wav");
2997 if (video_cursor < 0)
2998 video_cursor = VIDEO_ITEMS-1;
3002 S_LocalSound ("sound/misc/menu1.wav");
3004 if (video_cursor >= VIDEO_ITEMS)
3009 M_Menu_Video_AdjustSliders (-1);
3013 M_Menu_Video_AdjustSliders (1);
3018 //=============================================================================
3021 static int help_page;
3022 #define NUM_HELP_PAGES 6
3025 void M_Menu_Help_f (void)
3027 key_dest = key_menu;
3029 m_entersound = true;
3035 static void M_Help_Draw (void)
3037 M_Background(320, 200);
3038 M_DrawPic (0, 0, va("gfx/help%i", help_page));
3042 static void M_Help_Key (int key, char ascii)
3052 m_entersound = true;
3053 if (++help_page >= NUM_HELP_PAGES)
3059 m_entersound = true;
3060 if (--help_page < 0)
3061 help_page = NUM_HELP_PAGES-1;
3067 //=============================================================================
3070 void M_Menu_Credits_f (void)
3072 key_dest = key_menu;
3073 m_state = m_credits;
3074 m_entersound = true;
3079 static void M_Credits_Draw (void)
3081 M_Background(640, 480);
3082 M_DrawPic (0, 0, "gfx/creditsmiddle");
3083 M_Print (640/2 - 14/2*8, 236, "Coming soon...");
3084 M_DrawPic (0, 0, "gfx/creditstop");
3085 M_DrawPic (0, 433, "gfx/creditsbottom");
3089 static void M_Credits_Key (int key, char ascii)
3094 //=============================================================================
3097 static char *m_quit_message[9];
3098 static int m_quit_prevstate;
3099 static qboolean wasInMenus;
3102 static int M_QuitMessage(char *line1, char *line2, char *line3, char *line4, char *line5, char *line6, char *line7, char *line8)
3104 m_quit_message[0] = line1;
3105 m_quit_message[1] = line2;
3106 m_quit_message[2] = line3;
3107 m_quit_message[3] = line4;
3108 m_quit_message[4] = line5;
3109 m_quit_message[5] = line6;
3110 m_quit_message[6] = line7;
3111 m_quit_message[7] = line8;
3112 m_quit_message[8] = NULL;
3116 static int M_ChooseQuitMessage(int request)
3124 case GAME_DEFEATINDETAIL2:
3125 if (request-- == 0) return M_QuitMessage("Are you gonna quit","this game just like","everything else?",NULL,NULL,NULL,NULL,NULL);
3126 if (request-- == 0) return M_QuitMessage("Milord, methinks that","thou art a lowly","quitter. Is this true?",NULL,NULL,NULL,NULL,NULL);
3127 if (request-- == 0) return M_QuitMessage("Do I need to bust your","face open for trying","to quit?",NULL,NULL,NULL,NULL,NULL);
3128 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);
3129 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);
3130 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);
3131 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);
3132 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);
3134 case GAME_GOODVSBAD2:
3135 if (request-- == 0) return M_QuitMessage("Press Yes To Quit","...","Yes",NULL,NULL,NULL,NULL,NULL);
3136 if (request-- == 0) return M_QuitMessage("Do you really want to","Quit?","Play Good vs bad 3!",NULL,NULL,NULL,NULL,NULL);
3137 if (request-- == 0) return M_QuitMessage("All your quit are","belong to long duck","dong",NULL,NULL,NULL,NULL,NULL);
3138 if (request-- == 0) return M_QuitMessage("Press Y to quit","","But are you too legit?",NULL,NULL,NULL,NULL,NULL);
3139 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);
3140 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);
3141 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);
3142 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);
3143 if (request-- == 0) return M_QuitMessage("Press Y like you","were waanderers","from Ys'",NULL,NULL,NULL,NULL,NULL);
3144 if (request-- == 0) return M_QuitMessage("This game was made in","Nippon like the SS","announcer's saying ipon",NULL,NULL,NULL,NULL,NULL);
3145 if (request-- == 0) return M_QuitMessage("you","want to quit?",NULL,NULL,NULL,NULL,NULL,NULL);
3146 if (request-- == 0) return M_QuitMessage("Please stop playing","this stupid game",NULL,NULL,NULL,NULL,NULL,NULL);
3148 case GAME_BATTLEMECH:
3149 if (request-- == 0) return M_QuitMessage("? WHY ?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3150 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);
3151 if (request-- == 0) return M_QuitMessage("Accept Defeat?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3152 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);
3153 if (request-- == 0) return M_QuitMessage("Where's your bloodlust?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3154 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);
3155 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);
3157 case GAME_OPENQUARTZ:
3158 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);
3159 if (request-- == 0) return M_QuitMessage("GNU is not Unix!","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3160 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);
3161 if (request-- == 0) return M_QuitMessage("Is OpenQuartz Propaganda?","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3163 case GAME_NEXUIZ: //frag related quit messages are pointless for a fallback menu!
3164 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);
3167 if (request-- == 0) return M_QuitMessage("Tired of fragging already?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3168 if (request-- == 0) return M_QuitMessage("Quit now and forfeit your bodycount?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3169 if (request-- == 0) return M_QuitMessage("Are you sure you want to quit?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3170 if (request-- == 0) return M_QuitMessage("Off to do something constructive?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3176 void M_Menu_Quit_f (void)
3179 if (m_state == m_quit)
3181 wasInMenus = (key_dest == key_menu);
3182 key_dest = key_menu;
3183 m_quit_prevstate = m_state;
3185 m_entersound = true;
3186 // count how many there are
3187 for (n = 0;M_ChooseQuitMessage(n);n++);
3189 M_ChooseQuitMessage(rand() % n);
3193 static void M_Quit_Key (int key, char ascii)
3202 m_state = (enum m_state_e)m_quit_prevstate;
3203 m_entersound = true;
3207 key_dest = key_game;
3222 static void M_Quit_Draw (void)
3224 int i, l, linelength, firstline, lastline, lines;
3225 for (i = 0, linelength = 0, firstline = 9999, lastline = -1;m_quit_message[i];i++)
3227 if ((l = (int)strlen(m_quit_message[i])))
3237 lines = (lastline - firstline) + 1;
3238 M_Background(linelength * 8 + 16, lines * 8 + 16);
3239 if (gamemode != GAME_NEXUIZ) //since this is a fallback menu for Nexuiz (no graphics), it is very hard to read with the box
3240 M_DrawTextBox(0, 0, linelength, lines); //this is less obtrusive than hacking up the M_DrawTextBox function for Nexuiz
3241 for (i = 0, l = firstline;i < lines;i++, l++)
3242 M_Print(8 + 4 * (linelength - strlen(m_quit_message[l])), 8 + 8 * i, m_quit_message[l]);
3245 //=============================================================================
3246 /* LAN CONFIG MENU */
3248 static int lanConfig_cursor = -1;
3249 static int lanConfig_cursor_table [] = {56, 76, 84, 120};
3250 #define NUM_LANCONFIG_CMDS 4
3252 static int lanConfig_port;
3253 static char lanConfig_portname[6];
3254 static char lanConfig_joinname[22];
3256 void M_Menu_LanConfig_f (void)
3258 key_dest = key_menu;
3259 m_state = m_lanconfig;
3260 m_entersound = true;
3261 if (lanConfig_cursor == -1)
3264 lanConfig_cursor = 1;
3267 lanConfig_cursor = 1;
3268 lanConfig_port = 26000;
3269 sprintf(lanConfig_portname, "%u", lanConfig_port);
3271 M_Update_Return_Reason("");
3275 static void M_LanConfig_Draw (void)
3282 M_Background(320, 200);
3284 M_DrawPic (16, 4, "gfx/qplaque");
3285 p = Draw_CachePic ("gfx/p_multi", true);
3286 basex = (320-p->width)/2;
3287 M_DrawPic (basex, 4, "gfx/p_multi");
3290 startJoin = "New Game";
3292 startJoin = "Join Game";
3293 protocol = "TCP/IP";
3294 M_Print(basex, 32, va (