2013-11-13 03:21:51 +00:00
|
|
|
attribute vec3 attr_Position;
|
2012-12-04 03:05:34 +00:00
|
|
|
attribute vec3 attr_Normal;
|
|
|
|
|
|
|
|
#if defined(USE_VERTEX_ANIMATION)
|
2013-11-13 03:21:51 +00:00
|
|
|
attribute vec3 attr_Position2;
|
2012-12-04 03:05:34 +00:00
|
|
|
attribute vec3 attr_Normal2;
|
2018-07-27 22:40:25 +00:00
|
|
|
#elif defined(USE_BONE_ANIMATION)
|
|
|
|
attribute vec4 attr_BoneIndexes;
|
|
|
|
attribute vec4 attr_BoneWeights;
|
2012-12-04 03:05:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
attribute vec4 attr_Color;
|
|
|
|
attribute vec4 attr_TexCoord0;
|
|
|
|
|
2014-11-11 05:59:37 +00:00
|
|
|
#if defined(USE_TCGEN)
|
2012-12-04 03:05:34 +00:00
|
|
|
attribute vec4 attr_TexCoord1;
|
|
|
|
#endif
|
|
|
|
|
2024-01-06 14:20:30 +00:00
|
|
|
#if defined(USE_TCMOD)
|
|
|
|
uniform vec4 u_DiffuseTexMatrix0;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix1;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix2;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix3;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix4;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix5;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix6;
|
|
|
|
uniform vec4 u_DiffuseTexMatrix7;
|
|
|
|
#endif
|
2012-12-04 03:05:34 +00:00
|
|
|
|
|
|
|
#if defined(USE_TCGEN) || defined(USE_RGBAGEN)
|
2013-10-10 10:41:31 +00:00
|
|
|
uniform vec3 u_LocalViewOrigin;
|
2012-12-04 03:05:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_TCGEN)
|
|
|
|
uniform int u_TCGen0;
|
|
|
|
uniform vec3 u_TCGen0Vector0;
|
|
|
|
uniform vec3 u_TCGen0Vector1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_FOG)
|
|
|
|
uniform vec4 u_FogDistance;
|
|
|
|
uniform vec4 u_FogDepth;
|
|
|
|
uniform float u_FogEyeT;
|
|
|
|
uniform vec4 u_FogColorMask;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_DEFORM_VERTEXES)
|
|
|
|
uniform int u_DeformGen;
|
|
|
|
uniform float u_DeformParams[5];
|
|
|
|
uniform float u_Time;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
uniform mat4 u_ModelViewProjectionMatrix;
|
|
|
|
uniform vec4 u_BaseColor;
|
|
|
|
uniform vec4 u_VertColor;
|
|
|
|
|
|
|
|
#if defined(USE_RGBAGEN)
|
|
|
|
uniform int u_ColorGen;
|
|
|
|
uniform int u_AlphaGen;
|
|
|
|
uniform vec3 u_AmbientLight;
|
|
|
|
uniform vec3 u_DirectedLight;
|
2013-10-10 10:41:31 +00:00
|
|
|
uniform vec3 u_ModelLightDir;
|
2012-12-04 03:05:34 +00:00
|
|
|
uniform float u_PortalRange;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_VERTEX_ANIMATION)
|
|
|
|
uniform float u_VertexLerp;
|
2018-07-27 22:40:25 +00:00
|
|
|
#elif defined(USE_BONE_ANIMATION)
|
|
|
|
uniform mat4 u_BoneMatrix[MAX_GLSL_BONES];
|
2012-12-04 03:05:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
varying vec2 var_DiffuseTex;
|
|
|
|
varying vec4 var_Color;
|
|
|
|
|
|
|
|
#if defined(USE_DEFORM_VERTEXES)
|
|
|
|
vec3 DeformPosition(const vec3 pos, const vec3 normal, const vec2 st)
|
|
|
|
{
|
|
|
|
float base = u_DeformParams[0];
|
|
|
|
float amplitude = u_DeformParams[1];
|
|
|
|
float phase = u_DeformParams[2];
|
|
|
|
float frequency = u_DeformParams[3];
|
|
|
|
float spread = u_DeformParams[4];
|
|
|
|
|
|
|
|
if (u_DeformGen == DGEN_BULGE)
|
|
|
|
{
|
2013-12-02 03:19:26 +00:00
|
|
|
phase *= st.x;
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
else // if (u_DeformGen <= DGEN_WAVE_INVERSE_SAWTOOTH)
|
|
|
|
{
|
|
|
|
phase += dot(pos.xyz, vec3(spread));
|
|
|
|
}
|
|
|
|
|
|
|
|
float value = phase + (u_Time * frequency);
|
|
|
|
float func;
|
|
|
|
|
|
|
|
if (u_DeformGen == DGEN_WAVE_SIN)
|
|
|
|
{
|
|
|
|
func = sin(value * 2.0 * M_PI);
|
|
|
|
}
|
|
|
|
else if (u_DeformGen == DGEN_WAVE_SQUARE)
|
|
|
|
{
|
2013-12-13 05:38:01 +00:00
|
|
|
func = sign(fract(0.5 - value));
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
else if (u_DeformGen == DGEN_WAVE_TRIANGLE)
|
|
|
|
{
|
2013-12-13 05:38:01 +00:00
|
|
|
func = abs(fract(value + 0.75) - 0.5) * 4.0 - 1.0;
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
else if (u_DeformGen == DGEN_WAVE_SAWTOOTH)
|
|
|
|
{
|
|
|
|
func = fract(value);
|
|
|
|
}
|
|
|
|
else if (u_DeformGen == DGEN_WAVE_INVERSE_SAWTOOTH)
|
|
|
|
{
|
|
|
|
func = (1.0 - fract(value));
|
|
|
|
}
|
2013-12-13 05:38:01 +00:00
|
|
|
else // if (u_DeformGen == DGEN_BULGE)
|
2012-12-04 03:05:34 +00:00
|
|
|
{
|
|
|
|
func = sin(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return pos + normal * (base + func * amplitude);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_TCGEN)
|
|
|
|
vec2 GenTexCoords(int TCGen, vec3 position, vec3 normal, vec3 TCGenVector0, vec3 TCGenVector1)
|
|
|
|
{
|
|
|
|
vec2 tex = attr_TexCoord0.st;
|
|
|
|
|
|
|
|
if (TCGen == TCGEN_LIGHTMAP)
|
|
|
|
{
|
|
|
|
tex = attr_TexCoord1.st;
|
|
|
|
}
|
|
|
|
else if (TCGen == TCGEN_ENVIRONMENT_MAPPED)
|
|
|
|
{
|
2013-10-10 10:41:31 +00:00
|
|
|
vec3 viewer = normalize(u_LocalViewOrigin - position);
|
2013-12-13 05:38:01 +00:00
|
|
|
vec2 ref = reflect(viewer, normal).yz;
|
|
|
|
tex.s = ref.x * -0.5 + 0.5;
|
|
|
|
tex.t = ref.y * 0.5 + 0.5;
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
else if (TCGen == TCGEN_VECTOR)
|
|
|
|
{
|
|
|
|
tex = vec2(dot(position, TCGenVector0), dot(position, TCGenVector1));
|
|
|
|
}
|
|
|
|
|
|
|
|
return tex;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_TCMOD)
|
2024-01-06 14:20:30 +00:00
|
|
|
vec2 ModTexCoords(vec2 st, vec3 position, vec4 texMatrix[8])
|
2012-12-04 03:05:34 +00:00
|
|
|
{
|
2024-01-06 14:20:30 +00:00
|
|
|
vec2 st2 = st;
|
2013-12-13 05:38:01 +00:00
|
|
|
vec2 offsetPos = vec2(position.x + position.z, position.y);
|
2024-01-06 14:20:30 +00:00
|
|
|
|
|
|
|
st2 = vec2(st2.x * texMatrix[0].x + st2.y * texMatrix[0].y + texMatrix[0].z,
|
|
|
|
st2.x * texMatrix[1].x + st2.y * texMatrix[1].y + texMatrix[1].z);
|
|
|
|
st2 += texMatrix[0].w * sin(offsetPos * (2.0 * M_PI / 1024.0) + vec2(texMatrix[1].w * 2.0 * M_PI));
|
|
|
|
|
|
|
|
st2 = vec2(st2.x * texMatrix[2].x + st2.y * texMatrix[2].y + texMatrix[2].z,
|
|
|
|
st2.x * texMatrix[3].x + st2.y * texMatrix[3].y + texMatrix[3].z);
|
|
|
|
st2 += texMatrix[2].w * sin(offsetPos * (2.0 * M_PI / 1024.0) + vec2(texMatrix[3].w * 2.0 * M_PI));
|
|
|
|
|
|
|
|
st2 = vec2(st2.x * texMatrix[4].x + st2.y * texMatrix[4].y + texMatrix[4].z,
|
|
|
|
st2.x * texMatrix[5].x + st2.y * texMatrix[5].y + texMatrix[5].z);
|
|
|
|
st2 += texMatrix[4].w * sin(offsetPos * (2.0 * M_PI / 1024.0) + vec2(texMatrix[5].w * 2.0 * M_PI));
|
|
|
|
|
|
|
|
st2 = vec2(st2.x * texMatrix[6].x + st2.y * texMatrix[6].y + texMatrix[6].z,
|
|
|
|
st2.x * texMatrix[7].x + st2.y * texMatrix[7].y + texMatrix[7].z);
|
|
|
|
st2 += texMatrix[6].w * sin(offsetPos * (2.0 * M_PI / 1024.0) + vec2(texMatrix[7].w * 2.0 * M_PI));
|
|
|
|
|
|
|
|
return st2;
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_RGBAGEN)
|
|
|
|
vec4 CalcColor(vec3 position, vec3 normal)
|
|
|
|
{
|
|
|
|
vec4 color = u_VertColor * attr_Color + u_BaseColor;
|
|
|
|
|
|
|
|
if (u_ColorGen == CGEN_LIGHTING_DIFFUSE)
|
|
|
|
{
|
2013-10-10 10:41:31 +00:00
|
|
|
float incoming = clamp(dot(normal, u_ModelLightDir), 0.0, 1.0);
|
2012-12-04 03:05:34 +00:00
|
|
|
|
|
|
|
color.rgb = clamp(u_DirectedLight * incoming + u_AmbientLight, 0.0, 1.0);
|
|
|
|
}
|
|
|
|
|
2013-10-10 10:41:31 +00:00
|
|
|
vec3 viewer = u_LocalViewOrigin - position;
|
2012-12-04 03:05:34 +00:00
|
|
|
|
|
|
|
if (u_AlphaGen == AGEN_LIGHTING_SPECULAR)
|
|
|
|
{
|
2013-11-13 03:21:51 +00:00
|
|
|
vec3 lightDir = normalize(vec3(-960.0, 1980.0, 96.0) - position);
|
2013-09-24 10:29:49 +00:00
|
|
|
vec3 reflected = -reflect(lightDir, normal);
|
2012-12-04 03:05:34 +00:00
|
|
|
|
2013-09-24 10:29:49 +00:00
|
|
|
color.a = clamp(dot(reflected, normalize(viewer)), 0.0, 1.0);
|
|
|
|
color.a *= color.a;
|
|
|
|
color.a *= color.a;
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
else if (u_AlphaGen == AGEN_PORTAL)
|
|
|
|
{
|
2013-09-24 10:29:49 +00:00
|
|
|
color.a = clamp(length(viewer) / u_PortalRange, 0.0, 1.0);
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_FOG)
|
2013-11-13 03:21:51 +00:00
|
|
|
float CalcFog(vec3 position)
|
2012-12-04 03:05:34 +00:00
|
|
|
{
|
2013-12-13 05:38:01 +00:00
|
|
|
float s = dot(vec4(position, 1.0), u_FogDistance) * 8.0;
|
|
|
|
float t = dot(vec4(position, 1.0), u_FogDepth);
|
2012-12-04 03:05:34 +00:00
|
|
|
|
2013-12-13 05:38:01 +00:00
|
|
|
float eyeOutside = float(u_FogEyeT < 0.0);
|
2014-08-29 07:39:37 +00:00
|
|
|
float fogged = float(t >= eyeOutside);
|
2013-12-13 05:38:01 +00:00
|
|
|
|
|
|
|
t += 1e-6;
|
2013-09-24 10:29:49 +00:00
|
|
|
t *= fogged / (t - u_FogEyeT * eyeOutside);
|
2012-12-04 03:05:34 +00:00
|
|
|
|
2013-09-24 10:29:49 +00:00
|
|
|
return s * t;
|
2012-12-04 03:05:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
#if defined(USE_VERTEX_ANIMATION)
|
2013-12-13 05:38:01 +00:00
|
|
|
vec3 position = mix(attr_Position, attr_Position2, u_VertexLerp);
|
|
|
|
vec3 normal = mix(attr_Normal, attr_Normal2, u_VertexLerp);
|
2018-07-27 22:40:25 +00:00
|
|
|
#elif defined(USE_BONE_ANIMATION)
|
|
|
|
mat4 vtxMat = u_BoneMatrix[int(attr_BoneIndexes.x)] * attr_BoneWeights.x;
|
|
|
|
vtxMat += u_BoneMatrix[int(attr_BoneIndexes.y)] * attr_BoneWeights.y;
|
|
|
|
vtxMat += u_BoneMatrix[int(attr_BoneIndexes.z)] * attr_BoneWeights.z;
|
|
|
|
vtxMat += u_BoneMatrix[int(attr_BoneIndexes.w)] * attr_BoneWeights.w;
|
|
|
|
mat3 nrmMat = mat3(cross(vtxMat[1].xyz, vtxMat[2].xyz), cross(vtxMat[2].xyz, vtxMat[0].xyz), cross(vtxMat[0].xyz, vtxMat[1].xyz));
|
|
|
|
|
|
|
|
vec3 position = vec3(vtxMat * vec4(attr_Position, 1.0));
|
|
|
|
vec3 normal = normalize(nrmMat * attr_Normal);
|
2012-12-04 03:05:34 +00:00
|
|
|
#else
|
2013-11-13 03:21:51 +00:00
|
|
|
vec3 position = attr_Position;
|
2014-10-29 01:15:13 +00:00
|
|
|
vec3 normal = attr_Normal;
|
2012-12-04 03:05:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_DEFORM_VERTEXES)
|
2013-11-13 03:21:51 +00:00
|
|
|
position = DeformPosition(position, normal, attr_TexCoord0.st);
|
2012-12-04 03:05:34 +00:00
|
|
|
#endif
|
|
|
|
|
2013-11-13 03:21:51 +00:00
|
|
|
gl_Position = u_ModelViewProjectionMatrix * vec4(position, 1.0);
|
2012-12-04 03:05:34 +00:00
|
|
|
|
|
|
|
#if defined(USE_TCGEN)
|
2013-11-13 03:21:51 +00:00
|
|
|
vec2 tex = GenTexCoords(u_TCGen0, position, normal, u_TCGen0Vector0, u_TCGen0Vector1);
|
2012-12-04 03:05:34 +00:00
|
|
|
#else
|
|
|
|
vec2 tex = attr_TexCoord0.st;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_TCMOD)
|
2024-01-06 14:20:30 +00:00
|
|
|
vec4 diffuseTexMatrix[8];
|
|
|
|
diffuseTexMatrix[0] = u_DiffuseTexMatrix0;
|
|
|
|
diffuseTexMatrix[1] = u_DiffuseTexMatrix1;
|
|
|
|
diffuseTexMatrix[2] = u_DiffuseTexMatrix2;
|
|
|
|
diffuseTexMatrix[3] = u_DiffuseTexMatrix3;
|
|
|
|
diffuseTexMatrix[4] = u_DiffuseTexMatrix4;
|
|
|
|
diffuseTexMatrix[5] = u_DiffuseTexMatrix5;
|
|
|
|
diffuseTexMatrix[6] = u_DiffuseTexMatrix6;
|
|
|
|
diffuseTexMatrix[7] = u_DiffuseTexMatrix7;
|
|
|
|
var_DiffuseTex = ModTexCoords(tex, position, diffuseTexMatrix);
|
2012-12-04 03:05:34 +00:00
|
|
|
#else
|
|
|
|
var_DiffuseTex = tex;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_RGBAGEN)
|
2013-11-13 03:21:51 +00:00
|
|
|
var_Color = CalcColor(position, normal);
|
2012-12-04 03:05:34 +00:00
|
|
|
#else
|
|
|
|
var_Color = u_VertColor * attr_Color + u_BaseColor;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_FOG)
|
|
|
|
var_Color *= vec4(1.0) - u_FogColorMask * sqrt(clamp(CalcFog(position), 0.0, 1.0));
|
|
|
|
#endif
|
|
|
|
}
|