veloren/assets/voxygen/shaders/include/sky.glsl

429 lines
16 KiB
Plaintext
Raw Normal View History

#include <random.glsl>
2020-04-04 00:32:39 +00:00
#include <srgb.glsl>
#include <cloud.glsl>
2019-06-05 15:22:06 +00:00
const float PI = 3.141592;
2019-05-31 20:37:11 +00:00
const vec3 SKY_DAY_TOP = vec3(0.1, 0.5, 0.9);
const vec3 SKY_DAY_MID = vec3(0.02, 0.28, 0.8);
2019-11-18 17:18:51 +00:00
const vec3 SKY_DAY_BOT = vec3(0.1, 0.2, 0.3);
2020-04-26 21:11:08 +00:00
const vec3 DAY_LIGHT = vec3(1.2, 1.0, 1.0) * 6.0;
2019-09-25 13:16:02 +00:00
const vec3 SUN_HALO_DAY = vec3(0.35, 0.35, 0.0);
2019-06-15 17:23:01 +00:00
const vec3 SKY_DUSK_TOP = vec3(0.06, 0.1, 0.20);
const vec3 SKY_DUSK_MID = vec3(0.35, 0.1, 0.15);
2019-11-18 17:50:19 +00:00
const vec3 SKY_DUSK_BOT = vec3(0.0, 0.1, 0.23);
2019-10-14 09:48:40 +00:00
const vec3 DUSK_LIGHT = vec3(3.0, 1.5, 0.3);
const vec3 SUN_HALO_DUSK = vec3(1.2, 0.15, 0.0);
2019-06-15 17:23:01 +00:00
2019-07-08 21:10:48 +00:00
const vec3 SKY_NIGHT_TOP = vec3(0.001, 0.001, 0.0025);
const vec3 SKY_NIGHT_MID = vec3(0.001, 0.005, 0.02);
2019-11-18 17:18:51 +00:00
const vec3 SKY_NIGHT_BOT = vec3(0.002, 0.004, 0.004);
const vec3 NIGHT_LIGHT = vec3(0.002, 0.01, 0.03);
2019-06-15 17:23:01 +00:00
2020-03-27 15:13:36 +00:00
const float UNDERWATER_MIST_DIST = 100.0;
2019-06-18 23:59:40 +00:00
vec3 get_sun_dir(float time_of_day) {
const float TIME_FACTOR = (PI * 2.0) / (3600.0 * 24.0);
float sun_angle_rad = time_of_day * TIME_FACTOR;
2020-04-25 20:23:57 +00:00
// return vec3(sin(sun_angle_rad), 0.0, cos(sun_angle_rad));
2019-11-14 16:34:34 +00:00
return vec3(sin(sun_angle_rad), 0.0, cos(sun_angle_rad));
}
vec3 get_moon_dir(float time_of_day) {
const float TIME_FACTOR = (PI * 2.0) / (3600.0 * 24.0);
2019-06-18 23:59:40 +00:00
2019-11-14 16:34:34 +00:00
float moon_angle_rad = time_of_day * TIME_FACTOR;
2020-04-25 20:23:57 +00:00
// -cos((60+60*4)/360*2*pi)-0.5 = 0
// -cos((60+60*5)/360*2*pi)-0.5 = -0.5
// -cos((60+60*6)/360*2*pi)-0.5 = 0
//
// i.e. moon out from (60*5)/360*24 = 20:00 to (60*7/360*24) = 28:00 = 04:00.
//
// Then sun out from 04:00 to 20:00.
return normalize(-vec3(sin(moon_angle_rad), 0.0, cos(moon_angle_rad) - 0.5));
2019-06-18 23:59:40 +00:00
}
2020-04-22 20:56:12 +00:00
const float PERSISTENT_AMBIANCE = 0.0125; // 0.1;// 0.025; // 0.1;
2019-06-18 23:59:40 +00:00
float get_sun_brightness(vec3 sun_dir) {
return max(-sun_dir.z + 0.6, 0.0) * 0.9;
2019-06-18 23:59:40 +00:00
}
2019-11-14 16:34:34 +00:00
float get_moon_brightness(vec3 moon_dir) {
2019-11-14 16:36:36 +00:00
return max(-moon_dir.z + 0.6, 0.0) * 0.07;
2019-11-14 16:34:34 +00:00
}
2019-11-17 22:41:00 +00:00
vec3 get_sun_color(vec3 sun_dir) {
return mix(
mix(
DUSK_LIGHT,
NIGHT_LIGHT,
max(sun_dir.z, 0)
),
DAY_LIGHT,
max(-sun_dir.z, 0)
);
}
vec3 get_moon_color(vec3 moon_dir) {
2019-11-18 17:18:51 +00:00
return vec3(0.05, 0.05, 0.6);
2019-11-17 22:41:00 +00:00
}
2020-04-04 00:32:39 +00:00
// Calculates extra emission and reflectance (due to sunlight / moonlight).
//
// reflectence = k_a * i_a + i_a,persistent
// emittence = Σ { m ∈ lights } i_m * shadow_m * get_light_reflected(light_m)
//
// Note that any shadowing to be done that would block the sun and moon, aside from heightmap shadowing (that will be
// implemented sooon), should be implicitly provided via k_a, k_d, and k_s. For instance, shadowing via ambient occlusion.
//
// Also note that the emitted light calculation is kind of lame... we probabbly need something a bit nicer if we ever want to do
// anything interesting here.
// void get_sun_diffuse(vec3 norm, float time_of_day, out vec3 light, out vec3 diffuse_light, out vec3 ambient_light, float diffusion
void get_sun_diffuse(vec3 norm, float time_of_day, vec3 dir, vec3 k_a, vec3 k_d, vec3 k_s, float alpha, out vec3 emitted_light, out vec3 reflected_light) {
2020-04-24 14:12:20 +00:00
const float SUN_AMBIANCE = 0.1 / 2.0;// 0.1 / 3.0;
2019-06-18 23:59:40 +00:00
vec3 sun_dir = get_sun_dir(time_of_day);
2019-11-14 16:34:34 +00:00
vec3 moon_dir = get_moon_dir(time_of_day);
2019-06-18 23:59:40 +00:00
float sun_light = get_sun_brightness(sun_dir);
2019-11-14 16:34:34 +00:00
float moon_light = get_moon_brightness(moon_dir);
2019-06-18 23:59:40 +00:00
2019-11-17 22:41:00 +00:00
vec3 sun_color = get_sun_color(sun_dir);
vec3 moon_color = get_moon_color(moon_dir);
2019-09-24 20:05:53 +00:00
2019-11-14 16:34:34 +00:00
vec3 sun_chroma = sun_color * sun_light;
vec3 moon_chroma = moon_color * moon_light;
2020-04-04 00:32:39 +00:00
/* float NLsun = max(dot(-norm, sun_dir), 0);
float NLmoon = max(dot(-norm, moon_dir), 0);
vec3 E = -dir; */
// Globbal illumination "estimate" used to light the faces of voxels which are parallel to the sun or moon (which is a very common occurrence).
// Will be attenuated by k_d, which is assumed to carry any additional ambient occlusion information (e.g. about shadowing).
float ambient_sides = clamp(mix(0.5, 0.0, abs(dot(-norm, sun_dir)) * mix(0.0, 1.0, abs(sun_dir.z) * 10000.0) * 10000.0), 0.0, 0.5);
2020-04-21 16:25:19 +00:00
// float ambient_sides = 0.5 - 0.5 * abs(dot(-norm, sun_dir));
2020-04-04 00:32:39 +00:00
emitted_light = k_a * (ambient_sides + vec3(SUN_AMBIANCE * sun_light + moon_light)) + PERSISTENT_AMBIANCE;
// TODO: Add shadows.
reflected_light =
sun_chroma * light_reflection_factor(norm, dir, sun_dir, k_d, k_s, alpha) +
moon_chroma * 1.0 * /*4.0 * */light_reflection_factor(norm, dir, moon_dir, k_d, k_s, alpha);
2020-04-04 00:32:39 +00:00
/* light = sun_chroma + moon_chroma + PERSISTENT_AMBIANCE;
2019-11-14 16:34:34 +00:00
diffuse_light =
2020-01-21 13:14:25 +00:00
sun_chroma * mix(1.0, max(dot(-norm, sun_dir) * 0.5 + 0.5, 0.0), diffusion) +
2020-01-21 12:57:59 +00:00
moon_chroma * mix(1.0, pow(dot(-norm, moon_dir) * 2.0, 2.0), diffusion) +
2019-11-14 16:34:34 +00:00
PERSISTENT_AMBIANCE;
2020-04-04 00:32:39 +00:00
ambient_light = vec3(SUN_AMBIANCE * sun_light + moon_light); */
2019-06-18 23:59:40 +00:00
}
2020-04-21 16:25:19 +00:00
// Returns computed maximum intensity.
float get_sun_diffuse2(vec3 norm, vec3 sun_dir, vec3 moon_dir, vec3 dir, vec3 k_a, vec3 k_d, vec3 k_s, float alpha, out vec3 emitted_light, out vec3 reflected_light) {
2020-04-26 19:01:23 +00:00
const float SUN_AMBIANCE = 0.23 / 3.0;/* / 1.8*/;// 0.1 / 3.0;
2020-04-24 14:12:20 +00:00
const float MOON_AMBIANCE = 0.23;//0.1;
2020-04-12 22:29:59 +00:00
float sun_light = get_sun_brightness(sun_dir);
float moon_light = get_moon_brightness(moon_dir);
vec3 sun_color = get_sun_color(sun_dir);
vec3 moon_color = get_moon_color(moon_dir);
vec3 sun_chroma = sun_color * sun_light;
vec3 moon_chroma = moon_color * moon_light;
2020-04-24 14:12:20 +00:00
// https://en.m.wikipedia.org/wiki/Diffuse_sky_radiation
//
// HdRd radiation should come in at angle normal to us.
// const float H_d = 0.23;
2020-04-25 20:23:57 +00:00
//
// Let β be the angle from horizontal
// (for objects exposed to the sky, where positive when sloping towards south and negative when sloping towards north):
//
// sin β = (north ⋅ norm) / |north||norm|
// = dot(vec3(0, 1, 0), norm)
//
// cos β = sqrt(1.0 - dot(vec3(0, 1, 0), norm))
//
// Let h be the hour angle (180/0.0 at midnight, 90/1.0 at dawn, 0/0.0 at noon, -90/-1.0 at dusk, -180 at midnight/0.0):
// cos h = (midnight ⋅ -light_dir) / |midnight||-light_dir|
// = (noon ⋅ light_dir) / |noon||light_dir|
// = dot(vec3(0, 0, 1), light_dir)
//
// Let φ be the latitude at this point. 0 at equator, -90 at south pole / 90 at north pole.
//
// Let δ be the solar declination (angular distance of the sun's rays north [or south[]
// of the equator), i.e. the angle made by the line joining the centers of the sun and Earth with its projection on the
// equatorial plane. Caused by axial tilt, and 0 at equinoxes. Normally varies between -23.45 and 23.45 degrees.
//
// Let α (the solar altitude / altitud3 angle) be the vertical angle between the projection of the sun's rays on the
// horizontal plane and the direction of the sun's rays (passing through a point).
//
// Let Θ_z be the vertical angle between sun's rays and a line perpendicular to the horizontal plane through a point,
// i.e.
//
// Θ_z = (π/2) - α
//
// i.e. cos Θ_z = sin α and
// cos α = sin Θ_z
//
// Let γ_s be the horizontal angle measured from north to the horizontal projection of the sun's rays (positive when
// measured westwise).
//
// cos Θ_z = cos φ cos h cos δ + sin φ sin δ
// cos γ_s = sec α (cos φ sin δ - cos δ sin φ cos h)
// = (1 / √(1 - cos² Θ_z)) (cos φ sin δ - cos δ sin φ cos h)
// sin γ_s = sec α cos δ sin h
// = (1 / cos α) cos δ sin h
// = (1 / sin Θ_z) cos δ sin h
// = (1 / √(1 - cos² Θ_z)) cos δ sin h
//
// R_b = (sin(δ)sin(φ - β) + cos(δ)cos(h)cos(φ - β))/(sin(δ)sin(φ) + cos(δ)cos(h)cos(φ))
//
// Assuming we are on the equator (i.e. φ = 0), and there is no axial tilt or we are at an equinox (i.e. δ = 0):
//
// cos Θ_z = 1 * cos h * 1 + 0 * 0 = cos h
// cos γ_s = (1 / √(1 - cos² h)) (1 * 0 - 1 * 0 * cos h)
// = (1 / √(1 - cos² h)) * 0
// = 0
// sin γ_s = (1 / √(1 - cos² h)) * sin h
// = sin h / sin h
// = 1
//
// R_b = (0 * sin(0 - β) + 1 * cos(h) * cos(0 - β))/(0 * 0 + 1 * cos(h) * 1)
// = (cos(h)cos(-β)) / cos(H)
// = cos(-β), the angle from horizontal.
//
2020-04-24 14:12:20 +00:00
// NOTE: cos(-β) = cos(β).
2020-04-25 20:23:57 +00:00
// float cos_sun = dot(norm, /*-sun_dir*/vec3(0, 0, 1));
// float cos_moon = dot(norm, -moon_dir);
//
// Let ζ = diffuse reflectance of surrounding ground for solar radiation, then we have
//
// R_d = (1 + cos β) / 2
// R_r = ζ (1 - cos β) / 2
//
// H_t = H_b R_b + H_d R_d + (H_b + H_d) R_r
float sin_beta = dot(vec3(0, 1, 0), norm);
float R_b = sqrt(1.0 - sin_beta * sin_beta);
// Rough estimate of diffuse reflectance of rest of ground.
// NOTE: zeta should be close to 0.7 with snow cover, 0.2 normally? Maybe?
vec3 zeta = max(vec3(0.2), k_d * (1.0 - k_s));//vec3(0.2);// k_d * (1.0 - k_s);
float R_d = (1 + R_b) * 0.5;
vec3 R_r = zeta * (1.0 - R_b) * 0.5;
//
// We can break this down into:
// H_t_b = H_b * (R_b + R_r) = light_intensity * (R_b + R_r)
// H_t_r = H_d * (R_d + R_r) = light_intensity * (R_d + R_r)
vec3 R_t_b = R_b + R_r;
vec3 R_t_r = R_d + R_r;
// vec3 half_vec = normalize(-norm + dir);
2020-04-26 19:01:23 +00:00
vec3 light_frac = R_t_b * (sun_chroma * SUN_AMBIANCE + moon_chroma * MOON_AMBIANCE) * light_reflection_factor(norm, /*norm*/dir, /*-norm*/-dir, /*k_d*/k_d * (1.0 - k_s), /*k_s*/vec3(0.0), alpha);
2020-04-25 20:23:57 +00:00
// vec3 light_frac = /*vec3(1.0)*//*H_d * */
// SUN_AMBIANCE * /*sun_light*/sun_chroma * light_reflection_factor(norm, dir, /*vec3(0, 0, -1.0)*/-norm, vec3((1.0 + cos_sun) * 0.5), vec3(k_s * (1.0 - cos_sun) * 0.5), alpha) +
// MOON_AMBIANCE * /*sun_light*/moon_chroma * light_reflection_factor(norm, dir, /*vec3(0, 0, -1.0)*/-norm, vec3((1.0 + cos_moon) * 0.5), vec3(k_s * (1.0 - cos_moon) * 0.5), alpha);
2020-04-12 22:29:59 +00:00
/* float NLsun = max(dot(-norm, sun_dir), 0);
float NLmoon = max(dot(-norm, moon_dir), 0);
vec3 E = -dir; */
// Globbal illumination "estimate" used to light the faces of voxels which are parallel to the sun or moon (which is a very common occurrence).
// Will be attenuated by k_d, which is assumed to carry any additional ambient occlusion information (e.g. about shadowing).
2020-04-22 20:56:12 +00:00
// float ambient_sides = 0.0;
2020-04-21 16:25:19 +00:00
// float ambient_sides = 0.5 - 0.5 * min(abs(dot(-norm, sun_dir)), abs(dot(-norm, moon_dir)));
// float ambient_sides = clamp(mix(0.5, 0.0, abs(dot(-norm, sun_dir)) * mix(0.0, 1.0, abs(sun_dir.z) * 10000.0) * 10000.0), 0.0, 0.5);
// float ambient_sides = clamp(mix(0.5, 0.0, abs(dot(-norm, sun_dir)) * mix(0.0, 1.0, abs(sun_dir.z) * 10000.0) * 10000.0), 0.0, 0.5);
2020-04-12 22:29:59 +00:00
2020-04-25 20:23:57 +00:00
emitted_light = k_a * light_frac + PERSISTENT_AMBIANCE;
// emitted_light = k_a * light_frac * (/*ambient_sides + */SUN_AMBIANCE * /*sun_light*/sun_chroma + /*vec3(moon_light)*/MOON_AMBIANCE * moon_chroma) + PERSISTENT_AMBIANCE;
2020-04-22 20:56:12 +00:00
2020-04-12 22:29:59 +00:00
// TODO: Add shadows.
2020-04-25 20:23:57 +00:00
reflected_light = R_t_r * (
2020-04-24 14:12:20 +00:00
(1.0 - SUN_AMBIANCE) * sun_chroma * (light_reflection_factor(norm, dir, sun_dir, k_d, k_s, alpha) /*+
light_reflection_factor(norm, dir, normalize(sun_dir + vec3(0.0, 0.1, 0.0)), k_d, k_s, alpha) +
light_reflection_factor(norm, dir, normalize(sun_dir - vec3(0.0, 0.1, 0.0)), k_d, k_s, alpha)*/) +
2020-04-25 20:23:57 +00:00
(1.0 - MOON_AMBIANCE) * moon_chroma * 1.0 * /*4.0 * */light_reflection_factor(norm, dir, moon_dir, k_d, k_s, alpha)
);
2020-04-12 22:29:59 +00:00
/* light = sun_chroma + moon_chroma + PERSISTENT_AMBIANCE;
diffuse_light =
sun_chroma * mix(1.0, max(dot(-norm, sun_dir) * 0.5 + 0.5, 0.0), diffusion) +
moon_chroma * mix(1.0, pow(dot(-norm, moon_dir) * 2.0, 2.0), diffusion) +
PERSISTENT_AMBIANCE;
ambient_light = vec3(SUN_AMBIANCE * sun_light + moon_light); */
2020-04-21 16:25:19 +00:00
return 1.0;//sun_chroma + moon_chroma + PERSISTENT_AMBIANCE;
2020-04-12 22:29:59 +00:00
}
2019-08-04 10:32:50 +00:00
// This has been extracted into a function to allow quick exit when detecting a star.
2019-08-04 11:24:56 +00:00
float is_star_at(vec3 dir) {
2020-01-21 12:57:59 +00:00
float star_scale = 80.0;
// Star positions
vec3 pos = (floor(dir * star_scale) - 0.5) / star_scale;
// Noisy offsets
2020-04-26 19:01:23 +00:00
pos += (3.0 / star_scale) * /*rand_perm_3*/hash(vec4(pos, 1.0));
2020-01-21 12:57:59 +00:00
// Find distance to fragment
float dist = length(normalize(pos) - dir);
// Star threshold
if (dist < 0.0015) {
return 1.0;
2019-06-23 17:46:04 +00:00
}
return 0.0;
}
2019-06-23 17:46:04 +00:00
vec3 get_sky_color(vec3 dir, float time_of_day, vec3 origin, vec3 f_pos, float quality, bool with_stars, out vec4 clouds) {
// Sky color
2019-06-23 17:46:04 +00:00
vec3 sun_dir = get_sun_dir(time_of_day);
2019-11-14 16:34:34 +00:00
vec3 moon_dir = get_moon_dir(time_of_day);
2019-06-23 17:46:04 +00:00
// Add white dots for stars. Note these flicker and jump due to FXAA
float star = 0.0;
2020-01-27 01:03:55 +00:00
if (with_stars) {
2020-01-27 01:22:07 +00:00
vec3 star_dir = normalize(sun_dir * dir.z + cross(sun_dir, vec3(0, 1, 0)) * dir.x + vec3(0, 1, 0) * dir.y);
star = is_star_at(star_dir);
}
2019-11-18 10:47:52 +00:00
// Sun
const vec3 SUN_SURF_COLOR = vec3(1.5, 0.9, 0.35) * 200.0;
vec3 sun_halo_color = mix(
SUN_HALO_DUSK,
SUN_HALO_DAY,
max(-sun_dir.z, 0)
);
vec3 sun_halo = pow(max(dot(dir, -sun_dir) + 0.1, 0.0), 8.0) * sun_halo_color;
vec3 sun_surf = pow(max(dot(dir, -sun_dir) - 0.001, 0.0), 3000.0) * SUN_SURF_COLOR;
vec3 sun_light = (sun_halo + sun_surf) * clamp(dir.z * 10.0, 0, 1);
// Moon
const vec3 MOON_SURF_COLOR = vec3(0.7, 1.0, 1.5) * 500.0;
const vec3 MOON_HALO_COLOR = vec3(0.015, 0.015, 0.05);
2019-11-18 10:47:52 +00:00
vec3 moon_halo = pow(max(dot(dir, -moon_dir) + 0.1, 0.0), 8.0) * MOON_HALO_COLOR;
2019-11-18 10:47:52 +00:00
vec3 moon_surf = pow(max(dot(dir, -moon_dir) - 0.001, 0.0), 3000.0) * MOON_SURF_COLOR;
2020-02-04 22:58:56 +00:00
vec3 moon_light = clamp(moon_halo + moon_surf, vec3(0), vec3(max(dir.z * 3.0, 0)));
2019-11-18 10:47:52 +00:00
// Replaced all clamp(sun_dir, 0, 1) with max(sun_dir, 0) because sun_dir is calculated from sin and cos, which are never > 1
2019-06-23 17:46:04 +00:00
vec3 sky_top = mix(
mix(
2019-11-18 10:47:52 +00:00
SKY_DUSK_TOP + star / (1.0 + moon_surf * 100.0),
SKY_NIGHT_TOP + star / (1.0 + moon_surf * 100.0),
max(pow(sun_dir.z, 0.2), 0)
),
2019-06-23 17:46:04 +00:00
SKY_DAY_TOP,
max(-sun_dir.z, 0)
2019-08-04 14:30:45 +00:00
);
2019-06-23 17:46:04 +00:00
vec3 sky_mid = mix(
mix(
SKY_DUSK_MID,
SKY_NIGHT_MID,
max(pow(sun_dir.z, 0.2), 0)
2019-06-23 17:46:04 +00:00
),
SKY_DAY_MID,
max(-sun_dir.z, 0)
2019-06-23 17:46:04 +00:00
);
vec3 sky_bot = mix(
mix(
SKY_DUSK_BOT,
SKY_NIGHT_BOT,
max(pow(sun_dir.z, 0.2), 0)
2019-06-23 17:46:04 +00:00
),
2019-06-29 14:18:13 +00:00
SKY_DAY_BOT,
max(-sun_dir.z, 0)
2019-06-23 17:46:04 +00:00
);
vec3 sky_color = mix(
mix(
sky_mid,
sky_bot,
pow(max(-dir.z, 0), 0.4)
2019-06-23 17:46:04 +00:00
),
sky_top,
max(dir.z, 0)
2019-06-23 17:46:04 +00:00
);
2019-11-18 11:00:59 +00:00
// Approximate distance to fragment
float f_dist = distance(origin, f_pos);
2019-11-18 11:00:59 +00:00
2019-11-17 22:41:00 +00:00
// Clouds
clouds = get_cloud_color(dir, origin, time_of_day, f_dist, quality);
2020-03-29 20:46:19 +00:00
clouds.rgb *= get_sun_brightness(sun_dir) * (sun_halo * 1.5 + get_sun_color(sun_dir)) + get_moon_brightness(moon_dir) * (moon_halo * 80.0 + get_moon_color(moon_dir) + 0.25);
2019-11-17 22:41:00 +00:00
2019-11-18 11:08:43 +00:00
if (f_dist > 5000.0) {
2019-11-18 11:00:59 +00:00
sky_color += sun_light + moon_light;
}
return mix(sky_color, clouds.rgb, clouds.a);
2019-06-05 15:22:06 +00:00
}
2019-08-16 14:58:14 +00:00
float fog(vec3 f_pos, vec3 focus_pos, uint medium) {
return max(1.0 - 5000.0 / (1.0 + distance(f_pos.xy, focus_pos.xy)), 0.0);
2019-08-16 14:58:14 +00:00
float fog_radius = view_distance.x;
float mist_radius = 10000000.0;
2019-06-05 15:22:06 +00:00
2019-08-16 14:58:14 +00:00
float min_fog = 0.5;
float max_fog = 1.0;
if (medium == 1u) {
2020-03-27 15:13:36 +00:00
mist_radius = UNDERWATER_MIST_DIST;
2019-08-16 14:58:14 +00:00
min_fog = 0.0;
}
float fog = distance(f_pos.xy, focus_pos.xy) / fog_radius;
float mist = distance(f_pos, focus_pos) / mist_radius;
return pow(clamp((max(fog, mist) - min_fog) / (max_fog - min_fog), 0.0, 1.0), 1.7);
2019-08-04 11:24:56 +00:00
}
2019-11-21 20:57:46 +00:00
2020-04-21 16:25:19 +00:00
float rel_luminance(vec3 rgb)
{
// https://en.wikipedia.org/wiki/Relative_luminance
const vec3 W = vec3(0.2126, 0.7152, 0.0722);
return dot(rgb, W);
}
2020-04-04 00:32:39 +00:00
/* vec3 illuminate(vec3 color, vec3 light, vec3 diffuse, vec3 ambience) {
2019-11-21 20:57:46 +00:00
float avg_col = (color.r + color.g + color.b) / 3.0;
return ((color - avg_col) * light + (diffuse + ambience) * avg_col) * (diffuse + ambience);
2020-04-04 00:32:39 +00:00
} */
2020-04-21 16:25:19 +00:00
vec3 illuminate(/*vec3 max_light, */vec3 emitted, vec3 reflected) {
2020-04-24 14:12:20 +00:00
const float gamma = /*0.5*//*1.*0*/1.0;//1.0;
2020-04-21 16:25:19 +00:00
/* float light = length(emitted + reflected);
float color = srgb_to_linear(emitted + reflected);
float avg_col = (color.r + color.g + color.b) / 3.0;
return ((color - avg_col) * light + reflected * avg_col) * (emitted + reflected); */
// float max_intensity = vec3(1.0);
2020-04-04 00:32:39 +00:00
vec3 color = emitted + reflected;
2020-04-21 16:25:19 +00:00
float lum = rel_luminance(color);
2020-04-22 20:56:12 +00:00
// Tone mapped value.
// vec3 T = /*color*//*lum*/color;//normalize(color) * lum / (1.0 + lum);
2020-04-25 20:23:57 +00:00
float alpha = 2.0;
2020-04-22 20:56:12 +00:00
float T = 1.0 - exp(-alpha * lum);//lum / (1.0 + lum);
// float T = lum;
// Heuristic desaturation
2020-04-25 20:23:57 +00:00
const float s = 0.8;
vec3 col_adjusted = lum == 0.0 ? vec3(0.0) : color / lum;
// vec3 c = pow(col_adjusted, vec3(s)) * T;
// vec3 c = col_adjusted * T;
2020-04-22 20:56:12 +00:00
// vec3 c = sqrt(col_adjusted) * T;
2020-04-25 21:54:43 +00:00
vec3 c = /*col_adjusted * */col_adjusted * T;
2020-04-22 20:56:12 +00:00
return c;
2020-04-21 16:25:19 +00:00
// float sum_col = color.r + color.g + color.b;
// return /*srgb_to_linear*/(/*0.5*//*0.125 * */vec3(pow(color.x, gamma), pow(color.y, gamma), pow(color.z, gamma)));
2019-11-21 20:57:46 +00:00
}