2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
|
2014-05-25 01:55:13 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/Thread.h"
|
2014-05-03 19:10:19 +00:00
|
|
|
#include "Core/Core.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/Memmap.h"
|
|
|
|
|
|
|
|
#include "VideoCommon/BPFunctions.h"
|
|
|
|
#include "VideoCommon/BPStructs.h"
|
2014-07-08 14:49:33 +00:00
|
|
|
#include "VideoCommon/Fifo.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
|
|
|
#include "VideoCommon/PixelEngine.h"
|
|
|
|
#include "VideoCommon/PixelShaderManager.h"
|
|
|
|
#include "VideoCommon/RenderBase.h"
|
|
|
|
#include "VideoCommon/Statistics.h"
|
|
|
|
#include "VideoCommon/TextureDecoder.h"
|
|
|
|
#include "VideoCommon/VertexLoader.h"
|
|
|
|
#include "VideoCommon/VertexShaderManager.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
using namespace BPFunctions;
|
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
static const float s_gammaLUT[] =
|
2010-12-31 07:06:53 +00:00
|
|
|
{
|
|
|
|
1.0f,
|
|
|
|
1.7f,
|
|
|
|
2.2f,
|
|
|
|
1.0f
|
|
|
|
};
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
void BPInit()
|
|
|
|
{
|
2010-06-05 01:38:22 +00:00
|
|
|
memset(&bpmem, 0, sizeof(bpmem));
|
|
|
|
bpmem.bpMask = 0xFFFFFF;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2014-05-03 20:36:29 +00:00
|
|
|
static void BPWritten(const BPCmd& bp)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2010-06-05 01:38:22 +00:00
|
|
|
/*
|
|
|
|
----------------------------------------------------------------------------------------------------------------
|
|
|
|
Purpose: Writes to the BP registers
|
|
|
|
Called: At the end of every: OpcodeDecoding.cpp ExecuteDisplayList > Decode() > LoadBPReg
|
|
|
|
How It Works: First the pipeline is flushed then update the bpmem with the new value.
|
|
|
|
Some of the BP cases have to call certain functions while others just update the bpmem.
|
|
|
|
some bp cases check the changes variable, because they might not have to be updated all the time
|
|
|
|
NOTE: it seems not all bp cases like checking changes, so calling if (bp.changes == 0 ? false : true)
|
|
|
|
had to be ditched and the games seem to work fine with out it.
|
2014-06-07 02:30:39 +00:00
|
|
|
NOTE2: Yet Another GameCube Documentation calls them Bypass Raster State Registers but possibly completely wrong
|
2010-06-05 01:38:22 +00:00
|
|
|
NOTE3: This controls the register groups: RAS1/2, SU, TF, TEV, C/Z, PEC
|
|
|
|
TODO: Turn into function table. The (future) DisplayList (DL) jit can then call the functions directly,
|
|
|
|
getting rid of dynamic dispatch. Unfortunately, few games use DLs properly - most\
|
|
|
|
just stuff geometry in them and don't put state changes there
|
|
|
|
----------------------------------------------------------------------------------------------------------------
|
|
|
|
*/
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2012-12-21 20:04:53 +00:00
|
|
|
// check for invalid state, else unneeded configuration are built
|
2012-12-23 12:32:23 +00:00
|
|
|
g_video_backend->CheckInvalidState();
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-01-15 21:22:28 +00:00
|
|
|
if (((s32*)&bpmem)[bp.address] == bp.newvalue)
|
2012-05-18 21:13:53 +00:00
|
|
|
{
|
2014-03-10 11:30:55 +00:00
|
|
|
if (!(bp.address == BPMEM_TRIGGER_EFB_COPY ||
|
|
|
|
bp.address == BPMEM_CLEARBBOX1 ||
|
|
|
|
bp.address == BPMEM_CLEARBBOX2 ||
|
|
|
|
bp.address == BPMEM_SETDRAWDONE ||
|
|
|
|
bp.address == BPMEM_PE_TOKEN_ID ||
|
|
|
|
bp.address == BPMEM_PE_TOKEN_INT_ID ||
|
|
|
|
bp.address == BPMEM_LOADTLUT0 ||
|
|
|
|
bp.address == BPMEM_LOADTLUT1 ||
|
|
|
|
bp.address == BPMEM_TEXINVALIDATE ||
|
|
|
|
bp.address == BPMEM_PRELOAD_MODE ||
|
|
|
|
bp.address == BPMEM_CLEAR_PIXEL_PERF))
|
2012-05-18 21:13:53 +00:00
|
|
|
{
|
2014-01-15 21:22:28 +00:00
|
|
|
return;
|
2012-05-18 21:13:53 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-05 03:24:13 +00:00
|
|
|
|
2014-01-15 21:22:28 +00:00
|
|
|
FlushPipeline();
|
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
((u32*)&bpmem)[bp.address] = bp.newvalue;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
switch (bp.address)
|
|
|
|
{
|
|
|
|
case BPMEM_GENMODE: // Set the Generation Mode
|
2014-05-20 15:28:08 +00:00
|
|
|
PRIM_LOG("genmode: texgen=%d, col=%d, multisampling=%d, tev=%d, cullmode=%d, ind=%d, zfeeze=%d",
|
|
|
|
(u32)bpmem.genMode.numtexgens, (u32)bpmem.genMode.numcolchans,
|
|
|
|
(u32)bpmem.genMode.multisampling, (u32)bpmem.genMode.numtevstages+1, (u32)bpmem.genMode.cullmode,
|
|
|
|
(u32)bpmem.genMode.numindstages, (u32)bpmem.genMode.zfreeze);
|
|
|
|
|
|
|
|
// Only call SetGenerationMode when cull mode changes.
|
|
|
|
if (bp.changes & 0xC000)
|
|
|
|
SetGenerationMode();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_IND_MTXA: // Index Matrix Changed
|
|
|
|
case BPMEM_IND_MTXB:
|
|
|
|
case BPMEM_IND_MTXC:
|
|
|
|
case BPMEM_IND_MTXA+3:
|
|
|
|
case BPMEM_IND_MTXB+3:
|
|
|
|
case BPMEM_IND_MTXC+3:
|
|
|
|
case BPMEM_IND_MTXA+6:
|
|
|
|
case BPMEM_IND_MTXB+6:
|
|
|
|
case BPMEM_IND_MTXC+6:
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes)
|
2013-10-07 19:57:18 +00:00
|
|
|
PixelShaderManager::SetIndMatrixChanged((bp.address - BPMEM_IND_MTXA) / 3);
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_RAS1_SS0: // Index Texture Coordinate Scale 0
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes)
|
2013-10-12 15:56:41 +00:00
|
|
|
PixelShaderManager::SetIndTexScaleChanged(false);
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_RAS1_SS1: // Index Texture Coordinate Scale 1
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes)
|
2013-10-12 15:56:41 +00:00
|
|
|
PixelShaderManager::SetIndTexScaleChanged(true);
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-26 09:52:35 +00:00
|
|
|
// ----------------
|
|
|
|
// Scissor Control
|
|
|
|
// ----------------
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_SCISSORTL: // Scissor Rectable Top, Left
|
|
|
|
case BPMEM_SCISSORBR: // Scissor Rectable Bottom, Right
|
|
|
|
case BPMEM_SCISSOROFFSET: // Scissor Offset
|
2011-09-05 20:04:28 +00:00
|
|
|
SetScissor();
|
2013-10-24 12:06:48 +00:00
|
|
|
VertexShaderManager::SetViewportChanged();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_LINEPTWIDTH: // Line Width
|
2012-01-01 20:46:02 +00:00
|
|
|
SetLineWidth();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_ZMODE: // Depth Control
|
2014-03-24 19:21:34 +00:00
|
|
|
PRIM_LOG("zmode: test=%d, func=%d, upd=%d", (int)bpmem.zmode.testenable,
|
|
|
|
(int)bpmem.zmode.func, (int)bpmem.zmode.updateenable);
|
2012-01-01 20:46:02 +00:00
|
|
|
SetDepthMode();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_BLENDMODE: // Blending Control
|
2014-05-20 15:28:08 +00:00
|
|
|
if (bp.changes & 0xFFFF)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2014-05-20 15:28:08 +00:00
|
|
|
PRIM_LOG("blendmode: en=%d, open=%d, colupd=%d, alphaupd=%d, dst=%d, src=%d, sub=%d, mode=%d",
|
|
|
|
(int)bpmem.blendmode.blendenable, (int)bpmem.blendmode.logicopenable, (int)bpmem.blendmode.colorupdate,
|
|
|
|
(int)bpmem.blendmode.alphaupdate, (int)bpmem.blendmode.dstfactor, (int)bpmem.blendmode.srcfactor,
|
|
|
|
(int)bpmem.blendmode.subtract, (int)bpmem.blendmode.logicmode);
|
|
|
|
|
|
|
|
// Set LogicOp Blending Mode
|
|
|
|
if (bp.changes & 0xF002) // logicopenable | logicmode
|
|
|
|
SetLogicOpMode();
|
|
|
|
|
|
|
|
// Set Dithering Mode
|
|
|
|
if (bp.changes & 4) // dither
|
|
|
|
SetDitherMode();
|
|
|
|
|
|
|
|
// Set Blending Mode
|
|
|
|
if (bp.changes & 0xFF1) // blendenable | alphaupdate | dstfactor | srcfactor | subtract
|
2013-01-17 23:44:35 +00:00
|
|
|
SetBlendMode();
|
2014-05-20 15:28:08 +00:00
|
|
|
|
|
|
|
// Set Color Mask
|
|
|
|
if (bp.changes & 0x18) // colorupdate | alphaupdate
|
|
|
|
SetColorMask();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2014-05-20 15:28:08 +00:00
|
|
|
case BPMEM_CONSTANTALPHA: // Set Destination Alpha
|
|
|
|
PRIM_LOG("constalpha: alp=%d, en=%d", bpmem.dstalpha.alpha, bpmem.dstalpha.enable);
|
|
|
|
if (bp.changes & 0xFF)
|
|
|
|
PixelShaderManager::SetDestAlpha();
|
|
|
|
if (bp.changes & 0x100)
|
|
|
|
SetBlendMode();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2014-05-20 15:28:08 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
// This is called when the game is done drawing the new frame (eg: like in DX: Begin(); Draw(); End();)
|
|
|
|
// Triggers an interrupt on the PPC side so that the game knows when the GPU has finished drawing.
|
|
|
|
// Tokens are similar.
|
2010-06-05 01:38:22 +00:00
|
|
|
case BPMEM_SETDRAWDONE:
|
2009-07-06 02:10:26 +00:00
|
|
|
switch (bp.newvalue & 0xFF)
|
2010-06-05 01:38:22 +00:00
|
|
|
{
|
|
|
|
case 0x02:
|
|
|
|
PixelEngine::SetFinish(); // may generate interrupt
|
|
|
|
DEBUG_LOG(VIDEO, "GXSetDrawDone SetPEFinish (value: 0x%02X)", (bp.newvalue & 0xFFFF));
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2010-06-05 01:38:22 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
WARN_LOG(VIDEO, "GXSetDrawDone ??? (value 0x%02X)", (bp.newvalue & 0xFFFF));
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2010-06-05 01:38:22 +00:00
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_PE_TOKEN_ID: // Pixel Engine Token ID
|
2011-02-02 04:40:27 +00:00
|
|
|
PixelEngine::SetToken(static_cast<u16>(bp.newvalue & 0xFFFF), false);
|
2010-06-05 01:38:22 +00:00
|
|
|
DEBUG_LOG(VIDEO, "SetPEToken 0x%04x", (bp.newvalue & 0xFFFF));
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2010-06-05 01:38:22 +00:00
|
|
|
case BPMEM_PE_TOKEN_INT_ID: // Pixel Engine Interrupt Token ID
|
2011-02-02 04:40:27 +00:00
|
|
|
PixelEngine::SetToken(static_cast<u16>(bp.newvalue & 0xFFFF), true);
|
2010-06-05 01:38:22 +00:00
|
|
|
DEBUG_LOG(VIDEO, "SetPEToken + INT 0x%04x", (bp.newvalue & 0xFFFF));
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
// ------------------------
|
|
|
|
// EFB copy command. This copies a rectangle from the EFB to either RAM in a texture format or to XFB as YUYV.
|
|
|
|
// It can also optionally clear the EFB while copying from it. To emulate this, we of course copy first and clear afterwards.
|
2010-06-05 01:38:22 +00:00
|
|
|
case BPMEM_TRIGGER_EFB_COPY: // Copy EFB Region or Render to the XFB or Clear the screen.
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
// The bottom right is within the rectangle
|
|
|
|
// The values in bpmem.copyTexSrcXY and bpmem.copyTexSrcWH are updated in case 0x49 and 0x4a in this function
|
2009-07-15 00:51:24 +00:00
|
|
|
|
2014-05-03 21:16:18 +00:00
|
|
|
u32 destAddr = bpmem.copyTexDest << 5;
|
|
|
|
|
|
|
|
EFBRectangle srcRect;
|
|
|
|
srcRect.left = (int)bpmem.copyTexSrcXY.x;
|
|
|
|
srcRect.top = (int)bpmem.copyTexSrcXY.y;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-12-18 18:23:22 +00:00
|
|
|
// Here Width+1 like Height, otherwise some textures are corrupted already since the native resolution.
|
2014-01-03 07:15:19 +00:00
|
|
|
// TODO: What's the behavior of out of bound access?
|
2014-05-03 21:16:18 +00:00
|
|
|
srcRect.right = (int)(bpmem.copyTexSrcXY.x + bpmem.copyTexSrcWH.x + 1);
|
|
|
|
srcRect.bottom = (int)(bpmem.copyTexSrcXY.y + bpmem.copyTexSrcWH.y + 1);
|
2009-07-15 00:51:24 +00:00
|
|
|
|
2009-10-10 21:19:39 +00:00
|
|
|
UPE_Copy PE_copy = bpmem.triggerEFBCopy;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// Check if we are to copy from the EFB or draw to the XFB
|
|
|
|
if (PE_copy.copy_to_xfb == 0)
|
|
|
|
{
|
2014-05-03 19:10:19 +00:00
|
|
|
if (g_ActiveConfig.bShowEFBCopyRegions)
|
2014-05-03 21:16:18 +00:00
|
|
|
stats.efb_regions.push_back(srcRect);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-05-03 21:16:18 +00:00
|
|
|
CopyEFB(destAddr, srcRect,
|
|
|
|
PE_copy.tp_realFormat(), bpmem.zcontrol.pixel_format,
|
|
|
|
PE_copy.intensity_fmt, PE_copy.half_scale);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We should be able to get away with deactivating the current bbox tracking
|
|
|
|
// here. Not sure if there's a better spot to put this.
|
|
|
|
// the number of lines copied is determined by the y scale * source efb height
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-12-05 16:15:01 +00:00
|
|
|
PixelEngine::bbox_active = false;
|
2009-07-18 20:38:35 +00:00
|
|
|
|
|
|
|
float yScale;
|
2009-07-19 08:24:30 +00:00
|
|
|
if (PE_copy.scale_invert)
|
2009-07-18 20:38:35 +00:00
|
|
|
yScale = 256.0f / (float)bpmem.dispcopyyscale;
|
|
|
|
else
|
|
|
|
yScale = (float)bpmem.dispcopyyscale / 256.0f;
|
|
|
|
|
|
|
|
float xfbLines = ((bpmem.copyTexSrcWH.y + 1.0f) * yScale);
|
2009-07-19 11:03:31 +00:00
|
|
|
if ((u32)xfbLines > MAX_XFB_HEIGHT)
|
2009-07-18 20:38:35 +00:00
|
|
|
{
|
2009-09-02 18:55:36 +00:00
|
|
|
INFO_LOG(VIDEO, "Tried to scale EFB to too many XFB lines (%f)", xfbLines);
|
2009-07-18 20:38:35 +00:00
|
|
|
xfbLines = MAX_XFB_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2014-05-03 21:16:18 +00:00
|
|
|
u32 width = bpmem.copyMipMapStrideChannels << 4;
|
|
|
|
u32 height = xfbLines;
|
|
|
|
|
|
|
|
Renderer::RenderToXFB(destAddr, srcRect,
|
|
|
|
width, height,
|
2014-05-03 21:03:19 +00:00
|
|
|
s_gammaLUT[PE_copy.gamma]);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2009-09-13 21:18:04 +00:00
|
|
|
// Clear the rectangular region after copying it.
|
2009-07-06 02:10:26 +00:00
|
|
|
if (PE_copy.clear)
|
2009-09-13 21:18:04 +00:00
|
|
|
{
|
2014-05-03 21:16:18 +00:00
|
|
|
ClearScreen(srcRect);
|
2009-09-13 21:18:04 +00:00
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2009-12-28 19:13:06 +00:00
|
|
|
case BPMEM_LOADTLUT0: // This one updates bpmem.tlutXferSrc, no need to do anything here.
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-12-28 19:13:06 +00:00
|
|
|
case BPMEM_LOADTLUT1: // Load a Texture Look Up Table
|
2010-06-05 01:38:22 +00:00
|
|
|
{
|
|
|
|
u32 tlutTMemAddr = (bp.newvalue & 0x3FF) << 9;
|
|
|
|
u32 tlutXferCount = (bp.newvalue & 0x1FFC00) >> 5;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
u8 *ptr = nullptr;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
// TODO - figure out a cleaner way.
|
2014-05-03 19:10:19 +00:00
|
|
|
if (Core::g_CoreStartupParameter.bWii)
|
2014-05-03 19:04:29 +00:00
|
|
|
ptr = Memory::GetPointer(bpmem.tmem_config.tlut_src << 5);
|
2009-07-06 02:10:26 +00:00
|
|
|
else
|
2014-05-03 19:04:29 +00:00
|
|
|
ptr = Memory::GetPointer((bpmem.tmem_config.tlut_src & 0xFFFFF) << 5);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
if (ptr)
|
2014-05-15 09:19:39 +00:00
|
|
|
memcpy(texMem + tlutTMemAddr, ptr, tlutXferCount);
|
2009-07-06 02:10:26 +00:00
|
|
|
else
|
2012-01-29 20:17:22 +00:00
|
|
|
PanicAlert("Invalid palette pointer %08x %08x %08x", bpmem.tmem_config.tlut_src, bpmem.tmem_config.tlut_src << 5, (bpmem.tmem_config.tlut_src & 0xFFFFF)<< 5);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2010-06-05 01:38:22 +00:00
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_FOGRANGE: // Fog Settings Control
|
2010-05-24 14:53:27 +00:00
|
|
|
case BPMEM_FOGRANGE+1:
|
|
|
|
case BPMEM_FOGRANGE+2:
|
|
|
|
case BPMEM_FOGRANGE+3:
|
|
|
|
case BPMEM_FOGRANGE+4:
|
|
|
|
case BPMEM_FOGRANGE+5:
|
2014-05-03 19:08:11 +00:00
|
|
|
if (bp.changes)
|
2011-01-29 04:31:56 +00:00
|
|
|
PixelShaderManager::SetFogRangeAdjustChanged();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_FOGPARAM0:
|
|
|
|
case BPMEM_FOGBMAGNITUDE:
|
|
|
|
case BPMEM_FOGBEXPONENT:
|
|
|
|
case BPMEM_FOGPARAM3:
|
2014-05-03 19:08:11 +00:00
|
|
|
if (bp.changes)
|
2009-07-06 02:10:26 +00:00
|
|
|
PixelShaderManager::SetFogParamChanged();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_FOGCOLOR: // Fog Color
|
2014-05-03 19:08:11 +00:00
|
|
|
if (bp.changes)
|
2009-12-09 13:51:28 +00:00
|
|
|
PixelShaderManager::SetFogColorChanged();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_ALPHACOMPARE: // Compare Alpha Values
|
2014-03-24 19:21:34 +00:00
|
|
|
PRIM_LOG("alphacmp: ref0=%d, ref1=%d, comp0=%d, comp1=%d, logic=%d",
|
|
|
|
(int)bpmem.alpha_test.ref0, (int)bpmem.alpha_test.ref1,
|
|
|
|
(int)bpmem.alpha_test.comp0, (int)bpmem.alpha_test.comp1,
|
|
|
|
(int)bpmem.alpha_test.logic);
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes & 0xFFFF)
|
2013-10-12 15:56:41 +00:00
|
|
|
PixelShaderManager::SetAlpha();
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes)
|
2013-10-07 19:57:18 +00:00
|
|
|
g_renderer->SetColorMask();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_BIAS: // BIAS
|
|
|
|
PRIM_LOG("ztex bias=0x%x", bpmem.ztex1.bias);
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes)
|
2013-10-12 15:56:41 +00:00
|
|
|
PixelShaderManager::SetZTextureBias();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_ZTEX2: // Z Texture type
|
|
|
|
{
|
2010-06-05 01:38:22 +00:00
|
|
|
if (bp.changes & 3)
|
2009-07-06 02:10:26 +00:00
|
|
|
PixelShaderManager::SetZTextureTypeChanged();
|
2013-10-29 05:23:17 +00:00
|
|
|
#if defined(_DEBUG) || defined(DEBUGFAST)
|
2009-07-06 02:10:26 +00:00
|
|
|
const char* pzop[] = {"DISABLE", "ADD", "REPLACE", "?"};
|
|
|
|
const char* pztype[] = {"Z8", "Z16", "Z24", "?"};
|
|
|
|
PRIM_LOG("ztex op=%s, type=%s", pzop[bpmem.ztex2.op], pztype[bpmem.ztex2.type]);
|
|
|
|
#endif
|
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
// ----------------------------------
|
2009-07-26 09:52:35 +00:00
|
|
|
// Display Copy Filtering Control - GX_SetCopyFilter(u8 aa,u8 sample_pattern[12][2],u8 vf,u8 vfilter[7])
|
2009-07-06 02:10:26 +00:00
|
|
|
// Fields: Destination, Frame2Field, Gamma, Source
|
|
|
|
// ----------------------------------
|
2014-05-03 19:53:42 +00:00
|
|
|
case BPMEM_DISPLAYCOPYFILTER: // if (aa) { use sample_pattern } else { use 666666 }
|
|
|
|
case BPMEM_DISPLAYCOPYFILTER+1: // if (aa) { use sample_pattern } else { use 666666 }
|
|
|
|
case BPMEM_DISPLAYCOPYFILTER+2: // if (aa) { use sample_pattern } else { use 666666 }
|
|
|
|
case BPMEM_DISPLAYCOPYFILTER+3: // if (aa) { use sample_pattern } else { use 666666 }
|
2014-05-20 15:23:47 +00:00
|
|
|
case BPMEM_COPYFILTER0: // if (vf) { use vfilter } else { use 595000 }
|
|
|
|
case BPMEM_COPYFILTER1: // if (vf) { use vfilter } else { use 000015 }
|
|
|
|
return;
|
2009-07-26 09:52:35 +00:00
|
|
|
// -----------------------------------
|
|
|
|
// Interlacing Control
|
|
|
|
// -----------------------------------
|
|
|
|
case BPMEM_FIELDMASK: // GX_SetFieldMask(u8 even_mask,u8 odd_mask)
|
|
|
|
case BPMEM_FIELDMODE: // GX_SetFieldMode(u8 field_mode,u8 half_aspect_ratio)
|
2014-05-20 15:23:47 +00:00
|
|
|
// TODO
|
|
|
|
return;
|
2009-07-26 09:52:35 +00:00
|
|
|
// ----------------------------------------
|
|
|
|
// Unimportant regs (Clock, Perf, ...)
|
|
|
|
// ----------------------------------------
|
|
|
|
case BPMEM_BUSCLOCK0: // TB Bus Clock ?
|
|
|
|
case BPMEM_BUSCLOCK1: // TB Bus Clock ?
|
|
|
|
case BPMEM_PERF0_TRI: // Perf: Triangles
|
|
|
|
case BPMEM_PERF0_QUAD: // Perf: Quads
|
|
|
|
case BPMEM_PERF1: // Perf: Some Clock, Texels, TX, TC
|
2009-07-06 02:10:26 +00:00
|
|
|
break;
|
|
|
|
// ----------------
|
|
|
|
// EFB Copy config
|
|
|
|
// ----------------
|
|
|
|
case BPMEM_EFB_TL: // EFB Source Rect. Top, Left
|
|
|
|
case BPMEM_EFB_BR: // EFB Source Rect. Bottom, Right (w, h - 1)
|
|
|
|
case BPMEM_EFB_ADDR: // EFB Target Address
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
// --------------
|
|
|
|
// Clear Config
|
|
|
|
// --------------
|
|
|
|
case BPMEM_CLEAR_AR: // Alpha and Red Components
|
|
|
|
case BPMEM_CLEAR_GB: // Green and Blue Components
|
|
|
|
case BPMEM_CLEAR_Z: // Z Components (24-bit Zbuffer)
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
// -------------------------
|
2009-07-26 09:52:35 +00:00
|
|
|
// Bounding Box Control
|
2009-07-06 02:10:26 +00:00
|
|
|
// -------------------------
|
|
|
|
case BPMEM_CLEARBBOX1:
|
2010-07-06 13:14:51 +00:00
|
|
|
case BPMEM_CLEARBBOX2:
|
Rewrote bounding box algotithm. Fixes issues 5967, 6154, 6196, 6211.
Instead of being vertex-based, it is now primitive (point, line or dissected triangle) based, with proper clipping.
Also, screen position is now calculated based on viewport values, instead of "guesstimating".
This fixes many graphical glitches in Paper Mario: TTYD and Super Paper Mario.
Also, the new code allows Mickey's Magical Mirror and Disney's Hide & Sneak to work (mostly) bug-free. I changed their inis to use bbox.
These changes have a slight cost in performance when bbox is being used (rare), mostly due to the new clipping algorithm.
Please check for any regressions or crashes.
2014-01-25 15:36:23 +00:00
|
|
|
// Don't compute bounding box if this frame is being skipped!
|
|
|
|
// Wrong but valid values are better than bogus values...
|
|
|
|
if (g_ActiveConfig.bUseBBox && !g_bSkipCurrentFrame)
|
2010-07-06 13:14:51 +00:00
|
|
|
{
|
Rewrote bounding box algotithm. Fixes issues 5967, 6154, 6196, 6211.
Instead of being vertex-based, it is now primitive (point, line or dissected triangle) based, with proper clipping.
Also, screen position is now calculated based on viewport values, instead of "guesstimating".
This fixes many graphical glitches in Paper Mario: TTYD and Super Paper Mario.
Also, the new code allows Mickey's Magical Mirror and Disney's Hide & Sneak to work (mostly) bug-free. I changed their inis to use bbox.
These changes have a slight cost in performance when bbox is being used (rare), mostly due to the new clipping algorithm.
Please check for any regressions or crashes.
2014-01-25 15:36:23 +00:00
|
|
|
u8 offset = bp.address & 2;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
Rewrote bounding box algotithm. Fixes issues 5967, 6154, 6196, 6211.
Instead of being vertex-based, it is now primitive (point, line or dissected triangle) based, with proper clipping.
Also, screen position is now calculated based on viewport values, instead of "guesstimating".
This fixes many graphical glitches in Paper Mario: TTYD and Super Paper Mario.
Also, the new code allows Mickey's Magical Mirror and Disney's Hide & Sneak to work (mostly) bug-free. I changed their inis to use bbox.
These changes have a slight cost in performance when bbox is being used (rare), mostly due to the new clipping algorithm.
Please check for any regressions or crashes.
2014-01-25 15:36:23 +00:00
|
|
|
PixelEngine::bbox[offset] = bp.newvalue & 0x3ff;
|
|
|
|
PixelEngine::bbox[offset | 1] = bp.newvalue >> 10;
|
|
|
|
PixelEngine::bbox_active = true;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2012-08-07 16:57:53 +00:00
|
|
|
case BPMEM_TEXINVALIDATE:
|
|
|
|
// TODO: Needs some restructuring in TextureCacheBase.
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_ZCOMPARE: // Set the Z-Compare and EFB pixel format
|
2012-01-01 20:46:02 +00:00
|
|
|
OnPixelFormatChange();
|
2014-03-10 11:30:55 +00:00
|
|
|
if (bp.changes & 7)
|
2013-04-24 13:21:54 +00:00
|
|
|
{
|
2013-01-17 23:44:35 +00:00
|
|
|
SetBlendMode(); // dual source could be activated by changing to PIXELFMT_RGBA6_Z24
|
2013-03-16 23:36:13 +00:00
|
|
|
g_renderer->SetColorMask(); // alpha writing needs to be disabled if the new pixel format doesn't have an alpha channel
|
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_MIPMAP_STRIDE: // MipMap Stride Channel
|
|
|
|
case BPMEM_COPYYSCALE: // Display Copy Y Scale
|
2014-05-20 15:28:08 +00:00
|
|
|
|
|
|
|
/* 24 RID
|
|
|
|
* 21 BC3 - Ind. Tex Stage 3 NTexCoord
|
|
|
|
* 18 BI3 - Ind. Tex Stage 3 NTexMap
|
|
|
|
* 15 BC2 - Ind. Tex Stage 2 NTexCoord
|
|
|
|
* 12 BI2 - Ind. Tex Stage 2 NTexMap
|
|
|
|
* 9 BC1 - Ind. Tex Stage 1 NTexCoord
|
|
|
|
* 6 BI1 - Ind. Tex Stage 1 NTexMap
|
|
|
|
* 3 BC0 - Ind. Tex Stage 0 NTexCoord
|
|
|
|
* 0 BI0 - Ind. Tex Stage 0 NTexMap */
|
|
|
|
case BPMEM_IREF:
|
|
|
|
|
|
|
|
case BPMEM_TEV_KSEL: // Texture Environment Swap Mode Table 0
|
|
|
|
case BPMEM_TEV_KSEL+1: // Texture Environment Swap Mode Table 1
|
|
|
|
case BPMEM_TEV_KSEL+2: // Texture Environment Swap Mode Table 2
|
|
|
|
case BPMEM_TEV_KSEL+3: // Texture Environment Swap Mode Table 3
|
|
|
|
case BPMEM_TEV_KSEL+4: // Texture Environment Swap Mode Table 4
|
|
|
|
case BPMEM_TEV_KSEL+5: // Texture Environment Swap Mode Table 5
|
|
|
|
case BPMEM_TEV_KSEL+6: // Texture Environment Swap Mode Table 6
|
|
|
|
case BPMEM_TEV_KSEL+7: // Texture Environment Swap Mode Table 7
|
2014-05-20 15:26:31 +00:00
|
|
|
|
|
|
|
/* This Register can be used to limit to which bits of BP registers is
|
|
|
|
* actually written to. The mask is only valid for the next BP write,
|
|
|
|
* and will reset itself afterwards. It's handled as a special case in
|
|
|
|
* LoadBPReg. */
|
|
|
|
case BPMEM_BP_MASK:
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
case BPMEM_IND_IMASK: // Index Mask ?
|
2009-07-26 09:52:35 +00:00
|
|
|
case BPMEM_REVBITS: // Always set to 0x0F when GX_InitRevBits() is called.
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2012-05-29 11:54:20 +00:00
|
|
|
case BPMEM_CLEAR_PIXEL_PERF:
|
|
|
|
// GXClearPixMetric writes 0xAAA here, Sunshine alternates this register between values 0x000 and 0xAAA
|
2014-03-10 11:30:55 +00:00
|
|
|
if (PerfQueryBase::ShouldEmulate())
|
2014-02-04 19:16:03 +00:00
|
|
|
g_perf_query->ResetQuery();
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-15 21:26:49 +00:00
|
|
|
|
2012-01-29 20:17:22 +00:00
|
|
|
case BPMEM_PRELOAD_ADDR:
|
|
|
|
case BPMEM_PRELOAD_TMEMEVEN:
|
|
|
|
case BPMEM_PRELOAD_TMEMODD: // Used when PRELOAD_MODE is set
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2012-01-29 20:17:22 +00:00
|
|
|
case BPMEM_PRELOAD_MODE: // Set to 0 when GX_TexModeSync() is called.
|
2012-08-07 16:57:53 +00:00
|
|
|
// if this is different from 0, manual TMEM management is used (GX_PreloadEntireTexture).
|
2012-01-29 20:17:22 +00:00
|
|
|
if (bp.newvalue != 0)
|
|
|
|
{
|
2013-01-10 14:12:21 +00:00
|
|
|
// TODO: Not quite sure if this is completely correct (likely not)
|
|
|
|
// NOTE: libogc's implementation of GX_PreloadEntireTexture seems flawed, so it's not necessarily a good reference for RE'ing this feature.
|
|
|
|
|
2012-01-29 20:17:22 +00:00
|
|
|
BPS_TmemConfig& tmem_cfg = bpmem.tmem_config;
|
2013-01-10 14:12:21 +00:00
|
|
|
u8* src_ptr = Memory::GetPointer(tmem_cfg.preload_addr << 5); // TODO: Should we add mask here on GC?
|
|
|
|
u32 size = tmem_cfg.preload_tile_info.count * TMEM_LINE_SIZE;
|
|
|
|
u32 tmem_addr_even = tmem_cfg.preload_tmem_even * TMEM_LINE_SIZE;
|
|
|
|
|
|
|
|
if (tmem_cfg.preload_tile_info.type != 3)
|
|
|
|
{
|
|
|
|
if (tmem_addr_even + size > TMEM_SIZE)
|
|
|
|
size = TMEM_SIZE - tmem_addr_even;
|
2012-03-23 11:10:48 +00:00
|
|
|
|
2013-01-10 14:12:21 +00:00
|
|
|
memcpy(texMem + tmem_addr_even, src_ptr, size);
|
|
|
|
}
|
|
|
|
else // RGBA8 tiles (and CI14, but that might just be stupid libogc!)
|
|
|
|
{
|
|
|
|
// AR and GB tiles are stored in separate TMEM banks => can't use a single memcpy for everything
|
|
|
|
u32 tmem_addr_odd = tmem_cfg.preload_tmem_odd * TMEM_LINE_SIZE;
|
2012-03-23 11:10:48 +00:00
|
|
|
|
2013-01-16 02:15:31 +00:00
|
|
|
for (u32 i = 0; i < tmem_cfg.preload_tile_info.count; ++i)
|
2013-01-10 14:12:21 +00:00
|
|
|
{
|
|
|
|
if (tmem_addr_even + TMEM_LINE_SIZE > TMEM_SIZE ||
|
2014-05-20 15:23:47 +00:00
|
|
|
tmem_addr_odd + TMEM_LINE_SIZE > TMEM_SIZE)
|
|
|
|
return;
|
2013-01-10 14:12:21 +00:00
|
|
|
|
|
|
|
memcpy(texMem + tmem_addr_even, src_ptr, TMEM_LINE_SIZE);
|
|
|
|
memcpy(texMem + tmem_addr_odd, src_ptr + TMEM_LINE_SIZE, TMEM_LINE_SIZE);
|
|
|
|
tmem_addr_even += TMEM_LINE_SIZE;
|
|
|
|
tmem_addr_odd += TMEM_LINE_SIZE;
|
|
|
|
src_ptr += TMEM_LINE_SIZE * 2;
|
|
|
|
}
|
|
|
|
}
|
2012-01-29 20:17:22 +00:00
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
|
|
|
default:
|
2009-07-26 09:52:35 +00:00
|
|
|
break;
|
2014-05-20 15:23:47 +00:00
|
|
|
}
|
2009-07-26 09:52:35 +00:00
|
|
|
|
2014-05-20 15:23:47 +00:00
|
|
|
switch (bp.address & 0xFC) // Texture sampler filter
|
|
|
|
{
|
|
|
|
// -------------------------
|
|
|
|
// Texture Environment Order
|
|
|
|
// -------------------------
|
|
|
|
case BPMEM_TREF:
|
|
|
|
case BPMEM_TREF+4:
|
|
|
|
return;
|
|
|
|
// ----------------------
|
|
|
|
// Set wrap size
|
|
|
|
// ----------------------
|
|
|
|
case BPMEM_SU_SSIZE:
|
|
|
|
case BPMEM_SU_TSIZE:
|
|
|
|
case BPMEM_SU_SSIZE+2:
|
|
|
|
case BPMEM_SU_TSIZE+2:
|
|
|
|
case BPMEM_SU_SSIZE+4:
|
|
|
|
case BPMEM_SU_TSIZE+4:
|
|
|
|
case BPMEM_SU_SSIZE+6:
|
|
|
|
case BPMEM_SU_TSIZE+6:
|
|
|
|
case BPMEM_SU_SSIZE+8:
|
|
|
|
case BPMEM_SU_TSIZE+8:
|
|
|
|
case BPMEM_SU_SSIZE+10:
|
|
|
|
case BPMEM_SU_TSIZE+10:
|
|
|
|
case BPMEM_SU_SSIZE+12:
|
|
|
|
case BPMEM_SU_TSIZE+12:
|
|
|
|
case BPMEM_SU_SSIZE+14:
|
|
|
|
case BPMEM_SU_TSIZE+14:
|
|
|
|
if (bp.changes)
|
|
|
|
PixelShaderManager::SetTexCoordChanged((bp.address - BPMEM_SU_SSIZE) >> 1);
|
|
|
|
return;
|
|
|
|
// ------------------------
|
|
|
|
// BPMEM_TX_SETMODE0 - (Texture lookup and filtering mode) LOD/BIAS Clamp, MaxAnsio, LODBIAS, DiagLoad, Min Filter, Mag Filter, Wrap T, S
|
|
|
|
// BPMEM_TX_SETMODE1 - (LOD Stuff) - Max LOD, Min LOD
|
|
|
|
// ------------------------
|
|
|
|
case BPMEM_TX_SETMODE0: // (0x90 for linear)
|
|
|
|
case BPMEM_TX_SETMODE0_4:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case BPMEM_TX_SETMODE1:
|
|
|
|
case BPMEM_TX_SETMODE1_4:
|
|
|
|
return;
|
|
|
|
// --------------------------------------------
|
|
|
|
// BPMEM_TX_SETIMAGE0 - Texture width, height, format
|
|
|
|
// BPMEM_TX_SETIMAGE1 - even LOD address in TMEM - Image Type, Cache Height, Cache Width, TMEM Offset
|
|
|
|
// BPMEM_TX_SETIMAGE2 - odd LOD address in TMEM - Cache Height, Cache Width, TMEM Offset
|
|
|
|
// BPMEM_TX_SETIMAGE3 - Address of Texture in main memory
|
|
|
|
// --------------------------------------------
|
|
|
|
case BPMEM_TX_SETIMAGE0:
|
|
|
|
case BPMEM_TX_SETIMAGE0_4:
|
|
|
|
case BPMEM_TX_SETIMAGE1:
|
|
|
|
case BPMEM_TX_SETIMAGE1_4:
|
|
|
|
case BPMEM_TX_SETIMAGE2:
|
|
|
|
case BPMEM_TX_SETIMAGE2_4:
|
|
|
|
case BPMEM_TX_SETIMAGE3:
|
|
|
|
case BPMEM_TX_SETIMAGE3_4:
|
|
|
|
return;
|
|
|
|
// -------------------------------
|
|
|
|
// Set a TLUT
|
|
|
|
// BPMEM_TX_SETTLUT - Format, TMEM Offset (offset of TLUT from start of TMEM high bank > > 5)
|
|
|
|
// -------------------------------
|
|
|
|
case BPMEM_TX_SETTLUT:
|
2014-06-02 06:26:24 +00:00
|
|
|
case BPMEM_TX_SETTLUT_4:
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// ---------------------------------------------------
|
|
|
|
// Set the TEV Color
|
|
|
|
// ---------------------------------------------------
|
|
|
|
case BPMEM_TEV_REGISTER_L: // Reg 1
|
|
|
|
case BPMEM_TEV_REGISTER_H:
|
|
|
|
case BPMEM_TEV_REGISTER_L+2: // Reg 2
|
|
|
|
case BPMEM_TEV_REGISTER_H+2:
|
|
|
|
case BPMEM_TEV_REGISTER_L+4: // Reg 3
|
|
|
|
case BPMEM_TEV_REGISTER_H+4:
|
|
|
|
case BPMEM_TEV_REGISTER_L+6: // Reg 4
|
|
|
|
case BPMEM_TEV_REGISTER_H+6:
|
|
|
|
// some games only send the _L part, so always update
|
|
|
|
// there actually are 2 register behind each of these
|
|
|
|
// addresses, selected by the type bit.
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2014-05-20 15:23:47 +00:00
|
|
|
// don't compare with changes!
|
|
|
|
int num = (bp.address >> 1) & 0x3;
|
|
|
|
if ((bp.address & 1) == 0)
|
|
|
|
PixelShaderManager::SetColorChanged(bpmem.tevregs[num].type_ra, num);
|
|
|
|
else
|
|
|
|
PixelShaderManager::SetColorChanged(bpmem.tevregs[num].type_bg, num);
|
2014-05-20 15:28:08 +00:00
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2014-05-20 15:23:47 +00:00
|
|
|
|
|
|
|
switch (bp.address & 0xF0)
|
|
|
|
{
|
|
|
|
// --------------
|
|
|
|
// Indirect Tev
|
|
|
|
// --------------
|
|
|
|
case BPMEM_IND_CMD:
|
|
|
|
case BPMEM_IND_CMD+1:
|
|
|
|
case BPMEM_IND_CMD+2:
|
|
|
|
case BPMEM_IND_CMD+3:
|
|
|
|
case BPMEM_IND_CMD+4:
|
|
|
|
case BPMEM_IND_CMD+5:
|
|
|
|
case BPMEM_IND_CMD+6:
|
|
|
|
case BPMEM_IND_CMD+7:
|
|
|
|
case BPMEM_IND_CMD+8:
|
|
|
|
case BPMEM_IND_CMD+9:
|
|
|
|
case BPMEM_IND_CMD+10:
|
|
|
|
case BPMEM_IND_CMD+11:
|
|
|
|
case BPMEM_IND_CMD+12:
|
|
|
|
case BPMEM_IND_CMD+13:
|
|
|
|
case BPMEM_IND_CMD+14:
|
|
|
|
case BPMEM_IND_CMD+15:
|
|
|
|
return;
|
|
|
|
// --------------------------------------------------
|
|
|
|
// Set Color/Alpha of a Tev
|
|
|
|
// BPMEM_TEV_COLOR_ENV - Dest, Shift, Clamp, Sub, Bias, Sel A, Sel B, Sel C, Sel D
|
|
|
|
// BPMEM_TEV_ALPHA_ENV - Dest, Shift, Clamp, Sub, Bias, Sel A, Sel B, Sel C, Sel D, T Swap, R Swap
|
|
|
|
// --------------------------------------------------
|
|
|
|
case BPMEM_TEV_COLOR_ENV: // Texture Environment 1
|
|
|
|
case BPMEM_TEV_ALPHA_ENV:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+2: // Texture Environment 2
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+2:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+4: // Texture Environment 3
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+4:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+6: // Texture Environment 4
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+6:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+8: // Texture Environment 5
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+8:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+10: // Texture Environment 6
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+10:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+12: // Texture Environment 7
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+12:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+14: // Texture Environment 8
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+14:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+16: // Texture Environment 9
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+16:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+18: // Texture Environment 10
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+18:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+20: // Texture Environment 11
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+20:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+22: // Texture Environment 12
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+22:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+24: // Texture Environment 13
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+24:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+26: // Texture Environment 14
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+26:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+28: // Texture Environment 15
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+28:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+30: // Texture Environment 16
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+30:
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN_LOG(VIDEO, "Unknown BP opcode: address = 0x%08x value = 0x%08x", bp.address, bp.newvalue);
|
2009-07-22 22:50:52 +00:00
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-05-03 20:36:29 +00:00
|
|
|
// Call browser: OpcodeDecoding.cpp ExecuteDisplayList > Decode() > LoadBPReg()
|
|
|
|
void LoadBPReg(u32 value0)
|
|
|
|
{
|
|
|
|
int regNum = value0 >> 24;
|
|
|
|
int oldval = ((u32*)&bpmem)[regNum];
|
|
|
|
int newval = (oldval & ~bpmem.bpMask) | (value0 & bpmem.bpMask);
|
|
|
|
int changes = (oldval ^ newval) & 0xFFFFFF;
|
|
|
|
|
|
|
|
BPCmd bp = {regNum, changes, newval};
|
|
|
|
|
|
|
|
// Reset the mask register if we're not trying to set it ourselves.
|
|
|
|
if (regNum != BPMEM_BP_MASK)
|
|
|
|
bpmem.bpMask = 0xFFFFFF;
|
|
|
|
|
|
|
|
BPWritten(bp);
|
|
|
|
}
|
|
|
|
|
2014-05-25 01:55:13 +00:00
|
|
|
void GetBPRegInfo(const u8* data, std::string* name, std::string* desc)
|
2014-05-03 20:36:29 +00:00
|
|
|
{
|
|
|
|
const char* no_yes[2] = { "No", "Yes" };
|
|
|
|
|
|
|
|
u32 cmddata = Common::swap32(*(u32*)data) & 0xFFFFFF;
|
|
|
|
switch (data[0])
|
|
|
|
{
|
|
|
|
// Macro to set the register name and make sure it was written correctly via compile time assertion
|
|
|
|
#define SetRegName(reg) \
|
2014-05-25 01:55:13 +00:00
|
|
|
*name = #reg; \
|
2014-05-03 20:36:29 +00:00
|
|
|
(void)(reg);
|
|
|
|
|
|
|
|
case BPMEM_GENMODE: // 0x00
|
|
|
|
SetRegName(BPMEM_GENMODE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_DISPLAYCOPYFILTER: // 0x01
|
|
|
|
// TODO: This is actually the sample pattern used for copies from an antialiased EFB
|
|
|
|
SetRegName(BPMEM_DISPLAYCOPYFILTER);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x02: // 0x02
|
|
|
|
case 0x03: // 0x03
|
|
|
|
case 0x04: // 0x04
|
|
|
|
// TODO: same as BPMEM_DISPLAYCOPYFILTER
|
|
|
|
break;
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_IND_MTXA: // 0x06
|
|
|
|
case BPMEM_IND_MTXA+3:
|
|
|
|
case BPMEM_IND_MTXA+6:
|
|
|
|
SetRegName(BPMEM_IND_MTXA);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_IND_MTXB: // 0x07
|
|
|
|
case BPMEM_IND_MTXB+3:
|
|
|
|
case BPMEM_IND_MTXB+6:
|
|
|
|
SetRegName(BPMEM_IND_MTXB);
|
|
|
|
// TODO: Descriptio
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_IND_MTXC: // 0x08
|
|
|
|
case BPMEM_IND_MTXC+3:
|
|
|
|
case BPMEM_IND_MTXC+6:
|
|
|
|
SetRegName(BPMEM_IND_MTXC);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_IND_IMASK: // 0x0F
|
|
|
|
SetRegName(BPMEM_IND_IMASK);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_IND_CMD: // 0x10
|
|
|
|
case BPMEM_IND_CMD+1:
|
|
|
|
case BPMEM_IND_CMD+2:
|
|
|
|
case BPMEM_IND_CMD+3:
|
|
|
|
case BPMEM_IND_CMD+4:
|
|
|
|
case BPMEM_IND_CMD+5:
|
|
|
|
case BPMEM_IND_CMD+6:
|
|
|
|
case BPMEM_IND_CMD+7:
|
|
|
|
case BPMEM_IND_CMD+8:
|
|
|
|
case BPMEM_IND_CMD+9:
|
|
|
|
case BPMEM_IND_CMD+10:
|
|
|
|
case BPMEM_IND_CMD+11:
|
|
|
|
case BPMEM_IND_CMD+12:
|
|
|
|
case BPMEM_IND_CMD+13:
|
|
|
|
case BPMEM_IND_CMD+14:
|
|
|
|
case BPMEM_IND_CMD+15:
|
|
|
|
SetRegName(BPMEM_IND_CMD);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_SCISSORTL: // 0x20
|
|
|
|
SetRegName(BPMEM_SCISSORTL);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_SCISSORBR: // 0x21
|
|
|
|
SetRegName(BPMEM_SCISSORBR);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_LINEPTWIDTH: // 0x22
|
|
|
|
SetRegName(BPMEM_LINEPTWIDTH);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PERF0_TRI: // 0x23
|
|
|
|
SetRegName(BPMEM_PERF0_TRI);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PERF0_QUAD: // 0x24
|
|
|
|
SetRegName(BPMEM_PERF0_QUAD);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_RAS1_SS0: // 0x25
|
|
|
|
SetRegName(BPMEM_RAS1_SS0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_RAS1_SS1: // 0x26
|
|
|
|
SetRegName(BPMEM_RAS1_SS1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_IREF: // 0x27
|
|
|
|
SetRegName(BPMEM_IREF);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TREF: // 0x28
|
|
|
|
case BPMEM_TREF+1:
|
|
|
|
case BPMEM_TREF+2:
|
|
|
|
case BPMEM_TREF+3:
|
|
|
|
case BPMEM_TREF+4:
|
|
|
|
case BPMEM_TREF+5:
|
|
|
|
case BPMEM_TREF+6:
|
|
|
|
case BPMEM_TREF+7:
|
|
|
|
SetRegName(BPMEM_TREF);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_SU_SSIZE: // 0x30
|
|
|
|
case BPMEM_SU_SSIZE+2:
|
|
|
|
case BPMEM_SU_SSIZE+4:
|
|
|
|
case BPMEM_SU_SSIZE+6:
|
|
|
|
case BPMEM_SU_SSIZE+8:
|
|
|
|
case BPMEM_SU_SSIZE+10:
|
|
|
|
case BPMEM_SU_SSIZE+12:
|
|
|
|
case BPMEM_SU_SSIZE+14:
|
|
|
|
SetRegName(BPMEM_SU_SSIZE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_SU_TSIZE: // 0x31
|
|
|
|
case BPMEM_SU_TSIZE+2:
|
|
|
|
case BPMEM_SU_TSIZE+4:
|
|
|
|
case BPMEM_SU_TSIZE+6:
|
|
|
|
case BPMEM_SU_TSIZE+8:
|
|
|
|
case BPMEM_SU_TSIZE+10:
|
|
|
|
case BPMEM_SU_TSIZE+12:
|
|
|
|
case BPMEM_SU_TSIZE+14:
|
|
|
|
SetRegName(BPMEM_SU_TSIZE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_ZMODE: // 0x40
|
|
|
|
SetRegName(BPMEM_ZMODE);
|
|
|
|
// TODO: Description
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_BLENDMODE: // 0x41
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_BLENDMODE);
|
|
|
|
BlendMode mode; mode.hex = cmddata;
|
|
|
|
const char* dstfactors[] = { "0", "1", "src_color", "1-src_color", "src_alpha", "1-src_alpha", "dst_alpha", "1-dst_alpha" };
|
|
|
|
const char* srcfactors[] = { "0", "1", "dst_color", "1-dst_color", "src_alpha", "1-src_alpha", "dst_alpha", "1-dst_alpha" };
|
|
|
|
const char* logicmodes[] = { "0", "s & d", "s & ~d", "s", "~s & d", "d", "s ^ d", "s | d", "~(s | d)", "~(s ^ d)", "~d", "s | ~d", "~s", "~s | d", "~(s & d)", "1" };
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Enable: %s\n"
|
|
|
|
"Logic ops: %s\n"
|
|
|
|
"Dither: %s\n"
|
|
|
|
"Color write: %s\n"
|
|
|
|
"Alpha write: %s\n"
|
|
|
|
"Dest factor: %s\n"
|
|
|
|
"Source factor: %s\n"
|
|
|
|
"Subtract: %s\n"
|
|
|
|
"Logic mode: %s\n",
|
|
|
|
no_yes[mode.blendenable], no_yes[mode.logicopenable], no_yes[mode.dither],
|
|
|
|
no_yes[mode.colorupdate], no_yes[mode.alphaupdate], dstfactors[mode.dstfactor],
|
|
|
|
srcfactors[mode.srcfactor], no_yes[mode.subtract], logicmodes[mode.logicmode]);
|
2014-05-03 20:36:29 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_CONSTANTALPHA: // 0x42
|
|
|
|
SetRegName(BPMEM_CONSTANTALPHA);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_ZCOMPARE: // 0x43
|
2014-05-03 20:36:29 +00:00
|
|
|
{
|
|
|
|
SetRegName(BPMEM_ZCOMPARE);
|
|
|
|
PEControl config; config.hex = cmddata;
|
|
|
|
const char* pixel_formats[] = { "RGB8_Z24", "RGBA6_Z24", "RGB565_Z16", "Z24", "Y8", "U8", "V8", "YUV420" };
|
|
|
|
const char* zformats[] = { "linear", "compressed (near)", "compressed (mid)", "compressed (far)", "inv linear", "compressed (inv near)", "compressed (inv mid)", "compressed (inv far)" };
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("EFB pixel format: %s\n"
|
|
|
|
"Depth format: %s\n"
|
|
|
|
"Early depth test: %s\n",
|
|
|
|
pixel_formats[config.pixel_format], zformats[config.zformat], no_yes[config.early_ztest]);
|
2014-05-03 20:36:29 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_FIELDMASK: // 0x44
|
|
|
|
SetRegName(BPMEM_FIELDMASK);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_SETDRAWDONE: // 0x45
|
|
|
|
SetRegName(BPMEM_SETDRAWDONE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_BUSCLOCK0: // 0x46
|
|
|
|
SetRegName(BPMEM_BUSCLOCK0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PE_TOKEN_ID: // 0x47
|
|
|
|
SetRegName(BPMEM_PE_TOKEN_ID);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PE_TOKEN_INT_ID: // 0x48
|
|
|
|
SetRegName(BPMEM_PE_TOKEN_INT_ID);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_EFB_TL: // 0x49
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_EFB_TL);
|
|
|
|
X10Y10 left_top; left_top.hex = cmddata;
|
|
|
|
*desc = StringFromFormat("Left: %d\nTop: %d", left_top.x, left_top.y);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-05-03 20:36:29 +00:00
|
|
|
case BPMEM_EFB_BR: // 0x4A
|
|
|
|
{
|
|
|
|
// TODO: Misleading name, should be BPMEM_EFB_WH instead
|
|
|
|
SetRegName(BPMEM_EFB_BR);
|
|
|
|
X10Y10 width_height; width_height.hex = cmddata;
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Width: %d\nHeight: %d", width_height.x+1, width_height.y+1);
|
2014-05-03 20:36:29 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_EFB_ADDR: // 0x4B
|
|
|
|
SetRegName(BPMEM_EFB_ADDR);
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Target address (32 byte aligned): 0x%06X", cmddata << 5);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_MIPMAP_STRIDE: // 0x4D
|
|
|
|
SetRegName(BPMEM_MIPMAP_STRIDE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
2014-05-03 20:36:29 +00:00
|
|
|
case BPMEM_COPYYSCALE: // 0x4E
|
|
|
|
SetRegName(BPMEM_COPYYSCALE);
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Scaling factor (XFB copy only): 0x%X (%f or inverted %f)", cmddata, (float)cmddata/256.f, 256.f/(float)cmddata);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_CLEAR_AR: // 0x4F
|
|
|
|
SetRegName(BPMEM_CLEAR_AR);
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Alpha: 0x%02X\nRed: 0x%02X", (cmddata&0xFF00)>>8, cmddata&0xFF);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_CLEAR_GB: // 0x50
|
|
|
|
SetRegName(BPMEM_CLEAR_GB);
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Green: 0x%02X\nBlue: 0x%02X", (cmddata&0xFF00)>>8, cmddata&0xFF);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_CLEAR_Z: // 0x51
|
|
|
|
SetRegName(BPMEM_CLEAR_Z);
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Z value: 0x%06X", cmddata);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TRIGGER_EFB_COPY: // 0x52
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_TRIGGER_EFB_COPY);
|
|
|
|
UPE_Copy copy; copy.Hex = cmddata;
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Clamping: %s\n"
|
|
|
|
"Converting from RGB to YUV: %s\n"
|
|
|
|
"Target pixel format: 0x%X\n"
|
|
|
|
"Gamma correction: %s\n"
|
|
|
|
"Mipmap filter: %s\n"
|
|
|
|
"Vertical scaling: %s\n"
|
|
|
|
"Clear: %s\n"
|
|
|
|
"Frame to field: 0x%01X\n"
|
|
|
|
"Copy to XFB: %s\n"
|
|
|
|
"Intensity format: %s\n"
|
|
|
|
"Automatic color conversion: %s",
|
|
|
|
(copy.clamp0 && copy.clamp1) ? "Top and Bottom" : (copy.clamp0) ? "Top only" : (copy.clamp1) ? "Bottom only" : "None",
|
|
|
|
no_yes[copy.yuv],
|
|
|
|
copy.tp_realFormat(),
|
|
|
|
(copy.gamma==0)?"1.0":(copy.gamma==1)?"1.7":(copy.gamma==2)?"2.2":"Invalid value 0x3?",
|
|
|
|
no_yes[copy.half_scale],
|
|
|
|
no_yes[copy.scale_invert],
|
|
|
|
no_yes[copy.clear],
|
|
|
|
(u32)copy.frame_to_field,
|
|
|
|
no_yes[copy.copy_to_xfb],
|
|
|
|
no_yes[copy.intensity_fmt],
|
|
|
|
no_yes[copy.auto_conv]);
|
2014-05-03 20:36:29 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_COPYFILTER0: // 0x53
|
|
|
|
SetRegName(BPMEM_COPYFILTER0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_COPYFILTER1: // 0x54
|
|
|
|
SetRegName(BPMEM_COPYFILTER1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_CLEARBBOX1: // 0x55
|
|
|
|
SetRegName(BPMEM_CLEARBBOX1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_CLEARBBOX2: // 0x56
|
|
|
|
SetRegName(BPMEM_CLEARBBOX2);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_CLEAR_PIXEL_PERF: // 0x57
|
|
|
|
SetRegName(BPMEM_CLEAR_PIXEL_PERF);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_REVBITS: // 0x58
|
|
|
|
SetRegName(BPMEM_REVBITS);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_SCISSOROFFSET: // 0x59
|
|
|
|
SetRegName(BPMEM_SCISSOROFFSET);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PRELOAD_ADDR: // 0x60
|
|
|
|
SetRegName(BPMEM_PRELOAD_ADDR);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PRELOAD_TMEMEVEN: // 0x61
|
|
|
|
SetRegName(BPMEM_PRELOAD_TMEMEVEN);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PRELOAD_TMEMODD: // 0x62
|
|
|
|
SetRegName(BPMEM_PRELOAD_TMEMODD);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PRELOAD_MODE: // 0x63
|
|
|
|
SetRegName(BPMEM_PRELOAD_MODE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_LOADTLUT0: // 0x64
|
|
|
|
SetRegName(BPMEM_LOADTLUT0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_LOADTLUT1: // 0x65
|
|
|
|
SetRegName(BPMEM_LOADTLUT1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TEXINVALIDATE: // 0x66
|
|
|
|
SetRegName(BPMEM_TEXINVALIDATE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_PERF1: // 0x67
|
|
|
|
SetRegName(BPMEM_PERF1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FIELDMODE: // 0x68
|
|
|
|
SetRegName(BPMEM_FIELDMODE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_BUSCLOCK1: // 0x69
|
|
|
|
SetRegName(BPMEM_BUSCLOCK1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TX_SETMODE0: // 0x80
|
|
|
|
case BPMEM_TX_SETMODE0+1:
|
|
|
|
case BPMEM_TX_SETMODE0+2:
|
|
|
|
case BPMEM_TX_SETMODE0+3:
|
|
|
|
SetRegName(BPMEM_TX_SETMODE0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TX_SETMODE1: // 0x84
|
|
|
|
case BPMEM_TX_SETMODE1+1:
|
|
|
|
case BPMEM_TX_SETMODE1+2:
|
|
|
|
case BPMEM_TX_SETMODE1+3:
|
|
|
|
SetRegName(BPMEM_TX_SETMODE1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TX_SETIMAGE0: // 0x88
|
|
|
|
case BPMEM_TX_SETIMAGE0+1:
|
|
|
|
case BPMEM_TX_SETIMAGE0+2:
|
|
|
|
case BPMEM_TX_SETIMAGE0+3:
|
|
|
|
case BPMEM_TX_SETIMAGE0_4: // 0xA8
|
|
|
|
case BPMEM_TX_SETIMAGE0_4+1:
|
|
|
|
case BPMEM_TX_SETIMAGE0_4+2:
|
|
|
|
case BPMEM_TX_SETIMAGE0_4+3:
|
|
|
|
SetRegName(BPMEM_TX_SETIMAGE0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TX_SETIMAGE1: // 0x8C
|
|
|
|
case BPMEM_TX_SETIMAGE1+1:
|
|
|
|
case BPMEM_TX_SETIMAGE1+2:
|
|
|
|
case BPMEM_TX_SETIMAGE1+3:
|
|
|
|
case BPMEM_TX_SETIMAGE1_4: // 0xAC
|
|
|
|
case BPMEM_TX_SETIMAGE1_4+1:
|
|
|
|
case BPMEM_TX_SETIMAGE1_4+2:
|
|
|
|
case BPMEM_TX_SETIMAGE1_4+3:
|
|
|
|
SetRegName(BPMEM_TX_SETIMAGE1);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TX_SETIMAGE2: // 0x90
|
|
|
|
case BPMEM_TX_SETIMAGE2+1:
|
|
|
|
case BPMEM_TX_SETIMAGE2+2:
|
|
|
|
case BPMEM_TX_SETIMAGE2+3:
|
|
|
|
case BPMEM_TX_SETIMAGE2_4: // 0xB0
|
|
|
|
case BPMEM_TX_SETIMAGE2_4+1:
|
|
|
|
case BPMEM_TX_SETIMAGE2_4+2:
|
|
|
|
case BPMEM_TX_SETIMAGE2_4+3:
|
|
|
|
SetRegName(BPMEM_TX_SETIMAGE2);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
2014-05-03 20:36:29 +00:00
|
|
|
case BPMEM_TX_SETIMAGE3: // 0x94
|
|
|
|
case BPMEM_TX_SETIMAGE3+1:
|
|
|
|
case BPMEM_TX_SETIMAGE3+2:
|
|
|
|
case BPMEM_TX_SETIMAGE3+3:
|
|
|
|
case BPMEM_TX_SETIMAGE3_4: // 0xB4
|
|
|
|
case BPMEM_TX_SETIMAGE3_4+1:
|
|
|
|
case BPMEM_TX_SETIMAGE3_4+2:
|
|
|
|
case BPMEM_TX_SETIMAGE3_4+3:
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_TX_SETIMAGE3);
|
|
|
|
TexImage3 teximg; teximg.hex = cmddata;
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Source address (32 byte aligned): 0x%06X", teximg.image_base << 5);
|
2014-05-03 20:36:29 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_TX_SETTLUT: // 0x98
|
|
|
|
case BPMEM_TX_SETTLUT+1:
|
|
|
|
case BPMEM_TX_SETTLUT+2:
|
|
|
|
case BPMEM_TX_SETTLUT+3:
|
2014-06-02 06:26:24 +00:00
|
|
|
case BPMEM_TX_SETTLUT_4: // 0xB8
|
|
|
|
case BPMEM_TX_SETTLUT_4+1:
|
|
|
|
case BPMEM_TX_SETTLUT_4+2:
|
|
|
|
case BPMEM_TX_SETTLUT_4+3:
|
2014-06-02 05:51:52 +00:00
|
|
|
SetRegName(BPMEM_TX_SETTLUT);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
2014-05-03 20:36:29 +00:00
|
|
|
case BPMEM_TEV_COLOR_ENV: // 0xC0
|
|
|
|
case BPMEM_TEV_COLOR_ENV+2:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+4:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+8:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+10:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+12:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+14:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+16:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+18:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+20:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+22:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+24:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+26:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+28:
|
|
|
|
case BPMEM_TEV_COLOR_ENV+30:
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_TEV_COLOR_ENV);
|
|
|
|
TevStageCombiner::ColorCombiner cc; cc.hex = cmddata;
|
|
|
|
const char* tevin[] =
|
|
|
|
{
|
|
|
|
"prev.rgb", "prev.aaa",
|
|
|
|
"c0.rgb", "c0.aaa",
|
|
|
|
"c1.rgb", "c1.aaa",
|
|
|
|
"c2.rgb", "c2.aaa",
|
|
|
|
"tex.rgb", "tex.aaa",
|
|
|
|
"ras.rgb", "ras.aaa",
|
|
|
|
"ONE", "HALF", "konst.rgb", "ZERO",
|
|
|
|
};
|
|
|
|
const char* tevbias[] = { "0", "+0.5", "-0.5", "compare" };
|
|
|
|
const char* tevop[] = { "add", "sub" };
|
|
|
|
const char* tevscale[] = { "1", "2", "4", "0.5" };
|
|
|
|
const char* tevout[] = { "prev.rgb", "c0.rgb", "c1.rgb", "c2.rgb" };
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Tev stage: %d\n"
|
|
|
|
"a: %s\n"
|
|
|
|
"b: %s\n"
|
|
|
|
"c: %s\n"
|
|
|
|
"d: %s\n"
|
|
|
|
"Bias: %s\n"
|
|
|
|
"Op: %s\n"
|
|
|
|
"Clamp: %s\n"
|
|
|
|
"Scale factor: %s\n"
|
|
|
|
"Dest: %s\n",
|
|
|
|
(data[0] - BPMEM_TEV_COLOR_ENV)/2, tevin[cc.a], tevin[cc.b], tevin[cc.c], tevin[cc.d],
|
|
|
|
tevbias[cc.bias], tevop[cc.op], no_yes[cc.clamp], tevscale[cc.shift], tevout[cc.dest]);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BPMEM_TEV_ALPHA_ENV: // 0xC1
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+2:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+4:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+6:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+8:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+10:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+12:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+14:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+16:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+18:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+20:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+22:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+24:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+26:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+28:
|
|
|
|
case BPMEM_TEV_ALPHA_ENV+30:
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_TEV_ALPHA_ENV);
|
|
|
|
TevStageCombiner::AlphaCombiner ac; ac.hex = cmddata;
|
|
|
|
const char* tevin[] =
|
|
|
|
{
|
|
|
|
"prev", "c0", "c1", "c2",
|
|
|
|
"tex", "ras", "konst", "ZERO",
|
|
|
|
};
|
|
|
|
const char* tevbias[] = { "0", "+0.5", "-0.5", "compare" };
|
|
|
|
const char* tevop[] = { "add", "sub" };
|
|
|
|
const char* tevscale[] = { "1", "2", "4", "0.5" };
|
|
|
|
const char* tevout[] = { "prev", "c0", "c1", "c2" };
|
2014-05-25 01:55:13 +00:00
|
|
|
*desc = StringFromFormat("Tev stage: %d\n"
|
|
|
|
"a: %s\n"
|
|
|
|
"b: %s\n"
|
|
|
|
"c: %s\n"
|
|
|
|
"d: %s\n"
|
|
|
|
"Bias: %s\n"
|
|
|
|
"Op: %s\n"
|
|
|
|
"Clamp: %s\n"
|
|
|
|
"Scale factor: %s\n"
|
|
|
|
"Dest: %s\n"
|
|
|
|
"Ras sel: %d\n"
|
|
|
|
"Tex sel: %d\n",
|
|
|
|
(data[0] - BPMEM_TEV_ALPHA_ENV)/2, tevin[ac.a], tevin[ac.b], tevin[ac.c], tevin[ac.d],
|
|
|
|
tevbias[ac.bias], tevop[ac.op], no_yes[ac.clamp], tevscale[ac.shift], tevout[ac.dest],
|
|
|
|
ac.rswap, ac.tswap);
|
2014-05-03 20:36:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-06-02 05:51:52 +00:00
|
|
|
case BPMEM_TEV_REGISTER_L: // 0xE0
|
|
|
|
case BPMEM_TEV_REGISTER_L+2:
|
|
|
|
case BPMEM_TEV_REGISTER_L+4:
|
|
|
|
case BPMEM_TEV_REGISTER_L+6:
|
|
|
|
SetRegName(BPMEM_TEV_REGISTER_L);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TEV_REGISTER_H: // 0xE1
|
|
|
|
case BPMEM_TEV_REGISTER_H+2:
|
|
|
|
case BPMEM_TEV_REGISTER_H+4:
|
|
|
|
case BPMEM_TEV_REGISTER_H+6:
|
|
|
|
SetRegName(BPMEM_TEV_REGISTER_H);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FOGRANGE: // 0xE8
|
|
|
|
case BPMEM_FOGRANGE+1:
|
|
|
|
case BPMEM_FOGRANGE+2:
|
|
|
|
case BPMEM_FOGRANGE+3:
|
|
|
|
case BPMEM_FOGRANGE+4:
|
|
|
|
case BPMEM_FOGRANGE+5:
|
|
|
|
SetRegName(BPMEM_FOGRANGE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FOGPARAM0: // 0xEE
|
|
|
|
SetRegName(BPMEM_FOGPARAM0);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FOGBMAGNITUDE: // 0xEF
|
|
|
|
SetRegName(BPMEM_FOGBMAGNITUDE);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FOGBEXPONENT: // 0xF0
|
|
|
|
SetRegName(BPMEM_FOGBEXPONENT);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FOGPARAM3: // 0xF1
|
|
|
|
SetRegName(BPMEM_FOGPARAM3);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_FOGCOLOR: // 0xF2
|
|
|
|
SetRegName(BPMEM_FOGCOLOR);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_ALPHACOMPARE: // 0xF3
|
|
|
|
{
|
|
|
|
SetRegName(BPMEM_ALPHACOMPARE);
|
|
|
|
AlphaTest test; test.hex = cmddata;
|
|
|
|
const char* functions[] = { "NEVER", "LESS", "EQUAL", "LEQUAL", "GREATER", "NEQUAL", "GEQUAL", "ALWAYS" };
|
|
|
|
const char* logic[] = { "AND", "OR", "XOR", "XNOR" };
|
|
|
|
*desc = StringFromFormat("Test 1: %s (ref: %#02x)\n"
|
|
|
|
"Test 2: %s (ref: %#02x)\n"
|
|
|
|
"Logic: %s\n",
|
|
|
|
functions[test.comp0], (int)test.ref0, functions[test.comp1], (int)test.ref1, logic[test.logic]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BPMEM_BIAS: // 0xF4
|
|
|
|
SetRegName(BPMEM_BIAS);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_ZTEX2: // 0xF5
|
|
|
|
SetRegName(BPMEM_ZTEX2);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BPMEM_TEV_KSEL: // 0xF6
|
|
|
|
case BPMEM_TEV_KSEL+1:
|
|
|
|
case BPMEM_TEV_KSEL+2:
|
|
|
|
case BPMEM_TEV_KSEL+3:
|
|
|
|
case BPMEM_TEV_KSEL+4:
|
|
|
|
case BPMEM_TEV_KSEL+5:
|
|
|
|
case BPMEM_TEV_KSEL+6:
|
|
|
|
case BPMEM_TEV_KSEL+7:
|
|
|
|
SetRegName(BPMEM_TEV_KSEL);
|
|
|
|
// TODO: Description
|
|
|
|
break;
|
2014-05-03 20:36:29 +00:00
|
|
|
|
|
|
|
#undef SetRegName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-01 20:46:02 +00:00
|
|
|
// Called when loading a saved state.
|
|
|
|
void BPReload()
|
|
|
|
{
|
2012-12-23 12:32:23 +00:00
|
|
|
// restore anything that goes straight to the renderer.
|
|
|
|
// let's not risk actually replaying any writes.
|
|
|
|
// note that PixelShaderManager is already covered since it has its own DoState.
|
|
|
|
SetGenerationMode();
|
|
|
|
SetScissor();
|
|
|
|
SetLineWidth();
|
|
|
|
SetDepthMode();
|
|
|
|
SetLogicOpMode();
|
|
|
|
SetDitherMode();
|
|
|
|
SetBlendMode();
|
|
|
|
SetColorMask();
|
|
|
|
OnPixelFormatChange();
|
2012-01-01 20:46:02 +00:00
|
|
|
}
|