2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2009-09-13 11:21:35 +03:00
|
|
|
|
|
|
|
// IMPORTANT: UI etc should modify g_Config. Graphics code should read g_ActiveConfig.
|
|
|
|
// The reason for this is to get rid of race conditions etc when the configuration
|
|
|
|
// changes in the middle of a frame. This is done by copying g_Config to g_ActiveConfig
|
2013-10-29 07:23:17 +02:00
|
|
|
// at the start of every frame. Noone should ever change members of g_ActiveConfig
|
2009-09-13 11:21:35 +03:00
|
|
|
// directly.
|
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2009-07-13 00:58:32 +03:00
|
|
|
#include <string>
|
2014-02-17 12:18:15 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2014-09-08 04:06:58 +03:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2009-07-13 00:58:32 +03:00
|
|
|
|
2009-02-04 19:33:59 +02:00
|
|
|
// Log in two categories, and save three other options in the same byte
|
2014-02-16 22:30:18 +02:00
|
|
|
#define CONF_LOG 1
|
|
|
|
#define CONF_PRIMLOG 2
|
|
|
|
#define CONF_SAVETARGETS 8
|
|
|
|
#define CONF_SAVESHADERS 16
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-02-09 23:03:16 +02:00
|
|
|
enum AspectMode
|
|
|
|
{
|
|
|
|
ASPECT_AUTO = 0,
|
2010-01-13 23:11:02 +02:00
|
|
|
ASPECT_FORCE_16_9 = 1,
|
2014-02-09 23:03:16 +02:00
|
|
|
ASPECT_FORCE_4_3 = 2,
|
|
|
|
ASPECT_STRETCH = 3,
|
2010-01-13 23:11:02 +02:00
|
|
|
};
|
|
|
|
|
2014-02-09 23:03:16 +02:00
|
|
|
enum EFBScale
|
|
|
|
{
|
2013-04-06 08:48:00 +03:00
|
|
|
SCALE_FORCE_INTEGRAL = -1,
|
|
|
|
SCALE_AUTO,
|
|
|
|
SCALE_AUTO_INTEGRAL,
|
|
|
|
SCALE_1X,
|
|
|
|
SCALE_1_5X,
|
|
|
|
SCALE_2X,
|
|
|
|
SCALE_2_5X,
|
|
|
|
SCALE_3X,
|
|
|
|
SCALE_4X,
|
|
|
|
};
|
|
|
|
|
2009-02-28 18:33:59 +02:00
|
|
|
// NEVER inherit from this class.
|
2014-03-16 23:00:29 +02:00
|
|
|
struct VideoConfig final
|
2008-12-08 06:46:09 +02:00
|
|
|
{
|
2011-03-21 21:57:31 +02:00
|
|
|
VideoConfig();
|
2014-03-12 21:33:41 +02:00
|
|
|
void Load(const std::string& ini_file);
|
2013-09-23 09:39:14 +03:00
|
|
|
void GameIniLoad();
|
2011-02-13 15:42:59 +02:00
|
|
|
void VerifyValidity();
|
2014-03-12 21:33:41 +02:00
|
|
|
void Save(const std::string& ini_file);
|
2009-06-04 02:38:31 +03:00
|
|
|
void UpdateProjectionHack();
|
2013-03-19 02:41:45 +02:00
|
|
|
bool IsVSync();
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2010-06-05 04:38:22 +03:00
|
|
|
// General
|
2009-03-06 01:11:13 +02:00
|
|
|
bool bVSync;
|
2014-06-18 16:04:23 +03:00
|
|
|
bool bFullscreen;
|
2010-09-30 18:24:34 +03:00
|
|
|
bool bRunning;
|
2009-09-03 00:30:19 +03:00
|
|
|
bool bWidescreenHack;
|
2010-01-13 23:11:02 +02:00
|
|
|
int iAspectRatio;
|
2010-06-05 04:38:22 +03:00
|
|
|
bool bCrop; // Aspect ratio controls.
|
|
|
|
bool bUseXFB;
|
2011-04-25 23:06:45 +03:00
|
|
|
bool bUseRealXFB;
|
2010-06-22 16:17:01 +03:00
|
|
|
|
2013-12-11 23:15:55 +02:00
|
|
|
// OpenMP
|
2011-03-19 12:05:57 +02:00
|
|
|
bool bOMPDecoder;
|
|
|
|
|
2008-12-08 06:46:09 +02:00
|
|
|
// Enhancements
|
2010-06-05 04:38:22 +03:00
|
|
|
int iMultisampleMode;
|
2010-06-09 18:33:01 +03:00
|
|
|
int iEFBScale;
|
2010-06-05 04:38:22 +03:00
|
|
|
bool bForceFiltering;
|
|
|
|
int iMaxAnisotropy;
|
2009-06-08 22:42:25 +03:00
|
|
|
std::string sPostProcessingShader;
|
2008-12-08 06:46:09 +02:00
|
|
|
|
|
|
|
// Information
|
2010-06-05 04:38:22 +03:00
|
|
|
bool bShowFPS;
|
2011-02-17 11:12:36 +02:00
|
|
|
bool bShowInputDisplay;
|
2010-06-05 04:38:22 +03:00
|
|
|
bool bOverlayStats;
|
2009-02-15 22:49:59 +02:00
|
|
|
bool bOverlayProjStats;
|
2010-06-05 04:38:22 +03:00
|
|
|
bool bTexFmtOverlayEnable;
|
|
|
|
bool bTexFmtOverlayCenter;
|
2009-03-16 09:54:44 +02:00
|
|
|
bool bShowEFBCopyRegions;
|
2014-07-09 18:03:17 +03:00
|
|
|
bool bLogRenderTimeToFile;
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2010-06-05 04:38:22 +03:00
|
|
|
// Render
|
|
|
|
bool bWireFrame;
|
|
|
|
bool bDstAlphaPass;
|
2009-04-01 15:31:18 +03:00
|
|
|
bool bDisableFog;
|
2013-03-20 03:51:12 +02:00
|
|
|
|
2010-06-05 04:38:22 +03:00
|
|
|
// Utility
|
|
|
|
bool bDumpTextures;
|
2011-04-25 23:06:45 +03:00
|
|
|
bool bHiresTextures;
|
2009-03-07 11:29:25 +02:00
|
|
|
bool bDumpEFBTarget;
|
2009-03-28 23:07:16 +02:00
|
|
|
bool bDumpFrames;
|
2011-02-12 00:09:20 +02:00
|
|
|
bool bUseFFV1;
|
2010-06-05 04:38:22 +03:00
|
|
|
bool bFreeLook;
|
2010-09-23 05:17:48 +03:00
|
|
|
bool bAnaglyphStereo;
|
|
|
|
int iAnaglyphStereoSeparation;
|
|
|
|
int iAnaglyphFocalAngle;
|
2014-07-26 13:43:49 +03:00
|
|
|
bool bBorderlessFullscreen;
|
2013-03-02 00:02:11 +02:00
|
|
|
|
2010-06-05 04:38:22 +03:00
|
|
|
// Hacks
|
|
|
|
bool bEFBAccessEnable;
|
2013-08-11 18:08:12 +03:00
|
|
|
bool bPerfQueriesEnable;
|
2011-03-19 12:05:57 +02:00
|
|
|
|
2010-11-18 05:50:50 +02:00
|
|
|
bool bEFBCopyEnable;
|
2010-12-20 16:48:46 +02:00
|
|
|
bool bEFBCopyCacheEnable;
|
2010-12-27 23:56:20 +02:00
|
|
|
bool bEFBEmulateFormatChanges;
|
2013-10-29 07:23:17 +02:00
|
|
|
bool bCopyEFBToTexture;
|
2009-12-15 03:40:54 +02:00
|
|
|
bool bCopyEFBScaled;
|
2010-11-15 11:54:07 +02:00
|
|
|
int iSafeTextureCache_ColorSamples;
|
2014-03-15 08:40:59 +02:00
|
|
|
int iPhackvalue[3];
|
2011-01-29 23:13:56 +02:00
|
|
|
std::string sPhackvalue[2];
|
2010-04-05 01:52:27 +03:00
|
|
|
float fAspectRatioHackW, fAspectRatioHackH;
|
2011-10-26 03:19:10 +03:00
|
|
|
bool bUseBBox;
|
2011-03-19 02:50:34 +02:00
|
|
|
bool bEnablePixelLighting;
|
2013-05-09 18:48:48 +03:00
|
|
|
bool bFastDepthCalc;
|
2010-06-05 04:38:22 +03:00
|
|
|
int iLog; // CONF_ bits
|
2012-05-28 12:31:37 +03:00
|
|
|
int iSaveTargetId; // TODO: Should be dropped
|
|
|
|
|
2009-09-13 11:21:35 +03:00
|
|
|
// D3D only config, mostly to be merged into the above
|
|
|
|
int iAdapter;
|
|
|
|
|
2011-09-09 22:34:46 +03:00
|
|
|
// Debugging
|
|
|
|
bool bEnableShaderDebugging;
|
|
|
|
|
2009-09-14 00:18:04 +03:00
|
|
|
// Static config per API
|
2011-05-31 23:16:59 +03:00
|
|
|
// TODO: Move this out of VideoConfig
|
2011-03-21 21:57:31 +02:00
|
|
|
struct
|
2010-11-21 16:47:28 +02:00
|
|
|
{
|
|
|
|
API_TYPE APIType;
|
|
|
|
|
2013-09-22 18:49:26 +03:00
|
|
|
std::vector<std::string> Adapters; // for D3D
|
2010-11-21 16:47:28 +02:00
|
|
|
std::vector<std::string> AAModes;
|
|
|
|
std::vector<std::string> PPShaders; // post-processing shaders
|
|
|
|
|
2013-02-18 18:14:56 +02:00
|
|
|
bool bUseMinimalMipCount;
|
2014-07-19 21:18:03 +03:00
|
|
|
bool bSupportsExclusiveFullscreen;
|
2013-09-22 18:49:26 +03:00
|
|
|
bool bSupportsDualSourceBlend;
|
2013-03-29 15:27:33 +02:00
|
|
|
bool bSupportsPrimitiveRestart;
|
2013-10-14 16:16:42 +03:00
|
|
|
bool bSupportsOversizedViewports;
|
2013-07-22 13:02:16 +03:00
|
|
|
bool bSupportsEarlyZ; // needed by PixelShaderGen, so must stay in VideoCommon
|
2014-03-30 21:58:05 +03:00
|
|
|
bool bSupportsBindingLayout; // Needed by ShaderGen, so must stay in VideoCommon
|
2010-11-21 16:47:28 +02:00
|
|
|
} backend_info;
|
2012-09-29 00:19:50 +03:00
|
|
|
|
2013-03-20 03:51:12 +02:00
|
|
|
// Utility
|
|
|
|
bool RealXFBEnabled() const { return bUseXFB && bUseRealXFB; }
|
|
|
|
bool VirtualXFBEnabled() const { return bUseXFB && !bUseRealXFB; }
|
|
|
|
bool EFBCopiesToTextureEnabled() const { return bEFBCopyEnable && bCopyEFBToTexture; }
|
|
|
|
bool EFBCopiesToRamEnabled() const { return bEFBCopyEnable && !bCopyEFBToTexture; }
|
2014-07-29 00:26:40 +03:00
|
|
|
bool BorderlessFullscreenEnabled() const { return !backend_info.bSupportsExclusiveFullscreen || bBorderlessFullscreen; }
|
2008-12-08 06:46:09 +02:00
|
|
|
};
|
|
|
|
|
2009-09-13 13:18:01 +03:00
|
|
|
extern VideoConfig g_Config;
|
|
|
|
extern VideoConfig g_ActiveConfig;
|
2009-09-13 11:21:35 +03:00
|
|
|
|
|
|
|
// Called every frame.
|
|
|
|
void UpdateActiveConfig();
|