2010-04-25 00:31:27 +00:00
|
|
|
/*
|
2009-02-09 21:15:56 +00:00
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* 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; either version 2, or (at your option)
|
|
|
|
* any later version.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* 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 for more details.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
2012-09-09 18:16:11 +00:00
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA USA.
|
2009-02-09 21:15:56 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "GSdx.h"
|
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
static void* s_hModule;
|
|
|
|
|
|
|
|
#ifdef _WINDOWS
|
2009-06-03 12:09:04 +00:00
|
|
|
|
|
|
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
|
|
|
{
|
|
|
|
switch(ul_reason_for_call)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
s_hModule = hModule;
|
|
|
|
case DLL_THREAD_ATTACH:
|
|
|
|
case DLL_THREAD_DETACH:
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2014-09-15 13:49:16 +00:00
|
|
|
bool GSdxApp::LoadResource(int id, vector<unsigned char>& buff, const char* type)
|
|
|
|
{
|
|
|
|
buff.clear();
|
|
|
|
HRSRC hRsrc = FindResource((HMODULE)s_hModule, MAKEINTRESOURCE(id), type != NULL ? type : RT_RCDATA);
|
|
|
|
if(!hRsrc) return false;
|
|
|
|
HGLOBAL hGlobal = ::LoadResource((HMODULE)s_hModule, hRsrc);
|
|
|
|
if(!hGlobal) return false;
|
|
|
|
DWORD size = SizeofResource((HMODULE)s_hModule, hRsrc);
|
|
|
|
if(!size) return false;
|
|
|
|
buff.resize(size);
|
|
|
|
memcpy(buff.data(), LockResource(hGlobal), size);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
#else
|
|
|
|
|
2014-09-15 13:49:16 +00:00
|
|
|
bool GSdxApp::LoadResource(int id, vector<unsigned char>& buff, const char* type)
|
|
|
|
{
|
|
|
|
buff.clear();
|
|
|
|
printf("LoadResource not implemented\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
size_t GSdxApp::GetPrivateProfileString(const char* lpAppName, const char* lpKeyName, const char* lpDefault, char* lpReturnedString, size_t nSize, const char* lpFileName)
|
2011-02-19 03:36:30 +00:00
|
|
|
{
|
2011-04-07 09:41:20 +00:00
|
|
|
BuildConfigurationMap(lpFileName);
|
|
|
|
|
|
|
|
std::string key(lpKeyName);
|
|
|
|
std::string value = m_configuration_map[key];
|
2011-04-08 17:41:04 +00:00
|
|
|
if (value.empty()) {
|
|
|
|
// save the value for futur call
|
|
|
|
m_configuration_map[key] = std::string(lpDefault);
|
2011-04-07 09:41:20 +00:00
|
|
|
strcpy(lpReturnedString, lpDefault);
|
2011-04-08 17:41:04 +00:00
|
|
|
} else
|
2011-04-07 09:41:20 +00:00
|
|
|
strcpy(lpReturnedString, value.c_str());
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
bool GSdxApp::WritePrivateProfileString(const char* lpAppName, const char* lpKeyName, const char* pString, const char* lpFileName)
|
2011-02-19 03:36:30 +00:00
|
|
|
{
|
2011-04-07 09:41:20 +00:00
|
|
|
BuildConfigurationMap(lpFileName);
|
|
|
|
|
|
|
|
std::string key(lpKeyName);
|
|
|
|
std::string value(pString);
|
|
|
|
m_configuration_map[key] = value;
|
|
|
|
|
|
|
|
// Save config to a file
|
|
|
|
FILE* f = fopen(lpFileName, "w");
|
|
|
|
|
|
|
|
if (f == NULL) return false; // FIXME print a nice message
|
|
|
|
|
|
|
|
map<std::string,std::string>::iterator it;
|
|
|
|
for (it = m_configuration_map.begin(); it != m_configuration_map.end(); ++it) {
|
|
|
|
// Do not save the inifile key which is not an option
|
|
|
|
if (it->first.compare("inifile") == 0) continue;
|
|
|
|
|
2011-04-08 17:41:04 +00:00
|
|
|
if (!it->second.empty())
|
|
|
|
fprintf(f, "%s = %s\n", it->first.c_str(), it->second.c_str());
|
2011-04-07 09:41:20 +00:00
|
|
|
}
|
|
|
|
fclose(f);
|
2011-02-19 03:36:30 +00:00
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
return false;
|
2011-02-19 03:36:30 +00:00
|
|
|
}
|
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
int GSdxApp::GetPrivateProfileInt(const char* lpAppName, const char* lpKeyName, int nDefault, const char* lpFileName)
|
2011-02-19 03:36:30 +00:00
|
|
|
{
|
2011-04-07 09:41:20 +00:00
|
|
|
BuildConfigurationMap(lpFileName);
|
2011-02-19 03:36:30 +00:00
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
std::string value = m_configuration_map[std::string(lpKeyName)];
|
2011-04-08 17:41:04 +00:00
|
|
|
if (value.empty()) {
|
|
|
|
// save the value for futur call
|
|
|
|
SetConfig(lpKeyName, nDefault);
|
2011-04-07 09:41:20 +00:00
|
|
|
return nDefault;
|
2011-04-08 17:41:04 +00:00
|
|
|
} else
|
2011-04-07 09:41:20 +00:00
|
|
|
return atoi(value.c_str());
|
2011-02-19 03:36:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
GSdxApp theApp;
|
2009-06-03 12:09:04 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
GSdxApp::GSdxApp()
|
|
|
|
{
|
2011-02-19 03:36:30 +00:00
|
|
|
m_ini = "inis/GSdx.ini";
|
|
|
|
m_section = "Settings";
|
|
|
|
|
2011-02-22 18:50:51 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(0, "Direct3D9", "Hardware"));
|
|
|
|
m_gs_renderers.push_back(GSSetting(1, "Direct3D9", "Software"));
|
2014-09-15 13:49:16 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(14, "Direct3D9", "OpenCL"));
|
2011-02-22 18:50:51 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(2, "Direct3D9", "Null"));
|
2014-09-15 13:49:16 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(3, "Direct3D", "Hardware"));
|
|
|
|
m_gs_renderers.push_back(GSSetting(4, "Direct3D", "Software"));
|
|
|
|
m_gs_renderers.push_back(GSSetting(15, "Direct3D", "OpenCL"));
|
|
|
|
m_gs_renderers.push_back(GSSetting(5, "Direct3D", "Null"));
|
2011-02-22 18:50:51 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(10, "Null", "Software"));
|
2014-09-15 13:49:16 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(16, "Null", "OpenCL"));
|
2011-02-22 18:50:51 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(11, "Null", "Null"));
|
2012-04-28 15:24:02 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(12, "OpenGL", "Hardware"));
|
|
|
|
m_gs_renderers.push_back(GSSetting(13, "OpenGL", "Software"));
|
2014-09-15 13:49:16 +00:00
|
|
|
m_gs_renderers.push_back(GSSetting(17, "OpenGL", "OpenCL"));
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
m_gs_interlace.push_back(GSSetting(0, "None", ""));
|
|
|
|
m_gs_interlace.push_back(GSSetting(1, "Weave tff", "saw-tooth"));
|
|
|
|
m_gs_interlace.push_back(GSSetting(2, "Weave bff", "saw-tooth"));
|
|
|
|
m_gs_interlace.push_back(GSSetting(3, "Bob tff", "use blend if shaking"));
|
|
|
|
m_gs_interlace.push_back(GSSetting(4, "Bob bff", "use blend if shaking"));
|
|
|
|
m_gs_interlace.push_back(GSSetting(5, "Blend tff", "slight blur, 1/2 fps"));
|
|
|
|
m_gs_interlace.push_back(GSSetting(6, "Blend bff", "slight blur, 1/2 fps"));
|
2012-04-25 08:46:51 +00:00
|
|
|
m_gs_interlace.push_back(GSSetting(7, "Auto", ""));
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
m_gs_aspectratio.push_back(GSSetting(0, "Stretch", ""));
|
|
|
|
m_gs_aspectratio.push_back(GSSetting(1, "4:3", ""));
|
|
|
|
m_gs_aspectratio.push_back(GSSetting(2, "16:9", ""));
|
|
|
|
|
2015-09-08 12:55:01 +00:00
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(1, "Native", ""));
|
2011-02-19 03:36:30 +00:00
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(2, "2x Native", ""));
|
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(3, "3x Native", ""));
|
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(4, "4x Native", ""));
|
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(5, "5x Native", ""));
|
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(6, "6x Native", ""));
|
2015-09-08 15:25:58 +00:00
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(8, "8x Native", ""));
|
2015-09-21 20:26:00 +00:00
|
|
|
m_gs_upscale_multiplier.push_back(GSSetting(0, "Custom", ""));
|
2011-02-19 03:36:30 +00:00
|
|
|
|
2015-08-11 16:35:45 +00:00
|
|
|
m_gs_max_anisotropy.push_back(GSSetting(0, "Off", ""));
|
GSdx: Anisotropic Filtering.
Fixes a small oversight on my part. Which was setting the maximum anisotropy to (0,1,2,3,4) respectively, instead of (1,2,4,8,16). So when you selected x16 for example, you were actually only getting x4 >.>
Corrected now, and you will be getting the full x16 when selected :)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5879 96395faa-99c1-11dd-bbfe-3dabce05a288
2014-02-03 20:06:00 +00:00
|
|
|
m_gs_max_anisotropy.push_back(GSSetting(2, "2x", ""));
|
|
|
|
m_gs_max_anisotropy.push_back(GSSetting(4, "4x", ""));
|
|
|
|
m_gs_max_anisotropy.push_back(GSSetting(8, "8x", ""));
|
|
|
|
m_gs_max_anisotropy.push_back(GSSetting(16, "16x", ""));
|
2014-02-03 16:58:11 +00:00
|
|
|
|
2015-05-07 18:19:36 +00:00
|
|
|
m_gs_filter.push_back(GSSetting(0, "Nearest", ""));
|
|
|
|
m_gs_filter.push_back(GSSetting(1, "Bilinear", "Forced"));
|
|
|
|
m_gs_filter.push_back(GSSetting(2, "Bilinear", "PS2"));
|
|
|
|
|
|
|
|
m_gs_gl_ext.push_back(GSSetting(-1, "Auto", ""));
|
|
|
|
m_gs_gl_ext.push_back(GSSetting(0, "Force-Disabled", ""));
|
|
|
|
m_gs_gl_ext.push_back(GSSetting(1, "Force-Enabled", ""));
|
|
|
|
|
2015-05-07 20:12:25 +00:00
|
|
|
m_gs_hack.push_back(GSSetting(0, "Off", ""));
|
2015-08-11 22:48:49 +00:00
|
|
|
m_gs_hack.push_back(GSSetting(1, "Half", ""));
|
|
|
|
m_gs_hack.push_back(GSSetting(2, "Full", ""));
|
2015-05-07 20:12:25 +00:00
|
|
|
|
2015-06-04 16:52:58 +00:00
|
|
|
m_gs_crc_level.push_back(GSSetting(0 , "None", "Debug"));
|
|
|
|
m_gs_crc_level.push_back(GSSetting(1 , "Minimum", "Debug"));
|
2015-08-11 22:48:49 +00:00
|
|
|
m_gs_crc_level.push_back(GSSetting(2 , "Partial", "OpenGL Recommended"));
|
2015-06-04 16:52:58 +00:00
|
|
|
m_gs_crc_level.push_back(GSSetting(3 , "Full", "Safest"));
|
|
|
|
m_gs_crc_level.push_back(GSSetting(4 , "Aggressive", ""));
|
|
|
|
|
2015-07-19 07:34:06 +00:00
|
|
|
m_gs_acc_blend_level.push_back(GSSetting(0, "None", "Fastest"));
|
2015-07-25 16:20:00 +00:00
|
|
|
m_gs_acc_blend_level.push_back(GSSetting(1, "Basic", "Recommended low-end PC"));
|
2015-07-19 19:40:41 +00:00
|
|
|
m_gs_acc_blend_level.push_back(GSSetting(2, "Medium", ""));
|
2015-07-25 16:20:00 +00:00
|
|
|
m_gs_acc_blend_level.push_back(GSSetting(3, "High", "Recommended high-end PC"));
|
2015-07-19 19:40:41 +00:00
|
|
|
m_gs_acc_blend_level.push_back(GSSetting(4, "Full", "Very Slow"));
|
|
|
|
m_gs_acc_blend_level.push_back(GSSetting(5, "Ultra", "Ultra Slow"));
|
2015-07-19 07:34:06 +00:00
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
m_gpu_renderers.push_back(GSSetting(0, "Direct3D9 (Software)", ""));
|
|
|
|
m_gpu_renderers.push_back(GSSetting(1, "Direct3D11 (Software)", ""));
|
2011-02-22 18:50:51 +00:00
|
|
|
m_gpu_renderers.push_back(GSSetting(2, "SDL 1.3 (Software)", ""));
|
|
|
|
m_gpu_renderers.push_back(GSSetting(3, "Null (Software)", ""));
|
|
|
|
//m_gpu_renderers.push_back(GSSetting(4, "Null (Null)", ""));
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
m_gpu_filter.push_back(GSSetting(0, "Nearest", ""));
|
|
|
|
m_gpu_filter.push_back(GSSetting(1, "Bilinear (polygons only)", ""));
|
|
|
|
m_gpu_filter.push_back(GSSetting(2, "Bilinear", ""));
|
|
|
|
|
|
|
|
m_gpu_dithering.push_back(GSSetting(0, "Disabled", ""));
|
|
|
|
m_gpu_dithering.push_back(GSSetting(1, "Auto", ""));
|
|
|
|
|
|
|
|
m_gpu_aspectratio.push_back(GSSetting(0, "Stretch", ""));
|
|
|
|
m_gpu_aspectratio.push_back(GSSetting(1, "4:3", ""));
|
|
|
|
m_gpu_aspectratio.push_back(GSSetting(2, "16:9", ""));
|
|
|
|
|
|
|
|
m_gpu_scale.push_back(GSSetting(0 | (0 << 2), "H x 1 - V x 1", ""));
|
|
|
|
m_gpu_scale.push_back(GSSetting(1 | (0 << 2), "H x 2 - V x 1", ""));
|
|
|
|
m_gpu_scale.push_back(GSSetting(0 | (1 << 2), "H x 1 - V x 2", ""));
|
|
|
|
m_gpu_scale.push_back(GSSetting(1 | (1 << 2), "H x 2 - V x 2", ""));
|
|
|
|
m_gpu_scale.push_back(GSSetting(2 | (1 << 2), "H x 4 - V x 2", ""));
|
|
|
|
m_gpu_scale.push_back(GSSetting(1 | (2 << 2), "H x 2 - V x 4", ""));
|
|
|
|
m_gpu_scale.push_back(GSSetting(2 | (2 << 2), "H x 4 - V x 4", ""));
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2014-12-15 18:14:30 +00:00
|
|
|
#ifdef __linux__
|
2013-06-15 15:03:44 +00:00
|
|
|
void GSdxApp::ReloadConfig()
|
|
|
|
{
|
2013-09-10 11:41:11 +00:00
|
|
|
if (m_configuration_map.empty()) return;
|
|
|
|
|
2013-06-15 15:03:44 +00:00
|
|
|
auto file = m_configuration_map.find("inifile");
|
|
|
|
if (file == m_configuration_map.end()) return;
|
|
|
|
|
|
|
|
// A map was built so reload it
|
2013-09-10 11:41:11 +00:00
|
|
|
std::string filename = file->second;
|
2013-06-15 15:03:44 +00:00
|
|
|
m_configuration_map.clear();
|
2013-09-10 11:41:11 +00:00
|
|
|
BuildConfigurationMap(filename.c_str());
|
2013-06-15 15:03:44 +00:00
|
|
|
}
|
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
void GSdxApp::BuildConfigurationMap(const char* lpFileName)
|
|
|
|
{
|
|
|
|
// Check if the map was already built
|
|
|
|
std::string inifile_value(lpFileName);
|
|
|
|
if ( inifile_value.compare(m_configuration_map["inifile"]) == 0 ) return;
|
|
|
|
m_configuration_map["inifile"] = inifile_value;
|
|
|
|
|
|
|
|
// Load config from file
|
2015-09-21 15:53:04 +00:00
|
|
|
char value[256];
|
|
|
|
char key[256];
|
2011-04-07 09:41:20 +00:00
|
|
|
FILE* f = fopen(lpFileName, "r");
|
|
|
|
|
2011-04-07 12:30:29 +00:00
|
|
|
if (f == NULL) return; // FIXME print a nice message
|
2011-04-07 09:41:20 +00:00
|
|
|
|
2015-09-21 15:53:04 +00:00
|
|
|
while( fscanf(f, "%255s = %255s\n", key, value) != EOF ) {
|
2011-04-07 09:41:20 +00:00
|
|
|
std::string key_s(key);
|
|
|
|
std::string value_s(value);
|
|
|
|
m_configuration_map[key_s] = value_s;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
void* GSdxApp::GetModuleHandlePtr()
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2009-06-03 12:09:04 +00:00
|
|
|
return s_hModule;
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
2009-12-19 18:30:56 +00:00
|
|
|
void GSdxApp::SetConfigDir(const char* dir)
|
|
|
|
{
|
|
|
|
if( dir == NULL )
|
|
|
|
{
|
|
|
|
m_ini = "inis/GSdx.ini";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_ini = dir;
|
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
if(m_ini[m_ini.length() - 1] != DIRECTORY_SEPARATOR)
|
2009-12-19 18:30:56 +00:00
|
|
|
{
|
2011-02-19 03:36:30 +00:00
|
|
|
m_ini += DIRECTORY_SEPARATOR;
|
2009-12-19 18:30:56 +00:00
|
|
|
}
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-12-19 18:30:56 +00:00
|
|
|
m_ini += "GSdx.ini";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
string GSdxApp::GetConfig(const char* entry, const char* value)
|
|
|
|
{
|
2009-06-03 12:09:04 +00:00
|
|
|
char buff[4096] = {0};
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
GetPrivateProfileString(m_section.c_str(), entry, value, buff, countof(buff), m_ini.c_str());
|
|
|
|
|
2009-06-03 12:09:04 +00:00
|
|
|
return string(buff);
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GSdxApp::SetConfig(const char* entry, const char* value)
|
|
|
|
{
|
2011-02-19 03:36:30 +00:00
|
|
|
WritePrivateProfileString(m_section.c_str(), entry, value, m_ini.c_str());
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int GSdxApp::GetConfig(const char* entry, int value)
|
|
|
|
{
|
2011-02-19 03:36:30 +00:00
|
|
|
return GetPrivateProfileInt(m_section.c_str(), entry, value, m_ini.c_str());
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GSdxApp::SetConfig(const char* entry, int value)
|
|
|
|
{
|
2009-06-03 12:09:04 +00:00
|
|
|
char buff[32] = {0};
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
sprintf(buff, "%d", value);
|
|
|
|
|
2009-06-03 12:09:04 +00:00
|
|
|
SetConfig(entry, buff);
|
2009-05-18 11:08:04 +00:00
|
|
|
}
|