#version 430 core float AMBIENT = 0.05; float PI = 3.14159; uniform sampler2D colorTexture; uniform vec3 color; uniform vec3 lightPos; uniform vec3 lightColor; uniform vec3 cameraPos; uniform bool atmosphereCheck; uniform float time; uniform float cloudIntensity; uniform float cloudMotion; uniform float cloudBrightness; in vec3 vecNormal; in vec3 worldPos; in vec2 vtc; out vec4 outColor; vec3 toneMapping(vec3 color) { float exposure = 0.06; vec3 mapped = 1 - exp(-color * exposure); return mapped; } float random (in vec2 st) { return fract(sin(dot(st.xy, vec2(12.9898,78.233)))* 43758.5453123); } float noise (in vec2 st) { vec2 i = floor(st); vec2 f = fract(st); // Four corners in 2D of a tile float a = random(i); float b = random(i + vec2(1.0, 0.0)); float c = random(i + vec2(0.0, 1.0)); float d = random(i + vec2(1.0, 1.0)); vec2 u = f * f * (3.0 - 2.0 * f); return mix(a, b, u.x) + (c - a)* u.y * (1.0 - u.x) + (d - b) * u.x * u.y; } #define OCTAVES 6 float fbm (in vec2 st) { // Initial values float value = 0.0; float amplitude = .5; float frequency = 0.; // // Loop of octaves for (int i = 0; i < OCTAVES; i++) { value += amplitude * noise(st); st *= 2.; amplitude *= .5; } return value; } vec3 noiseColor() { vec2 st = vtc.xy; vec2 mirroredSt = vec2(1.0 - st.x, st.y); float timeOffset = time * cloudMotion; st.x -= timeOffset; mirroredSt.x += timeOffset; // Inverse direction for mirrored effect st.x = fract(st.x); mirroredSt.x = fract(mirroredSt.x); vec3 color = vec3(fbm(st * cloudIntensity)); vec3 mirroredColor = vec3(fbm(mirroredSt * cloudIntensity)); float blend = smoothstep(0.45, 0.55, st.x); vec3 noiseColor = mix(color, mirroredColor, blend); return noiseColor; } void main() { vec3 normal = normalize(vecNormal); vec3 viewDir = normalize(cameraPos - worldPos); vec3 lightDir = normalize(lightPos - worldPos); float diffuse = max(0, dot(normal, lightDir)); vec3 textureColor = texture2D(colorTexture, vtc).rgb; if (atmosphereCheck) { float atmosphereDot = dot(normal, viewDir); vec3 atmosphereColor = vec3(0.0, 0.44, 1.0); textureColor = mix(textureColor, atmosphereColor, pow(1 - atmosphereDot, 3)); } vec3 diffuseColor = textureColor * min(1, AMBIENT + diffuse); vec3 distance = lightColor / pow(length(lightPos - worldPos), 2.0) * 1000; vec3 toneMappedColor = toneMapping(diffuseColor * distance); //gamma correction toneMappedColor = pow(toneMappedColor, vec3(1.0/2.2)); vec3 finalColor = toneMappedColor; if (atmosphereCheck) { vec3 noiseColor = noiseColor() * min(1, 20.0 * max(0.02, dot(normal, lightDir))) * lightColor * cloudBrightness; finalColor = mix(toneMappedColor, noiseColor, noiseColor.r); } outColor = vec4(finalColor, 1.0); }