Revert "Merge pull request #3076 from void-ghost/stereo3d_presets"
This reverts commit81414b4fa2
, reversing changes made tob926061f64
. Conflicts: Source/Core/DolphinWX/Frame.cpp Source/Core/VideoCommon/VideoConfig.cpp Source/Core/VideoCommon/VideoConfig.h
This commit is contained in:
parent
a55af16131
commit
8bda12bcfd
|
@ -126,12 +126,6 @@ const std::string hotkey_labels[] =
|
|||
_trans("Undo Save State"),
|
||||
_trans("Save State"),
|
||||
_trans("Load State"),
|
||||
|
||||
_trans("Toggle 3D Preset"),
|
||||
_trans("Use 3D Preset 1"),
|
||||
_trans("Use 3D Preset 2"),
|
||||
_trans("Use 3D Preset 3"),
|
||||
|
||||
};
|
||||
static_assert(NUM_HOTKEYS == sizeof(hotkey_labels) / sizeof(hotkey_labels[0]), "Wrong count of hotkey_labels");
|
||||
|
||||
|
|
|
@ -126,11 +126,6 @@ enum Hotkey
|
|||
HK_SAVE_STATE_FILE,
|
||||
HK_LOAD_STATE_FILE,
|
||||
|
||||
HK_SWITCH_STEREOSCOPY_PRESET,
|
||||
HK_USE_STEREOSCOPY_PRESET_0,
|
||||
HK_USE_STEREOSCOPY_PRESET_1,
|
||||
HK_USE_STEREOSCOPY_PRESET_2,
|
||||
|
||||
NUM_HOTKEYS,
|
||||
};
|
||||
|
||||
|
|
|
@ -1482,72 +1482,29 @@ void CFrame::ParseHotkeys()
|
|||
}
|
||||
}
|
||||
|
||||
auto savePreset = [](const std::string& param, int value)
|
||||
{
|
||||
IniFile localIni = SConfig::GetInstance().LoadLocalGameIni();
|
||||
localIni.GetOrCreateSection("Enhancements")->Set(
|
||||
StringFromFormat("Stereo%s_%d", param.c_str(), g_Config.iStereoActivePreset),
|
||||
value);
|
||||
std::string iniFileName = File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetUniqueID() + ".ini";
|
||||
OSD::AddMessage(StringFromFormat("%s: %d", param.c_str(), value) , 1000);
|
||||
localIni.Save(iniFileName);
|
||||
};
|
||||
|
||||
if (IsHotkey(HK_DECREASE_DEPTH))
|
||||
if (IsHotkey(HK_DECREASE_DEPTH, true))
|
||||
{
|
||||
if (--g_Config.iStereoDepth < 0)
|
||||
g_Config.iStereoDepth = 0;
|
||||
g_Config.oStereoPresets[g_Config.iStereoActivePreset].depth = g_Config.iStereoDepth;
|
||||
savePreset("Depth", g_Config.iStereoDepth);
|
||||
}
|
||||
if (IsHotkey(HK_INCREASE_DEPTH))
|
||||
if (IsHotkey(HK_INCREASE_DEPTH, true))
|
||||
{
|
||||
if (++g_Config.iStereoDepth > 100)
|
||||
g_Config.iStereoDepth = 100;
|
||||
g_Config.oStereoPresets[g_Config.iStereoActivePreset].depth = g_Config.iStereoDepth;
|
||||
savePreset("Depth", g_Config.iStereoDepth);
|
||||
}
|
||||
if (IsHotkey(HK_DECREASE_CONVERGENCE))
|
||||
if (IsHotkey(HK_DECREASE_CONVERGENCE, true))
|
||||
{
|
||||
g_Config.iStereoConvergence -= 5;
|
||||
if (g_Config.iStereoConvergence < 0)
|
||||
g_Config.iStereoConvergence = 0;
|
||||
g_Config.oStereoPresets[g_Config.iStereoActivePreset].convergence = g_Config.iStereoConvergence;
|
||||
savePreset("Convergence", g_Config.iStereoConvergence);
|
||||
}
|
||||
if (IsHotkey(HK_INCREASE_CONVERGENCE))
|
||||
if (IsHotkey(HK_INCREASE_CONVERGENCE, true))
|
||||
{
|
||||
g_Config.iStereoConvergence += 5;
|
||||
if (g_Config.iStereoConvergence > 500)
|
||||
g_Config.iStereoConvergence = 500;
|
||||
g_Config.oStereoPresets[g_Config.iStereoActivePreset].convergence = g_Config.iStereoConvergence;
|
||||
savePreset("Convergence", g_Config.iStereoConvergence);
|
||||
}
|
||||
|
||||
if (IsHotkey(HK_SWITCH_STEREOSCOPY_PRESET))
|
||||
{
|
||||
g_Config.iStereoActivePreset = !g_Config.iStereoActivePreset;
|
||||
g_Config.iStereoConvergence = g_Config.oStereoPresets[g_Config.iStereoActivePreset].convergence;
|
||||
g_Config.iStereoDepth = g_Config.oStereoPresets[g_Config.iStereoActivePreset].depth;
|
||||
}
|
||||
if (IsHotkey(HK_USE_STEREOSCOPY_PRESET_0))
|
||||
{
|
||||
g_Config.iStereoActivePreset = 0;
|
||||
g_Config.iStereoConvergence = g_Config.oStereoPresets[g_Config.iStereoActivePreset].convergence;
|
||||
g_Config.iStereoDepth = g_Config.oStereoPresets[g_Config.iStereoActivePreset].depth;
|
||||
}
|
||||
if (IsHotkey(HK_USE_STEREOSCOPY_PRESET_1))
|
||||
{
|
||||
g_Config.iStereoActivePreset = 1;
|
||||
g_Config.iStereoConvergence = g_Config.oStereoPresets[g_Config.iStereoActivePreset].convergence;
|
||||
g_Config.iStereoDepth = g_Config.oStereoPresets[g_Config.iStereoActivePreset].depth;
|
||||
}
|
||||
if (IsHotkey(HK_USE_STEREOSCOPY_PRESET_2))
|
||||
{
|
||||
g_Config.iStereoActivePreset = 2;
|
||||
g_Config.iStereoConvergence = g_Config.oStereoPresets[g_Config.iStereoActivePreset].convergence;
|
||||
g_Config.iStereoDepth = g_Config.oStereoPresets[g_Config.iStereoActivePreset].depth;
|
||||
}
|
||||
static float debugSpeed = 1.0f;
|
||||
if (IsHotkey(HK_FREELOOK_DECREASE_SPEED, true))
|
||||
debugSpeed /= 1.1f;
|
||||
|
|
|
@ -17,7 +17,6 @@ class VideoBackend : public VideoBackendHardware
|
|||
|
||||
std::string GetName() const override;
|
||||
std::string GetDisplayName() const override;
|
||||
std::string GetConfigName() const override;
|
||||
|
||||
void Video_Prepare() override;
|
||||
void Video_Cleanup() override;
|
||||
|
|
|
@ -65,11 +65,6 @@ std::string VideoBackend::GetDisplayName() const
|
|||
return "Direct3D";
|
||||
}
|
||||
|
||||
std::string VideoBackend::GetConfigName() const
|
||||
{
|
||||
return "gfx_dx11";
|
||||
}
|
||||
|
||||
void InitBackendInfo()
|
||||
{
|
||||
HRESULT hr = DX11::D3D::LoadDXGI();
|
||||
|
@ -148,7 +143,7 @@ void InitBackendInfo()
|
|||
void VideoBackend::ShowConfig(void *hParent)
|
||||
{
|
||||
InitBackendInfo();
|
||||
Host_ShowVideoConfig(hParent, GetDisplayName(), GetConfigName());
|
||||
Host_ShowVideoConfig(hParent, GetDisplayName(), "gfx_dx11");
|
||||
}
|
||||
|
||||
bool VideoBackend::Initialize(void *window_handle)
|
||||
|
@ -161,7 +156,7 @@ bool VideoBackend::Initialize(void *window_handle)
|
|||
|
||||
frameCount = 0;
|
||||
|
||||
g_Config.Load(File::GetUserPath(D_CONFIG_IDX) + GetConfigName() + ".ini");
|
||||
g_Config.Load(File::GetUserPath(D_CONFIG_IDX) + "gfx_dx11.ini");
|
||||
g_Config.GameIniLoad();
|
||||
g_Config.UpdateProjectionHack();
|
||||
g_Config.VerifyValidity();
|
||||
|
|
|
@ -17,7 +17,6 @@ class VideoBackend : public VideoBackendHardware
|
|||
|
||||
std::string GetName() const override;
|
||||
std::string GetDisplayName() const override;
|
||||
std::string GetConfigName() const override;
|
||||
|
||||
void Video_Prepare() override;
|
||||
void Video_Cleanup() override;
|
||||
|
|
|
@ -103,11 +103,6 @@ std::string VideoBackend::GetDisplayName() const
|
|||
return "OpenGL";
|
||||
}
|
||||
|
||||
std::string VideoBackend::GetConfigName() const
|
||||
{
|
||||
return "gfx_opengl";
|
||||
}
|
||||
|
||||
static std::vector<std::string> GetShaders(const std::string &sub_dir = "")
|
||||
{
|
||||
std::vector<std::string> paths = DoFileSearch({".glsl"}, {
|
||||
|
@ -148,7 +143,7 @@ void VideoBackend::ShowConfig(void *_hParent)
|
|||
{
|
||||
if (!s_BackendInitialized)
|
||||
InitBackendInfo();
|
||||
Host_ShowVideoConfig(_hParent, GetDisplayName(), GetConfigName());
|
||||
Host_ShowVideoConfig(_hParent, GetDisplayName(), "gfx_opengl");
|
||||
}
|
||||
|
||||
bool VideoBackend::Initialize(void *window_handle)
|
||||
|
@ -158,7 +153,7 @@ bool VideoBackend::Initialize(void *window_handle)
|
|||
|
||||
frameCount = 0;
|
||||
|
||||
g_Config.Load(File::GetUserPath(D_CONFIG_IDX) + GetConfigName() + ".ini");
|
||||
g_Config.Load(File::GetUserPath(D_CONFIG_IDX) + "gfx_opengl.ini");
|
||||
g_Config.GameIniLoad();
|
||||
g_Config.UpdateProjectionHack();
|
||||
g_Config.VerifyValidity();
|
||||
|
|
|
@ -65,19 +65,14 @@ std::string VideoSoftware::GetDisplayName() const
|
|||
return "Software Renderer";
|
||||
}
|
||||
|
||||
std::string VideoSoftware::GetConfigName() const
|
||||
{
|
||||
return "gfx_software";
|
||||
}
|
||||
|
||||
void VideoSoftware::ShowConfig(void *hParent)
|
||||
{
|
||||
Host_ShowVideoConfig(hParent, GetDisplayName(), GetConfigName());
|
||||
Host_ShowVideoConfig(hParent, GetDisplayName(), "gfx_software");
|
||||
}
|
||||
|
||||
bool VideoSoftware::Initialize(void *window_handle)
|
||||
{
|
||||
g_SWVideoConfig.Load((File::GetUserPath(D_CONFIG_IDX) + GetConfigName() + ".ini").c_str());
|
||||
g_SWVideoConfig.Load((File::GetUserPath(D_CONFIG_IDX) + "gfx_software.ini").c_str());
|
||||
|
||||
SWOGLWindow::Init(window_handle);
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@ class VideoSoftware : public VideoBackend
|
|||
|
||||
std::string GetName() const override;
|
||||
std::string GetDisplayName() const override;
|
||||
std::string GetConfigName() const override;
|
||||
|
||||
void EmuStateChange(EMUSTATE_CHANGE newState) override;
|
||||
|
||||
|
|
|
@ -72,7 +72,6 @@ public:
|
|||
|
||||
virtual std::string GetName() const = 0;
|
||||
virtual std::string GetDisplayName() const { return GetName(); }
|
||||
virtual std::string GetConfigName() const = 0;
|
||||
|
||||
virtual void ShowConfig(void*) = 0;
|
||||
|
||||
|
|
|
@ -98,16 +98,6 @@ void VideoConfig::Load(const std::string& ini_file)
|
|||
stereoscopy->Get("StereoConvergencePercentage", &iStereoConvergencePercentage, 100);
|
||||
stereoscopy->Get("StereoSwapEyes", &bStereoSwapEyes, false);
|
||||
|
||||
//currently these settings are not saved in global config, so we could've initialized them directly
|
||||
for (size_t i = 0; i < oStereoPresets.size(); ++i)
|
||||
{
|
||||
stereoscopy->Get(StringFromFormat("StereoConvergencePercentage_%zu", i), &oStereoPresets[i].convergence, iStereoConvergencePercentage);
|
||||
stereoscopy->Get(StringFromFormat("StereoDepth_%zu", i), &oStereoPresets[i].depth, iStereoDepth);
|
||||
}
|
||||
stereoscopy->Get("StereoActivePreset", &iStereoActivePreset, 0);
|
||||
iStereoConvergencePercentage = oStereoPresets[iStereoActivePreset].convergence;
|
||||
iStereoDepth = oStereoPresets[iStereoActivePreset].depth;
|
||||
|
||||
IniFile::Section* hacks = iniFile.GetOrCreateSection("Hacks");
|
||||
hacks->Get("EFBAccessEnable", &bEFBAccessEnable, true);
|
||||
hacks->Get("BBoxEnable", &bBBoxEnable, false);
|
||||
|
@ -208,17 +198,6 @@ void VideoConfig::GameIniLoad()
|
|||
CHECK_SETTING("Video_Enhancements", "MaxAnisotropy", iMaxAnisotropy); // NOTE - this is x in (1 << x)
|
||||
CHECK_SETTING("Video_Enhancements", "PostProcessingShader", sPostProcessingShader);
|
||||
|
||||
//these are not overrides, they are per-game settings, hence no warning
|
||||
IniFile::Section* stereoscopy = iniFile.GetOrCreateSection("Stereoscopy");
|
||||
for (size_t i = 0; i < oStereoPresets.size(); ++i)
|
||||
{
|
||||
stereoscopy->Get(StringFromFormat("StereoConvergencePercentage_%zu", i), &oStereoPresets[i].convergence, iStereoConvergencePercentage);
|
||||
stereoscopy->Get(StringFromFormat("StereoDepth_%zu", i), &oStereoPresets[i].depth, iStereoDepth);
|
||||
}
|
||||
stereoscopy->Get("StereoActivePreset", &iStereoActivePreset, 0);
|
||||
iStereoConvergencePercentage = oStereoPresets[iStereoActivePreset].convergence;
|
||||
iStereoDepth = oStereoPresets[iStereoActivePreset].depth;
|
||||
|
||||
CHECK_SETTING("Video_Stereoscopy", "StereoMode", iStereoMode);
|
||||
CHECK_SETTING("Video_Stereoscopy", "StereoDepth", iStereoDepth);
|
||||
CHECK_SETTING("Video_Stereoscopy", "StereoConvergence", iStereoConvergence);
|
||||
|
|
|
@ -51,14 +51,6 @@ enum StereoMode
|
|||
STEREO_3DVISION
|
||||
};
|
||||
|
||||
constexpr int STEREOSCOPY_PRESETS_NUM = 3;
|
||||
|
||||
struct StereoscopyPreset final
|
||||
{
|
||||
int depth;
|
||||
int convergence;
|
||||
};
|
||||
|
||||
// NEVER inherit from this class.
|
||||
struct VideoConfig final
|
||||
{
|
||||
|
@ -88,8 +80,6 @@ struct VideoConfig final
|
|||
bool bForceFiltering;
|
||||
int iMaxAnisotropy;
|
||||
std::string sPostProcessingShader;
|
||||
std::array<StereoscopyPreset, STEREOSCOPY_PRESETS_NUM> oStereoPresets;
|
||||
int iStereoActivePreset;
|
||||
|
||||
// Information
|
||||
bool bShowFPS;
|
||||
|
|
Loading…
Reference in New Issue