2020-02-16 20:37:28 +01:00
|
|
|
uniform mat4 mWorld;
|
|
|
|
|
|
|
|
uniform vec3 eyePosition;
|
|
|
|
uniform float animationTimer;
|
|
|
|
|
|
|
|
varying vec3 vNormal;
|
|
|
|
varying vec3 vPosition;
|
|
|
|
varying vec3 worldPosition;
|
2020-10-25 18:01:03 +01:00
|
|
|
varying lowp vec4 varColor;
|
2020-12-22 14:53:52 +01:00
|
|
|
#ifdef GL_ES
|
|
|
|
varying mediump vec2 varTexCoord;
|
|
|
|
#else
|
|
|
|
centroid varying vec2 varTexCoord;
|
|
|
|
#endif
|
2020-02-16 20:37:28 +01:00
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
#ifdef ENABLE_DYNAMIC_SHADOWS
|
|
|
|
// shadow uniforms
|
|
|
|
uniform vec3 v_LightDirection;
|
|
|
|
uniform float f_textureresolution;
|
|
|
|
uniform mat4 m_ShadowViewProj;
|
|
|
|
uniform float f_shadowfar;
|
|
|
|
uniform float f_shadow_strength;
|
|
|
|
uniform float f_timeofday;
|
|
|
|
varying float cosLight;
|
|
|
|
varying float normalOffsetScale;
|
|
|
|
varying float adj_shadow_strength;
|
|
|
|
varying float f_normal_length;
|
|
|
|
#endif
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
varying vec3 eyeVec;
|
2021-11-03 23:39:30 +01:00
|
|
|
varying float nightRatio;
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
varying float vIDiff;
|
|
|
|
|
|
|
|
const float e = 2.718281828459;
|
|
|
|
const float BS = 10.0;
|
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
#ifdef ENABLE_DYNAMIC_SHADOWS
|
|
|
|
// custom smoothstep implementation because it's not defined in glsl1.2
|
|
|
|
// https://docs.gl/sl4/smoothstep
|
|
|
|
float mtsmoothstep(in float edge0, in float edge1, in float x)
|
|
|
|
{
|
|
|
|
float t = clamp((x - edge0) / (edge1 - edge0), 0.0, 1.0);
|
|
|
|
return t * t * (3.0 - 2.0 * t);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
float directional_ambient(vec3 normal)
|
|
|
|
{
|
|
|
|
vec3 v = normal * normal;
|
|
|
|
|
2020-10-25 18:01:03 +01:00
|
|
|
if (normal.y < 0.0)
|
|
|
|
return dot(v, vec3(0.670820, 0.447213, 0.836660));
|
2020-02-16 20:37:28 +01:00
|
|
|
|
2020-10-25 18:01:03 +01:00
|
|
|
return dot(v, vec3(0.670820, 1.000000, 0.836660));
|
2020-02-16 20:37:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
2020-10-25 18:01:03 +01:00
|
|
|
varTexCoord = (mTexture * inTexCoord0).st;
|
|
|
|
gl_Position = mWorldViewProj * inVertexPosition;
|
2020-02-16 20:37:28 +01:00
|
|
|
|
|
|
|
vPosition = gl_Position.xyz;
|
2021-11-03 23:39:30 +01:00
|
|
|
vNormal = (mWorld * vec4(inVertexNormal, 0.0)).xyz;
|
2020-10-25 18:01:03 +01:00
|
|
|
worldPosition = (mWorld * inVertexPosition).xyz;
|
|
|
|
eyeVec = -(mWorldView * inVertexPosition).xyz;
|
2020-06-09 21:38:09 +02:00
|
|
|
|
2020-06-16 21:48:31 +02:00
|
|
|
#if (MATERIAL_TYPE == TILE_MATERIAL_PLAIN) || (MATERIAL_TYPE == TILE_MATERIAL_PLAIN_ALPHA)
|
|
|
|
vIDiff = 1.0;
|
|
|
|
#else
|
2020-06-09 21:38:09 +02:00
|
|
|
// This is intentional comparison with zero without any margin.
|
|
|
|
// If normal is not equal to zero exactly, then we assume it's a valid, just not normalized vector
|
2020-10-25 18:01:03 +01:00
|
|
|
vIDiff = length(inVertexNormal) == 0.0
|
2020-06-09 21:38:09 +02:00
|
|
|
? 1.0
|
2020-10-25 18:01:03 +01:00
|
|
|
: directional_ambient(normalize(inVertexNormal));
|
2020-06-16 21:48:31 +02:00
|
|
|
#endif
|
2021-11-03 23:39:30 +01:00
|
|
|
nightRatio = 0.0;
|
2020-02-16 20:37:28 +01:00
|
|
|
|
2021-05-08 20:18:29 +02:00
|
|
|
#ifdef GL_ES
|
|
|
|
varColor = inVertexColor.bgra;
|
|
|
|
#else
|
2020-10-25 18:01:03 +01:00
|
|
|
varColor = inVertexColor;
|
2021-05-08 20:18:29 +02:00
|
|
|
#endif
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
#ifdef ENABLE_DYNAMIC_SHADOWS
|
2021-11-03 23:39:30 +01:00
|
|
|
vec3 nNormal = normalize(vNormal);
|
|
|
|
cosLight = dot(nNormal, -v_LightDirection);
|
|
|
|
float texelSize = 767.0 / f_textureresolution;
|
|
|
|
float slopeScale = clamp(1.0 - abs(cosLight), 0.0, 1.0);
|
2021-06-06 18:51:21 +02:00
|
|
|
normalOffsetScale = texelSize * slopeScale;
|
2021-11-03 23:39:30 +01:00
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
if (f_timeofday < 0.2) {
|
|
|
|
adj_shadow_strength = f_shadow_strength * 0.5 *
|
|
|
|
(1.0 - mtsmoothstep(0.18, 0.2, f_timeofday));
|
|
|
|
} else if (f_timeofday >= 0.8) {
|
|
|
|
adj_shadow_strength = f_shadow_strength * 0.5 *
|
|
|
|
mtsmoothstep(0.8, 0.83, f_timeofday);
|
|
|
|
} else {
|
|
|
|
adj_shadow_strength = f_shadow_strength *
|
|
|
|
mtsmoothstep(0.20, 0.25, f_timeofday) *
|
|
|
|
(1.0 - mtsmoothstep(0.7, 0.8, f_timeofday));
|
|
|
|
}
|
|
|
|
f_normal_length = length(vNormal);
|
|
|
|
#endif
|
2020-02-16 20:37:28 +01:00
|
|
|
}
|