mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 20:21:26 +00:00
Change more default settings
- Show item counter on automap - Enable textured automap - HUD border scaling factor to better match default status bar scaling - Enable subtitles - Set render quality to "quality" to fix level mesh seams (gl_seamless) - Enable the first crosshair, and set its scale slightly smaller - Grow crosshair when picking up items - Show nametags when switching items and weapons - Always run enabled - Disable save/load confirmation dialog - Enable quicksave rotation - Enable additively-translucent Doom rocket explosion - Increase default particles to 10k, and increase the slider to 65k (engine limit) - Disable night vision effect The following changes from the original commit were not taken: - Enable thicker automap lines and anti-aliased lines for better visibility with high res displays - Enable mouse in menus by default (instead of touchscreen-like) - Don't show ENDDOOM when quitting the app - Set autoaim slider to 0 - Set sprite clipping to "Always" as this looks better than having sprites sink into the geometry - Set particle style to round as it matches the pixelated aesthetics better
This commit is contained in:
parent
4f1fde95ca
commit
611da0d65d
11 changed files with 16 additions and 16 deletions
|
@ -130,7 +130,7 @@ struct islope_t
|
|||
//
|
||||
//=============================================================================
|
||||
|
||||
CVAR(Bool, am_textured, false, CVAR_ARCHIVE)
|
||||
CVAR(Bool, am_textured, true, CVAR_ARCHIVE)
|
||||
CVAR(Float, am_linealpha, 1.0f, CVAR_ARCHIVE)
|
||||
CVAR(Int, am_linethickness, 1, CVAR_ARCHIVE)
|
||||
CVAR(Int, am_lineantialiasing, 0, CVAR_ARCHIVE)
|
||||
|
@ -159,7 +159,7 @@ CVAR(Int, am_rotate, 0, CVAR_ARCHIVE);
|
|||
CVAR(Int, am_overlay, 0, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showsecrets, true, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showmonsters, true, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showitems, false, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showitems, true, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showtime, true, CVAR_ARCHIVE);
|
||||
CVAR(Bool, am_showtotaltime, false, CVAR_ARCHIVE);
|
||||
CVAR(Int, am_colorset, 0, CVAR_ARCHIVE);
|
||||
|
|
|
@ -47,7 +47,7 @@ static F2DDrawer drawer = F2DDrawer();
|
|||
F2DDrawer* twod = &drawer;
|
||||
|
||||
EXTERN_CVAR(Float, transsouls)
|
||||
CVAR(Float, classic_scaling_factor, 1.0, CVAR_ARCHIVE)
|
||||
CVAR(Float, classic_scaling_factor, 2.0, CVAR_ARCHIVE)
|
||||
CVAR(Float, classic_scaling_pixelaspect, 1.2f, CVAR_ARCHIVE)
|
||||
|
||||
IMPLEMENT_CLASS(FCanvas, false, false)
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
#include "m_argv.h"
|
||||
#include "i_interface.h"
|
||||
|
||||
CVAR(Bool, inter_subtitles, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG);
|
||||
CVAR(Bool, inter_subtitles, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG);
|
||||
|
||||
CutsceneState cutscene;
|
||||
static int ticks;
|
||||
|
|
|
@ -56,7 +56,7 @@ CUSTOM_CVAR(Int, gl_fogmode, 2, CVAR_ARCHIVE | CVAR_NOINITCALL)
|
|||
CVAR(Bool, gl_portals, true, 0)
|
||||
CVAR(Bool,gl_mirrors,true,0) // This is for debugging only!
|
||||
CVAR(Bool,gl_mirror_envmap, true, CVAR_GLOBALCONFIG|CVAR_ARCHIVE)
|
||||
CVAR(Bool, gl_seamless, false, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
CVAR(Bool, gl_seamless, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
|
||||
CUSTOM_CVAR(Int, r_mirror_recursions,4,CVAR_GLOBALCONFIG|CVAR_ARCHIVE)
|
||||
{
|
||||
|
|
|
@ -59,7 +59,7 @@ IMPLEMENT_CLASS(DHUDFont, false, false);
|
|||
|
||||
CVAR(Color, crosshaircolor, 0xff0000, CVAR_ARCHIVE);
|
||||
CVAR(Int, crosshairhealth, 2, CVAR_ARCHIVE);
|
||||
CVARD(Float, crosshairscale, 0.5, CVAR_ARCHIVE, "changes the size of the crosshair");
|
||||
CVARD(Float, crosshairscale, 0.3f, CVAR_ARCHIVE, "changes the size of the crosshair");
|
||||
CVAR(Bool, crosshairgrow, false, CVAR_ARCHIVE);
|
||||
|
||||
CUSTOM_CVARD(Float, hud_scalefactor, 1.f, CVAR_ARCHIVE, "changes the hud scale")
|
||||
|
|
|
@ -122,10 +122,10 @@ CUSTOM_CVAR (Int, cl_maxdecals, 1024, CVAR_ARCHIVE|CVAR_NOINITCALL)
|
|||
|
||||
// [BC] Allow the maximum number of particles to be specified by a cvar (so people
|
||||
// with lots of nice hardware can have lots of particles!).
|
||||
CUSTOM_CVAR(Int, r_maxparticles, 4000, CVAR_ARCHIVE | CVAR_NOINITCALL)
|
||||
CUSTOM_CVAR(Int, r_maxparticles, 10000, CVAR_ARCHIVE | CVAR_NOINITCALL)
|
||||
{
|
||||
if (self == 0)
|
||||
self = 4000;
|
||||
self = 10000;
|
||||
else if (self > 65535)
|
||||
self = 65535;
|
||||
else if (self < 100)
|
||||
|
|
|
@ -131,7 +131,7 @@ EXTERN_CVAR (Float, con_midtime);
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
CUSTOM_CVAR (Int, displaynametags, 0, CVAR_ARCHIVE)
|
||||
CUSTOM_CVAR (Int, displaynametags, 3, CVAR_ARCHIVE)
|
||||
{
|
||||
if (self < 0 || self > 3)
|
||||
{
|
||||
|
@ -201,7 +201,7 @@ int lookspeed[2] = {450, 512};
|
|||
|
||||
#define SLOWTURNTICS 6
|
||||
|
||||
CVAR (Bool, cl_run, false, CVAR_GLOBALCONFIG|CVAR_ARCHIVE) // Always run?
|
||||
CVAR (Bool, cl_run, true, CVAR_GLOBALCONFIG|CVAR_ARCHIVE) // Always run?
|
||||
CVAR (Bool, freelook, true, CVAR_GLOBALCONFIG|CVAR_ARCHIVE) // Always mlook?
|
||||
CVAR (Bool, lookstrafe, false, CVAR_GLOBALCONFIG|CVAR_ARCHIVE) // Always strafe with mouse?
|
||||
CVAR (Float, m_forward, 1.f, CVAR_GLOBALCONFIG|CVAR_ARCHIVE)
|
||||
|
@ -2180,7 +2180,7 @@ CCMD(opensaves)
|
|||
CVAR (Int, autosavenum, 0, CVAR_NOSET|CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
static int nextautosave = -1;
|
||||
CVAR (Int, disableautosave, 0, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
CVAR (Bool, saveloadconfirmation, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) // [mxd]
|
||||
CVAR (Bool, saveloadconfirmation, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG) // [mxd]
|
||||
CUSTOM_CVAR (Int, autosavecount, 4, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
{
|
||||
if (self < 0)
|
||||
|
@ -2188,7 +2188,7 @@ CUSTOM_CVAR (Int, autosavecount, 4, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
|||
}
|
||||
CVAR (Int, quicksavenum, -1, CVAR_NOSET|CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
static int lastquicksave = -1;
|
||||
CVAR (Bool, quicksaverotation, false, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
CVAR (Bool, quicksaverotation, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
CUSTOM_CVAR (Int, quicksaverotationcount, 4, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
||||
{
|
||||
if (self < 1)
|
||||
|
|
|
@ -122,7 +122,7 @@ EXTERN_CVAR(Float, hud_scalefactor)
|
|||
EXTERN_CVAR(Bool, hud_aspectscale)
|
||||
|
||||
CVAR (Bool, crosshairon, true, CVAR_ARCHIVE);
|
||||
CVAR (Int, crosshair, 0, CVAR_ARCHIVE)
|
||||
CVAR (Int, crosshair, 1, CVAR_ARCHIVE)
|
||||
CVAR (Bool, crosshairforce, false, CVAR_ARCHIVE)
|
||||
CUSTOM_CVAR(Int, am_showmaplabel, 2, CVAR_ARCHIVE)
|
||||
{
|
||||
|
|
|
@ -153,7 +153,7 @@ CUSTOM_CVAR (Float, sv_gravity, 800.f, CVAR_SERVERINFO|CVAR_NOSAVE|CVAR_NOINITCA
|
|||
}
|
||||
|
||||
CVAR (Bool, cl_missiledecals, true, CVAR_ARCHIVE)
|
||||
CVAR (Bool, addrocketexplosion, false, CVAR_ARCHIVE)
|
||||
CVAR (Bool, addrocketexplosion, true, CVAR_ARCHIVE)
|
||||
CVAR (Int, cl_pufftype, 0, CVAR_ARCHIVE);
|
||||
CVAR (Int, cl_bloodtype, 0, CVAR_ARCHIVE);
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
static float distfogtable[2][256]; // light to fog conversion table for black fog
|
||||
|
||||
CVAR(Int, gl_weaponlight, 8, CVAR_ARCHIVE);
|
||||
CVAR(Bool, gl_enhanced_nightvision, true, CVAR_ARCHIVE|CVAR_NOINITCALL)
|
||||
CVAR(Bool, gl_enhanced_nightvision, false, CVAR_ARCHIVE|CVAR_NOINITCALL)
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
|
|
|
@ -945,7 +945,7 @@ OptionMenu "VideoOptions" protected
|
|||
Option "$DSPLYMNU_ROCKETTRAILS", "cl_rockettrails", "RocketTrailTypes"
|
||||
Option "$DSPLYMNU_BLOODTYPE", "cl_bloodtype", "BloodTypes"
|
||||
Option "$DSPLYMNU_PUFFTYPE", "cl_pufftype", "PuffTypes"
|
||||
Slider "$DSPLYMNU_MAXPARTICLES", "r_maxparticles", 100, 10000, 100, 0
|
||||
Slider "$DSPLYMNU_MAXPARTICLES", "r_maxparticles", 100, 65535, 100, 0
|
||||
Slider "$DSPLYMNU_MAXDECALS", "cl_maxdecals", 0, 10000, 100, 0
|
||||
Option "$DSPLYMNU_PLAYERSPRITES", "r_drawplayersprites", "OnOff"
|
||||
Option "$DSPLYMNU_DEATHCAM", "r_deathcamera", "OnOff"
|
||||
|
|
Loading…
Reference in a new issue