2008-09-07 10:29:46 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// 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, version 2.0.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
//DL facts:
|
2008-10-03 17:22:35 +00:00
|
|
|
// Ikaruga uses (nearly) NO display lists!
|
2008-07-12 17:40:22 +00:00
|
|
|
// Zelda WW uses TONS of display lists
|
|
|
|
// Zelda TP uses almost 100% display lists except menus (we like this!)
|
|
|
|
|
2008-10-03 17:22:35 +00:00
|
|
|
// Note that it IS NOT GENERALLY POSSIBLE to precompile display lists! You can compile them as they are
|
2008-07-12 17:40:22 +00:00
|
|
|
// and hope that the vertex format doesn't change, though, if you do it just when they are
|
|
|
|
// called. The reason is that the vertex format affects the sizes of the vertices.
|
|
|
|
|
|
|
|
#include "D3DBase.h"
|
|
|
|
|
|
|
|
#include "Common.h"
|
2008-10-22 20:54:40 +00:00
|
|
|
#include "Statistics.h"
|
2008-10-17 11:30:14 +00:00
|
|
|
#include "Profiler.h"
|
2008-10-27 21:38:30 +00:00
|
|
|
#include "VertexManager.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "TransformEngine.h"
|
|
|
|
#include "OpcodeDecoding.h"
|
|
|
|
#include "TextureCache.h"
|
|
|
|
#include "ShaderManager.h"
|
|
|
|
|
|
|
|
#include "BPStructs.h"
|
|
|
|
#include "XFStructs.h"
|
|
|
|
#include "Utils.h"
|
2008-09-29 17:29:25 +00:00
|
|
|
#include "Fifo.h"
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "DataReader.h"
|
|
|
|
|
|
|
|
DecodedVArray tempvarray;
|
2008-10-03 17:22:35 +00:00
|
|
|
u8 *g_pVideoData = 0;
|
2008-07-12 17:40:22 +00:00
|
|
|
|
2008-10-03 22:05:28 +00:00
|
|
|
extern u8* FAKE_GetFifoStartPtr();
|
|
|
|
extern u8* FAKE_GetFifoEndPtr();
|
2008-07-12 17:40:22 +00:00
|
|
|
|
2008-10-22 22:35:29 +00:00
|
|
|
static void Decode();
|
2008-08-24 15:46:08 +00:00
|
|
|
|
2008-10-22 22:35:29 +00:00
|
|
|
static void ExecuteDisplayList(u32 address, u32 size)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
u8* old_pVideoData = g_pVideoData;
|
2008-10-22 22:35:29 +00:00
|
|
|
|
2008-10-03 22:05:28 +00:00
|
|
|
u8* startAddress = Memory_GetPtr(address);
|
2008-07-12 17:40:22 +00:00
|
|
|
|
2008-11-15 02:30:29 +00:00
|
|
|
//Avoid the crash if Memory_GetPtr failed ..
|
|
|
|
if (startAddress!=0)
|
|
|
|
{
|
|
|
|
g_pVideoData = startAddress;
|
|
|
|
|
|
|
|
// temporarily swap dl and non-dl(small "hack" for the stats)
|
|
|
|
Statistics::SwapDL();
|
2008-08-24 15:46:08 +00:00
|
|
|
|
2008-11-15 02:30:29 +00:00
|
|
|
while((u32)(g_pVideoData - startAddress) < size)
|
|
|
|
{
|
|
|
|
Decode();
|
|
|
|
}
|
|
|
|
INCSTAT(stats.numDListsCalled);
|
|
|
|
INCSTAT(stats.thisFrame.numDListsCalled);
|
2008-08-24 15:46:08 +00:00
|
|
|
|
2008-11-15 02:30:29 +00:00
|
|
|
// un-swap
|
|
|
|
Statistics::SwapDL();
|
2008-08-24 15:46:08 +00:00
|
|
|
|
2008-11-15 02:30:29 +00:00
|
|
|
// reset to the old pointer
|
|
|
|
g_pVideoData = old_pVideoData;
|
|
|
|
}
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
|
2008-10-22 22:35:29 +00:00
|
|
|
bool FifoCommandRunnable()
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
u32 iBufferSize = (u32)(FAKE_GetFifoEndPtr()-g_pVideoData);
|
2008-07-12 17:40:22 +00:00
|
|
|
if (iBufferSize == 0)
|
2008-08-31 13:36:52 +00:00
|
|
|
return false; // can't peek
|
2008-07-12 17:40:22 +00:00
|
|
|
|
2008-10-03 22:05:28 +00:00
|
|
|
u8 Cmd = DataPeek8(0);
|
2008-07-12 17:40:22 +00:00
|
|
|
u32 iCommandSize = 0;
|
|
|
|
|
|
|
|
switch(Cmd)
|
|
|
|
{
|
|
|
|
case GX_NOP:
|
|
|
|
// Hm, this means that we scan over nop streams pretty slowly...
|
|
|
|
iCommandSize = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_CP_REG:
|
|
|
|
iCommandSize = 6;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_INDX_A:
|
|
|
|
case GX_LOAD_INDX_B:
|
|
|
|
case GX_LOAD_INDX_C:
|
|
|
|
case GX_LOAD_INDX_D:
|
|
|
|
iCommandSize = 5;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_CMD_CALL_DL:
|
|
|
|
iCommandSize = 9;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x44:
|
|
|
|
iCommandSize = 1;
|
|
|
|
// zelda 4 swords calls it and checks the metrics registers after that
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_CMD_INVL_VC: // invalid vertex cache - no parameter?
|
|
|
|
iCommandSize = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_BP_REG:
|
|
|
|
iCommandSize = 5;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_XF_REG:
|
|
|
|
{
|
|
|
|
// check if we can read the header
|
|
|
|
if (iBufferSize >= 5)
|
|
|
|
{
|
|
|
|
iCommandSize = 1 + 4;
|
2008-10-03 22:05:28 +00:00
|
|
|
u32 Cmd2 = DataPeek32(1);
|
2008-07-12 17:40:22 +00:00
|
|
|
int dwTransferSize = ((Cmd2 >> 16) & 15) + 1;
|
|
|
|
iCommandSize += dwTransferSize * 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (Cmd&0x80)
|
|
|
|
{
|
|
|
|
// check if we can read the header
|
|
|
|
if (iBufferSize >= 3)
|
|
|
|
{
|
|
|
|
iCommandSize = 1 + 2;
|
2008-10-03 22:05:28 +00:00
|
|
|
u16 numVertices = DataPeek16(1);
|
2008-07-12 17:40:22 +00:00
|
|
|
VertexLoader& vtxLoader = g_VertexLoaders[Cmd & GX_VAT_MASK];
|
|
|
|
vtxLoader.Setup();
|
|
|
|
int vsize = vtxLoader.GetVertexSize();
|
|
|
|
iCommandSize += numVertices * vsize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-20 12:26:32 +00:00
|
|
|
char szTemp[1024];
|
|
|
|
sprintf(szTemp, "GFX: Unknown Opcode (0x%x).\n"
|
|
|
|
"This means one of the following:\n"
|
|
|
|
"* The emulated GPU got desynced, disabling dual core can help\n"
|
|
|
|
"* Command stream corrupted by some spurious memory bug\n"
|
|
|
|
"* This really is an unknown opcode (unlikely)\n\n"
|
|
|
|
"* Some other sort of bug\n\n"
|
|
|
|
"Dolphin will now likely crash or hang. Enjoy.", Cmd);
|
2008-07-12 17:40:22 +00:00
|
|
|
MessageBox(NULL, szTemp, "Video-Plugin", MB_OK);
|
|
|
|
g_VideoInitialize.pLog(szTemp, TRUE);
|
2008-07-23 16:20:12 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
SCPFifoStruct &fifo = *g_VideoInitialize.pCPFifo;
|
|
|
|
|
|
|
|
char szTmp[256];
|
|
|
|
// sprintf(szTmp, "Illegal command %02x (at %08x)",Cmd,g_pDataReader->GetPtr());
|
|
|
|
sprintf(szTmp, "Illegal command %02x\n"
|
|
|
|
"CPBase: 0x%08x\n"
|
|
|
|
"CPEnd: 0x%08x\n"
|
|
|
|
"CPHiWatermark: 0x%08x\n"
|
|
|
|
"CPLoWatermark: 0x%08x\n"
|
|
|
|
"CPReadWriteDistance: 0x%08x\n"
|
|
|
|
"CPWritePointer: 0x%08x\n"
|
|
|
|
"CPReadPointer: 0x%08x\n"
|
|
|
|
"CPBreakpoint: 0x%08x\n"
|
|
|
|
"bFF_GPReadEnable: %s\n"
|
|
|
|
"bFF_BPEnable: %s\n"
|
|
|
|
"bFF_GPLinkEnable: %s\n"
|
|
|
|
"bFF_Breakpoint: %s\n"
|
|
|
|
,Cmd, fifo.CPBase, fifo.CPEnd, fifo.CPHiWatermark, fifo.CPLoWatermark, fifo.CPReadWriteDistance
|
|
|
|
,fifo.CPWritePointer, fifo.CPReadPointer, fifo.CPBreakpoint, fifo.bFF_GPReadEnable ? "true" : "false"
|
|
|
|
,fifo.bFF_BPEnable ? "true" : "false" ,fifo.bFF_GPLinkEnable ? "true" : "false"
|
2008-10-07 21:39:50 +00:00
|
|
|
,fifo.bFF_Breakpoint ? "true" : "false");
|
2008-07-23 16:20:12 +00:00
|
|
|
|
|
|
|
g_VideoInitialize.pLog(szTmp, TRUE);
|
|
|
|
MessageBox(0,szTmp,"GFX ERROR",0);
|
|
|
|
// _assert_msg_(0,szTmp,"");
|
|
|
|
|
|
|
|
}
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iCommandSize > iBufferSize)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
char temp[256];
|
|
|
|
sprintf(temp, "OP detected: Cmd 0x%x size %i buffer %i",Cmd, iCommandSize, iBufferSize);
|
|
|
|
g_VideoInitialize.pLog(temp, FALSE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-22 22:35:29 +00:00
|
|
|
static void Decode(void)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
int Cmd = DataReadU8();
|
2008-10-22 22:35:29 +00:00
|
|
|
switch (Cmd)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
|
|
|
case GX_NOP:
|
|
|
|
break;
|
|
|
|
|
2008-10-22 22:35:29 +00:00
|
|
|
case GX_LOAD_CP_REG:
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
u32 SubCmd = DataReadU8();
|
|
|
|
u32 Value = DataReadU32();
|
2008-07-12 17:40:22 +00:00
|
|
|
LoadCPReg(SubCmd,Value);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_XF_REG:
|
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
u32 Cmd2 = DataReadU32();
|
2008-07-12 17:40:22 +00:00
|
|
|
|
|
|
|
int dwTransferSize = ((Cmd2>>16)&15) + 1;
|
2008-09-01 22:48:56 +00:00
|
|
|
u32 dwAddress = Cmd2 & 0xFFFF;
|
2008-07-12 17:40:22 +00:00
|
|
|
static u32 pData[16];
|
|
|
|
for (int i=0; i<dwTransferSize; i++)
|
2008-10-03 22:05:28 +00:00
|
|
|
pData[i] = DataReadU32();
|
2008-07-12 17:40:22 +00:00
|
|
|
LoadXFReg(dwTransferSize,dwAddress,pData);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_INDX_A: //used for position matrices
|
2008-10-03 22:05:28 +00:00
|
|
|
LoadIndexedXF(DataReadU32(),0xC);
|
2008-07-12 17:40:22 +00:00
|
|
|
break;
|
|
|
|
case GX_LOAD_INDX_B: //used for normal matrices
|
2008-10-03 22:05:28 +00:00
|
|
|
LoadIndexedXF(DataReadU32(),0xD);
|
2008-07-12 17:40:22 +00:00
|
|
|
break;
|
|
|
|
case GX_LOAD_INDX_C: //used for postmatrices
|
2008-10-03 22:05:28 +00:00
|
|
|
LoadIndexedXF(DataReadU32(),0xE);
|
2008-07-12 17:40:22 +00:00
|
|
|
break;
|
|
|
|
case GX_LOAD_INDX_D: //used for lights
|
2008-10-03 22:05:28 +00:00
|
|
|
LoadIndexedXF(DataReadU32(),0xF);
|
2008-07-12 17:40:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_CMD_CALL_DL:
|
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
u32 dwAddr = DataReadU32();
|
|
|
|
u32 dwCount = DataReadU32();
|
2008-07-12 17:40:22 +00:00
|
|
|
ExecuteDisplayList(dwAddr, dwCount);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x44:
|
|
|
|
// zelda 4 swords calls it and checks the metrics registers after that
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_CMD_INVL_VC:// Invalidate (vertex cache?)
|
|
|
|
DebugLog("Invalidate (vertex cache?)");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GX_LOAD_BP_REG: //0x61
|
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
u32 cmd = DataReadU32();
|
2008-07-12 17:40:22 +00:00
|
|
|
LoadBPReg(cmd);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// draw primitives
|
|
|
|
default:
|
|
|
|
if (Cmd&0x80)
|
|
|
|
{
|
|
|
|
// load vertices
|
2008-10-03 22:05:28 +00:00
|
|
|
u16 numVertices = DataReadU16();
|
2008-07-12 17:40:22 +00:00
|
|
|
tempvarray.Reset();
|
|
|
|
VertexLoader::SetVArray(&tempvarray);
|
|
|
|
VertexLoader& vtxLoader = g_VertexLoaders[Cmd & GX_VAT_MASK];
|
|
|
|
vtxLoader.Setup();
|
|
|
|
vtxLoader.PrepareRun();
|
|
|
|
int vsize = vtxLoader.GetVertexSize();
|
|
|
|
vtxLoader.RunVertices(numVertices);
|
|
|
|
|
2008-10-27 21:38:30 +00:00
|
|
|
// add vertices
|
2008-07-12 17:40:22 +00:00
|
|
|
int primitive = (Cmd & GX_PRIMITIVE_MASK) >> GX_PRIMITIVE_SHIFT;
|
2008-10-27 21:38:30 +00:00
|
|
|
VertexManager::AddVertices(primitive, numVertices, &tempvarray);
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-23 16:20:12 +00:00
|
|
|
SCPFifoStruct &fifo = *g_VideoInitialize.pCPFifo;
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
char szTmp[256];
|
|
|
|
// sprintf(szTmp, "Illegal command %02x (at %08x)",Cmd,g_pDataReader->GetPtr());
|
2008-07-23 16:20:12 +00:00
|
|
|
sprintf(szTmp, "Illegal command %02x\n"
|
|
|
|
"CPBase: 0x%08x\n"
|
|
|
|
"CPEnd: 0x%08x\n"
|
|
|
|
"CPHiWatermark: 0x%08x\n"
|
|
|
|
"CPLoWatermark: 0x%08x\n"
|
|
|
|
"CPReadWriteDistance: 0x%08x\n"
|
|
|
|
"CPWritePointer: 0x%08x\n"
|
|
|
|
"CPReadPointer: 0x%08x\n"
|
|
|
|
"CPBreakpoint: 0x%08x\n"
|
|
|
|
"bFF_GPReadEnable: %s\n"
|
|
|
|
"bFF_BPEnable: %s\n"
|
|
|
|
"bFF_GPLinkEnable: %s\n"
|
|
|
|
"bFF_Breakpoint: %s\n"
|
|
|
|
,Cmd, fifo.CPBase, fifo.CPEnd, fifo.CPHiWatermark, fifo.CPLoWatermark, fifo.CPReadWriteDistance
|
|
|
|
,fifo.CPWritePointer, fifo.CPReadPointer, fifo.CPBreakpoint, fifo.bFF_GPReadEnable ? "true" : "false"
|
|
|
|
,fifo.bFF_BPEnable ? "true" : "false" ,fifo.bFF_GPLinkEnable ? "true" : "false"
|
2008-10-07 21:39:50 +00:00
|
|
|
,fifo.bFF_Breakpoint ? "true" : "false");
|
2008-07-23 16:20:12 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
g_VideoInitialize.pLog(szTmp, TRUE);
|
|
|
|
MessageBox(0,szTmp,"GFX ERROR",0);
|
|
|
|
// _assert_msg_(0,szTmp,"");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpcodeDecoder_Init()
|
|
|
|
{
|
2008-10-03 22:05:28 +00:00
|
|
|
g_pVideoData = FAKE_GetFifoStartPtr();
|
2008-07-12 17:40:22 +00:00
|
|
|
tempvarray.Create(65536*3, 1, 8, 3, 2, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OpcodeDecoder_Shutdown()
|
|
|
|
{
|
2008-09-17 08:40:52 +00:00
|
|
|
//VirtualFree((LPVOID)buffer,0,MEM_RELEASE);
|
2008-07-12 17:40:22 +00:00
|
|
|
tempvarray.Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpcodeDecoder_Run()
|
|
|
|
{
|
|
|
|
DVSTARTPROFILE();
|
|
|
|
|
|
|
|
while (FifoCommandRunnable())
|
|
|
|
{
|
|
|
|
Decode();
|
|
|
|
}
|
|
|
|
}
|