2008-07-17 21:09:18 +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/
|
|
|
|
|
|
|
|
#include "Globals.h"
|
2008-08-30 22:06:53 +00:00
|
|
|
#include "Profiler.h"
|
2008-07-17 21:09:18 +00:00
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
#include <Cg/cg.h>
|
|
|
|
#include <Cg/cgGL.h>
|
|
|
|
|
2008-07-17 21:09:18 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
2008-10-17 21:05:23 +00:00
|
|
|
#include "ImageWrite.h"
|
2008-07-17 21:09:18 +00:00
|
|
|
#include "Common.h"
|
2008-07-18 19:33:55 +00:00
|
|
|
#include "Render.h"
|
2008-07-17 21:09:18 +00:00
|
|
|
#include "VertexShader.h"
|
|
|
|
#include "PixelShaderManager.h"
|
|
|
|
#include "PixelShader.h"
|
|
|
|
|
|
|
|
PixelShaderMngr::PSCache PixelShaderMngr::pshaders;
|
|
|
|
FRAGMENTSHADER* PixelShaderMngr::pShaderLast = NULL;
|
|
|
|
PixelShaderMngr::PIXELSHADERUID PixelShaderMngr::s_curuid;
|
|
|
|
|
|
|
|
static int s_nMaxPixelInstructions;
|
|
|
|
static int s_nColorsChanged[2]; // 0 - regular colors, 1 - k colors
|
2008-10-02 03:26:08 +00:00
|
|
|
static int s_nIndTexMtxChanged = 0;
|
2008-07-17 21:09:18 +00:00
|
|
|
static bool s_bAlphaChanged, s_bZBiasChanged, s_bIndTexScaleChanged;
|
2008-08-27 12:17:47 +00:00
|
|
|
static float lastRGBAfull[2][4][4];
|
2008-10-02 03:26:08 +00:00
|
|
|
static u8 s_nTexDimsChanged;
|
2008-07-17 21:09:18 +00:00
|
|
|
static u32 lastAlpha = 0;
|
|
|
|
static u32 lastTexDims[8]={0};
|
|
|
|
static u32 lastZBias = 0;
|
|
|
|
|
|
|
|
// lower byte describes if a texture is nonpow2 or pow2
|
|
|
|
// next byte describes whether the repeat wrap mode is enabled for the s channel
|
|
|
|
// next byte is for t channel
|
|
|
|
u32 s_texturemask = 0;
|
|
|
|
|
|
|
|
static int maptocoord[8]; // indexed by texture map, holds the texcoord associated with the map
|
|
|
|
static u32 maptocoord_mask=0;
|
|
|
|
|
|
|
|
static GLuint s_ColorMatrixProgram=0;
|
|
|
|
|
2008-07-18 19:33:55 +00:00
|
|
|
void PixelShaderMngr::SetPSConstant4f(int const_number, float f1, float f2, float f3, float f4) {
|
|
|
|
glProgramEnvParameter4fARB(GL_FRAGMENT_PROGRAM_ARB, const_number, f1, f2, f3, f4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetPSConstant4fv(int const_number, const float *f) {
|
|
|
|
glProgramEnvParameter4fvARB(GL_FRAGMENT_PROGRAM_ARB, const_number, f);
|
|
|
|
}
|
|
|
|
|
2008-07-17 21:09:18 +00:00
|
|
|
void PixelShaderMngr::Init()
|
|
|
|
{
|
|
|
|
s_nColorsChanged[0] = s_nColorsChanged[1] = 0;
|
2008-10-02 03:26:08 +00:00
|
|
|
s_nTexDimsChanged = 0;
|
2008-07-17 21:09:18 +00:00
|
|
|
s_nIndTexMtxChanged = 15;
|
|
|
|
s_bAlphaChanged = s_bZBiasChanged = s_bIndTexScaleChanged = true;
|
|
|
|
GL_REPORT_ERRORD();
|
2008-10-17 11:30:14 +00:00
|
|
|
for (int i = 0; i < 8; ++i) maptocoord[i] = -1;
|
2008-07-17 21:09:18 +00:00
|
|
|
maptocoord_mask = 0;
|
|
|
|
memset(lastRGBAfull, 0, sizeof(lastRGBAfull));
|
|
|
|
|
2008-08-06 21:07:31 +00:00
|
|
|
glGetProgramivARB(GL_FRAGMENT_PROGRAM_ARB, GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB, (GLint *)&s_nMaxPixelInstructions);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
int maxinst, maxattribs;
|
2008-08-06 21:07:31 +00:00
|
|
|
glGetProgramivARB(GL_FRAGMENT_PROGRAM_ARB, GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB, (GLint *)&maxinst);
|
|
|
|
glGetProgramivARB(GL_FRAGMENT_PROGRAM_ARB, GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB, (GLint *)&maxattribs);
|
2008-07-17 21:09:18 +00:00
|
|
|
ERROR_LOG("pixel max_alu=%d, max_inst=%d, max_attrib=%d\n", s_nMaxPixelInstructions, maxinst, maxattribs);
|
|
|
|
|
|
|
|
char pmatrixprog[1024];
|
|
|
|
sprintf(pmatrixprog, "!!ARBfp1.0"
|
|
|
|
"TEMP R0;\n"
|
|
|
|
"TEMP R1;\n"
|
|
|
|
"TEX R0, fragment.texcoord[0], texture[0], RECT;\n"
|
|
|
|
"DP4 R1.w, R0, program.env[%d];\n"
|
|
|
|
"DP4 R1.z, R0, program.env[%d];\n"
|
|
|
|
"DP4 R1.x, R0, program.env[%d];\n"
|
|
|
|
"DP4 R1.y, R0, program.env[%d];\n"
|
|
|
|
"ADD result.color, R1, program.env[%d];\n"
|
|
|
|
"END\n", C_COLORMATRIX+3, C_COLORMATRIX+2, C_COLORMATRIX, C_COLORMATRIX+1, C_COLORMATRIX+4);
|
2008-10-17 11:30:14 +00:00
|
|
|
glGenProgramsARB(1, &s_ColorMatrixProgram);
|
|
|
|
glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, s_ColorMatrixProgram);
|
|
|
|
glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, (GLsizei)strlen(pmatrixprog), pmatrixprog);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
GLenum err = GL_NO_ERROR;
|
2008-07-17 21:09:18 +00:00
|
|
|
GL_REPORT_ERROR();
|
2008-10-17 11:30:14 +00:00
|
|
|
if (err != GL_NO_ERROR) {
|
2008-07-17 21:09:18 +00:00
|
|
|
ERROR_LOG("Failed to create color matrix fragment program\n");
|
2008-08-16 10:49:08 +00:00
|
|
|
glDeleteProgramsARB(1, &s_ColorMatrixProgram);
|
|
|
|
s_ColorMatrixProgram = 0;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::Shutdown()
|
|
|
|
{
|
2008-08-16 10:49:08 +00:00
|
|
|
glDeleteProgramsARB(1, &s_ColorMatrixProgram);
|
|
|
|
s_ColorMatrixProgram = 0;
|
2008-07-17 21:09:18 +00:00
|
|
|
PSCache::iterator iter = pshaders.begin();
|
2008-08-16 10:49:08 +00:00
|
|
|
for (; iter != pshaders.end(); iter++)
|
2008-07-17 21:09:18 +00:00
|
|
|
iter->second.Destroy();
|
|
|
|
pshaders.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
FRAGMENTSHADER* PixelShaderMngr::GetShader()
|
|
|
|
{
|
|
|
|
DVSTARTPROFILE();
|
|
|
|
PIXELSHADERUID uid;
|
|
|
|
GetPixelShaderId(uid);
|
|
|
|
|
|
|
|
PSCache::iterator iter = pshaders.find(uid);
|
|
|
|
|
|
|
|
if (iter != pshaders.end()) {
|
2008-08-08 19:46:04 +00:00
|
|
|
iter->second.frameCount = frameCount;
|
2008-07-17 21:09:18 +00:00
|
|
|
PSCacheEntry &entry = iter->second;
|
|
|
|
if (&entry.shader != pShaderLast)
|
|
|
|
{
|
|
|
|
pShaderLast = &entry.shader;
|
|
|
|
}
|
|
|
|
return pShaderLast;
|
|
|
|
}
|
|
|
|
|
|
|
|
PSCacheEntry& newentry = pshaders[uid];
|
2008-10-21 20:34:56 +00:00
|
|
|
char *code = GeneratePixelShader(s_texturemask,
|
2008-07-18 19:33:55 +00:00
|
|
|
Renderer::GetZBufferTarget() != 0,
|
|
|
|
Renderer::GetRenderMode() != Renderer::RM_Normal);
|
2008-10-02 03:26:08 +00:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
2008-10-17 11:30:14 +00:00
|
|
|
if (g_Config.iLog & CONF_SAVESHADERS && code) {
|
2008-10-02 03:26:08 +00:00
|
|
|
static int counter = 0;
|
|
|
|
char szTemp[MAX_PATH];
|
|
|
|
sprintf(szTemp, "%s/ps_%04i.txt", g_Config.texDumpPath, counter++);
|
|
|
|
|
|
|
|
SaveData(szTemp, code);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// printf("Compiling pixel shader. size = %i\n", strlen(code));
|
2008-07-18 19:33:55 +00:00
|
|
|
if (!code || !CompilePixelShader(newentry.shader, code)) {
|
2008-07-17 21:09:18 +00:00
|
|
|
ERROR_LOG("failed to create pixel shader\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-02 03:26:08 +00:00
|
|
|
|
2008-07-17 21:09:18 +00:00
|
|
|
//Make an entry in the table
|
2008-08-08 19:46:04 +00:00
|
|
|
newentry.frameCount = frameCount;
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
pShaderLast = &newentry.shader;
|
|
|
|
INCSTAT(stats.numPixelShadersCreated);
|
|
|
|
SETSTAT(stats.numPixelShadersAlive, pshaders.size());
|
|
|
|
return pShaderLast;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::Cleanup()
|
|
|
|
{
|
|
|
|
PSCache::iterator iter = pshaders.begin();
|
2008-10-17 11:30:14 +00:00
|
|
|
while (iter != pshaders.end()) {
|
2008-07-17 21:09:18 +00:00
|
|
|
PSCacheEntry &entry = iter->second;
|
2008-08-08 19:46:04 +00:00
|
|
|
if (entry.frameCount < frameCount - 200) {
|
2008-07-17 21:09:18 +00:00
|
|
|
entry.Destroy();
|
|
|
|
#ifdef _WIN32
|
|
|
|
iter = pshaders.erase(iter);
|
|
|
|
#else
|
|
|
|
pshaders.erase(iter++); // (this is gcc standard!)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
iter++;
|
|
|
|
}
|
|
|
|
SETSTAT(stats.numPixelShadersAlive,(int)pshaders.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PixelShaderMngr::CompilePixelShader(FRAGMENTSHADER& ps, const char* pstrprogram)
|
|
|
|
{
|
|
|
|
char stropt[64];
|
|
|
|
sprintf(stropt, "MaxLocalParams=32,NumInstructionSlots=%d", s_nMaxPixelInstructions);
|
2008-10-21 20:34:56 +00:00
|
|
|
const char* opts[] = {"-profileopts", stropt, "-O2", "-q", NULL};
|
2008-07-17 21:09:18 +00:00
|
|
|
CGprogram tempprog = cgCreateProgram(g_cgcontext, CG_SOURCE, pstrprogram, g_cgfProf, "main", opts);
|
|
|
|
if (!cgIsProgram(tempprog) || cgGetError() != CG_NO_ERROR) {
|
|
|
|
ERROR_LOG("Failed to create ps %s:\n", cgGetLastListing(g_cgcontext));
|
|
|
|
ERROR_LOG(pstrprogram);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-21 20:34:56 +00:00
|
|
|
char *pcompiledprog = (char*)cgGetProgramString(tempprog, CG_COMPILED_PROGRAM);
|
|
|
|
char *plocal = strstr(pcompiledprog, "program.local");
|
|
|
|
while (plocal != NULL) {
|
2008-07-17 21:09:18 +00:00
|
|
|
const char* penv = " program.env";
|
|
|
|
memcpy(plocal, penv, 13);
|
|
|
|
plocal = strstr(plocal+13, "program.local");
|
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (Renderer::IsUsingATIDrawBuffers()) {
|
2008-07-17 21:09:18 +00:00
|
|
|
// sometimes compilation can use ARB_draw_buffers, which would fail for ATI cards
|
2008-10-21 20:34:56 +00:00
|
|
|
// replace the three characters ARB with ATI. TODO - check whether this is fixed in modern ATI drivers.
|
2008-07-17 21:09:18 +00:00
|
|
|
char* poptions = strstr(pcompiledprog, "ARB_draw_buffers");
|
2008-10-17 11:30:14 +00:00
|
|
|
if (poptions != NULL) {
|
2008-07-17 21:09:18 +00:00
|
|
|
poptions[0] = 'A';
|
|
|
|
poptions[1] = 'T';
|
|
|
|
poptions[2] = 'I';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//ERROR_LOG(pcompiledprog);
|
|
|
|
//ERROR_LOG(pstrprogram);
|
|
|
|
glGenProgramsARB( 1, &ps.glprogid );
|
|
|
|
glBindProgramARB( GL_FRAGMENT_PROGRAM_ARB, ps.glprogid );
|
|
|
|
glProgramStringARB( GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, (GLsizei)strlen(pcompiledprog), pcompiledprog);
|
|
|
|
|
|
|
|
GLenum err = GL_NO_ERROR;
|
|
|
|
GL_REPORT_ERROR();
|
2008-10-17 11:30:14 +00:00
|
|
|
if (err != GL_NO_ERROR) {
|
2008-07-17 21:09:18 +00:00
|
|
|
ERROR_LOG(pstrprogram);
|
|
|
|
ERROR_LOG(pcompiledprog);
|
|
|
|
}
|
|
|
|
|
|
|
|
cgDestroyProgram(tempprog);
|
2008-08-08 20:38:08 +00:00
|
|
|
// printf("Compiled pixel shader %i\n", ps.glprogid);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
ps.strprog = pstrprogram;
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetConstants(FRAGMENTSHADER& ps)
|
|
|
|
{
|
2008-10-17 11:30:14 +00:00
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
if (s_nColorsChanged[i]) {
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
int baseind = i?C_KCOLORS:C_COLORS;
|
2008-10-17 11:30:14 +00:00
|
|
|
for (int j = 0; j < 4; ++j) {
|
|
|
|
if (s_nColorsChanged[i] & (1<<j)) {
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4fv(baseind+j, &lastRGBAfull[i][j][0]);
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
s_nColorsChanged[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 newmask = 0;
|
2008-10-17 11:30:14 +00:00
|
|
|
for (u32 i = 0; i < (u32)bpmem.genMode.numtevstages+1; ++i) {
|
|
|
|
if (bpmem.tevorders[i/2].getEnable(i&1)) {
|
2008-07-17 21:09:18 +00:00
|
|
|
int texmap = bpmem.tevorders[i/2].getTexMap(i&1);
|
|
|
|
maptocoord[texmap] = bpmem.tevorders[i/2].getTexCoord(i&1);
|
|
|
|
newmask |= 1<<texmap;
|
2008-10-02 03:26:08 +00:00
|
|
|
SetTexDimsChanged(texmap);
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (maptocoord_mask != newmask) {
|
2008-10-02 03:26:08 +00:00
|
|
|
//u32 changes = maptocoord_mask ^ newmask;
|
2008-10-17 11:30:14 +00:00
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
if (newmask&(1<<i)) {
|
2008-07-17 21:09:18 +00:00
|
|
|
SetTexDimsChanged(i);
|
|
|
|
}
|
2008-10-02 03:26:08 +00:00
|
|
|
else {
|
2008-07-17 21:09:18 +00:00
|
|
|
maptocoord[i] = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
maptocoord_mask = newmask;
|
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_nTexDimsChanged) {
|
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
if (s_nTexDimsChanged & (1<<i)) {
|
2008-10-02 03:26:08 +00:00
|
|
|
SetPSTextureDims(i);
|
|
|
|
}
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
2008-10-02 03:26:08 +00:00
|
|
|
s_nTexDimsChanged = 0;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_bAlphaChanged) {
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4f(C_ALPHA, (lastAlpha&0xff)/255.0f, ((lastAlpha>>8)&0xff)/255.0f, 0, ((lastAlpha>>16)&0xff)/255.0f);
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_bZBiasChanged) {
|
2008-07-17 21:09:18 +00:00
|
|
|
u32 bits;
|
|
|
|
float ffrac = 255.0f/256.0f;
|
|
|
|
float ftemp[4];
|
2008-10-17 11:30:14 +00:00
|
|
|
switch (bpmem.ztex2.type) {
|
2008-07-17 21:09:18 +00:00
|
|
|
case 0:
|
|
|
|
bits = 8;
|
|
|
|
ftemp[0] = ffrac/(256.0f*256.0f); ftemp[1] = ffrac/256.0f; ftemp[2] = ffrac; ftemp[3] = 0;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
bits = 16;
|
|
|
|
ftemp[0] = 0; ftemp[1] = ffrac/(256.0f*256.0f); ftemp[2] = ffrac/256.0f; ftemp[3] = ffrac;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
bits = 24;
|
|
|
|
ftemp[0] = ffrac/(256.0f*256.0f); ftemp[1] = ffrac/256.0f; ftemp[2] = ffrac; ftemp[3] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
//ERROR_LOG("pixel=%x,%x, bias=%x\n", bpmem.zcontrol.pixel_format, bpmem.ztex2.type, lastZBias);
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4fv(C_ZBIAS, ftemp);
|
|
|
|
SetPSConstant4f(C_ZBIAS+1, 0, 0, 0, (float)( (((int)lastZBias<<8)>>8))/16777216.0f);
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// indirect incoming texture scales, update all!
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_bIndTexScaleChanged) {
|
2008-10-21 20:34:56 +00:00
|
|
|
// set as two sets of vec4s, each containing S and T of two ind stages.
|
2008-07-17 21:09:18 +00:00
|
|
|
float f[8];
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
for (u32 i = 0; i < bpmem.genMode.numindstages; ++i) {
|
2008-07-17 21:09:18 +00:00
|
|
|
int srctexmap = bpmem.tevindref.getTexMap(i);
|
|
|
|
int texcoord = bpmem.tevindref.getTexCoord(i);
|
|
|
|
TCoordInfo& tc = bpmem.texcoords[texcoord];
|
|
|
|
|
2008-10-21 20:34:56 +00:00
|
|
|
f[2*i] = bpmem.texscale[i/2].getScaleS(i&1) * (float)(tc.s.scale_minus_1+1) / (float)(lastTexDims[srctexmap] & 0xffff);
|
|
|
|
f[2*i+1] = bpmem.texscale[i/2].getScaleT(i&1) * (float)(tc.t.scale_minus_1+1) / (float)((lastTexDims[srctexmap] >> 16) & 0xffff);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
PRIM_LOG("tex indscale%d: %f %f\n", i, f[2*i], f[2*i+1]);
|
|
|
|
}
|
|
|
|
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4fv(C_INDTEXSCALE, f);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (bpmem.genMode.numindstages > 2)
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4fv(C_INDTEXSCALE+1, &f[4]);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
s_bIndTexScaleChanged = false;
|
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_nIndTexMtxChanged) {
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
if (s_nIndTexMtxChanged & (1 << i)) {
|
|
|
|
int scale = ((u32)bpmem.indmtx[i].col0.s0 << 0) |
|
|
|
|
((u32)bpmem.indmtx[i].col1.s1 << 2) |
|
|
|
|
((u32)bpmem.indmtx[i].col2.s2 << 4);
|
2008-10-21 20:34:56 +00:00
|
|
|
float fscale = powf(2.0f, (float)(scale - 17)) / 1024.0f;
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
// xyz - static matrix
|
|
|
|
//TODO w - dynamic matrix scale / 256...... somehow / 4 works better
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4f(C_INDTEXMTX+2*i,
|
2008-07-17 21:09:18 +00:00
|
|
|
bpmem.indmtx[i].col0.ma * fscale, bpmem.indmtx[i].col1.mc * fscale, bpmem.indmtx[i].col2.me * fscale, fscale * 256.0f);
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4f(C_INDTEXMTX+2*i+1,
|
2008-07-17 21:09:18 +00:00
|
|
|
bpmem.indmtx[i].col0.mb * fscale, bpmem.indmtx[i].col1.md * fscale, bpmem.indmtx[i].col2.mf * fscale, fscale * 256.0f);
|
|
|
|
|
|
|
|
PRIM_LOG("indmtx%d: scale=%f, mat=(%f %f %f; %f %f %f)\n", i,
|
|
|
|
1024.0f*fscale, bpmem.indmtx[i].col0.ma * fscale, bpmem.indmtx[i].col1.mc * fscale, bpmem.indmtx[i].col2.me * fscale,
|
|
|
|
bpmem.indmtx[i].col0.mb * fscale, bpmem.indmtx[i].col1.md * fscale, bpmem.indmtx[i].col2.mf * fscale, fscale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s_nIndTexMtxChanged = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-02 03:26:08 +00:00
|
|
|
void PixelShaderMngr::SetPSTextureDims(int texid)
|
|
|
|
{
|
|
|
|
float fdims[4];
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_texturemask & (1<<texid)) {
|
|
|
|
if (maptocoord[texid] >= 0) {
|
2008-10-02 03:26:08 +00:00
|
|
|
TCoordInfo& tc = bpmem.texcoords[maptocoord[texid]];
|
|
|
|
fdims[0] = (float)(lastTexDims[texid]&0xffff);
|
|
|
|
fdims[1] = (float)((lastTexDims[texid]>>16)&0xfff);
|
|
|
|
fdims[2] = (float)(tc.s.scale_minus_1+1)/(float)(lastTexDims[texid]&0xffff);
|
|
|
|
fdims[3] = (float)(tc.t.scale_minus_1+1)/(float)((lastTexDims[texid]>>16)&0xfff);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fdims[0] = (float)(lastTexDims[texid]&0xffff);
|
|
|
|
fdims[1] = (float)((lastTexDims[texid]>>16)&0xfff);
|
|
|
|
fdims[2] = 1.0f;
|
|
|
|
fdims[3] = 1.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2008-10-17 11:30:14 +00:00
|
|
|
if (maptocoord[texid] >= 0) {
|
2008-10-02 03:26:08 +00:00
|
|
|
TCoordInfo& tc = bpmem.texcoords[maptocoord[texid]];
|
|
|
|
fdims[0] = (float)(tc.s.scale_minus_1+1)/(float)(lastTexDims[texid]&0xffff);
|
|
|
|
fdims[1] = (float)(tc.t.scale_minus_1+1)/(float)((lastTexDims[texid]>>16)&0xfff);
|
|
|
|
fdims[2] = 1.0f/(float)(tc.s.scale_minus_1+1);
|
|
|
|
fdims[3] = 1.0f/(float)(tc.t.scale_minus_1+1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fdims[0] = 1.0f;
|
|
|
|
fdims[1] = 1.0f;
|
|
|
|
fdims[2] = 1.0f/(float)(lastTexDims[texid]&0xffff);
|
|
|
|
fdims[3] = 1.0f/(float)((lastTexDims[texid]>>16)&0xfff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PRIM_LOG("texdims%d: %f %f %f %f\n", texid, fdims[0], fdims[1], fdims[2], fdims[3]);
|
|
|
|
SetPSConstant4fv(C_TEXDIMS + texid, fdims);
|
|
|
|
}
|
|
|
|
|
2008-07-17 21:09:18 +00:00
|
|
|
void PixelShaderMngr::SetColorChanged(int type, int num)
|
|
|
|
{
|
2008-10-17 11:30:14 +00:00
|
|
|
int r = bpmem.tevregs[num].low.a;
|
|
|
|
int a = bpmem.tevregs[num].low.b;
|
|
|
|
int b = bpmem.tevregs[num].high.a;
|
|
|
|
int g = bpmem.tevregs[num].high.b;
|
|
|
|
float *pf = &lastRGBAfull[type][num][0];
|
|
|
|
pf[0] = (float)r / 255.0f;
|
|
|
|
pf[1] = (float)g / 255.0f;
|
|
|
|
pf[2] = (float)b / 255.0f;
|
|
|
|
pf[3] = (float)a / 255.0f;
|
2008-07-17 21:09:18 +00:00
|
|
|
s_nColorsChanged[type] |= 1 << num;
|
|
|
|
PRIM_LOG("pixel %scolor%d: %f %f %f %f\n", type?"k":"", num, pf[0], pf[1], pf[2], pf[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetAlpha(const AlphaFunc& alpha)
|
|
|
|
{
|
2008-10-21 20:34:56 +00:00
|
|
|
if ((alpha.hex & 0xffff) != lastAlpha) {
|
|
|
|
lastAlpha = (lastAlpha & ~0xffff) | (alpha.hex & 0xffff);
|
2008-07-17 21:09:18 +00:00
|
|
|
s_bAlphaChanged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetDestAlpha(const ConstantAlpha& alpha)
|
|
|
|
{
|
2008-10-21 20:34:56 +00:00
|
|
|
if (alpha.alpha != (lastAlpha >> 16)) {
|
|
|
|
lastAlpha = (lastAlpha & ~0xff0000) | ((alpha.hex & 0xff) << 16);
|
2008-07-17 21:09:18 +00:00
|
|
|
s_bAlphaChanged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTexDims(int texmapid, u32 width, u32 height, u32 wraps, u32 wrapt)
|
|
|
|
{
|
2008-10-21 20:34:56 +00:00
|
|
|
u32 wh = width | (height << 16) | (wraps << 28) | (wrapt << 30);
|
2008-10-17 11:30:14 +00:00
|
|
|
if (lastTexDims[texmapid] != wh) {
|
2008-07-17 21:09:18 +00:00
|
|
|
lastTexDims[texmapid] = wh;
|
2008-10-21 20:34:56 +00:00
|
|
|
s_nTexDimsChanged |= 1 << texmapid;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetZTetureBias(u32 bias)
|
|
|
|
{
|
2008-10-17 11:30:14 +00:00
|
|
|
if (lastZBias != bias) {
|
2008-07-17 21:09:18 +00:00
|
|
|
s_bZBiasChanged = true;
|
|
|
|
lastZBias = bias;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetIndTexScaleChanged()
|
|
|
|
{
|
|
|
|
s_bIndTexScaleChanged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetIndMatrixChanged(int matrixidx)
|
|
|
|
{
|
|
|
|
s_nIndTexMtxChanged |= 1 << matrixidx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetGenModeChanged()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTevCombinerChanged(int id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTevKSelChanged(int id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTevOrderChanged(int id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTevIndirectChanged(int id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetZTetureOpChanged()
|
|
|
|
{
|
|
|
|
s_bZBiasChanged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTexturesUsed(u32 nonpow2tex)
|
|
|
|
{
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_texturemask != nonpow2tex) {
|
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
if (nonpow2tex & (0x10101 << i)) {
|
2008-10-02 03:26:08 +00:00
|
|
|
// this check was previously implicit, but should it be here?
|
2008-10-17 11:30:14 +00:00
|
|
|
if (s_nTexDimsChanged )
|
2008-10-21 20:34:56 +00:00
|
|
|
s_nTexDimsChanged |= 1 << i;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
s_texturemask = nonpow2tex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetTexDimsChanged(int texmapid)
|
|
|
|
{
|
2008-10-02 03:26:08 +00:00
|
|
|
// this check was previously implicit, but should it be here?
|
2008-10-21 20:34:56 +00:00
|
|
|
if (s_nTexDimsChanged)
|
2008-10-17 11:30:14 +00:00
|
|
|
s_nTexDimsChanged |= 1 << texmapid;
|
2008-10-02 03:26:08 +00:00
|
|
|
|
2008-07-17 21:09:18 +00:00
|
|
|
SetIndTexScaleChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PixelShaderMngr::SetColorMatrix(const float* pmatrix, const float* pfConstAdd)
|
|
|
|
{
|
2008-07-18 19:33:55 +00:00
|
|
|
SetPSConstant4fv(C_COLORMATRIX, pmatrix);
|
|
|
|
SetPSConstant4fv(C_COLORMATRIX+1, pmatrix+4);
|
|
|
|
SetPSConstant4fv(C_COLORMATRIX+2, pmatrix+8);
|
|
|
|
SetPSConstant4fv(C_COLORMATRIX+3, pmatrix+12);
|
|
|
|
SetPSConstant4fv(C_COLORMATRIX+4, pfConstAdd);
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLuint PixelShaderMngr::GetColorMatrixProgram()
|
|
|
|
{
|
|
|
|
return s_ColorMatrixProgram;
|
|
|
|
}
|
|
|
|
|
2008-10-21 20:34:56 +00:00
|
|
|
// Mash together all the inputs that contribute to the code of a generated pixel shader into
|
|
|
|
// a unique identifier, basically containing all the bits. Yup, it's a lot ....
|
2008-07-17 21:09:18 +00:00
|
|
|
void PixelShaderMngr::GetPixelShaderId(PixelShaderMngr::PIXELSHADERUID& uid)
|
|
|
|
{
|
|
|
|
u32 projtexcoords = 0;
|
2008-10-17 11:30:14 +00:00
|
|
|
for (u32 i = 0; i < (u32)bpmem.genMode.numtevstages + 1; i++) {
|
|
|
|
if (bpmem.tevorders[i/2].getEnable(i&1)) {
|
2008-07-17 21:09:18 +00:00
|
|
|
int texcoord = bpmem.tevorders[i/2].getTexCoord(i&1);
|
2008-10-17 11:30:14 +00:00
|
|
|
if (xfregs.texcoords[texcoord].texmtxinfo.projection )
|
2008-10-21 20:34:56 +00:00
|
|
|
projtexcoords |= 1 << texcoord;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-21 20:34:56 +00:00
|
|
|
u32 zbufrender = (Renderer::GetZBufferTarget() && bpmem.zmode.updateenable) ? 1 : 0;
|
|
|
|
u32 zBufRenderToCol0 = Renderer::GetRenderMode() != Renderer::RM_Normal;
|
|
|
|
uid.values[0] = (u32)bpmem.genMode.numtevstages |
|
|
|
|
((u32)bpmem.genMode.numindstages << 4) |
|
|
|
|
((u32)bpmem.genMode.numtexgens << 7) |
|
|
|
|
((u32)bpmem.dstalpha.enable << 11) |
|
|
|
|
((u32)((bpmem.alphaFunc.hex >> 16) & 0xff) << 12) |
|
|
|
|
(projtexcoords << 20) |
|
|
|
|
((u32)bpmem.ztex2.op << 28) |
|
|
|
|
(zbufrender << 30) |
|
|
|
|
(zBufRenderToCol0 << 31);
|
|
|
|
|
|
|
|
s_curuid.values[0] = (s_curuid.values[0] & ~0x0ff00000) | (projtexcoords << 20);
|
2008-07-17 21:09:18 +00:00
|
|
|
// swap table
|
2008-10-17 11:30:14 +00:00
|
|
|
for (int i = 0; i < 8; i += 2)
|
2008-10-21 20:34:56 +00:00
|
|
|
((u8*)&uid.values[1])[i/2] = (bpmem.tevksel[i].hex & 0xf) | ((bpmem.tevksel[i + 1].hex & 0xf)<<4);
|
2008-07-17 21:09:18 +00:00
|
|
|
|
|
|
|
uid.values[2] = s_texturemask;
|
|
|
|
int hdr = 3;
|
|
|
|
u32* pcurvalue = &uid.values[hdr];
|
2008-10-17 11:30:14 +00:00
|
|
|
for (u32 i = 0; i < (u32)bpmem.genMode.numtevstages+1; ++i) {
|
2008-07-17 21:09:18 +00:00
|
|
|
TevStageCombiner::ColorCombiner &cc = bpmem.combiners[i].colorC;
|
|
|
|
TevStageCombiner::AlphaCombiner &ac = bpmem.combiners[i].alphaC;
|
|
|
|
|
|
|
|
u32 val0 = cc.hex&0xffffff;
|
|
|
|
u32 val1 = ac.hex&0xffffff;
|
|
|
|
val0 |= bpmem.tevksel[i/2].getKC(i&1)<<24;
|
|
|
|
val1 |= bpmem.tevksel[i/2].getKA(i&1)<<24;
|
|
|
|
pcurvalue[0] = val0;
|
|
|
|
pcurvalue[1] = val1;
|
2008-10-21 20:34:56 +00:00
|
|
|
pcurvalue += 2;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
for (u32 i = 0; i < ((u32)bpmem.genMode.numtevstages+1)/2; ++i) {
|
2008-07-17 21:09:18 +00:00
|
|
|
u32 val0, val1;
|
2008-10-21 20:34:56 +00:00
|
|
|
if (bpmem.tevorders[i].hex & 0x40)
|
|
|
|
val0 = bpmem.tevorders[i].hex & 0x3ff;
|
|
|
|
else
|
|
|
|
val0 = bpmem.tevorders[i].hex & 0x380;
|
|
|
|
if (bpmem.tevorders[i].hex & 0x40000)
|
|
|
|
val1 = (bpmem.tevorders[i].hex & 0x3ff000) >> 12;
|
|
|
|
else
|
|
|
|
val1 = (bpmem.tevorders[i].hex & 0x380000) >> 12;
|
2008-07-17 21:09:18 +00:00
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
switch (i % 3) {
|
2008-07-17 21:09:18 +00:00
|
|
|
case 0: pcurvalue[0] = val0|(val1<<10); break;
|
|
|
|
case 1: pcurvalue[0] |= val0<<20; pcurvalue[1] = val1; pcurvalue++; break;
|
|
|
|
case 2: pcurvalue[1] |= (val0<<10)|(val1<<20); pcurvalue++; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-21 20:34:56 +00:00
|
|
|
if ((bpmem.genMode.numtevstages + 1) & 1) { // odd
|
2008-07-17 21:09:18 +00:00
|
|
|
u32 val0;
|
2008-10-21 20:34:56 +00:00
|
|
|
if (bpmem.tevorders[bpmem.genMode.numtevstages/2].hex & 0x40)
|
|
|
|
val0 = bpmem.tevorders[bpmem.genMode.numtevstages/2].hex&0x3ff;
|
|
|
|
else
|
|
|
|
val0 = bpmem.tevorders[bpmem.genMode.numtevstages/2].hex & 0x380;
|
2008-07-17 21:09:18 +00:00
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
switch (bpmem.genMode.numtevstages % 3) {
|
2008-07-17 21:09:18 +00:00
|
|
|
case 0: pcurvalue[0] = val0; break;
|
2008-10-21 20:34:56 +00:00
|
|
|
case 1: pcurvalue[0] |= val0 << 20; break;
|
|
|
|
case 2: pcurvalue[1] |= val0 << 10; pcurvalue++; break;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-21 20:34:56 +00:00
|
|
|
if ((bpmem.genMode.numtevstages % 3) != 2)
|
2008-07-17 21:09:18 +00:00
|
|
|
++pcurvalue;
|
|
|
|
|
|
|
|
uid.tevstages = (u32)(pcurvalue-&uid.values[0]-hdr);
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
for (u32 i = 0; i < bpmem.genMode.numindstages; ++i) {
|
2008-10-21 20:34:56 +00:00
|
|
|
u32 val = bpmem.tevind[i].hex & 0x1fffff; // 21 bits
|
2008-10-17 11:30:14 +00:00
|
|
|
switch (i%3) {
|
2008-07-17 21:09:18 +00:00
|
|
|
case 0: pcurvalue[0] = val; break;
|
2008-10-21 20:34:56 +00:00
|
|
|
case 1: pcurvalue[0] |= val << 21; pcurvalue[1] = val >> 11; ++pcurvalue; break;
|
|
|
|
case 2: pcurvalue[0] |= val << 10; ++pcurvalue; break;
|
2008-07-17 21:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-21 20:34:56 +00:00
|
|
|
// yeah, well ....
|
|
|
|
uid.indstages = (u32)(pcurvalue - &uid.values[0] - 2 - uid.tevstages);
|
2008-08-03 16:56:31 +00:00
|
|
|
}
|