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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
#include "GSSetting.h"
|
2017-03-24 08:53:33 +00:00
|
|
|
#include "GS.h"
|
2011-02-19 03:36:30 +00:00
|
|
|
|
2009-06-03 12:09:04 +00:00
|
|
|
class GSdxApp
|
2009-02-09 21:15:56 +00:00
|
|
|
{
|
2011-02-19 03:36:30 +00:00
|
|
|
std::string m_ini;
|
|
|
|
std::string m_section;
|
2016-05-24 19:06:47 +00:00
|
|
|
std::map< std::string, std::string > m_default_configuration;
|
2016-05-01 09:43:18 +00:00
|
|
|
#if defined(__unix__)
|
2011-04-07 09:41:20 +00:00
|
|
|
std::map< std::string, std::string > m_configuration_map;
|
|
|
|
#endif
|
2017-03-24 08:53:33 +00:00
|
|
|
GSRendererType m_current_renderer_type;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
public:
|
2009-05-18 11:08:04 +00:00
|
|
|
GSdxApp();
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2016-07-23 22:13:04 +00:00
|
|
|
void Init();
|
|
|
|
void* GetModuleHandlePtr();
|
2011-02-19 03:36:30 +00:00
|
|
|
|
2016-01-27 15:33:10 +00:00
|
|
|
#ifdef _WIN32
|
2011-02-19 03:36:30 +00:00
|
|
|
HMODULE GetModuleHandle() {return (HMODULE)GetModuleHandlePtr();}
|
2010-01-01 05:18:32 +00:00
|
|
|
#endif
|
2014-09-15 13:49:16 +00:00
|
|
|
|
2016-05-01 09:43:18 +00:00
|
|
|
#if defined(__unix__)
|
2011-04-07 09:41:20 +00:00
|
|
|
void BuildConfigurationMap(const char* lpFileName);
|
2013-06-15 15:03:44 +00:00
|
|
|
void ReloadConfig();
|
|
|
|
|
2011-04-07 09:41:20 +00:00
|
|
|
size_t GetPrivateProfileString(const char* lpAppName, const char* lpKeyName, const char* lpDefault, char* lpReturnedString, size_t nSize, const char* lpFileName);
|
|
|
|
bool WritePrivateProfileString(const char* lpAppName, const char* lpKeyName, const char* pString, const char* lpFileName);
|
|
|
|
int GetPrivateProfileInt(const char* lpAppName, const char* lpKeyName, int nDefault, const char* lpFileName);
|
|
|
|
#endif
|
2009-06-03 12:09:04 +00:00
|
|
|
|
2017-04-08 15:54:27 +00:00
|
|
|
bool LoadResource(int id, std::vector<char>& buff, const char* type = nullptr);
|
2014-09-15 13:49:16 +00:00
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
void SetConfig(const char* entry, const char* value);
|
|
|
|
void SetConfig(const char* entry, int value);
|
2016-05-24 19:24:03 +00:00
|
|
|
// Avoid issue with overloading
|
2016-12-05 21:44:17 +00:00
|
|
|
template<typename T>
|
|
|
|
T GetConfigT(const char* entry) { return static_cast<T>(GetConfigI(entry)); }
|
2016-05-24 19:24:03 +00:00
|
|
|
int GetConfigI(const char* entry);
|
|
|
|
bool GetConfigB(const char* entry);
|
|
|
|
string GetConfigS(const char* entry);
|
|
|
|
|
2017-03-24 08:53:33 +00:00
|
|
|
void SetCurrentRendererType(GSRendererType type);
|
|
|
|
GSRendererType GetCurrentRendererType();
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-12-19 18:30:56 +00:00
|
|
|
void SetConfigDir(const char* dir);
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
vector<GSSetting> m_gs_renderers;
|
|
|
|
vector<GSSetting> m_gs_interlace;
|
|
|
|
vector<GSSetting> m_gs_aspectratio;
|
|
|
|
vector<GSSetting> m_gs_upscale_multiplier;
|
2014-02-03 16:58:11 +00:00
|
|
|
vector<GSSetting> m_gs_max_anisotropy;
|
2017-02-24 16:55:39 +00:00
|
|
|
vector<GSSetting> m_gs_bifilter;
|
|
|
|
vector<GSSetting> m_gs_trifilter;
|
2015-05-07 18:19:36 +00:00
|
|
|
vector<GSSetting> m_gs_gl_ext;
|
2015-05-07 20:12:25 +00:00
|
|
|
vector<GSSetting> m_gs_hack;
|
2017-02-25 14:35:32 +00:00
|
|
|
vector<GSSetting> m_gs_offset_hack;
|
2016-11-05 16:49:17 +00:00
|
|
|
vector<GSSetting> m_gs_hw_mipmapping;
|
2015-06-04 16:52:58 +00:00
|
|
|
vector<GSSetting> m_gs_crc_level;
|
2015-07-19 07:34:06 +00:00
|
|
|
vector<GSSetting> m_gs_acc_blend_level;
|
2015-11-20 13:59:24 +00:00
|
|
|
vector<GSSetting> m_gs_tv_shaders;
|
2011-02-19 03:36:30 +00:00
|
|
|
|
|
|
|
vector<GSSetting> m_gpu_renderers;
|
|
|
|
vector<GSSetting> m_gpu_filter;
|
|
|
|
vector<GSSetting> m_gpu_dithering;
|
|
|
|
vector<GSSetting> m_gpu_aspectratio;
|
|
|
|
vector<GSSetting> m_gpu_scale;
|
2009-02-09 21:15:56 +00:00
|
|
|
};
|
2009-05-18 11:08:04 +00:00
|
|
|
|
2012-06-11 02:56:44 +00:00
|
|
|
struct GSDXError {};
|
|
|
|
struct GSDXRecoverableError : GSDXError {};
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
extern GSdxApp theApp;
|