-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmodel-interior-ALS-detailed.frag
263 lines (203 loc) · 7.95 KB
/
model-interior-ALS-detailed.frag
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// -*-C++-*-
#version 120
// written by Thorsten Renk, Oct 2015
varying vec4 diffuse_term;
varying vec3 normal;
varying vec3 relPos;
varying vec3 rawpos;
varying vec4 ecPosition;
uniform sampler2D texture;
uniform sampler2D lightmap_texture;
uniform sampler2D grain_texture;
uniform samplerCube cube_texture;
uniform sampler2D ao;
uniform float ambient_factor;
varying float yprime_alt;
varying float mie_angle;
uniform float visibility;
uniform float avisibility;
uniform float scattering;
uniform float terminator;
uniform float terrain_alt;
uniform float hazeLayerAltitude;
uniform float overcast;
uniform float eye_alt;
uniform float cloud_self_shading;
uniform float angle;
uniform float threshold_low;
uniform float threshold_high;
uniform float emit_intensity;
uniform float light_radius;
uniform float lightmap_r_factor;
uniform float lightmap_g_factor;
uniform float lightmap_b_factor;
uniform float lightmap_a_factor;
uniform float grain_magnification;
uniform vec3 offset_vec;
uniform vec3 scale_vec;
uniform vec3 tag_color;
uniform vec3 emit_color;
uniform vec3 light_filter_one;
uniform vec3 light_filter_two;
uniform vec3 lightmap_r_color;
uniform vec3 lightmap_g_color;
uniform vec3 lightmap_b_color;
uniform vec3 lightmap_a_color;
uniform int quality_level;
uniform int tquality_level;
uniform int use_searchlight;
uniform int implicit_lightmap_enabled;
uniform int use_flashlight;
uniform int lightmap_enabled;
uniform int lightmap_multi;
uniform int grain_texture_enabled;
uniform bool shadow_mapping_enabled;
const float EarthRadius = 5800000.0;
const float terminator_width = 200000.0;
float alt;
float eShade;
float fog_func (in float targ, in float alt);
float alt_factor(in float eye_alt, in float vertex_alt);
float light_distance_fading(in float dist);
float fog_backscatter(in float avisibility);
vec3 addLights(in vec3 color1, in vec3 color2);
vec3 flashlight(in vec3 color, in float radius);
vec3 filter_combined (in vec3 color) ;
float getShadowing();
vec3 getClusteredLightsContribution(vec3 p, vec3 n, vec3 texel);
float luminance(vec3 color)
{
return dot(vec3(0.212671, 0.715160, 0.072169), color);
}
float light_func (in float x, in float a, in float b, in float c, in float d, in float e)
{
x = x - 0.5;
// use the asymptotics to shorten computations
if (x > 30.0) {return e;}
if (x < -15.0) {return 0.0;}
return e / pow((1.0 + a * exp(-b * (x-c)) ),(1.0/d));
}
// this determines how light is attenuated in the distance
// physically this should be exp(-arg) but for technical reasons we use a sharper cutoff
// for distance > visibility
void main()
{
vec3 shadedFogColor = vec3(0.55, 0.67, 0.88);
// this is taken from default.frag
vec3 n;
float NdotL, NdotHV, fogFactor;
vec4 color = gl_Color;
if (ambient_factor > 0) {
vec4 occlusion = texture2D(ao, gl_TexCoord[0].st)*ambient_factor+(1.0-ambient_factor);
color *= occlusion;
}
vec3 lightDir = gl_LightSource[0].position.xyz;
vec3 halfVector = gl_LightSource[0].halfVector.xyz;
vec4 texel;
vec4 fragColor;
vec3 specular = vec3(0.0);
float intensity;
float effective_scattering = min(scattering, cloud_self_shading);
eShade = 1.0 - 0.9 * smoothstep(-terminator_width+ terminator, terminator_width + terminator, yprime_alt);
vec4 light_specular = gl_LightSource[0].specular * (eShade - 0.1);
// If gl_Color.a == 0, this is a back-facing polygon and the
// normal should be reversed.
n = (2.0 * gl_Color.a - 1.0) * normal;
n = normalize(n);
// lookup on the opacity map
//vec3 light_vec = normalize((gl_ModelViewMatrixInverse * gl_LightSource[0].position).xyz);
//vec3 light_vec = vec3 (-1.0,0.0,0.0);
vec4 ep = gl_ModelViewMatrixInverse * vec4(0.0,0.0,0.0,1.0);
//vec3 scaled_pos = relPos + ep.xyz;
//vec3 lookup_vec = normalize(- normalize(light_vec) + relPos);
//scaled_pos -= offset_vec;
//float rangle = radians(angle);
//mat2 rotMat = mat2 (cos(rangle), -sin(rangle), sin(rangle), cos(rangle));
//scaled_pos.xy *=rotMat;
//scaled_pos /= scale_vec;
//vec3 lookup_pos = dot(base1,scaled_pos) * base1 + dot(base2,scaled_pos) * base2;
//vec3 lookup_pos = scaled_pos - light_vec * dot(light_vec, scaled_pos);
//vec3 lookup_vec = normalize(normalize(light_vec) + lookup_pos);
//vec4 opacity = textureCube(cube_texture, lookup_vec);
vec4 opacity = vec4(1.0,1.0,1.0,1.0);
vec4 diffuse = diffuse_term;
NdotL = dot(n, lightDir);
//NdotL = dot(n, (gl_ModelViewMatrix * vec4 (light_vec,0.0)).xyz);
if (NdotL > 0.0) {
float shadowmap = 1.0;
if (shadow_mapping_enabled) {
shadowmap = getShadowing();
}
diffuse.rgb += 2.0 * diffuse.rgb * (1.0 - opacity.a);
color += diffuse * NdotL * opacity * shadowmap;
//NdotHV = max(dot(n, halfVector), 0.0);
if (gl_FrontMaterial.shininess > 0.0) {
vec3 ecViewDir = (gl_ModelViewMatrix * (ep - vec4(rawpos, 1.0))).xyz;
vec3 HV = normalize(normalize(gl_LightSource[0].position.xyz) + normalize(ecViewDir));
NdotHV = max(0.0, dot(n,HV));
specular = (gl_FrontMaterial.specular.rgb
* (light_specular.rgb+2.0*light_specular.rgb*(1.0-opacity.a))
* pow(NdotHV, gl_FrontMaterial.shininess)
* opacity.rgb
* shadowmap);
}
}
color.a = diffuse.a;
// This shouldn't be necessary, but our lighting becomes very
// saturated. Clamping the color before modulating by the texture
// is closer to what the OpenGL fixed function pipeline does.
//color = clamp(color, 0.0, 1.0);
vec3 secondary_light = vec3 (0.0,0.0,0.0);
if (use_flashlight == 1)
{
secondary_light.rgb += flashlight(light_filter_one, light_radius);
}
if (use_flashlight == 2)
{
secondary_light.rgb += flashlight(light_filter_two, light_radius);
}
float dist = length(relPos);
color.rgb += secondary_light * light_distance_fading(dist);
texel = texture2D(texture, gl_TexCoord[0].st);
if (grain_texture_enabled ==1)
{
vec4 grainTexel = texture2D(grain_texture, gl_TexCoord[0].st * grain_magnification);
texel.rgb = mix(texel.rgb, grainTexel.rgb, grainTexel.a );
}
fragColor = color * texel;
fragColor.rgb += specular.rgb;
fragColor.rgb += getClusteredLightsContribution(ecPosition.xyz, n, texel.rgb);
// implicit lightmap - the user gets to select a color which is then made emissive
if (implicit_lightmap_enabled == 1)
{
float cdiff = (length(texel.rgb - tag_color));
float enhance = 1.0 - smoothstep(threshold_low, threshold_high, cdiff);
fragColor.rgb = fragColor.rgb + enhance * emit_color * emit_intensity;
}
// explicit lightmap
vec3 lightmapcolor = vec3(0.0, 0.0, 0.0);
if (lightmap_enabled == 1)
{
vec4 lightmapTexel = texture2D(lightmap_texture, gl_TexCoord[0].st);
vec4 lightmapFactor = vec4(lightmap_r_factor, lightmap_g_factor, lightmap_b_factor, lightmap_a_factor);
if (lightmap_multi > 0 )
{
lightmapFactor = lightmapFactor * lightmapTexel;
//lightmapcolor = lightmap_r_color * lightmapFactor.r +
//lightmap_g_color * lightmapFactor.g +
// lightmap_b_color * lightmapFactor.b +
//lightmap_a_color * lightmapFactor.a ;
lightmapcolor = lightmap_r_color * lightmapFactor.r;
lightmapcolor = addLights(lightmapcolor, lightmap_g_color * lightmapFactor.g);
lightmapcolor = addLights(lightmapcolor, lightmap_b_color * lightmapFactor.b);
lightmapcolor = addLights(lightmapcolor, lightmap_a_color * lightmapFactor.a);
}
else
{
lightmapcolor = lightmapTexel.rgb * lightmap_r_color * lightmapFactor.r;
}
fragColor.rgb = max(fragColor.rgb, lightmapcolor.rgb * gl_FrontMaterial.diffuse.rgb * smoothstep(0.0, 1.0, texel.rgb*.5 + lightmapcolor.rgb*.5));
}
fragColor.rgb = filter_combined(fragColor.rgb);
gl_FragColor = fragColor;
}