2020-02-16 20:37:28 +01:00
|
|
|
uniform sampler2D baseTexture;
|
|
|
|
|
|
|
|
uniform vec4 emissiveColor;
|
2021-11-03 23:39:30 +01:00
|
|
|
uniform vec3 dayLight;
|
2020-02-16 20:37:28 +01:00
|
|
|
uniform vec4 skyBgColor;
|
|
|
|
uniform float fogDistance;
|
|
|
|
uniform vec3 eyePosition;
|
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
// The cameraOffset is the current center of the visible world.
|
|
|
|
uniform vec3 cameraOffset;
|
|
|
|
uniform float animationTimer;
|
|
|
|
#ifdef ENABLE_DYNAMIC_SHADOWS
|
|
|
|
// shadow texture
|
|
|
|
uniform sampler2D ShadowMapSampler;
|
|
|
|
// shadow uniforms
|
|
|
|
uniform vec3 v_LightDirection;
|
|
|
|
uniform float f_textureresolution;
|
|
|
|
uniform mat4 m_ShadowViewProj;
|
|
|
|
uniform float f_shadowfar;
|
|
|
|
uniform float f_shadow_strength;
|
|
|
|
uniform vec4 CameraPos;
|
|
|
|
varying float normalOffsetScale;
|
|
|
|
varying float adj_shadow_strength;
|
|
|
|
varying float cosLight;
|
|
|
|
varying float f_normal_length;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
varying vec3 vNormal;
|
|
|
|
varying vec3 vPosition;
|
2022-04-07 22:13:50 +02:00
|
|
|
// World position in the visible world (i.e. relative to the cameraOffset.)
|
|
|
|
// This can be used for many shader effects without loss of precision.
|
|
|
|
// If the absolute position is required it can be calculated with
|
|
|
|
// cameraOffset + worldPosition (for large coordinates the limits of float
|
|
|
|
// precision must be considered).
|
2020-02-16 20:37:28 +01:00
|
|
|
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
|
|
|
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 fogStart = FOG_START;
|
2020-10-25 18:01:03 +01:00
|
|
|
const float fogShadingParameter = 1.0 / (1.0 - fogStart);
|
2020-02-16 20:37:28 +01:00
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
|
2020-04-06 16:06:40 +02:00
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
#ifdef ENABLE_DYNAMIC_SHADOWS
|
2022-03-31 22:40:06 +02:00
|
|
|
uniform float xyPerspectiveBias0;
|
|
|
|
uniform float xyPerspectiveBias1;
|
|
|
|
uniform float zPerspectiveBias;
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
vec4 getPerspectiveFactor(in vec4 shadowPosition)
|
|
|
|
{
|
2022-04-07 22:13:50 +02:00
|
|
|
vec2 s = vec2(shadowPosition.x > CameraPos.x ? 1.0 : -1.0, shadowPosition.y > CameraPos.y ? 1.0 : -1.0);
|
|
|
|
vec2 l = s * (shadowPosition.xy - CameraPos.xy) / (1.0 - s * CameraPos.xy);
|
|
|
|
float pDistance = length(l);
|
2022-03-31 22:40:06 +02:00
|
|
|
float pFactor = pDistance * xyPerspectiveBias0 + xyPerspectiveBias1;
|
2022-04-07 22:13:50 +02:00
|
|
|
l /= pFactor;
|
|
|
|
shadowPosition.xy = CameraPos.xy * (1.0 - l) + s * l;
|
|
|
|
shadowPosition.z *= zPerspectiveBias;
|
2021-06-06 18:51:21 +02:00
|
|
|
return shadowPosition;
|
|
|
|
}
|
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
// assuming near is always 1.0
|
|
|
|
float getLinearDepth()
|
|
|
|
{
|
|
|
|
return 2.0 * f_shadowfar / (f_shadowfar + 1.0 - (2.0 * gl_FragCoord.z - 1.0) * (f_shadowfar - 1.0));
|
|
|
|
}
|
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
vec3 getLightSpacePosition()
|
|
|
|
{
|
|
|
|
vec4 pLightSpace;
|
2021-11-03 23:39:30 +01:00
|
|
|
// some drawtypes have zero normals, so we need to handle it :(
|
|
|
|
#if DRAW_TYPE == NDT_PLANTLIKE
|
|
|
|
pLightSpace = m_ShadowViewProj * vec4(worldPosition, 1.0);
|
|
|
|
#else
|
2022-02-14 09:00:55 +01:00
|
|
|
pLightSpace = m_ShadowViewProj * vec4(worldPosition + normalOffsetScale * normalize(vNormal), 1.0);
|
2021-11-03 23:39:30 +01:00
|
|
|
#endif
|
2021-06-06 18:51:21 +02:00
|
|
|
pLightSpace = getPerspectiveFactor(pLightSpace);
|
|
|
|
return pLightSpace.xyz * 0.5 + 0.5;
|
|
|
|
}
|
2021-11-03 23:39:30 +01:00
|
|
|
// 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);
|
|
|
|
}
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
#ifdef COLORED_SHADOWS
|
|
|
|
|
|
|
|
// c_precision of 128 fits within 7 base-10 digits
|
|
|
|
const float c_precision = 128.0;
|
|
|
|
const float c_precisionp1 = c_precision + 1.0;
|
|
|
|
|
|
|
|
float packColor(vec3 color)
|
|
|
|
{
|
|
|
|
return floor(color.b * c_precision + 0.5)
|
|
|
|
+ floor(color.g * c_precision + 0.5) * c_precisionp1
|
|
|
|
+ floor(color.r * c_precision + 0.5) * c_precisionp1 * c_precisionp1;
|
|
|
|
}
|
|
|
|
|
|
|
|
vec3 unpackColor(float value)
|
|
|
|
{
|
|
|
|
vec3 color;
|
|
|
|
color.b = mod(value, c_precisionp1) / c_precision;
|
|
|
|
color.g = mod(floor(value / c_precisionp1), c_precisionp1) / c_precision;
|
|
|
|
color.r = floor(value / (c_precisionp1 * c_precisionp1)) / c_precision;
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
vec4 getHardShadowColor(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
vec4 texDepth = texture2D(shadowsampler, smTexCoord.xy).rgba;
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
float visibility = step(0.0, realDistance - texDepth.r);
|
2021-06-06 18:51:21 +02:00
|
|
|
vec4 result = vec4(visibility, vec3(0.0,0.0,0.0));//unpackColor(texDepth.g));
|
|
|
|
if (visibility < 0.1) {
|
2021-11-03 23:39:30 +01:00
|
|
|
visibility = step(0.0, realDistance - texDepth.b);
|
2021-06-06 18:51:21 +02:00
|
|
|
result = vec4(visibility, unpackColor(texDepth.a));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
float getHardShadow(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
float texDepth = texture2D(shadowsampler, smTexCoord.xy).r;
|
2021-11-03 23:39:30 +01:00
|
|
|
float visibility = step(0.0, realDistance - texDepth);
|
2021-06-06 18:51:21 +02:00
|
|
|
return visibility;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
#if SHADOW_FILTER == 2
|
|
|
|
#define PCFBOUND 3.5
|
|
|
|
#define PCFSAMPLES 64.0
|
|
|
|
#elif SHADOW_FILTER == 1
|
|
|
|
#define PCFBOUND 1.5
|
|
|
|
#if defined(POISSON_FILTER)
|
|
|
|
#define PCFSAMPLES 32.0
|
|
|
|
#else
|
|
|
|
#define PCFSAMPLES 16.0
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define PCFBOUND 0.0
|
|
|
|
#if defined(POISSON_FILTER)
|
|
|
|
#define PCFSAMPLES 4.0
|
|
|
|
#else
|
|
|
|
#define PCFSAMPLES 1.0
|
|
|
|
#endif
|
|
|
|
#endif
|
2021-11-03 23:39:30 +01:00
|
|
|
#ifdef COLORED_SHADOWS
|
|
|
|
float getHardShadowDepth(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
vec4 texDepth = texture2D(shadowsampler, smTexCoord.xy);
|
|
|
|
float depth = max(realDistance - texDepth.r, realDistance - texDepth.b);
|
|
|
|
return depth;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
float getHardShadowDepth(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
float texDepth = texture2D(shadowsampler, smTexCoord.xy).r;
|
|
|
|
float depth = realDistance - texDepth;
|
|
|
|
return depth;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
float getBaseLength(vec2 smTexCoord)
|
|
|
|
{
|
2022-04-07 22:13:50 +02:00
|
|
|
float l = length(2.0 * smTexCoord.xy - 1.0 - CameraPos.xy); // length in texture coords
|
2022-03-31 22:40:06 +02:00
|
|
|
return xyPerspectiveBias1 / (1.0 / l - xyPerspectiveBias0); // return to undistorted coords
|
2021-11-03 23:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
float getDeltaPerspectiveFactor(float l)
|
|
|
|
{
|
2022-04-07 22:13:50 +02:00
|
|
|
return 0.04 * pow(512.0 / f_textureresolution, 0.4) / (xyPerspectiveBias0 * l + xyPerspectiveBias1); // original distortion factor, divided by 10
|
2021-11-03 23:39:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
float getPenumbraRadius(sampler2D shadowsampler, vec2 smTexCoord, float realDistance, float multiplier)
|
|
|
|
{
|
|
|
|
float baseLength = getBaseLength(smTexCoord);
|
|
|
|
float perspectiveFactor;
|
|
|
|
|
|
|
|
// Return fast if sharp shadows are requested
|
2021-11-10 00:31:02 +01:00
|
|
|
if (PCFBOUND == 0.0)
|
|
|
|
return 0.0;
|
2022-04-07 22:13:50 +02:00
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
if (SOFTSHADOWRADIUS <= 1.0) {
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength);
|
|
|
|
return max(2 * length(smTexCoord.xy) * 2048 / f_textureresolution / pow(perspectiveFactor, 3), SOFTSHADOWRADIUS);
|
|
|
|
}
|
|
|
|
|
|
|
|
vec2 clampedpos;
|
|
|
|
float texture_size = 1.0 / (2048 /*f_textureresolution*/ * 0.5);
|
|
|
|
float y, x;
|
|
|
|
float depth = 0.0;
|
|
|
|
float pointDepth;
|
|
|
|
float maxRadius = SOFTSHADOWRADIUS * 5.0 * multiplier;
|
|
|
|
|
|
|
|
float bound = clamp(PCFBOUND * (1 - baseLength), 0.0, PCFBOUND);
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
for (y = -bound; y <= bound; y += 1.0)
|
|
|
|
for (x = -bound; x <= bound; x += 1.0) {
|
|
|
|
clampedpos = vec2(x,y);
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength + length(clampedpos) * texture_size * maxRadius);
|
|
|
|
clampedpos = clampedpos * texture_size * perspectiveFactor * maxRadius * perspectiveFactor + smTexCoord.xy;
|
|
|
|
|
|
|
|
pointDepth = getHardShadowDepth(shadowsampler, clampedpos.xy, realDistance);
|
|
|
|
if (pointDepth > -0.01) {
|
|
|
|
depth += pointDepth;
|
|
|
|
n += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
depth = depth / n;
|
|
|
|
depth = pow(clamp(depth, 0.0, 1000.0), 1.6) / 0.001;
|
|
|
|
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength);
|
|
|
|
return max(length(smTexCoord.xy) * 2 * 2048 / f_textureresolution / pow(perspectiveFactor, 3), depth * maxRadius);
|
|
|
|
}
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
#ifdef POISSON_FILTER
|
|
|
|
const vec2[64] poissonDisk = vec2[64](
|
|
|
|
vec2(0.170019, -0.040254),
|
|
|
|
vec2(-0.299417, 0.791925),
|
|
|
|
vec2(0.645680, 0.493210),
|
|
|
|
vec2(-0.651784, 0.717887),
|
|
|
|
vec2(0.421003, 0.027070),
|
|
|
|
vec2(-0.817194, -0.271096),
|
|
|
|
vec2(-0.705374, -0.668203),
|
|
|
|
vec2(0.977050, -0.108615),
|
|
|
|
vec2(0.063326, 0.142369),
|
|
|
|
vec2(0.203528, 0.214331),
|
|
|
|
vec2(-0.667531, 0.326090),
|
|
|
|
vec2(-0.098422, -0.295755),
|
|
|
|
vec2(-0.885922, 0.215369),
|
|
|
|
vec2(0.566637, 0.605213),
|
|
|
|
vec2(0.039766, -0.396100),
|
|
|
|
vec2(0.751946, 0.453352),
|
|
|
|
vec2(0.078707, -0.715323),
|
|
|
|
vec2(-0.075838, -0.529344),
|
|
|
|
vec2(0.724479, -0.580798),
|
|
|
|
vec2(0.222999, -0.215125),
|
|
|
|
vec2(-0.467574, -0.405438),
|
|
|
|
vec2(-0.248268, -0.814753),
|
|
|
|
vec2(0.354411, -0.887570),
|
|
|
|
vec2(0.175817, 0.382366),
|
|
|
|
vec2(0.487472, -0.063082),
|
|
|
|
vec2(0.355476, 0.025357),
|
|
|
|
vec2(-0.084078, 0.898312),
|
|
|
|
vec2(0.488876, -0.783441),
|
|
|
|
vec2(0.470016, 0.217933),
|
|
|
|
vec2(-0.696890, -0.549791),
|
|
|
|
vec2(-0.149693, 0.605762),
|
|
|
|
vec2(0.034211, 0.979980),
|
|
|
|
vec2(0.503098, -0.308878),
|
|
|
|
vec2(-0.016205, -0.872921),
|
|
|
|
vec2(0.385784, -0.393902),
|
|
|
|
vec2(-0.146886, -0.859249),
|
|
|
|
vec2(0.643361, 0.164098),
|
|
|
|
vec2(0.634388, -0.049471),
|
|
|
|
vec2(-0.688894, 0.007843),
|
|
|
|
vec2(0.464034, -0.188818),
|
|
|
|
vec2(-0.440840, 0.137486),
|
|
|
|
vec2(0.364483, 0.511704),
|
|
|
|
vec2(0.034028, 0.325968),
|
|
|
|
vec2(0.099094, -0.308023),
|
|
|
|
vec2(0.693960, -0.366253),
|
|
|
|
vec2(0.678884, -0.204688),
|
|
|
|
vec2(0.001801, 0.780328),
|
|
|
|
vec2(0.145177, -0.898984),
|
|
|
|
vec2(0.062655, -0.611866),
|
|
|
|
vec2(0.315226, -0.604297),
|
|
|
|
vec2(-0.780145, 0.486251),
|
|
|
|
vec2(-0.371868, 0.882138),
|
|
|
|
vec2(0.200476, 0.494430),
|
|
|
|
vec2(-0.494552, -0.711051),
|
|
|
|
vec2(0.612476, 0.705252),
|
|
|
|
vec2(-0.578845, -0.768792),
|
|
|
|
vec2(-0.772454, -0.090976),
|
|
|
|
vec2(0.504440, 0.372295),
|
|
|
|
vec2(0.155736, 0.065157),
|
|
|
|
vec2(0.391522, 0.849605),
|
|
|
|
vec2(-0.620106, -0.328104),
|
|
|
|
vec2(0.789239, -0.419965),
|
|
|
|
vec2(-0.545396, 0.538133),
|
|
|
|
vec2(-0.178564, -0.596057)
|
|
|
|
);
|
|
|
|
|
|
|
|
#ifdef COLORED_SHADOWS
|
|
|
|
|
|
|
|
vec4 getShadowColor(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
vec2 clampedpos;
|
|
|
|
vec4 visibility = vec4(0.0);
|
2021-11-03 23:39:30 +01:00
|
|
|
float radius = getPenumbraRadius(shadowsampler, smTexCoord, realDistance, 1.5); // scale to align with PCF
|
|
|
|
if (radius < 0.1) {
|
|
|
|
// we are in the middle of even brightness, no need for filtering
|
|
|
|
return getHardShadowColor(shadowsampler, smTexCoord.xy, realDistance);
|
|
|
|
}
|
|
|
|
|
|
|
|
float baseLength = getBaseLength(smTexCoord);
|
|
|
|
float perspectiveFactor;
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
float texture_size = 1.0 / (f_textureresolution * 0.5);
|
2021-11-03 23:39:30 +01:00
|
|
|
int samples = int(clamp(PCFSAMPLES * (1 - baseLength) * (1 - baseLength), PCFSAMPLES / 4, PCFSAMPLES));
|
|
|
|
int init_offset = int(floor(mod(((smTexCoord.x * 34.0) + 1.0) * smTexCoord.y, 64.0-samples)));
|
|
|
|
int end_offset = int(samples) + init_offset;
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
for (int x = init_offset; x < end_offset; x++) {
|
2021-11-03 23:39:30 +01:00
|
|
|
clampedpos = poissonDisk[x];
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength + length(clampedpos) * texture_size * radius);
|
|
|
|
clampedpos = clampedpos * texture_size * perspectiveFactor * radius * perspectiveFactor + smTexCoord.xy;
|
2021-06-06 18:51:21 +02:00
|
|
|
visibility += getHardShadowColor(shadowsampler, clampedpos.xy, realDistance);
|
|
|
|
}
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
return visibility / samples;
|
2021-06-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
float getShadow(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
vec2 clampedpos;
|
|
|
|
float visibility = 0.0;
|
2021-11-03 23:39:30 +01:00
|
|
|
float radius = getPenumbraRadius(shadowsampler, smTexCoord, realDistance, 1.5); // scale to align with PCF
|
|
|
|
if (radius < 0.1) {
|
|
|
|
// we are in the middle of even brightness, no need for filtering
|
|
|
|
return getHardShadow(shadowsampler, smTexCoord.xy, realDistance);
|
|
|
|
}
|
|
|
|
|
|
|
|
float baseLength = getBaseLength(smTexCoord);
|
|
|
|
float perspectiveFactor;
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
float texture_size = 1.0 / (f_textureresolution * 0.5);
|
2021-11-03 23:39:30 +01:00
|
|
|
int samples = int(clamp(PCFSAMPLES * (1 - baseLength) * (1 - baseLength), PCFSAMPLES / 4, PCFSAMPLES));
|
|
|
|
int init_offset = int(floor(mod(((smTexCoord.x * 34.0) + 1.0) * smTexCoord.y, 64.0-samples)));
|
|
|
|
int end_offset = int(samples) + init_offset;
|
2021-06-06 18:51:21 +02:00
|
|
|
|
|
|
|
for (int x = init_offset; x < end_offset; x++) {
|
2021-11-03 23:39:30 +01:00
|
|
|
clampedpos = poissonDisk[x];
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength + length(clampedpos) * texture_size * radius);
|
|
|
|
clampedpos = clampedpos * texture_size * perspectiveFactor * radius * perspectiveFactor + smTexCoord.xy;
|
2021-06-06 18:51:21 +02:00
|
|
|
visibility += getHardShadow(shadowsampler, clampedpos.xy, realDistance);
|
|
|
|
}
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
return visibility / samples;
|
2021-06-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* poisson filter disabled */
|
|
|
|
|
|
|
|
#ifdef COLORED_SHADOWS
|
|
|
|
|
|
|
|
vec4 getShadowColor(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
vec2 clampedpos;
|
|
|
|
vec4 visibility = vec4(0.0);
|
2021-11-03 23:39:30 +01:00
|
|
|
float radius = getPenumbraRadius(shadowsampler, smTexCoord, realDistance, 1.0);
|
|
|
|
if (radius < 0.1) {
|
|
|
|
// we are in the middle of even brightness, no need for filtering
|
|
|
|
return getHardShadowColor(shadowsampler, smTexCoord.xy, realDistance);
|
|
|
|
}
|
|
|
|
|
|
|
|
float baseLength = getBaseLength(smTexCoord);
|
|
|
|
float perspectiveFactor;
|
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
float texture_size = 1.0 / (f_textureresolution * 0.5);
|
|
|
|
float y, x;
|
2021-11-03 23:39:30 +01:00
|
|
|
float bound = clamp(PCFBOUND * (1 - baseLength), PCFBOUND / 2, PCFBOUND);
|
|
|
|
int n = 0;
|
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
// basic PCF filter
|
2021-11-03 23:39:30 +01:00
|
|
|
for (y = -bound; y <= bound; y += 1.0)
|
|
|
|
for (x = -bound; x <= bound; x += 1.0) {
|
|
|
|
clampedpos = vec2(x,y); // screen offset
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength + length(clampedpos) * texture_size * radius / bound);
|
|
|
|
clampedpos = clampedpos * texture_size * perspectiveFactor * radius * perspectiveFactor / bound + smTexCoord.xy; // both dx,dy and radius are adjusted
|
2021-06-06 18:51:21 +02:00
|
|
|
visibility += getHardShadowColor(shadowsampler, clampedpos.xy, realDistance);
|
2021-11-03 23:39:30 +01:00
|
|
|
n += 1;
|
2021-06-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
return visibility / n;
|
2021-06-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
float getShadow(sampler2D shadowsampler, vec2 smTexCoord, float realDistance)
|
|
|
|
{
|
|
|
|
vec2 clampedpos;
|
|
|
|
float visibility = 0.0;
|
2021-11-03 23:39:30 +01:00
|
|
|
float radius = getPenumbraRadius(shadowsampler, smTexCoord, realDistance, 1.0);
|
|
|
|
if (radius < 0.1) {
|
|
|
|
// we are in the middle of even brightness, no need for filtering
|
|
|
|
return getHardShadow(shadowsampler, smTexCoord.xy, realDistance);
|
|
|
|
}
|
|
|
|
|
|
|
|
float baseLength = getBaseLength(smTexCoord);
|
|
|
|
float perspectiveFactor;
|
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
float texture_size = 1.0 / (f_textureresolution * 0.5);
|
|
|
|
float y, x;
|
2021-11-03 23:39:30 +01:00
|
|
|
float bound = clamp(PCFBOUND * (1 - baseLength), PCFBOUND / 2, PCFBOUND);
|
|
|
|
int n = 0;
|
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
// basic PCF filter
|
2021-11-03 23:39:30 +01:00
|
|
|
for (y = -bound; y <= bound; y += 1.0)
|
|
|
|
for (x = -bound; x <= bound; x += 1.0) {
|
|
|
|
clampedpos = vec2(x,y); // screen offset
|
|
|
|
perspectiveFactor = getDeltaPerspectiveFactor(baseLength + length(clampedpos) * texture_size * radius / bound);
|
|
|
|
clampedpos = clampedpos * texture_size * perspectiveFactor * radius * perspectiveFactor / bound + smTexCoord.xy; // both dx,dy and radius are adjusted
|
2021-06-06 18:51:21 +02:00
|
|
|
visibility += getHardShadow(shadowsampler, clampedpos.xy, realDistance);
|
2021-11-03 23:39:30 +01:00
|
|
|
n += 1;
|
2021-06-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
return visibility / n;
|
2021-06-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
#if ENABLE_TONE_MAPPING
|
2022-04-07 22:13:50 +02:00
|
|
|
|
2021-11-03 23:39:30 +01:00
|
|
|
/* Hable's UC2 Tone mapping parameters
|
|
|
|
A = 0.22;
|
|
|
|
B = 0.30;
|
|
|
|
C = 0.10;
|
|
|
|
D = 0.20;
|
|
|
|
E = 0.01;
|
|
|
|
F = 0.30;
|
|
|
|
W = 11.2;
|
|
|
|
equation used: ((x * (A * x + C * B) + D * E) / (x * (A * x + B) + D * F)) - E / F
|
|
|
|
*/
|
|
|
|
|
|
|
|
vec3 uncharted2Tonemap(vec3 x)
|
|
|
|
{
|
|
|
|
return ((x * (0.22 * x + 0.03) + 0.002) / (x * (0.22 * x + 0.3) + 0.06)) - 0.03333;
|
|
|
|
}
|
|
|
|
|
|
|
|
vec4 applyToneMapping(vec4 color)
|
|
|
|
{
|
|
|
|
color = vec4(pow(color.rgb, vec3(2.2)), color.a);
|
|
|
|
const float gamma = 1.6;
|
|
|
|
const float exposureBias = 5.5;
|
|
|
|
color.rgb = uncharted2Tonemap(exposureBias * color.rgb);
|
|
|
|
// Precalculated white_scale from
|
|
|
|
//vec3 whiteScale = 1.0 / uncharted2Tonemap(vec3(W));
|
|
|
|
vec3 whiteScale = vec3(1.036015346);
|
|
|
|
color.rgb *= whiteScale;
|
|
|
|
return vec4(pow(color.rgb, vec3(1.0 / gamma)), color.a);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
vec3 color;
|
2020-10-25 18:01:03 +01:00
|
|
|
vec2 uv = varTexCoord.st;
|
2020-02-16 20:37:28 +01:00
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
vec4 base = texture2D(baseTexture, uv).rgba;
|
2020-08-25 20:49:51 +02:00
|
|
|
// If alpha is zero, we can just discard the pixel. This fixes transparency
|
2020-10-25 18:01:03 +01:00
|
|
|
// on GPUs like GC7000L, where GL_ALPHA_TEST is not implemented in mesa,
|
|
|
|
// and also on GLES 2, where GL_ALPHA_TEST is missing entirely.
|
2021-09-10 21:59:29 +02:00
|
|
|
#ifdef USE_DISCARD
|
|
|
|
if (base.a == 0.0)
|
|
|
|
discard;
|
|
|
|
#endif
|
|
|
|
#ifdef USE_DISCARD_REF
|
|
|
|
if (base.a < 0.5)
|
2020-08-25 20:49:51 +02:00
|
|
|
discard;
|
|
|
|
#endif
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
color = base.rgb;
|
2022-04-07 22:13:50 +02:00
|
|
|
vec4 col = vec4(color.rgb * varColor.rgb, 1.0);
|
2021-11-04 03:03:10 +01:00
|
|
|
col.rgb *= vIDiff;
|
2020-06-09 21:38:09 +02:00
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
#ifdef ENABLE_DYNAMIC_SHADOWS
|
2022-03-26 16:58:26 +01:00
|
|
|
if (f_shadow_strength > 0.0) {
|
|
|
|
float shadow_int = 0.0;
|
|
|
|
vec3 shadow_color = vec3(0.0, 0.0, 0.0);
|
|
|
|
vec3 posLightSpace = getLightSpacePosition();
|
2021-06-06 18:51:21 +02:00
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
float distance_rate = (1.0 - pow(clamp(2.0 * length(posLightSpace.xy - 0.5),0.0,1.0), 10.0));
|
|
|
|
if (max(abs(posLightSpace.x - 0.5), abs(posLightSpace.y - 0.5)) > 0.5)
|
|
|
|
distance_rate = 0.0;
|
2022-03-31 22:40:06 +02:00
|
|
|
float f_adj_shadow_strength = max(adj_shadow_strength-mtsmoothstep(0.9,1.1, posLightSpace.z),0.0);
|
2021-11-03 23:39:30 +01:00
|
|
|
|
2022-03-26 16:58:26 +01:00
|
|
|
if (distance_rate > 1e-7) {
|
2022-04-07 22:13:50 +02:00
|
|
|
|
2021-06-06 18:51:21 +02:00
|
|
|
#ifdef COLORED_SHADOWS
|
2022-03-26 16:58:26 +01:00
|
|
|
vec4 visibility;
|
|
|
|
if (cosLight > 0.0)
|
|
|
|
visibility = getShadowColor(ShadowMapSampler, posLightSpace.xy, posLightSpace.z);
|
|
|
|
else
|
|
|
|
visibility = vec4(1.0, 0.0, 0.0, 0.0);
|
|
|
|
shadow_int = visibility.r;
|
|
|
|
shadow_color = visibility.gba;
|
2021-06-06 18:51:21 +02:00
|
|
|
#else
|
2022-03-26 16:58:26 +01:00
|
|
|
if (cosLight > 0.0)
|
|
|
|
shadow_int = getShadow(ShadowMapSampler, posLightSpace.xy, posLightSpace.z);
|
|
|
|
else
|
|
|
|
shadow_int = 1.0;
|
2021-06-06 18:51:21 +02:00
|
|
|
#endif
|
2022-03-26 16:58:26 +01:00
|
|
|
shadow_int *= distance_rate;
|
|
|
|
shadow_int = clamp(shadow_int, 0.0, 1.0);
|
2021-06-06 18:51:21 +02:00
|
|
|
|
2022-03-26 16:58:26 +01:00
|
|
|
}
|
2021-06-06 18:51:21 +02:00
|
|
|
|
2022-03-26 16:58:26 +01:00
|
|
|
// turns out that nightRatio falls off much faster than
|
|
|
|
// actual brightness of artificial light in relation to natual light.
|
|
|
|
// Power ratio was measured on torches in MTG (brightness = 14).
|
|
|
|
float adjusted_night_ratio = pow(max(0.0, nightRatio), 0.6);
|
|
|
|
|
2022-04-07 22:13:50 +02:00
|
|
|
// Apply self-shadowing when light falls at a narrow angle to the surface
|
|
|
|
// Cosine of the cut-off angle.
|
2022-03-26 16:58:26 +01:00
|
|
|
const float self_shadow_cutoff_cosine = 0.14;
|
|
|
|
if (f_normal_length != 0 && cosLight < self_shadow_cutoff_cosine) {
|
|
|
|
shadow_int = max(shadow_int, 1 - clamp(cosLight, 0.0, self_shadow_cutoff_cosine)/self_shadow_cutoff_cosine);
|
|
|
|
shadow_color = mix(vec3(0.0), shadow_color, min(cosLight, self_shadow_cutoff_cosine)/self_shadow_cutoff_cosine);
|
|
|
|
}
|
2021-06-06 18:51:21 +02:00
|
|
|
|
2022-03-26 16:58:26 +01:00
|
|
|
shadow_int *= f_adj_shadow_strength;
|
|
|
|
|
|
|
|
// calculate fragment color from components:
|
|
|
|
col.rgb =
|
|
|
|
adjusted_night_ratio * col.rgb + // artificial light
|
|
|
|
(1.0 - adjusted_night_ratio) * ( // natural light
|
|
|
|
col.rgb * (1.0 - shadow_int * (1.0 - shadow_color)) + // filtered texture color
|
|
|
|
dayLight * shadow_color * shadow_int); // reflected filtered sunlight/moonlight
|
|
|
|
}
|
2021-11-03 23:39:30 +01:00
|
|
|
#endif
|
2021-06-06 18:51:21 +02:00
|
|
|
|
2020-12-19 20:57:10 +01:00
|
|
|
#if ENABLE_TONE_MAPPING
|
2020-04-06 16:06:40 +02:00
|
|
|
col = applyToneMapping(col);
|
|
|
|
#endif
|
|
|
|
|
2020-02-16 20:37:28 +01:00
|
|
|
// Due to a bug in some (older ?) graphics stacks (possibly in the glsl compiler ?),
|
|
|
|
// the fog will only be rendered correctly if the last operation before the
|
|
|
|
// clamp() is an addition. Else, the clamp() seems to be ignored.
|
|
|
|
// E.g. the following won't work:
|
|
|
|
// float clarity = clamp(fogShadingParameter
|
|
|
|
// * (fogDistance - length(eyeVec)) / fogDistance), 0.0, 1.0);
|
|
|
|
// As additions usually come for free following a multiplication, the new formula
|
|
|
|
// should be more efficient as well.
|
|
|
|
// Note: clarity = (1 - fogginess)
|
|
|
|
float clarity = clamp(fogShadingParameter
|
|
|
|
- fogShadingParameter * length(eyeVec) / fogDistance, 0.0, 1.0);
|
|
|
|
col = mix(skyBgColor, col, clarity);
|
2022-04-07 22:13:50 +02:00
|
|
|
col = vec4(col.rgb, base.a);
|
|
|
|
|
|
|
|
gl_FragColor = col;
|
2020-02-16 20:37:28 +01:00
|
|
|
}
|