mirror of https://github.com/PCSX2/pcsx2.git
144 lines
4.4 KiB
C++
144 lines
4.4 KiB
C++
/* ZZ Open GL graphics plugin
|
|
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
|
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
|
*
|
|
* 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 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "GS.h"
|
|
#include "Win32.h"
|
|
#include "Utilities/Path.h"
|
|
|
|
extern HINSTANCE hInst;
|
|
|
|
|
|
void SaveConfig()
|
|
{
|
|
wxChar szValue[256];
|
|
const wxString iniFile(Path::Combine(s_strIniPath, L"zzogl-pg.ini"));
|
|
|
|
wxSprintf(szValue, L"%u", conf.interlace);
|
|
WritePrivateProfileString(L"Settings", L"Interlace", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.aa);
|
|
WritePrivateProfileString(L"Settings", L"Antialiasing", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.bilinear);
|
|
WritePrivateProfileString(L"Settings", L"Bilinear", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.zz_options._u32);
|
|
WritePrivateProfileString(L"Settings", L"ZZOptions", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.hacks._u32);
|
|
WritePrivateProfileString(L"Settings", L"AdvancedOptions", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.width);
|
|
WritePrivateProfileString(L"Settings", L"Width", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.height);
|
|
WritePrivateProfileString(L"Settings", L"Height", szValue, iniFile);
|
|
wxSprintf(szValue, L"%u", conf.SkipDraw);
|
|
WritePrivateProfileString(L"Settings", L"SkipDraw", szValue, iniFile);
|
|
}
|
|
|
|
void LoadConfig()
|
|
{
|
|
wxChar szValue[256];
|
|
unsigned long val;
|
|
const wxString iniFile(Path::Combine(s_strIniPath, L"zzogl-pg.ini"));
|
|
|
|
memset(&conf, 0, sizeof(conf));
|
|
conf.interlace = 0; // on, mode 1
|
|
conf.mrtdepth = 1;
|
|
conf.zz_options._u32 = 0;
|
|
conf.hacks._u32 = 0;
|
|
conf.bilinear = 1;
|
|
conf.width = 640;
|
|
conf.height = 480;
|
|
conf.SkipDraw = 0;
|
|
conf.disableHacks = 0;
|
|
|
|
FILE *fp = wxFopen(iniFile, L"rt");
|
|
|
|
if (!fp)
|
|
{
|
|
SysMessage("Unable to open ZZOgl-PG's ini file!");
|
|
CreateDirectory(s_strIniPath, NULL);
|
|
SaveConfig();//save and return
|
|
return ;
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
GetPrivateProfileString(L"Settings", L"Interlace", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.interlace = (u8)val;
|
|
GetPrivateProfileString(L"Settings", L"Antialiasing", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.aa = (u8)val;
|
|
GetPrivateProfileString(L"Settings", L"ZZOptions", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.zz_options._u32 = val;
|
|
GetPrivateProfileString(L"Settings", L"AdvancedOptions", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.hacks._u32 = val;
|
|
GetPrivateProfileString(L"Settings", L"Bilinear", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.bilinear = (u8)val;
|
|
GetPrivateProfileString(L"Settings", L"Width", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.width = val;
|
|
GetPrivateProfileString(L"Settings", L"Height", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.height = val;
|
|
GetPrivateProfileString(L"Settings", L"SkipDraw", NULL, szValue, 20, iniFile);
|
|
wxString(szValue).ToULong(&val);
|
|
conf.SkipDraw = val;
|
|
|
|
if (conf.aa < 0 || conf.aa > 4) conf.aa = 0;
|
|
|
|
conf.isWideScreen = (conf.widescreen() != 0);
|
|
|
|
switch (conf.zz_options.dimensions)
|
|
{
|
|
case GSDim_640:
|
|
conf.width = 640;
|
|
conf.height = conf.isWideScreen ? 360 : 480;
|
|
break;
|
|
|
|
case GSDim_800:
|
|
conf.width = 800;
|
|
conf.height = conf.isWideScreen ? 450 : 600;
|
|
break;
|
|
|
|
case GSDim_1024:
|
|
conf.width = 1024;
|
|
conf.height = conf.isWideScreen ? 576 : 768;
|
|
break;
|
|
|
|
case GSDim_1280:
|
|
conf.width = 1280;
|
|
conf.height = conf.isWideScreen ? 720 : 960;
|
|
break;
|
|
}
|
|
|
|
// turn off all hacks by default
|
|
conf.setWireframe(false);
|
|
conf.setCaptureAvi(false);
|
|
conf.setLoaded(true);
|
|
|
|
if (conf.width <= 0 || conf.height <= 0)
|
|
{
|
|
conf.width = 640;
|
|
conf.height = 480;
|
|
}
|
|
}
|