2008-12-08 05:25:12 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "Common.h"
|
|
|
|
#include "IniFile.h"
|
|
|
|
#include "Config.h"
|
2009-03-20 12:23:05 +00:00
|
|
|
#include "../../../Core/Core/Src/ConfigManager.h" // FIXME
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
Config g_Config;
|
|
|
|
|
|
|
|
Config::Config()
|
|
|
|
{
|
|
|
|
memset(this, 0, sizeof(Config));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::Load()
|
|
|
|
{
|
|
|
|
std::string temp;
|
|
|
|
IniFile iniFile;
|
|
|
|
iniFile.Load(FULL_CONFIG_DIR "gfx_opengl.ini");
|
|
|
|
|
|
|
|
// get resolution
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Get("Hardware", "WindowedRes", &temp, "640x480");
|
|
|
|
strncpy(iWindowedRes, temp.c_str(), 16);
|
|
|
|
|
|
|
|
iniFile.Get("Hardware", "FullscreenRes", &temp, "640x480");
|
|
|
|
strncpy(iFSResolution, temp.c_str(), 16);
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Get("Hardware", "Fullscreen", &bFullscreen, 0); // Hardware
|
2009-03-05 23:11:13 +00:00
|
|
|
iniFile.Get("Hardware", "VSync", &bVSync, 0); // Hardware
|
2009-02-21 20:59:30 +00:00
|
|
|
iniFile.Get("Hardware", "RenderToMainframe", &renderToMainframe, false);
|
2009-02-28 16:33:59 +00:00
|
|
|
iniFile.Get("Settings", "StretchToFit", &bNativeResolution, true);
|
2009-02-24 19:16:08 +00:00
|
|
|
iniFile.Get("Settings", "KeepAR_4_3", &bKeepAR43, false);
|
|
|
|
iniFile.Get("Settings", "KeepAR_16_9", &bKeepAR169, false);
|
2009-02-25 05:54:36 +00:00
|
|
|
iniFile.Get("Settings", "Crop", &bCrop, false);
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Get("Settings", "HideCursor", &bHideCursor, false);
|
2009-02-28 16:33:59 +00:00
|
|
|
iniFile.Get("Settings", "UseXFB", &bUseXFB, 0);
|
|
|
|
iniFile.Get("Settings", "AutoScale", &bAutoScale, true);
|
2008-12-20 22:18:52 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Get("Settings", "SafeTextureCache", &bSafeTextureCache, false); // Settings
|
|
|
|
iniFile.Get("Settings", "ShowFPS", &bShowFPS, false); // Settings
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Get("Settings", "OverlayStats", &bOverlayStats, false);
|
2009-02-15 20:49:59 +00:00
|
|
|
iniFile.Get("Settings", "OverlayBlendStats", &bOverlayBlendStats, false);
|
|
|
|
iniFile.Get("Settings", "OverlayProjStats", &bOverlayProjStats, false);
|
2009-03-16 07:54:44 +00:00
|
|
|
iniFile.Get("Settings", "ShowEFBCopyRegions", &bShowEFBCopyRegions, false);
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Get("Settings", "DLOptimize", &iCompileDLsLevel, 0);
|
|
|
|
iniFile.Get("Settings", "DumpTextures", &bDumpTextures, 0);
|
2009-03-07 09:29:25 +00:00
|
|
|
iniFile.Get("Settings", "DumpEFBTarget", &bDumpEFBTarget, 0);
|
2009-03-28 21:07:16 +00:00
|
|
|
iniFile.Get("Settings", "DumpFrames", &bDumpFrames, 0);
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Get("Settings", "ShowShaderErrors", &bShowShaderErrors, 0);
|
2009-03-08 20:04:40 +00:00
|
|
|
iniFile.Get("Settings", "MSAA", &iMultisampleMode, 0);
|
2009-03-16 05:04:59 +00:00
|
|
|
iniFile.Get("Settings", "DstAlphaPass", &bDstAlphaPass, false);
|
2008-12-20 22:18:52 +00:00
|
|
|
|
|
|
|
iniFile.Get("Settings", "TexFmtOverlayEnable", &bTexFmtOverlayEnable, 0);
|
|
|
|
iniFile.Get("Settings", "TexFmtOverlayCenter", &bTexFmtOverlayCenter, 0);
|
|
|
|
iniFile.Get("Settings", "WireFrame", &bWireFrame, 0);
|
|
|
|
iniFile.Get("Settings", "DisableLighting", &bDisableLighting, 0);
|
|
|
|
iniFile.Get("Settings", "DisableTexturing", &bDisableTexturing, 0);
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Get("Enhancements", "ForceFiltering", &bForceFiltering, 0);
|
|
|
|
iniFile.Get("Enhancements", "MaxAnisotropy", &iMaxAnisotropy, 3); // NOTE - this is x in (1 << x)
|
2008-12-20 22:18:52 +00:00
|
|
|
|
2009-01-11 22:25:57 +00:00
|
|
|
iniFile.Get("Hacks", "EFBCopyDisable", &bEFBCopyDisable, 0);
|
2009-03-10 22:51:17 +00:00
|
|
|
iniFile.Get("Hacks", "EFBCopyDisableHotKey", &bEFBCopyDisableHotKey, 0);
|
2009-03-02 19:38:38 +00:00
|
|
|
iniFile.Get("Hacks", "ProjectionHax1", &bProjectionHax1, 0);
|
2009-01-12 15:00:00 +00:00
|
|
|
iniFile.Get("Hacks", "EFBToTextureEnable", &bCopyEFBToRAM, 0);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
2009-03-20 11:51:22 +00:00
|
|
|
void Config::GameIniLoad() {
|
|
|
|
IniFile *iniFile = ((struct SConfig *)globals->config)->m_LocalCoreStartupParameter.gameIni;
|
2009-03-20 15:01:49 +00:00
|
|
|
if (! iniFile)
|
|
|
|
return;
|
|
|
|
|
2009-03-20 11:51:22 +00:00
|
|
|
if (iniFile->Exists("Video", "ForceFiltering"))
|
|
|
|
iniFile->Get("Video", "ForceFiltering", &bForceFiltering, 0);
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "MaxAnisotropy"))
|
|
|
|
iniFile->Get("Video", "MaxAnisotropy", &iMaxAnisotropy, 3); // NOTE - this is x in (1 << x)
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "EFBCopyDisable"))
|
|
|
|
iniFile->Get("Video", "EFBCopyDisable", &bEFBCopyDisable, 0);
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "EFBCopyDisableHotKey"))
|
|
|
|
iniFile->Get("Video", "EFBCopyDisableHotKey", &bEFBCopyDisableHotKey, 0);
|
|
|
|
|
2009-03-20 12:23:05 +00:00
|
|
|
if (iniFile->Exists("Video", "ProjectionHax1"))
|
2009-03-20 11:51:22 +00:00
|
|
|
iniFile->Get("Video", "ProjectionHax1", &bProjectionHax1, 0);
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "EFBToTextureEnable"))
|
|
|
|
iniFile->Get("Video", "EFBToTextureEnable", &bCopyEFBToRAM, 0);
|
2009-03-20 12:36:38 +00:00
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "SafeTextureCache"))
|
|
|
|
iniFile->Get("Video", "SafeTextureCache", &bSafeTextureCache, false);
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "MSAA"))
|
|
|
|
iniFile->Get("Video", "MSAA", &iMultisampleMode, 0);
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "DstAlphaPass"))
|
|
|
|
iniFile->Get("Video", "DstAlphaPass", &bDstAlphaPass, false);
|
|
|
|
|
|
|
|
if (iniFile->Exists("Video", "UseXFB"))
|
2009-03-22 21:34:06 +00:00
|
|
|
iniFile->Get("Video", "UseXFB", &bUseXFB, 0);
|
2009-03-20 12:36:38 +00:00
|
|
|
|
2009-03-20 11:51:22 +00:00
|
|
|
}
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
void Config::Save()
|
|
|
|
{
|
|
|
|
IniFile iniFile;
|
|
|
|
iniFile.Load(FULL_CONFIG_DIR "gfx_opengl.ini");
|
|
|
|
iniFile.Set("Hardware", "WindowedRes", iWindowedRes);
|
|
|
|
iniFile.Set("Hardware", "FullscreenRes", iFSResolution);
|
|
|
|
iniFile.Set("Hardware", "Fullscreen", bFullscreen);
|
2009-03-05 23:11:13 +00:00
|
|
|
iniFile.Set("Hardware", "VSync", bVSync);
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Set("Hardware", "RenderToMainframe", renderToMainframe);
|
2009-02-28 16:33:59 +00:00
|
|
|
iniFile.Set("Settings", "StretchToFit", bNativeResolution);
|
2009-02-24 19:16:08 +00:00
|
|
|
iniFile.Set("Settings", "KeepAR_4_3", bKeepAR43);
|
|
|
|
iniFile.Set("Settings", "KeepAR_16_9", bKeepAR169);
|
2009-02-25 05:54:36 +00:00
|
|
|
iniFile.Set("Settings", "Crop", bCrop);
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Set("Settings", "HideCursor", bHideCursor);
|
2009-02-28 16:33:59 +00:00
|
|
|
iniFile.Set("Settings", "UseXFB", bUseXFB);
|
|
|
|
iniFile.Set("Settings", "AutoScale", bAutoScale);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
iniFile.Set("Settings", "SafeTextureCache", bSafeTextureCache);
|
|
|
|
iniFile.Set("Settings", "ShowFPS", bShowFPS);
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Set("Settings", "OverlayStats", bOverlayStats);
|
2009-02-15 20:49:59 +00:00
|
|
|
iniFile.Set("Settings", "OverlayBlendStats", bOverlayBlendStats);
|
|
|
|
iniFile.Set("Settings", "OverlayProjStats", bOverlayProjStats);
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Set("Settings", "DLOptimize", iCompileDLsLevel);
|
2009-03-16 07:54:44 +00:00
|
|
|
iniFile.Set("Settings", "Show", iCompileDLsLevel);
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Set("Settings", "DumpTextures", bDumpTextures);
|
2009-03-07 09:29:25 +00:00
|
|
|
iniFile.Set("Settings", "DumpEFBTarget", bDumpEFBTarget);
|
2009-03-28 21:07:16 +00:00
|
|
|
iniFile.Set("Settings", "DumpFrames", bDumpFrames);
|
2009-03-16 07:54:44 +00:00
|
|
|
iniFile.Set("Settings", "ShowEFBCopyRegions", bShowEFBCopyRegions);
|
2009-03-16 07:56:59 +00:00
|
|
|
iniFile.Set("Settings", "ShowShaderErrors", bShowShaderErrors);
|
2009-03-08 20:04:40 +00:00
|
|
|
iniFile.Set("Settings", "MSAA", iMultisampleMode);
|
2008-12-20 22:18:52 +00:00
|
|
|
iniFile.Set("Settings", "TexFmtOverlayEnable", bTexFmtOverlayEnable);
|
|
|
|
iniFile.Set("Settings", "TexFmtOverlayCenter", bTexFmtOverlayCenter);
|
|
|
|
iniFile.Set("Settings", "Wireframe", bWireFrame);
|
|
|
|
iniFile.Set("Settings", "DisableLighting", bDisableLighting);
|
|
|
|
iniFile.Set("Settings", "DisableTexturing", bDisableTexturing);
|
2009-03-16 05:04:59 +00:00
|
|
|
iniFile.Set("Settings", "DstAlphaPass", bDstAlphaPass);
|
2008-12-20 22:18:52 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Set("Enhancements", "ForceFiltering", bForceFiltering);
|
|
|
|
iniFile.Set("Enhancements", "MaxAnisotropy", iMaxAnisotropy);
|
2008-12-20 22:18:52 +00:00
|
|
|
|
2009-01-11 22:25:57 +00:00
|
|
|
iniFile.Set("Hacks", "EFBCopyDisable", bEFBCopyDisable);
|
|
|
|
iniFile.Set("Hacks", "EFBCopyDisableHotKey", bEFBCopyDisableHotKey);
|
2009-03-02 19:38:38 +00:00
|
|
|
iniFile.Set("Hacks", "ProjectionHax1", bProjectionHax1);
|
2009-01-12 15:00:00 +00:00
|
|
|
iniFile.Set("Hacks", "EFBToTextureEnable", bCopyEFBToRAM);
|
2009-02-19 02:58:29 +00:00
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
iniFile.Save(FULL_CONFIG_DIR "gfx_opengl.ini");
|
|
|
|
}
|
2009-03-20 11:51:22 +00:00
|
|
|
|