2010-07-10 08:20:50 +00:00
|
|
|
/* ZZ Open GL graphics plugin
|
|
|
|
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
|
|
|
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
2010-03-19 00:31:15 +00:00
|
|
|
*
|
2010-07-10 08:20:50 +00:00
|
|
|
* 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.
|
2010-03-19 00:31:15 +00:00
|
|
|
*
|
2010-07-10 08:20:50 +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-03-19 00:31:15 +00:00
|
|
|
*
|
2010-07-10 08:20:50 +00:00
|
|
|
* 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
|
2010-03-19 00:31:15 +00:00
|
|
|
*/
|
2010-07-10 08:20:50 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <windows.h>
|
|
|
|
#include "Win32.h"
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include "GS.h"
|
|
|
|
#include "Mem.h"
|
|
|
|
#include "Regs.h"
|
2010-05-02 03:09:20 +00:00
|
|
|
#include "Profile.h"
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
#include "zerogs.h"
|
|
|
|
#include "targets.h"
|
|
|
|
#include "ZeroGSShaders/zerogsshaders.h"
|
2010-08-17 13:38:57 +00:00
|
|
|
#include "ZZoglFlushHack.h"
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable:4244)
|
|
|
|
#endif
|
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
GLWindow GLWin;
|
2010-03-19 00:31:15 +00:00
|
|
|
GSinternal gs;
|
|
|
|
char GStitle[256];
|
|
|
|
GSconf conf;
|
2010-07-02 12:10:40 +00:00
|
|
|
|
|
|
|
int ppf, g_GSMultiThreaded, CurrentSavestate = 0;
|
|
|
|
int g_LastCRC = 0, g_TransferredToGPU = 0, s_frameskipping = 0;
|
2010-08-17 13:38:57 +00:00
|
|
|
int g_SkipFlushFrame = 0;
|
2010-08-18 12:32:24 +00:00
|
|
|
GetSkipCount GetSkipCount_Handler = GSC_Null;
|
2010-07-02 12:10:40 +00:00
|
|
|
|
|
|
|
int UPDATE_FRAMES = 16, g_nFrame = 0, g_nRealFrame = 0;
|
|
|
|
float fFPS = 0;
|
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
void (*GSirq)();
|
|
|
|
u8* g_pBasePS2Mem = NULL;
|
|
|
|
std::string s_strIniPath("inis/"); // Air's new ini path (r2361)
|
|
|
|
|
|
|
|
bool SaveStateExists = true; // We could not know save slot status before first change occured
|
|
|
|
const char* SaveStateFile = NULL; // Name of SaveFile for access check.
|
|
|
|
|
2010-07-02 10:33:44 +00:00
|
|
|
extern const char* s_aa[5];
|
|
|
|
extern const char* s_naa[3];
|
|
|
|
extern const char* pbilinear[];
|
2010-03-19 00:31:15 +00:00
|
|
|
// statistics
|
|
|
|
u32 g_nGenVars = 0, g_nTexVars = 0, g_nAlphaVars = 0, g_nResolve = 0;
|
|
|
|
|
2010-03-19 01:00:53 +00:00
|
|
|
#define VER 1
|
2010-03-19 00:31:15 +00:00
|
|
|
const unsigned char zgsversion = PS2E_GS_VERSION;
|
|
|
|
unsigned char zgsrevision = 0; // revision and build gives plugin version
|
|
|
|
unsigned char zgsbuild = VER;
|
2010-03-19 01:00:53 +00:00
|
|
|
unsigned char zgsminor = 0;
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
2010-03-19 01:00:53 +00:00
|
|
|
char *libraryName = "ZZ Ogl PG (Debug) ";
|
2010-04-25 09:02:36 +00:00
|
|
|
#elif defined(ZEROGS_DEVBUILD)
|
|
|
|
char *libraryName = "ZZ Ogl PG (Dev)";
|
2010-03-19 00:31:15 +00:00
|
|
|
#else
|
2010-04-25 09:02:36 +00:00
|
|
|
char *libraryName = "ZZ Ogl PG ";
|
2010-03-19 00:31:15 +00:00
|
|
|
#endif
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-06-11 11:48:07 +00:00
|
|
|
extern int g_nPixelShaderVer, g_nFrameRender, g_nFramesSkipped;
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-07-02 10:33:44 +00:00
|
|
|
extern void ProcessMessages();
|
|
|
|
extern void WriteAA();
|
|
|
|
extern void WriteBilinear();
|
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
extern int VALIDATE_THRESH;
|
|
|
|
extern u32 TEXDESTROY_THRESH;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
HWND GShwnd = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
u32 THR_KeyEvent = 0; // Value for key event processing between threads
|
|
|
|
bool THR_bShift = false;
|
|
|
|
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
u32 CALLBACK PS2EgetLibType()
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
return PS2E_LT_GS;
|
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
char* CALLBACK PS2EgetLibName()
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
return libraryName;
|
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
u32 CALLBACK PS2EgetLibVersion2(u32 type)
|
|
|
|
{
|
|
|
|
return (zgsversion << 16) | (zgsrevision << 8) | zgsbuild | (zgsminor << 24);
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
void CALLBACK GSsetBaseMem(void* pmem)
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
g_pBasePS2Mem = (u8*)pmem;
|
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
void CALLBACK GSsetSettingsDir(const char* dir)
|
|
|
|
{
|
|
|
|
s_strIniPath = (dir == NULL) ? "inis/" : dir;
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2010-06-11 17:31:45 +00:00
|
|
|
void CALLBACK GSsetLogDir(const char* dir)
|
|
|
|
{
|
2010-07-02 12:10:40 +00:00
|
|
|
ZZLog::SetDir(dir);
|
2010-06-11 17:31:45 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 11:39:04 +00:00
|
|
|
void ReportHacks(gameHacks hacks)
|
|
|
|
{
|
|
|
|
if (hacks.texture_targs) ZZLog::WriteLn("'Texture targs' hack enabled.");
|
|
|
|
if (hacks.auto_reset) ZZLog::WriteLn("'Auto reset' hack enabled.");
|
|
|
|
if (hacks.interlace_2x) ZZLog::WriteLn("'Interlace 2x' hack enabled.");
|
|
|
|
if (hacks.texa) ZZLog::WriteLn("'Texa' hack enabled.");
|
|
|
|
if (hacks.no_target_resolve) ZZLog::WriteLn("'No target resolve' hack enabled.");
|
|
|
|
if (hacks.exact_color) ZZLog::WriteLn("Exact color hack enabled.");
|
|
|
|
if (hacks.no_color_clamp) ZZLog::WriteLn("'No color clamp' hack enabled.");
|
|
|
|
if (hacks.no_alpha_fail) ZZLog::WriteLn("'No alpha fail' hack enabled.");
|
|
|
|
if (hacks.no_depth_update) ZZLog::WriteLn("'No depth update' hack enabled.");
|
|
|
|
if (hacks.quick_resolve_1) ZZLog::WriteLn("'Quick resolve 1' enabled.");
|
|
|
|
if (hacks.no_quick_resolve) ZZLog::WriteLn("'No Quick resolve' hack enabled.");
|
|
|
|
if (hacks.no_target_clut) ZZLog::WriteLn("'No target clut' hack enabled.");
|
|
|
|
if (hacks.vss_hack_off) ZZLog::WriteLn("VSS hack enabled.");
|
|
|
|
if (hacks.no_depth_resolve) ZZLog::WriteLn("'No depth resolve' hack enabled.");
|
|
|
|
if (hacks.full_16_bit_res) ZZLog::WriteLn("'Full 16 bit resolution' hack enabled.");
|
|
|
|
if (hacks.resolve_promoted) ZZLog::WriteLn("'Resolve promoted' hack enabled.");
|
|
|
|
if (hacks.fast_update) ZZLog::WriteLn("'Fast update' hack enabled.");
|
|
|
|
if (hacks.no_alpha_test) ZZLog::WriteLn("'No alpha test' hack enabled.");
|
|
|
|
if (hacks.disable_mrt_depth) ZZLog::WriteLn("'Disable mrt depth' hack enabled.");
|
|
|
|
if (hacks.args_32_bit) ZZLog::WriteLn("'Args 32 bit' hack enabled.");
|
|
|
|
if (hacks.path3) ZZLog::WriteLn("'Path3' hack enabled.");
|
|
|
|
if (hacks.parallel_context) ZZLog::WriteLn("'Parallel context' hack enabled.");
|
|
|
|
if (hacks.xenosaga_spec) ZZLog::WriteLn("'Xenosaga spec' hack enabled.");
|
|
|
|
if (hacks.partial_pointers) ZZLog::WriteLn("'Partial pointers' hack enabled.");
|
|
|
|
if (hacks.partial_depth) ZZLog::WriteLn("'Partial depth' hack enabled.");
|
|
|
|
if (hacks.reget) ZZLog::WriteLn("Reget hack enabled.");
|
|
|
|
if (hacks.gust) ZZLog::WriteLn("Gust hack enabled.");
|
|
|
|
if (hacks.no_logz) ZZLog::WriteLn("'No logz' hack enabled.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ListHacks()
|
|
|
|
{
|
|
|
|
if (conf.def_hacks._u32 != 0)
|
|
|
|
{
|
|
|
|
ZZLog::WriteLn("AutoEnabling these hacks:");
|
|
|
|
ReportHacks(conf.def_hacks);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (conf.hacks._u32 != 0)
|
|
|
|
{
|
|
|
|
ZZLog::WriteLn("You've manually enabled these hacks:");
|
|
|
|
ReportHacks(conf.hacks);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
void CALLBACK GSsetGameCRC(int crc, int options)
|
|
|
|
{
|
2010-08-18 13:15:43 +00:00
|
|
|
// build a list of function pointer for GetSkipCount (SkipDraw)
|
2010-08-18 12:32:24 +00:00
|
|
|
static GetSkipCount GSC_list[NUMBER_OF_TITLES];
|
2010-08-17 13:38:57 +00:00
|
|
|
static bool inited = false;
|
2010-08-18 12:32:24 +00:00
|
|
|
|
|
|
|
if (!inited)
|
2010-08-17 13:38:57 +00:00
|
|
|
{
|
|
|
|
inited = true;
|
|
|
|
|
2010-08-18 12:32:24 +00:00
|
|
|
//memset(&GSC_list, 0, sizeof(GSC_list));
|
|
|
|
for(int i = 0; i < NUMBER_OF_TITLES; i++)
|
|
|
|
{
|
|
|
|
GSC_list[i] = GSC_Null;
|
|
|
|
}
|
|
|
|
|
2010-08-17 13:38:57 +00:00
|
|
|
GSC_list[Okami] = GSC_Okami;
|
|
|
|
GSC_list[MetalGearSolid3] = GSC_MetalGearSolid3;
|
|
|
|
GSC_list[DBZBT2] = GSC_DBZBT2;
|
|
|
|
GSC_list[DBZBT3] = GSC_DBZBT3;
|
|
|
|
GSC_list[SFEX3] = GSC_SFEX3;
|
|
|
|
GSC_list[Bully] = GSC_Bully;
|
|
|
|
GSC_list[BullyCC] = GSC_BullyCC;
|
|
|
|
GSC_list[SoTC] = GSC_SoTC;
|
|
|
|
GSC_list[OnePieceGrandAdventure] = GSC_OnePieceGrandAdventure;
|
|
|
|
GSC_list[OnePieceGrandBattle] = GSC_OnePieceGrandBattle;
|
|
|
|
GSC_list[ICO] = GSC_ICO;
|
|
|
|
GSC_list[GT4] = GSC_GT4;
|
|
|
|
//FIXME GSC_list[WildArms4] = GSC_WildArms4;
|
|
|
|
GSC_list[WildArms5] = GSC_WildArms5;
|
|
|
|
GSC_list[Manhunt2] = GSC_Manhunt2;
|
|
|
|
GSC_list[CrashBandicootWoC] = GSC_CrashBandicootWoC;
|
|
|
|
GSC_list[ResidentEvil4] = GSC_ResidentEvil4;
|
|
|
|
GSC_list[Spartan] = GSC_Spartan;
|
|
|
|
GSC_list[AceCombat4] = GSC_AceCombat4;
|
|
|
|
GSC_list[Drakengard2] = GSC_Drakengard2;
|
|
|
|
GSC_list[Tekken5] = GSC_Tekken5;
|
|
|
|
GSC_list[IkkiTousen] = GSC_IkkiTousen;
|
|
|
|
GSC_list[GodOfWar] = GSC_GodOfWar;
|
|
|
|
GSC_list[GodOfWar2] = GSC_GodOfWar2;
|
|
|
|
GSC_list[GiTS] = GSC_GiTS;
|
|
|
|
GSC_list[Onimusha3] = GSC_Onimusha3;
|
|
|
|
GSC_list[TalesOfAbyss] = GSC_TalesOfAbyss;
|
|
|
|
GSC_list[SonicUnleashed] = GSC_SonicUnleashed;
|
|
|
|
GSC_list[Genji] = GSC_Genji;
|
|
|
|
GSC_list[StarOcean3] = GSC_StarOcean3;
|
|
|
|
GSC_list[ValkyrieProfile2] = GSC_ValkyrieProfile2;
|
|
|
|
GSC_list[RadiataStories] = GSC_RadiataStories;
|
|
|
|
}
|
|
|
|
|
2010-04-25 11:14:37 +00:00
|
|
|
// TEXDESTROY_THRESH starts out at 16.
|
2010-03-19 00:31:15 +00:00
|
|
|
VALIDATE_THRESH = 8;
|
2010-06-19 08:46:40 +00:00
|
|
|
conf.mrtdepth = (conf.settings().disable_mrt_depth != 0);
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
if (!conf.mrtdepth)
|
2010-07-17 11:39:04 +00:00
|
|
|
ZZLog::WriteLn("Disabling MRT depth writing.");
|
2010-04-25 00:31:27 +00:00
|
|
|
else
|
2010-07-17 11:39:04 +00:00
|
|
|
ZZLog::WriteLn("Enabling MRT depth writing.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-04-25 11:14:37 +00:00
|
|
|
bool CRCValueChanged = (g_LastCRC != crc);
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
g_LastCRC = crc;
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-07-17 11:39:04 +00:00
|
|
|
if (crc != 0) ZZLog::WriteLn("Current game CRC is %x.", crc);
|
2010-05-01 20:33:53 +00:00
|
|
|
|
|
|
|
if (CRCValueChanged && (crc != 0))
|
2010-04-25 11:14:37 +00:00
|
|
|
{
|
|
|
|
for (int i = 0; i < GAME_INFO_INDEX; i++)
|
|
|
|
{
|
|
|
|
if (crc_game_list[i].crc == crc)
|
|
|
|
{
|
2010-07-17 11:39:04 +00:00
|
|
|
ZZLog::WriteLn("Found CRC[%x] in crc game list.", crc);
|
2010-07-17 10:55:22 +00:00
|
|
|
|
|
|
|
if (crc_game_list[i].v_thresh > 0)
|
|
|
|
{
|
|
|
|
VALIDATE_THRESH = crc_game_list[i].v_thresh;
|
2010-07-17 11:39:04 +00:00
|
|
|
ZZLog::WriteLn("Setting VALIDATE_THRESH to %d", VALIDATE_THRESH);
|
2010-07-17 10:55:22 +00:00
|
|
|
}
|
2010-07-17 11:39:04 +00:00
|
|
|
|
2010-07-17 10:55:22 +00:00
|
|
|
if (crc_game_list[i].t_thresh > 0)
|
|
|
|
{
|
|
|
|
TEXDESTROY_THRESH = crc_game_list[i].t_thresh;
|
2010-07-17 11:39:04 +00:00
|
|
|
ZZLog::WriteLn("Setting TEXDESTROY_THRESH to %d", TEXDESTROY_THRESH);
|
2010-07-17 10:55:22 +00:00
|
|
|
}
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-08-18 13:15:43 +00:00
|
|
|
// FIXME need to check SkipDraw is positive (enabled by users)
|
2010-08-17 13:38:57 +00:00
|
|
|
GetSkipCount_Handler = GSC_list[crc_game_list[i].title];
|
|
|
|
|
2010-07-17 10:55:22 +00:00
|
|
|
conf.def_hacks._u32 |= crc_game_list[i].flags;
|
2010-07-17 11:39:04 +00:00
|
|
|
ListHacks();
|
2010-04-25 11:14:37 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
2010-07-17 11:39:04 +00:00
|
|
|
ListHacks();
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CALLBACK GSsetFrameSkip(int frameskip)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
s_frameskipping |= frameskip;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
if (frameskip && g_nFrameRender > 1)
|
|
|
|
{
|
2010-07-02 12:10:40 +00:00
|
|
|
SetFrameSkip(true);
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
2010-05-01 20:33:53 +00:00
|
|
|
else if (!frameskip && g_nFrameRender <= 0)
|
|
|
|
{
|
2010-07-02 12:10:40 +00:00
|
|
|
SetFrameSkip(false);
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
void CALLBACK GSreset()
|
|
|
|
{
|
2010-07-02 12:10:40 +00:00
|
|
|
ZeroGS::GSReset();
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2010-04-02 02:44:14 +00:00
|
|
|
void CALLBACK GSgifSoftReset(u32 mask)
|
|
|
|
{
|
2010-07-02 12:10:40 +00:00
|
|
|
ZeroGS::GSSoftReset(mask);
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s32 CALLBACK GSinit()
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
if (ZZLog::Open() == false) return -1;
|
2010-06-21 12:03:14 +00:00
|
|
|
ZZLog::WriteLn("Calling GSinit.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
WriteTempRegs();
|
2010-03-19 00:31:15 +00:00
|
|
|
GSreset();
|
2010-07-02 12:10:40 +00:00
|
|
|
|
2010-06-21 12:03:14 +00:00
|
|
|
ZZLog::WriteLn("GSinit finished.");
|
2010-03-19 00:31:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
HANDLE g_hCurrentThread = NULL;
|
|
|
|
#endif
|
|
|
|
|
2010-04-30 04:40:31 +00:00
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
extern LRESULT WINAPI MsgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
2010-03-19 00:31:15 +00:00
|
|
|
extern HINSTANCE hInst;
|
2010-04-30 04:40:31 +00:00
|
|
|
#endif
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
s32 CALLBACK GSopen(void *pDsp, char *Title, int multithread)
|
2010-03-19 05:24:36 +00:00
|
|
|
{
|
2010-04-30 04:40:31 +00:00
|
|
|
FUNCLOG
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 05:24:36 +00:00
|
|
|
bool err;
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
g_GSMultiThreaded = multithread;
|
|
|
|
|
2010-06-21 12:03:14 +00:00
|
|
|
ZZLog::WriteLn("Calling GSopen.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-04-30 04:40:31 +00:00
|
|
|
#ifdef _WIN32
|
2010-03-19 00:31:15 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
g_hCurrentThread = GetCurrentThread();
|
|
|
|
#endif
|
2010-04-30 04:40:31 +00:00
|
|
|
#endif
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
LoadConfig();
|
2010-03-19 00:31:15 +00:00
|
|
|
strcpy(GStitle, Title);
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-29 21:15:49 +00:00
|
|
|
err = GLWin.CreateWindow(pDsp);
|
2010-04-25 00:31:27 +00:00
|
|
|
if (!err)
|
2010-03-19 05:24:36 +00:00
|
|
|
{
|
2010-06-21 12:03:14 +00:00
|
|
|
ZZLog::Error_Log("Failed to create window. Exiting...");
|
2010-03-19 00:31:15 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-06-21 12:03:14 +00:00
|
|
|
ZZLog::GS_Log("Using %s:%d.%d.%d.", libraryName, zgsrevision, zgsbuild, zgsminor);
|
|
|
|
ZZLog::WriteLn("Creating ZZOgl window.");
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-04-02 02:44:14 +00:00
|
|
|
if (!ZeroGS::Create(conf.width, conf.height)) return -1;
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-06-21 12:03:14 +00:00
|
|
|
ZZLog::WriteLn("Initialization successful.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-07-02 10:33:44 +00:00
|
|
|
WriteBilinear();
|
|
|
|
WriteAA();
|
2010-07-02 12:10:40 +00:00
|
|
|
InitProfile();
|
|
|
|
InitPath();
|
2010-06-27 08:38:50 +00:00
|
|
|
ResetRegs();
|
2010-04-30 04:40:31 +00:00
|
|
|
ZZLog::GS_Log("GSopen finished.");
|
2010-03-19 00:31:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-02 10:33:44 +00:00
|
|
|
void CALLBACK GSshutdown()
|
2010-03-19 00:31:15 +00:00
|
|
|
{
|
|
|
|
FUNCLOG
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
ZZLog::Close();
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
void CALLBACK GSclose()
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
FUNCLOG
|
|
|
|
|
|
|
|
ZeroGS::Destroy(1);
|
|
|
|
|
2010-03-19 02:04:55 +00:00
|
|
|
GLWin.CloseWindow();
|
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
SaveStateFile = NULL;
|
|
|
|
SaveStateExists = true; // default value
|
|
|
|
}
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
void CALLBACK GSirqCallback(void (*callback)())
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
FUNCLOG
|
|
|
|
|
|
|
|
GSirq = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CALLBACK GSwriteCSR(u32 write)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
|
|
|
gs.CSRw = write;
|
|
|
|
}
|
|
|
|
|
2010-07-10 12:41:49 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define access _access
|
|
|
|
#endif
|
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
void CALLBACK GSchangeSaveState(int newstate, const char* filename)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
|
|
|
char str[255];
|
|
|
|
sprintf(str, "save state %d", newstate);
|
|
|
|
ZeroGS::AddMessage(str);
|
|
|
|
CurrentSavestate = newstate;
|
|
|
|
|
|
|
|
SaveStateFile = filename;
|
|
|
|
SaveStateExists = (access(SaveStateFile, 0) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CALLBACK GSmakeSnapshot(char *path)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
|
|
|
FILE *bmpfile;
|
2010-04-25 00:31:27 +00:00
|
|
|
char filename[256];
|
2010-03-19 00:31:15 +00:00
|
|
|
u32 snapshotnr = 0;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
// increment snapshot value & try to get filename
|
2010-05-01 20:33:53 +00:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
snapshotnr++;
|
|
|
|
|
2010-06-29 16:05:54 +00:00
|
|
|
sprintf(filename, "%s/snap%03ld.%s", path, snapshotnr, (conf.zz_options.tga_snap) ? "bmp" : "jpg");
|
2010-05-01 20:33:53 +00:00
|
|
|
|
|
|
|
bmpfile = fopen(filename, "rb");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
if (bmpfile == NULL) break;
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
fclose(bmpfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
// try opening new snapshot file
|
2010-05-01 20:33:53 +00:00
|
|
|
if ((bmpfile = fopen(filename, "wb")) == NULL)
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
char strdir[255];
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
sprintf(strdir, "%s", path);
|
|
|
|
CreateDirectory(strdir, NULL);
|
|
|
|
#else
|
|
|
|
sprintf(strdir, "mkdir %s", path);
|
|
|
|
system(strdir);
|
|
|
|
#endif
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
if ((bmpfile = fopen(filename, "wb")) == NULL) return;
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(bmpfile);
|
|
|
|
|
|
|
|
// get the bits
|
|
|
|
ZeroGS::SaveSnapshot(filename);
|
|
|
|
}
|
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
// I'll probably move this somewhere else later, but it's got a ton of dependencies.
|
|
|
|
static __forceinline void SetGSTitle()
|
|
|
|
{
|
|
|
|
char strtitle[256];
|
2010-03-19 00:31:15 +00:00
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
#if !defined(ZEROGS_DEVBUILD)
|
|
|
|
const char* g_pShaders[4] = { "full", "reduced", "accurate", "accurate-reduced" };
|
|
|
|
const char* g_pInterlace[3] = { "interlace 0 |", "interlace 1 |", "" };
|
|
|
|
const char* g_pBilinear[3] = { "", "bilinear |", "forced bilinear |" };
|
|
|
|
|
|
|
|
if (SaveStateFile != NULL && !SaveStateExists)
|
|
|
|
SaveStateExists = (access(SaveStateFile, 0) == 0);
|
|
|
|
else
|
|
|
|
SaveStateExists = true;
|
|
|
|
|
|
|
|
sprintf(strtitle, "ZZ Open GL 0.%d.%d | %.1f fps | %s%s%s savestate %d%s | shaders %s | (%.1f)", zgsbuild, zgsminor, fFPS,
|
|
|
|
g_pInterlace[conf.interlace], g_pBilinear[conf.bilinear],
|
|
|
|
(conf.aa >= conf.negaa) ? (conf.aa ? s_aa[conf.aa - conf.negaa] : "") : (conf.negaa ? s_naa[conf.negaa - conf.aa] : ""),
|
|
|
|
CurrentSavestate, (SaveStateExists ? "" : "*"),
|
|
|
|
g_pShaders[g_nPixelShaderVer], (ppf&0xfffff) / (float)UPDATE_FRAMES);
|
|
|
|
|
|
|
|
#else
|
|
|
|
sprintf(strtitle, "%d | %.1f fps (sk:%d%%) | g: %.1f, t: %.1f, a: %.1f, r: %.1f | p: %.1f | tex: %d %d (%d kbpf)", g_nFrame, fFPS,
|
|
|
|
100*g_nFramesSkipped / g_nFrame,
|
|
|
|
g_nGenVars / (float)UPDATE_FRAMES, g_nTexVars / (float)UPDATE_FRAMES, g_nAlphaVars / (float)UPDATE_FRAMES,
|
|
|
|
g_nResolve / (float)UPDATE_FRAMES, (ppf&0xfffff) / (float)UPDATE_FRAMES,
|
|
|
|
ZeroGS::g_MemTargs.listTargets.size(), ZeroGS::g_MemTargs.listClearedTargets.size(), g_TransferredToGPU >> 10);
|
|
|
|
|
|
|
|
//_snprintf(strtitle, 512, "%x %x", *(int*)(g_pbyGSMemory + 256 * 0x3e0c + 4), *(int*)(g_pbyGSMemory + 256 * 0x3e04 + 4));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// if( g_nFrame > 100 && fFPS > 60.0f ) {
|
|
|
|
// ZZLog::Debug_Log("Set profile.");
|
|
|
|
// g_bWriteProfile = 1;
|
|
|
|
// }
|
|
|
|
if (!(conf.fullscreen())) GLWin.SetTitle(strtitle);
|
|
|
|
}
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
void CALLBACK GSvsync(int interlace)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
2010-04-25 08:33:05 +00:00
|
|
|
//ZZLog::GS_Log("Calling GSvsync.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
static u32 dwTime = timeGetTime();
|
|
|
|
static int nToNextUpdate = 1;
|
|
|
|
|
|
|
|
GL_REPORT_ERRORD();
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
g_nRealFrame++;
|
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
// !interlace? Hmmm... Fixme.
|
2010-03-19 00:31:15 +00:00
|
|
|
ZeroGS::RenderCRTC(!interlace);
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
ProcessMessages();
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
if (--nToNextUpdate <= 0)
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
u32 d = timeGetTime();
|
2010-05-01 20:33:53 +00:00
|
|
|
fFPS = UPDATE_FRAMES * 1000.0f / (float)max(d - dwTime, 1);
|
2010-03-19 00:31:15 +00:00
|
|
|
dwTime = d;
|
|
|
|
g_nFrame += UPDATE_FRAMES;
|
2010-07-02 12:10:40 +00:00
|
|
|
SetGSTitle();
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
// if( g_nFrame > 100 && fFPS > 60.0f ) {
|
2010-04-25 08:33:05 +00:00
|
|
|
// ZZLog::Debug_Log("Set profile.");
|
2010-03-19 00:31:15 +00:00
|
|
|
// g_bWriteProfile = 1;
|
|
|
|
// }
|
|
|
|
|
2010-06-19 06:23:40 +00:00
|
|
|
if (fFPS < 16)
|
|
|
|
UPDATE_FRAMES = 4;
|
|
|
|
else if (fFPS < 32)
|
|
|
|
UPDATE_FRAMES = 8;
|
|
|
|
else
|
|
|
|
UPDATE_FRAMES = 16;
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
nToNextUpdate = UPDATE_FRAMES;
|
|
|
|
|
2010-07-02 12:10:40 +00:00
|
|
|
ppf = 0;
|
2010-03-19 00:31:15 +00:00
|
|
|
g_TransferredToGPU = 0;
|
|
|
|
g_nGenVars = 0;
|
|
|
|
g_nTexVars = 0;
|
|
|
|
g_nAlphaVars = 0;
|
|
|
|
g_nResolve = 0;
|
|
|
|
g_nFramesSkipped = 0;
|
2010-08-17 13:38:57 +00:00
|
|
|
g_SkipFlushFrame = 0;
|
2010-03-19 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2010-04-25 09:02:36 +00:00
|
|
|
#if defined(ZEROGS_DEVBUILD)
|
2010-05-01 20:33:53 +00:00
|
|
|
if (g_bWriteProfile)
|
|
|
|
{
|
2010-03-19 00:31:15 +00:00
|
|
|
//g_bWriteProfile = 0;
|
|
|
|
DVProfWrite("prof.txt", UPDATE_FRAMES);
|
|
|
|
DVProfClear();
|
|
|
|
}
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
#endif
|
|
|
|
GL_REPORT_ERRORD();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CALLBACK GSreadFIFO(u64 *pMem)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
2010-04-25 08:33:05 +00:00
|
|
|
//ZZLog::GS_Log("Calling GSreadFIFO.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
ZeroGS::TransferLocalHost((u32*)pMem, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CALLBACK GSreadFIFO2(u64 *pMem, int qwc)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
2010-04-25 08:33:05 +00:00
|
|
|
//ZZLog::GS_Log("Calling GSreadFIFO2.");
|
2010-03-19 00:31:15 +00:00
|
|
|
|
|
|
|
ZeroGS::TransferLocalHost((u32*)pMem, qwc);
|
|
|
|
}
|
|
|
|
|
|
|
|
int CALLBACK GSsetupRecording(int start, void* pData)
|
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
2010-05-01 20:33:53 +00:00
|
|
|
if (start)
|
2010-03-19 00:31:15 +00:00
|
|
|
ZeroGS::StartCapture();
|
2010-05-01 20:33:53 +00:00
|
|
|
else
|
2010-03-19 00:31:15 +00:00
|
|
|
ZeroGS::StopCapture();
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
s32 CALLBACK GSfreeze(int mode, freezeData *data)
|
2010-03-19 00:31:15 +00:00
|
|
|
{
|
|
|
|
FUNCLOG
|
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case FREEZE_LOAD:
|
2010-04-25 08:33:05 +00:00
|
|
|
if (!ZeroGS::Load(data->data)) ZZLog::Error_Log("GS: Bad load format!");
|
2010-03-19 00:31:15 +00:00
|
|
|
g_nRealFrame += 100;
|
|
|
|
break;
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
case FREEZE_SAVE:
|
|
|
|
ZeroGS::Save(data->data);
|
|
|
|
break;
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
case FREEZE_SIZE:
|
|
|
|
data->size = ZeroGS::Save(NULL);
|
|
|
|
break;
|
2010-05-01 20:33:53 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-03-19 00:31:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|