zzogl-pg: Borrowed enough of the old transfer function in the new one to get it to work properly. Needs more testing.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2810 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-04-03 09:47:20 +00:00
parent 7c817d97e7
commit 1254cd22a5
2 changed files with 174 additions and 152 deletions

View File

@ -86,147 +86,185 @@ __forceinline void gifTransferLog(int index, u32 *pMem, u32 size)
}
#ifdef NEW_GIF_TRANSFER
extern int g_GSMultiThreaded;
template<int index> void _GSgifTransfer(u32 *pMem, u32 size)
{
FUNCLOG
FUNCLOG
pathInfo *path = &gs.path[index];
pathInfo *path = &gs.path[index];
#ifdef _WIN32
assert( g_hCurrentThread == GetCurrentThread() );
assert( g_hCurrentThread == GetCurrentThread() );
#endif
#ifdef _DEBUG
gifTransferLog(index, pMem, size);
gifTransferLog(index, pMem, size);
#endif
while(size > 0)
{
//LOG(_T("Transfer(%08x, %d) START\n"), pMem, size);
if (path->nloop == 0)
{
path->setTag(pMem);
pMem += 4;
size--;
while(size > 0)
{
//LOG(_T("Transfer(%08x, %d) START\n"), pMem, size);
if (path->nloop == 0)
{
path->setTag(pMem);
pMem += 4;
size--;
if ((g_GameSettings & GAME_PATH3HACK) && (index == 2) && path->eop) nPath3Hack = 1;
if ((g_GameSettings & GAME_PATH3HACK) && (index == 2) && path->eop) nPath3Hack = 1;
// eeuser 7.2.2. GIFtag: "... when NLOOP is 0, the GIF does not output anything, and
// values other than the EOP field are disregarded."
if (path->nloop > 0)
{
gs.q = 1.0f;
// ASSERT(!(path.tag.PRE && path.tag.FLG == GIF_FLG_REGLIST)); // kingdom hearts
if(path->tag.PRE && (path->tag.FLG == GIF_FLG_PACKED))
// eeuser 7.2.2. GIFtag: "... when NLOOP is 0, the GIF does not output anything, and
// values other than the EOP field are disregarded."
if (path->nloop > 0)
{
u32 tagprim = path->tag.PRIM;
GIFRegHandlerPRIM((u32*)&tagprim);
gs.q = 1.0f;
if(path->tag.PRE && (path->tag.FLG == GIF_FLG_PACKED))
{
u32 tagprim = path->tag.PRIM;
GIFRegHandlerPRIM((u32*)&tagprim);
}
}
}
}
else
{
switch(path->tag.FLG)
else
{
case GIF_FLG_PACKED:
switch(path->mode)
{
do
case GIF_FLG_PACKED:
{
u32 reg = path->GetReg();
// Needs to be looked at.
// first try a shortcut for a very common case
/*if(path.adonly && size >= path.nloop)
{
size -= path.nloop;
do
{
GIFPackedRegHandlerA_D(pMem);
mem += sizeof(GIFPackedReg);
}
while(--path.nloop > 0);*/
g_GIFPackedRegHandlers[reg](pMem);
do
{
g_GIFPackedRegHandlers[path->GetReg()](pMem);
path->reg += 4;
if (path->nreg == path->reg)
{
path->reg = 0;
if( path->nloop-- <= 1 )
{
size--;
pMem += 4;
break;
}
}
pMem += 4;
size--;
}
while (size > 0);
pMem += 4;
size--;
break;
}
while(path->StepReg() && size > 0);
break;
}
case GIF_FLG_REGLIST:
{
size *= 2;
do
case GIF_FLG_REGLIST:
{
int reg = path->GetReg();
g_GIFRegHandlers[reg](pMem);
// Needs to be looked at.
pMem += 2;
size--;
}
while(path->StepReg() && size > 0);
//GS_LOG("%8.8x%8.8x %d L\n", ((u32*)&gs.regs)[1], *(u32*)&gs.regs, path->tag.nreg/4);
size *= 2;
do
{
g_GIFRegHandlers[path->GetReg()](pMem);
path->reg += 4;
if (path->nreg == path->reg)
{
path->reg = 0;
if( path->nloop-- <= 1 )
{
size--;
pMem += 2;
break;
}
}
pMem += 2;
size--;
}
while(size > 0);
if (size & 1) pMem += 2;
if(size & 1) pMem += 2;
size /= 2;
break;
}
case GIF_FLG_IMAGE2: // hmmm
{
assert(0);
path->nloop = 0;
break;
}
case GIF_FLG_IMAGE: // FROM_VFRAM
{
int len = (int)min(size, path->nloop);
switch(gs.imageTransfer)
{
case 0:
ZeroGS::TransferHostLocal(pMem, len * 4);
break;
case 1:
ZeroGS::TransferLocalHost(pMem, len);
break;
case 2:
//Move();
break;
case 3:
assert(0);
break;
default:
assert(0);
break;
size /= 2;
break;
}
pMem += len * 16;
path->nloop -= len;
size -= len;
break;
}
default: // GIF_IMAGE
GS_LOG("*** WARNING **** Unexpected GIFTag flag\n");
assert(0);
break;
}
}
if (index == 0)
{
if(path->tag.EOP && path->nloop == 0)
{
break;
case GIF_FLG_IMAGE: // FROM_VFRAM
case GIF_FLG_IMAGE2: // Used in the DirectX version, so we'll use it here too.
{
int len = (int)min(size, path->nloop);
//ERROR_LOG("GIF_FLG_IMAGE(%d)=%d\n", gs.imageTransfer, len);
switch(gs.imageTransfer)
{
case 0:
ZeroGS::TransferHostLocal(pMem, len * 4);
break;
case 1:
ZeroGS::TransferLocalHost(pMem, len);
break;
case 2:
//Move();
//ERROR_LOG("GIF_FLG_IMAGE MOVE");
break;
case 3:
//assert(0);
break;
default:
//assert(0);
break;
}
pMem += len * 4;
path->nloop -= len;
size -= len;
break;
}
default: // GIF_IMAGE
GS_LOG("*** WARNING **** Unexpected GIFTag flag\n");
assert(0);
path->nloop = 0;
break;
}
}
}
}
if(index == 0)
if (index == 0)
{
if(path->tag.EOP && path->nloop == 0)
{
break;
}
}
}
// This is the case when not all data was readed from one try: VU1 has too much data.
// So we should redo reading from the start.
if (index == 0)
{
if(size == 0 && path->nloop > 0)
{
if (g_GSMultiThreaded)
{
// TODO
path->nloop = 0;
}
else
@ -240,29 +278,15 @@ template<int index> void _GSgifTransfer(u32 *pMem, u32 size)
void CALLBACK GSgifTransfer1(u32 *pMem, u32 addr)
{
FUNCLOG
pathInfo *path = &gs.path[0];
//GS_LOG("GSgifTransfer1 0x%x (mode %d)\n", addr, path->mode);
// addr &= 0x3fff;
#ifdef _DEBUG
PRIM_LOG("count: %d\n", count);
count++;
#endif
path->nloop = 0;
path->eop = 0;
_GSgifTransfer<0>((u32*)((u8*)pMem + addr), (0x4000 - addr)/16);
if (!path->eop && (path->nloop > 0))
{
assert( (addr&0xf) == 0 ); //BUG
path->nloop = 0;
ERROR_LOG("Transfer1 - 2\n");
return;
}
}
void CALLBACK GSgifTransfer2(u32 *pMem, u32 size)
@ -280,7 +304,6 @@ void CALLBACK GSgifTransfer3(u32 *pMem, u32 size)
//GS_LOG("GSgifTransfer3 size = %lx (mode %d, gs.path3.tag.nloop = %d)\n", size, gs.path[2].mode, gs.path[2].tag.nloop);
nPath3Hack = 0;
_GSgifTransfer<2>(pMem, size);
}
#else

View File

@ -22,8 +22,9 @@
#include "Regs.h"
#include "Util.h"
// This is fairly broken right now, and shouldn't be enabled unless you feel like fixing it.
//#define NEW_GIF_TRANSFER
// If you notice bugs in the newest revisions, you might try disabling this,
// to see if they are related.
#define NEW_GIF_TRANSFER
enum GIF_FLG
{
GIF_FLG_PACKED = 0,
@ -68,6 +69,16 @@ union GIFTag
typedef struct
{
#ifdef NEW_GIF_TRANSFER
int mode;
int reg;
u64 regs;
int nloop;
int eop;
int nreg;
u32 adonly;
GIFTag tag;
#else
int mode;
int regn;
u64 regs;
@ -76,8 +87,9 @@ typedef struct
int nreg;
u32 adonly;
GIFTag tag;
#endif
#ifdef NEW_GIF_TRANSFER
#ifdef NEW_GIF_TRANSFER
void setTag(u32 *data)
{
tag.set(data);
@ -85,45 +97,33 @@ typedef struct
nloop = tag.NLOOP;
eop = tag.EOP;
mode = tag.FLG;
nreg = tag.NREG;
//regs = tag.REGS;
//regn = 0;
ERROR_LOG("GIFtag: %8.8lx_%8.8lx_%8.8lx_%8.8lx: EOP=%d, NLOOP=%x, FLG=%x, NREG=%d, PRE=%d\n",
data[3], data[2], data[1], data[0],
eop, nloop, mode, nreg, tag.PRE);
// Hmm....
nreg = tag.NREG << 2;
if (nreg == 0) nreg = 64;
regs = tag.REGS;
reg = 0;
switch (mode)
{
case GIF_FLG_PACKED:
regs = *(u64 *)(data+2);
regn = 0;
break;
case GIF_FLG_REGLIST:
regs = *(u64 *)(data+2);
regn = 0;
break;
}
adonly = (nreg == 1) && ((u8)regs == 0xe);
// GS_LOG("GIFtag: %8.8lx_%8.8lx_%8.8lx_%8.8lx: EOP=%d, NLOOP=%x, FLG=%x, NREG=%d, PRE=%d\n",
// data[3], data[2], data[1], data[0],
// path->eop, path->nloop, mode, path->nreg, tag.PRE);
}
u32 GetReg()
{
return (regs >> regn) & 0xf;
return (regs >> reg) & 0xf;
}
bool StepReg()
{
regn += 1;
reg += 4;
if ((regn & 0xf) == nreg)
if (reg == nreg)
{
regn = 0;
reg = 0;
if (--nloop <= 0)
if (--nloop == 0)
{
return false;
}
@ -131,7 +131,6 @@ typedef struct
return true;
}
#else
void setTag(u32 *data)
{
tag.set(data);