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"
33 enum m_state_e m_state;
35 void M_Menu_Main_f (void);
36 void M_Menu_SinglePlayer_f (void);
37 void M_Menu_Transfusion_Episode_f (void);
38 void M_Menu_Transfusion_Skill_f (void);
39 void M_Menu_Load_f (void);
40 void M_Menu_Save_f (void);
41 void M_Menu_MultiPlayer_f (void);
42 void M_Menu_Setup_f (void);
43 void M_Menu_Options_f (void);
44 void M_Menu_Options_Effects_f (void);
45 void M_Menu_Options_Graphics_f (void);
46 void M_Menu_Options_ColorControl_f (void);
47 void M_Menu_Keys_f (void);
48 void M_Menu_Reset_f (void);
49 void M_Menu_Video_f (void);
50 void M_Menu_Help_f (void);
51 void M_Menu_Credits_f (void);
52 void M_Menu_Quit_f (void);
53 void M_Menu_LanConfig_f (void);
54 void M_Menu_GameOptions_f (void);
55 void M_Menu_ServerList_f (void);
57 void M_Main_Draw (void);
58 void M_SinglePlayer_Draw (void);
59 void M_Transfusion_Episode_Draw (void);
60 void M_Transfusion_Skill_Draw (void);
61 void M_Load_Draw (void);
62 void M_Save_Draw (void);
63 void M_MultiPlayer_Draw (void);
64 void M_Setup_Draw (void);
65 void M_Options_Draw (void);
66 void M_Options_Effects_Draw (void);
67 void M_Options_Graphics_Draw (void);
68 void M_Options_ColorControl_Draw (void);
69 void M_Keys_Draw (void);
70 void M_Reset_Draw (void);
71 void M_Video_Draw (void);
72 void M_Help_Draw (void);
73 void M_Credits_Draw (void);
74 void M_Quit_Draw (void);
75 void M_LanConfig_Draw (void);
76 void M_GameOptions_Draw (void);
77 void M_ServerList_Draw (void);
79 void M_Main_Key (int key, char ascii);
80 void M_SinglePlayer_Key (int key, char ascii);
81 void M_Transfusion_Episode_Key (int key, char ascii);
82 void M_Transfusion_Skill_Key (int key, char ascii);
83 void M_Load_Key (int key, char ascii);
84 void M_Save_Key (int key, char ascii);
85 void M_MultiPlayer_Key (int key, char ascii);
86 void M_Setup_Key (int key, char ascii);
87 void M_Options_Key (int key, char ascii);
88 void M_Options_Effects_Key (int key, char ascii);
89 void M_Options_Graphics_Key (int key, char ascii);
90 void M_Options_ColorControl_Key (int key, char ascii);
91 void M_Keys_Key (int key, char ascii);
92 void M_Reset_Key (int key, char ascii);
93 void M_Video_Key (int key, char ascii);
94 void M_Help_Key (int key, char ascii);
95 void M_Credits_Key (int key, char ascii);
96 void M_Quit_Key (int key, char ascii);
97 void M_LanConfig_Key (int key, char ascii);
98 void M_GameOptions_Key (int key, char ascii);
99 void M_ServerList_Key (int key, char ascii);
101 qboolean m_entersound; // play after drawing a frame, so caching
102 // won't disrupt the sound
104 char m_return_reason [32];
106 void M_Update_Return_Reason(char *s)
108 strlcpy(m_return_reason, s, sizeof(m_return_reason));
110 Con_Printf("%s\n", s);
113 #define StartingGame (m_multiplayer_cursor == 1)
114 #define JoiningGame (m_multiplayer_cursor == 0)
117 #define NumberOfNehahraDemos 34
122 } nehahrademonames_t;
124 nehahrademonames_t NehahraDemos[NumberOfNehahraDemos] =
126 {"intro", "Prologue"},
127 {"genf", "The Beginning"},
128 {"genlab", "A Doomed Project"},
129 {"nehcre", "The New Recruits"},
130 {"maxneh", "Breakthrough"},
131 {"maxchar", "Renewal and Duty"},
132 {"crisis", "Worlds Collide"},
133 {"postcris", "Darkening Skies"},
134 {"hearing", "The Hearing"},
135 {"getjack", "On a Mexican Radio"},
136 {"prelude", "Honor and Justice"},
137 {"abase", "A Message Sent"},
138 {"effect", "The Other Side"},
139 {"uhoh", "Missing in Action"},
140 {"prepare", "The Response"},
141 {"vision", "Farsighted Eyes"},
142 {"maxturns", "Enter the Immortal"},
143 {"backlot", "Separate Ways"},
144 {"maxside", "The Ancient Runes"},
145 {"counter", "The New Initiative"},
146 {"warprep", "Ghosts to the World"},
147 {"counter1", "A Fate Worse Than Death"},
148 {"counter2", "Friendly Fire"},
149 {"counter3", "Minor Setback"},
150 {"madmax", "Scores to Settle"},
151 {"quake", "One Man"},
152 {"cthmm", "Shattered Masks"},
153 {"shades", "Deal with the Dead"},
154 {"gophil", "An Unlikely Hero"},
155 {"cstrike", "War in Hell"},
156 {"shubset", "The Conspiracy"},
157 {"shubdie", "Even Death May Die"},
158 {"newranks", "An Empty Throne"},
159 {"seal", "The Seal is Broken"}
162 float menu_x, menu_y, menu_width, menu_height;
164 void M_Background(int width, int height)
166 menu_width = bound(1, width, vid_conwidth.integer);
167 menu_height = bound(1, height, vid_conheight.integer);
168 menu_x = (vid_conwidth.integer - menu_width) * 0.5;
169 menu_y = (vid_conheight.integer - menu_height) * 0.5;
170 //DrawQ_Fill(menu_x, menu_y, menu_width, menu_height, 0, 0, 0, 0.5, 0);
171 DrawQ_Fill(0, 0, vid_conwidth.integer, vid_conheight.integer, 0, 0, 0, 0.5, 0);
178 Draws one solid graphics character
181 void M_DrawCharacter (float cx, float cy, int num)
186 DrawQ_String(menu_x + cx, menu_y + cy, temp, 1, 8, 8, 1, 1, 1, 1, 0);
189 void M_Print(float cx, float cy, const char *str)
191 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
194 void M_PrintRed (float cx, float cy, const char *str)
196 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 0, 0, 1, 0);
199 void M_ItemPrint(float cx, float cy, char *str, int unghosted)
202 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 1, 1, 1, 1, 0);
204 DrawQ_String(menu_x + cx, menu_y + cy, str, 0, 8, 8, 0.4, 0.4, 0.4, 1, 0);
207 void M_DrawPic (float cx, float cy, char *picname)
209 DrawQ_Pic (menu_x + cx, menu_y + cy, picname, 0, 0, 1, 1, 1, 1, 0);
212 qbyte identityTable[256];
213 qbyte translationTable[256];
215 void M_BuildTranslationTable(int top, int bottom)
218 qbyte *dest, *source;
220 for (j = 0; j < 256; j++)
221 identityTable[j] = j;
222 dest = translationTable;
223 source = identityTable;
224 memcpy (dest, source, 256);
226 // LordHavoc: corrected skin color ranges
227 if (top < 128 || (top >= 224 && top < 240)) // the artists made some backwards ranges. sigh.
228 memcpy (dest + TOP_RANGE, source + top, 16);
230 for (j=0 ; j<16 ; j++)
231 dest[TOP_RANGE+j] = source[top+15-j];
233 // LordHavoc: corrected skin color ranges
234 if (bottom < 128 || (bottom >= 224 && bottom < 240))
235 memcpy (dest + BOTTOM_RANGE, source + bottom, 16);
237 for (j=0 ; j<16 ; j++)
238 dest[BOTTOM_RANGE+j] = source[bottom+15-j];
242 void M_DrawTextBox (float x, float y, float width, float height)
250 M_DrawPic (cx, cy, "gfx/box_tl.lmp");
251 for (n = 0; n < height; n++)
254 M_DrawPic (cx, cy, "gfx/box_ml.lmp");
256 M_DrawPic (cx, cy+8, "gfx/box_bl.lmp");
263 M_DrawPic (cx, cy, "gfx/box_tm.lmp");
264 for (n = 0; n < height; n++)
268 M_DrawPic (cx, cy, "gfx/box_mm2.lmp");
270 M_DrawPic (cx, cy, "gfx/box_mm.lmp");
272 M_DrawPic (cx, cy+8, "gfx/box_bm.lmp");
279 M_DrawPic (cx, cy, "gfx/box_tr.lmp");
280 for (n = 0; n < height; n++)
283 M_DrawPic (cx, cy, "gfx/box_mr.lmp");
285 M_DrawPic (cx, cy+8, "gfx/box_br.lmp");
288 //=============================================================================
290 //int m_save_demonum;
297 void M_ToggleMenu_f (void)
301 if (key_dest != key_menu || m_state != m_main)
312 void M_Demo_Draw (void)
316 M_Background(320, 200);
318 for (i = 0;i < NumberOfNehahraDemos;i++)
319 M_Print(16, 16 + 8*i, NehahraDemos[i].desc);
322 M_DrawCharacter (8, 16 + demo_cursor*8, 12+((int)(realtime*4)&1));
326 void M_Menu_Demos_f (void)
333 void M_Demo_Key (int k, char ascii)
342 S_LocalSound ("sound/misc/menu2.wav");
345 Cbuf_AddText (va ("playdemo %s\n", NehahraDemos[demo_cursor].name));
350 S_LocalSound ("sound/misc/menu1.wav");
353 demo_cursor = NumberOfNehahraDemos-1;
358 S_LocalSound ("sound/misc/menu1.wav");
360 if (demo_cursor >= NumberOfNehahraDemos)
366 //=============================================================================
371 int MAIN_ITEMS = 4; // Nehahra: Menu Disable
373 void M_Menu_Main_f (void)
375 if (gamemode == GAME_NEHAHRA)
377 if (NehGameType == TYPE_DEMO)
379 else if (NehGameType == TYPE_GAME)
384 else if (gamemode == GAME_NETHERWORLD)//VORTEX: menu restarting item
386 else if (gamemode == GAME_TRANSFUSION) {
387 if (sv.active && !cl.intermission && cl.islocalgame)
396 if (key_dest != key_menu)
398 m_save_demonum = cls.demonum;
408 void M_Main_Draw (void)
413 if (gamemode == GAME_TRANSFUSION) {
415 M_Background(640, 480);
416 p = Draw_CachePic ("gfx/tb-transfusion", false);
417 M_DrawPic (640/2 - p->width/2, 40, "gfx/tb-transfusion");
419 // 8 rather than MAIN_ITEMS to skip a number and not miss the last option
420 for (y1 = 1; y1 <= 8; y1++)
422 if (MAIN_ITEMS == 7 && y1 == 4)
424 M_DrawPic (0, y2, va("gfx/mainmenu%i", y1));
427 if (MAIN_ITEMS == 7 && m_main_cursor > 2)
428 y3 = m_main_cursor + 2;
430 y3 = m_main_cursor + 1;
431 M_DrawPic (0, 120 + m_main_cursor * 40, va("gfx/mainmenu%iselected", y3));
435 M_Background(320, 200);
436 M_DrawPic (16, 4, "gfx/qplaque.lmp");
437 p = Draw_CachePic ("gfx/ttl_main.lmp", false);
438 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_main.lmp");
440 if (gamemode == GAME_NEHAHRA)
442 if (NehGameType == TYPE_BOTH)
443 M_DrawPic (72, 32, "gfx/mainmenu.lmp");
444 else if (NehGameType == TYPE_GAME)
445 M_DrawPic (72, 32, "gfx/gamemenu.lmp");
447 M_DrawPic (72, 32, "gfx/demomenu.lmp");
450 M_DrawPic (72, 32, "gfx/mainmenu.lmp");
452 f = (int)(realtime * 10)%6;
454 M_DrawPic (54, 32 + m_main_cursor * 20, va("gfx/menudot%i.lmp", f+1));
458 void M_Main_Key (int key, char ascii)
465 //cls.demonum = m_save_demonum;
466 //if (cls.demonum != -1 && !cls.demoplayback && cls.state != ca_connected)
471 S_LocalSound ("sound/misc/menu1.wav");
472 if (++m_main_cursor >= MAIN_ITEMS)
477 S_LocalSound ("sound/misc/menu1.wav");
478 if (--m_main_cursor < 0)
479 m_main_cursor = MAIN_ITEMS - 1;
485 if (gamemode == GAME_NEHAHRA)
490 switch (m_main_cursor)
493 M_Menu_SinglePlayer_f ();
501 M_Menu_MultiPlayer_f ();
511 Cbuf_AddText ("disconnect\n");
512 Cbuf_AddText ("playdemo endcred\n");
521 switch (m_main_cursor)
524 M_Menu_SinglePlayer_f ();
528 M_Menu_MultiPlayer_f ();
538 Cbuf_AddText ("disconnect\n");
539 Cbuf_AddText ("playdemo endcred\n");
548 switch (m_main_cursor)
557 Cbuf_AddText ("disconnect\n");
558 Cbuf_AddText ("playdemo endcred\n");
572 else if (gamemode == GAME_NETHERWORLD)//VORTEX: menu restarting item
574 switch (m_main_cursor)
577 M_Menu_SinglePlayer_f ();
581 M_Menu_MultiPlayer_f ();
600 else if (gamemode == GAME_TRANSFUSION) {
603 switch (m_main_cursor)
606 M_Menu_Transfusion_Episode_f ();
610 M_Menu_MultiPlayer_f ();
636 switch (m_main_cursor)
639 M_Menu_Transfusion_Episode_f ();
643 M_Menu_MultiPlayer_f ();
674 switch (m_main_cursor)
677 M_Menu_SinglePlayer_f ();
681 M_Menu_MultiPlayer_f ();
700 //=============================================================================
701 /* SINGLE PLAYER MENU */
703 int m_singleplayer_cursor;
704 #define SINGLEPLAYER_ITEMS 3
707 void M_Menu_SinglePlayer_f (void)
710 m_state = m_singleplayer;
715 void M_SinglePlayer_Draw (void)
719 M_Background(320, 200);
721 M_DrawPic (16, 4, "gfx/qplaque.lmp");
722 p = Draw_CachePic ("gfx/ttl_sgl.lmp", false);
724 // Some mods don't have a single player mode
725 if (gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
727 M_DrawPic ((320 - p->width) / 2, 4, "gfx/ttl_sgl.lmp");
729 M_DrawTextBox (60, 8 * 8, 23, 4);
730 if (gamemode == GAME_NEXUIZ)
731 M_Print(95, 10 * 8, "Nexuiz is for");
732 else if (gamemode == GAME_GOODVSBAD2)
733 M_Print(95, 10 * 8, "Good Vs Bad 2 is for");
734 else // if (gamemode == GAME_BATTLEMECH)
735 M_Print(95, 10 * 8, "Battlemech is for");
736 M_Print(83, 11 * 8, "multiplayer play only");
742 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_sgl.lmp");
743 M_DrawPic (72, 32, "gfx/sp_menu.lmp");
745 f = (int)(realtime * 10)%6;
747 M_DrawPic (54, 32 + m_singleplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
752 void M_SinglePlayer_Key (int key, char ascii)
754 if (gamemode == GAME_NEXUIZ || gamemode == GAME_GOODVSBAD2 || gamemode == GAME_BATTLEMECH)
756 if (key == K_ESCAPE || key == K_ENTER)
768 S_LocalSound ("sound/misc/menu1.wav");
769 if (++m_singleplayer_cursor >= SINGLEPLAYER_ITEMS)
770 m_singleplayer_cursor = 0;
774 S_LocalSound ("sound/misc/menu1.wav");
775 if (--m_singleplayer_cursor < 0)
776 m_singleplayer_cursor = SINGLEPLAYER_ITEMS - 1;
782 switch (m_singleplayer_cursor)
787 Cbuf_AddText ("disconnect\n");
788 Cbuf_AddText ("maxplayers 1\n");
789 Cbuf_AddText ("deathmatch 0\n");
790 Cbuf_AddText ("coop 0\n");
791 if (gamemode == GAME_TRANSFUSION)
794 M_Menu_Transfusion_Episode_f ();
797 Cbuf_AddText ("startmap_sp\n");
811 //=============================================================================
814 int load_cursor; // 0 < load_cursor < MAX_SAVEGAMES
816 #define MAX_SAVEGAMES 12
817 char m_filenames[MAX_SAVEGAMES][SAVEGAME_COMMENT_LENGTH+1];
818 int loadable[MAX_SAVEGAMES];
820 void M_ScanSaves (void)
823 char name[MAX_OSPATH];
824 char buf[SAVEGAME_COMMENT_LENGTH + 256];
829 for (i=0 ; i<MAX_SAVEGAMES ; i++)
831 strcpy (m_filenames[i], "--- UNUSED SLOT ---");
833 sprintf (name, "s%i.sav", (int)i);
834 f = FS_Open (name, "rb", false, false);
837 // read enough to get the comment
838 len = FS_Read(f, buf, sizeof(buf) - 1);
839 buf[sizeof(buf) - 1] = 0;
842 COM_ParseToken(&t, false);
843 version = atoi(com_token);
845 COM_ParseToken(&t, false);
846 strlcpy (m_filenames[i], com_token, sizeof (m_filenames[i]));
848 // change _ back to space
849 for (j=0 ; j<SAVEGAME_COMMENT_LENGTH ; j++)
850 if (m_filenames[i][j] == '_')
851 m_filenames[i][j] = ' ';
857 void M_Menu_Load_f (void)
866 void M_Menu_Save_f (void)
881 void M_Load_Draw (void)
886 M_Background(320, 200);
888 p = Draw_CachePic ("gfx/p_load.lmp", false);
889 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_load.lmp" );
891 for (i=0 ; i< MAX_SAVEGAMES; i++)
892 M_Print(16, 32 + 8*i, m_filenames[i]);
895 M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
899 void M_Save_Draw (void)
904 M_Background(320, 200);
906 p = Draw_CachePic ("gfx/p_save.lmp", false);
907 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_save.lmp");
909 for (i=0 ; i<MAX_SAVEGAMES ; i++)
910 M_Print(16, 32 + 8*i, m_filenames[i]);
913 M_DrawCharacter (8, 32 + load_cursor*8, 12+((int)(realtime*4)&1));
917 void M_Load_Key (int k, char ascii)
922 if (gamemode == GAME_TRANSFUSION)
925 M_Menu_SinglePlayer_f ();
929 S_LocalSound ("sound/misc/menu2.wav");
930 if (!loadable[load_cursor])
935 // issue the load command
936 Cbuf_AddText (va ("load s%i\n", load_cursor) );
941 S_LocalSound ("sound/misc/menu1.wav");
944 load_cursor = MAX_SAVEGAMES-1;
949 S_LocalSound ("sound/misc/menu1.wav");
951 if (load_cursor >= MAX_SAVEGAMES)
958 void M_Save_Key (int k, char ascii)
963 if (gamemode == GAME_TRANSFUSION)
966 M_Menu_SinglePlayer_f ();
972 Cbuf_AddText (va("save s%i\n", load_cursor));
977 S_LocalSound ("sound/misc/menu1.wav");
980 load_cursor = MAX_SAVEGAMES-1;
985 S_LocalSound ("sound/misc/menu1.wav");
987 if (load_cursor >= MAX_SAVEGAMES)
993 //=============================================================================
994 /* Transfusion Single Player Episode Menu */
996 int m_episode_cursor;
997 #define EPISODE_ITEMS 6
999 void M_Menu_Transfusion_Episode_f (void)
1001 m_entersound = true;
1002 m_state = m_transfusion_episode;
1003 key_dest = key_menu;
1006 void M_Transfusion_Episode_Draw (void)
1010 M_Background(640, 480);
1012 p = Draw_CachePic ("gfx/tb-episodes", false);
1013 M_DrawPic (640/2 - p->width/2, 40, "gfx/tb-episodes");
1014 for (y = 0; y < EPISODE_ITEMS; y++){
1015 M_DrawPic (0, 160 + y * 40, va("gfx/episode%i", y+1));
1018 M_DrawPic (0, 120 + (m_episode_cursor + 1) * 40, va("gfx/episode%iselected", m_episode_cursor + 1));
1021 void M_Transfusion_Episode_Key (int key, char ascii)
1030 S_LocalSound ("sound/misc/menu1.wav");
1032 if (m_episode_cursor >= EPISODE_ITEMS)
1033 m_episode_cursor = 0;
1037 S_LocalSound ("sound/misc/menu1.wav");
1039 if (m_episode_cursor < 0)
1040 m_episode_cursor = EPISODE_ITEMS - 1;
1044 Cbuf_AddText ("deathmatch 0\n");
1045 m_entersound = true;
1046 M_Menu_Transfusion_Skill_f ();
1050 //=============================================================================
1051 /* Transfusion Single Player Skill Menu */
1053 int m_skill_cursor = 2;
1054 #define SKILL_ITEMS 5
1056 void M_Menu_Transfusion_Skill_f (void)
1058 m_entersound = true;
1059 m_state = m_transfusion_skill;
1060 key_dest = key_menu;
1063 void M_Transfusion_Skill_Draw (void)
1067 M_Background(640, 480);
1069 p = Draw_CachePic ("gfx/tb-difficulty", false);
1070 M_DrawPic(640/2 - p->width/2, 40, "gfx/tb-difficulty");
1072 for (y = 0; y < SKILL_ITEMS; y++)
1074 M_DrawPic (0, 180 + y * 40, va("gfx/difficulty%i", y+1));
1076 M_DrawPic (0, 140 + (m_skill_cursor + 1) *40, va("gfx/difficulty%iselected", m_skill_cursor + 1));
1079 void M_Transfusion_Skill_Key (int key, char ascii)
1084 M_Menu_Transfusion_Episode_f ();
1088 S_LocalSound ("sound/misc/menu1.wav");
1090 if (m_skill_cursor >= SKILL_ITEMS)
1095 S_LocalSound ("sound/misc/menu1.wav");
1097 if (m_skill_cursor < 0)
1098 m_skill_cursor = SKILL_ITEMS - 1;
1102 m_entersound = true;
1103 switch (m_skill_cursor)
1106 Cbuf_AddText ("skill 1\n");
1109 Cbuf_AddText ("skill 2\n");
1112 Cbuf_AddText ("skill 3\n");
1115 Cbuf_AddText ("skill 4\n");
1118 Cbuf_AddText ("skill 5\n");
1121 key_dest = key_game;
1123 Cbuf_AddText ("disconnect\n");
1124 Cbuf_AddText ("maxplayers 1\n");
1125 Cbuf_AddText ("deathmatch 0\n");
1126 Cbuf_AddText ("coop 0\n");
1127 switch (m_episode_cursor)
1130 Cbuf_AddText ("map e1m1\n");
1133 Cbuf_AddText ("map e2m1\n");
1136 Cbuf_AddText ("map e3m1\n");
1139 Cbuf_AddText ("map e4m1\n");
1142 Cbuf_AddText ("map e6m1\n");
1145 Cbuf_AddText ("map cp01\n");
1150 //=============================================================================
1151 /* MULTIPLAYER MENU */
1153 int m_multiplayer_cursor;
1154 #define MULTIPLAYER_ITEMS 3
1157 void M_Menu_MultiPlayer_f (void)
1159 key_dest = key_menu;
1160 m_state = m_multiplayer;
1161 m_entersound = true;
1165 void M_MultiPlayer_Draw (void)
1170 if (gamemode == GAME_TRANSFUSION)
1172 M_Background(640, 480);
1173 p = Draw_CachePic ("gfx/tb-online", false);
1174 M_DrawPic (640/2 - p->width/2, 140, "gfx/tb-online");
1175 for (f = 1; f <= MULTIPLAYER_ITEMS; f++)
1176 M_DrawPic (0, 180 + f*40, va("gfx/online%i", f));
1177 M_DrawPic (0, 220 + m_multiplayer_cursor * 40, va("gfx/online%iselected", m_multiplayer_cursor + 1));
1180 M_Background(320, 200);
1182 M_DrawPic (16, 4, "gfx/qplaque.lmp");
1183 p = Draw_CachePic ("gfx/p_multi.lmp", false);
1184 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
1185 M_DrawPic (72, 32, "gfx/mp_menu.lmp");
1187 f = (int)(realtime * 10)%6;
1189 M_DrawPic (54, 32 + m_multiplayer_cursor * 20, va("gfx/menudot%i.lmp", f+1));
1193 void M_MultiPlayer_Key (int key, char ascii)
1202 S_LocalSound ("sound/misc/menu1.wav");
1203 if (++m_multiplayer_cursor >= MULTIPLAYER_ITEMS)
1204 m_multiplayer_cursor = 0;
1208 S_LocalSound ("sound/misc/menu1.wav");
1209 if (--m_multiplayer_cursor < 0)
1210 m_multiplayer_cursor = MULTIPLAYER_ITEMS - 1;
1214 m_entersound = true;
1215 switch (m_multiplayer_cursor)
1219 M_Menu_LanConfig_f ();
1229 //=============================================================================
1232 int setup_cursor = 4;
1233 int setup_cursor_table[] = {40, 64, 88, 124, 140};
1235 char setup_myname[32];
1237 int setup_oldbottom;
1243 #define NUM_SETUP_CMDS 5
1245 void M_Menu_Setup_f (void)
1247 key_dest = key_menu;
1249 m_entersound = true;
1250 strcpy(setup_myname, cl_name.string);
1251 setup_top = setup_oldtop = cl_color.integer >> 4;
1252 setup_bottom = setup_oldbottom = cl_color.integer & 15;
1253 setup_rate = cl_rate.integer;
1256 static int menuplyr_width, menuplyr_height, menuplyr_top, menuplyr_bottom, menuplyr_load;
1257 static qbyte *menuplyr_pixels;
1258 static unsigned int *menuplyr_translated;
1260 typedef struct ratetable_s
1267 #define RATES ((int)(sizeof(setup_ratetable)/sizeof(setup_ratetable[0])))
1268 static ratetable_t setup_ratetable[] =
1271 {1500, "28.8 mediocre"},
1272 {2000, "28.8 good"},
1273 {2500, "33.6 mediocre"},
1274 {3000, "33.6 good"},
1276 {4000, "56k mediocre"},
1277 {4500, "56k adequate"},
1280 {15000, "128k ISDN"},
1281 {25000, "broadband"}
1284 static int setup_rateindex(int rate)
1287 for (i = 0;i < RATES;i++)
1288 if (setup_ratetable[i].rate > setup_rate)
1290 return bound(1, i, RATES) - 1;
1293 void M_Setup_Draw (void)
1298 M_Background(320, 200);
1300 M_DrawPic (16, 4, "gfx/qplaque.lmp");
1301 p = Draw_CachePic ("gfx/p_multi.lmp", false);
1302 M_DrawPic ( (320-p->width)/2, 4, "gfx/p_multi.lmp");
1304 M_Print(64, 40, "Your name");
1305 M_DrawTextBox (160, 32, 16, 1);
1306 M_Print(168, 40, setup_myname);
1308 if (gamemode != GAME_GOODVSBAD2)
1310 M_Print(64, 64, "Shirt color");
1311 M_Print(64, 88, "Pants color");
1314 M_Print(64, 124-8, "Network speed limit");
1315 M_Print(168, 124, va("%i (%s)", setup_rate, setup_ratetable[setup_rateindex(setup_rate)].name));
1317 M_DrawTextBox (64, 140-8, 14, 1);
1318 M_Print(72, 140, "Accept Changes");
1320 // LordHavoc: rewrote this code greatly
1324 menuplyr_load = false;
1326 menuplyr_bottom = -1;
1327 if ((f = FS_LoadFile("gfx/menuplyr.lmp", tempmempool, true)))
1329 data = LoadLMP (f, 0, 0, true);
1330 menuplyr_width = image_width;
1331 menuplyr_height = image_height;
1333 menuplyr_pixels = Mem_Alloc(cl_mempool, menuplyr_width * menuplyr_height);
1334 menuplyr_translated = Mem_Alloc(cl_mempool, menuplyr_width * menuplyr_height * 4);
1335 memcpy(menuplyr_pixels, data, menuplyr_width * menuplyr_height);
1340 if (menuplyr_pixels)
1342 if (menuplyr_top != setup_top || menuplyr_bottom != setup_bottom)
1344 menuplyr_top = setup_top;
1345 menuplyr_bottom = setup_bottom;
1346 M_BuildTranslationTable(menuplyr_top*16, menuplyr_bottom*16);
1347 for (i = 0;i < menuplyr_width * menuplyr_height;i++)
1348 menuplyr_translated[i] = palette_complete[translationTable[menuplyr_pixels[i]]];
1349 Draw_NewPic("gfx/menuplyr.lmp", menuplyr_width, menuplyr_height, true, (qbyte *)menuplyr_translated);
1351 M_DrawPic(160, 48, "gfx/bigbox.lmp");
1352 M_DrawPic(172, 56, "gfx/menuplyr.lmp");
1355 if (setup_cursor == 0)
1356 M_DrawCharacter (168 + 8*strlen(setup_myname), setup_cursor_table [setup_cursor], 10+((int)(realtime*4)&1));
1358 M_DrawCharacter (56, setup_cursor_table [setup_cursor], 12+((int)(realtime*4)&1));
1362 void M_Setup_Key (int k, char ascii)
1369 M_Menu_MultiPlayer_f ();
1373 S_LocalSound ("sound/misc/menu1.wav");
1375 if (setup_cursor < 0)
1376 setup_cursor = NUM_SETUP_CMDS-1;
1380 S_LocalSound ("sound/misc/menu1.wav");
1382 if (setup_cursor >= NUM_SETUP_CMDS)
1387 if (setup_cursor < 1)
1389 S_LocalSound ("sound/misc/menu3.wav");
1390 if (setup_cursor == 1)
1391 setup_top = setup_top - 1;
1392 if (setup_cursor == 2)
1393 setup_bottom = setup_bottom - 1;
1394 if (setup_cursor == 3)
1396 l = setup_rateindex(setup_rate) - 1;
1399 setup_rate = setup_ratetable[l].rate;
1403 if (setup_cursor < 1)
1406 S_LocalSound ("sound/misc/menu3.wav");
1407 if (setup_cursor == 1)
1408 setup_top = setup_top + 1;
1409 if (setup_cursor == 2)
1410 setup_bottom = setup_bottom + 1;
1411 if (setup_cursor == 3)
1413 l = setup_rateindex(setup_rate) + 1;
1416 setup_rate = setup_ratetable[l].rate;
1421 if (setup_cursor == 0)
1424 if (setup_cursor == 1 || setup_cursor == 2 || setup_cursor == 3)
1427 // setup_cursor == 4 (Accept changes)
1428 if (strcmp(cl_name.string, setup_myname) != 0)
1429 Cbuf_AddText ( va ("name \"%s\"\n", setup_myname) );
1430 if (setup_top != setup_oldtop || setup_bottom != setup_oldbottom)
1431 Cbuf_AddText( va ("color %i %i\n", setup_top, setup_bottom) );
1432 if (setup_rate != setup_oldrate)
1433 Cbuf_AddText(va("rate %i\n", setup_rate));
1435 m_entersound = true;
1436 M_Menu_MultiPlayer_f ();
1440 if (setup_cursor == 0)
1442 if (strlen(setup_myname))
1443 setup_myname[strlen(setup_myname)-1] = 0;
1448 if (ascii < 32 || ascii > 126)
1450 if (setup_cursor == 0)
1452 l = (int)strlen(setup_myname);
1455 setup_myname[l+1] = 0;
1456 setup_myname[l] = ascii;
1465 if (setup_bottom > 15)
1467 if (setup_bottom < 0)
1471 //=============================================================================
1474 #define SLIDER_RANGE 10
1476 void M_DrawSlider (int x, int y, float num, float rangemin, float rangemax)
1481 range = bound(0, (num - rangemin) / (rangemax - rangemin), 1);
1482 M_DrawCharacter (x-8, y, 128);
1483 for (i = 0;i < SLIDER_RANGE;i++)
1484 M_DrawCharacter (x + i*8, y, 129);
1485 M_DrawCharacter (x+i*8, y, 130);
1486 M_DrawCharacter (x + (SLIDER_RANGE-1)*8 * range, y, 131);
1487 if (fabs((int)num - num) < 0.01)
1488 sprintf(text, "%i", (int)num);
1490 sprintf(text, "%.2f", num);
1491 M_Print(x + (SLIDER_RANGE+2) * 8, y, text);
1494 void M_DrawCheckbox (int x, int y, int on)
1497 M_Print(x, y, "on");
1499 M_Print(x, y, "off");
1503 #define OPTIONS_ITEMS 39
1507 void M_Menu_Options_f (void)
1509 key_dest = key_menu;
1510 m_state = m_options;
1511 m_entersound = true;
1514 extern cvar_t slowmo;
1515 extern dllhandle_t jpeg_dll;
1516 extern cvar_t gl_texture_anisotropy;
1517 extern cvar_t r_textshadow;
1519 void M_Menu_Options_AdjustSliders (int dir)
1522 S_LocalSound ("sound/misc/menu3.wav");
1525 if (options_cursor == optnum++)
1526 Cvar_SetValueQuick (&vid_conwidth, bound(320, vid_conwidth.value + dir * 64, 2048));
1527 else if (options_cursor == optnum++)
1528 Cvar_SetValueQuick (&vid_conheight, bound(240, vid_conheight.value + dir * 48, 1536));
1529 else if (options_cursor == optnum++)
1530 Cvar_SetValueQuick (&scr_conspeed, bound(0, scr_conspeed.value + dir * 100, 1000));
1531 else if (options_cursor == optnum++)
1532 Cvar_SetValueQuick (&scr_conalpha, bound(0, scr_conalpha.value + dir * 0.2, 1));
1533 else if (options_cursor == optnum++)
1534 Cvar_SetValueQuick (&scr_conbrightness, bound(0, scr_conbrightness.value + dir * 0.2, 1));
1535 else if (options_cursor == optnum++)
1536 Cvar_SetValueQuick (&sbar_alpha_bg, bound(0, sbar_alpha_bg.value + dir * 0.1, 1));
1537 else if (options_cursor == optnum++)
1538 Cvar_SetValueQuick (&sbar_alpha_fg, bound(0, sbar_alpha_fg.value + dir * 0.1, 1));
1539 else if (options_cursor == optnum++)
1540 Cvar_SetValueQuick (&scr_viewsize, bound(30, scr_viewsize.value + dir * 10, 120));
1541 else if (options_cursor == optnum++)
1542 Cvar_SetValueQuick (&scr_fov, bound(1, scr_fov.integer + dir * 1, 170));
1543 else if (options_cursor == optnum++)
1544 Cvar_SetValueQuick (&scr_screenshot_jpeg, !scr_screenshot_jpeg.integer);
1545 else if (options_cursor == optnum++)
1546 Cvar_SetValueQuick (&scr_screenshot_jpeg_quality, bound(0, scr_screenshot_jpeg_quality.value + dir * 0.1, 1));
1547 else if (options_cursor == optnum++)
1548 Cvar_SetValueQuick (&r_sky, !r_sky.integer);
1549 else if (options_cursor == optnum++)
1550 Cvar_SetValueQuick (&gl_dither, !gl_dither.integer);
1551 else if (options_cursor == optnum++)
1552 Cvar_SetValueQuick (&gl_texture_anisotropy, bound(1, gl_texture_anisotropy.integer + dir, gl_max_anisotropy));
1553 else if (options_cursor == optnum++)
1554 Cvar_SetValueQuick (&slowmo, bound(0, slowmo.value + dir * 0.25, 5));
1555 else if (options_cursor == optnum++)
1556 Cvar_SetValueQuick (&bgmvolume, bound(0, bgmvolume.value + dir * 0.1, 1));
1557 else if (options_cursor == optnum++)
1558 Cvar_SetValueQuick (&volume, bound(0, volume.value + dir * 0.1, 1));
1559 else if (options_cursor == optnum++)
1560 Cvar_SetValueQuick (&snd_staticvolume, bound(0, snd_staticvolume.value + dir * 0.1, 1));
1561 else if (options_cursor == optnum++)
1562 Cvar_SetValueQuick (&r_textshadow, !r_textshadow.integer);
1563 else if (options_cursor == optnum++)
1564 Cvar_SetValueQuick (&crosshair, bound(0, crosshair.integer + dir, 6));
1565 else if (options_cursor == optnum++)
1566 Cvar_SetValueQuick (&crosshair_size, bound(1, crosshair_size.value + dir, 5));
1567 else if (options_cursor == optnum++)
1568 Cvar_SetValueQuick (&crosshair_static, !crosshair_static.integer);
1569 else if (options_cursor == optnum++)
1570 Cvar_SetValueQuick (&showfps, !showfps.integer);
1571 else if (options_cursor == optnum++)
1572 Cvar_SetValueQuick (&showtime, !showtime.integer);
1573 else if (options_cursor == optnum++)
1574 Cvar_SetValueQuick (&showdate, !showdate.integer);
1575 else if (options_cursor == optnum++)
1577 if (cl_forwardspeed.value > 200)
1579 Cvar_SetValueQuick (&cl_forwardspeed, 200);
1580 Cvar_SetValueQuick (&cl_backspeed, 200);
1584 Cvar_SetValueQuick (&cl_forwardspeed, 400);
1585 Cvar_SetValueQuick (&cl_backspeed, 400);
1588 else if (options_cursor == optnum++)
1589 Cvar_SetValueQuick (&lookspring, !lookspring.integer);
1590 else if (options_cursor == optnum++)
1591 Cvar_SetValueQuick (&lookstrafe, !lookstrafe.integer);
1592 else if (options_cursor == optnum++)
1593 Cvar_SetValueQuick (&sensitivity, bound(1, sensitivity.value + dir * 0.5, 50));
1594 else if (options_cursor == optnum++)
1595 Cvar_SetValueQuick (&freelook, !freelook.integer);
1596 else if (options_cursor == optnum++)
1597 Cvar_SetValueQuick (&m_pitch, -m_pitch.value);
1598 else if (options_cursor == optnum++)
1599 Cvar_SetValueQuick (&vid_mouse, !vid_mouse.integer);
1606 void M_Options_PrintCommand(char *s, int enabled)
1610 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1611 M_ItemPrint(0, opty, s, enabled);
1617 void M_Options_PrintCheckbox(char *s, int enabled, int yes)
1621 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1622 M_ItemPrint(0, opty, s, enabled);
1623 M_DrawCheckbox(0 + (int)strlen(s) * 8 + 8, opty, yes);
1629 void M_Options_PrintSlider(char *s, int enabled, float value, float minvalue, float maxvalue)
1633 DrawQ_Fill(menu_x, menu_y + opty, 320, 8, optnum == optcursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
1634 M_ItemPrint(0, opty, s, enabled);
1635 M_DrawSlider(0 + (int)strlen(s) * 8 + 8, opty, value, minvalue, maxvalue);
1641 void M_Options_Draw (void)
1646 M_Background(320, bound(200, 32 + OPTIONS_ITEMS * 8, vid_conheight.integer));
1648 M_DrawPic(16, 4, "gfx/qplaque.lmp");
1649 p = Draw_CachePic("gfx/p_option.lmp", false);
1650 M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1653 optcursor = options_cursor;
1654 visible = (menu_height - 32) / 8;
1655 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_ITEMS - visible)) * 8;
1657 M_Options_PrintCommand( "Customize controls", true);
1658 M_Options_PrintCommand( " Go to console", true);
1659 M_Options_PrintCommand( " Reset to defaults", true);
1660 M_Options_PrintCommand( " Video", true);
1661 M_Options_PrintCommand( " Effects", true);
1662 M_Options_PrintCommand( " Graphics", true);
1663 M_Options_PrintCommand( " Color Control", true);
1664 M_Options_PrintSlider( " 2D Screen Width ", true, vid_conwidth.value, 320, 2048);
1665 M_Options_PrintSlider( " 2D Screen Height", true, vid_conheight.value, 240, 1536);
1666 M_Options_PrintSlider( " Console Speed", true, scr_conspeed.value, 0, 1000);
1667 M_Options_PrintSlider( " Console Alpha", true, scr_conalpha.value, 0, 1);
1668 M_Options_PrintSlider( "Conback Brightness", true, scr_conbrightness.value, 0, 1);
1669 M_Options_PrintSlider( " Sbar Alpha BG", true, sbar_alpha_bg.value, 0, 1);
1670 M_Options_PrintSlider( " Sbar Alpha FG", true, sbar_alpha_fg.value, 0, 1);
1671 M_Options_PrintSlider( " Screen size", true, scr_viewsize.value, 30, 120);
1672 M_Options_PrintSlider( " Field of View", true, scr_fov.integer, 1, 170);
1673 M_Options_PrintCheckbox(" JPEG screenshots", jpeg_dll != NULL, scr_screenshot_jpeg.integer);
1674 M_Options_PrintSlider( " JPEG quality", jpeg_dll != NULL, scr_screenshot_jpeg_quality.value, 0, 1);
1675 M_Options_PrintCheckbox(" Sky", true, r_sky.integer);
1676 M_Options_PrintCheckbox(" Dithering", true, gl_dither.integer);
1677 M_Options_PrintSlider( "Anisotropic Filter", gl_support_anisotropy, gl_texture_anisotropy.integer, 1, gl_max_anisotropy);
1678 M_Options_PrintSlider( " Game Speed", sv.active, slowmo.value, 0, 5);
1679 M_Options_PrintSlider( " CD Music Volume", cdaudioinitialized.integer, bgmvolume.value, 0, 1);
1680 M_Options_PrintSlider( " Sound Volume", snd_initialized.integer, volume.value, 0, 1);
1681 M_Options_PrintSlider(gamemode == GAME_GOODVSBAD2 ? " Music Volume" : " Ambient Volume", snd_initialized.integer, snd_staticvolume.value, 0, 1);
1682 M_Options_PrintCheckbox(" Text Shadow", true, r_textshadow.integer);
1683 M_Options_PrintSlider( " Crosshair", true, crosshair.value, 0, 5);
1684 M_Options_PrintSlider( " Crosshair Size", true, crosshair_size.value, 1, 5);
1685 M_Options_PrintCheckbox(" Static Crosshair", true, crosshair_static.integer);
1686 M_Options_PrintCheckbox(" Show Framerate", true, showfps.integer);
1687 M_Options_PrintCheckbox(" Show Time", true, showtime.integer);
1688 M_Options_PrintCheckbox(" Show Date", true, showdate.integer);
1689 M_Options_PrintCheckbox(" Always Run", true, cl_forwardspeed.value > 200);
1690 M_Options_PrintCheckbox(" Lookspring", true, lookspring.integer);
1691 M_Options_PrintCheckbox(" Lookstrafe", true, lookstrafe.integer);
1692 M_Options_PrintSlider( " Mouse Speed", true, sensitivity.value, 1, 50);
1693 M_Options_PrintCheckbox(" Mouse Look", true, freelook.integer);
1694 M_Options_PrintCheckbox(" Invert Mouse", true, m_pitch.value < 0);
1695 M_Options_PrintCheckbox(" Use Mouse", true, vid_mouse.integer);
1699 void M_Options_Key (int k, char ascii)
1708 m_entersound = true;
1709 switch (options_cursor)
1716 key_dest = key_game;
1717 Con_ToggleConsole_f ();
1726 M_Menu_Options_Effects_f ();
1729 M_Menu_Options_Graphics_f ();
1732 M_Menu_Options_ColorControl_f ();
1735 M_Menu_Options_AdjustSliders (1);
1741 S_LocalSound ("sound/misc/menu1.wav");
1743 if (options_cursor < 0)
1744 options_cursor = OPTIONS_ITEMS-1;
1748 S_LocalSound ("sound/misc/menu1.wav");
1750 if (options_cursor >= OPTIONS_ITEMS)
1755 M_Menu_Options_AdjustSliders (-1);
1759 M_Menu_Options_AdjustSliders (1);
1764 #define OPTIONS_EFFECTS_ITEMS 37
1766 int options_effects_cursor;
1768 void M_Menu_Options_Effects_f (void)
1770 key_dest = key_menu;
1771 m_state = m_options_effects;
1772 m_entersound = true;
1776 extern cvar_t r_detailtextures;
1777 extern cvar_t cl_stainmaps;
1778 extern cvar_t cl_stainmaps_clearonload;
1779 extern cvar_t r_explosionclip;
1780 extern cvar_t r_modellights;
1781 extern cvar_t r_coronas;
1782 extern cvar_t gl_flashblend;
1783 extern cvar_t cl_beams_polygon;
1784 extern cvar_t cl_beams_relative;
1785 extern cvar_t cl_beams_lightatend;
1786 extern cvar_t r_lightningbeam_thickness;
1787 extern cvar_t r_lightningbeam_scroll;
1788 extern cvar_t r_lightningbeam_repeatdistance;
1789 extern cvar_t r_lightningbeam_color_red;
1790 extern cvar_t r_lightningbeam_color_green;
1791 extern cvar_t r_lightningbeam_color_blue;
1792 extern cvar_t r_lightningbeam_qmbtexture;
1794 void M_Menu_Options_Effects_AdjustSliders (int dir)
1797 S_LocalSound ("sound/misc/menu3.wav");
1800 if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_modellights, bound(0, r_modellights.value + dir, 8));
1801 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_coronas, bound(0, r_coronas.value + dir * 0.125, 4));
1802 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&gl_flashblend, !gl_flashblend.integer);
1803 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles, !cl_particles.integer);
1804 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_quality, bound(1, cl_particles_quality.value + dir * 0.5, 4));
1805 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_explosions_shell, !cl_particles_explosions_shell.integer);
1806 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_explosionclip, !r_explosionclip.integer);
1807 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_stainmaps, !cl_stainmaps.integer);
1808 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_stainmaps_clearonload, !cl_stainmaps_clearonload.integer);
1809 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_decals, !cl_decals.integer);
1810 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_detailtextures, !r_detailtextures.integer);
1811 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_bulletimpacts, !cl_particles_bulletimpacts.integer);
1812 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_smoke, !cl_particles_smoke.integer);
1813 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_sparks, !cl_particles_sparks.integer);
1814 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_bubbles, !cl_particles_bubbles.integer);
1815 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood, !cl_particles_blood.integer);
1816 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood_alpha, bound(0.2, cl_particles_blood_alpha.value + dir * 0.1, 1));
1817 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_particles_blood_bloodhack, !cl_particles_blood_bloodhack.integer);
1818 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_polygons, !cl_beams_polygons.integer);
1819 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_relative, !cl_beams_relative.integer);
1820 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&cl_beams_lightatend, !cl_beams_lightatend.integer);
1821 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_thickness, bound(1, r_lightningbeam_thickness.integer + dir, 10));
1822 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_scroll, bound(0, r_lightningbeam_scroll.integer + dir, 10));
1823 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_repeatdistance, bound(64, r_lightningbeam_repeatdistance.integer + dir * 64, 1024));
1824 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_red, bound(0, r_lightningbeam_color_red.value + dir * 0.1, 1));
1825 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_green, bound(0, r_lightningbeam_color_green.value + dir * 0.1, 1));
1826 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_color_blue, bound(0, r_lightningbeam_color_blue.value + dir * 0.1, 1));
1827 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lightningbeam_qmbtexture, !r_lightningbeam_qmbtexture.integer);
1828 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lerpmodels, !r_lerpmodels.integer);
1829 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_lerpsprites, !r_lerpsprites.integer);
1830 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&gl_polyblend, bound(0, gl_polyblend.value + dir * 0.1, 1));
1831 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_skyscroll1, bound(-8, r_skyscroll1.value + dir * 0.1, 8));
1832 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_skyscroll2, bound(-8, r_skyscroll2.value + dir * 0.1, 8));
1833 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_waterwarp, bound(0, r_waterwarp.value + dir * 0.1, 1));
1834 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_wateralpha, bound(0, r_wateralpha.value + dir * 0.1, 1));
1835 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_waterscroll, bound(0, r_waterscroll.value + dir * 0.5, 10));
1836 else if (options_effects_cursor == optnum++) Cvar_SetValueQuick (&r_watershader, bound(0, r_watershader.value + dir * 0.25, 10));
1839 void M_Options_Effects_Draw (void)
1844 M_Background(320, bound(200, 32 + OPTIONS_EFFECTS_ITEMS * 8, vid_conheight.integer));
1846 M_DrawPic(16, 4, "gfx/qplaque.lmp");
1847 p = Draw_CachePic("gfx/p_option.lmp", false);
1848 M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1850 optcursor = options_effects_cursor;
1852 visible = (menu_height - 32) / 8;
1853 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_EFFECTS_ITEMS - visible)) * 8;
1855 M_Options_PrintSlider( " Lights Per Model", true, r_modellights.value, 0, 8);
1856 M_Options_PrintSlider( " Corona Intensity", true, r_coronas.value, 0, 4);
1857 M_Options_PrintCheckbox(" Use Only Coronas", true, gl_flashblend.integer);
1858 M_Options_PrintCheckbox(" Particles", true, cl_particles.integer);
1859 M_Options_PrintSlider( " Particles Quality", true, cl_particles_quality.value, 1, 4);
1860 M_Options_PrintCheckbox(" Explosion Shell", true, cl_particles_explosions_shell.integer);
1861 M_Options_PrintCheckbox(" Explosion Shell Clip", true, r_explosionclip.integer);
1862 M_Options_PrintCheckbox(" Stainmaps", true, cl_stainmaps.integer);
1863 M_Options_PrintCheckbox("Onload Clear Stainmaps", true, cl_stainmaps_clearonload.integer);
1864 M_Options_PrintCheckbox(" Decals", true, cl_decals.integer);
1865 M_Options_PrintCheckbox(" Detail Texturing", true, r_detailtextures.integer);
1866 M_Options_PrintCheckbox(" Bullet Impacts", true, cl_particles_bulletimpacts.integer);
1867 M_Options_PrintCheckbox(" Smoke", true, cl_particles_smoke.integer);
1868 M_Options_PrintCheckbox(" Sparks", true, cl_particles_sparks.integer);
1869 M_Options_PrintCheckbox(" Bubbles", true, cl_particles_bubbles.integer);
1870 M_Options_PrintCheckbox(" Blood", true, cl_particles_blood.integer);
1871 M_Options_PrintSlider( " Blood Opacity", true, cl_particles_blood_alpha.value, 0.2, 1);
1872 M_Options_PrintCheckbox("Force New Blood Effect", true, cl_particles_blood_bloodhack.integer);
1873 M_Options_PrintCheckbox(" Lightning Polygons", true, cl_beams_polygons.integer);
1874 M_Options_PrintCheckbox("Lightning Smooth Sweep", true, cl_beams_relative.integer);
1875 M_Options_PrintCheckbox(" Lightning End Light", true, cl_beams_lightatend.integer);
1876 M_Options_PrintSlider( " Lightning Thickness", cl_beams_polygons.integer, r_lightningbeam_thickness.integer, 1, 10);
1877 M_Options_PrintSlider( " Lightning Scroll", cl_beams_polygons.integer, r_lightningbeam_scroll.integer, 0, 10);
1878 M_Options_PrintSlider( " Lightning Repeat Dist", cl_beams_polygons.integer, r_lightningbeam_repeatdistance.integer, 64, 1024);
1879 M_Options_PrintSlider( " Lightning Color Red", cl_beams_polygons.integer, r_lightningbeam_color_red.value, 0, 1);
1880 M_Options_PrintSlider( " Lightning Color Green", cl_beams_polygons.integer, r_lightningbeam_color_green.value, 0, 1);
1881 M_Options_PrintSlider( " Lightning Color Blue", cl_beams_polygons.integer, r_lightningbeam_color_blue.value, 0, 1);
1882 M_Options_PrintCheckbox(" Lightning QMB Texture", cl_beams_polygons.integer, r_lightningbeam_qmbtexture.integer);
1883 M_Options_PrintCheckbox(" Model Interpolation", true, r_lerpmodels.integer);
1884 M_Options_PrintCheckbox(" Sprite Interpolation", true, r_lerpsprites.integer);
1885 M_Options_PrintSlider( " View Blend", true, gl_polyblend.value, 0, 1);
1886 M_Options_PrintSlider( "Upper Sky Scroll Speed", true, r_skyscroll1.value, -8, 8);
1887 M_Options_PrintSlider( "Lower Sky Scroll Speed", true, r_skyscroll2.value, -8, 8);
1888 M_Options_PrintSlider( " Underwater View Warp", true, r_waterwarp.value, 0, 1);
1889 M_Options_PrintSlider( " Water Alpha (opacity)", true, r_wateralpha.value, 0, 1);
1890 M_Options_PrintSlider( " Water Movement", true, r_waterscroll.value, 0, 10);
1891 M_Options_PrintSlider( " GeForce3 Water Shader", true, r_watershader.value, 0, 10);
1895 void M_Options_Effects_Key (int k, char ascii)
1900 M_Menu_Options_f ();
1904 M_Menu_Options_Effects_AdjustSliders (1);
1908 S_LocalSound ("sound/misc/menu1.wav");
1909 options_effects_cursor--;
1910 if (options_effects_cursor < 0)
1911 options_effects_cursor = OPTIONS_EFFECTS_ITEMS-1;
1915 S_LocalSound ("sound/misc/menu1.wav");
1916 options_effects_cursor++;
1917 if (options_effects_cursor >= OPTIONS_EFFECTS_ITEMS)
1918 options_effects_cursor = 0;
1922 M_Menu_Options_Effects_AdjustSliders (-1);
1926 M_Menu_Options_Effects_AdjustSliders (1);
1932 #define OPTIONS_GRAPHICS_ITEMS 14
1934 int options_graphics_cursor;
1936 void M_Menu_Options_Graphics_f (void)
1938 key_dest = key_menu;
1939 m_state = m_options_graphics;
1940 m_entersound = true;
1943 extern cvar_t r_shadow_gloss;
1944 extern cvar_t r_shadow_realtime_dlight;
1945 extern cvar_t r_shadow_realtime_dlight_shadows;
1946 extern cvar_t r_shadow_realtime_world;
1947 extern cvar_t r_shadow_realtime_world_dlightshadows;
1948 extern cvar_t r_shadow_realtime_world_lightmaps;
1949 extern cvar_t r_shadow_realtime_world_shadows;
1950 extern cvar_t r_bloom;
1951 extern cvar_t r_bloom_intensity;
1952 extern cvar_t r_bloom_power;
1953 extern cvar_t r_bloom_blur;
1954 extern cvar_t r_bloom_resolution;
1955 extern cvar_t gl_picmip;
1957 void M_Menu_Options_Graphics_AdjustSliders (int dir)
1960 S_LocalSound ("sound/misc/menu3.wav");
1964 if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_gloss, bound(0, r_shadow_gloss.integer + dir, 2));
1965 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_dlight, !r_shadow_realtime_dlight.integer);
1966 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_dlight_shadows, !r_shadow_realtime_dlight_shadows.integer);
1967 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world, !r_shadow_realtime_world.integer);
1968 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_dlightshadows, !r_shadow_realtime_world_dlightshadows.integer);
1969 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));
1970 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_shadow_realtime_world_shadows, !r_shadow_realtime_world_shadows.integer);
1971 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom, !r_bloom.integer);
1972 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_intensity, bound(1, r_bloom_intensity.value + dir * 1, 16));
1973 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_power, bound(1, r_bloom_power.value + dir * 1, 16));
1974 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_blur, bound(1, r_bloom_blur.value + dir * 1, 16));
1975 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&r_bloom_resolution, bound(64, r_bloom_resolution.value + dir * 64, 2048));
1976 else if (options_graphics_cursor == optnum++) Cvar_SetValueQuick (&gl_picmip, bound(0, gl_picmip.value - dir, 3));
1977 else if (options_graphics_cursor == optnum++) Cbuf_AddText ("r_restart\n");
1981 void M_Options_Graphics_Draw (void)
1986 M_Background(320, bound(200, 32 + OPTIONS_GRAPHICS_ITEMS * 8, vid_conheight.integer));
1988 M_DrawPic(16, 4, "gfx/qplaque.lmp");
1989 p = Draw_CachePic("gfx/p_option.lmp", false);
1990 M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
1992 optcursor = options_graphics_cursor;
1994 visible = (menu_height - 32) / 8;
1995 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_GRAPHICS_ITEMS - visible)) * 8;
1997 M_Options_PrintSlider( " Gloss Mode", true, r_shadow_gloss.integer, 0, 2);
1998 M_Options_PrintCheckbox(" RT DLights", true, r_shadow_realtime_dlight.integer);
1999 M_Options_PrintCheckbox(" RT DLight Shadows", true, r_shadow_realtime_dlight_shadows.integer);
2000 M_Options_PrintCheckbox(" RT World", true, r_shadow_realtime_world.integer);
2001 M_Options_PrintCheckbox("RT World DLight Shadows", true, r_shadow_realtime_world_dlightshadows.integer);
2002 M_Options_PrintSlider( " RT World Lightmaps", true, r_shadow_realtime_world_lightmaps.value, 0, 1);
2003 M_Options_PrintCheckbox(" RT World Shadow", true, r_shadow_realtime_world_shadows.integer);
2004 M_Options_PrintCheckbox(" Bloom Effect", true, r_bloom.integer);
2005 M_Options_PrintSlider( " Bloom Intensity", true, r_bloom_intensity.value, 1, 16);
2006 M_Options_PrintSlider( " Bloom Power", true, r_bloom_power.value, 1, 16);
2007 M_Options_PrintSlider( " Bloom Blur", true, r_bloom_blur.value, 1, 16);
2008 M_Options_PrintSlider( " Bloom Resolution", true, r_bloom_resolution.value, 64, 2048);
2009 M_Options_PrintSlider( " Texture Quality", true, gl_picmip.value, 3, 0);
2010 M_Options_PrintCommand( " Restart Renderer", true);
2014 void M_Options_Graphics_Key (int k, char ascii)
2019 M_Menu_Options_f ();
2023 M_Menu_Options_Graphics_AdjustSliders (1);
2027 S_LocalSound ("sound/misc/menu1.wav");
2028 options_graphics_cursor--;
2029 if (options_graphics_cursor < 0)
2030 options_graphics_cursor = OPTIONS_GRAPHICS_ITEMS-1;
2034 S_LocalSound ("sound/misc/menu1.wav");
2035 options_graphics_cursor++;
2036 if (options_graphics_cursor >= OPTIONS_GRAPHICS_ITEMS)
2037 options_graphics_cursor = 0;
2041 M_Menu_Options_Graphics_AdjustSliders (-1);
2045 M_Menu_Options_Graphics_AdjustSliders (1);
2051 #define OPTIONS_COLORCONTROL_ITEMS 18
2053 int options_colorcontrol_cursor;
2055 // intensity value to match up to 50% dither to 'correct' quake
2056 cvar_t menu_options_colorcontrol_correctionvalue = {0, "menu_options_colorcontrol_correctionvalue", "0.25"};
2058 void M_Menu_Options_ColorControl_f (void)
2060 key_dest = key_menu;
2061 m_state = m_options_colorcontrol;
2062 m_entersound = true;
2066 void M_Menu_Options_ColorControl_AdjustSliders (int dir)
2070 S_LocalSound ("sound/misc/menu3.wav");
2073 if (options_colorcontrol_cursor == optnum++)
2074 Cvar_SetValueQuick (&v_hwgamma, !v_hwgamma.integer);
2075 else if (options_colorcontrol_cursor == optnum++)
2077 Cvar_SetValueQuick (&v_color_enable, 0);
2078 Cvar_SetValueQuick (&v_gamma, bound(1, v_gamma.value + dir * 0.125, 5));
2080 else if (options_colorcontrol_cursor == optnum++)
2082 Cvar_SetValueQuick (&v_color_enable, 0);
2083 Cvar_SetValueQuick (&v_contrast, bound(1, v_contrast.value + dir * 0.125, 5));
2085 else if (options_colorcontrol_cursor == optnum++)
2087 Cvar_SetValueQuick (&v_color_enable, 0);
2088 Cvar_SetValueQuick (&v_brightness, bound(0, v_brightness.value + dir * 0.05, 0.8));
2090 else if (options_colorcontrol_cursor == optnum++)
2092 Cvar_SetValueQuick (&v_color_enable, !v_color_enable.integer);
2094 else if (options_colorcontrol_cursor == optnum++)
2096 Cvar_SetValueQuick (&v_color_enable, 1);
2097 Cvar_SetValueQuick (&v_color_black_r, bound(0, v_color_black_r.value + dir * 0.0125, 0.8));
2099 else if (options_colorcontrol_cursor == optnum++)
2101 Cvar_SetValueQuick (&v_color_enable, 1);
2102 Cvar_SetValueQuick (&v_color_black_g, bound(0, v_color_black_g.value + dir * 0.0125, 0.8));
2104 else if (options_colorcontrol_cursor == optnum++)
2106 Cvar_SetValueQuick (&v_color_enable, 1);
2107 Cvar_SetValueQuick (&v_color_black_b, bound(0, v_color_black_b.value + dir * 0.0125, 0.8));
2109 else if (options_colorcontrol_cursor == optnum++)
2111 Cvar_SetValueQuick (&v_color_enable, 1);
2112 f = bound(0, (v_color_black_r.value + v_color_black_g.value + v_color_black_b.value) / 3 + dir * 0.0125, 0.8);
2113 Cvar_SetValueQuick (&v_color_black_r, f);
2114 Cvar_SetValueQuick (&v_color_black_g, f);
2115 Cvar_SetValueQuick (&v_color_black_b, f);
2117 else if (options_colorcontrol_cursor == optnum++)
2119 Cvar_SetValueQuick (&v_color_enable, 1);
2120 Cvar_SetValueQuick (&v_color_grey_r, bound(0, v_color_grey_r.value + dir * 0.0125, 0.95));
2122 else if (options_colorcontrol_cursor == optnum++)
2124 Cvar_SetValueQuick (&v_color_enable, 1);
2125 Cvar_SetValueQuick (&v_color_grey_g, bound(0, v_color_grey_g.value + dir * 0.0125, 0.95));
2127 else if (options_colorcontrol_cursor == optnum++)
2129 Cvar_SetValueQuick (&v_color_enable, 1);
2130 Cvar_SetValueQuick (&v_color_grey_b, bound(0, v_color_grey_b.value + dir * 0.0125, 0.95));
2132 else if (options_colorcontrol_cursor == optnum++)
2134 Cvar_SetValueQuick (&v_color_enable, 1);
2135 f = bound(0, (v_color_grey_r.value + v_color_grey_g.value + v_color_grey_b.value) / 3 + dir * 0.0125, 0.95);
2136 Cvar_SetValueQuick (&v_color_grey_r, f);
2137 Cvar_SetValueQuick (&v_color_grey_g, f);
2138 Cvar_SetValueQuick (&v_color_grey_b, f);
2140 else if (options_colorcontrol_cursor == optnum++)
2142 Cvar_SetValueQuick (&v_color_enable, 1);
2143 Cvar_SetValueQuick (&v_color_white_r, bound(1, v_color_white_r.value + dir * 0.125, 5));
2145 else if (options_colorcontrol_cursor == optnum++)
2147 Cvar_SetValueQuick (&v_color_enable, 1);
2148 Cvar_SetValueQuick (&v_color_white_g, bound(1, v_color_white_g.value + dir * 0.125, 5));
2150 else if (options_colorcontrol_cursor == optnum++)
2152 Cvar_SetValueQuick (&v_color_enable, 1);
2153 Cvar_SetValueQuick (&v_color_white_b, bound(1, v_color_white_b.value + dir * 0.125, 5));
2155 else if (options_colorcontrol_cursor == optnum++)
2157 Cvar_SetValueQuick (&v_color_enable, 1);
2158 f = bound(1, (v_color_white_r.value + v_color_white_g.value + v_color_white_b.value) / 3 + dir * 0.125, 5);
2159 Cvar_SetValueQuick (&v_color_white_r, f);
2160 Cvar_SetValueQuick (&v_color_white_g, f);
2161 Cvar_SetValueQuick (&v_color_white_b, f);
2165 void M_Options_ColorControl_Draw (void)
2168 float x, c, s, t, u, v;
2171 M_Background(320, 256);
2173 M_DrawPic(16, 4, "gfx/qplaque.lmp");
2174 p = Draw_CachePic("gfx/p_option.lmp", false);
2175 M_DrawPic((320-p->width)/2, 4, "gfx/p_option.lmp");
2177 optcursor = options_colorcontrol_cursor;
2179 visible = (menu_height - 32) / 8;
2180 opty = 32 - bound(0, optcursor - (visible >> 1), max(0, OPTIONS_COLORCONTROL_ITEMS - visible)) * 8;
2182 M_Options_PrintCommand( " Reset to defaults", true);
2183 M_Options_PrintCheckbox("Hardware Gamma Control", vid_hardwaregammasupported.integer, v_hwgamma.integer);
2184 M_Options_PrintSlider( " Gamma", !v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_gamma.value, 1, 5);
2185 M_Options_PrintSlider( " Contrast", !v_color_enable.integer, v_contrast.value, 1, 5);
2186 M_Options_PrintSlider( " Brightness", !v_color_enable.integer, v_brightness.value, 0, 0.8);
2187 M_Options_PrintCheckbox(" Color Level Controls", true, v_color_enable.integer);
2188 M_Options_PrintSlider( " Black: Red ", v_color_enable.integer, v_color_black_r.value, 0, 0.8);
2189 M_Options_PrintSlider( " Black: Green", v_color_enable.integer, v_color_black_g.value, 0, 0.8);
2190 M_Options_PrintSlider( " Black: Blue ", v_color_enable.integer, v_color_black_b.value, 0, 0.8);
2191 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);
2192 M_Options_PrintSlider( " Grey: Red ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_r.value, 0, 0.95);
2193 M_Options_PrintSlider( " Grey: Green", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_g.value, 0, 0.95);
2194 M_Options_PrintSlider( " Grey: Blue ", v_color_enable.integer && vid_hardwaregammasupported.integer && v_hwgamma.integer, v_color_grey_b.value, 0, 0.95);
2195 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);
2196 M_Options_PrintSlider( " White: Red ", v_color_enable.integer, v_color_white_r.value, 1, 5);
2197 M_Options_PrintSlider( " White: Green", v_color_enable.integer, v_color_white_g.value, 1, 5);
2198 M_Options_PrintSlider( " White: Blue ", v_color_enable.integer, v_color_white_b.value, 1, 5);
2199 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);
2202 DrawQ_Fill(menu_x, menu_y + opty, 320, 4 + 64 + 8 + 64 + 4, 0, 0, 0, 1, 0);opty += 4;
2203 s = (float) 312 / 2 * vid.width / vid_conwidth.integer;
2204 t = (float) 4 / 2 * vid.height / vid_conheight.integer;
2205 DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);opty += 4;
2206 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;
2207 DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);opty += 4;
2208 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;
2209 DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);opty += 4;
2210 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;
2211 DrawQ_SuperPic(menu_x + 4, menu_y + opty, "gfx/colorcontrol/ditherpattern.tga", 312, 4, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);opty += 4;
2212 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;
2214 c = menu_options_colorcontrol_correctionvalue.value; // intensity value that should be matched up to a 50% dither to 'correct' quake
2215 s = (float) 48 / 2 * vid.width / vid_conwidth.integer;
2216 t = (float) 48 / 2 * vid.height / vid_conheight.integer;
2221 DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, c, 0, 0, 1, 0);
2222 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,0,0,1, s,0, 1,0,0,1, 0,t, 1,0,0,1, s,t, 1,0,0,1, 0);
2223 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,0,0,1, u,0, 1,0,0,1, 0,v, 1,0,0,1, u,v, 1,0,0,1, 0);
2225 DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, 0, c, 0, 1, 0);
2226 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,1,0,1, s,0, 0,1,0,1, 0,t, 0,1,0,1, s,t, 0,1,0,1, 0);
2227 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,1,0,1, u,0, 0,1,0,1, 0,v, 0,1,0,1, u,v, 0,1,0,1, 0);
2229 DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, 0, 0, c, 1, 0);
2230 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,0,1,1, s,0, 0,0,1,1, 0,t, 0,0,1,1, s,t, 0,0,1,1, 0);
2231 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 0,0,1,1, u,0, 0,0,1,1, 0,v, 0,0,1,1, u,v, 0,0,1,1, 0);
2233 DrawQ_Fill(menu_x + x, menu_y + opty, 64, 48, c, c, c, 1, 0);
2234 DrawQ_SuperPic(menu_x + x + 16, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,1,1,1, s,0, 1,1,1,1, 0,t, 1,1,1,1, s,t, 1,1,1,1, 0);
2235 DrawQ_SuperPic(menu_x + x + 32, menu_y + opty + 16, "gfx/colorcontrol/ditherpattern.tga", 16, 16, 0,0, 1,1,1,1, u,0, 1,1,1,1, 0,v, 1,1,1,1, u,v, 1,1,1,1, 0);
2239 void M_Options_ColorControl_Key (int k, char ascii)
2244 M_Menu_Options_f ();
2248 m_entersound = true;
2249 switch (options_colorcontrol_cursor)
2252 Cvar_SetValueQuick(&v_hwgamma, 1);
2253 Cvar_SetValueQuick(&v_gamma, 1);
2254 Cvar_SetValueQuick(&v_contrast, 1);
2255 Cvar_SetValueQuick(&v_brightness, 0);
2256 Cvar_SetValueQuick(&v_color_enable, 0);
2257 Cvar_SetValueQuick(&v_color_black_r, 0);
2258 Cvar_SetValueQuick(&v_color_black_g, 0);
2259 Cvar_SetValueQuick(&v_color_black_b, 0);
2260 Cvar_SetValueQuick(&v_color_grey_r, 0);
2261 Cvar_SetValueQuick(&v_color_grey_g, 0);
2262 Cvar_SetValueQuick(&v_color_grey_b, 0);
2263 Cvar_SetValueQuick(&v_color_white_r, 1);
2264 Cvar_SetValueQuick(&v_color_white_g, 1);
2265 Cvar_SetValueQuick(&v_color_white_b, 1);
2268 M_Menu_Options_ColorControl_AdjustSliders (1);
2274 S_LocalSound ("sound/misc/menu1.wav");
2275 options_colorcontrol_cursor--;
2276 if (options_colorcontrol_cursor < 0)
2277 options_colorcontrol_cursor = OPTIONS_COLORCONTROL_ITEMS-1;
2281 S_LocalSound ("sound/misc/menu1.wav");
2282 options_colorcontrol_cursor++;
2283 if (options_colorcontrol_cursor >= OPTIONS_COLORCONTROL_ITEMS)
2284 options_colorcontrol_cursor = 0;
2288 M_Menu_Options_ColorControl_AdjustSliders (-1);
2292 M_Menu_Options_ColorControl_AdjustSliders (1);
2298 //=============================================================================
2301 char *quakebindnames[][2] =
2303 {"+attack", "attack"},
2304 {"impulse 10", "next weapon"},
2305 {"impulse 12", "previous weapon"},
2306 {"+jump", "jump / swim up"},
2307 {"+forward", "walk forward"},
2308 {"+back", "backpedal"},
2309 {"+left", "turn left"},
2310 {"+right", "turn right"},
2312 {"+moveleft", "step left"},
2313 {"+moveright", "step right"},
2314 {"+strafe", "sidestep"},
2315 {"+lookup", "look up"},
2316 {"+lookdown", "look down"},
2317 {"centerview", "center view"},
2318 {"+mlook", "mouse look"},
2319 {"+klook", "keyboard look"},
2320 {"+moveup", "swim up"},
2321 {"+movedown", "swim down"}
2324 char *transfusionbindnames[][2] =
2326 {"", "Movement"}, // Movement commands
2327 {"+forward", "walk forward"},
2328 {"+back", "backpedal"},
2329 {"+left", "turn left"},
2330 {"+right", "turn right"},
2331 {"+moveleft", "step left"},
2332 {"+moveright", "step right"},
2333 {"+jump", "jump / swim up"},
2334 {"+movedown", "swim down"},
2335 {"", "Combat"}, // Combat commands
2336 {"impulse 1", "Pitch Fork"},
2337 {"impulse 2", "Flare Gun"},
2338 {"impulse 3", "Shotgun"},
2339 {"impulse 4", "Machine Gun"},
2340 {"impulse 5", "Incinerator"},
2341 {"impulse 6", "Bombs (TNT)"},
2342 {"impulse 35", "Proximity Bomb"},
2343 {"impulse 36", "Remote Detonator"},
2344 {"impulse 7", "Aerosol Can"},
2345 {"impulse 8", "Tesla Cannon"},
2346 {"impulse 9", "Life Leech"},
2347 {"impulse 10", "Voodoo Doll"},
2348 {"impulse 21", "next weapon"},
2349 {"impulse 22", "previous weapon"},
2350 {"+attack", "attack"},
2351 {"+button3", "altfire"},
2352 {"", "Inventory"}, // Inventory commands
2353 {"impulse 40", "Dr.'s Bag"},
2354 {"impulse 41", "Crystal Ball"},
2355 {"impulse 42", "Beast Vision"},
2356 {"impulse 43", "Jump Boots"},
2357 {"impulse 23", "next item"},
2358 {"impulse 24", "previous item"},
2359 {"impulse 25", "use item"},
2360 {"", "Misc"}, // Misc commands
2361 {"+button4", "use"},
2362 {"impulse 50", "add bot (red)"},
2363 {"impulse 51", "add bot (blue)"},
2364 {"impulse 52", "kick a bot"},
2365 {"impulse 26", "next armor type"},
2366 {"impulse 27", "identify player"},
2367 {"impulse 55", "voting menu"},
2368 {"impulse 56", "observer mode"},
2369 {"", "Taunts"}, // Taunts
2370 {"impulse 70", "taunt 0"},
2371 {"impulse 71", "taunt 1"},
2372 {"impulse 72", "taunt 2"},
2373 {"impulse 73", "taunt 3"},
2374 {"impulse 74", "taunt 4"},
2375 {"impulse 75", "taunt 5"},
2376 {"impulse 76", "taunt 6"},
2377 {"impulse 77", "taunt 7"},
2378 {"impulse 78", "taunt 8"},
2379 {"impulse 79", "taunt 9"}
2382 char *goodvsbad2bindnames[][2] =
2384 {"impulse 69", "Power 1"},
2385 {"impulse 70", "Power 2"},
2386 {"impulse 71", "Power 3"},
2387 {"+jump", "jump / swim up"},
2388 {"+forward", "walk forward"},
2389 {"+back", "backpedal"},
2390 {"+left", "turn left"},
2391 {"+right", "turn right"},
2393 {"+moveleft", "step left"},
2394 {"+moveright", "step right"},
2395 {"+strafe", "sidestep"},
2396 {"+lookup", "look up"},
2397 {"+lookdown", "look down"},
2398 {"centerview", "center view"},
2399 {"+mlook", "mouse look"},
2400 {"kill", "kill yourself"},
2401 {"+moveup", "swim up"},
2402 {"+movedown", "swim down"}
2406 char *(*bindnames)[2];
2409 typedef struct binditem_s
2411 char *command, *description;
2412 struct binditem_s *next;
2416 typedef struct bindcategory_s
2420 struct bindcategory_s *next;
2424 bindcategory_t *bindcategories = NULL;
2426 void M_ClearBinds (void)
2428 for (c = bindcategories;c;c = cnext)
2431 for (b = c->binds;b;b = bnext)
2438 bindcategories = NULL;
2441 void M_AddBindToCategory(bindcategory_t *c, char *command, char *description)
2443 for (b = &c->binds;*b;*b = &(*b)->next);
2444 *b = Z_Alloc(sizeof(binditem_t) + strlen(command) + 1 + strlen(description) + 1);
2445 *b->command = (char *)((*b) + 1);
2446 *b->description = *b->command + strlen(command) + 1;
2447 strcpy(*b->command, command);
2448 strcpy(*b->description, description);
2451 void M_AddBind (char *category, char *command, char *description)
2453 for (c = &bindcategories;*c;c = &(*c)->next)
2455 if (!strcmp(category, (*c)->name))
2457 M_AddBindToCategory(*c, command, description);
2461 *c = Z_Alloc(sizeof(bindcategory_t));
2462 M_AddBindToCategory(*c, command, description);
2465 void M_DefaultBinds (void)
2468 M_AddBind("movement", "+jump", "jump / swim up");
2469 M_AddBind("movement", "+forward", "walk forward");
2470 M_AddBind("movement", "+back", "backpedal");
2471 M_AddBind("movement", "+left", "turn left");
2472 M_AddBind("movement", "+right", "turn right");
2473 M_AddBind("movement", "+speed", "run");
2474 M_AddBind("movement", "+moveleft", "step left");
2475 M_AddBind("movement", "+moveright", "step right");
2476 M_AddBind("movement", "+strafe", "sidestep");
2477 M_AddBind("movement", "+lookup", "look up");
2478 M_AddBind("movement", "+lookdown", "look down");
2479 M_AddBind("movement", "centerview", "center view");
2480 M_AddBind("movement", "+mlook", "mouse look");
2481 M_AddBind("movement", "+klook", "keyboard look");
2482 M_AddBind("movement", "+moveup", "swim up");
2483 M_AddBind("movement", "+movedown", "swim down");
2484 M_AddBind("weapons", "+attack", "attack");
2485 M_AddBind("weapons", "impulse 10", "next weapon");
2486 M_AddBind("weapons", "impulse 12", "previous weapon");
2487 M_AddBind("weapons", "impulse 1", "select weapon 1 (axe)");
2488 M_AddBind("weapons", "impulse 2", "select weapon 2 (shotgun)");
2489 M_AddBind("weapons", "impulse 3", "select weapon 3 (super )");
2490 M_AddBind("weapons", "impulse 4", "select weapon 4 (nailgun)");
2491 M_AddBind("weapons", "impulse 5", "select weapon 5 (super nailgun)");
2492 M_AddBind("weapons", "impulse 6", "select weapon 6 (grenade launcher)");
2493 M_AddBind("weapons", "impulse 7", "select weapon 7 (rocket launcher)");
2494 M_AddBind("weapons", "impulse 8", "select weapon 8 (lightning gun)");
2502 void M_Menu_Keys_f (void)
2504 key_dest = key_menu;
2506 m_entersound = true;
2511 void M_FindKeysForCommand (const char *command, int *keys)
2517 for (j = 0;j < NUMKEYS;j++)
2522 for (j = 0; j < (int)sizeof (keybindings[0]) / (int)sizeof (keybindings[0][0]); j++)
2524 b = keybindings[0][j];
2527 if (!strcmp (b, command) )
2530 if (count == NUMKEYS)
2536 void M_UnbindCommand (char *command)
2541 for (j = 0; j < (int)sizeof (keybindings[0]) / (int)sizeof (keybindings[0][0]); j++)
2543 b = keybindings[0][j];
2546 if (!strcmp (b, command))
2547 Key_SetBinding (j, 0, "");
2552 void M_Keys_Draw (void)
2558 char keystring[1024];
2560 M_Background(320, 48 + 8 * numcommands);
2562 p = Draw_CachePic ("gfx/ttl_cstm.lmp", false);
2563 M_DrawPic ( (320-p->width)/2, 4, "gfx/ttl_cstm.lmp");
2566 M_Print(12, 32, "Press a key or button for this action");
2568 M_Print(18, 32, "Enter to change, backspace to clear");
2570 // search for known bindings
2571 for (i=0 ; i<numcommands ; i++)
2575 // If there's no command, it's just a section
2576 if (bindnames[i][0][0] == '\0')
2578 M_PrintRed (4, y, "\x0D"); // #13 is the little arrow pointing to the right
2579 M_PrintRed (16, y, bindnames[i][1]);
2583 M_Print(16, y, bindnames[i][1]);
2585 M_FindKeysForCommand (bindnames[i][0], keys);
2587 // LordHavoc: redesigned to print more than 2 keys, inspired by Tomaz's MiniRacer
2589 strcpy(keystring, "???");
2593 for (j = 0;j < NUMKEYS;j++)
2598 strcat(keystring, " or ");
2599 strcat(keystring, Key_KeynumToString (keys[j]));
2603 M_Print(150, y, keystring);
2607 M_DrawCharacter (140, 48 + keys_cursor*8, '=');
2609 M_DrawCharacter (140, 48 + keys_cursor*8, 12+((int)(realtime*4)&1));
2613 void M_Keys_Key (int k, char ascii)
2620 S_LocalSound ("sound/misc/menu1.wav");
2625 else //if (k != '`')
2627 sprintf (cmd, "bind \"%s\" \"%s\"\n", Key_KeynumToString (k), bindnames[keys_cursor][0]);
2628 Cbuf_InsertText (cmd);
2638 M_Menu_Options_f ();
2643 S_LocalSound ("sound/misc/menu1.wav");
2647 if (keys_cursor < 0)
2648 keys_cursor = numcommands-1;
2650 while (bindnames[keys_cursor][0][0] == '\0'); // skip sections
2655 S_LocalSound ("sound/misc/menu1.wav");
2659 if (keys_cursor >= numcommands)
2662 while (bindnames[keys_cursor][0][0] == '\0'); // skip sections
2665 case K_ENTER: // go into bind mode
2666 M_FindKeysForCommand (bindnames[keys_cursor][0], keys);
2667 S_LocalSound ("sound/misc/menu2.wav");
2668 if (keys[NUMKEYS - 1] != -1)
2669 M_UnbindCommand (bindnames[keys_cursor][0]);
2673 case K_BACKSPACE: // delete bindings
2674 case K_DEL: // delete bindings
2675 S_LocalSound ("sound/misc/menu2.wav");
2676 M_UnbindCommand (bindnames[keys_cursor][0]);
2681 void M_Menu_Reset_f (void)
2683 key_dest = key_menu;
2685 m_entersound = true;
2689 void M_Reset_Key (int key, char ascii)
2695 Cbuf_AddText ("exec default.cfg\n");
2696 // no break here since we also exit the menu
2701 m_state = m_options;
2702 m_entersound = true;
2710 void M_Reset_Draw (void)
2712 int lines = 2, linelength = 20;
2713 M_Background(linelength * 8 + 16, lines * 8 + 16);
2714 M_DrawTextBox(0, 0, linelength, lines);
2715 M_Print(8 + 4 * (linelength - 19), 8, "Really wanna reset?");
2716 M_Print(8 + 4 * (linelength - 11), 16, "Press y / n");
2719 //=============================================================================
2722 #define VIDEO_ITEMS 5
2724 int video_cursor = 0;
2725 int video_cursor_table[] = {56, 68, 80, 100, 130};
2726 // note: if modes are added to the beginning of this list, update the
2727 // video_resolution = x; in M_Menu_Video_f below
2728 unsigned short video_resolutions[][2] = {{320,240}, {400,300}, {512,384}, {640,480}, {800,600}, {1024,768}, {1152,864}, {1280,960}, {1280,1024}, {1600,1200}, {1792,1344}, {1920,1440}, {2048,1536}, {0,0}};
2729 // this is the number of the 640x480 mode in the list
2731 #define VID_RES_COUNT ((int)(sizeof(video_resolutions) / sizeof(video_resolutions[0])) - 1)
2732 int video_resolution;
2735 void M_Menu_Video_f (void)
2737 key_dest = key_menu;
2739 m_entersound = true;
2741 // Look for the current resolution
2742 for (video_resolution = 0; video_resolution < VID_RES_COUNT; video_resolution++)
2744 if (video_resolutions[video_resolution][0] == vid.width &&
2745 video_resolutions[video_resolution][1] == vid.height)
2749 // Default to VID_640 if we didn't find it
2750 if (video_resolution == VID_RES_COUNT)
2752 // may need to update this number if mode list changes
2753 video_resolution = VID_640;
2754 Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2755 Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2760 void M_Video_Draw (void)
2765 M_Background(320, 200);
2767 M_DrawPic(16, 4, "gfx/qplaque.lmp");
2768 p = Draw_CachePic("gfx/vidmodes.lmp", false);
2769 M_DrawPic((320-p->width)/2, 4, "gfx/vidmodes.lmp");
2772 M_Print(16, video_cursor_table[0], " Resolution");
2773 string = va("%dx%d", video_resolutions[video_resolution][0], video_resolutions[video_resolution][1]);
2774 M_Print(220, video_cursor_table[0], string);
2777 M_Print(16, video_cursor_table[1], " Bits per pixel");
2778 M_Print(220, video_cursor_table[1], (vid_bitsperpixel.integer == 32) ? "32" : "16");
2781 M_Print(16, video_cursor_table[2], " Fullscreen");
2782 M_DrawCheckbox(220, video_cursor_table[2], vid_fullscreen.integer);
2785 M_Print(220, video_cursor_table[3], "Apply");
2788 M_ItemPrint (0, video_cursor_table[4], " Vertical Sync", gl_videosyncavailable);
2789 M_DrawCheckbox(220, video_cursor_table[4], vid_vsync.integer);
2792 M_DrawCharacter(200, video_cursor_table[video_cursor], 12+((int)(realtime*4)&1));
2796 void M_Menu_Video_AdjustSliders (int dir)
2798 S_LocalSound ("sound/misc/menu3.wav");
2800 switch (video_cursor)
2805 int new_resolution = video_resolution + dir;
2806 if (gamemode == GAME_FNIGGIUM ? new_resolution < VID_640 : new_resolution < 0)
2807 video_resolution = VID_RES_COUNT - 1;
2808 else if (new_resolution > VID_RES_COUNT - 1)
2809 video_resolution = gamemode == GAME_FNIGGIUM ? VID_640 : 0;
2811 video_resolution = new_resolution;
2813 Cvar_SetValueQuick (&vid_width, video_resolutions[video_resolution][0]);
2814 Cvar_SetValueQuick (&vid_height, video_resolutions[video_resolution][1]);
2820 Cvar_SetValueQuick (&vid_bitsperpixel, (vid_bitsperpixel.integer == 32) ? 16 : 32);
2823 Cvar_SetValueQuick (&vid_fullscreen, !vid_fullscreen.integer);
2827 Cvar_SetValueQuick (&vid_vsync, !vid_vsync.integer);
2833 void M_Video_Key (int key, char ascii)
2838 // vid_shared.c has a copy of the current video config. We restore it
2839 Cvar_SetValueQuick(&vid_fullscreen, vid.fullscreen);
2840 Cvar_SetValueQuick(&vid_width, vid.width);
2841 Cvar_SetValueQuick(&vid_height, vid.height);
2842 Cvar_SetValueQuick(&vid_bitsperpixel, vid.bitsperpixel);
2844 S_LocalSound ("sound/misc/menu1.wav");
2845 M_Menu_Options_f ();
2849 m_entersound = true;
2850 switch (video_cursor)
2853 Cbuf_AddText ("vid_restart\n");
2854 M_Menu_Options_f ();
2857 M_Menu_Video_AdjustSliders (1);
2862 S_LocalSound ("sound/misc/menu1.wav");
2864 if (video_cursor < 0)
2865 video_cursor = VIDEO_ITEMS-1;
2869 S_LocalSound ("sound/misc/menu1.wav");
2871 if (video_cursor >= VIDEO_ITEMS)
2876 M_Menu_Video_AdjustSliders (-1);
2880 M_Menu_Video_AdjustSliders (1);
2885 //=============================================================================
2889 #define NUM_HELP_PAGES 6
2892 void M_Menu_Help_f (void)
2894 key_dest = key_menu;
2896 m_entersound = true;
2902 void M_Help_Draw (void)
2904 M_Background(320, 200);
2905 M_DrawPic (0, 0, va("gfx/help%i.lmp", help_page));
2909 void M_Help_Key (int key, char ascii)
2919 m_entersound = true;
2920 if (++help_page >= NUM_HELP_PAGES)
2926 m_entersound = true;
2927 if (--help_page < 0)
2928 help_page = NUM_HELP_PAGES-1;
2934 //=============================================================================
2937 void M_Menu_Credits_f (void)
2939 key_dest = key_menu;
2940 m_state = m_credits;
2941 m_entersound = true;
2946 void M_Credits_Draw (void)
2948 M_Background(640, 480);
2949 DrawQ_Pic (0, 0, "gfx/creditsmiddle", 0, 0, 1, 1, 1, 1, 0);
2950 M_Print (640/2 - 14/2*8, 236, "Coming soon...");
2951 DrawQ_Pic (0, 0, "gfx/creditstop", 0, 0, 1, 1, 1, 1, 0);
2952 DrawQ_Pic (0, 433, "gfx/creditsbottom", 0, 0, 1, 1, 1, 1, 0);
2956 void M_Credits_Key (int key, char ascii)
2961 //=============================================================================
2964 char *m_quit_message[9];
2965 int m_quit_prevstate;
2966 qboolean wasInMenus;
2969 int M_QuitMessage(char *line1, char *line2, char *line3, char *line4, char *line5, char *line6, char *line7, char *line8)
2971 m_quit_message[0] = line1;
2972 m_quit_message[1] = line2;
2973 m_quit_message[2] = line3;
2974 m_quit_message[3] = line4;
2975 m_quit_message[4] = line5;
2976 m_quit_message[5] = line6;
2977 m_quit_message[6] = line7;
2978 m_quit_message[7] = line8;
2979 m_quit_message[8] = NULL;
2983 int M_ChooseQuitMessage(int request)
2991 if (request-- == 0) return M_QuitMessage("Are you gonna quit","this game just like","everything else?",NULL,NULL,NULL,NULL,NULL);
2992 if (request-- == 0) return M_QuitMessage("Milord, methinks that","thou art a lowly","quitter. Is this true?",NULL,NULL,NULL,NULL,NULL);
2993 if (request-- == 0) return M_QuitMessage("Do I need to bust your","face open for trying","to quit?",NULL,NULL,NULL,NULL,NULL);
2994 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);
2995 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);
2996 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);
2997 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);
2998 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);
3000 case GAME_GOODVSBAD2:
3001 if (request-- == 0) return M_QuitMessage("Press Yes To Quit","...","Yes",NULL,NULL,NULL,NULL,NULL);
3002 if (request-- == 0) return M_QuitMessage("Do you really want to","Quit?","Play Good vs bad 3!",NULL,NULL,NULL,NULL,NULL);
3003 if (request-- == 0) return M_QuitMessage("All your quit are","belong to long duck","dong",NULL,NULL,NULL,NULL,NULL);
3004 if (request-- == 0) return M_QuitMessage("Press Y to quit","","But are you too legit?",NULL,NULL,NULL,NULL,NULL);
3005 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);
3006 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);
3007 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);
3008 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);
3009 if (request-- == 0) return M_QuitMessage("Press Y like you","were waanderers","from Ys'",NULL,NULL,NULL,NULL,NULL);
3010 if (request-- == 0) return M_QuitMessage("This game was made in","Nippon like the SS","announcer's saying ipon",NULL,NULL,NULL,NULL,NULL);
3011 if (request-- == 0) return M_QuitMessage("you","want to quit?",NULL,NULL,NULL,NULL,NULL,NULL);
3012 if (request-- == 0) return M_QuitMessage("Please stop playing","this stupid game",NULL,NULL,NULL,NULL,NULL,NULL);
3014 case GAME_BATTLEMECH:
3015 if (request-- == 0) return M_QuitMessage("? WHY ?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3016 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);
3017 if (request-- == 0) return M_QuitMessage("Accept Defeat?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3018 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);
3019 if (request-- == 0) return M_QuitMessage("Where's your bloodlust?","Press Y to quit, N to keep fraggin'",NULL,NULL,NULL,NULL,NULL,NULL);
3020 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);
3021 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);
3023 case GAME_OPENQUARTZ:
3024 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);
3025 if (request-- == 0) return M_QuitMessage("GNU is not Unix!","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3026 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);
3027 if (request-- == 0) return M_QuitMessage("Is OpenQuartz Propaganda?","Press Y to quit, N to stay",NULL,NULL,NULL,NULL,NULL,NULL);
3030 if (request-- == 0) return M_QuitMessage("Tired of fragging already?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3031 if (request-- == 0) return M_QuitMessage("Quit now and forfeit your bodycount?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3032 if (request-- == 0) return M_QuitMessage("Are you sure you want to quit?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3033 if (request-- == 0) return M_QuitMessage("Off to do something constructive?",NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3039 void M_Menu_Quit_f (void)
3042 if (m_state == m_quit)
3044 wasInMenus = (key_dest == key_menu);
3045 key_dest = key_menu;
3046 m_quit_prevstate = m_state;
3048 m_entersound = true;
3049 // count how many there are
3050 for (n = 0;M_ChooseQuitMessage(n);n++);
3052 M_ChooseQuitMessage(rand() % n);
3056 void M_Quit_Key (int key, char ascii)
3065 m_state = m_quit_prevstate;
3066 m_entersound = true;
3070 key_dest = key_game;
3085 void M_Quit_Draw (void)
3087 int i, l, linelength, firstline, lastline, lines;
3088 for (i = 0, linelength = 0, firstline = 9999, lastline = -1;m_quit_message[i];i++)
3090 if ((l = (int)strlen(m_quit_message[i])))
3100 lines = (lastline - firstline) + 1;
3101 M_Background(linelength * 8 + 16, lines * 8 + 16);
3102 M_DrawTextBox(0, 0, linelength, lines);
3103 for (i = 0, l = firstline;i < lines;i++, l++)
3104 M_Print(8 + 4 * (linelength - strlen(m_quit_message[l])), 8 + 8 * i, m_quit_message[l]);
3107 //=============================================================================
3108 /* LAN CONFIG MENU */
3110 int lanConfig_cursor = -1;
3111 int lanConfig_cursor_table [] = {56, 76, 112};
3112 #define NUM_LANCONFIG_CMDS 3
3115 char lanConfig_portname[6];
3116 char lanConfig_joinname[22];
3118 void M_Menu_LanConfig_f (void)
3120 key_dest = key_menu;
3121 m_state = m_lanconfig;
3122 m_entersound = true;
3123 if (lanConfig_cursor == -1)
3126 lanConfig_cursor = 1;
3129 lanConfig_cursor = 1;
3130 lanConfig_port = 26000;
3131 sprintf(lanConfig_portname, "%u", lanConfig_port);
3133 M_Update_Return_Reason("");
3137 void M_LanConfig_Draw (void)
3144 M_Background(320, 200);
3146 M_DrawPic (16, 4, "gfx/qplaque.lmp");
3147 p = Draw_CachePic ("gfx/p_multi.lmp", false);
3148 basex = (320-p->width)/2;
3149 M_DrawPic (basex, 4, "gfx/p_multi.lmp");
3152 startJoin = "New Game";
3154 startJoin = "Join Game";
3155 protocol = "TCP/IP";
3156 M_Print(basex, 32, va ("%s - %s", startJoin, protocol));
3159 M_Print(basex, lanConfig_cursor_table[0], "Port");
3160 M_DrawTextBox (basex+8*8, lanConfig_cursor_table[0]-8, 6, 1);
3161 M_Print(basex+9*8, lanConfig_cursor_table[0], lanConfig_portname);
3165 M_Print(basex, lanConfig_cursor_table[1], "Search for games...");
3166 M_Print(basex, lanConfig_cursor_table[2]-16, "Join game at:");
3167 M_DrawTextBox (basex+8, lanConfig_cursor_table[2]-8, 22, 1);
3168 M_Print(basex+16, lanConfig_cursor_table[2], lanConfig_joinname);
3172 M_DrawTextBox (basex, lanConfig_cursor_table[1]-8, 2, 1);
3173 M_Print(basex+8, lanConfig_cursor_table[1], "OK");
3176 M_DrawCharacter (basex-8, lanConfig_cursor_table [lanConfig_cursor], 12+((int)(realtime*4)&1));
3178 if (lanConfig_cursor == 0)
3179 M_DrawCharacter (basex+9*8 + 8*strlen(lanConfig_portname), lanConfig_cursor_table [0], 10+((int)(realtime*4)&1));
3181 if (lanConfig_cursor == 2)
3182 M_DrawCharacter (basex+16 + 8*strlen(lanConfig_joinname), lanConfig_cursor_table [2], 10+((int)(realtime*4)&1));
3184 if (*m_return_reason)
3185 M_Print(basex, 168, m_return_reason);
3189 void M_LanConfig_Key (int key, char ascii)
3196 M_Menu_MultiPlayer_f ();
3200 S_LocalSound ("sound/misc/menu1.wav");
3202 if (lanConfig_cursor < 0)
3203 lanConfig_cursor = NUM_LANCONFIG_CMDS-1;
3207 S_LocalSound ("sound/misc/menu1.wav");
3209 if (lanConfig_cursor >= NUM_LANCONFIG_CMDS)
3210 lanConfig_cursor = 0;
3214 if (lanConfig_cursor == 0)
3217 m_entersound = true;
3219 Cbuf_AddText ("stopdemo\n");
3221 Cvar_SetValue("port", lanConfig_port);
3223 if (lanConfig_cursor == 1)
3227 M_Menu_GameOptions_f ();
3230 M_Menu_ServerList_f();
3234 if (lanConfig_cursor == 2)
3235 Cbuf_AddText ( va ("connect \"%s\"\n", lanConfig_joinname) );
3239 if (lanConfig_cursor == 0)
3241 if (strlen(lanConfig_portname))
3242 lanConfig_portname[strlen(lanConfig_portname)-1] = 0;
3245 if (lanConfig_cursor == 2)
3247 if (strlen(lanConfig_joinname))
3248 lanConfig_joinname[strlen(lanConfig_joinname)-1] = 0;
3253 if (ascii < 32 || ascii > 126)
3256 if (lanConfig_cursor == 2)
3258 l = (int)strlen(lanConfig_joinname);
3261 lanConfig_joinname[l+1] = 0;
3262 lanConfig_joinname[l] = ascii;
3266 if (ascii < '0' || ascii > '9')
3268 if (lanConfig_cursor == 0)
3270 l = (int)strlen(lanConfig_portname);
3273 lanConfig_portname[l+1] = 0;
3274 lanConfig_portname[l] = ascii;
3279 if (StartingGame && lanConfig_cursor == 2)
3281 if (key == K_UPARROW)
3282 lanConfig_cursor = 1;
3284 lanConfig_cursor = 0;
3287 l = atoi(lanConfig_portname);
3290 sprintf(lanConfig_portname, "%u", lanConfig_port);
3293 //=============================================================================
3294 /* GAME OPTIONS MENU */
3313 episode_t *episodes;
3318 level_t quakelevels[] =
3320 {"start", "Entrance"}, // 0
3322 {"e1m1", "Slipgate Complex"}, // 1
3323 {"e1m2", "Castle of the Damned"},
3324 {"e1m3", "The Necropolis"},
3325 {"e1m4", "The Grisly Grotto"},
3326 {"e1m5", "Gloom Keep"},
3327 {"e1m6", "The Door To Chthon"},
3328 {"e1m7", "The House of Chthon"},
3329 {"e1m8", "Ziggurat Vertigo"},
3331 {"e2m1", "The Installation"}, // 9
3332 {"e2m2", "Ogre Citadel"},
3333 {"e2m3", "Crypt of Decay"},
3334 {"e2m4", "The Ebon Fortress"},
3335 {"e2m5", "The Wizard's Manse"},
3336 {"e2m6", "The Dismal Oubliette"},
3337 {"e2m7", "Underearth"},
3339 {"e3m1", "Termination Central"}, // 16
3340 {"e3m2", "The Vaults of Zin"},
3341 {"e3m3", "The Tomb of Terror"},
3342 {"e3m4", "Satan's Dark Delight"},
3343 {"e3m5", "Wind Tunnels"},
3344 {"e3m6", "Chambers of Torment"},
3345 {"e3m7", "The Haunted Halls"},
3347 {"e4m1", "The Sewage System"}, // 23
3348 {"e4m2", "The Tower of Despair"},
3349 {"e4m3", "The Elder God Shrine"},
3350 {"e4m4", "The Palace of Hate"},
3351 {"e4m5", "Hell's Atrium"},
3352 {"e4m6", "The Pain Maze"},
3353 {"e4m7", "Azure Agony"},
3354 {"e4m8", "The Nameless City"},
3356 {"end", "Shub-Niggurath's Pit"}, // 31