2009-02-28 14:41:18 +00:00
|
|
|
/*
|
2010-10-18 14:23:07 +00:00
|
|
|
* Copyright (C) 1997-2001 Id Software, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* =======================================================================
|
|
|
|
*
|
|
|
|
* This is the refresher dependend video menu. If you add a new
|
2012-08-02 12:39:33 +00:00
|
|
|
* refresher this menu must be altered.
|
2010-10-18 14:23:07 +00:00
|
|
|
*
|
|
|
|
* =======================================================================
|
|
|
|
*/
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
#include "../../client/header/client.h"
|
|
|
|
#include "../../client/menu/header/qmenu.h"
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2013-04-21 16:44:50 +00:00
|
|
|
#define CUSTOM_MODE 24
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2012-08-02 12:39:33 +00:00
|
|
|
extern void M_ForceMenuOff(void);
|
2009-02-28 14:41:18 +00:00
|
|
|
|
|
|
|
extern cvar_t *vid_fullscreen;
|
|
|
|
extern cvar_t *vid_gamma;
|
|
|
|
extern cvar_t *scr_viewsize;
|
|
|
|
|
|
|
|
static cvar_t *gl_mode;
|
|
|
|
static cvar_t *gl_driver;
|
|
|
|
static cvar_t *gl_picmip;
|
|
|
|
static cvar_t *gl_ext_palettedtexture;
|
|
|
|
|
2012-08-02 13:18:58 +00:00
|
|
|
static cvar_t *fov;
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
static menuframework_s s_opengl_menu;
|
|
|
|
|
2012-08-02 12:39:33 +00:00
|
|
|
static menulist_s s_mode_list;
|
2012-08-02 13:18:58 +00:00
|
|
|
static menulist_s s_aspect_list;
|
2010-10-18 14:23:07 +00:00
|
|
|
static menuslider_s s_tq_slider;
|
2012-08-02 12:39:33 +00:00
|
|
|
static menuslider_s s_screensize_slider;
|
|
|
|
static menuslider_s s_brightness_slider;
|
|
|
|
static menulist_s s_fs_box;
|
2010-10-18 14:23:07 +00:00
|
|
|
static menulist_s s_paletted_texture_box;
|
2012-08-02 12:39:33 +00:00
|
|
|
static menuaction_s s_apply_action;
|
|
|
|
static menuaction_s s_defaults_action;
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
static void
|
2012-07-22 13:34:45 +00:00
|
|
|
ScreenSizeCallback(void *s)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
2012-07-22 13:34:45 +00:00
|
|
|
menuslider_s *slider = (menuslider_s *)s;
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
Cvar_SetValue("viewsize", slider->curvalue * 10);
|
2009-02-28 14:41:18 +00:00
|
|
|
}
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
static void
|
2012-07-22 13:34:45 +00:00
|
|
|
BrightnessCallback(void *s)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
2012-07-22 13:34:45 +00:00
|
|
|
menuslider_s *slider = (menuslider_s *)s;
|
2009-03-05 15:26:46 +00:00
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
float gamma = slider->curvalue / 10.0;
|
|
|
|
Cvar_SetValue("vid_gamma", gamma);
|
2009-02-28 14:41:18 +00:00
|
|
|
}
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
static void
|
2012-07-22 13:34:45 +00:00
|
|
|
ResetDefaults(void *unused)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
|
|
|
VID_MenuInit();
|
|
|
|
}
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
static void
|
2012-07-22 13:34:45 +00:00
|
|
|
ApplyChanges(void *unused)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
2012-08-02 12:59:51 +00:00
|
|
|
qboolean restart = false;
|
|
|
|
|
|
|
|
if (gl_picmip->value != (3 - s_tq_slider.curvalue))
|
|
|
|
{
|
|
|
|
|
|
|
|
Cvar_SetValue("gl_picmip", 3 - s_tq_slider.curvalue);
|
|
|
|
restart = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gl_ext_palettedtexture->value != s_paletted_texture_box.curvalue)
|
|
|
|
{
|
|
|
|
Cvar_SetValue("gl_ext_palettedtexture", s_paletted_texture_box.curvalue);
|
|
|
|
restart = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restarts automatically */
|
2012-08-02 12:39:33 +00:00
|
|
|
Cvar_SetValue("vid_fullscreen", s_fs_box.curvalue);
|
2010-01-08 15:22:49 +00:00
|
|
|
|
|
|
|
/* custom mode */
|
2012-08-02 12:39:33 +00:00
|
|
|
if (s_mode_list.curvalue != CUSTOM_MODE)
|
2010-01-08 15:22:49 +00:00
|
|
|
{
|
2012-08-02 12:59:51 +00:00
|
|
|
/* Restarts automatically */
|
2012-08-02 12:39:33 +00:00
|
|
|
Cvar_SetValue("gl_mode", s_mode_list.curvalue);
|
2010-01-08 15:22:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-02 12:59:51 +00:00
|
|
|
/* Restarts automatically */
|
2012-07-22 13:34:45 +00:00
|
|
|
Cvar_SetValue("gl_mode", -1);
|
2010-10-18 14:23:07 +00:00
|
|
|
}
|
|
|
|
|
2012-10-28 09:20:46 +00:00
|
|
|
/* horplus */
|
2012-08-02 13:18:58 +00:00
|
|
|
if (s_aspect_list.curvalue == 0)
|
2012-10-28 09:20:46 +00:00
|
|
|
{
|
|
|
|
if (horplus->value != 1)
|
|
|
|
{
|
|
|
|
Cvar_SetValue("horplus", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (horplus->value != 0)
|
|
|
|
{
|
|
|
|
Cvar_SetValue("horplus", 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fov */
|
|
|
|
if (s_aspect_list.curvalue == 0 || s_aspect_list.curvalue == 1)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
if (fov->value != 90)
|
|
|
|
{
|
|
|
|
/* Restarts automatically */
|
|
|
|
Cvar_SetValue("fov", 90);
|
|
|
|
}
|
|
|
|
}
|
2012-10-28 09:20:46 +00:00
|
|
|
else if (s_aspect_list.curvalue == 2)
|
|
|
|
{
|
|
|
|
if (fov->value != 86)
|
|
|
|
{
|
|
|
|
/* Restarts automatically */
|
|
|
|
Cvar_SetValue("fov", 86);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (s_aspect_list.curvalue == 3)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
if (fov->value != 100)
|
|
|
|
{
|
|
|
|
/* Restarts automatically */
|
|
|
|
Cvar_SetValue("fov", 100);
|
|
|
|
}
|
|
|
|
}
|
2012-10-28 09:20:46 +00:00
|
|
|
else if (s_aspect_list.curvalue == 4)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
2012-10-28 09:20:46 +00:00
|
|
|
if (fov->value != 106)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
/* Restarts automatically */
|
2012-10-28 09:20:46 +00:00
|
|
|
Cvar_SetValue("fov", 106);
|
2012-08-02 13:18:58 +00:00
|
|
|
}
|
|
|
|
}
|
2013-04-29 21:07:55 +00:00
|
|
|
|
2012-08-02 12:59:51 +00:00
|
|
|
if (restart)
|
|
|
|
{
|
|
|
|
Cbuf_AddText("vid_restart\n");
|
|
|
|
}
|
|
|
|
|
2012-08-02 13:33:42 +00:00
|
|
|
M_ForceMenuOff();
|
2009-02-28 14:41:18 +00:00
|
|
|
}
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
void
|
2012-07-22 13:34:45 +00:00
|
|
|
VID_MenuInit(void)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
2010-10-18 14:23:07 +00:00
|
|
|
static const char *resolutions[] = {
|
2009-02-28 14:41:18 +00:00
|
|
|
"[320 240 ]",
|
|
|
|
"[400 300 ]",
|
|
|
|
"[512 384 ]",
|
2010-01-08 15:38:19 +00:00
|
|
|
"[640 400 ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
"[640 480 ]",
|
2010-10-18 14:23:07 +00:00
|
|
|
"[800 500 ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
"[800 600 ]",
|
|
|
|
"[960 720 ]",
|
2010-01-08 15:38:19 +00:00
|
|
|
"[1024 480 ]",
|
2010-10-18 14:23:07 +00:00
|
|
|
"[1024 640 ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
"[1024 768 ]",
|
2010-01-08 15:38:19 +00:00
|
|
|
"[1152 768 ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
"[1152 864 ]",
|
2010-10-18 14:23:07 +00:00
|
|
|
"[1280 800 ]",
|
2010-01-08 15:38:19 +00:00
|
|
|
"[1280 854 ]",
|
2011-10-15 16:27:19 +00:00
|
|
|
"[1280 960 ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
"[1280 1024]",
|
2013-01-18 19:59:44 +00:00
|
|
|
"[1366 768 ]",
|
2011-10-10 08:37:35 +00:00
|
|
|
"[1440 900 ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
"[1600 1200]",
|
2010-10-18 14:23:07 +00:00
|
|
|
"[1680 1050]",
|
2011-10-10 08:37:35 +00:00
|
|
|
"[1920 1080]",
|
2010-10-18 14:23:07 +00:00
|
|
|
"[1920 1200]",
|
2010-01-08 15:38:19 +00:00
|
|
|
"[2048 1536]",
|
2010-01-08 15:22:49 +00:00
|
|
|
"[Custom ]",
|
2009-02-28 14:41:18 +00:00
|
|
|
0
|
|
|
|
};
|
2012-08-02 13:18:58 +00:00
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
static const char *yesno_names[] = {
|
2009-02-28 14:41:18 +00:00
|
|
|
"no",
|
|
|
|
"yes",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2012-08-02 13:18:58 +00:00
|
|
|
static const char *aspect_names[] = {
|
2012-10-28 09:20:46 +00:00
|
|
|
"Auto",
|
2012-08-02 13:18:58 +00:00
|
|
|
"4:3",
|
2012-10-28 09:20:46 +00:00
|
|
|
"5:4",
|
2012-08-02 13:18:58 +00:00
|
|
|
"16:10",
|
|
|
|
"16:9",
|
2012-08-02 18:12:19 +00:00
|
|
|
"Custom",
|
|
|
|
0
|
2012-08-02 13:18:58 +00:00
|
|
|
};
|
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
if (!gl_driver)
|
2010-10-18 14:23:07 +00:00
|
|
|
{
|
2012-08-02 12:39:33 +00:00
|
|
|
gl_driver = Cvar_Get("gl_driver", LIBGL, 0);
|
2010-10-18 14:23:07 +00:00
|
|
|
}
|
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
if (!gl_picmip)
|
2010-10-18 14:23:07 +00:00
|
|
|
{
|
2012-07-22 13:34:45 +00:00
|
|
|
gl_picmip = Cvar_Get("gl_picmip", "0", 0);
|
2010-10-18 14:23:07 +00:00
|
|
|
}
|
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
if (!gl_mode)
|
2010-10-18 14:23:07 +00:00
|
|
|
{
|
2013-05-28 18:42:57 +00:00
|
|
|
gl_mode = Cvar_Get("gl_mode", "4", 0);
|
2010-10-18 14:23:07 +00:00
|
|
|
}
|
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
if (!gl_ext_palettedtexture)
|
2010-10-18 14:23:07 +00:00
|
|
|
{
|
2012-07-22 13:34:45 +00:00
|
|
|
gl_ext_palettedtexture = Cvar_Get("gl_ext_palettedtexture",
|
|
|
|
"0", CVAR_ARCHIVE);
|
2010-10-18 14:23:07 +00:00
|
|
|
}
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2012-10-28 09:20:46 +00:00
|
|
|
if (!horplus)
|
|
|
|
{
|
|
|
|
horplus = Cvar_Get("horplus", "1", CVAR_ARCHIVE);
|
|
|
|
}
|
|
|
|
|
2012-08-02 13:18:58 +00:00
|
|
|
if (!fov)
|
|
|
|
{
|
|
|
|
fov = Cvar_Get("fov", "90", CVAR_USERINFO | CVAR_ARCHIVE);
|
|
|
|
}
|
|
|
|
|
2012-10-28 09:20:46 +00:00
|
|
|
if (horplus->value == 1)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
s_aspect_list.curvalue = 0;
|
|
|
|
}
|
2012-10-28 09:20:46 +00:00
|
|
|
else if (fov->value == 90)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
s_aspect_list.curvalue = 1;
|
|
|
|
}
|
2012-10-28 09:20:46 +00:00
|
|
|
else if (fov->value == 86)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
s_aspect_list.curvalue = 2;
|
|
|
|
}
|
2012-10-28 09:20:46 +00:00
|
|
|
else if (fov->value == 100)
|
2012-08-02 13:18:58 +00:00
|
|
|
{
|
|
|
|
s_aspect_list.curvalue = 3;
|
|
|
|
}
|
2012-10-28 09:20:46 +00:00
|
|
|
else if (fov->value == 106)
|
|
|
|
{
|
|
|
|
s_aspect_list.curvalue = 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s_aspect_list.curvalue = 5;
|
|
|
|
}
|
2012-08-02 13:18:58 +00:00
|
|
|
|
2010-01-08 15:22:49 +00:00
|
|
|
/* custom mode */
|
2012-08-04 08:11:33 +00:00
|
|
|
if (gl_mode->value >= 0)
|
2010-01-08 15:22:49 +00:00
|
|
|
{
|
2012-08-02 12:39:33 +00:00
|
|
|
s_mode_list.curvalue = gl_mode->value;
|
2010-01-08 15:22:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-02 12:39:33 +00:00
|
|
|
s_mode_list.curvalue = CUSTOM_MODE;
|
2010-01-08 15:22:49 +00:00
|
|
|
}
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
if (!scr_viewsize)
|
2010-10-18 14:23:07 +00:00
|
|
|
{
|
2012-07-22 13:34:45 +00:00
|
|
|
scr_viewsize = Cvar_Get("viewsize", "100", CVAR_ARCHIVE);
|
2010-10-18 14:23:07 +00:00
|
|
|
}
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2012-08-02 13:33:42 +00:00
|
|
|
if (!vid_gamma)
|
|
|
|
{
|
|
|
|
vid_gamma = Cvar_Get("vid_gamma", "1.0", CVAR_ARCHIVE);
|
|
|
|
}
|
2009-02-28 14:41:18 +00:00
|
|
|
|
|
|
|
s_opengl_menu.x = viddef.width * 0.50;
|
|
|
|
s_opengl_menu.nitems = 0;
|
|
|
|
|
2012-08-02 12:39:33 +00:00
|
|
|
s_mode_list.generic.type = MTYPE_SPINCONTROL;
|
|
|
|
s_mode_list.generic.name = "video mode";
|
|
|
|
s_mode_list.generic.x = 0;
|
|
|
|
s_mode_list.generic.y = 0;
|
|
|
|
s_mode_list.itemnames = resolutions;
|
|
|
|
|
2012-10-28 09:20:46 +00:00
|
|
|
s_aspect_list.generic.type = MTYPE_SPINCONTROL;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_aspect_list.generic.name = "aspect ratio";
|
|
|
|
s_aspect_list.generic.x = 0;
|
|
|
|
s_aspect_list.generic.y = 10;
|
2013-04-29 21:07:55 +00:00
|
|
|
s_aspect_list.itemnames = aspect_names;
|
|
|
|
|
2012-08-02 12:39:33 +00:00
|
|
|
s_screensize_slider.generic.type = MTYPE_SLIDER;
|
|
|
|
s_screensize_slider.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_screensize_slider.generic.y = 20;
|
2012-08-02 12:39:33 +00:00
|
|
|
s_screensize_slider.generic.name = "screen size";
|
|
|
|
s_screensize_slider.minvalue = 3;
|
|
|
|
s_screensize_slider.maxvalue = 12;
|
|
|
|
s_screensize_slider.generic.callback = ScreenSizeCallback;
|
2012-08-02 13:33:42 +00:00
|
|
|
s_screensize_slider.curvalue = scr_viewsize->value / 10;
|
2012-08-02 12:39:33 +00:00
|
|
|
|
|
|
|
s_brightness_slider.generic.type = MTYPE_SLIDER;
|
|
|
|
s_brightness_slider.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_brightness_slider.generic.y = 40;
|
2012-08-02 12:39:33 +00:00
|
|
|
s_brightness_slider.generic.name = "brightness";
|
|
|
|
s_brightness_slider.generic.callback = BrightnessCallback;
|
|
|
|
s_brightness_slider.minvalue = 1;
|
|
|
|
s_brightness_slider.maxvalue = 20;
|
|
|
|
s_brightness_slider.curvalue = vid_gamma->value * 10;
|
|
|
|
|
|
|
|
s_fs_box.generic.type = MTYPE_SPINCONTROL;
|
|
|
|
s_fs_box.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_fs_box.generic.y = 50;
|
2012-08-02 12:39:33 +00:00
|
|
|
s_fs_box.generic.name = "fullscreen";
|
|
|
|
s_fs_box.itemnames = yesno_names;
|
|
|
|
s_fs_box.curvalue = vid_fullscreen->value;
|
2013-04-29 21:07:55 +00:00
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
s_tq_slider.generic.type = MTYPE_SLIDER;
|
|
|
|
s_tq_slider.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_tq_slider.generic.y = 70;
|
2012-07-22 13:34:45 +00:00
|
|
|
s_tq_slider.generic.name = "texture quality";
|
2009-02-28 14:41:18 +00:00
|
|
|
s_tq_slider.minvalue = 0;
|
|
|
|
s_tq_slider.maxvalue = 3;
|
2010-10-18 14:23:07 +00:00
|
|
|
s_tq_slider.curvalue = 3 - gl_picmip->value;
|
2013-04-29 21:07:55 +00:00
|
|
|
|
2009-02-28 14:41:18 +00:00
|
|
|
s_paletted_texture_box.generic.type = MTYPE_SPINCONTROL;
|
2012-07-22 13:34:45 +00:00
|
|
|
s_paletted_texture_box.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_paletted_texture_box.generic.y = 80;
|
2010-10-18 14:23:07 +00:00
|
|
|
s_paletted_texture_box.generic.name = "8-bit textures";
|
2009-02-28 14:41:18 +00:00
|
|
|
s_paletted_texture_box.itemnames = yesno_names;
|
|
|
|
s_paletted_texture_box.curvalue = gl_ext_palettedtexture->value;
|
2013-04-29 21:07:55 +00:00
|
|
|
|
2012-08-02 12:39:33 +00:00
|
|
|
s_defaults_action.generic.type = MTYPE_ACTION;
|
|
|
|
s_defaults_action.generic.name = "reset to default";
|
|
|
|
s_defaults_action.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_defaults_action.generic.y = 100;
|
2012-08-02 12:39:33 +00:00
|
|
|
s_defaults_action.generic.callback = ResetDefaults;
|
|
|
|
|
|
|
|
s_apply_action.generic.type = MTYPE_ACTION;
|
|
|
|
s_apply_action.generic.name = "apply";
|
|
|
|
s_apply_action.generic.x = 0;
|
2012-08-02 13:18:58 +00:00
|
|
|
s_apply_action.generic.y = 110;
|
2012-08-02 12:39:33 +00:00
|
|
|
s_apply_action.generic.callback = ApplyChanges;
|
|
|
|
|
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_mode_list);
|
2012-08-02 13:18:58 +00:00
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_aspect_list);
|
2012-08-02 12:39:33 +00:00
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_screensize_slider);
|
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_brightness_slider);
|
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_fs_box);
|
2012-07-22 13:34:45 +00:00
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_tq_slider);
|
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_paletted_texture_box);
|
2012-08-02 12:39:33 +00:00
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_defaults_action);
|
|
|
|
Menu_AddItem(&s_opengl_menu, (void *)&s_apply_action);
|
2012-07-22 13:34:45 +00:00
|
|
|
|
|
|
|
Menu_Center(&s_opengl_menu);
|
2009-02-28 14:41:18 +00:00
|
|
|
s_opengl_menu.x -= 8;
|
|
|
|
}
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
void
|
2012-07-22 13:34:45 +00:00
|
|
|
VID_MenuDraw(void)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
|
|
|
int w, h;
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
/* draw the banner */
|
2012-07-22 13:34:45 +00:00
|
|
|
re.DrawGetPicSize(&w, &h, "m_banner_video");
|
|
|
|
re.DrawPic(viddef.width / 2 - w / 2, viddef.height / 2 - 110,
|
|
|
|
"m_banner_video");
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
/* move cursor to a reasonable starting position */
|
2012-08-02 12:39:33 +00:00
|
|
|
Menu_AdjustCursor(&s_opengl_menu, 1);
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
/* draw the menu */
|
2012-08-02 12:39:33 +00:00
|
|
|
Menu_Draw(&s_opengl_menu);
|
2009-02-28 14:41:18 +00:00
|
|
|
}
|
|
|
|
|
2010-10-18 14:23:07 +00:00
|
|
|
const char *
|
2012-07-22 13:34:45 +00:00
|
|
|
VID_MenuKey(int key)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
2012-07-22 13:34:45 +00:00
|
|
|
extern void M_PopMenu(void);
|
2009-02-28 14:41:18 +00:00
|
|
|
|
2012-08-02 12:39:33 +00:00
|
|
|
menuframework_s *m = &s_opengl_menu;
|
2009-02-28 14:41:18 +00:00
|
|
|
static const char *sound = "misc/menu1.wav";
|
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
switch (key)
|
2009-02-28 14:41:18 +00:00
|
|
|
{
|
2010-10-18 14:23:07 +00:00
|
|
|
case K_ESCAPE:
|
|
|
|
M_PopMenu();
|
2012-07-22 13:34:45 +00:00
|
|
|
return NULL;
|
2010-10-18 14:23:07 +00:00
|
|
|
case K_UPARROW:
|
|
|
|
m->cursor--;
|
2012-07-22 13:34:45 +00:00
|
|
|
Menu_AdjustCursor(m, -1);
|
2010-10-18 14:23:07 +00:00
|
|
|
break;
|
|
|
|
case K_DOWNARROW:
|
|
|
|
m->cursor++;
|
2012-07-22 13:34:45 +00:00
|
|
|
Menu_AdjustCursor(m, 1);
|
2010-10-18 14:23:07 +00:00
|
|
|
break;
|
|
|
|
case K_LEFTARROW:
|
2012-07-22 13:34:45 +00:00
|
|
|
Menu_SlideItem(m, -1);
|
2010-10-18 14:23:07 +00:00
|
|
|
break;
|
|
|
|
case K_RIGHTARROW:
|
2012-07-22 13:34:45 +00:00
|
|
|
Menu_SlideItem(m, 1);
|
2010-10-18 14:23:07 +00:00
|
|
|
break;
|
|
|
|
case K_ENTER:
|
2012-07-22 13:34:45 +00:00
|
|
|
Menu_SelectItem(m);
|
2010-10-18 14:23:07 +00:00
|
|
|
break;
|
2009-02-28 14:41:18 +00:00
|
|
|
}
|
|
|
|
|
2012-07-22 13:34:45 +00:00
|
|
|
return sound;
|
2009-02-28 14:41:18 +00:00
|
|
|
}
|
2012-07-22 13:34:45 +00:00
|
|
|
|