mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-15 08:41:46 +00:00
The minimum value was increased from 30 to 35 to reflect the lowest value you can actually use in `vid_maxfps`. Values lower than 35 are silently clamped to 35. The maximum value is chosen to cater to the fastest commercially available display as of writing (500 Hz). Being able to specify maximum FPS with a more precise slider has several benefits: - This adds support for monitors with less common refresh rates (138 Hz, 165 Hz, ...). - This adds support for monitors with very high refresh rates (240 Hz or more). - This allows catering to variable refresh rate setups with a FPS cap chosen to avoid V-Sync input lag, while also avoiding tearing. For example, choosing a FPS cap of 117 on a 120 Hz display will prevent the display from reaching its maximum refresh rate. More information: https://blurbusters.com/howto-low-lag-vsync-on/ - The value no longer displays a "Unknown" if customized in the console using the `vid_maxfps` cvar.
124 lines
4.6 KiB
Text
124 lines
4.6 KiB
Text
// this file has the simplified menu here.
|
|
// this file is *only* for options that are relevant to a novice user of GZDoom
|
|
// this file needs to be regularly pruned, with options coalesced as much as possible. any and all verbosity should go to the "full" menus.
|
|
|
|
OptionMenu "OptionsMenuSimple" protected
|
|
{
|
|
Title "$OPTMNU_TITLE"
|
|
Submenu "$OPTMNU_CONTROLS", "CustomizeControls"
|
|
Submenu "$OPTMNU_MOUSE", "MouseOptionsSimple"
|
|
Submenu "$OPTMNU_JOYSTICK", "JoystickOptions"
|
|
StaticText " "
|
|
Submenu "$OPTMNU_PLAYER", "NewPlayerMenu"
|
|
StaticText " "
|
|
Submenu "$OPTMNU_SOUND", "SoundOptionsSimple"
|
|
Submenu "$OPTMNU_DISPLAY", "VideoOptionsSimple"
|
|
Submenu "$HUDMNU_SCALEOPT", "ScalingOptionsSimple"
|
|
StaticText " "
|
|
Submenu "$OPTMNU_MISCELLANEOUS", "MiscOptionsSimple"
|
|
StaticText " "
|
|
Submenu "$OS_TITLE", "os_Menu"
|
|
StaticText " "
|
|
Submenu "$OPTMNU_FULLOPTIONS", "OptionsMenuFull"
|
|
StaticText " "
|
|
SafeCommand "$OPTMNU_DEFAULTS", "reset2defaults"
|
|
SafeCommand "$OPTMNU_RESETTOSAVED", "reset2saved"
|
|
SafeCommand "$OPTMNU_WRITEINI", "writeini"
|
|
Command "$OPTMNU_CONSOLE", "menuconsole"
|
|
StaticText " "
|
|
}
|
|
|
|
OptionMenu SoundOptionsSimple protected
|
|
{
|
|
Title "$SNDMNU_TITLE"
|
|
Slider "$MODMNU_MASTERVOLUME", "snd_mastervolume", 0, 1, 0.05, 2
|
|
StaticText " "
|
|
Slider "$SNDMNU_SFXVOLUME", "snd_sfxvolume", 0, 1, 0.05, 2
|
|
Slider "$SNDMNU_MUSICVOLUME", "snd_musicvolume", 0, 1, 0.05, 2
|
|
StaticText " "
|
|
Slider "$SNDMNU_MENUVOLUME", "snd_menuvolume", 0, 1, 0.05, 2
|
|
StaticText " "
|
|
Option "$SNDMNU_MIDIDEVICE", "snd_mididevice", "MidiDevices"
|
|
Command "$SNDMNU_RESTART", "snd_reset"
|
|
}
|
|
|
|
OptionMenu VideoOptionsSimple protected
|
|
{
|
|
Title "$DSPLYMNU_TITLE"
|
|
|
|
Option "$VIDMNU_PREFERBACKEND", "vid_preferbackend", "PreferBackend"
|
|
IfOption(SWRender)
|
|
{
|
|
Option "$VIDMNU_RENDERMODE", "vid_rendermode", "RenderMode"
|
|
}
|
|
Option "$VIDMNU_FULLSCREEN", "vid_fullscreen", "YesNo"
|
|
IfOption(Mac)
|
|
{
|
|
Option "$VIDMNU_HIDPI", "vid_hidpi", "YesNo"
|
|
}
|
|
|
|
StaticText " "
|
|
Option "$DSPLYMNU_DRAWFUZZ", "r_drawfuzz", "Fuzziness"
|
|
Option "$DSPLYMNU_WIPETYPE", "wipetype", "Wipes"
|
|
StaticText " "
|
|
Option "$GLTEXMNU_TEXFILTER", gl_texture_filter, "FilterModes"
|
|
Option "$GLTEXMNU_ANISOTROPIC", gl_texture_filter_anisotropic, "Anisotropy"
|
|
Option "$GLPREFMNU_SECLIGHTMODE", gl_lightmode, "LightingModes"
|
|
StaticText " "
|
|
Option "$DSPLYMNU_VSYNC", "vid_vsync", "OnOff"
|
|
Slider "$VIDMNU_MAXFPS", "vid_maxfps", 35, 500, 1
|
|
StaticText " "
|
|
Slider "$DSPLYMNU_GAMMA", "vid_gamma", 0.75, 3.0, 0.05, 2
|
|
Slider "$DSPLYMNU_BRIGHTNESS", "vid_brightness", -0.8,0.8, 0.05,2
|
|
Slider "$DSPLYMNU_CONTRAST", "vid_contrast", 0.1, 3.0, 0.1
|
|
Slider "$DSPLYMNU_SATURATION", "vid_saturation", -3.0, 3.0, 0.25, 2
|
|
StaticText " "
|
|
Slider "$DSPLYMNU_FOV", "fov", 75.0, 120.0, 0.1, 1
|
|
// commenting this out for now, this menu is so general purpose I am not sure it makes sense, but I'm leaving it here just in case
|
|
// the "full" menu doesn't have some of the options that are in this one.
|
|
//StaticText " "
|
|
//Submenu "$OPTMNU_FULLOPTIONS", "VideoModeMenu"
|
|
}
|
|
|
|
OptionMenu ScalingOptionsSimple protected
|
|
{
|
|
Title "$SCALEMNU_TITLE"
|
|
StaticText "$OPTMNU_HUD"
|
|
ScaleSlider "$HUDMNU_UISCALE", "uiscale", 0.0, 8.0, 1.0, "$SCALEMNU_ADAPT"
|
|
Option "$SCALEMNU_HUDASPECT", "hud_aspectscale", "OnOff"
|
|
Slider "$DSPLYMNU_SCREENSIZE", "screenblocks", 3.0, 12.0, 1.0, 0
|
|
StaticText " "
|
|
StaticText "$VIDMNU_TITLE"
|
|
Option "$VIDMNU_SCALEMODE", "vid_scalemode", "ScaleModes"
|
|
Slider "$VIDMNU_SCALEFACTOR", "vid_scalefactor", 0.25, 2.0, 0.25, 2
|
|
}
|
|
|
|
OptionMenu MiscOptionsSimple protected
|
|
{
|
|
Title "$MISCMNU_TITLE"
|
|
Option "$MISCMNU_QUERYIWAD", "queryiwad", "OnOff"
|
|
Option "$MISCMNU_NOCHEATS", "nocheats", "OnOff"
|
|
Option "$MISCMNU_ALLCHEATS", "allcheats", "OnOff"
|
|
Option "$MISCMNU_ENABLEAUTOSAVES", "disableautosave", "Autosave"
|
|
Option "$MISCMNU_DEHLOAD", "dehload", "dehopt"
|
|
Option "$MISCMNU_ENABLESCRIPTSCREENSHOTS", "enablescriptscreenshot", "OnOff"
|
|
Option "$OPTMNU_LANGUAGE", "language", "LanguageOptions"
|
|
Option "$MSGMNU_LONGSAVEMESSAGES", "longsavemessages", "OnOff"
|
|
}
|
|
|
|
OptionMenu "MouseOptionsSimple" protected
|
|
{
|
|
Title "$MOUSEMNU_TITLE"
|
|
Option "$MOUSEMNU_ENABLEMOUSE", "use_mouse", "YesNo"
|
|
Option "$MOUSEMNU_MOUSEINMENU", "m_use_mouse", "MenuMouse", "use_mouse"
|
|
IfOption(Windows)
|
|
{
|
|
Option "$MOUSEMNU_SWAPBUTTONS", "m_swapbuttons", "YesNo"
|
|
}
|
|
Option "$MOUSEMNU_CURSOR", "vid_cursor", "Cursors"
|
|
StaticText ""
|
|
Slider "$MOUSEMNU_SENSITIVITY_X", "m_sensitivity_x", 0.5, 8, 0.25
|
|
Slider "$MOUSEMNU_SENSITIVITY_Y", "m_sensitivity_y", 0.5, 8, 0.25
|
|
StaticText ""
|
|
Option "$MOUSEMNU_INVERTMOUSE", "invertmouse", "OnOff"
|
|
}
|