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"
|
|
|
|
|
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;
|
2014-12-15 18:14:30 +00:00
|
|
|
#ifdef __linux__
|
2011-04-07 09:41:20 +00:00
|
|
|
std::map< std::string, std::string > m_configuration_map;
|
|
|
|
#endif
|
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
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
void* GetModuleHandlePtr();
|
|
|
|
|
2010-01-01 05:18:32 +00:00
|
|
|
#ifdef _WINDOWS
|
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
|
|
|
|
2014-12-15 18:14:30 +00:00
|
|
|
#ifdef __linux__
|
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
|
|
|
|
2014-09-15 13:49:16 +00:00
|
|
|
bool LoadResource(int id, vector<unsigned char>& buff, const char* type = NULL);
|
|
|
|
|
2009-05-18 11:08:04 +00:00
|
|
|
string GetConfig(const char* entry, const char* value);
|
|
|
|
void SetConfig(const char* entry, const char* value);
|
|
|
|
int GetConfig(const char* entry, int value);
|
|
|
|
void SetConfig(const char* entry, int value);
|
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;
|
2015-05-07 18:19:36 +00:00
|
|
|
vector<GSSetting> m_gs_filter;
|
|
|
|
vector<GSSetting> m_gs_gl_ext;
|
2015-05-07 20:12:25 +00:00
|
|
|
vector<GSSetting> m_gs_hack;
|
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;
|