| 
									
										
										
										
											2009-07-28 21:32:10 +00:00
										 |  |  | // Copyright (C) 2003 Dolphin Project.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // 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 <stdio.h>
 | 
					
						
							|  |  |  | #include <cmath>
 | 
					
						
							|  |  |  | #include <assert.h>
 | 
					
						
							| 
									
										
										
										
											2009-10-14 01:58:39 +00:00
										 |  |  | #include <locale.h>
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 23:57:12 +00:00
										 |  |  | #include "LightingShaderGen.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-26 17:33:53 +00:00
										 |  |  | #include "PixelShaderGen.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | #include "XFMemory.h"  // for texture projection mode
 | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | #include "BPMemory.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | #include "VideoConfig.h"
 | 
					
						
							|  |  |  | #include "NativeVertexFormat.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 03:36:32 +00:00
										 |  |  | PIXELSHADERUID last_pixel_shader_uid; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +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 ....
 | 
					
						
							| 
									
										
										
										
											2009-07-03 18:33:28 +00:00
										 |  |  | // It would likely be a lot more efficient to build this incrementally as the attributes
 | 
					
						
							|  |  |  | // are set...
 | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | void GetPixelShaderId(PIXELSHADERUID *uid, DSTALPHA_MODE dstAlphaMode) | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-23 23:51:34 +00:00
										 |  |  | 	u32 numstages = bpmem.genMode.numtevstages + 1; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 	u32 projtexcoords = 0; | 
					
						
							| 
									
										
										
										
											2010-07-23 23:51:34 +00:00
										 |  |  | 	for (u32 i = 0; i < numstages; i++) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		if (bpmem.tevorders[i/2].getEnable(i & 1)) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			int texcoord = bpmem.tevorders[i / 2].getTexCoord(i & 1); | 
					
						
							| 
									
										
										
										
											2011-02-05 18:25:34 +00:00
										 |  |  | 			if (xfregs.texMtxInfo[i].projection) | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 				projtexcoords |= 1 << texcoord; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-17 17:44:09 +00:00
										 |  |  | 	uid->values[0] = (u32)bpmem.genMode.numtevstages | | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 				   ((u32)bpmem.genMode.numindstages << 4) | | 
					
						
							|  |  |  | 				   ((u32)bpmem.genMode.numtexgens << 7) | | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 				   ((u32)dstAlphaMode << 11) | | 
					
						
							|  |  |  | 				   ((u32)((bpmem.alphaFunc.hex >> 16) & 0xff) << 13) | | 
					
						
							|  |  |  | 				   (projtexcoords << 21) | | 
					
						
							|  |  |  | 				   ((u32)bpmem.ztex2.op << 29); | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// swap table
 | 
					
						
							|  |  |  | 	for (int i = 0; i < 8; i += 2) | 
					
						
							| 
									
										
										
										
											2010-01-17 17:44:09 +00:00
										 |  |  | 		((u8*)&uid->values[1])[i / 2] = (bpmem.tevksel[i].hex & 0xf) | ((bpmem.tevksel[i + 1].hex & 0xf) << 4); | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-19 22:24:19 +00:00
										 |  |  | 	u32 enableZTexture = (bpmem.ztex2.op != ZTEXTURE_DISABLE && !bpmem.zcontrol.zcomploc && bpmem.zmode.testenable && bpmem.zmode.updateenable) || g_ActiveConfig.bEnablePerPixelDepth ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2009-11-21 02:49:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 	uid->values[2] = (u32)bpmem.fog.c_proj_fsel.fsel | | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				   ((u32)bpmem.fog.c_proj_fsel.proj << 3) | | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 				   ((u32)enableZTexture << 4) | ((u32)bpmem.fogRange.Base.Enabled << 5); | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-19 00:50:34 +00:00
										 |  |  | 	if(g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		for (int i = 0; i < 2; ++i) { | 
					
						
							| 
									
										
										
										
											2011-02-05 18:25:34 +00:00
										 |  |  | 			uid->values[3 + i] = xfregs.color[i].enablelighting ? | 
					
						
							|  |  |  | 				(u32)xfregs.color[i].hex : | 
					
						
							|  |  |  | 				(u32)xfregs.color[i].matsource; | 
					
						
							|  |  |  | 			uid->values[3 + i] |= (xfregs.alpha[i].enablelighting ? | 
					
						
							|  |  |  | 				(u32)xfregs.alpha[i].hex : | 
					
						
							|  |  |  | 				(u32)xfregs.alpha[i].matsource) << 15; | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-19 00:50:34 +00:00
										 |  |  | 	uid->values[4] |= (g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) << 31; | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int hdr = 5; | 
					
						
							| 
									
										
										
										
											2010-01-17 17:44:09 +00:00
										 |  |  | 	u32 *pcurvalue = &uid->values[hdr]; | 
					
						
							| 
									
										
										
										
											2010-07-23 23:51:34 +00:00
										 |  |  | 	for (u32 i = 0; i < numstages; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 		TevStageCombiner::ColorCombiner &cc = bpmem.combiners[i].colorC; | 
					
						
							|  |  |  | 		TevStageCombiner::AlphaCombiner &ac = bpmem.combiners[i].alphaC; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:46:33 +00:00
										 |  |  | 		u32 val0 = cc.hex & 0xffffff; | 
					
						
							|  |  |  | 		u32 val1 = ac.hex & 0xffffff; | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		val0 |= bpmem.tevksel[i / 2].getKC(i & 1) << 24; | 
					
						
							|  |  |  | 		val1 |= bpmem.tevksel[i / 2].getKA(i & 1) << 24; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		pcurvalue[0] = val0; | 
					
						
							|  |  |  | 		pcurvalue[1] = val1; | 
					
						
							|  |  |  | 		pcurvalue += 2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-23 23:51:34 +00:00
										 |  |  | 	for (u32 i = 0; i < numstages / 2; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		u32 val0, val1; | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 		if (bpmem.tevorders[i].hex & 0x40) | 
					
						
							|  |  |  | 			val0 = bpmem.tevorders[i].hex & 0x3ff; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 			val0 = bpmem.tevorders[i].hex & 0x380; | 
					
						
							|  |  |  | 		if (bpmem.tevorders[i].hex & 0x40000) | 
					
						
							|  |  |  | 			val1 = (bpmem.tevorders[i].hex & 0x3ff000) >> 12; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 			val1 = (bpmem.tevorders[i].hex & 0x380000) >> 12; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		switch (i % 3) { | 
					
						
							|  |  |  | 			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; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			default: PanicAlert("Unknown case for Tev Stages / 2: %08x", (i % 3)); | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-23 23:51:34 +00:00
										 |  |  | 	if (numstages & 1) { // odd
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		u32 val0; | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 		if (bpmem.tevorders[bpmem.genMode.numtevstages/2].hex & 0x40) | 
					
						
							| 
									
										
										
										
											2009-07-03 18:33:28 +00:00
										 |  |  | 			val0 = bpmem.tevorders[bpmem.genMode.numtevstages/2].hex & 0x3ff; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 			val0 = bpmem.tevorders[bpmem.genMode.numtevstages/2].hex & 0x380; | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		switch (bpmem.genMode.numtevstages % 3) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 		case 0: pcurvalue[0] = val0; break; | 
					
						
							|  |  |  | 		case 1: pcurvalue[0] |= val0 << 20; break; | 
					
						
							|  |  |  | 		case 2: pcurvalue[1] |= val0 << 10; pcurvalue++; break; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		default: PanicAlert("Unknown case for Tev Stages: %08x", bpmem.genMode.numtevstages % 3); | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 	if ((bpmem.genMode.numtevstages % 3) != 2) | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		++pcurvalue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-17 17:44:09 +00:00
										 |  |  | 	uid->tevstages = (u32)(pcurvalue - &uid->values[0] - hdr); | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	for (u32 i = 0; i < bpmem.genMode.numindstages; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 		u32 val = bpmem.tevind[i].hex & 0x1fffff; // 21 bits
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		switch (i % 3) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 		case 0: pcurvalue[0] = val; break; | 
					
						
							|  |  |  | 		case 1: pcurvalue[0] |= val << 21; pcurvalue[1] = val >> 11; ++pcurvalue; break; | 
					
						
							|  |  |  | 		case 2: pcurvalue[0] |= val << 10; ++pcurvalue; break; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		default: PanicAlert("Unknown case for Ind Stages: %08x", (i % 3)); | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// yeah, well ....
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	uid->indstages = (u32)(pcurvalue - &uid->values[0] - (hdr - 1) - uid->tevstages); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-26 10:43:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | //   old tev->pixelshader notes
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | //   color for this stage (alpha, color) is given by bpmem.tevorders[0].colorchan0
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | //   konstant for this stage (alpha, color) is given by bpmem.tevksel
 | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | //   inputs are given by bpmem.combiners[0].colorC.a/b/c/d     << could be current chan color
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | //   according to GXTevColorArg table above
 | 
					
						
							|  |  |  | //   output is given by .outreg
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | //   tevtemp is set according to swapmodetables and
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | static void WriteStage(char *&p, int n, API_TYPE ApiType); | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | static void SampleTexture(char *&p, const char *destination, const char *texcoords, const char *texswap, int texmap, API_TYPE ApiType); | 
					
						
							| 
									
										
										
										
											2010-02-24 03:38:36 +00:00
										 |  |  | // static void WriteAlphaCompare(char *&p, int num, int comp);
 | 
					
						
							| 
									
										
										
										
											2011-01-25 22:30:15 +00:00
										 |  |  | static bool WriteAlphaTest(char *&p, API_TYPE ApiType,DSTALPHA_MODE dstAlphaMode); | 
					
						
							| 
									
										
										
										
											2009-05-15 02:39:55 +00:00
										 |  |  | static void WriteFog(char *&p); | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | static int AlphaPreTest(); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const char *tevKSelTableC[] = // KCSEL
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"1.0f,1.0f,1.0f",    // 1   = 0x00
 | 
					
						
							|  |  |  | 	"0.875f,0.875f,0.875f", // 7_8 = 0x01
 | 
					
						
							|  |  |  | 	"0.75f,0.75f,0.75f",    // 3_4 = 0x02
 | 
					
						
							|  |  |  | 	"0.625f,0.625f,0.625f", // 5_8 = 0x03
 | 
					
						
							|  |  |  | 	"0.5f,0.5f,0.5f",       // 1_2 = 0x04
 | 
					
						
							|  |  |  | 	"0.375f,0.375f,0.375f", // 3_8 = 0x05
 | 
					
						
							|  |  |  | 	"0.25f,0.25f,0.25f",    // 1_4 = 0x06
 | 
					
						
							|  |  |  | 	"0.125f,0.125f,0.125f", // 1_8 = 0x07
 | 
					
						
							|  |  |  | 	"ERROR", // 0x08
 | 
					
						
							|  |  |  | 	"ERROR", // 0x09
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0a
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0b
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].rgb", // K0 = 0x0C
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].rgb", // K1 = 0x0D
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].rgb", // K2 = 0x0E
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].rgb", // K3 = 0x0F
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].rrr", // K0_R = 0x10
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].rrr", // K1_R = 0x11
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].rrr", // K2_R = 0x12
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].rrr", // K3_R = 0x13
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	I_KCOLORS"[0].ggg", // K0_G = 0x14
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	I_KCOLORS"[1].ggg", // K1_G = 0x15
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].ggg", // K2_G = 0x16
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].ggg", // K3_G = 0x17
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].bbb", // K0_B = 0x18
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].bbb", // K1_B = 0x19
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].bbb", // K2_B = 0x1A
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].bbb", // K3_B = 0x1B
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].aaa", // K0_A = 0x1C
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].aaa", // K1_A = 0x1D
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].aaa", // K2_A = 0x1E
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].aaa", // K3_A = 0x1F
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevKSelTableA[] = // KASEL
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"1.0f",  // 1   = 0x00
 | 
					
						
							|  |  |  | 	"0.875f",// 7_8 = 0x01
 | 
					
						
							|  |  |  | 	"0.75f", // 3_4 = 0x02
 | 
					
						
							|  |  |  | 	"0.625f",// 5_8 = 0x03
 | 
					
						
							|  |  |  | 	"0.5f",  // 1_2 = 0x04
 | 
					
						
							|  |  |  | 	"0.375f",// 3_8 = 0x05
 | 
					
						
							|  |  |  | 	"0.25f", // 1_4 = 0x06
 | 
					
						
							|  |  |  | 	"0.125f",// 1_8 = 0x07
 | 
					
						
							|  |  |  | 	"ERROR", // 0x08
 | 
					
						
							|  |  |  | 	"ERROR", // 0x09
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0a
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0b
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0c
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0d
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0e
 | 
					
						
							|  |  |  | 	"ERROR", // 0x0f
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].r", // K0_R = 0x10
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].r", // K1_R = 0x11
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].r", // K2_R = 0x12
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].r", // K3_R = 0x13
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].g", // K0_G = 0x14
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].g", // K1_G = 0x15
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].g", // K2_G = 0x16
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].g", // K3_G = 0x17
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].b", // K0_B = 0x18
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].b", // K1_B = 0x19
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].b", // K2_B = 0x1A
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].b", // K3_B = 0x1B
 | 
					
						
							|  |  |  | 	I_KCOLORS"[0].a", // K0_A = 0x1C
 | 
					
						
							|  |  |  | 	I_KCOLORS"[1].a", // K1_A = 0x1D
 | 
					
						
							|  |  |  | 	I_KCOLORS"[2].a", // K2_A = 0x1E
 | 
					
						
							|  |  |  | 	I_KCOLORS"[3].a", // K3_A = 0x1F
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevScaleTable[] = // CS
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"1.0f",  // SCALE_1
 | 
					
						
							|  |  |  | 	"2.0f",  // SCALE_2
 | 
					
						
							|  |  |  | 	"4.0f",  // SCALE_4
 | 
					
						
							|  |  |  | 	"0.5f",  // DIVIDE_2
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevBiasTable[] = // TB
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"",       // ZERO,
 | 
					
						
							|  |  |  | 	"+0.5f",  // ADDHALF,
 | 
					
						
							|  |  |  | 	"-0.5f",  // SUBHALF,
 | 
					
						
							|  |  |  | 	"", | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevOpTable[] = { // TEV
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"+",      // TEVOP_ADD = 0,
 | 
					
						
							|  |  |  | 	"-",      // TEVOP_SUB = 1,
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevCInputTable[] = // CC
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"(prev.rgb)",               // CPREV,
 | 
					
						
							|  |  |  | 	"(prev.aaa)",         // APREV,
 | 
					
						
							|  |  |  | 	"(c0.rgb)",                 // C0,
 | 
					
						
							|  |  |  | 	"(c0.aaa)",           // A0,
 | 
					
						
							|  |  |  | 	"(c1.rgb)",                 // C1,
 | 
					
						
							|  |  |  | 	"(c1.aaa)",           // A1,
 | 
					
						
							|  |  |  | 	"(c2.rgb)",                 // C2,
 | 
					
						
							|  |  |  | 	"(c2.aaa)",           // A2,
 | 
					
						
							|  |  |  | 	"(textemp.rgb)",            // TEXC,
 | 
					
						
							|  |  |  | 	"(textemp.aaa)",      // TEXA,
 | 
					
						
							|  |  |  | 	"(rastemp.rgb)",            // RASC,
 | 
					
						
							|  |  |  | 	"(rastemp.aaa)",      // RASA,
 | 
					
						
							|  |  |  | 	"float3(1.0f, 1.0f, 1.0f)",              // ONE
 | 
					
						
							|  |  |  | 	"float3(0.5f, 0.5f, 0.5f)",                 // HALF
 | 
					
						
							|  |  |  | 	"(konsttemp.rgb)", //"konsttemp.rgb",        // KONST
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",              // ZERO
 | 
					
						
							| 
									
										
										
										
											2010-05-27 21:43:07 +00:00
										 |  |  | 	///aded extra values to map clamped values
 | 
					
						
							|  |  |  | 	"(cprev.rgb)",               // CPREV,
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"(cprev.aaa)",         // APREV,
 | 
					
						
							|  |  |  | 	"(cc0.rgb)",                 // C0,
 | 
					
						
							|  |  |  | 	"(cc0.aaa)",           // A0,
 | 
					
						
							|  |  |  | 	"(cc1.rgb)",                 // C1,
 | 
					
						
							|  |  |  | 	"(cc1.aaa)",           // A1,
 | 
					
						
							|  |  |  | 	"(cc2.rgb)",                 // C2,
 | 
					
						
							|  |  |  | 	"(cc2.aaa)",           // A2,
 | 
					
						
							|  |  |  | 	"(textemp.rgb)",            // TEXC,
 | 
					
						
							|  |  |  | 	"(textemp.aaa)",      // TEXA,
 | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	"(crastemp.rgb)",            // RASC,
 | 
					
						
							|  |  |  | 	"(crastemp.aaa)",      // RASA,
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"float3(1.0f, 1.0f, 1.0f)",              // ONE
 | 
					
						
							|  |  |  | 	"float3(0.5f, 0.5f, 0.5f)",                 // HALF
 | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	"(ckonsttemp.rgb)", //"konsttemp.rgb",        // KONST
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"float3(0.0f, 0.0f, 0.0f)",              // ZERO
 | 
					
						
							|  |  |  | 	"PADERROR", "PADERROR", "PADERROR", "PADERROR" | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevAInputTable[] = // CA
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"prev",            // APREV,
 | 
					
						
							|  |  |  | 	"c0",              // A0,
 | 
					
						
							|  |  |  | 	"c1",              // A1,
 | 
					
						
							|  |  |  | 	"c2",              // A2,
 | 
					
						
							|  |  |  | 	"textemp",         // TEXA,
 | 
					
						
							|  |  |  | 	"rastemp",         // RASA,
 | 
					
						
							|  |  |  | 	"konsttemp",       // KONST,  (hw1 had quarter)
 | 
					
						
							|  |  |  | 	"float4(0.0f, 0.0f, 0.0f, 0.0f)", // ZERO
 | 
					
						
							|  |  |  | 	///aded extra values to map clamped values
 | 
					
						
							| 
									
										
										
										
											2010-05-27 21:43:07 +00:00
										 |  |  | 	"cprev",            // APREV,
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"cc0",              // A0,
 | 
					
						
							|  |  |  | 	"cc1",              // A1,
 | 
					
						
							|  |  |  | 	"cc2",              // A2,
 | 
					
						
							|  |  |  | 	"textemp",         // TEXA,
 | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	"crastemp",         // RASA,
 | 
					
						
							|  |  |  | 	"ckonsttemp",       // KONST,  (hw1 had quarter)
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"float4(0.0f, 0.0f, 0.0f, 0.0f)", // ZERO
 | 
					
						
							|  |  |  | 	"PADERROR", "PADERROR", "PADERROR", "PADERROR", | 
					
						
							|  |  |  | 	"PADERROR", "PADERROR", "PADERROR", "PADERROR", | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const char *tevRasTable[] = | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"colors_0", | 
					
						
							|  |  |  | 	"colors_1", | 
					
						
							|  |  |  | 	"ERROR", //2
 | 
					
						
							|  |  |  | 	"ERROR", //3
 | 
					
						
							|  |  |  | 	"ERROR", //4
 | 
					
						
							|  |  |  | 	"alphabump", // use bump alpha
 | 
					
						
							|  |  |  | 	"(alphabump*(255.0f/248.0f))", //normalized
 | 
					
						
							|  |  |  | 	"float4(0.0f, 0.0f, 0.0f, 0.0f)", // zero
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | static const char *alphaRef[2] = | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	I_ALPHA"[0].r", | 
					
						
							|  |  |  | 	I_ALPHA"[0].g" | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //static const char *tevTexFunc[] = { "tex2D", "texRECT" };
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevCOutputTable[]  = { "prev.rgb", "c0.rgb", "c1.rgb", "c2.rgb" }; | 
					
						
							|  |  |  | static const char *tevAOutputTable[]  = { "prev.a", "c0.a", "c1.a", "c2.a" }; | 
					
						
							| 
									
										
										
										
											2008-12-26 17:26:18 +00:00
										 |  |  | static const char *tevIndAlphaSel[]   = {"", "x", "y", "z"}; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | //static const char *tevIndAlphaScale[] = {"", "*32", "*16", "*8"};
 | 
					
						
							|  |  |  | static const char *tevIndAlphaScale[] = {"*(248.0f/255.0f)", "*(224.0f/255.0f)", "*(240.0f/255.0f)", "*(248.0f/255.0f)"}; | 
					
						
							| 
									
										
										
										
											2008-12-26 17:26:18 +00:00
										 |  |  | static const char *tevIndBiasField[]  = {"", "x", "y", "xy", "z", "xz", "yz", "xyz"}; // indexed by bias
 | 
					
						
							|  |  |  | static const char *tevIndBiasAdd[]    = {"-128.0f", "1.0f", "1.0f", "1.0f" }; // indexed by fmt
 | 
					
						
							| 
									
										
										
										
											2010-04-03 22:22:55 +00:00
										 |  |  | static const char *tevIndWrapStart[]  = {"0.0f", "256.0f", "128.0f", "64.0f", "32.0f", "16.0f", "0.001f" }; | 
					
						
							| 
									
										
										
										
											2009-04-15 03:55:38 +00:00
										 |  |  | static const char *tevIndFmtScale[]   = {"255.0f", "31.0f", "15.0f", "7.0f" }; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define WRITE p+=sprintf
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *swapColors = "rgba"; | 
					
						
							|  |  |  | static char swapModeTable[4][5]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char text[16384]; | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | static bool DepthTextureEnable; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | struct RegisterState | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bool ColorNeedOverflowControl; | 
					
						
							|  |  |  | 	bool AlphaNeedOverflowControl; | 
					
						
							|  |  |  | 	bool AuxStored; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static RegisterState RegisterStates[4]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | static void BuildSwapModeTable() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	for (int i = 0; i < 4; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		swapModeTable[i][0] = swapColors[bpmem.tevksel[i*2].swap1]; | 
					
						
							|  |  |  | 		swapModeTable[i][1] = swapColors[bpmem.tevksel[i*2].swap2]; | 
					
						
							|  |  |  | 		swapModeTable[i][2] = swapColors[bpmem.tevksel[i*2+1].swap1]; | 
					
						
							|  |  |  | 		swapModeTable[i][3] = swapColors[bpmem.tevksel[i*2+1].swap2]; | 
					
						
							|  |  |  | 		swapModeTable[i][4] = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-10 19:16:09 +00:00
										 |  |  | const char *GeneratePixelShaderCode(DSTALPHA_MODE dstAlphaMode, API_TYPE ApiType, u32 components) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-14 01:58:39 +00:00
										 |  |  | 	setlocale(LC_NUMERIC, "C"); // Reset locale for compilation
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	text[sizeof(text) - 1] = 0x7C;  // canary
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	BuildSwapModeTable(); | 
					
						
							|  |  |  | 	int numStages = bpmem.genMode.numtevstages + 1; | 
					
						
							|  |  |  | 	int numTexgen = bpmem.genMode.numtexgens; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	char *p = text; | 
					
						
							|  |  |  | 	WRITE(p, "//Pixel Shader for TEV stages\n"); | 
					
						
							|  |  |  | 	WRITE(p, "//%i TEV stages, %i texgens, %i IND stages\n", | 
					
						
							| 
									
										
										
										
											2009-06-22 09:31:30 +00:00
										 |  |  | 		numStages, numTexgen, bpmem.genMode.numindstages); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	int nIndirectStagesUsed = 0; | 
					
						
							|  |  |  | 	if (bpmem.genMode.numindstages > 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		for (int i = 0; i < numStages; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			if (bpmem.tevind[i].IsActive() && bpmem.tevind[i].bt < bpmem.genMode.numindstages) | 
					
						
							|  |  |  | 				nIndirectStagesUsed |= 1 << bpmem.tevind[i].bt; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-19 22:24:19 +00:00
										 |  |  | 	DepthTextureEnable = (bpmem.ztex2.op != ZTEXTURE_DISABLE && !bpmem.zcontrol.zcomploc && bpmem.zmode.testenable && bpmem.zmode.updateenable) || g_ActiveConfig.bEnablePerPixelDepth ; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// Declare samplers
 | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if(ApiType != API_D3D11) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 		WRITE(p, "uniform sampler2D "); | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2010-06-14 14:36:01 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 		WRITE(p, "sampler "); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 	bool bfirst = true; | 
					
						
							|  |  |  | 	for (int i = 0; i < 8; ++i) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WRITE(p, "%s samp%d : register(s%d)", bfirst?"":",", i, i); | 
					
						
							|  |  |  | 		bfirst = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	WRITE(p, ";\n"); | 
					
						
							|  |  |  | 	if(ApiType == API_D3D11) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WRITE(p, "Texture2D "); | 
					
						
							|  |  |  | 		bfirst = true; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		for (int i = 0; i < 8; ++i) | 
					
						
							| 
									
										
										
										
											2010-06-14 14:36:01 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 			WRITE(p, "%s Tex%d : register(t%d)", bfirst?"":",", i, i); | 
					
						
							|  |  |  | 			bfirst = false; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		WRITE(p, ";\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	WRITE(p, "\n"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	WRITE(p, "uniform float4 "I_COLORS"[4] : register(c%d);\n", C_COLORS); | 
					
						
							|  |  |  | 	WRITE(p, "uniform float4 "I_KCOLORS"[4] : register(c%d);\n", C_KCOLORS); | 
					
						
							|  |  |  | 	WRITE(p, "uniform float4 "I_ALPHA"[1] : register(c%d);\n", C_ALPHA); | 
					
						
							|  |  |  | 	WRITE(p, "uniform float4 "I_TEXDIMS"[8] : register(c%d);\n", C_TEXDIMS); | 
					
						
							|  |  |  | 	WRITE(p, "uniform float4 "I_ZBIAS"[2] : register(c%d);\n", C_ZBIAS); | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 	WRITE(p, "uniform float4 "I_INDTEXSCALE"[2] : register(c%d);\n", C_INDTEXSCALE); | 
					
						
							|  |  |  | 	WRITE(p, "uniform float4 "I_INDTEXMTX"[6] : register(c%d);\n", C_INDTEXMTX); | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 	WRITE(p, "uniform float4 "I_FOG"[3] : register(c%d);\n", C_FOG); | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-19 00:50:34 +00:00
										 |  |  | 	if(g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		WRITE(p,"typedef struct { float4 col; float4 cosatt; float4 distatt; float4 pos; float4 dir; } Light;\n"); | 
					
						
							|  |  |  | 		WRITE(p,"typedef struct { Light lights[8]; } s_"I_PLIGHTS";\n"); | 
					
						
							|  |  |  | 		WRITE(p, "uniform s_"I_PLIGHTS" "I_PLIGHTS" : register(c%d);\n", C_PLIGHTS); | 
					
						
							|  |  |  | 		WRITE(p, "typedef struct { float4 C0, C1, C2, C3; } s_"I_PMATERIALS";\n"); | 
					
						
							|  |  |  | 		WRITE(p, "uniform s_"I_PMATERIALS" "I_PMATERIALS" : register(c%d);\n", C_PMATERIALS); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-14 14:36:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	WRITE(p, "void main(\n"); | 
					
						
							| 
									
										
										
										
											2010-06-14 14:36:01 +00:00
										 |  |  | 	if(ApiType != API_D3D11) | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-10-23 19:55:19 +00:00
										 |  |  | 		WRITE(p, "  out float4 ocol0 : COLOR0,%s%s\n  in float4 rawpos : %s,\n", | 
					
						
							|  |  |  | 			dstAlphaMode == DSTALPHA_DUAL_SOURCE_BLEND ? "\n  out float4 ocol1 : COLOR1," : "", | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 			DepthTextureEnable ? "\n  out float depth : DEPTH," : "", | 
					
						
							| 
									
										
										
										
											2011-06-10 19:16:09 +00:00
										 |  |  | 			ApiType & API_OPENGL ? "WPOS" : ApiType & API_D3D9_SM20 ? "POSITION" : "VPOS"); | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-14 14:36:01 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		WRITE(p, "  out float4 ocol0 : SV_Target0,%s%s\n  in float4 rawpos : SV_Position,\n", | 
					
						
							|  |  |  | 			dstAlphaMode == DSTALPHA_DUAL_SOURCE_BLEND ? "\n  out float4 ocol1 : SV_Target1," : "", | 
					
						
							|  |  |  | 			DepthTextureEnable ? "\n  out float depth : SV_Depth," : ""); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-12 15:49:21 +00:00
										 |  |  | 	WRITE(p, "  in float4 colors_0 : COLOR0,\n"); | 
					
						
							| 
									
										
										
										
											2010-07-06 17:21:24 +00:00
										 |  |  | 	WRITE(p, "  in float4 colors_1 : COLOR1"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// compute window position if needed because binding semantic WPOS is not widely supported
 | 
					
						
							|  |  |  | 	if (numTexgen < 7) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-02-08 22:08:20 +00:00
										 |  |  | 		for (int i = 0; i < numTexgen; ++i) | 
					
						
							| 
									
										
										
										
											2010-07-06 17:21:24 +00:00
										 |  |  | 			WRITE(p, ",\n  in float3 uv%d : TEXCOORD%d", i, i); | 
					
						
							|  |  |  | 		WRITE(p, ",\n  in float4 clipPos : TEXCOORD%d", numTexgen); | 
					
						
							| 
									
										
										
										
											2011-03-19 00:50:34 +00:00
										 |  |  | 		if(g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 			WRITE(p, ",\n  in float4 Normal : TEXCOORD%d", numTexgen + 1); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2009-02-08 22:08:20 +00:00
										 |  |  | 		// wpos is in w of first 4 texcoords
 | 
					
						
							| 
									
										
										
										
											2011-03-19 00:50:34 +00:00
										 |  |  | 		if(g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) | 
					
						
							| 
									
										
										
										
											2010-11-24 19:13:19 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			for (int i = 0; i < 8; ++i) | 
					
						
							|  |  |  | 				WRITE(p, ",\n  in float4 uv%d : TEXCOORD%d", i, i); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-02-05 18:25:34 +00:00
										 |  |  | 			for (unsigned int i = 0; i < xfregs.numTexGen.numTexGens; ++i) | 
					
						
							| 
									
										
										
										
											2010-11-24 19:13:19 +00:00
										 |  |  | 				WRITE(p, ",\n  in float%d uv%d : TEXCOORD%d", i < 4 ? 4 : 3 , i, i); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-12 15:49:21 +00:00
										 |  |  | 	WRITE(p, "        ) {\n"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 	char* pmainstart = p; | 
					
						
							|  |  |  | 	int Pretest = AlphaPreTest(); | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 	if (dstAlphaMode == DSTALPHA_ALPHA_PASS && !DepthTextureEnable && Pretest >= 0) | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if (!Pretest) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// alpha test will always fail, so restart the shader and just make it an empty function
 | 
					
						
							| 
									
										
										
										
											2011-01-25 03:45:44 +00:00
										 |  |  | 			WRITE(p, "ocol0 = 0;\n"); | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 			if(DepthTextureEnable) | 
					
						
							|  |  |  | 				WRITE(p, "depth = 1.f;\n"); | 
					
						
							| 
									
										
										
										
											2011-01-25 03:45:44 +00:00
										 |  |  | 			if(dstAlphaMode == DSTALPHA_DUAL_SOURCE_BLEND) | 
					
						
							|  |  |  | 				WRITE(p, "ocol1 = 0;\n"); | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 			WRITE(p, "discard;\n"); | 
					
						
							|  |  |  | 			if(ApiType != API_D3D11) | 
					
						
							|  |  |  | 				WRITE(p, "return;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p, "  ocol0 = "I_ALPHA"[0].aaaa;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		WRITE(p, "}\n"); | 
					
						
							|  |  |  | 		return text; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	WRITE(p, "  float4 c0 = "I_COLORS"[1], c1 = "I_COLORS"[2], c2 = "I_COLORS"[3], prev = float4(0.0f, 0.0f, 0.0f, 0.0f), textemp = float4(0.0f, 0.0f, 0.0f, 0.0f), rastemp = float4(0.0f, 0.0f, 0.0f, 0.0f), konsttemp = float4(0.0f, 0.0f, 0.0f, 0.0f);\n" | 
					
						
							|  |  |  | 			"  float3 comp16 = float3(1.0f, 255.0f, 0.0f), comp24 = float3(1.0f, 255.0f, 255.0f*255.0f);\n" | 
					
						
							|  |  |  | 			"  float4 alphabump=0;\n" | 
					
						
							|  |  |  | 			"  float3 tevcoord;\n" | 
					
						
							|  |  |  | 			"  float2 wrappedcoord, tempcoord;\n" | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 			"  float4 cc0, cc1, cc2, cprev,crastemp,ckonsttemp;\n\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-19 00:50:34 +00:00
										 |  |  | 	if(g_ActiveConfig.bEnablePixelLighting && g_ActiveConfig.backend_info.bSupportsPixelLighting) | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 		if (xfregs.numTexGen.numTexGens < 7) | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p,"float3 _norm0 = normalize(Normal.xyz);\n\n"); | 
					
						
							|  |  |  | 			WRITE(p,"float3 pos = float3(clipPos.x,clipPos.y,Normal.w);\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p,"  float3 _norm0 = normalize(float3(uv4.w,uv5.w,uv6.w));\n\n"); | 
					
						
							|  |  |  | 			WRITE(p,"float3 pos = float3(uv0.w,uv1.w,uv7.w);\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 		WRITE(p, "float4 mat, lacc;\n" | 
					
						
							|  |  |  | 		"float3 ldir, h;\n" | 
					
						
							|  |  |  | 		"float dist, dist2, attn;\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 23:57:12 +00:00
										 |  |  | 		p = GenerateLightingShader(p, components, I_PMATERIALS, I_PLIGHTS, "colors_", "colors_"); | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-04-15 03:55:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-23 02:17:48 +00:00
										 |  |  | 	if (numTexgen < 7) | 
					
						
							|  |  |  | 		WRITE(p, "clipPos = float4(rawpos.x, rawpos.y, clipPos.z, clipPos.w);\n"); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		WRITE(p, "float4 clipPos = float4(rawpos.x, rawpos.y, uv2.w, uv3.w);\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 	// HACK to handle cases where the tex gen is not enabled
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	if (numTexgen == 0) | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		WRITE(p, "float3 uv0 = float3(0.0f, 0.0f, 0.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		for (int i = 0; i < numTexgen; ++i) | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			// optional perspective divides
 | 
					
						
							| 
									
										
										
										
											2011-02-05 18:25:34 +00:00
										 |  |  | 			if (xfregs.texMtxInfo[i].projection == XF_TEXPROJ_STQ) | 
					
						
							| 
									
										
										
										
											2010-12-01 04:26:21 +00:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				WRITE(p, "if (uv%d.z)", i); | 
					
						
							|  |  |  | 				WRITE(p, "	uv%d.xy = uv%d.xy / uv%d.z;\n", i, i, i); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "uv%d.xy = uv%d.xy * "I_TEXDIMS"[%d].zw;\n", i, i, i); | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// indirect texture map lookup
 | 
					
						
							|  |  |  | 	for(u32 i = 0; i < bpmem.genMode.numindstages; ++i) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		if (nIndirectStagesUsed & (1<<i)) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			int texcoord = bpmem.tevindref.getTexCoord(i); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 			if (texcoord < numTexgen) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				WRITE(p, "tempcoord = uv%d.xy * "I_INDTEXSCALE"[%d].%s;\n", texcoord, i/2, (i&1)?"zw":"xy"); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				WRITE(p, "tempcoord = float2(0.0f, 0.0f);\n"); | 
					
						
							| 
									
										
										
										
											2009-04-11 07:05:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			char buffer[32]; | 
					
						
							|  |  |  | 			sprintf(buffer, "float3 indtex%d", i); | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 			SampleTexture(p, buffer, "tempcoord", "abg", bpmem.tevindref.getTexMap(i), ApiType); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	RegisterStates[0].AlphaNeedOverflowControl = false; | 
					
						
							|  |  |  | 	RegisterStates[0].ColorNeedOverflowControl = false; | 
					
						
							|  |  |  | 	RegisterStates[0].AuxStored = false; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	for(int i = 1; i < 4; i++) | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		RegisterStates[i].AlphaNeedOverflowControl = true; | 
					
						
							|  |  |  | 		RegisterStates[i].ColorNeedOverflowControl = true; | 
					
						
							|  |  |  | 		RegisterStates[i].AuxStored = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-05 05:10:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 	for (int i = 0; i < numStages; i++) | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 		WriteStage(p, i, ApiType); //build the equation for this stage
 | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-22 19:55:07 +00:00
										 |  |  | 	if(numStages) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		// The results of the last texenv stage are put onto the screen,
 | 
					
						
							|  |  |  | 		// regardless of the used destination register
 | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 		if(bpmem.combiners[numStages - 1].colorC.dest != 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			bool retrieveFromAuxRegister = !RegisterStates[bpmem.combiners[numStages - 1].colorC.dest].ColorNeedOverflowControl && RegisterStates[bpmem.combiners[numStages - 1].colorC.dest].AuxStored; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "prev.rgb = %s%s;\n", retrieveFromAuxRegister ? "c" : "" , tevCOutputTable[bpmem.combiners[numStages - 1].colorC.dest]); | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 			RegisterStates[0].ColorNeedOverflowControl = RegisterStates[bpmem.combiners[numStages - 1].colorC.dest].ColorNeedOverflowControl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if(bpmem.combiners[numStages - 1].alphaC.dest != 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			bool retrieveFromAuxRegister = !RegisterStates[bpmem.combiners[numStages - 1].alphaC.dest].AlphaNeedOverflowControl && RegisterStates[bpmem.combiners[numStages - 1].alphaC.dest].AuxStored; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "prev.a = %s%s;\n", retrieveFromAuxRegister ? "c" : "" , tevAOutputTable[bpmem.combiners[numStages - 1].alphaC.dest]); | 
					
						
							|  |  |  | 			RegisterStates[0].AlphaNeedOverflowControl = RegisterStates[bpmem.combiners[numStages - 1].alphaC.dest].AlphaNeedOverflowControl; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-05-22 19:55:07 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	// emulation of unisgned 8 overflow when casting if needed
 | 
					
						
							|  |  |  | 	if(RegisterStates[0].AlphaNeedOverflowControl || RegisterStates[0].ColorNeedOverflowControl) | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 		WRITE(p, "prev = frac(prev * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 22:30:15 +00:00
										 |  |  | 	if (!WriteAlphaTest(p, ApiType, dstAlphaMode)) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// alpha test will always fail, so restart the shader and just make it an empty function
 | 
					
						
							|  |  |  | 		p = pmainstart; | 
					
						
							| 
									
										
										
										
											2011-01-25 03:45:44 +00:00
										 |  |  | 		WRITE(p, "ocol0 = 0;\n"); | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | 		if(DepthTextureEnable) | 
					
						
							|  |  |  | 			WRITE(p, "depth = 1.f;\n"); | 
					
						
							| 
									
										
										
										
											2011-01-25 03:45:44 +00:00
										 |  |  | 		if(dstAlphaMode == DSTALPHA_DUAL_SOURCE_BLEND) | 
					
						
							|  |  |  | 				WRITE(p, "ocol1 = 0;\n"); | 
					
						
							| 
									
										
										
										
											2010-06-14 03:09:44 +00:00
										 |  |  | 		WRITE(p, "discard;\n"); | 
					
						
							|  |  |  | 		if(ApiType != API_D3D11) | 
					
						
							|  |  |  | 			WRITE(p, "return;\n"); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | 		if((bpmem.fog.c_proj_fsel.fsel != 0) || DepthTextureEnable) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | 			// the screen space depth value = far z + (clip z / clip w) * z range
 | 
					
						
							|  |  |  | 			WRITE(p, "float zCoord = "I_ZBIAS"[1].x + (clipPos.z / clipPos.w) * "I_ZBIAS"[1].y;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | 		if (DepthTextureEnable) | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			// use the texture input of the last texture stage (textemp), hopefully this has been read and is in correct format...
 | 
					
						
							| 
									
										
										
										
											2010-12-19 22:24:19 +00:00
										 |  |  | 			if (bpmem.ztex2.op != ZTEXTURE_DISABLE && !bpmem.zcontrol.zcomploc && bpmem.zmode.testenable && bpmem.zmode.updateenable) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				if (bpmem.ztex2.op == ZTEXTURE_ADD) | 
					
						
							|  |  |  | 					WRITE(p, "zCoord = dot("I_ZBIAS"[0].xyzw, textemp.xyzw) + "I_ZBIAS"[1].w + zCoord;\n"); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					WRITE(p, "zCoord = dot("I_ZBIAS"[0].xyzw, textemp.xyzw) + "I_ZBIAS"[1].w;\n"); | 
					
						
							| 
									
										
										
										
											2010-12-05 03:36:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-19 22:24:19 +00:00
										 |  |  | 				// scale to make result from frac correct
 | 
					
						
							|  |  |  | 				WRITE(p, "zCoord = zCoord * (16777215.0f/16777216.0f);\n"); | 
					
						
							|  |  |  | 				WRITE(p, "zCoord = frac(zCoord);\n"); | 
					
						
							|  |  |  | 				WRITE(p, "zCoord = zCoord * (16777216.0f/16777215.0f);\n"); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | 			WRITE(p, "depth = zCoord;\n"); | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-06-12 15:49:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 		if (dstAlphaMode == DSTALPHA_ALPHA_PASS) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "  ocol0 = float4(prev.rgb, "I_ALPHA"[0].a);\n"); | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 			WriteFog(p); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "  ocol0 = prev;\n"); | 
					
						
							| 
									
										
										
										
											2010-10-20 03:11:22 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// On D3D11, use dual-source color blending to perform dst alpha in a
 | 
					
						
							|  |  |  | 		// single pass
 | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 		if (dstAlphaMode == DSTALPHA_DUAL_SOURCE_BLEND) | 
					
						
							| 
									
										
										
										
											2010-10-20 03:11:22 +00:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			// Colors will be blended against the alpha from ocol1...
 | 
					
						
							|  |  |  | 			WRITE(p, "  ocol1 = ocol0;\n"); | 
					
						
							|  |  |  | 			// ...and the alpha from ocol0 will be written to the framebuffer.
 | 
					
						
							| 
									
										
										
										
											2010-10-21 05:22:18 +00:00
										 |  |  | 			WRITE(p, "  ocol0.a = "I_ALPHA"[0].a;\n"); | 
					
						
							| 
									
										
										
										
											2010-10-20 03:11:22 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-06 17:21:24 +00:00
										 |  |  | 	WRITE(p, "}\n"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	if (text[sizeof(text) - 1] != 0x7C) | 
					
						
							|  |  |  | 		PanicAlert("PixelShader generator - buffer too small, canary has been eaten!"); | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-14 01:58:39 +00:00
										 |  |  | 	setlocale(LC_NUMERIC, ""); // restore locale
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	return text; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-29 03:28:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //table with the color compare operations
 | 
					
						
							|  |  |  | static const char *TEVCMPColorOPTable[16] = | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//0
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//1
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//2
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//3
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//4
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//5
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//6
 | 
					
						
							|  |  |  | 	"float3(0.0f, 0.0f, 0.0f)",//7
 | 
					
						
							|  |  |  | 	"   %s + ((%s.r >= %s.r + (0.25f/255.0f)) ? %s : float3(0.0f, 0.0f, 0.0f))",//#define TEVCMP_R8_GT 8
 | 
					
						
							|  |  |  | 	"   %s + ((abs(%s.r - %s.r) < (0.5f/255.0f)) ? %s : float3(0.0f, 0.0f, 0.0f))",//#define TEVCMP_R8_EQ 9
 | 
					
						
							|  |  |  | 	"   %s + (( dot(%s.rgb, comp16) >= (dot(%s.rgb, comp16) + (0.25f/255.0f))) ? %s : float3(0.0f, 0.0f, 0.0f))",//#define TEVCMP_GR16_GT 10
 | 
					
						
							|  |  |  | 	"   %s + (abs(dot(%s.rgb, comp16) - dot(%s.rgb, comp16)) < (0.5f/255.0f) ? %s : float3(0.0f, 0.0f, 0.0f))",//#define TEVCMP_GR16_EQ 11
 | 
					
						
							|  |  |  | 	"   %s + (( dot(%s.rgb, comp24) >= (dot(%s.rgb, comp24) + (0.25f/255.0f))) ? %s : float3(0.0f, 0.0f, 0.0f))",//#define TEVCMP_BGR24_GT 12
 | 
					
						
							|  |  |  | 	"   %s + (abs(dot(%s.rgb, comp24) - dot(%s.rgb, comp24)) < (0.5f/255.0f) ? %s : float3(0.0f, 0.0f, 0.0f))",//#define TEVCMP_BGR24_EQ 13
 | 
					
						
							|  |  |  | 	"   %s + (max(sign(%s.rgb - %s.rgb - (0.25f/255.0f)), float3(0.0f, 0.0f, 0.0f)) * %s)",//#define TEVCMP_RGB8_GT  14
 | 
					
						
							|  |  |  | 	"   %s + ((float3(1.0f, 1.0f, 1.0f) - max(sign(abs(%s.rgb - %s.rgb) - (0.5f/255.0f)), float3(0.0f, 0.0f, 0.0f))) * %s)"//#define TEVCMP_RGB8_EQ  15
 | 
					
						
							| 
									
										
										
										
											2009-10-29 03:28:38 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //table with the alpha compare operations
 | 
					
						
							|  |  |  | static const char *TEVCMPAlphaOPTable[16] = | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	"0.0f",//0
 | 
					
						
							|  |  |  | 	"0.0f",//1
 | 
					
						
							|  |  |  | 	"0.0f",//2
 | 
					
						
							|  |  |  | 	"0.0f",//3
 | 
					
						
							|  |  |  | 	"0.0f",//4
 | 
					
						
							|  |  |  | 	"0.0f",//5
 | 
					
						
							|  |  |  | 	"0.0f",//6
 | 
					
						
							|  |  |  | 	"0.0f",//7
 | 
					
						
							| 
									
										
										
										
											2010-05-27 03:05:43 +00:00
										 |  |  | 	"   %s.a + ((%s.r >= (%s.r + (0.25f/255.0f))) ? %s.a : 0.0f)",//#define TEVCMP_R8_GT 8
 | 
					
						
							|  |  |  | 	"   %s.a + (abs(%s.r - %s.r) < (0.5f/255.0f) ? %s.a : 0.0f)",//#define TEVCMP_R8_EQ 9
 | 
					
						
							|  |  |  | 	"   %s.a + ((dot(%s.rgb, comp16) >= (dot(%s.rgb, comp16) + (0.25f/255.0f))) ? %s.a : 0.0f)",//#define TEVCMP_GR16_GT 10
 | 
					
						
							|  |  |  | 	"   %s.a + (abs(dot(%s.rgb, comp16) - dot(%s.rgb, comp16)) < (0.5f/255.0f) ? %s.a : 0.0f)",//#define TEVCMP_GR16_EQ 11
 | 
					
						
							|  |  |  | 	"   %s.a + ((dot(%s.rgb, comp24) >= (dot(%s.rgb, comp24) + (0.25f/255.0f))) ? %s.a : 0.0f)",//#define TEVCMP_BGR24_GT 12
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	"   %s.a + (abs(dot(%s.rgb, comp24) - dot(%s.rgb, comp24)) < (0.5f/255.0f) ? %s.a : 0.0f)",//#define TEVCMP_BGR24_EQ 13
 | 
					
						
							| 
									
										
										
										
											2010-05-27 03:05:43 +00:00
										 |  |  | 	"   %s.a + ((%s.a >= (%s.a + (0.25f/255.0f))) ? %s.a : 0.0f)",//#define TEVCMP_A8_GT 14
 | 
					
						
							|  |  |  | 	"   %s.a + (abs(%s.a - %s.a) < (0.5f/255.0f) ? %s.a : 0.0f)"//#define TEVCMP_A8_EQ 15
 | 
					
						
							| 
									
										
										
										
											2009-10-29 03:28:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | static void WriteStage(char *&p, int n, API_TYPE ApiType) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	char *rasswap = swapModeTable[bpmem.combiners[n].alphaC.rswap]; | 
					
						
							|  |  |  | 	char *texswap = swapModeTable[bpmem.combiners[n].alphaC.tswap]; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	int texcoord = bpmem.tevorders[n/2].getTexCoord(n&1); | 
					
						
							|  |  |  | 	bool bHasTexCoord = (u32)texcoord < bpmem.genMode.numtexgens; | 
					
						
							|  |  |  | 	bool bHasIndStage = bpmem.tevind[n].IsActive() && bpmem.tevind[n].bt < bpmem.genMode.numindstages; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// HACK to handle cases where the tex gen is not enabled
 | 
					
						
							|  |  |  | 	if (!bHasTexCoord) | 
					
						
							|  |  |  | 		texcoord = 0; | 
					
						
							| 
									
										
										
										
											2009-03-05 05:10:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	if (bHasIndStage) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// perform the indirect op on the incoming regular coordinates using indtex%d as the offset coords
 | 
					
						
							|  |  |  | 		if (bpmem.tevind[n].bs != ITBA_OFF) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 			WRITE(p, "alphabump = indtex%d.%s %s;\n", | 
					
						
							|  |  |  | 					bpmem.tevind[n].bt, | 
					
						
							|  |  |  | 					tevIndAlphaSel[bpmem.tevind[n].bs], | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 					tevIndAlphaScale[bpmem.tevind[n].fmt]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// format
 | 
					
						
							|  |  |  | 		WRITE(p, "float3 indtevcrd%d = indtex%d * %s;\n", n, bpmem.tevind[n].bt, tevIndFmtScale[bpmem.tevind[n].fmt]); | 
					
						
							| 
									
										
										
										
											2009-04-15 03:55:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// bias
 | 
					
						
							|  |  |  | 		if (bpmem.tevind[n].bias != ITB_NONE ) | 
					
						
							|  |  |  | 			WRITE(p, "indtevcrd%d.%s += %s;\n", n, tevIndBiasField[bpmem.tevind[n].bias], tevIndBiasAdd[bpmem.tevind[n].fmt]); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// multiply by offset matrix and scale
 | 
					
						
							|  |  |  | 		if (bpmem.tevind[n].mid != 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 			if (bpmem.tevind[n].mid <= 3) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				int mtxidx = 2*(bpmem.tevind[n].mid-1); | 
					
						
							|  |  |  | 				WRITE(p, "float2 indtevtrans%d = float2(dot("I_INDTEXMTX"[%d].xyz, indtevcrd%d), dot("I_INDTEXMTX"[%d].xyz, indtevcrd%d));\n", | 
					
						
							|  |  |  | 					n, mtxidx, n, mtxidx+1, n); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 			else if (bpmem.tevind[n].mid <= 7 && bHasTexCoord) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 			{ // s matrix
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				int mtxidx = 2*(bpmem.tevind[n].mid-5); | 
					
						
							|  |  |  | 				WRITE(p, "float2 indtevtrans%d = "I_INDTEXMTX"[%d].ww * uv%d.xy * indtevcrd%d.xx;\n", n, mtxidx, texcoord, n); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-01-09 14:13:24 +00:00
										 |  |  | 			else if (bpmem.tevind[n].mid <= 11 && bHasTexCoord) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 			{ // t matrix
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				int mtxidx = 2*(bpmem.tevind[n].mid-9); | 
					
						
							|  |  |  | 				WRITE(p, "float2 indtevtrans%d = "I_INDTEXMTX"[%d].ww * uv%d.xy * indtevcrd%d.yy;\n", n, mtxidx, texcoord, n); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				WRITE(p, "float2 indtevtrans%d = 0;\n", n); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			WRITE(p, "float2 indtevtrans%d = 0;\n", n); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// ---------
 | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		// Wrapping
 | 
					
						
							|  |  |  | 		// ---------
 | 
					
						
							| 
									
										
										
										
											2009-04-15 03:55:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// wrap S
 | 
					
						
							|  |  |  | 		if (bpmem.tevind[n].sw == ITW_OFF) | 
					
						
							|  |  |  | 			WRITE(p, "wrappedcoord.x = uv%d.x;\n", texcoord); | 
					
						
							|  |  |  | 		else if (bpmem.tevind[n].sw == ITW_0) | 
					
						
							|  |  |  | 			WRITE(p, "wrappedcoord.x = 0.0f;\n"); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			WRITE(p, "wrappedcoord.x = fmod( uv%d.x, %s );\n", texcoord, tevIndWrapStart[bpmem.tevind[n].sw]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// wrap T
 | 
					
						
							|  |  |  | 		if (bpmem.tevind[n].tw == ITW_OFF) | 
					
						
							|  |  |  | 			WRITE(p, "wrappedcoord.y = uv%d.y;\n", texcoord); | 
					
						
							|  |  |  | 		else if (bpmem.tevind[n].tw == ITW_0) | 
					
						
							|  |  |  | 			WRITE(p, "wrappedcoord.y = 0.0f;\n"); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			WRITE(p, "wrappedcoord.y = fmod( uv%d.y, %s );\n", texcoord, tevIndWrapStart[bpmem.tevind[n].tw]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (bpmem.tevind[n].fb_addprev) // add previous tevcoord
 | 
					
						
							|  |  |  | 			WRITE(p, "tevcoord.xy += wrappedcoord + indtevtrans%d;\n", n); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			WRITE(p, "tevcoord.xy = wrappedcoord + indtevtrans%d;\n", n); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	TevStageCombiner::ColorCombiner &cc = bpmem.combiners[n].colorC; | 
					
						
							|  |  |  | 	TevStageCombiner::AlphaCombiner &ac = bpmem.combiners[n].alphaC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool bCRas = cc.a == TEVCOLORARG_RASA || cc.a == TEVCOLORARG_RASC || cc.b == TEVCOLORARG_RASA || cc.b == TEVCOLORARG_RASC || cc.c == TEVCOLORARG_RASA || cc.c == TEVCOLORARG_RASC || cc.d == TEVCOLORARG_RASA || cc.d == TEVCOLORARG_RASC; | 
					
						
							|  |  |  | 	bool bARas = ac.a == TEVALPHAARG_RASA || ac.b == TEVALPHAARG_RASA || ac.c == TEVALPHAARG_RASA || ac.d == TEVALPHAARG_RASA; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if(bCRas || bARas) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WRITE(p, "rastemp = %s.%s;\n", tevRasTable[bpmem.tevorders[n / 2].getColorChan(n & 1)], rasswap); | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 		WRITE(p, "crastemp = frac(rastemp * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (bpmem.tevorders[n/2].getEnable(n&1)) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		int texmap = bpmem.tevorders[n/2].getTexMap(n&1); | 
					
						
							|  |  |  | 		if(!bHasIndStage) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			// calc tevcord
 | 
					
						
							|  |  |  | 			if(bHasTexCoord) | 
					
						
							|  |  |  | 				WRITE(p, "tevcoord.xy = uv%d.xy;\n", texcoord); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				WRITE(p, "tevcoord.xy = float2(0.0f, 0.0f);\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 		SampleTexture(p, "textemp", "tevcoord", texswap, texmap, ApiType); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		WRITE(p, "textemp = float4(1.0f, 1.0f, 1.0f, 1.0f);\n"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	int kc = bpmem.tevksel[n / 2].getKC(n & 1); | 
					
						
							|  |  |  | 	int ka = bpmem.tevksel[n / 2].getKA(n & 1); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	bool bCKonst = cc.a == TEVCOLORARG_KONST || cc.b == TEVCOLORARG_KONST || cc.c == TEVCOLORARG_KONST || cc.d == TEVCOLORARG_KONST; | 
					
						
							|  |  |  | 	bool bAKonst = ac.a == TEVALPHAARG_KONST || ac.b == TEVALPHAARG_KONST || ac.c == TEVALPHAARG_KONST || ac.d == TEVALPHAARG_KONST; | 
					
						
							|  |  |  | 	if (bCKonst || bAKonst ) | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		WRITE(p, "konsttemp = float4(%s, %s);\n", tevKSelTableC[kc], tevKSelTableA[ka]); | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 		if(kc > 7 || ka > 7) | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 			WRITE(p, "ckonsttemp = frac(konsttemp * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p, "ckonsttemp = konsttemp;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	if(cc.a == TEVCOLORARG_CPREV | 
					
						
							|  |  |  | 	|| cc.a == TEVCOLORARG_APREV | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_CPREV | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_APREV | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_CPREV | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_APREV | 
					
						
							|  |  |  | 	|| ac.a == TEVALPHAARG_APREV | 
					
						
							|  |  |  | 	|| ac.b == TEVALPHAARG_APREV | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 	|| ac.c == TEVALPHAARG_APREV) | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if(RegisterStates[0].AlphaNeedOverflowControl || RegisterStates[0].ColorNeedOverflowControl) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 			WRITE(p, "cprev = frac(prev * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 			RegisterStates[0].AlphaNeedOverflowControl = false; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			RegisterStates[0].ColorNeedOverflowControl = false; | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "cprev = prev;\n"); | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		RegisterStates[0].AuxStored = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	if(cc.a == TEVCOLORARG_C0 | 
					
						
							|  |  |  | 	|| cc.a == TEVCOLORARG_A0 | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_C0 | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_A0 | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_C0 | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_A0 | 
					
						
							|  |  |  | 	|| ac.a == TEVALPHAARG_A0 | 
					
						
							|  |  |  | 	|| ac.b == TEVALPHAARG_A0 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 	|| ac.c == TEVALPHAARG_A0) | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if(RegisterStates[1].AlphaNeedOverflowControl || RegisterStates[1].ColorNeedOverflowControl) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 			WRITE(p, "cc0 = frac(c0 * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 			RegisterStates[1].AlphaNeedOverflowControl = false; | 
					
						
							|  |  |  | 			RegisterStates[1].ColorNeedOverflowControl = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p, "cc0 = c0;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		RegisterStates[1].AuxStored = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	if(cc.a == TEVCOLORARG_C1 | 
					
						
							|  |  |  | 	|| cc.a == TEVCOLORARG_A1 | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_C1 | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_A1 | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_C1 | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_A1 | 
					
						
							|  |  |  | 	|| ac.a == TEVALPHAARG_A1 | 
					
						
							|  |  |  | 	|| ac.b == TEVALPHAARG_A1 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 	|| ac.c == TEVALPHAARG_A1) | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if(RegisterStates[2].AlphaNeedOverflowControl || RegisterStates[2].ColorNeedOverflowControl) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 			WRITE(p, "cc1 = frac(c1 * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 			RegisterStates[2].AlphaNeedOverflowControl = false; | 
					
						
							|  |  |  | 			RegisterStates[2].ColorNeedOverflowControl = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p, "cc1 = c1;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		RegisterStates[2].AuxStored = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if(cc.a == TEVCOLORARG_C2 | 
					
						
							|  |  |  | 	|| cc.a == TEVCOLORARG_A2 | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_C2 | 
					
						
							|  |  |  | 	|| cc.b == TEVCOLORARG_A2 | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_C2 | 
					
						
							|  |  |  | 	|| cc.c == TEVCOLORARG_A2 | 
					
						
							|  |  |  | 	|| ac.a == TEVALPHAARG_A2 | 
					
						
							|  |  |  | 	|| ac.b == TEVALPHAARG_A2 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 	|| ac.c == TEVALPHAARG_A2) | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		if(RegisterStates[3].AlphaNeedOverflowControl || RegisterStates[3].ColorNeedOverflowControl) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 			WRITE(p, "cc2 = frac(c2 * (255.0f/256.0f)) * (256.0f/255.0f);\n"); | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 			RegisterStates[3].AlphaNeedOverflowControl = false; | 
					
						
							|  |  |  | 			RegisterStates[3].ColorNeedOverflowControl = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			WRITE(p, "cc2 = c2;\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		RegisterStates[3].AuxStored = true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-05-27 21:43:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	RegisterStates[cc.dest].ColorNeedOverflowControl = (cc.clamp == 0); | 
					
						
							|  |  |  | 	RegisterStates[cc.dest].AuxStored = false; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	if (cc.clamp) | 
					
						
							|  |  |  | 		WRITE(p, "%s = saturate(", tevCOutputTable[cc.dest]); | 
					
						
							| 
									
										
										
										
											2009-08-31 04:23:30 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		WRITE(p, "%s = ", tevCOutputTable[cc.dest]); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// combine the color channel
 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 	if (cc.bias != TevBias_COMPARE) // if not compare
 | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		//normal color combiner goes here
 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 		if (cc.shift > TEVSCALE_1) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s*(", tevScaleTable[cc.shift]); | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 		if(!(cc.d == TEVCOLORARG_ZERO && cc.op == TEVOP_ADD)) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s%s", tevCInputTable[cc.d], tevOpTable[cc.op]); | 
					
						
							| 
									
										
										
										
											2009-08-31 04:23:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-23 22:46:13 +00:00
										 |  |  | 		if (cc.a == cc.b) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s", tevCInputTable[cc.a + 16]); | 
					
						
							| 
									
										
										
										
											2010-05-23 22:46:13 +00:00
										 |  |  | 		else if (cc.c == TEVCOLORARG_ZERO) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s", tevCInputTable[cc.a + 16]); | 
					
						
							| 
									
										
										
										
											2010-05-23 22:46:13 +00:00
										 |  |  | 		else if (cc.c == TEVCOLORARG_ONE) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s", tevCInputTable[cc.b + 16]); | 
					
						
							| 
									
										
										
										
											2010-05-22 20:40:43 +00:00
										 |  |  | 		else if (cc.a == TEVCOLORARG_ZERO) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s*%s", tevCInputTable[cc.b + 16], tevCInputTable[cc.c + 16]); | 
					
						
							| 
									
										
										
										
											2010-05-22 20:40:43 +00:00
										 |  |  | 		else if (cc.b == TEVCOLORARG_ZERO) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s*(float3(1.0f, 1.0f, 1.0f)-%s)", tevCInputTable[cc.a + 16], tevCInputTable[cc.c + 16]); | 
					
						
							| 
									
										
										
										
											2009-08-31 04:23:30 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "lerp(%s, %s, %s)", tevCInputTable[cc.a + 16], tevCInputTable[cc.b + 16], tevCInputTable[cc.c + 16]); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		WRITE(p, "%s", tevBiasTable[cc.bias]); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		if (cc.shift > 0) | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 			WRITE(p, ")"); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		int cmp = (cc.shift<<1)|cc.op|8; // comparemode stored here
 | 
					
						
							| 
									
										
										
										
											2009-10-30 04:14:43 +00:00
										 |  |  | 		WRITE(p, TEVCMPColorOPTable[cmp],//lookup the function from the op table
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 				tevCInputTable[cc.d], | 
					
						
							| 
									
										
										
										
											2010-05-27 21:43:07 +00:00
										 |  |  | 				tevCInputTable[cc.a + 16], | 
					
						
							|  |  |  | 				tevCInputTable[cc.b + 16], | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				tevCInputTable[cc.c + 16]); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 	if (cc.clamp) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		WRITE(p, ")"); | 
					
						
							|  |  |  | 	WRITE(p,";\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-29 14:40:37 +00:00
										 |  |  | 	RegisterStates[ac.dest].AlphaNeedOverflowControl = (ac.clamp == 0); | 
					
						
							|  |  |  | 	RegisterStates[ac.dest].AuxStored = false; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// combine the alpha channel
 | 
					
						
							|  |  |  | 	if (ac.clamp) | 
					
						
							|  |  |  | 		WRITE(p, "%s = saturate(", tevAOutputTable[ac.dest]); | 
					
						
							| 
									
										
										
										
											2009-08-31 04:23:30 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		WRITE(p, "%s = ", tevAOutputTable[ac.dest]); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	if (ac.bias != TevBias_COMPARE) // if not compare
 | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		//normal alpha combiner goes here
 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 		if (ac.shift > TEVSCALE_1) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s*(", tevScaleTable[ac.shift]); | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-05 00:01:18 +00:00
										 |  |  | 		if(!(ac.d == TEVALPHAARG_ZERO && ac.op == TEVOP_ADD)) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s.a%s", tevAInputTable[ac.d], tevOpTable[ac.op]); | 
					
						
							| 
									
										
										
										
											2009-08-31 04:23:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-23 22:46:13 +00:00
										 |  |  | 		if (ac.a == ac.b) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s.a", tevAInputTable[ac.a + 8]); | 
					
						
							| 
									
										
										
										
											2010-05-23 22:46:13 +00:00
										 |  |  | 		else if (ac.c == TEVALPHAARG_ZERO) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s.a", tevAInputTable[ac.a + 8]); | 
					
						
							| 
									
										
										
										
											2010-05-22 20:40:43 +00:00
										 |  |  | 		else if (ac.a == TEVALPHAARG_ZERO) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s.a*%s.a", tevAInputTable[ac.b + 8], tevAInputTable[ac.c + 8]); | 
					
						
							| 
									
										
										
										
											2010-05-22 20:40:43 +00:00
										 |  |  | 		else if (ac.b == TEVALPHAARG_ZERO) | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "%s.a*(1.0f-%s.a)", tevAInputTable[ac.a + 8], tevAInputTable[ac.c + 8]); | 
					
						
							| 
									
										
										
										
											2009-08-31 04:23:30 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 			WRITE(p, "lerp(%s.a, %s.a, %s.a)", tevAInputTable[ac.a + 8], tevAInputTable[ac.b + 8], tevAInputTable[ac.c + 8]); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 		WRITE(p, "%s",tevBiasTable[ac.bias]); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 		if (ac.shift>0) | 
					
						
							|  |  |  | 			WRITE(p, ")"); | 
					
						
							| 
									
										
										
										
											2010-05-17 22:17:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		//compare alpha combiner goes here
 | 
					
						
							|  |  |  | 		int cmp = (ac.shift<<1)|ac.op|8; // comparemode stored here
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 		WRITE(p, TEVCMPAlphaOPTable[cmp], | 
					
						
							|  |  |  | 				tevAInputTable[ac.d], | 
					
						
							|  |  |  | 				tevAInputTable[ac.a + 8], | 
					
						
							|  |  |  | 				tevAInputTable[ac.b + 8], | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 				tevAInputTable[ac.c + 8]); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-12 03:39:14 +00:00
										 |  |  | 	if (ac.clamp) | 
					
						
							|  |  |  | 		WRITE(p, ")"); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	WRITE(p, ";\n\n"); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | void SampleTexture(char *&p, const char *destination, const char *texcoords, const char *texswap, int texmap, API_TYPE ApiType) | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 	if (ApiType == API_D3D11) | 
					
						
							|  |  |  | 		WRITE(p, "%s=Tex%d.Sample(samp%d,%s.xy * "I_TEXDIMS"[%d].xy).%s;\n", destination, texmap,texmap, texcoords, texmap, texswap); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2010-08-29 19:34:54 +00:00
										 |  |  | 		WRITE(p, "%s=tex2D(samp%d,%s.xy * "I_TEXDIMS"[%d].xy).%s;\n", destination, texmap, texcoords, texmap, texswap); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | static const char *tevAlphaFuncsTable[] = | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	"(false)",									//ALPHACMP_NEVER 0
 | 
					
						
							| 
									
										
										
										
											2010-01-19 15:00:45 +00:00
										 |  |  | 	"(prev.a <= %s - (0.25f/255.0f))",			//ALPHACMP_LESS 1
 | 
					
						
							|  |  |  | 	"(abs( prev.a - %s ) < (0.5f/255.0f))",		//ALPHACMP_EQUAL 2
 | 
					
						
							|  |  |  | 	"(prev.a < %s + (0.25f/255.0f))",			//ALPHACMP_LEQUAL 3
 | 
					
						
							|  |  |  | 	"(prev.a >= %s + (0.25f/255.0f))",			//ALPHACMP_GREATER 4
 | 
					
						
							|  |  |  | 	"(abs( prev.a - %s ) >= (0.5f/255.0f))",	//ALPHACMP_NEQUAL 5
 | 
					
						
							|  |  |  | 	"(prev.a > %s - (0.25f/255.0f))",			//ALPHACMP_GEQUAL 6
 | 
					
						
							| 
									
										
										
										
											2009-10-29 03:28:38 +00:00
										 |  |  | 	"(true)"									//ALPHACMP_ALWAYS 7
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *tevAlphaFunclogicTable[] = | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	" && ", // and
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	" || ", // or
 | 
					
						
							|  |  |  | 	" != ", // xor
 | 
					
						
							|  |  |  | 	" == "  // xnor
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | static int AlphaPreTest() | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	u32 op = bpmem.alphaFunc.logic; | 
					
						
							|  |  |  | 	u32 comp[2] = {bpmem.alphaFunc.comp0, bpmem.alphaFunc.comp1}; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	// First kill all the simple cases
 | 
					
						
							|  |  |  | 	switch(op) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	case 0: // AND
 | 
					
						
							|  |  |  | 		if (comp[0] == ALPHACMP_ALWAYS && comp[1] == ALPHACMP_ALWAYS) return true; | 
					
						
							|  |  |  | 		if (comp[0] == ALPHACMP_NEVER || comp[1] == ALPHACMP_NEVER) return false; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 1: // OR
 | 
					
						
							|  |  |  | 		if (comp[0] == ALPHACMP_ALWAYS || comp[1] == ALPHACMP_ALWAYS) return true; | 
					
						
							|  |  |  | 		if (comp[0] == ALPHACMP_NEVER && comp[1] == ALPHACMP_NEVER)return false; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 2: // XOR
 | 
					
						
							|  |  |  | 		if ((comp[0] == ALPHACMP_ALWAYS && comp[1] == ALPHACMP_NEVER) || (comp[0] == ALPHACMP_NEVER && comp[1] == ALPHACMP_ALWAYS)) | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		if ((comp[0] == ALPHACMP_ALWAYS && comp[1] == ALPHACMP_ALWAYS) || (comp[0] == ALPHACMP_NEVER && comp[1] == ALPHACMP_NEVER)) | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 3: // XNOR
 | 
					
						
							|  |  |  | 		if ((comp[0] == ALPHACMP_ALWAYS && comp[1] == ALPHACMP_NEVER) || (comp[0] == ALPHACMP_NEVER && comp[1] == ALPHACMP_ALWAYS)) | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		if ((comp[0] == ALPHACMP_ALWAYS && comp[1] == ALPHACMP_ALWAYS) || (comp[0] == ALPHACMP_NEVER && comp[1] == ALPHACMP_NEVER)) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 			return true; | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	default: PanicAlert("bad logic for alpha test? %08x", op); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-30 04:14:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 22:30:15 +00:00
										 |  |  | static bool WriteAlphaTest(char *&p, API_TYPE ApiType,DSTALPHA_MODE dstAlphaMode) | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 	int Pretest = AlphaPreTest(); | 
					
						
							|  |  |  | 	if(Pretest >= 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-10-20 03:11:22 +00:00
										 |  |  | 		return Pretest != 0; | 
					
						
							| 
									
										
										
										
											2010-10-10 14:35:31 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 03:09:44 +00:00
										 |  |  | 	// using discard then return works the same in cg and dx9 but not in dx11
 | 
					
						
							| 
									
										
										
										
											2009-12-07 18:48:31 +00:00
										 |  |  | 	WRITE(p, "if(!( "); | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | 	int compindex = bpmem.alphaFunc.comp0 % 8; | 
					
						
							| 
									
										
										
										
											2009-10-30 04:14:43 +00:00
										 |  |  | 	WRITE(p, tevAlphaFuncsTable[compindex],alphaRef[0]);//lookup the first component from the alpha function table
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 03:38:36 +00:00
										 |  |  | 	WRITE(p, "%s", tevAlphaFunclogicTable[bpmem.alphaFunc.logic % 4]);//lookup the logic op
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	compindex = bpmem.alphaFunc.comp1 % 8; | 
					
						
							|  |  |  | 	WRITE(p, tevAlphaFuncsTable[compindex],alphaRef[1]);//lookup the second component from the alpha function table
 | 
					
						
							| 
									
										
										
										
											2011-01-25 22:30:15 +00:00
										 |  |  | 	WRITE(p, ")){ocol0 = 0;%s%sdiscard;%s}\n",dstAlphaMode == DSTALPHA_DUAL_SOURCE_BLEND ? "ocol1 = 0;" : "",DepthTextureEnable ? "depth = 1.f;" : "",(ApiType != API_D3D11)? "return;" : ""); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | static const char *tevFogFuncsTable[] = | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	"",																//No Fog
 | 
					
						
							|  |  |  | 	"",																//?
 | 
					
						
							|  |  |  | 	"",																//Linear
 | 
					
						
							|  |  |  | 	"",																//?
 | 
					
						
							| 
									
										
										
										
											2010-08-16 22:37:04 +00:00
										 |  |  | 	"  fog = 1.0f - pow(2.0f, -8.0f * fog);\n",						//exp
 | 
					
						
							|  |  |  | 	"  fog = 1.0f - pow(2.0f, -8.0f * fog * fog);\n",					//exp2
 | 
					
						
							|  |  |  | 	"  fog = pow(2.0f, -8.0f * (1.0f - fog));\n",						//backward exp
 | 
					
						
							|  |  |  | 	"  fog = 1.0f - fog;\n   fog = pow(2.0f, -8.0f * fog * fog);\n"	//backward exp2
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-15 02:39:55 +00:00
										 |  |  | static void WriteFog(char *&p) | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | 	if(bpmem.fog.c_proj_fsel.fsel == 0)return;//no Fog
 | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 	if (bpmem.fog.c_proj_fsel.proj == 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 09:52:35 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// perspective
 | 
					
						
							| 
									
										
										
										
											2010-11-23 13:57:01 +00:00
										 |  |  | 		// ze = A/(B - (Zs >> B_SHF)
 | 
					
						
							|  |  |  | 		WRITE (p, "  float ze = "I_FOG"[1].x / ("I_FOG"[1].y - (zCoord / "I_FOG"[1].w));\n"); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 		// orthographic
 | 
					
						
							| 
									
										
										
										
											2010-11-23 13:57:01 +00:00
										 |  |  | 		// ze = a*Zs	(here, no B_SHF)
 | 
					
						
							| 
									
										
										
										
											2010-07-18 00:18:31 +00:00
										 |  |  | 		WRITE (p, "  float ze = "I_FOG"[1].x * zCoord;\n"); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-23 13:57:01 +00:00
										 |  |  | 	// x_adjust = sqrt((x-center)^2 + k^2)/k
 | 
					
						
							|  |  |  | 	// ze *= x_adjust
 | 
					
						
							| 
									
										
										
										
											2011-01-29 04:31:56 +00:00
										 |  |  | 	//this is complitly teorical as the real hard seems to use a table intead of calculate the values.
 | 
					
						
							|  |  |  | 	if(bpmem.fogRange.Base.Enabled) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		WRITE (p, "  float x_adjust = (2.0f * (clipPos.x / "I_FOG"[2].y)) - 1.0f - "I_FOG"[2].x;\n"); | 
					
						
							|  |  |  | 		WRITE (p, "  x_adjust = sqrt(x_adjust * x_adjust + "I_FOG"[2].z * "I_FOG"[2].z) / "I_FOG"[2].z;\n"); | 
					
						
							|  |  |  | 		WRITE (p, "  ze *= x_adjust;\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | 	WRITE (p, "  float fog = saturate(ze - "I_FOG"[1].z);\n"); | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | 	if(bpmem.fog.c_proj_fsel.fsel > 3) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-02-24 03:38:36 +00:00
										 |  |  | 		WRITE(p, "%s", tevFogFuncsTable[bpmem.fog.c_proj_fsel.fsel]); | 
					
						
							| 
									
										
										
										
											2009-10-25 02:35:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if(bpmem.fog.c_proj_fsel.fsel != 2) | 
					
						
							|  |  |  | 			WARN_LOG(VIDEO, "Unknown Fog Type! %08x", bpmem.fog.c_proj_fsel.fsel); | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-06 13:14:51 +00:00
										 |  |  | 	WRITE(p, "  prev.rgb = lerp(prev.rgb,"I_FOG"[0].rgb,fog);\n"); | 
					
						
							| 
									
										
										
										
											2011-06-04 19:56:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 04:41:58 +00:00
										 |  |  | } |