| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Copyright 2013 Dolphin Emulator Project
 | 
					
						
							|  |  |  | // Licensed under GPLv2
 | 
					
						
							|  |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 19:59:47 -06:00
										 |  |  | #include <cfloat>
 | 
					
						
							| 
									
										
										
										
											2014-12-04 15:15:16 +01:00
										 |  |  | #include <cmath>
 | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | #include <sstream>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | #include "Common/BitSet.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/MathUtil.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/BPMemory.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/CPMemory.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/RenderBase.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/Statistics.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/VertexManagerBase.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/VertexShaderGen.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/VertexShaderManager.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-19 02:27:20 +01:00
										 |  |  | #include "VideoCommon/VideoCommon.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/VideoConfig.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/XFMemory.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 15:58:25 +02:00
										 |  |  | static float GC_ALIGNED16(g_fProjectionMatrix[16]); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // track changes
 | 
					
						
							|  |  |  | static bool bTexMatricesChanged[2], bPosNormalMatrixChanged, bProjectionChanged, bViewportChanged; | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | static BitSet32 nMaterialsChanged; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | static int nTransformMatricesChanged[2]; // min,max
 | 
					
						
							|  |  |  | static int nNormalMatricesChanged[2]; // min,max
 | 
					
						
							|  |  |  | static int nPostTransformMatricesChanged[2]; // min,max
 | 
					
						
							|  |  |  | static int nLightsChanged[2]; // min,max
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-12 02:14:45 +00:00
										 |  |  | static Matrix44 s_viewportCorrection; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | static Matrix33 s_viewRotationMatrix; | 
					
						
							|  |  |  | static Matrix33 s_viewInvRotationMatrix; | 
					
						
							|  |  |  | static float s_fViewTranslationVector[3]; | 
					
						
							|  |  |  | static float s_fViewRotation[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-07 16:02:24 +02:00
										 |  |  | VertexShaderConstants VertexShaderManager::constants; | 
					
						
							|  |  |  | bool VertexShaderManager::dirty; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-21 17:51:41 -04:00
										 |  |  | struct ProjectionHack | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	float sign; | 
					
						
							|  |  |  | 	float value; | 
					
						
							|  |  |  | 	ProjectionHack() { } | 
					
						
							|  |  |  | 	ProjectionHack(float new_sign, float new_value) | 
					
						
							|  |  |  | 		: sign(new_sign), value(new_value) {} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 13:56:23 +00:00
										 |  |  | namespace | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | // Control Variables
 | 
					
						
							|  |  |  | static ProjectionHack g_ProjHack1; | 
					
						
							|  |  |  | static ProjectionHack g_ProjHack2; | 
					
						
							|  |  |  | } // Namespace
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 14:29:26 +02:00
										 |  |  | static float PHackValue(std::string sValue) | 
					
						
							| 
									
										
										
										
											2009-12-05 13:56:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 	float f = 0; | 
					
						
							|  |  |  | 	bool fp = false; | 
					
						
							|  |  |  | 	const char *cStr = sValue.c_str(); | 
					
						
							|  |  |  | 	char *c = new char[strlen(cStr)+1]; | 
					
						
							|  |  |  | 	std::istringstream sTof(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (unsigned int i=0; i<=strlen(cStr); ++i) | 
					
						
							| 
									
										
										
										
											2009-12-05 13:56:23 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 		if (i == 20) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			c[i] = '\0'; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 		c[i] = (cStr[i] == ',') ? '.' : *(cStr+i); | 
					
						
							|  |  |  | 		if (c[i] == '.') | 
					
						
							|  |  |  | 			fp = true; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 	cStr = c; | 
					
						
							|  |  |  | 	sTof.str(cStr); | 
					
						
							|  |  |  | 	sTof >> f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 	if (!fp) | 
					
						
							|  |  |  | 		f /= 0xF4240; | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	delete [] c; | 
					
						
							|  |  |  | 	return f; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void UpdateProjectionHack(int iPhackvalue[], std::string sPhackvalue[]) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-12-05 09:41:41 +01:00
										 |  |  | 	float fhackvalue1 = 0, fhackvalue2 = 0; | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 	float fhacksign1 = 1.0, fhacksign2 = 1.0; | 
					
						
							| 
									
										
										
										
											2011-01-29 22:48:33 +00:00
										 |  |  | 	const char *sTemp[2]; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 00:56:33 +00:00
										 |  |  | 	if (iPhackvalue[0] == 1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-04-07 17:11:29 -04:00
										 |  |  | 		NOTICE_LOG(VIDEO, "\t\t--- Orthographic Projection Hack ON ---"); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 00:56:33 +00:00
										 |  |  | 		fhacksign1 *= (iPhackvalue[1] == 1) ? -1.0f : fhacksign1; | 
					
						
							|  |  |  | 		sTemp[0] = (iPhackvalue[1] == 1) ? " * (-1)" : ""; | 
					
						
							|  |  |  | 		fhacksign2 *= (iPhackvalue[2] == 1) ? -1.0f : fhacksign2; | 
					
						
							|  |  |  | 		sTemp[1] = (iPhackvalue[2] == 1) ? " * (-1)" : ""; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 00:56:33 +00:00
										 |  |  | 		fhackvalue1 = PHackValue(sPhackvalue[0]); | 
					
						
							|  |  |  | 		NOTICE_LOG(VIDEO, "- zNear Correction = (%f + zNear)%s", fhackvalue1, sTemp[0]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		fhackvalue2 = PHackValue(sPhackvalue[1]); | 
					
						
							|  |  |  | 		NOTICE_LOG(VIDEO, "- zFar Correction =  (%f + zFar)%s", fhackvalue2, sTemp[1]); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-30 00:56:33 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-29 21:13:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Set the projections hacks
 | 
					
						
							| 
									
										
										
										
											2011-01-30 00:56:33 +00:00
										 |  |  | 	g_ProjHack1 = ProjectionHack(fhacksign1, fhackvalue1); | 
					
						
							|  |  |  | 	g_ProjHack2 = ProjectionHack(fhacksign2, fhackvalue2); | 
					
						
							| 
									
										
										
										
											2009-12-05 13:56:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Viewport correction:
 | 
					
						
							|  |  |  | // In D3D, the viewport rectangle must fit within the render target.
 | 
					
						
							|  |  |  | // Say you want a viewport at (ix, iy) with size (iw, ih),
 | 
					
						
							|  |  |  | // but your viewport must be clamped at (ax, ay) with size (aw, ah).
 | 
					
						
							|  |  |  | // Just multiply the projection matrix with the following to get the same
 | 
					
						
							|  |  |  | // effect:
 | 
					
						
							|  |  |  | // [   (iw/aw)         0     0    ((iw - 2*(ax-ix)) / aw - 1)   ]
 | 
					
						
							|  |  |  | // [         0   (ih/ah)     0   ((-ih + 2*(ay-iy)) / ah + 1)   ]
 | 
					
						
							|  |  |  | // [         0         0     1                              0   ]
 | 
					
						
							|  |  |  | // [         0         0     0                              1   ]
 | 
					
						
							|  |  |  | static void ViewportCorrectionMatrix(Matrix44& result) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int scissorXOff = bpmem.scissorOffset.x * 2; | 
					
						
							|  |  |  | 	int scissorYOff = bpmem.scissorOffset.y * 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// TODO: ceil, floor or just cast to int?
 | 
					
						
							|  |  |  | 	// TODO: Directly use the floats instead of rounding them?
 | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 	float intendedX = xfmem.viewport.xOrig - xfmem.viewport.wd - scissorXOff; | 
					
						
							|  |  |  | 	float intendedY = xfmem.viewport.yOrig + xfmem.viewport.ht - scissorYOff; | 
					
						
							|  |  |  | 	float intendedWd = 2.0f * xfmem.viewport.wd; | 
					
						
							|  |  |  | 	float intendedHt = -2.0f * xfmem.viewport.ht; | 
					
						
							| 
									
										
										
										
											2014-03-29 11:05:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-16 15:30:18 -05:00
										 |  |  | 	if (intendedWd < 0.f) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		intendedX += intendedWd; | 
					
						
							|  |  |  | 		intendedWd = -intendedWd; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (intendedHt < 0.f) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		intendedY += intendedHt; | 
					
						
							|  |  |  | 		intendedHt = -intendedHt; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// fit to EFB size
 | 
					
						
							| 
									
										
										
										
											2014-02-16 15:30:18 -05:00
										 |  |  | 	float X = (intendedX >= 0.f) ? intendedX : 0.f; | 
					
						
							|  |  |  | 	float Y = (intendedY >= 0.f) ? intendedY : 0.f; | 
					
						
							|  |  |  | 	float Wd = (X + intendedWd <= EFB_WIDTH) ? intendedWd : (EFB_WIDTH - X); | 
					
						
							|  |  |  | 	float Ht = (Y + intendedHt <= EFB_HEIGHT) ? intendedHt : (EFB_HEIGHT - Y); | 
					
						
							| 
									
										
										
										
											2014-03-29 11:05:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 	Matrix44::LoadIdentity(result); | 
					
						
							|  |  |  | 	if (Wd == 0 || Ht == 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2014-03-29 11:05:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 	result.data[4*0+0] = intendedWd / Wd; | 
					
						
							|  |  |  | 	result.data[4*0+3] = (intendedWd - 2.f * (X - intendedX)) / Wd - 1.f; | 
					
						
							|  |  |  | 	result.data[4*1+1] = intendedHt / Ht; | 
					
						
							|  |  |  | 	result.data[4*1+3] = (-intendedHt + 2.f * (Y - intendedY)) / Ht + 1.f; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | void VertexShaderManager::Init() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-15 21:49:15 +00:00
										 |  |  | 	Dirty(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 	memset(&xfmem, 0, sizeof(xfmem)); | 
					
						
							| 
									
										
										
										
											2013-10-07 16:02:24 +02:00
										 |  |  | 	memset(&constants, 0 , sizeof(constants)); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	ResetView(); | 
					
						
							| 
									
										
										
										
											2012-01-02 02:20:22 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// TODO: should these go inside ResetView()?
 | 
					
						
							|  |  |  | 	Matrix44::LoadIdentity(s_viewportCorrection); | 
					
						
							|  |  |  | 	memset(g_fProjectionMatrix, 0, sizeof(g_fProjectionMatrix)); | 
					
						
							|  |  |  | 	for (int i = 0; i < 4; ++i) | 
					
						
							|  |  |  | 		g_fProjectionMatrix[i*5] = 1.0f; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | void VertexShaderManager::Shutdown() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-09-15 21:49:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void VertexShaderManager::Dirty() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	nTransformMatricesChanged[0] = 0; | 
					
						
							| 
									
										
										
										
											2013-01-10 21:44:12 -05:00
										 |  |  | 	nTransformMatricesChanged[1] = 256; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 21:44:12 -05:00
										 |  |  | 	nNormalMatricesChanged[0] = 0; | 
					
						
							|  |  |  | 	nNormalMatricesChanged[1] = 96; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	nPostTransformMatricesChanged[0] = 0; | 
					
						
							| 
									
										
										
										
											2013-01-10 21:44:12 -05:00
										 |  |  | 	nPostTransformMatricesChanged[1] = 256; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	nLightsChanged[0] = 0; | 
					
						
							| 
									
										
										
										
											2013-01-10 21:44:12 -05:00
										 |  |  | 	nLightsChanged[1] = 0x80; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 21:49:15 +00:00
										 |  |  | 	bPosNormalMatrixChanged = true; | 
					
						
							| 
									
										
										
										
											2013-01-10 21:44:12 -05:00
										 |  |  | 	bTexMatricesChanged[0] = true; | 
					
						
							|  |  |  | 	bTexMatricesChanged[1] = true; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-15 21:49:15 +00:00
										 |  |  | 	bProjectionChanged = true; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | 	nMaterialsChanged = BitSet32::AllTrue(4); | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-07 16:02:24 +02:00
										 |  |  | 	dirty = true; | 
					
						
							| 
									
										
										
										
											2009-09-15 21:49:15 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | // Syncs the shader constant buffers with xfmem
 | 
					
						
							| 
									
										
										
										
											2013-04-07 17:11:29 -04:00
										 |  |  | // TODO: A cleaner way to control the matrices without making a mess in the parameters field
 | 
					
						
							| 
									
										
										
										
											2009-08-15 07:20:37 +00:00
										 |  |  | void VertexShaderManager::SetConstants() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (nTransformMatricesChanged[0] >= 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		int startn = nTransformMatricesChanged[0] / 4; | 
					
						
							|  |  |  | 		int endn = (nTransformMatricesChanged[1] + 3) / 4; | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 		memcpy(constants.transformmatrices[startn], &xfmem.posMatrices[startn * 4], (endn - startn) * 16); | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		nTransformMatricesChanged[0] = nTransformMatricesChanged[1] = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (nNormalMatricesChanged[0] >= 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		int startn = nNormalMatricesChanged[0] / 3; | 
					
						
							|  |  |  | 		int endn = (nNormalMatricesChanged[1] + 2) / 3; | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 		for (int i=startn; i<endn; i++) | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 			memcpy(constants.normalmatrices[i], &xfmem.normalMatrices[3*i], 12); | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2009-09-19 10:46:25 +00:00
										 |  |  | 		nNormalMatricesChanged[0] = nNormalMatricesChanged[1] = -1; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (nPostTransformMatricesChanged[0] >= 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		int startn = nPostTransformMatricesChanged[0] / 4; | 
					
						
							|  |  |  | 		int endn = (nPostTransformMatricesChanged[1] + 3 ) / 4; | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 		memcpy(constants.posttransformmatrices[startn], &xfmem.postMatrices[startn * 4], (endn - startn) * 16); | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2012-12-01 14:23:24 +01:00
										 |  |  | 		nPostTransformMatricesChanged[0] = nPostTransformMatricesChanged[1] = -1; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (nLightsChanged[0] >= 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-10-27 13:57:40 +01:00
										 |  |  | 		// TODO: Outdated comment
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		// lights don't have a 1 to 1 mapping, the color component needs to be converted to 4 floats
 | 
					
						
							|  |  |  | 		int istart = nLightsChanged[0] / 0x10; | 
					
						
							|  |  |  | 		int iend = (nLightsChanged[1] + 15) / 0x10; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		for (int i = istart; i < iend; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-05-30 14:54:16 +02:00
										 |  |  | 			const Light& light = xfmem.lights[i]; | 
					
						
							| 
									
										
										
										
											2014-05-30 16:17:30 +02:00
										 |  |  | 			VertexShaderConstants::Light& dstlight = constants.lights[i]; | 
					
						
							| 
									
										
										
										
											2014-05-30 14:54:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// xfmem.light.color is packed as abgr in u8[4], so we have to swap the order
 | 
					
						
							| 
									
										
										
										
											2014-05-30 16:17:30 +02:00
										 |  |  | 			dstlight.color[0] = light.color[3]; | 
					
						
							|  |  |  | 			dstlight.color[1] = light.color[2]; | 
					
						
							|  |  |  | 			dstlight.color[2] = light.color[1]; | 
					
						
							|  |  |  | 			dstlight.color[3] = light.color[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			dstlight.cosatt[0] = light.cosatt[0]; | 
					
						
							|  |  |  | 			dstlight.cosatt[1] = light.cosatt[1]; | 
					
						
							|  |  |  | 			dstlight.cosatt[2] = light.cosatt[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (fabs(light.distatt[0]) < 0.00001f && | 
					
						
							|  |  |  | 			    fabs(light.distatt[1]) < 0.00001f && | 
					
						
							|  |  |  | 			    fabs(light.distatt[2]) < 0.00001f) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				// dist attenuation, make sure not equal to 0!!!
 | 
					
						
							|  |  |  | 				dstlight.distatt[0] = .00001f; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2014-05-30 16:17:30 +02:00
										 |  |  | 				dstlight.distatt[0] = light.distatt[0]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-05-30 16:17:30 +02:00
										 |  |  | 			dstlight.distatt[1] = light.distatt[1]; | 
					
						
							|  |  |  | 			dstlight.distatt[2] = light.distatt[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			dstlight.pos[0] = light.dpos[0]; | 
					
						
							|  |  |  | 			dstlight.pos[1] = light.dpos[1]; | 
					
						
							|  |  |  | 			dstlight.pos[2] = light.dpos[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-27 10:40:45 +02:00
										 |  |  | 			double norm = double(light.ddir[0]) * double(light.ddir[0]) + | 
					
						
							|  |  |  | 			              double(light.ddir[1]) * double(light.ddir[1]) + | 
					
						
							|  |  |  | 			              double(light.ddir[2]) * double(light.ddir[2]); | 
					
						
							|  |  |  | 			norm = 1.0 / sqrt(norm); | 
					
						
							| 
									
										
										
										
											2014-08-19 20:16:50 -07:00
										 |  |  | 			float norm_float = static_cast<float>(norm); | 
					
						
							|  |  |  | 			dstlight.dir[0] = light.ddir[0] * norm_float; | 
					
						
							|  |  |  | 			dstlight.dir[1] = light.ddir[1] * norm_float; | 
					
						
							|  |  |  | 			dstlight.dir[2] = light.ddir[2] * norm_float; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		nLightsChanged[0] = nLightsChanged[1] = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | 	for (int i : nMaterialsChanged) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | 		u32 data = i >= 2 ? xfmem.matColor[i - 2] : xfmem.ambColor[i]; | 
					
						
							|  |  |  | 		constants.materials[i][0] = (data >> 24) & 0xFF; | 
					
						
							|  |  |  | 		constants.materials[i][1] = (data >> 16) & 0xFF; | 
					
						
							|  |  |  | 		constants.materials[i][2] = (data >>  8) & 0xFF; | 
					
						
							|  |  |  | 		constants.materials[i][3] =  data        & 0xFF; | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | 	nMaterialsChanged = BitSet32(0); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (bPosNormalMatrixChanged) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bPosNormalMatrixChanged = false; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 		const float *pos = (const float *)xfmem.posMatrices + g_main_cp_state.matrix_index_a.PosNormalMtxIdx * 4; | 
					
						
							|  |  |  | 		const float *norm = (const float *)xfmem.normalMatrices + 3 * (g_main_cp_state.matrix_index_a.PosNormalMtxIdx & 31); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		memcpy(constants.posnormalmatrix, pos, 3*16); | 
					
						
							|  |  |  | 		memcpy(constants.posnormalmatrix[3], norm, 12); | 
					
						
							|  |  |  | 		memcpy(constants.posnormalmatrix[4], norm+3, 12); | 
					
						
							|  |  |  | 		memcpy(constants.posnormalmatrix[5], norm+6, 12); | 
					
						
							|  |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2009-09-12 15:00:08 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (bTexMatricesChanged[0]) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bTexMatricesChanged[0] = false; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		const float *fptrs[] = | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_a.Tex0MtxIdx * 4], | 
					
						
							|  |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_a.Tex1MtxIdx * 4], | 
					
						
							|  |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_a.Tex2MtxIdx * 4], | 
					
						
							|  |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_a.Tex3MtxIdx * 4] | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		for (int i = 0; i < 4; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 			memcpy(constants.texmatrices[3*i], fptrs[i], 3*16); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (bTexMatricesChanged[1]) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bTexMatricesChanged[1] = false; | 
					
						
							|  |  |  | 		const float *fptrs[] = { | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_b.Tex4MtxIdx * 4], | 
					
						
							|  |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_b.Tex5MtxIdx * 4], | 
					
						
							|  |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_b.Tex6MtxIdx * 4], | 
					
						
							|  |  |  | 			(const float *)&xfmem.posMatrices[g_main_cp_state.matrix_index_b.Tex7MtxIdx * 4] | 
					
						
							| 
									
										
										
										
											2009-09-12 15:00:08 +00:00
										 |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		for (int i = 0; i < 4; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 			memcpy(constants.texmatrices[3*i+12], fptrs[i], 3*16); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (bViewportChanged) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bViewportChanged = false; | 
					
						
							| 
									
										
										
										
											2014-04-23 23:42:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// The console GPU places the pixel center at 7/12 unless antialiasing
 | 
					
						
							|  |  |  | 		// is enabled, while D3D and OpenGL place it at 0.5. See the comment
 | 
					
						
							|  |  |  | 		// in VertexShaderGen.cpp for details.
 | 
					
						
							|  |  |  | 		// NOTE: If we ever emulate antialiasing, the sample locations set by
 | 
					
						
							|  |  |  | 		// BP registers 0x01-0x04 need to be considered here.
 | 
					
						
							|  |  |  | 		const float pixel_center_correction = 7.0f / 12.0f - 0.5f; | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 		const float pixel_size_x = 2.f / Renderer::EFBToScaledXf(2.f * xfmem.viewport.wd); | 
					
						
							|  |  |  | 		const float pixel_size_y = 2.f / Renderer::EFBToScaledXf(2.f * xfmem.viewport.ht); | 
					
						
							| 
									
										
										
										
											2014-10-25 02:59:02 +02:00
										 |  |  | 		constants.pixelcentercorrection[0] = pixel_center_correction * pixel_size_x; | 
					
						
							|  |  |  | 		constants.pixelcentercorrection[1] = pixel_center_correction * pixel_size_y; | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2008-12-26 12:47:32 +00:00
										 |  |  | 		// This is so implementation-dependent that we can't have it here.
 | 
					
						
							| 
									
										
										
										
											2014-02-15 18:57:55 +01:00
										 |  |  | 		g_renderer->SetViewport(); | 
					
						
							| 
									
										
										
										
											2014-03-29 11:05:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 		// Update projection if the viewport isn't 1:1 useable
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 		if (!g_ActiveConfig.backend_info.bSupportsOversizedViewports) | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			ViewportCorrectionMatrix(s_viewportCorrection); | 
					
						
							| 
									
										
										
										
											2014-02-16 23:51:41 -05:00
										 |  |  | 			bProjectionChanged = true; | 
					
						
							| 
									
										
										
										
											2013-10-14 15:16:42 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 03:20:31 -06:00
										 |  |  | 	if (bProjectionChanged) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bProjectionChanged = false; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 		float *rawProjection = xfmem.projection.rawProjection; | 
					
						
							| 
									
										
										
										
											2009-02-15 20:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 		switch (xfmem.projection.type) | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 		case GX_PERSPECTIVE: | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[0] = rawProjection[0] * g_ActiveConfig.fAspectRatioHackW; | 
					
						
							| 
									
										
										
										
											2009-12-05 14:01:29 +00:00
										 |  |  | 			g_fProjectionMatrix[1] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[2] = rawProjection[1]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[3] = 0.0f; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[4] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[5] = rawProjection[2] * g_ActiveConfig.fAspectRatioHackH; | 
					
						
							|  |  |  | 			g_fProjectionMatrix[6] = rawProjection[3]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[7] = 0.0f; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[8] = 0.0f; | 
					
						
							|  |  |  | 			g_fProjectionMatrix[9] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[10] = rawProjection[4]; | 
					
						
							| 
									
										
										
										
											2009-04-10 10:25:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[11] = rawProjection[5]; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[12] = 0.0f; | 
					
						
							|  |  |  | 			g_fProjectionMatrix[13] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-12-30 19:26:10 +00:00
										 |  |  | 			// donkopunchstania suggested the GC GPU might round differently
 | 
					
						
							|  |  |  | 			// He had thus changed this to -(1 + epsilon) to fix clipping issues.
 | 
					
						
							|  |  |  | 			// I (neobrain) don't think his conjecture is true and thus reverted his change.
 | 
					
						
							|  |  |  | 			g_fProjectionMatrix[14] = -1.0f; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[15] = 0.0f; | 
					
						
							| 
									
										
										
										
											2009-02-15 20:49:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_0, g_fProjectionMatrix[0]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_1, g_fProjectionMatrix[1]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_2, g_fProjectionMatrix[2]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_3, g_fProjectionMatrix[3]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_4, g_fProjectionMatrix[4]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_5, g_fProjectionMatrix[5]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_6, g_fProjectionMatrix[6]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_7, g_fProjectionMatrix[7]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_8, g_fProjectionMatrix[8]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_9, g_fProjectionMatrix[9]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_10, g_fProjectionMatrix[10]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_11, g_fProjectionMatrix[11]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_12, g_fProjectionMatrix[12]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_13, g_fProjectionMatrix[13]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_14, g_fProjectionMatrix[14]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.gproj_15, g_fProjectionMatrix[15]); | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 		case GX_ORTHOGRAPHIC: | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[0] = rawProjection[0]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[1] = 0.0f; | 
					
						
							|  |  |  | 			g_fProjectionMatrix[2] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[3] = rawProjection[1]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			g_fProjectionMatrix[4] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[5] = rawProjection[2]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			g_fProjectionMatrix[6] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[7] = rawProjection[3]; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			g_fProjectionMatrix[8] = 0.0f; | 
					
						
							|  |  |  | 			g_fProjectionMatrix[9] = 0.0f; | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			g_fProjectionMatrix[10] = (g_ProjHack1.value + rawProjection[4]) * ((g_ProjHack1.sign == 0) ? 1.0f : g_ProjHack1.sign); | 
					
						
							|  |  |  | 			g_fProjectionMatrix[11] = (g_ProjHack2.value + rawProjection[5]) * ((g_ProjHack2.sign == 0) ? 1.0f : g_ProjHack2.sign); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			g_fProjectionMatrix[12] = 0.0f; | 
					
						
							|  |  |  | 			g_fProjectionMatrix[13] = 0.0f; | 
					
						
							| 
									
										
										
										
											2009-02-15 20:49:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 09:22:19 +00:00
										 |  |  | 			g_fProjectionMatrix[14] = 0.0f; | 
					
						
							| 
									
										
										
										
											2014-12-05 09:41:41 +01:00
										 |  |  | 			g_fProjectionMatrix[15] = 1.0f + FLT_EPSILON; // hack to fix depth clipping precision issues (such as Sonic Unleashed UI)
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-15 20:49:59 +00:00
										 |  |  | 			SETSTAT_FT(stats.g2proj_0, g_fProjectionMatrix[0]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_1, g_fProjectionMatrix[1]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_2, g_fProjectionMatrix[2]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_3, g_fProjectionMatrix[3]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_4, g_fProjectionMatrix[4]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_5, g_fProjectionMatrix[5]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_6, g_fProjectionMatrix[6]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_7, g_fProjectionMatrix[7]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_8, g_fProjectionMatrix[8]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_9, g_fProjectionMatrix[9]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_10, g_fProjectionMatrix[10]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_11, g_fProjectionMatrix[11]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_12, g_fProjectionMatrix[12]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_13, g_fProjectionMatrix[13]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_14, g_fProjectionMatrix[14]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.g2proj_15, g_fProjectionMatrix[15]); | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 			SETSTAT_FT(stats.proj_0, rawProjection[0]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.proj_1, rawProjection[1]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.proj_2, rawProjection[2]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.proj_3, rawProjection[3]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.proj_4, rawProjection[4]); | 
					
						
							|  |  |  | 			SETSTAT_FT(stats.proj_5, rawProjection[5]); | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2014-04-27 11:59:04 -07:00
										 |  |  | 			ERROR_LOG(VIDEO, "Unknown projection type: %d", xfmem.projection.type); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-24 13:10:13 +01:00
										 |  |  | 		PRIM_LOG("Projection: %f %f %f %f %f %f\n", rawProjection[0], rawProjection[1], rawProjection[2], rawProjection[3], rawProjection[4], rawProjection[5]); | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-16 18:52:32 +02:00
										 |  |  | 		if (g_ActiveConfig.bFreeLook && xfmem.projection.type == GX_PERSPECTIVE) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			Matrix44 mtxA; | 
					
						
							|  |  |  | 			Matrix44 mtxB; | 
					
						
							|  |  |  | 			Matrix44 viewMtx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Matrix44::Translate(mtxA, s_fViewTranslationVector); | 
					
						
							|  |  |  | 			Matrix44::LoadMatrix33(mtxB, s_viewRotationMatrix); | 
					
						
							|  |  |  | 			Matrix44::Multiply(mtxB, mtxA, viewMtx); // view = rotation x translation
 | 
					
						
							|  |  |  | 			Matrix44::Set(mtxB, g_fProjectionMatrix); | 
					
						
							|  |  |  | 			Matrix44::Multiply(mtxB, viewMtx, mtxA); // mtxA = projection x view
 | 
					
						
							| 
									
										
										
										
											2011-05-12 02:14:45 +00:00
										 |  |  | 			Matrix44::Multiply(s_viewportCorrection, mtxA, mtxB); // mtxB = viewportCorrection x mtxA
 | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 			memcpy(constants.projection, mtxB.data, 4*16); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-05-12 02:14:45 +00:00
										 |  |  | 			Matrix44 projMtx; | 
					
						
							|  |  |  | 			Matrix44::Set(projMtx, g_fProjectionMatrix); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Matrix44 correctedMtx; | 
					
						
							|  |  |  | 			Matrix44::Multiply(s_viewportCorrection, projMtx, correctedMtx); | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 			memcpy(constants.projection, correctedMtx.data, 4*16); | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-10-26 19:17:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-30 23:29:56 +01:00
										 |  |  | 		if (g_ActiveConfig.iStereoMode > 0 && xfmem.projection.type == GX_PERSPECTIVE) | 
					
						
							| 
									
										
										
										
											2014-10-26 19:17:00 +01:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-11-27 15:28:00 +01:00
										 |  |  | 			float offset = (g_ActiveConfig.iStereoSeparation / 1000.0f) * (g_ActiveConfig.iStereoSeparationPercent / 100.0f); | 
					
						
							| 
									
										
										
										
											2014-11-08 14:31:26 +01:00
										 |  |  | 			constants.stereoparams[0] = (g_ActiveConfig.bStereoSwapEyes) ? offset : -offset; | 
					
						
							|  |  |  | 			constants.stereoparams[1] = (g_ActiveConfig.bStereoSwapEyes) ? -offset : offset; | 
					
						
							| 
									
										
										
										
											2014-11-27 15:28:00 +01:00
										 |  |  | 			constants.stereoparams[2] = (g_ActiveConfig.iStereoConvergence / 10.0f) * (g_ActiveConfig.iStereoConvergencePercent / 100.0f); | 
					
						
							| 
									
										
										
										
											2014-10-26 19:17:00 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2014-11-08 14:31:26 +01:00
										 |  |  | 			constants.stereoparams[0] = constants.stereoparams[1] = 0; | 
					
						
							| 
									
										
										
										
											2014-10-26 19:17:00 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-08 23:58:51 +02:00
										 |  |  | 		dirty = true; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | void VertexShaderManager::InvalidateXFRange(int start, int end) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 	if (((u32)start >= (u32)g_main_cp_state.matrix_index_a.PosNormalMtxIdx * 4 && | 
					
						
							|  |  |  | 		 (u32)start <  (u32)g_main_cp_state.matrix_index_a.PosNormalMtxIdx * 4 + 12) || | 
					
						
							|  |  |  | 		((u32)start >= XFMEM_NORMALMATRICES + ((u32)g_main_cp_state.matrix_index_a.PosNormalMtxIdx & 31) * 3 && | 
					
						
							|  |  |  | 		 (u32)start <  XFMEM_NORMALMATRICES + ((u32)g_main_cp_state.matrix_index_a.PosNormalMtxIdx & 31) * 3 + 9)) | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bPosNormalMatrixChanged = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 	if (((u32)start >= (u32)g_main_cp_state.matrix_index_a.Tex0MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_a.Tex0MtxIdx*4+12) || | 
					
						
							|  |  |  | 		((u32)start >= (u32)g_main_cp_state.matrix_index_a.Tex1MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_a.Tex1MtxIdx*4+12) || | 
					
						
							|  |  |  | 		((u32)start >= (u32)g_main_cp_state.matrix_index_a.Tex2MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_a.Tex2MtxIdx*4+12) || | 
					
						
							|  |  |  | 		((u32)start >= (u32)g_main_cp_state.matrix_index_a.Tex3MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_a.Tex3MtxIdx*4+12)) | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bTexMatricesChanged[0] = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 	if (((u32)start >= (u32)g_main_cp_state.matrix_index_b.Tex4MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_b.Tex4MtxIdx*4+12) || | 
					
						
							|  |  |  | 		((u32)start >= (u32)g_main_cp_state.matrix_index_b.Tex5MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_b.Tex5MtxIdx*4+12) || | 
					
						
							|  |  |  | 		((u32)start >= (u32)g_main_cp_state.matrix_index_b.Tex6MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_b.Tex6MtxIdx*4+12) || | 
					
						
							|  |  |  | 		((u32)start >= (u32)g_main_cp_state.matrix_index_b.Tex7MtxIdx*4 && (u32)start < (u32)g_main_cp_state.matrix_index_b.Tex7MtxIdx*4+12)) | 
					
						
							| 
									
										
										
										
											2013-04-24 09:21:54 -04:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		bTexMatricesChanged[1] = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (start < XFMEM_POSMATRICES_END) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		if (nTransformMatricesChanged[0] == -1) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			nTransformMatricesChanged[0] = start; | 
					
						
							|  |  |  | 			nTransformMatricesChanged[1] = end>XFMEM_POSMATRICES_END?XFMEM_POSMATRICES_END:end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			if (nTransformMatricesChanged[0] > start) nTransformMatricesChanged[0] = start; | 
					
						
							|  |  |  | 			if (nTransformMatricesChanged[1] < end) nTransformMatricesChanged[1] = end>XFMEM_POSMATRICES_END?XFMEM_POSMATRICES_END:end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	if (start < XFMEM_NORMALMATRICES_END && end > XFMEM_NORMALMATRICES) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		int _start = start < XFMEM_NORMALMATRICES ? 0 : start-XFMEM_NORMALMATRICES; | 
					
						
							|  |  |  | 		int _end = end < XFMEM_NORMALMATRICES_END ? end-XFMEM_NORMALMATRICES : XFMEM_NORMALMATRICES_END-XFMEM_NORMALMATRICES; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		if (nNormalMatricesChanged[0] == -1) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			nNormalMatricesChanged[0] = _start; | 
					
						
							|  |  |  | 			nNormalMatricesChanged[1] = _end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			if (nNormalMatricesChanged[0] > _start) nNormalMatricesChanged[0] = _start; | 
					
						
							|  |  |  | 			if (nNormalMatricesChanged[1] < _end) nNormalMatricesChanged[1] = _end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	if (start < XFMEM_POSTMATRICES_END && end > XFMEM_POSTMATRICES) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		int _start = start < XFMEM_POSTMATRICES ? XFMEM_POSTMATRICES : start-XFMEM_POSTMATRICES; | 
					
						
							|  |  |  | 		int _end = end < XFMEM_POSTMATRICES_END ? end-XFMEM_POSTMATRICES : XFMEM_POSTMATRICES_END-XFMEM_POSTMATRICES; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		if (nPostTransformMatricesChanged[0] == -1) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			nPostTransformMatricesChanged[0] = _start; | 
					
						
							|  |  |  | 			nPostTransformMatricesChanged[1] = _end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			if (nPostTransformMatricesChanged[0] > _start) nPostTransformMatricesChanged[0] = _start; | 
					
						
							|  |  |  | 			if (nPostTransformMatricesChanged[1] < _end) nPostTransformMatricesChanged[1] = _end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	if (start < XFMEM_LIGHTS_END && end > XFMEM_LIGHTS) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		int _start = start < XFMEM_LIGHTS ? XFMEM_LIGHTS : start-XFMEM_LIGHTS; | 
					
						
							|  |  |  | 		int _end = end < XFMEM_LIGHTS_END ? end-XFMEM_LIGHTS : XFMEM_LIGHTS_END-XFMEM_LIGHTS; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		if (nLightsChanged[0] == -1 ) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			nLightsChanged[0] = _start; | 
					
						
							|  |  |  | 			nLightsChanged[1] = _end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			if (nLightsChanged[0] > _start) nLightsChanged[0] = _start; | 
					
						
							|  |  |  | 			if (nLightsChanged[1] < _end)   nLightsChanged[1] = _end; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | void VertexShaderManager::SetTexMatrixChangedA(u32 Value) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 	if (g_main_cp_state.matrix_index_a.Hex != Value) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		VertexManager::Flush(); | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 		if (g_main_cp_state.matrix_index_a.PosNormalMtxIdx != (Value&0x3f)) | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 			bPosNormalMatrixChanged = true; | 
					
						
							|  |  |  | 		bTexMatricesChanged[0] = true; | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 		g_main_cp_state.matrix_index_a.Hex = Value; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | void VertexShaderManager::SetTexMatrixChangedB(u32 Value) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 	if (g_main_cp_state.matrix_index_b.Hex != Value) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 		VertexManager::Flush(); | 
					
						
							|  |  |  | 		bTexMatricesChanged[1] = true; | 
					
						
							| 
									
										
										
										
											2014-08-27 13:26:06 -04:00
										 |  |  | 		g_main_cp_state.matrix_index_b.Hex = Value; | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | void VertexShaderManager::SetViewportChanged() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	bViewportChanged = true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 18:25:34 +00:00
										 |  |  | void VertexShaderManager::SetProjectionChanged() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	bProjectionChanged = true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-07 21:57:18 +02:00
										 |  |  | void VertexShaderManager::SetMaterialColorChanged(int index, u32 color) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:25:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-10-21 20:42:55 -04:00
										 |  |  | 	nMaterialsChanged[index] = true; | 
					
						
							| 
									
										
										
										
											2009-02-08 22:08:20 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:14:42 -04:00
										 |  |  | void VertexShaderManager::TranslateView(float x, float y, float z) | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	float result[3]; | 
					
						
							| 
									
										
										
										
											2013-07-22 00:14:42 -04:00
										 |  |  | 	float vector[3] = { x,z,y }; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	Matrix33::Multiply(s_viewInvRotationMatrix, vector, result); | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	for (int i = 0; i < 3; i++) | 
					
						
							|  |  |  | 		s_fViewTranslationVector[i] += result[i]; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	bProjectionChanged = true; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VertexShaderManager::RotateView(float x, float y) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	s_fViewRotation[0] += x; | 
					
						
							|  |  |  | 	s_fViewRotation[1] += y; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	Matrix33 mx; | 
					
						
							|  |  |  | 	Matrix33 my; | 
					
						
							|  |  |  | 	Matrix33::RotateX(mx, s_fViewRotation[1]); | 
					
						
							|  |  |  | 	Matrix33::RotateY(my, s_fViewRotation[0]); | 
					
						
							|  |  |  | 	Matrix33::Multiply(mx, my, s_viewRotationMatrix); | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	// reverse rotation
 | 
					
						
							|  |  |  | 	Matrix33::RotateX(mx, -s_fViewRotation[1]); | 
					
						
							|  |  |  | 	Matrix33::RotateY(my, -s_fViewRotation[0]); | 
					
						
							|  |  |  | 	Matrix33::Multiply(my, mx, s_viewInvRotationMatrix); | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	bProjectionChanged = true; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VertexShaderManager::ResetView() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	memset(s_fViewTranslationVector, 0, sizeof(s_fViewTranslationVector)); | 
					
						
							|  |  |  | 	Matrix33::LoadIdentity(s_viewRotationMatrix); | 
					
						
							|  |  |  | 	Matrix33::LoadIdentity(s_viewInvRotationMatrix); | 
					
						
							|  |  |  | 	s_fViewRotation[0] = s_fViewRotation[1] = 0.0f; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 01:38:22 +00:00
										 |  |  | 	bProjectionChanged = true; | 
					
						
							| 
									
										
										
										
											2009-04-19 10:10:45 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-01-01 12:46:02 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void VertexShaderManager::DoState(PointerWrap &p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	p.Do(g_fProjectionMatrix); | 
					
						
							|  |  |  | 	p.Do(s_viewportCorrection); | 
					
						
							|  |  |  | 	p.Do(s_viewRotationMatrix); | 
					
						
							|  |  |  | 	p.Do(s_viewInvRotationMatrix); | 
					
						
							|  |  |  | 	p.Do(s_fViewTranslationVector); | 
					
						
							|  |  |  | 	p.Do(s_fViewRotation); | 
					
						
							| 
									
										
										
										
											2013-10-07 16:02:24 +02:00
										 |  |  | 	p.Do(constants); | 
					
						
							|  |  |  | 	p.Do(dirty); | 
					
						
							| 
									
										
										
										
											2012-01-01 12:46:02 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p.GetMode() == PointerWrap::MODE_READ) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		Dirty(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |