2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2011-02-06 01:56:45 +00:00
|
|
|
|
|
|
|
#ifndef _LIGHTINGSHADERGEN_H_
|
|
|
|
#define _LIGHTINGSHADERGEN_H_
|
|
|
|
|
2012-08-06 23:16:02 +00:00
|
|
|
#include "ShaderGenCommon.h"
|
|
|
|
#include "NativeVertexFormat.h"
|
|
|
|
#include "XFMemory.h"
|
2011-09-29 19:21:09 +00:00
|
|
|
|
2013-04-10 11:38:31 +00:00
|
|
|
static const char* LightCol(const char* lightsName, unsigned int index, const char* swizzle)
|
|
|
|
{
|
2013-04-10 12:25:18 +00:00
|
|
|
static char result[32];
|
|
|
|
snprintf(result, sizeof(result), "%s[5*%d].%s", lightsName, index, swizzle);
|
2013-04-10 11:38:31 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* LightCosAtt(const char* lightsName, unsigned int index)
|
|
|
|
{
|
2013-04-10 12:25:18 +00:00
|
|
|
static char result[32];
|
|
|
|
snprintf(result, sizeof(result), "%s[5*%d+1]", lightsName, index);
|
2013-04-10 11:38:31 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* LightDistAtt(const char* lightsName, unsigned int index)
|
|
|
|
{
|
2013-04-10 12:25:18 +00:00
|
|
|
static char result[32];
|
|
|
|
snprintf(result, sizeof(result), "%s[5*%d+2]", lightsName, index);
|
2013-04-10 11:38:31 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* LightPos(const char* lightsName, unsigned int index)
|
|
|
|
{
|
2013-04-10 12:25:18 +00:00
|
|
|
static char result[32];
|
|
|
|
snprintf(result, sizeof(result), "%s[5*%d+3]", lightsName, index);
|
2013-04-10 11:38:31 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* LightDir(const char* lightsName, unsigned int index)
|
|
|
|
{
|
2013-04-10 12:25:18 +00:00
|
|
|
static char result[32];
|
|
|
|
snprintf(result, sizeof(result), "%s[5*%d+4]", lightsName, index);
|
2013-04-10 11:38:31 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-31 21:29:33 +00:00
|
|
|
template<class T>
|
|
|
|
static void GenerateLightShader(T& object, LightingUidData& uid_data, int index, int litchan_index, const char* lightsName, int coloralpha)
|
2012-08-06 23:16:02 +00:00
|
|
|
{
|
|
|
|
const LitChannel& chan = (litchan_index > 1) ? xfregs.alpha[litchan_index-2] : xfregs.color[litchan_index];
|
|
|
|
const char* swizzle = "xyzw";
|
2013-04-25 12:01:07 +00:00
|
|
|
if (coloralpha == 1)
|
|
|
|
swizzle = "xyz";
|
|
|
|
else if (coloralpha == 2)
|
|
|
|
swizzle = "w";
|
2012-08-06 23:16:02 +00:00
|
|
|
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.attnfunc |= chan.attnfunc << (2*litchan_index);
|
|
|
|
uid_data.diffusefunc |= chan.diffusefunc << (2*litchan_index);
|
2013-04-25 12:01:07 +00:00
|
|
|
if (!(chan.attnfunc & 1))
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
// atten disabled
|
2013-04-25 12:01:07 +00:00
|
|
|
switch (chan.diffusefunc)
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
case LIGHTDIF_NONE:
|
2013-04-10 11:38:31 +00:00
|
|
|
object.Write("lacc.%s += %s;\n", swizzle, LightCol(lightsName, index, swizzle));
|
2012-08-06 23:16:02 +00:00
|
|
|
break;
|
|
|
|
case LIGHTDIF_SIGN:
|
|
|
|
case LIGHTDIF_CLAMP:
|
2013-04-10 11:38:31 +00:00
|
|
|
object.Write("ldir = normalize(%s.xyz - pos.xyz);\n", LightPos(lightsName, index));
|
|
|
|
object.Write("lacc.%s += %sdot(ldir, _norm0)) * %s;\n",
|
|
|
|
swizzle, chan.diffusefunc != LIGHTDIF_SIGN ? "max(0.0f," :"(", LightCol(lightsName, index, swizzle));
|
2012-08-06 23:16:02 +00:00
|
|
|
break;
|
|
|
|
default: _assert_(0);
|
|
|
|
}
|
|
|
|
}
|
2013-04-25 12:01:07 +00:00
|
|
|
else // spec and spot
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
if (chan.attnfunc == 3)
|
|
|
|
{ // spot
|
2013-04-10 11:38:31 +00:00
|
|
|
object.Write("ldir = %s.xyz - pos.xyz;\n", LightPos(lightsName, index));
|
2012-08-06 23:16:02 +00:00
|
|
|
object.Write("dist2 = dot(ldir, ldir);\n"
|
|
|
|
"dist = sqrt(dist2);\n"
|
|
|
|
"ldir = ldir / dist;\n"
|
2013-04-10 11:38:31 +00:00
|
|
|
"attn = max(0.0f, dot(ldir, %s.xyz));\n", LightDir(lightsName, index));
|
|
|
|
object.Write("attn = max(0.0f, dot(%s.xyz, float3(1.0f, attn, attn*attn))) / dot(%s.xyz, float3(1.0f,dist,dist2));\n", LightCosAtt(lightsName, index), LightDistAtt(lightsName, index));
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
else if (chan.attnfunc == 1)
|
|
|
|
{ // specular
|
2013-04-10 11:38:31 +00:00
|
|
|
object.Write("ldir = normalize(%s.xyz);\n", LightPos(lightsName, index));
|
|
|
|
object.Write("attn = (dot(_norm0,ldir) >= 0.0f) ? max(0.0f, dot(_norm0, %s.xyz)) : 0.0f;\n", LightDir(lightsName, index));
|
|
|
|
object.Write("attn = max(0.0f, dot(%s.xyz, float3(1,attn,attn*attn))) / dot(%s.xyz, float3(1,attn,attn*attn));\n", LightCosAtt(lightsName, index), LightDistAtt(lightsName, index));
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (chan.diffusefunc)
|
|
|
|
{
|
|
|
|
case LIGHTDIF_NONE:
|
2013-04-10 11:38:31 +00:00
|
|
|
object.Write("lacc.%s += attn * %s;\n", swizzle, LightCol(lightsName, index, swizzle));
|
2012-08-06 23:16:02 +00:00
|
|
|
break;
|
|
|
|
case LIGHTDIF_SIGN:
|
|
|
|
case LIGHTDIF_CLAMP:
|
2013-04-10 11:38:31 +00:00
|
|
|
object.Write("lacc.%s += attn * %sdot(ldir, _norm0)) * %s;\n",
|
2012-08-06 23:16:02 +00:00
|
|
|
swizzle,
|
|
|
|
chan.diffusefunc != LIGHTDIF_SIGN ? "max(0.0f," :"(",
|
2013-04-10 11:38:31 +00:00
|
|
|
LightCol(lightsName, index, swizzle));
|
2012-08-06 23:16:02 +00:00
|
|
|
break;
|
|
|
|
default: _assert_(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
object.Write("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// vertex shader
|
|
|
|
// lights/colors
|
|
|
|
// materials name is I_MATERIALS in vs and I_PMATERIALS in ps
|
|
|
|
// inColorName is color in vs and colors_ in ps
|
|
|
|
// dest is o.colors_ in vs and colors_ in ps
|
2013-03-31 21:29:33 +00:00
|
|
|
template<class T>
|
|
|
|
static void GenerateLightingShader(T& object, LightingUidData& uid_data, int components, const char* materialsName, const char* lightsName, const char* inColorName, const char* dest)
|
2012-08-06 23:16:02 +00:00
|
|
|
{
|
|
|
|
for (unsigned int j = 0; j < xfregs.numChan.numColorChans; j++)
|
|
|
|
{
|
|
|
|
const LitChannel& color = xfregs.color[j];
|
|
|
|
const LitChannel& alpha = xfregs.alpha[j];
|
|
|
|
|
|
|
|
object.Write("{\n");
|
|
|
|
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.matsource |= xfregs.color[j].matsource << j;
|
2013-04-25 12:01:07 +00:00
|
|
|
if (color.matsource) // from vertex
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
if (components & (VB_HAS_COL0 << j))
|
|
|
|
object.Write("mat = %s%d;\n", inColorName, j);
|
|
|
|
else if (components & VB_HAS_COL0)
|
|
|
|
object.Write("mat = %s0;\n", inColorName);
|
|
|
|
else
|
|
|
|
object.Write("mat = float4(1.0f, 1.0f, 1.0f, 1.0f);\n");
|
|
|
|
}
|
|
|
|
else // from color
|
2013-04-25 12:01:07 +00:00
|
|
|
{
|
2013-03-26 21:16:29 +00:00
|
|
|
object.Write("mat = %s[%d];\n", materialsName, j+2);
|
2013-04-25 12:01:07 +00:00
|
|
|
}
|
2012-08-06 23:16:02 +00:00
|
|
|
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.enablelighting |= xfregs.color[j].enablelighting << j;
|
2013-04-25 12:01:07 +00:00
|
|
|
if (color.enablelighting)
|
|
|
|
{
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.ambsource |= xfregs.color[j].ambsource << j;
|
2013-04-25 12:01:07 +00:00
|
|
|
if (color.ambsource) // from vertex
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
if (components & (VB_HAS_COL0<<j) )
|
|
|
|
object.Write("lacc = %s%d;\n", inColorName, j);
|
|
|
|
else if (components & VB_HAS_COL0 )
|
|
|
|
object.Write("lacc = %s0;\n", inColorName);
|
|
|
|
else
|
|
|
|
object.Write("lacc = float4(0.0f, 0.0f, 0.0f, 0.0f);\n");
|
|
|
|
}
|
|
|
|
else // from color
|
2013-04-25 12:01:07 +00:00
|
|
|
{
|
2013-03-26 21:16:29 +00:00
|
|
|
object.Write("lacc = %s[%d];\n", materialsName, j);
|
2013-04-25 12:01:07 +00:00
|
|
|
}
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
object.Write("lacc = float4(1.0f, 1.0f, 1.0f, 1.0f);\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if alpha is different
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.matsource |= xfregs.alpha[j].matsource << (j+2);
|
2013-04-25 12:01:07 +00:00
|
|
|
if (alpha.matsource != color.matsource)
|
|
|
|
{
|
|
|
|
if (alpha.matsource) // from vertex
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
if (components & (VB_HAS_COL0<<j))
|
|
|
|
object.Write("mat.w = %s%d.w;\n", inColorName, j);
|
|
|
|
else if (components & VB_HAS_COL0)
|
|
|
|
object.Write("mat.w = %s0.w;\n", inColorName);
|
|
|
|
else object.Write("mat.w = 1.0f;\n");
|
|
|
|
}
|
|
|
|
else // from color
|
2013-04-25 12:01:07 +00:00
|
|
|
{
|
2013-03-26 21:16:29 +00:00
|
|
|
object.Write("mat.w = %s[%d].w;\n", materialsName, j+2);
|
2013-04-25 12:01:07 +00:00
|
|
|
}
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.enablelighting |= xfregs.alpha[j].enablelighting << (j+2);
|
2012-08-06 23:16:02 +00:00
|
|
|
if (alpha.enablelighting)
|
|
|
|
{
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.ambsource |= xfregs.alpha[j].ambsource << (j+2);
|
2013-04-25 12:01:07 +00:00
|
|
|
if (alpha.ambsource) // from vertex
|
|
|
|
{
|
2012-08-06 23:16:02 +00:00
|
|
|
if (components & (VB_HAS_COL0<<j) )
|
|
|
|
object.Write("lacc.w = %s%d.w;\n", inColorName, j);
|
|
|
|
else if (components & VB_HAS_COL0 )
|
|
|
|
object.Write("lacc.w = %s0.w;\n", inColorName);
|
|
|
|
else
|
|
|
|
object.Write("lacc.w = 0.0f;\n");
|
|
|
|
}
|
|
|
|
else // from color
|
2013-04-25 12:01:07 +00:00
|
|
|
{
|
2013-03-26 21:16:29 +00:00
|
|
|
object.Write("lacc.w = %s[%d].w;\n", materialsName, j);
|
2013-04-25 12:01:07 +00:00
|
|
|
}
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
object.Write("lacc.w = 1.0f;\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(color.enablelighting && alpha.enablelighting)
|
|
|
|
{
|
|
|
|
// both have lighting, test if they use the same lights
|
|
|
|
int mask = 0;
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.attnfunc |= color.attnfunc << (2*j);
|
|
|
|
uid_data.attnfunc |= alpha.attnfunc << (2*(j+2));
|
|
|
|
uid_data.diffusefunc |= color.diffusefunc << (2*j);
|
|
|
|
uid_data.diffusefunc |= alpha.diffusefunc << (2*(j+2));
|
|
|
|
uid_data.light_mask |= color.GetFullLightMask() << (8*j);
|
|
|
|
uid_data.light_mask |= alpha.GetFullLightMask() << (8*(j+2));
|
2012-08-06 23:16:02 +00:00
|
|
|
if(color.lightparams == alpha.lightparams)
|
|
|
|
{
|
|
|
|
mask = color.GetFullLightMask() & alpha.GetFullLightMask();
|
|
|
|
if(mask)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < 8; ++i)
|
|
|
|
{
|
|
|
|
if (mask & (1<<i))
|
|
|
|
{
|
2013-03-31 21:29:33 +00:00
|
|
|
GenerateLightShader<T>(object, uid_data, i, j, lightsName, 3);
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no shared lights
|
|
|
|
for (int i = 0; i < 8; ++i)
|
|
|
|
{
|
|
|
|
if (!(mask&(1<<i)) && (color.GetFullLightMask() & (1<<i)))
|
2013-03-31 21:29:33 +00:00
|
|
|
GenerateLightShader<T>(object, uid_data, i, j, lightsName, 1);
|
2012-08-06 23:16:02 +00:00
|
|
|
if (!(mask&(1<<i)) && (alpha.GetFullLightMask() & (1<<i)))
|
2013-03-31 21:29:33 +00:00
|
|
|
GenerateLightShader<T>(object, uid_data, i, j+2, lightsName, 2);
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (color.enablelighting || alpha.enablelighting)
|
|
|
|
{
|
|
|
|
// lights are disabled on one channel so process only the active ones
|
|
|
|
const LitChannel& workingchannel = color.enablelighting ? color : alpha;
|
|
|
|
const int lit_index = color.enablelighting ? j : (j+2);
|
|
|
|
int coloralpha = color.enablelighting ? 1 : 2;
|
|
|
|
|
2013-05-01 09:39:30 +00:00
|
|
|
uid_data.light_mask |= workingchannel.GetFullLightMask() << (8*lit_index);
|
2012-08-06 23:16:02 +00:00
|
|
|
for (int i = 0; i < 8; ++i)
|
|
|
|
{
|
|
|
|
if (workingchannel.GetFullLightMask() & (1<<i))
|
2013-03-31 21:29:33 +00:00
|
|
|
GenerateLightShader<T>(object, uid_data, i, lit_index, lightsName, coloralpha);
|
2012-08-06 23:16:02 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-18 12:52:36 +00:00
|
|
|
object.Write("%s%d = mat * clamp(lacc, 0.0f, 1.0f);\n", dest, j);
|
2012-08-06 23:16:02 +00:00
|
|
|
object.Write("}\n");
|
|
|
|
}
|
|
|
|
}
|
2011-02-06 01:56:45 +00:00
|
|
|
|
|
|
|
#endif // _LIGHTINGSHADERGEN_H_
|