2014-05-12 12:45:41 +00:00
|
|
|
in vec4 pixelpos;
|
2017-01-28 17:19:58 +00:00
|
|
|
in vec3 glowdist;
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2016-10-03 14:09:32 +00:00
|
|
|
in vec4 vWorldNormal;
|
|
|
|
in vec4 vEyeNormal;
|
2014-07-14 22:19:41 +00:00
|
|
|
in vec4 vTexCoord;
|
|
|
|
in vec4 vColor;
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-07-14 23:05:53 +00:00
|
|
|
out vec4 FragColor;
|
2016-09-20 00:57:57 +00:00
|
|
|
#ifdef GBUFFER_PASS
|
2016-10-05 05:57:27 +00:00
|
|
|
out vec4 FragFog;
|
|
|
|
out vec4 FragNormal;
|
2016-09-20 00:57:57 +00:00
|
|
|
#endif
|
2014-07-14 23:05:53 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
vec4 Process(vec4 color);
|
|
|
|
vec4 ProcessTexel();
|
|
|
|
vec4 ProcessLight(vec4 color);
|
2018-02-19 23:13:05 +00:00
|
|
|
vec3 ProcessMaterial(vec3 material, vec3 color);
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Desaturate a color
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
vec4 desaturate(vec4 texel)
|
|
|
|
{
|
|
|
|
if (uDesaturationFactor > 0.0)
|
|
|
|
{
|
2014-05-21 13:25:25 +00:00
|
|
|
float gray = (texel.r * 0.3 + texel.g * 0.56 + texel.b * 0.14);
|
|
|
|
return mix (texel, vec4(gray,gray,gray,texel.a), uDesaturationFactor);
|
2014-05-12 12:45:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return texel;
|
|
|
|
}
|
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// This function is common for all (non-special-effect) fragment shaders
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
vec4 getTexel(vec2 st)
|
|
|
|
{
|
2014-11-28 11:28:45 +00:00
|
|
|
vec4 texel = texture(tex, st);
|
2014-05-12 12:45:41 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Apply texture modes
|
|
|
|
//
|
|
|
|
switch (uTextureMode)
|
|
|
|
{
|
2014-09-09 11:21:36 +00:00
|
|
|
case 1: // TM_MASK
|
2014-05-12 12:45:41 +00:00
|
|
|
texel.rgb = vec3(1.0,1.0,1.0);
|
|
|
|
break;
|
|
|
|
|
2014-09-09 11:21:36 +00:00
|
|
|
case 2: // TM_OPAQUE
|
2014-05-12 12:45:41 +00:00
|
|
|
texel.a = 1.0;
|
|
|
|
break;
|
|
|
|
|
2014-09-09 11:21:36 +00:00
|
|
|
case 3: // TM_INVERSE
|
2014-05-12 12:45:41 +00:00
|
|
|
texel = vec4(1.0-texel.r, 1.0-texel.b, 1.0-texel.g, texel.a);
|
|
|
|
break;
|
2014-09-09 11:21:36 +00:00
|
|
|
|
|
|
|
case 4: // TM_REDTOALPHA
|
2018-03-22 19:42:17 +00:00
|
|
|
float gray = (texel.r * 0.3 + texel.g * 0.56 + texel.b * 0.14);
|
|
|
|
texel = vec4(1.0, 1.0, 1.0, gray*texel.a);
|
2014-09-09 11:21:36 +00:00
|
|
|
break;
|
2014-09-21 09:08:17 +00:00
|
|
|
|
|
|
|
case 5: // TM_CLAMPY
|
|
|
|
if (st.t < 0.0 || st.t > 1.0)
|
|
|
|
{
|
|
|
|
texel.a = 0.0;
|
|
|
|
}
|
|
|
|
break;
|
2014-05-12 12:45:41 +00:00
|
|
|
}
|
2017-04-07 02:09:04 +00:00
|
|
|
if (uObjectColor2.a == 0.0) texel *= uObjectColor;
|
2017-01-28 17:19:58 +00:00
|
|
|
else texel *= mix(uObjectColor, uObjectColor2, glowdist.z);
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
return desaturate(texel);
|
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
2016-07-23 14:30:28 +00:00
|
|
|
// Doom lighting equation exactly as calculated by zdoom.
|
2014-05-12 12:45:41 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
2016-07-23 14:30:28 +00:00
|
|
|
float R_DoomLightingEquation(float light)
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2017-06-21 22:01:57 +00:00
|
|
|
// L is the integer light level used in the game
|
2016-07-23 14:30:28 +00:00
|
|
|
float L = light * 255.0;
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2017-06-21 22:01:57 +00:00
|
|
|
// z is the depth in view/eye space, positive going into the screen
|
2017-06-25 13:02:34 +00:00
|
|
|
float z;
|
2017-06-25 13:37:14 +00:00
|
|
|
if ((uPalLightLevels >> 8) == 2)
|
2017-06-25 13:02:34 +00:00
|
|
|
{
|
2017-06-25 13:37:14 +00:00
|
|
|
z = distance(pixelpos.xyz, uCameraPos.xyz);
|
2017-06-25 13:02:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-25 13:37:14 +00:00
|
|
|
z = pixelpos.w;
|
2017-06-25 13:02:34 +00:00
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2017-06-21 22:01:57 +00:00
|
|
|
// The zdoom light equation
|
2017-07-09 17:01:34 +00:00
|
|
|
float vis = min(uGlobVis / z, 24.0 / 32.0);
|
2017-06-21 22:01:57 +00:00
|
|
|
float shade = 2.0 - (L + 12.0) / 128.0;
|
2017-01-24 18:44:12 +00:00
|
|
|
float lightscale;
|
2017-06-25 13:02:34 +00:00
|
|
|
if ((uPalLightLevels & 0xff) != 0)
|
2017-07-21 22:45:08 +00:00
|
|
|
lightscale = float(-floor(-(shade - vis) * 31.0) - 0.5) / 31.0;
|
2017-01-24 18:44:12 +00:00
|
|
|
else
|
2017-06-21 22:01:57 +00:00
|
|
|
lightscale = shade - vis;
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2016-07-23 14:30:28 +00:00
|
|
|
// Result is the normalized colormap index (0 bright .. 1 dark)
|
2017-06-21 22:01:57 +00:00
|
|
|
return clamp(lightscale, 0.0, 31.0 / 32.0);
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-02 18:10:57 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Check if light is in shadow according to its 1D shadow map
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2017-03-10 18:10:40 +00:00
|
|
|
#ifdef SUPPORTS_SHADOWMAPS
|
|
|
|
|
2017-08-13 11:49:02 +00:00
|
|
|
float shadowDirToU(vec2 dir)
|
2017-03-02 18:10:57 +00:00
|
|
|
{
|
|
|
|
if (abs(dir.x) > abs(dir.y))
|
|
|
|
{
|
|
|
|
if (dir.x >= 0.0)
|
2017-08-13 11:49:02 +00:00
|
|
|
return dir.y / dir.x * 0.125 + (0.25 + 0.125);
|
2017-03-02 18:10:57 +00:00
|
|
|
else
|
2017-08-13 11:49:02 +00:00
|
|
|
return dir.y / dir.x * 0.125 + (0.75 + 0.125);
|
2017-03-02 18:10:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (dir.y >= 0.0)
|
2017-08-13 11:49:02 +00:00
|
|
|
return dir.x / dir.y * 0.125 + 0.125;
|
2017-03-02 18:10:57 +00:00
|
|
|
else
|
2017-08-13 11:49:02 +00:00
|
|
|
return dir.x / dir.y * 0.125 + (0.50 + 0.125);
|
2017-03-02 18:10:57 +00:00
|
|
|
}
|
2017-08-13 11:49:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float sampleShadowmap(vec2 dir, float v)
|
|
|
|
{
|
|
|
|
float u = shadowDirToU(dir);
|
2017-03-04 08:14:01 +00:00
|
|
|
float dist2 = dot(dir, dir);
|
|
|
|
return texture(ShadowMap, vec2(u, v)).x > dist2 ? 1.0 : 0.0;
|
2017-03-02 18:10:57 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 11:49:02 +00:00
|
|
|
float sampleShadowmapLinear(vec2 dir, float v)
|
|
|
|
{
|
|
|
|
float u = shadowDirToU(dir);
|
|
|
|
float dist2 = dot(dir, dir);
|
|
|
|
|
|
|
|
vec2 isize = textureSize(ShadowMap, 0);
|
|
|
|
vec2 size = vec2(isize);
|
|
|
|
|
|
|
|
vec2 fetchPos = vec2(u, v) * size - vec2(0.5, 0.0);
|
|
|
|
if (fetchPos.x < 0.0)
|
|
|
|
fetchPos.x += size.x;
|
|
|
|
|
|
|
|
ivec2 ifetchPos = ivec2(fetchPos);
|
|
|
|
int y = ifetchPos.y;
|
|
|
|
|
|
|
|
float t = fract(fetchPos.x);
|
|
|
|
int x0 = ifetchPos.x;
|
|
|
|
int x1 = ifetchPos.x + 1;
|
|
|
|
if (x1 == isize.x)
|
|
|
|
x1 = 0;
|
|
|
|
|
|
|
|
float depth0 = texelFetch(ShadowMap, ivec2(x0, y), 0).x;
|
|
|
|
float depth1 = texelFetch(ShadowMap, ivec2(x1, y), 0).x;
|
|
|
|
return mix(step(dist2, depth0), step(dist2, depth1), t);
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:35:07 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Check if light is in shadow using Percentage Closer Filtering (PCF)
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
#define PCF_FILTER_STEP_COUNT 3
|
|
|
|
#define PCF_COUNT (PCF_FILTER_STEP_COUNT * 2 + 1)
|
|
|
|
|
2017-08-13 11:49:02 +00:00
|
|
|
// #define USE_LINEAR_SHADOW_FILTER
|
|
|
|
#define USE_PCF_SHADOW_FILTER 1
|
|
|
|
|
2017-03-08 00:35:07 +00:00
|
|
|
float shadowmapAttenuation(vec4 lightpos, float shadowIndex)
|
|
|
|
{
|
2017-03-10 21:08:55 +00:00
|
|
|
if (shadowIndex >= 1024.0)
|
2017-03-10 18:10:40 +00:00
|
|
|
return 1.0; // No shadowmap available for this light
|
|
|
|
|
2017-03-10 21:08:55 +00:00
|
|
|
float v = (shadowIndex + 0.5) / 1024.0;
|
|
|
|
|
|
|
|
vec2 ray = pixelpos.xz - lightpos.xz;
|
|
|
|
float length = length(ray);
|
|
|
|
if (length < 3.0)
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
vec2 dir = ray / length;
|
|
|
|
|
2017-08-13 11:49:02 +00:00
|
|
|
#if defined(USE_LINEAR_SHADOW_FILTER)
|
|
|
|
ray -= dir * 6.0; // Shadow acne margin
|
|
|
|
return sampleShadowmapLinear(ray, v);
|
|
|
|
#elif defined(USE_PCF_SHADOW_FILTER)
|
|
|
|
ray -= dir * 2.0; // Shadow acne margin
|
2017-03-10 21:08:55 +00:00
|
|
|
dir = dir * min(length / 50.0, 1.0); // avoid sampling behind light
|
|
|
|
|
|
|
|
vec2 normal = vec2(-dir.y, dir.x);
|
|
|
|
vec2 bias = dir * 10.0;
|
|
|
|
|
2017-03-08 00:35:07 +00:00
|
|
|
float sum = 0.0;
|
|
|
|
for (float x = -PCF_FILTER_STEP_COUNT; x <= PCF_FILTER_STEP_COUNT; x++)
|
|
|
|
{
|
2017-03-10 21:08:55 +00:00
|
|
|
sum += sampleShadowmap(ray + normal * x - bias * abs(x), v);
|
2017-03-08 00:35:07 +00:00
|
|
|
}
|
|
|
|
return sum / PCF_COUNT;
|
2017-08-13 11:49:02 +00:00
|
|
|
#else // nearest shadow filter
|
|
|
|
ray -= dir * 6.0; // Shadow acne margin
|
|
|
|
return sampleShadowmap(ray, v);
|
|
|
|
#endif
|
2017-03-08 00:35:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
float shadowAttenuation(vec4 lightpos, float lightcolorA)
|
|
|
|
{
|
|
|
|
float shadowIndex = abs(lightcolorA) - 1.0;
|
|
|
|
return shadowmapAttenuation(lightpos, shadowIndex);
|
|
|
|
}
|
2017-03-10 18:10:40 +00:00
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
#else
|
2016-10-03 14:09:32 +00:00
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
float shadowAttenuation(vec4 lightpos, float lightcolorA)
|
2016-10-03 14:09:32 +00:00
|
|
|
{
|
2018-02-19 01:01:33 +00:00
|
|
|
return 1.0;
|
2016-10-03 14:09:32 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
#endif
|
2018-01-23 22:10:28 +00:00
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
float spotLightAttenuation(vec4 lightpos, vec3 spotdir, float lightCosInnerAngle, float lightCosOuterAngle)
|
2018-01-23 22:10:28 +00:00
|
|
|
{
|
2018-02-19 01:01:33 +00:00
|
|
|
vec3 lightDirection = normalize(lightpos.xyz - pixelpos.xyz);
|
|
|
|
float cosDir = dot(lightDirection, spotdir);
|
|
|
|
return smoothstep(lightCosOuterAngle, lightCosInnerAngle, cosDir);
|
2018-01-23 22:10:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Adjust normal vector according to the normal map
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2018-02-19 23:13:05 +00:00
|
|
|
#if defined(NORMALMAP)
|
2018-01-23 22:10:28 +00:00
|
|
|
mat3 cotangent_frame(vec3 n, vec3 p, vec2 uv)
|
|
|
|
{
|
|
|
|
// get edge vectors of the pixel triangle
|
|
|
|
vec3 dp1 = dFdx(p);
|
|
|
|
vec3 dp2 = dFdy(p);
|
|
|
|
vec2 duv1 = dFdx(uv);
|
|
|
|
vec2 duv2 = dFdy(uv);
|
|
|
|
|
|
|
|
// solve the linear system
|
|
|
|
vec3 dp2perp = cross(n, dp2); // cross(dp2, n);
|
|
|
|
vec3 dp1perp = cross(dp1, n); // cross(n, dp1);
|
|
|
|
vec3 t = dp2perp * duv1.x + dp1perp * duv2.x;
|
|
|
|
vec3 b = dp2perp * duv1.y + dp1perp * duv2.y;
|
|
|
|
|
|
|
|
// construct a scale-invariant frame
|
|
|
|
float invmax = inversesqrt(max(dot(t,t), dot(b,b)));
|
|
|
|
return mat3(t * invmax, b * invmax, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
vec3 ApplyNormalMap()
|
|
|
|
{
|
|
|
|
#define WITH_NORMALMAP_UNSIGNED
|
|
|
|
#define WITH_NORMALMAP_GREEN_UP
|
|
|
|
//#define WITH_NORMALMAP_2CHANNEL
|
|
|
|
|
2018-01-23 22:59:58 +00:00
|
|
|
vec3 interpolatedNormal = normalize(vWorldNormal.xyz);
|
2018-01-23 22:10:28 +00:00
|
|
|
|
|
|
|
vec3 map = texture(normaltexture, vTexCoord.st).xyz;
|
|
|
|
#if defined(WITH_NORMALMAP_UNSIGNED)
|
|
|
|
map = map * 255./127. - 128./127.; // Math so "odd" because 0.5 cannot be precisely described in an unsigned format
|
|
|
|
#endif
|
|
|
|
#if defined(WITH_NORMALMAP_2CHANNEL)
|
|
|
|
map.z = sqrt(1 - dot(map.xy, map.xy));
|
|
|
|
#endif
|
|
|
|
#if defined(WITH_NORMALMAP_GREEN_UP)
|
|
|
|
map.y = -map.y;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
mat3 tbn = cotangent_frame(interpolatedNormal, pixelpos.xyz, vTexCoord.st);
|
|
|
|
vec3 bumpedNormal = normalize(tbn * map);
|
|
|
|
return bumpedNormal;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
vec3 ApplyNormalMap()
|
|
|
|
{
|
|
|
|
return normalize(vWorldNormal.xyz);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-06-23 09:13:01 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
2014-05-12 12:45:41 +00:00
|
|
|
// Calculate light
|
2013-06-23 09:13:01 +00:00
|
|
|
//
|
2014-05-12 12:45:41 +00:00
|
|
|
// It is important to note that the light color is not desaturated
|
|
|
|
// due to ZDoom's implementation weirdness. Everything that's added
|
|
|
|
// on top of it, e.g. dynamic lights and glows are, though, because
|
|
|
|
// the objects emitting these lights are also.
|
2013-06-23 09:13:01 +00:00
|
|
|
//
|
2014-05-12 12:45:41 +00:00
|
|
|
// This is making this a bit more complicated than it needs to
|
|
|
|
// because we can't just desaturate the final fragment color.
|
2013-06-23 09:13:01 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
vec4 getLightColor(vec4 material, float fogdist, float fogfactor)
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2014-07-14 22:19:41 +00:00
|
|
|
vec4 color = vColor;
|
2014-05-12 12:45:41 +00:00
|
|
|
|
|
|
|
if (uLightLevel >= 0.0)
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2016-07-23 14:30:28 +00:00
|
|
|
float newlightlevel = 1.0 - R_DoomLightingEquation(uLightLevel);
|
2014-05-12 12:45:41 +00:00
|
|
|
color.rgb *= newlightlevel;
|
|
|
|
}
|
2016-04-26 13:01:23 +00:00
|
|
|
else if (uFogEnabled > 0)
|
2014-05-12 12:45:41 +00:00
|
|
|
{
|
|
|
|
// brightening around the player for light mode 2
|
|
|
|
if (fogdist < uLightDist)
|
|
|
|
{
|
|
|
|
color.rgb *= uLightFactor - (fogdist / uLightDist) * (uLightFactor - 1.0);
|
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
//
|
|
|
|
// apply light diminishing through fog equation
|
|
|
|
//
|
2013-06-23 09:13:01 +00:00
|
|
|
color.rgb = mix(vec3(0.0, 0.0, 0.0), color.rgb, fogfactor);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// handle glowing walls
|
|
|
|
//
|
2014-05-12 12:45:41 +00:00
|
|
|
if (uGlowTopColor.a > 0.0 && glowdist.x < uGlowTopColor.a)
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
color.rgb += desaturate(uGlowTopColor * (1.0 - glowdist.x / uGlowTopColor.a)).rgb;
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
2014-05-12 12:45:41 +00:00
|
|
|
if (uGlowBottomColor.a > 0.0 && glowdist.y < uGlowBottomColor.a)
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
color.rgb += desaturate(uGlowBottomColor * (1.0 - glowdist.y / uGlowBottomColor.a)).rgb;
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
|
|
|
color = min(color, 1.0);
|
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
//
|
|
|
|
// apply brightmaps (or other light manipulation by custom shaders.
|
|
|
|
//
|
|
|
|
color = ProcessLight(color);
|
2013-06-23 09:13:01 +00:00
|
|
|
|
|
|
|
//
|
2018-02-19 01:01:33 +00:00
|
|
|
// apply dynamic lights
|
2013-06-23 09:13:01 +00:00
|
|
|
//
|
2018-02-19 23:13:05 +00:00
|
|
|
return vec4(ProcessMaterial(material.rgb, color.rgb), material.a * vColor.a);
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Applies colored fog
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
vec4 applyFog(vec4 frag, float fogfactor)
|
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
return vec4(mix(uFogColor.rgb, frag.rgb, fogfactor), frag.a);
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 00:04:56 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// The color of the fragment if it is fully occluded by ambient lighting
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
vec3 AmbientOcclusionColor()
|
|
|
|
{
|
|
|
|
float fogdist;
|
|
|
|
float fogfactor;
|
|
|
|
|
|
|
|
//
|
|
|
|
// calculate fog factor
|
|
|
|
//
|
|
|
|
if (uFogEnabled == -1)
|
|
|
|
{
|
|
|
|
fogdist = pixelpos.w;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-13 16:08:04 +00:00
|
|
|
fogdist = max(16.0, distance(pixelpos.xyz, uCameraPos.xyz));
|
2016-09-21 00:04:56 +00:00
|
|
|
}
|
|
|
|
fogfactor = exp2 (uFogDensity * fogdist);
|
|
|
|
|
|
|
|
return mix(uFogColor.rgb, vec3(0.0), fogfactor);
|
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Main shader routine
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
vec4 frag = ProcessTexel();
|
2014-07-14 19:14:43 +00:00
|
|
|
|
2014-07-30 21:13:16 +00:00
|
|
|
#ifndef NO_ALPHATEST
|
2014-07-14 19:14:43 +00:00
|
|
|
if (frag.a <= uAlphaThreshold) discard;
|
|
|
|
#endif
|
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
switch (uFixedColormap)
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
case 0:
|
2014-05-11 11:27:51 +00:00
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
float fogdist = 0.0;
|
|
|
|
float fogfactor = 0.0;
|
|
|
|
|
2014-05-11 14:49:17 +00:00
|
|
|
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
//
|
|
|
|
// calculate fog factor
|
|
|
|
//
|
|
|
|
if (uFogEnabled != 0)
|
|
|
|
{
|
|
|
|
if (uFogEnabled == 1 || uFogEnabled == -1)
|
|
|
|
{
|
|
|
|
fogdist = pixelpos.w;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fogdist = max(16.0, distance(pixelpos.xyz, uCameraPos.xyz));
|
|
|
|
}
|
|
|
|
fogfactor = exp2 (uFogDensity * fogdist);
|
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2018-02-19 01:01:33 +00:00
|
|
|
frag = getLightColor(frag, fogdist, fogfactor);
|
2014-05-12 12:45:41 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// colored fog
|
|
|
|
//
|
|
|
|
if (uFogEnabled < 0)
|
|
|
|
{
|
|
|
|
frag = applyFog(frag, fogfactor);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
2014-05-12 12:45:41 +00:00
|
|
|
|
|
|
|
case 1:
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
float gray = (frag.r * 0.3 + frag.g * 0.56 + frag.b * 0.14);
|
|
|
|
vec4 cm = uFixedColormapStart + gray * uFixedColormapRange;
|
2014-07-14 22:19:41 +00:00
|
|
|
frag = vec4(clamp(cm.rgb, 0.0, 1.0), frag.a*vColor.a);
|
2014-05-12 12:45:41 +00:00
|
|
|
break;
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
case 2:
|
|
|
|
{
|
2014-10-05 07:40:36 +00:00
|
|
|
frag = vColor * frag * uFixedColormapStart;
|
2014-05-12 12:45:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-06-23 09:13:01 +00:00
|
|
|
|
2014-05-12 12:45:41 +00:00
|
|
|
case 3:
|
2013-06-23 09:13:01 +00:00
|
|
|
{
|
2014-05-12 12:45:41 +00:00
|
|
|
float fogdist;
|
|
|
|
float fogfactor;
|
|
|
|
|
|
|
|
//
|
|
|
|
// calculate fog factor
|
|
|
|
//
|
|
|
|
if (uFogEnabled == -1)
|
|
|
|
{
|
|
|
|
fogdist = pixelpos.w;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fogdist = max(16.0, distance(pixelpos.xyz, uCameraPos.xyz));
|
|
|
|
}
|
|
|
|
fogfactor = exp2 (uFogDensity * fogdist);
|
|
|
|
|
2014-07-14 22:19:41 +00:00
|
|
|
frag = vec4(uFogColor.rgb, (1.0 - fogfactor) * frag.a * 0.75 * vColor.a);
|
2014-05-12 12:45:41 +00:00
|
|
|
break;
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
2014-05-12 12:45:41 +00:00
|
|
|
}
|
2014-07-14 23:05:53 +00:00
|
|
|
FragColor = frag;
|
2016-09-20 00:57:57 +00:00
|
|
|
#ifdef GBUFFER_PASS
|
2016-10-05 05:57:27 +00:00
|
|
|
FragFog = vec4(AmbientOcclusionColor(), 1.0);
|
|
|
|
FragNormal = vec4(vEyeNormal.xyz * 0.5 + 0.5, 1.0);
|
2016-09-20 00:57:57 +00:00
|
|
|
#endif
|
2013-06-23 09:13:01 +00:00
|
|
|
}
|
2014-05-12 12:45:41 +00:00
|
|
|
|