mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 07:45:33 +01:00
Merge pull request #3381 from Armada651/revert-3076
Revert "Merge pull request #3076 from void-ghost/stereo3d_presets"
This commit is contained in:
commit
aabcd441d9
@ -126,12 +126,6 @@ const std::string hotkey_labels[] =
|
|||||||
_trans("Undo Save State"),
|
_trans("Undo Save State"),
|
||||||
_trans("Save State"),
|
_trans("Save State"),
|
||||||
_trans("Load 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");
|
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_SAVE_STATE_FILE,
|
||||||
HK_LOAD_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,
|
NUM_HOTKEYS,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1482,72 +1482,29 @@ void CFrame::ParseHotkeys()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
auto savePreset = [](const std::string& param, int value)
|
if (IsHotkey(HK_DECREASE_DEPTH, true))
|
||||||
{
|
|
||||||
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 (--g_Config.iStereoDepth < 0)
|
if (--g_Config.iStereoDepth < 0)
|
||||||
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)
|
if (++g_Config.iStereoDepth > 100)
|
||||||
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;
|
g_Config.iStereoConvergence -= 5;
|
||||||
if (g_Config.iStereoConvergence < 0)
|
if (g_Config.iStereoConvergence < 0)
|
||||||
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;
|
g_Config.iStereoConvergence += 5;
|
||||||
if (g_Config.iStereoConvergence > 500)
|
if (g_Config.iStereoConvergence > 500)
|
||||||
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;
|
static float debugSpeed = 1.0f;
|
||||||
if (IsHotkey(HK_FREELOOK_DECREASE_SPEED, true))
|
if (IsHotkey(HK_FREELOOK_DECREASE_SPEED, true))
|
||||||
debugSpeed /= 1.1f;
|
debugSpeed /= 1.1f;
|
||||||
|
@ -17,7 +17,6 @@ class VideoBackend : public VideoBackendHardware
|
|||||||
|
|
||||||
std::string GetName() const override;
|
std::string GetName() const override;
|
||||||
std::string GetDisplayName() const override;
|
std::string GetDisplayName() const override;
|
||||||
std::string GetConfigName() const override;
|
|
||||||
|
|
||||||
void Video_Prepare() override;
|
void Video_Prepare() override;
|
||||||
void Video_Cleanup() override;
|
void Video_Cleanup() override;
|
||||||
|
@ -65,11 +65,6 @@ std::string VideoBackend::GetDisplayName() const
|
|||||||
return "Direct3D";
|
return "Direct3D";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string VideoBackend::GetConfigName() const
|
|
||||||
{
|
|
||||||
return "gfx_dx11";
|
|
||||||
}
|
|
||||||
|
|
||||||
void InitBackendInfo()
|
void InitBackendInfo()
|
||||||
{
|
{
|
||||||
HRESULT hr = DX11::D3D::LoadDXGI();
|
HRESULT hr = DX11::D3D::LoadDXGI();
|
||||||
@ -148,7 +143,7 @@ void InitBackendInfo()
|
|||||||
void VideoBackend::ShowConfig(void *hParent)
|
void VideoBackend::ShowConfig(void *hParent)
|
||||||
{
|
{
|
||||||
InitBackendInfo();
|
InitBackendInfo();
|
||||||
Host_ShowVideoConfig(hParent, GetDisplayName(), GetConfigName());
|
Host_ShowVideoConfig(hParent, GetDisplayName(), "gfx_dx11");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool VideoBackend::Initialize(void *window_handle)
|
bool VideoBackend::Initialize(void *window_handle)
|
||||||
@ -161,7 +156,7 @@ bool VideoBackend::Initialize(void *window_handle)
|
|||||||
|
|
||||||
frameCount = 0;
|
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.GameIniLoad();
|
||||||
g_Config.UpdateProjectionHack();
|
g_Config.UpdateProjectionHack();
|
||||||
g_Config.VerifyValidity();
|
g_Config.VerifyValidity();
|
||||||
|
@ -17,7 +17,6 @@ class VideoBackend : public VideoBackendHardware
|
|||||||
|
|
||||||
std::string GetName() const override;
|
std::string GetName() const override;
|
||||||
std::string GetDisplayName() const override;
|
std::string GetDisplayName() const override;
|
||||||
std::string GetConfigName() const override;
|
|
||||||
|
|
||||||
void Video_Prepare() override;
|
void Video_Prepare() override;
|
||||||
void Video_Cleanup() override;
|
void Video_Cleanup() override;
|
||||||
|
@ -103,11 +103,6 @@ std::string VideoBackend::GetDisplayName() const
|
|||||||
return "OpenGL";
|
return "OpenGL";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string VideoBackend::GetConfigName() const
|
|
||||||
{
|
|
||||||
return "gfx_opengl";
|
|
||||||
}
|
|
||||||
|
|
||||||
static std::vector<std::string> GetShaders(const std::string &sub_dir = "")
|
static std::vector<std::string> GetShaders(const std::string &sub_dir = "")
|
||||||
{
|
{
|
||||||
std::vector<std::string> paths = DoFileSearch({".glsl"}, {
|
std::vector<std::string> paths = DoFileSearch({".glsl"}, {
|
||||||
@ -148,7 +143,7 @@ void VideoBackend::ShowConfig(void *_hParent)
|
|||||||
{
|
{
|
||||||
if (!s_BackendInitialized)
|
if (!s_BackendInitialized)
|
||||||
InitBackendInfo();
|
InitBackendInfo();
|
||||||
Host_ShowVideoConfig(_hParent, GetDisplayName(), GetConfigName());
|
Host_ShowVideoConfig(_hParent, GetDisplayName(), "gfx_opengl");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool VideoBackend::Initialize(void *window_handle)
|
bool VideoBackend::Initialize(void *window_handle)
|
||||||
@ -158,7 +153,7 @@ bool VideoBackend::Initialize(void *window_handle)
|
|||||||
|
|
||||||
frameCount = 0;
|
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.GameIniLoad();
|
||||||
g_Config.UpdateProjectionHack();
|
g_Config.UpdateProjectionHack();
|
||||||
g_Config.VerifyValidity();
|
g_Config.VerifyValidity();
|
||||||
|
@ -65,19 +65,14 @@ std::string VideoSoftware::GetDisplayName() const
|
|||||||
return "Software Renderer";
|
return "Software Renderer";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string VideoSoftware::GetConfigName() const
|
|
||||||
{
|
|
||||||
return "gfx_software";
|
|
||||||
}
|
|
||||||
|
|
||||||
void VideoSoftware::ShowConfig(void *hParent)
|
void VideoSoftware::ShowConfig(void *hParent)
|
||||||
{
|
{
|
||||||
Host_ShowVideoConfig(hParent, GetDisplayName(), GetConfigName());
|
Host_ShowVideoConfig(hParent, GetDisplayName(), "gfx_software");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool VideoSoftware::Initialize(void *window_handle)
|
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);
|
SWOGLWindow::Init(window_handle);
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@ class VideoSoftware : public VideoBackend
|
|||||||
|
|
||||||
std::string GetName() const override;
|
std::string GetName() const override;
|
||||||
std::string GetDisplayName() const override;
|
std::string GetDisplayName() const override;
|
||||||
std::string GetConfigName() const override;
|
|
||||||
|
|
||||||
void EmuStateChange(EMUSTATE_CHANGE newState) override;
|
void EmuStateChange(EMUSTATE_CHANGE newState) override;
|
||||||
|
|
||||||
|
@ -72,7 +72,6 @@ public:
|
|||||||
|
|
||||||
virtual std::string GetName() const = 0;
|
virtual std::string GetName() const = 0;
|
||||||
virtual std::string GetDisplayName() const { return GetName(); }
|
virtual std::string GetDisplayName() const { return GetName(); }
|
||||||
virtual std::string GetConfigName() const = 0;
|
|
||||||
|
|
||||||
virtual void ShowConfig(void*) = 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("StereoConvergencePercentage", &iStereoConvergencePercentage, 100);
|
||||||
stereoscopy->Get("StereoSwapEyes", &bStereoSwapEyes, false);
|
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");
|
IniFile::Section* hacks = iniFile.GetOrCreateSection("Hacks");
|
||||||
hacks->Get("EFBAccessEnable", &bEFBAccessEnable, true);
|
hacks->Get("EFBAccessEnable", &bEFBAccessEnable, true);
|
||||||
hacks->Get("BBoxEnable", &bBBoxEnable, false);
|
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", "MaxAnisotropy", iMaxAnisotropy); // NOTE - this is x in (1 << x)
|
||||||
CHECK_SETTING("Video_Enhancements", "PostProcessingShader", sPostProcessingShader);
|
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", "StereoMode", iStereoMode);
|
||||||
CHECK_SETTING("Video_Stereoscopy", "StereoDepth", iStereoDepth);
|
CHECK_SETTING("Video_Stereoscopy", "StereoDepth", iStereoDepth);
|
||||||
CHECK_SETTING("Video_Stereoscopy", "StereoConvergence", iStereoConvergence);
|
CHECK_SETTING("Video_Stereoscopy", "StereoConvergence", iStereoConvergence);
|
||||||
|
@ -51,14 +51,6 @@ enum StereoMode
|
|||||||
STEREO_3DVISION
|
STEREO_3DVISION
|
||||||
};
|
};
|
||||||
|
|
||||||
constexpr int STEREOSCOPY_PRESETS_NUM = 3;
|
|
||||||
|
|
||||||
struct StereoscopyPreset final
|
|
||||||
{
|
|
||||||
int depth;
|
|
||||||
int convergence;
|
|
||||||
};
|
|
||||||
|
|
||||||
// NEVER inherit from this class.
|
// NEVER inherit from this class.
|
||||||
struct VideoConfig final
|
struct VideoConfig final
|
||||||
{
|
{
|
||||||
@ -88,8 +80,6 @@ struct VideoConfig final
|
|||||||
bool bForceFiltering;
|
bool bForceFiltering;
|
||||||
int iMaxAnisotropy;
|
int iMaxAnisotropy;
|
||||||
std::string sPostProcessingShader;
|
std::string sPostProcessingShader;
|
||||||
std::array<StereoscopyPreset, STEREOSCOPY_PRESETS_NUM> oStereoPresets;
|
|
||||||
int iStereoActivePreset;
|
|
||||||
|
|
||||||
// Information
|
// Information
|
||||||
bool bShowFPS;
|
bool bShowFPS;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user