58 lines
1.1 KiB
GLSL
58 lines
1.1 KiB
GLSL
#version 130
|
|
uniform sampler2D ntex;
|
|
uniform sampler2D cloudtex;
|
|
|
|
uniform vec3 center;
|
|
uniform vec3 col;
|
|
uniform vec2 screen;
|
|
uniform mat4 invproj;
|
|
uniform int hasclouds;
|
|
uniform vec2 wind;
|
|
|
|
out vec4 Diff;
|
|
out vec4 Spec;
|
|
out vec4 SpecularMap;
|
|
|
|
void main() {
|
|
|
|
vec2 texc = gl_FragCoord.xy / screen;
|
|
float z = texture(ntex, texc).a;
|
|
vec4 xpos = 2.0 * vec4(texc, z, 1.0) - 1.0;
|
|
xpos = invproj * xpos;
|
|
xpos.xyz /= xpos.w;
|
|
|
|
if (z < 0.03)
|
|
{
|
|
// Skyboxes are fully lit
|
|
Diff = vec4(1.0);
|
|
Spec = vec4(1.0);
|
|
return;
|
|
}
|
|
|
|
vec3 norm = texture(ntex, texc).xyz;
|
|
norm = (norm - 0.5) * 2.0;
|
|
|
|
// Normalized on the cpu
|
|
vec3 L = center;
|
|
|
|
float NdotL = max(0.0, dot(norm, L));
|
|
vec3 R = reflect(L, norm);
|
|
float RdotE = max(0.0, dot(R, normalize(xpos.xyz)));
|
|
float Specular = pow(RdotE, 200);
|
|
|
|
vec3 outcol = NdotL * col;
|
|
|
|
if (hasclouds == 1)
|
|
{
|
|
vec2 cloudcoord = (xpos.xz * 0.00833333) + wind;
|
|
float cloud = texture(cloudtex, cloudcoord).x;
|
|
//float cloud = step(0.5, cloudcoord.x) * step(0.5, cloudcoord.y);
|
|
|
|
outcol *= cloud;
|
|
}
|
|
|
|
Diff = vec4(NdotL * col, 1.);
|
|
Spec = vec4(Specular * col, 1.);
|
|
SpecularMap = vec4(1.0);
|
|
}
|