2022-01-19 11:29:19 +00:00
|
|
|
#ifndef POINT_GLOW_GLSL
|
|
|
|
#define POINT_GLOW_GLSL
|
|
|
|
|
2022-01-20 22:30:05 +00:00
|
|
|
vec3 apply_point_glow(vec3 wpos, vec3 dir, float max_dist, vec3 color) {
|
2022-01-20 13:40:11 +00:00
|
|
|
#ifndef POINT_GLOW_FACTOR
|
|
|
|
return color;
|
|
|
|
#else
|
2022-01-19 11:29:19 +00:00
|
|
|
for (uint i = 0u; i < light_shadow_count.x; i ++) {
|
|
|
|
// Only access the array once
|
|
|
|
Light L = lights[i];
|
|
|
|
|
|
|
|
vec3 light_pos = L.light_pos.xyz;
|
|
|
|
// Project light_pos to dir line
|
|
|
|
float t = max(dot(light_pos - wpos, dir), 0);
|
|
|
|
vec3 nearest = wpos + dir * min(t, max_dist);
|
|
|
|
|
|
|
|
vec3 difference = light_pos - nearest;
|
2022-01-19 22:30:06 +00:00
|
|
|
float distance_2 = dot(difference, difference);
|
|
|
|
if (distance_2 > 100000.0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-01-19 11:29:19 +00:00
|
|
|
#if (CLOUD_MODE >= CLOUD_MODE_HIGH)
|
|
|
|
vec3 _unused;
|
|
|
|
float unused2;
|
|
|
|
float spread = 1.0 / (1.0 + cloud_at(nearest, 0.0, _unused, unused2).z * 0.005);
|
|
|
|
#else
|
|
|
|
const float spread = 1.0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
float strength = pow(attenuation_strength_real(difference), spread);
|
|
|
|
|
|
|
|
vec3 light_color = srgb_to_linear(L.light_col.rgb) * strength * L.light_col.a;
|
|
|
|
|
|
|
|
const float LIGHT_AMBIANCE = 0.025;
|
|
|
|
color += light_color
|
2022-01-20 13:40:11 +00:00
|
|
|
* 0.05
|
2022-01-19 11:29:19 +00:00
|
|
|
// Constant, *should* const fold
|
2022-01-20 13:40:11 +00:00
|
|
|
* POINT_GLOW_FACTOR;
|
2022-01-19 11:29:19 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|