]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - shader_glsl.h
fix bug in last patch, fix RF_USEAXIS handling
[xonotic/darkplaces.git] / shader_glsl.h
1 "// ambient+diffuse+specular+normalmap+attenuation+cubemap+fog shader\n"
2 "// written by Forest 'LordHavoc' Hale\n"
3 "// shadowmapping enhancements by Lee 'eihrul' Salzman\n"
4 "\n"
5 "#ifdef GLSL130\n"
6 "precision highp float;\n"
7 "# ifdef VERTEX_SHADER\n"
8 "#  define dp_varying out\n"
9 "#  define dp_attribute in\n"
10 "# endif\n"
11 "# ifdef FRAGMENT_SHADER\n"
12 "out vec4 dp_FragColor;\n"
13 "#  define dp_varying in\n"
14 "#  define dp_attribute in\n"
15 "# endif\n"
16 "# define dp_offsetmapping_dFdx dFdx\n"
17 "# define dp_offsetmapping_dFdy dFdy\n"
18 "# define dp_textureGrad textureGrad\n"
19 "# define dp_texture2D texture\n"
20 "# define dp_texture3D texture\n"
21 "# define dp_textureCube texture\n"
22 "# define dp_shadow2D(a,b) texture(a,b)\n"
23 "#else\n"
24 "# ifdef FRAGMENT_SHADER\n"
25 "#  define dp_FragColor gl_FragColor\n"
26 "# endif\n"
27 "# define dp_varying varying\n"
28 "# define dp_attribute attribute\n"
29 "# define dp_offsetmapping_dFdx(a) vec2(0.0, 0.0)\n"
30 "# define dp_offsetmapping_dFdy(a) vec2(0.0, 0.0)\n"
31 "# define dp_textureGrad(a,b,c,d) texture2D(a,b)\n"
32 "# define dp_texture2D texture2D\n"
33 "# define dp_texture3D texture3D\n"
34 "# define dp_textureCube textureCube\n"
35 "# define dp_shadow2D(a,b) float(shadow2D(a,b))\n"
36 "#endif\n"
37 "\n"
38 "// GL ES and GLSL130 shaders use precision modifiers, standard GL does not\n"
39 "// in GLSL130 we don't use them though because of syntax differences (can't use precision with inout)\n"
40 "#ifndef GL_ES\n"
41 "#define lowp\n"
42 "#define mediump\n"
43 "#define highp\n"
44 "#endif\n"
45 "\n"
46 "#ifdef VERTEX_SHADER\n"
47 "dp_attribute vec4 Attrib_Position;  // vertex\n"
48 "dp_attribute vec4 Attrib_Color;     // color\n"
49 "dp_attribute vec4 Attrib_TexCoord0; // material texcoords\n"
50 "dp_attribute vec3 Attrib_TexCoord1; // svector\n"
51 "dp_attribute vec3 Attrib_TexCoord2; // tvector\n"
52 "dp_attribute vec3 Attrib_TexCoord3; // normal\n"
53 "dp_attribute vec4 Attrib_TexCoord4; // lightmap texcoords\n"
54 "#endif\n"
55 "dp_varying mediump vec4 VertexColor;\n"
56 "\n"
57 "#if defined(USEFOGINSIDE) || defined(USEFOGOUTSIDE) || defined(USEFOGHEIGHTTEXTURE)\n"
58 "# define USEFOG\n"
59 "#endif\n"
60 "#if defined(MODE_LIGHTMAP) || defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_LIGHTDIRECTIONMAP_TANGENTSPACE)\n"
61 "# define USELIGHTMAP\n"
62 "#endif\n"
63 "#if defined(USESPECULAR) || defined(USEOFFSETMAPPING) || defined(USEREFLECTCUBE) || defined(MODE_FAKELIGHT) || defined(USEFOG)\n"
64 "# define USEEYEVECTOR\n"
65 "#endif\n"
66 "\n"
67 "#ifdef USESHADOWMAP2D\n"
68 "# ifdef GL_EXT_gpu_shader4\n"
69 "#   extension GL_EXT_gpu_shader4 : enable\n"
70 "# endif\n"
71 "# ifdef GL_ARB_texture_gather\n"
72 "#   extension GL_ARB_texture_gather : enable\n"
73 "# else\n"
74 "#   ifdef GL_AMD_texture_texture4\n"
75 "#     extension GL_AMD_texture_texture4 : enable\n"
76 "#   endif\n"
77 "# endif\n"
78 "#endif\n"
79 "\n"
80 "//#ifdef USESHADOWSAMPLER\n"
81 "//# extension GL_ARB_shadow : enable\n"
82 "//#endif\n"
83 "\n"
84 "//#ifdef __GLSL_CG_DATA_TYPES\n"
85 "//# define myhalf half\n"
86 "//# define myhalf2 half2\n"
87 "//# define myhalf3 half3\n"
88 "//# define myhalf4 half4\n"
89 "//#else\n"
90 "# define myhalf mediump float\n"
91 "# define myhalf2 mediump vec2\n"
92 "# define myhalf3 mediump vec3\n"
93 "# define myhalf4 mediump vec4\n"
94 "//#endif\n"
95 "\n"
96 "#ifdef VERTEX_SHADER\n"
97 "uniform highp mat4 ModelViewProjectionMatrix;\n"
98 "#endif\n"
99 "\n"
100 "#ifdef MODE_DEPTH_OR_SHADOW\n"
101 "#ifdef VERTEX_SHADER\n"
102 "void main(void)\n"
103 "{\n"
104 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
105 "}\n"
106 "#endif\n"
107 "#else // !MODE_DEPTH_ORSHADOW\n"
108 "\n"
109 "\n"
110 "\n"
111 "\n"
112 "#ifdef MODE_SHOWDEPTH\n"
113 "#ifdef VERTEX_SHADER\n"
114 "void main(void)\n"
115 "{\n"
116 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
117 "       VertexColor = vec4(gl_Position.z, gl_Position.z, gl_Position.z, 1.0);\n"
118 "}\n"
119 "#endif\n"
120 "\n"
121 "#ifdef FRAGMENT_SHADER\n"
122 "void main(void)\n"
123 "{\n"
124 "       dp_FragColor = VertexColor;\n"
125 "}\n"
126 "#endif\n"
127 "#else // !MODE_SHOWDEPTH\n"
128 "\n"
129 "\n"
130 "\n"
131 "\n"
132 "#ifdef MODE_POSTPROCESS\n"
133 "dp_varying mediump vec2 TexCoord1;\n"
134 "dp_varying mediump vec2 TexCoord2;\n"
135 "\n"
136 "#ifdef VERTEX_SHADER\n"
137 "void main(void)\n"
138 "{\n"
139 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
140 "       TexCoord1 = Attrib_TexCoord0.xy;\n"
141 "#ifdef USEBLOOM\n"
142 "       TexCoord2 = Attrib_TexCoord4.xy;\n"
143 "#endif\n"
144 "}\n"
145 "#endif\n"
146 "\n"
147 "#ifdef FRAGMENT_SHADER\n"
148 "uniform sampler2D Texture_First;\n"
149 "#ifdef USEBLOOM\n"
150 "uniform sampler2D Texture_Second;\n"
151 "uniform mediump vec4 BloomColorSubtract;\n"
152 "#endif\n"
153 "#ifdef USEGAMMARAMPS\n"
154 "uniform sampler2D Texture_GammaRamps;\n"
155 "#endif\n"
156 "#ifdef USESATURATION\n"
157 "uniform mediump float Saturation;\n"
158 "#endif\n"
159 "#ifdef USEVIEWTINT\n"
160 "uniform mediump vec4 ViewTintColor;\n"
161 "#endif\n"
162 "//uncomment these if you want to use them:\n"
163 "uniform mediump vec4 UserVec1;\n"
164 "uniform mediump vec4 UserVec2;\n"
165 "// uniform mediump vec4 UserVec3;\n"
166 "// uniform mediump vec4 UserVec4;\n"
167 "// uniform highp float ClientTime;\n"
168 "uniform mediump vec2 PixelSize;\n"
169 "void main(void)\n"
170 "{\n"
171 "       dp_FragColor = dp_texture2D(Texture_First, TexCoord1);\n"
172 "#ifdef USEBLOOM\n"
173 "       dp_FragColor += max(vec4(0,0,0,0), dp_texture2D(Texture_Second, TexCoord2) - BloomColorSubtract);\n"
174 "#endif\n"
175 "#ifdef USEVIEWTINT\n"
176 "       dp_FragColor = mix(dp_FragColor, ViewTintColor, ViewTintColor.a);\n"
177 "#endif\n"
178 "\n"
179 "#ifdef USEPOSTPROCESSING\n"
180 "// do r_glsl_dumpshader, edit glsl/default.glsl, and replace this by your own postprocessing if you want\n"
181 "// this code does a blur with the radius specified in the first component of r_glsl_postprocess_uservec1 and blends it using the second component\n"
182 "       float sobel = 1.0;\n"
183 "       // vec2 ts = textureSize(Texture_First, 0);\n"
184 "       // vec2 px = vec2(1/ts.x, 1/ts.y);\n"
185 "       vec2 px = PixelSize;\n"
186 "       vec3 x1 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x, px.y)).rgb;\n"
187 "       vec3 x2 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x,  0.0)).rgb;\n"
188 "       vec3 x3 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x,-px.y)).rgb;\n"
189 "       vec3 x4 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x, px.y)).rgb;\n"
190 "       vec3 x5 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x,  0.0)).rgb;\n"
191 "       vec3 x6 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x,-px.y)).rgb;\n"
192 "       vec3 y1 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x,-px.y)).rgb;\n"
193 "       vec3 y2 = dp_texture2D(Texture_First, TexCoord1 + vec2(  0.0,-px.y)).rgb;\n"
194 "       vec3 y3 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x,-px.y)).rgb;\n"
195 "       vec3 y4 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x, px.y)).rgb;\n"
196 "       vec3 y5 = dp_texture2D(Texture_First, TexCoord1 + vec2(  0.0, px.y)).rgb;\n"
197 "       vec3 y6 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x, px.y)).rgb;\n"
198 "       float px1 = -1.0 * dot(vec3(0.3, 0.59, 0.11), x1);\n"
199 "       float px2 = -2.0 * dot(vec3(0.3, 0.59, 0.11), x2);\n"
200 "       float px3 = -1.0 * dot(vec3(0.3, 0.59, 0.11), x3);\n"
201 "       float px4 =  1.0 * dot(vec3(0.3, 0.59, 0.11), x4);\n"
202 "       float px5 =  2.0 * dot(vec3(0.3, 0.59, 0.11), x5);\n"
203 "       float px6 =  1.0 * dot(vec3(0.3, 0.59, 0.11), x6);\n"
204 "       float py1 = -1.0 * dot(vec3(0.3, 0.59, 0.11), y1);\n"
205 "       float py2 = -2.0 * dot(vec3(0.3, 0.59, 0.11), y2);\n"
206 "       float py3 = -1.0 * dot(vec3(0.3, 0.59, 0.11), y3);\n"
207 "       float py4 =  1.0 * dot(vec3(0.3, 0.59, 0.11), y4);\n"
208 "       float py5 =  2.0 * dot(vec3(0.3, 0.59, 0.11), y5);\n"
209 "       float py6 =  1.0 * dot(vec3(0.3, 0.59, 0.11), y6);\n"
210 "       sobel = 0.25 * abs(px1 + px2 + px3 + px4 + px5 + px6) + 0.25 * abs(py1 + py2 + py3 + py4 + py5 + py6);\n"
211 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2(-0.987688, -0.156434)) * UserVec1.y;\n"
212 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2(-0.156434, -0.891007)) * UserVec1.y;\n"
213 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2( 0.891007, -0.453990)) * UserVec1.y;\n"
214 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2( 0.707107,  0.707107)) * UserVec1.y;\n"
215 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2(-0.453990,  0.891007)) * UserVec1.y;\n"
216 "       dp_FragColor /= (1.0 + 5.0 * UserVec1.y);\n"
217 "       dp_FragColor.rgb = dp_FragColor.rgb * (1.0 + UserVec2.x) + vec3(max(0.0, sobel - UserVec2.z))*UserVec2.y;\n"
218 "#endif\n"
219 "\n"
220 "#ifdef USESATURATION\n"
221 "       //apply saturation BEFORE gamma ramps, so v_glslgamma value does not matter\n"
222 "       float y = dot(dp_FragColor.rgb, vec3(0.299, 0.587, 0.114));\n"
223 "       // 'vampire sight' effect, wheres red is compensated\n"
224 "       #ifdef SATURATION_REDCOMPENSATE\n"
225 "               float rboost = max(0.0, (dp_FragColor.r - max(dp_FragColor.g, dp_FragColor.b))*(1.0 - Saturation));\n"
226 "               dp_FragColor.rgb = mix(vec3(y), dp_FragColor.rgb, Saturation);\n"
227 "               dp_FragColor.r += rboost;\n"
228 "       #else\n"
229 "               // normal desaturation\n"
230 "               //dp_FragColor = vec3(y) + (dp_FragColor.rgb - vec3(y)) * Saturation;\n"
231 "               dp_FragColor.rgb = mix(vec3(y), dp_FragColor.rgb, Saturation);\n"
232 "       #endif\n"
233 "#endif\n"
234 "\n"
235 "#ifdef USEGAMMARAMPS\n"
236 "       dp_FragColor.r = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.r, 0)).r;\n"
237 "       dp_FragColor.g = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.g, 0)).g;\n"
238 "       dp_FragColor.b = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.b, 0)).b;\n"
239 "#endif\n"
240 "}\n"
241 "#endif\n"
242 "#else // !MODE_POSTPROCESS\n"
243 "\n"
244 "\n"
245 "\n"
246 "\n"
247 "#ifdef MODE_GENERIC\n"
248 "#ifdef USEDIFFUSE\n"
249 "dp_varying mediump vec2 TexCoord1;\n"
250 "#endif\n"
251 "#ifdef USESPECULAR\n"
252 "dp_varying mediump vec2 TexCoord2;\n"
253 "#endif\n"
254 "#ifdef VERTEX_SHADER\n"
255 "void main(void)\n"
256 "{\n"
257 "       VertexColor = Attrib_Color;\n"
258 "#ifdef USEDIFFUSE\n"
259 "       TexCoord1 = Attrib_TexCoord0.xy;\n"
260 "#endif\n"
261 "#ifdef USESPECULAR\n"
262 "       TexCoord2 = Attrib_TexCoord1.xy;\n"
263 "#endif\n"
264 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
265 "}\n"
266 "#endif\n"
267 "\n"
268 "#ifdef FRAGMENT_SHADER\n"
269 "#ifdef USEDIFFUSE\n"
270 "uniform sampler2D Texture_First;\n"
271 "#endif\n"
272 "#ifdef USESPECULAR\n"
273 "uniform sampler2D Texture_Second;\n"
274 "#endif\n"
275 "\n"
276 "void main(void)\n"
277 "{\n"
278 "#ifdef USEVIEWTINT\n"
279 "       dp_FragColor = VertexColor;\n"
280 "#else\n"
281 "       dp_FragColor = vec4(1.0, 1.0, 1.0, 1.0);\n"
282 "#endif\n"
283 "#ifdef USEDIFFUSE\n"
284 "       dp_FragColor *= dp_texture2D(Texture_First, TexCoord1);\n"
285 "#endif\n"
286 "\n"
287 "#ifdef USESPECULAR\n"
288 "       vec4 tex2 = dp_texture2D(Texture_Second, TexCoord2);\n"
289 "# ifdef USECOLORMAPPING\n"
290 "       dp_FragColor *= tex2;\n"
291 "# endif\n"
292 "# ifdef USEGLOW\n"
293 "       dp_FragColor += tex2;\n"
294 "# endif\n"
295 "# ifdef USEVERTEXTEXTUREBLEND\n"
296 "       dp_FragColor = mix(dp_FragColor, tex2, tex2.a);\n"
297 "# endif\n"
298 "#endif\n"
299 "}\n"
300 "#endif\n"
301 "#else // !MODE_GENERIC\n"
302 "\n"
303 "\n"
304 "\n"
305 "\n"
306 "#ifdef MODE_BLOOMBLUR\n"
307 "dp_varying mediump vec2 TexCoord;\n"
308 "#ifdef VERTEX_SHADER\n"
309 "void main(void)\n"
310 "{\n"
311 "       VertexColor = Attrib_Color;\n"
312 "       TexCoord = Attrib_TexCoord0.xy;\n"
313 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
314 "}\n"
315 "#endif\n"
316 "\n"
317 "#ifdef FRAGMENT_SHADER\n"
318 "uniform sampler2D Texture_First;\n"
319 "uniform mediump vec4 BloomBlur_Parameters;\n"
320 "\n"
321 "void main(void)\n"
322 "{\n"
323 "       int i;\n"
324 "       vec2 tc = TexCoord;\n"
325 "       vec3 color = dp_texture2D(Texture_First, tc).rgb;\n"
326 "       tc += BloomBlur_Parameters.xy;\n"
327 "       for (i = 1;i < SAMPLES;i++)\n"
328 "       {\n"
329 "               color += dp_texture2D(Texture_First, tc).rgb;\n"
330 "               tc += BloomBlur_Parameters.xy;\n"
331 "       }\n"
332 "       dp_FragColor = vec4(color * BloomBlur_Parameters.z + vec3(BloomBlur_Parameters.w), 1);\n"
333 "}\n"
334 "#endif\n"
335 "#else // !MODE_BLOOMBLUR\n"
336 "#ifdef MODE_REFRACTION\n"
337 "dp_varying mediump vec2 TexCoord;\n"
338 "dp_varying highp vec4 ModelViewProjectionPosition;\n"
339 "uniform highp mat4 TexMatrix;\n"
340 "#ifdef VERTEX_SHADER\n"
341 "\n"
342 "void main(void)\n"
343 "{\n"
344 "       TexCoord = vec2(TexMatrix * Attrib_TexCoord0);\n"
345 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
346 "       ModelViewProjectionPosition = gl_Position;\n"
347 "}\n"
348 "#endif\n"
349 "\n"
350 "#ifdef FRAGMENT_SHADER\n"
351 "uniform sampler2D Texture_Normal;\n"
352 "uniform sampler2D Texture_Refraction;\n"
353 "\n"
354 "uniform mediump vec4 DistortScaleRefractReflect;\n"
355 "uniform mediump vec4 ScreenScaleRefractReflect;\n"
356 "uniform mediump vec4 ScreenCenterRefractReflect;\n"
357 "uniform mediump vec4 RefractColor;\n"
358 "uniform mediump vec4 ReflectColor;\n"
359 "uniform highp float ClientTime;\n"
360 "#ifdef USENORMALMAPSCROLLBLEND\n"
361 "uniform highp vec2 NormalmapScrollBlend;\n"
362 "#endif\n"
363 "\n"
364 "void main(void)\n"
365 "{\n"
366 "       vec2 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect.xy * (1.0 / ModelViewProjectionPosition.w);\n"
367 "       //vec2 ScreenTexCoord = (ModelViewProjectionPosition.xy + normalize(vec3(dp_texture2D(Texture_Normal, TexCoord)) - vec3(0.5)).xy * DistortScaleRefractReflect.xy * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect.xy;\n"
368 "       vec2 SafeScreenTexCoord = ModelViewProjectionPosition.xy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect.xy;\n"
369 "       #ifdef USENORMALMAPSCROLLBLEND\n"
370 "               vec3 normal = dp_texture2D(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
371 "               normal += dp_texture2D(Texture_Normal, (TexCoord + vec2(-0.06, -0.09)*ClientTime*NormalmapScrollBlend.x)*NormalmapScrollBlend.y*0.75).rgb;\n"
372 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(myhalf3(normal))).xy * DistortScaleRefractReflect.xy;\n"
373 "       #else\n"
374 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(myhalf3(dp_texture2D(Texture_Normal, TexCoord)) - myhalf3(0.5))).xy * DistortScaleRefractReflect.xy;\n"
375 "       #endif\n"
376 "       // FIXME temporary hack to detect the case that the reflection\n"
377 "       // gets blackened at edges due to leaving the area that contains actual\n"
378 "       // content.\n"
379 "       // Remove this 'ack once we have a better way to stop this thing from\n"
380 "       // 'appening.\n"
381 "       float f = min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(0.01, 0.01)).rgb) / 0.05);\n"
382 "       f      *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(0.01, -0.01)).rgb) / 0.05);\n"
383 "       f      *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(-0.01, 0.01)).rgb) / 0.05);\n"
384 "       f      *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(-0.01, -0.01)).rgb) / 0.05);\n"
385 "       ScreenTexCoord = mix(SafeScreenTexCoord, ScreenTexCoord, f);\n"
386 "       dp_FragColor = vec4(dp_texture2D(Texture_Refraction, ScreenTexCoord).rgb, 1.0) * RefractColor;\n"
387 "}\n"
388 "#endif\n"
389 "#else // !MODE_REFRACTION\n"
390 "\n"
391 "\n"
392 "\n"
393 "\n"
394 "#ifdef MODE_WATER\n"
395 "dp_varying mediump vec2 TexCoord;\n"
396 "dp_varying highp vec3 EyeVector;\n"
397 "dp_varying highp vec4 ModelViewProjectionPosition;\n"
398 "#ifdef VERTEX_SHADER\n"
399 "uniform highp vec3 EyePosition;\n"
400 "uniform highp mat4 TexMatrix;\n"
401 "\n"
402 "void main(void)\n"
403 "{\n"
404 "       TexCoord = vec2(TexMatrix * Attrib_TexCoord0);\n"
405 "       vec3 EyeRelative = EyePosition - Attrib_Position.xyz;\n"
406 "       EyeVector.x = dot(EyeRelative, Attrib_TexCoord1.xyz);\n"
407 "       EyeVector.y = dot(EyeRelative, Attrib_TexCoord2.xyz);\n"
408 "       EyeVector.z = dot(EyeRelative, Attrib_TexCoord3.xyz);\n"
409 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
410 "       ModelViewProjectionPosition = gl_Position;\n"
411 "}\n"
412 "#endif\n"
413 "\n"
414 "#ifdef FRAGMENT_SHADER\n"
415 "uniform sampler2D Texture_Normal;\n"
416 "uniform sampler2D Texture_Refraction;\n"
417 "uniform sampler2D Texture_Reflection;\n"
418 "\n"
419 "uniform mediump vec4 DistortScaleRefractReflect;\n"
420 "uniform mediump vec4 ScreenScaleRefractReflect;\n"
421 "uniform mediump vec4 ScreenCenterRefractReflect;\n"
422 "uniform mediump vec4 RefractColor;\n"
423 "uniform mediump vec4 ReflectColor;\n"
424 "uniform mediump float ReflectFactor;\n"
425 "uniform mediump float ReflectOffset;\n"
426 "uniform highp float ClientTime;\n"
427 "#ifdef USENORMALMAPSCROLLBLEND\n"
428 "uniform highp vec2 NormalmapScrollBlend;\n"
429 "#endif\n"
430 "\n"
431 "void main(void)\n"
432 "{\n"
433 "       vec4 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect * (1.0 / ModelViewProjectionPosition.w);\n"
434 "       //vec4 ScreenTexCoord = (ModelViewProjectionPosition.xyxy + normalize(vec3(dp_texture2D(Texture_Normal, TexCoord)) - vec3(0.5)).xyxy * DistortScaleRefractReflect * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
435 "       vec4 SafeScreenTexCoord = ModelViewProjectionPosition.xyxy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
436 "       //SafeScreenTexCoord = gl_FragCoord.xyxy * vec4(1.0 / 1920.0, 1.0 / 1200.0, 1.0 / 1920.0, 1.0 / 1200.0);\n"
437 "       // slight water animation via 2 layer scrolling (todo: tweak)\n"
438 "       #ifdef USENORMALMAPSCROLLBLEND\n"
439 "               vec3 normal = dp_texture2D(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
440 "               normal += dp_texture2D(Texture_Normal, (TexCoord + vec2(-0.06, -0.09)*ClientTime*NormalmapScrollBlend.x)*NormalmapScrollBlend.y*0.75).rgb;\n"
441 "               vec4 ScreenTexCoord = SafeScreenTexCoord + vec2(normalize(normal) + vec3(0.15)).xyxy * DistortScaleRefractReflect;\n"
442 "       #else\n"
443 "               vec4 ScreenTexCoord = SafeScreenTexCoord + vec2(normalize(vec3(dp_texture2D(Texture_Normal, TexCoord)) - vec3(0.5))).xyxy * DistortScaleRefractReflect;\n"
444 "       #endif\n"
445 "       // FIXME temporary hack to detect the case that the reflection\n"
446 "       // gets blackened at edges due to leaving the area that contains actual\n"
447 "       // content.\n"
448 "       // Remove this 'ack once we have a better way to stop this thing from\n"
449 "       // 'appening.\n"
450 "       float f  = min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(0.005, 0.01)).rgb) / 0.002);\n"
451 "       f       *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(0.005, -0.01)).rgb) / 0.002);\n"
452 "       f       *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(-0.005, 0.01)).rgb) / 0.002);\n"
453 "       f       *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(-0.005, -0.01)).rgb) / 0.002);\n"
454 "       ScreenTexCoord.xy = mix(SafeScreenTexCoord.xy, ScreenTexCoord.xy, f);\n"
455 "       f  = min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(0.005, 0.005)).rgb) / 0.002);\n"
456 "       f *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(0.005, -0.005)).rgb) / 0.002);\n"
457 "       f *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(-0.005, 0.005)).rgb) / 0.002);\n"
458 "       f *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(-0.005, -0.005)).rgb) / 0.002);\n"
459 "       ScreenTexCoord.zw = mix(SafeScreenTexCoord.zw, ScreenTexCoord.zw, f);\n"
460 "       float Fresnel = pow(min(1.0, 1.0 - float(normalize(EyeVector).z)), 2.0) * ReflectFactor + ReflectOffset;\n"
461 "       dp_FragColor = mix(vec4(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy).rgb, 1) * RefractColor, vec4(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw).rgb, 1) * ReflectColor, Fresnel);\n"
462 "}\n"
463 "#endif\n"
464 "#else // !MODE_WATER\n"
465 "\n"
466 "\n"
467 "\n"
468 "\n"
469 "// common definitions between vertex shader and fragment shader:\n"
470 "\n"
471 "dp_varying mediump vec4 TexCoordSurfaceLightmap;\n"
472 "#ifdef USEVERTEXTEXTUREBLEND\n"
473 "dp_varying mediump vec2 TexCoord2;\n"
474 "#endif\n"
475 "\n"
476 "#ifdef MODE_LIGHTSOURCE\n"
477 "dp_varying mediump vec3 CubeVector;\n"
478 "#endif\n"
479 "\n"
480 "#if (defined(MODE_LIGHTSOURCE) || defined(MODE_LIGHTDIRECTION)) && defined(USEDIFFUSE)\n"
481 "dp_varying mediump vec3 LightVector;\n"
482 "#endif\n"
483 "\n"
484 "#ifdef USEEYEVECTOR\n"
485 "dp_varying highp vec4 EyeVectorFogDepth;\n"
486 "#endif\n"
487 "\n"
488 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_DEFERREDGEOMETRY) || defined(USEREFLECTCUBE) || defined(USEBOUNCEGRIDDIRECTIONAL)\n"
489 "dp_varying highp vec4 VectorS; // direction of S texcoord (sometimes crudely called tangent)\n"
490 "dp_varying highp vec4 VectorT; // direction of T texcoord (sometimes crudely called binormal)\n"
491 "dp_varying highp vec4 VectorR; // direction of R texcoord (surface normal)\n"
492 "#else\n"
493 "# ifdef USEFOG\n"
494 "dp_varying highp vec3 EyeVectorModelSpace;\n"
495 "# endif\n"
496 "#endif\n"
497 "\n"
498 "#ifdef USEREFLECTION\n"
499 "dp_varying highp vec4 ModelViewProjectionPosition;\n"
500 "#endif\n"
501 "#ifdef MODE_DEFERREDLIGHTSOURCE\n"
502 "uniform highp vec3 LightPosition;\n"
503 "dp_varying highp vec4 ModelViewPosition;\n"
504 "#endif\n"
505 "\n"
506 "#ifdef MODE_LIGHTSOURCE\n"
507 "uniform highp vec3 LightPosition;\n"
508 "#endif\n"
509 "uniform highp vec3 EyePosition;\n"
510 "#ifdef MODE_LIGHTDIRECTION\n"
511 "uniform highp vec3 LightDir;\n"
512 "#endif\n"
513 "uniform highp vec4 FogPlane;\n"
514 "\n"
515 "#ifdef USESHADOWMAPORTHO\n"
516 "dp_varying highp vec3 ShadowMapTC;\n"
517 "#endif\n"
518 "\n"
519 "#ifdef USEBOUNCEGRID\n"
520 "dp_varying highp vec3 BounceGridTexCoord;\n"
521 "#endif\n"
522 "\n"
523 "\n"
524 "\n"
525 "\n"
526 "\n"
527 "\n"
528 "// TODO: get rid of tangentt (texcoord2) and use a crossproduct to regenerate it from tangents (texcoord1) and normal (texcoord3), this would require sending a 4 component texcoord1 with W as 1 or -1 according to which side the texcoord2 should be on\n"
529 "\n"
530 "// fragment shader specific:\n"
531 "#ifdef FRAGMENT_SHADER\n"
532 "\n"
533 "uniform sampler2D Texture_Normal;\n"
534 "uniform sampler2D Texture_Color;\n"
535 "uniform sampler2D Texture_Gloss;\n"
536 "#ifdef USEGLOW\n"
537 "uniform sampler2D Texture_Glow;\n"
538 "#endif\n"
539 "#ifdef USEVERTEXTEXTUREBLEND\n"
540 "uniform sampler2D Texture_SecondaryNormal;\n"
541 "uniform sampler2D Texture_SecondaryColor;\n"
542 "uniform sampler2D Texture_SecondaryGloss;\n"
543 "#ifdef USEGLOW\n"
544 "uniform sampler2D Texture_SecondaryGlow;\n"
545 "#endif\n"
546 "#endif\n"
547 "#ifdef USECOLORMAPPING\n"
548 "uniform sampler2D Texture_Pants;\n"
549 "uniform sampler2D Texture_Shirt;\n"
550 "#endif\n"
551 "#ifdef USEFOG\n"
552 "#ifdef USEFOGHEIGHTTEXTURE\n"
553 "uniform sampler2D Texture_FogHeightTexture;\n"
554 "#endif\n"
555 "uniform sampler2D Texture_FogMask;\n"
556 "#endif\n"
557 "#ifdef USELIGHTMAP\n"
558 "uniform sampler2D Texture_Lightmap;\n"
559 "#endif\n"
560 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_LIGHTDIRECTIONMAP_TANGENTSPACE)\n"
561 "uniform sampler2D Texture_Deluxemap;\n"
562 "#endif\n"
563 "#ifdef USEREFLECTION\n"
564 "uniform sampler2D Texture_Reflection;\n"
565 "#endif\n"
566 "\n"
567 "#ifdef MODE_DEFERREDLIGHTSOURCE\n"
568 "uniform sampler2D Texture_ScreenDepth;\n"
569 "uniform sampler2D Texture_ScreenNormalMap;\n"
570 "#endif\n"
571 "#ifdef USEDEFERREDLIGHTMAP\n"
572 "uniform sampler2D Texture_ScreenDiffuse;\n"
573 "uniform sampler2D Texture_ScreenSpecular;\n"
574 "#endif\n"
575 "\n"
576 "uniform mediump vec3 Color_Pants;\n"
577 "uniform mediump vec3 Color_Shirt;\n"
578 "uniform mediump vec3 FogColor;\n"
579 "\n"
580 "#ifdef USEFOG\n"
581 "uniform highp float FogRangeRecip;\n"
582 "uniform highp float FogPlaneViewDist;\n"
583 "uniform highp float FogHeightFade;\n"
584 "vec3 FogVertex(vec4 surfacecolor)\n"
585 "{\n"
586 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_DEFERREDGEOMETRY) || defined(USEREFLECTCUBE)\n"
587 "       vec3 EyeVectorModelSpace = vec3(VectorS.w, VectorT.w, VectorR.w);\n"
588 "#endif\n"
589 "       float FogPlaneVertexDist = EyeVectorFogDepth.w;\n"
590 "       float fogfrac;\n"
591 "       vec3 fc = FogColor;\n"
592 "#ifdef USEFOGALPHAHACK\n"
593 "       fc *= surfacecolor.a;\n"
594 "#endif\n"
595 "#ifdef USEFOGHEIGHTTEXTURE\n"
596 "       vec4 fogheightpixel = dp_texture2D(Texture_FogHeightTexture, vec2(1,1) + vec2(FogPlaneVertexDist, FogPlaneViewDist) * (-2.0 * FogHeightFade));\n"
597 "       fogfrac = fogheightpixel.a;\n"
598 "       return mix(fogheightpixel.rgb * fc, surfacecolor.rgb, dp_texture2D(Texture_FogMask, myhalf2(length(EyeVectorModelSpace)*fogfrac*FogRangeRecip, 0.0)).r);\n"
599 "#else\n"
600 "# ifdef USEFOGOUTSIDE\n"
601 "       fogfrac = min(0.0, FogPlaneVertexDist) / (FogPlaneVertexDist - FogPlaneViewDist) * min(1.0, min(0.0, FogPlaneVertexDist) * FogHeightFade);\n"
602 "# else\n"
603 "       fogfrac = FogPlaneViewDist / (FogPlaneViewDist - max(0.0, FogPlaneVertexDist)) * min(1.0, (min(0.0, FogPlaneVertexDist) + FogPlaneViewDist) * FogHeightFade);\n"
604 "# endif\n"
605 "       return mix(fc, surfacecolor.rgb, dp_texture2D(Texture_FogMask, myhalf2(length(EyeVectorModelSpace)*fogfrac*FogRangeRecip, 0.0)).r);\n"
606 "#endif\n"
607 "}\n"
608 "#endif\n"
609 "\n"
610 "#ifdef USEOFFSETMAPPING\n"
611 "uniform mediump vec4 OffsetMapping_ScaleSteps;\n"
612 "vec2 OffsetMapping(vec2 TexCoord, vec2 dPdx, vec2 dPdy)\n"
613 "{\n"
614 "       float i;\n"
615 "#ifdef USEOFFSETMAPPING_RELIEFMAPPING\n"
616 "       float f;\n"
617 "       // 14 sample relief mapping: linear search and then binary search\n"
618 "       // this basically steps forward a small amount repeatedly until it finds\n"
619 "       // itself inside solid, then jitters forward and back using decreasing\n"
620 "       // amounts to find the impact\n"
621 "       //vec3 OffsetVector = vec3(EyeVectorFogDepth.xy * ((1.0 / EyeVectorFogDepth.z) * OffsetMapping_ScaleSteps.x) * vec2(-1, 1), -1);\n"
622 "       //vec3 OffsetVector = vec3(normalize(EyeVectorFogDepth.xy) * OffsetMapping_ScaleSteps.x * vec2(-1, 1), -1);\n"
623 "       vec3 OffsetVector = vec3(normalize(EyeVectorFogDepth.xyz).xy * OffsetMapping_ScaleSteps.x * vec2(-1, 1), -1);\n"
624 "       vec3 RT = vec3(TexCoord, 1);\n"
625 "       OffsetVector *= OffsetMapping_ScaleSteps.z;\n"
626 "       for(i = 1.0; i < OffsetMapping_ScaleSteps.y; ++i)\n"
627 "               RT += OffsetVector *  step(dp_textureGrad(Texture_Normal, RT.xy, dPdx, dPdy).a, RT.z);\n"
628 "       for(i = 0.0, f = 1.0; i < OffsetMapping_ScaleSteps.w; ++i, f *= 0.5)\n"
629 "               RT += OffsetVector * (step(dp_textureGrad(Texture_Normal, RT.xy, dPdx, dPdy).a, RT.z) * f - 0.5 * f);\n"
630 "       return RT.xy;\n"
631 "#else\n"
632 "       // 2 sample offset mapping (only 2 samples because of ATI Radeon 9500-9800/X300 limits)\n"
633 "       //vec2 OffsetVector = vec2(EyeVectorFogDepth.xy * ((1.0 / EyeVectorFogDepth.z) * OffsetMapping_ScaleSteps.x) * vec2(-1, 1));\n"
634 "       //vec2 OffsetVector = vec2(normalize(EyeVectorFogDepth.xy) * OffsetMapping_ScaleSteps.x * vec2(-1, 1));\n"
635 "       vec2 OffsetVector = vec2(normalize(EyeVectorFogDepth.xyz).xy * OffsetMapping_ScaleSteps.x * vec2(-1, 1));\n"
636 "       OffsetVector *= OffsetMapping_ScaleSteps.z;\n"
637 "       for(i = 0.0; i < OffsetMapping_ScaleSteps.y; ++i)\n"
638 "               TexCoord += OffsetVector * (1.0 - dp_textureGrad(Texture_Normal, TexCoord, dPdx, dPdy).a);\n"
639 "       return TexCoord;\n"
640 "#endif\n"
641 "}\n"
642 "#endif // USEOFFSETMAPPING\n"
643 "\n"
644 "#if defined(MODE_LIGHTSOURCE) || defined(MODE_DEFERREDLIGHTSOURCE)\n"
645 "uniform sampler2D Texture_Attenuation;\n"
646 "uniform samplerCube Texture_Cube;\n"
647 "#endif\n"
648 "\n"
649 "#if defined(MODE_LIGHTSOURCE) || defined(MODE_DEFERREDLIGHTSOURCE) || defined(USESHADOWMAPORTHO)\n"
650 "\n"
651 "#ifdef USESHADOWMAP2D\n"
652 "# ifdef USESHADOWSAMPLER\n"
653 "uniform sampler2DShadow Texture_ShadowMap2D;\n"
654 "# else\n"
655 "uniform sampler2D Texture_ShadowMap2D;\n"
656 "# endif\n"
657 "#endif\n"
658 "\n"
659 "#ifdef USESHADOWMAPVSDCT\n"
660 "uniform samplerCube Texture_CubeProjection;\n"
661 "#endif\n"
662 "\n"
663 "#if defined(USESHADOWMAP2D)\n"
664 "uniform mediump vec2 ShadowMap_TextureScale;\n"
665 "uniform mediump vec4 ShadowMap_Parameters;\n"
666 "#endif\n"
667 "\n"
668 "#if defined(USESHADOWMAP2D)\n"
669 "# ifdef USESHADOWMAPORTHO\n"
670 "#  define GetShadowMapTC2D(dir) (min(dir, ShadowMap_Parameters.xyz))\n"
671 "# else\n"
672 "#  ifdef USESHADOWMAPVSDCT\n"
673 "vec3 GetShadowMapTC2D(vec3 dir)\n"
674 "{\n"
675 "       vec3 adir = abs(dir);\n"
676 "       vec2 aparams = ShadowMap_Parameters.xy / max(max(adir.x, adir.y), adir.z);\n"
677 "       vec4 proj = dp_textureCube(Texture_CubeProjection, dir);\n"
678 "       return vec3(mix(dir.xy, dir.zz, proj.xy) * aparams.x + proj.zw * ShadowMap_Parameters.z, aparams.y + ShadowMap_Parameters.w);\n"
679 "}\n"
680 "#  else\n"
681 "vec3 GetShadowMapTC2D(vec3 dir)\n"
682 "{\n"
683 "       vec3 adir = abs(dir);\n"
684 "       float ma = adir.z;\n"
685 "       vec4 proj = vec4(dir, 2.5);\n"
686 "       if (adir.x > ma) { ma = adir.x; proj = vec4(dir.zyx, 0.5); }\n"
687 "       if (adir.y > ma) { ma = adir.y; proj = vec4(dir.xzy, 1.5); }\n"
688 "       vec2 aparams = ShadowMap_Parameters.xy / ma;\n"
689 "       return vec3(proj.xy * aparams.x + vec2(proj.z < 0.0 ? 1.5 : 0.5, proj.w) * ShadowMap_Parameters.z, aparams.y + ShadowMap_Parameters.w);\n"
690 "}\n"
691 "#  endif\n"
692 "# endif\n"
693 "#endif // defined(USESHADOWMAP2D)\n"
694 "\n"
695 "# ifdef USESHADOWMAP2D\n"
696 "float ShadowMapCompare(vec3 dir)\n"
697 "{\n"
698 "       vec3 shadowmaptc = GetShadowMapTC2D(dir);\n"
699 "       float f;\n"
700 "\n"
701 "#  ifdef USESHADOWSAMPLER\n"
702 "#    ifdef USESHADOWMAPPCF\n"
703 "#      define texval(x, y) dp_shadow2D(Texture_ShadowMap2D, vec3(center + vec2(x, y)*ShadowMap_TextureScale, shadowmaptc.z))  \n"
704 "       vec2 center = shadowmaptc.xy*ShadowMap_TextureScale;\n"
705 "       f = dot(vec4(0.25), vec4(texval(-0.4, 1.0), texval(-1.0, -0.4), texval(0.4, -1.0), texval(1.0, 0.4)));\n"
706 "#    else\n"
707 "       f = dp_shadow2D(Texture_ShadowMap2D, vec3(shadowmaptc.xy*ShadowMap_TextureScale, shadowmaptc.z));\n"
708 "#    endif\n"
709 "#  else\n"
710 "#    ifdef USESHADOWMAPPCF\n"
711 "#     if defined(GL_ARB_texture_gather) || defined(GL_AMD_texture_texture4)\n"
712 "#      ifdef GL_ARB_texture_gather\n"
713 "#        define texval(x, y) textureGatherOffset(Texture_ShadowMap2D, center, ivec2(x, y))\n"
714 "#      else\n"
715 "#        define texval(x, y) texture4(Texture_ShadowMap2D, center + vec2(x, y)*ShadowMap_TextureScale)\n"
716 "#      endif\n"
717 "       vec2 offset = fract(shadowmaptc.xy - 0.5), center = (shadowmaptc.xy - offset)*ShadowMap_TextureScale;\n"
718 "#      if USESHADOWMAPPCF > 1\n"
719 "   vec4 group1 = step(shadowmaptc.z, texval(-2.0, -2.0));\n"
720 "   vec4 group2 = step(shadowmaptc.z, texval( 0.0, -2.0));\n"
721 "   vec4 group3 = step(shadowmaptc.z, texval( 2.0, -2.0));\n"
722 "   vec4 group4 = step(shadowmaptc.z, texval(-2.0,  0.0));\n"
723 "   vec4 group5 = step(shadowmaptc.z, texval( 0.0,  0.0));\n"
724 "   vec4 group6 = step(shadowmaptc.z, texval( 2.0,  0.0));\n"
725 "   vec4 group7 = step(shadowmaptc.z, texval(-2.0,  2.0));\n"
726 "   vec4 group8 = step(shadowmaptc.z, texval( 0.0,  2.0));\n"
727 "   vec4 group9 = step(shadowmaptc.z, texval( 2.0,  2.0));\n"
728 "       vec4 locols = vec4(group1.ab, group3.ab);\n"
729 "       vec4 hicols = vec4(group7.rg, group9.rg);\n"
730 "       locols.yz += group2.ab;\n"
731 "       hicols.yz += group8.rg;\n"
732 "       vec4 midcols = vec4(group1.rg, group3.rg) + vec4(group7.ab, group9.ab) +\n"
733 "                               vec4(group4.rg, group6.rg) + vec4(group4.ab, group6.ab) +\n"
734 "                               mix(locols, hicols, offset.y);\n"
735 "       vec4 cols = group5 + vec4(group2.rg, group8.ab);\n"
736 "       cols.xyz += mix(midcols.xyz, midcols.yzw, offset.x);\n"
737 "       f = dot(cols, vec4(1.0/25.0));\n"
738 "#      else\n"
739 "       vec4 group1 = step(shadowmaptc.z, texval(-1.0, -1.0));\n"
740 "       vec4 group2 = step(shadowmaptc.z, texval( 1.0, -1.0));\n"
741 "       vec4 group3 = step(shadowmaptc.z, texval(-1.0,  1.0));\n"
742 "       vec4 group4 = step(shadowmaptc.z, texval( 1.0,  1.0));\n"
743 "       vec4 cols = vec4(group1.rg, group2.rg) + vec4(group3.ab, group4.ab) +\n"
744 "                               mix(vec4(group1.ab, group2.ab), vec4(group3.rg, group4.rg), offset.y);\n"
745 "       f = dot(mix(cols.xyz, cols.yzw, offset.x), vec3(1.0/9.0));\n"
746 "#      endif\n"
747 "#     else\n"
748 "#      ifdef GL_EXT_gpu_shader4\n"
749 "#        define texval(x, y) texture2DOffset(Texture_ShadowMap2D, center, ivec2(x, y)).r\n"
750 "#      else\n"
751 "#        define texval(x, y) dp_texture2D(Texture_ShadowMap2D, center + vec2(x, y)*ShadowMap_TextureScale).r  \n"
752 "#      endif\n"
753 "#      if USESHADOWMAPPCF > 1\n"
754 "       vec2 center = shadowmaptc.xy - 0.5, offset = fract(center);\n"
755 "       center *= ShadowMap_TextureScale;\n"
756 "       vec4 row1 = step(shadowmaptc.z, vec4(texval(-1.0, -1.0), texval( 0.0, -1.0), texval( 1.0, -1.0), texval( 2.0, -1.0)));\n"
757 "       vec4 row2 = step(shadowmaptc.z, vec4(texval(-1.0,  0.0), texval( 0.0,  0.0), texval( 1.0,  0.0), texval( 2.0,  0.0)));\n"
758 "       vec4 row3 = step(shadowmaptc.z, vec4(texval(-1.0,  1.0), texval( 0.0,  1.0), texval( 1.0,  1.0), texval( 2.0,  1.0)));\n"
759 "       vec4 row4 = step(shadowmaptc.z, vec4(texval(-1.0,  2.0), texval( 0.0,  2.0), texval( 1.0,  2.0), texval( 2.0,  2.0)));\n"
760 "       vec4 cols = row2 + row3 + mix(row1, row4, offset.y);\n"
761 "       f = dot(mix(cols.xyz, cols.yzw, offset.x), vec3(1.0/9.0));\n"
762 "#      else\n"
763 "       vec2 center = shadowmaptc.xy*ShadowMap_TextureScale, offset = fract(shadowmaptc.xy);\n"
764 "       vec3 row1 = step(shadowmaptc.z, vec3(texval(-1.0, -1.0), texval( 0.0, -1.0), texval( 1.0, -1.0)));\n"
765 "       vec3 row2 = step(shadowmaptc.z, vec3(texval(-1.0,  0.0), texval( 0.0,  0.0), texval( 1.0,  0.0)));\n"
766 "       vec3 row3 = step(shadowmaptc.z, vec3(texval(-1.0,  1.0), texval( 0.0,  1.0), texval( 1.0,  1.0)));\n"
767 "       vec3 cols = row2 + mix(row1, row3, offset.y);\n"
768 "       f = dot(mix(cols.xy, cols.yz, offset.x), vec2(0.25));\n"
769 "#      endif\n"
770 "#     endif\n"
771 "#    else\n"
772 "       f = step(shadowmaptc.z, dp_texture2D(Texture_ShadowMap2D, shadowmaptc.xy*ShadowMap_TextureScale).r);\n"
773 "#    endif\n"
774 "#  endif\n"
775 "#  ifdef USESHADOWMAPORTHO\n"
776 "       return mix(ShadowMap_Parameters.w, 1.0, f);\n"
777 "#  else\n"
778 "       return f;\n"
779 "#  endif\n"
780 "}\n"
781 "# endif\n"
782 "#endif // !defined(MODE_LIGHTSOURCE) && !defined(MODE_DEFERREDLIGHTSOURCE) && !defined(USESHADOWMAPORTHO)\n"
783 "#endif // FRAGMENT_SHADER\n"
784 "\n"
785 "\n"
786 "\n"
787 "\n"
788 "#ifdef MODE_DEFERREDGEOMETRY\n"
789 "#ifdef VERTEX_SHADER\n"
790 "uniform highp mat4 TexMatrix;\n"
791 "#ifdef USEVERTEXTEXTUREBLEND\n"
792 "uniform highp mat4 BackgroundTexMatrix;\n"
793 "#endif\n"
794 "uniform highp mat4 ModelViewMatrix;\n"
795 "void main(void)\n"
796 "{\n"
797 "       TexCoordSurfaceLightmap = vec4((TexMatrix * Attrib_TexCoord0).xy, 0.0, 0.0);\n"
798 "#ifdef USEVERTEXTEXTUREBLEND\n"
799 "       VertexColor = Attrib_Color;\n"
800 "       TexCoord2 = vec2(BackgroundTexMatrix * Attrib_TexCoord0);\n"
801 "#endif\n"
802 "\n"
803 "       // transform unnormalized eye direction into tangent space\n"
804 "#ifdef USEOFFSETMAPPING\n"
805 "       vec3 EyeRelative = EyePosition - Attrib_Position.xyz;\n"
806 "       EyeVectorFogDepth.x = dot(EyeRelative, Attrib_TexCoord1.xyz);\n"
807 "       EyeVectorFogDepth.y = dot(EyeRelative, Attrib_TexCoord2.xyz);\n"
808 "       EyeVectorFogDepth.z = dot(EyeRelative, Attrib_TexCoord3.xyz);\n"
809 "       EyeVectorFogDepth.w = 0.0;\n"
810 "#endif\n"
811 "\n"
812 "       VectorS = (ModelViewMatrix * vec4(Attrib_TexCoord1.xyz, 0));\n"
813 "       VectorT = (ModelViewMatrix * vec4(Attrib_TexCoord2.xyz, 0));\n"
814 "       VectorR = (ModelViewMatrix * vec4(Attrib_TexCoord3.xyz, 0));\n"
815 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
816 "}\n"
817 "#endif // VERTEX_SHADER\n"
818 "\n"
819 "#ifdef FRAGMENT_SHADER\n"
820 "void main(void)\n"
821 "{\n"
822 "#ifdef USEOFFSETMAPPING\n"
823 "       // apply offsetmapping\n"
824 "       vec2 dPdx = dp_offsetmapping_dFdx(TexCoordSurfaceLightmap.xy);\n"
825 "       vec2 dPdy = dp_offsetmapping_dFdy(TexCoordSurfaceLightmap.xy);\n"
826 "       vec2 TexCoordOffset = OffsetMapping(TexCoordSurfaceLightmap.xy, dPdx, dPdy);\n"
827 "# define offsetMappedTexture2D(t) dp_textureGrad(t, TexCoordOffset, dPdx, dPdy)\n"
828 "#else\n"
829 "# define offsetMappedTexture2D(t) dp_texture2D(t, TexCoordSurfaceLightmap.xy)\n"
830 "#endif\n"
831 "\n"
832 "#ifdef USEALPHAKILL\n"
833 "       if (offsetMappedTexture2D(Texture_Color).a < 0.5)\n"
834 "               discard;\n"
835 "#endif\n"
836 "\n"
837 "#ifdef USEVERTEXTEXTUREBLEND\n"
838 "       float alpha = offsetMappedTexture2D(Texture_Color).a;\n"
839 "       float terrainblend = clamp(float(VertexColor.a) * alpha * 2.0 - 0.5, float(0.0), float(1.0));\n"
840 "       //float terrainblend = min(float(VertexColor.a) * alpha * 2.0, float(1.0));\n"
841 "       //float terrainblend = float(VertexColor.a) * alpha > 0.5;\n"
842 "#endif\n"
843 "\n"
844 "#ifdef USEVERTEXTEXTUREBLEND\n"
845 "       vec3 surfacenormal = mix(vec3(dp_texture2D(Texture_SecondaryNormal, TexCoord2)), vec3(offsetMappedTexture2D(Texture_Normal)), terrainblend) - vec3(0.5, 0.5, 0.5);\n"
846 "       float a = mix(dp_texture2D(Texture_SecondaryGloss, TexCoord2).a, offsetMappedTexture2D(Texture_Gloss).a, terrainblend);\n"
847 "#else\n"
848 "       vec3 surfacenormal = vec3(offsetMappedTexture2D(Texture_Normal)) - vec3(0.5, 0.5, 0.5);\n"
849 "       float a = offsetMappedTexture2D(Texture_Gloss).a;\n"
850 "#endif\n"
851 "\n"
852 "       dp_FragColor = vec4(normalize(surfacenormal.x * VectorS.xyz + surfacenormal.y * VectorT.xyz + surfacenormal.z * VectorR.xyz) * 0.5 + vec3(0.5, 0.5, 0.5), a);\n"
853 "}\n"
854 "#endif // FRAGMENT_SHADER\n"
855 "#else // !MODE_DEFERREDGEOMETRY\n"
856 "\n"
857 "\n"
858 "\n"
859 "\n"
860 "#ifdef MODE_DEFERREDLIGHTSOURCE\n"
861 "#ifdef VERTEX_SHADER\n"
862 "uniform highp mat4 ModelViewMatrix;\n"
863 "void main(void)\n"
864 "{\n"
865 "       ModelViewPosition = ModelViewMatrix * Attrib_Position;\n"
866 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
867 "}\n"
868 "#endif // VERTEX_SHADER\n"
869 "\n"
870 "#ifdef FRAGMENT_SHADER\n"
871 "uniform highp mat4 ViewToLight;\n"
872 "// ScreenToDepth = vec2(Far / (Far - Near), Far * Near / (Near - Far));\n"
873 "uniform highp vec2 ScreenToDepth;\n"
874 "uniform myhalf3 DeferredColor_Ambient;\n"
875 "uniform myhalf3 DeferredColor_Diffuse;\n"
876 "#ifdef USESPECULAR\n"
877 "uniform myhalf3 DeferredColor_Specular;\n"
878 "uniform myhalf SpecularPower;\n"
879 "#endif\n"
880 "uniform myhalf2 PixelToScreenTexCoord;\n"
881 "void main(void)\n"
882 "{\n"
883 "       // calculate viewspace pixel position\n"
884 "       vec2 ScreenTexCoord = gl_FragCoord.xy * PixelToScreenTexCoord;\n"
885 "       vec3 position;\n"
886 "       position.z = ScreenToDepth.y / (dp_texture2D(Texture_ScreenDepth, ScreenTexCoord).r + ScreenToDepth.x);\n"
887 "       position.xy = ModelViewPosition.xy * (position.z / ModelViewPosition.z);\n"
888 "       // decode viewspace pixel normal\n"
889 "       myhalf4 normalmap = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord);\n"
890 "       myhalf3 surfacenormal = normalize(normalmap.rgb - myhalf3(0.5,0.5,0.5));\n"
891 "       // surfacenormal = pixel normal in viewspace\n"
892 "       // LightVector = pixel to light in viewspace\n"
893 "       // CubeVector = position in lightspace\n"
894 "       // eyevector = pixel to view in viewspace\n"
895 "       vec3 CubeVector = vec3(ViewToLight * vec4(position,1));\n"
896 "       myhalf fade = myhalf(dp_texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0)));\n"
897 "#ifdef USEDIFFUSE\n"
898 "       // calculate diffuse shading\n"
899 "       myhalf3 lightnormal = myhalf3(normalize(LightPosition - position));\n"
900 "       myhalf diffuse = myhalf(max(float(dot(surfacenormal, lightnormal)), 0.0));\n"
901 "#endif\n"
902 "#ifdef USESPECULAR\n"
903 "       // calculate directional shading\n"
904 "       vec3 eyevector = position * -1.0;\n"
905 "#  ifdef USEEXACTSPECULARMATH\n"
906 "       myhalf specular = pow(myhalf(max(float(dot(reflect(lightnormal, surfacenormal), normalize(eyevector)))*-1.0, 0.0)), SpecularPower * normalmap.a);\n"
907 "#  else\n"
908 "       myhalf3 specularnormal = normalize(lightnormal + myhalf3(normalize(eyevector)));\n"
909 "       myhalf specular = pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower * normalmap.a);\n"
910 "#  endif\n"
911 "#endif\n"
912 "\n"
913 "#if defined(USESHADOWMAP2D)\n"
914 "       fade *= ShadowMapCompare(CubeVector);\n"
915 "#endif\n"
916 "\n"
917 "#ifdef USESPECULAR\n"
918 "       gl_FragData[0] = vec4((DeferredColor_Ambient + DeferredColor_Diffuse * diffuse) * fade, 1.0);\n"
919 "       gl_FragData[1] = vec4(DeferredColor_Specular * (specular * fade), 1.0);\n"
920 "# ifdef USECUBEFILTER\n"
921 "       vec3 cubecolor = dp_textureCube(Texture_Cube, CubeVector).rgb;\n"
922 "       gl_FragData[0].rgb *= cubecolor;\n"
923 "       gl_FragData[1].rgb *= cubecolor;\n"
924 "# endif\n"
925 "#else\n"
926 "# ifdef USEDIFFUSE\n"
927 "       gl_FragColor = vec4((DeferredColor_Ambient + DeferredColor_Diffuse * diffuse) * fade, 1.0);\n"
928 "# else\n"
929 "       gl_FragColor = vec4(DeferredColor_Ambient * fade, 1.0);\n"
930 "# endif\n"
931 "# ifdef USECUBEFILTER\n"
932 "       vec3 cubecolor = dp_textureCube(Texture_Cube, CubeVector).rgb;\n"
933 "       gl_FragColor.rgb *= cubecolor;\n"
934 "# endif\n"
935 "#endif\n"
936 "       \n"
937 "}\n"
938 "#endif // FRAGMENT_SHADER\n"
939 "#else // !MODE_DEFERREDLIGHTSOURCE\n"
940 "\n"
941 "\n"
942 "\n"
943 "\n"
944 "#ifdef VERTEX_SHADER\n"
945 "uniform highp mat4 TexMatrix;\n"
946 "#ifdef USEVERTEXTEXTUREBLEND\n"
947 "uniform highp mat4 BackgroundTexMatrix;\n"
948 "#endif\n"
949 "#ifdef MODE_LIGHTSOURCE\n"
950 "uniform highp mat4 ModelToLight;\n"
951 "#endif\n"
952 "#ifdef USESHADOWMAPORTHO\n"
953 "uniform highp mat4 ShadowMapMatrix;\n"
954 "#endif\n"
955 "#ifdef USEBOUNCEGRID\n"
956 "uniform highp mat4 BounceGridMatrix;\n"
957 "#endif\n"
958 "void main(void)\n"
959 "{\n"
960 "#if defined(MODE_VERTEXCOLOR) || defined(USEVERTEXTEXTUREBLEND)\n"
961 "       VertexColor = Attrib_Color;\n"
962 "#endif\n"
963 "       // copy the surface texcoord\n"
964 "#ifdef USELIGHTMAP\n"
965 "       TexCoordSurfaceLightmap = vec4((TexMatrix * Attrib_TexCoord0).xy, Attrib_TexCoord4.xy);\n"
966 "#else\n"
967 "       TexCoordSurfaceLightmap = vec4((TexMatrix * Attrib_TexCoord0).xy, 0.0, 0.0);\n"
968 "#endif\n"
969 "#ifdef USEVERTEXTEXTUREBLEND\n"
970 "       TexCoord2 = vec2(BackgroundTexMatrix * Attrib_TexCoord0);\n"
971 "#endif\n"
972 "\n"
973 "#ifdef USEBOUNCEGRID\n"
974 "       BounceGridTexCoord = vec3(BounceGridMatrix * Attrib_Position);\n"
975 "#ifdef USEBOUNCEGRIDDIRECTIONAL\n"
976 "       BounceGridTexCoord.z *= 0.125;\n"
977 "#endif\n"
978 "#endif\n"
979 "\n"
980 "#ifdef MODE_LIGHTSOURCE\n"
981 "       // transform vertex position into light attenuation/cubemap space\n"
982 "       // (-1 to +1 across the light box)\n"
983 "       CubeVector = vec3(ModelToLight * Attrib_Position);\n"
984 "\n"
985 "# ifdef USEDIFFUSE\n"
986 "       // transform unnormalized light direction into tangent space\n"
987 "       // (we use unnormalized to ensure that it interpolates correctly and then\n"
988 "       //  normalize it per pixel)\n"
989 "       vec3 lightminusvertex = LightPosition - Attrib_Position.xyz;\n"
990 "       LightVector.x = dot(lightminusvertex, Attrib_TexCoord1.xyz);\n"
991 "       LightVector.y = dot(lightminusvertex, Attrib_TexCoord2.xyz);\n"
992 "       LightVector.z = dot(lightminusvertex, Attrib_TexCoord3.xyz);\n"
993 "# endif\n"
994 "#endif\n"
995 "\n"
996 "#if defined(MODE_LIGHTDIRECTION) && defined(USEDIFFUSE)\n"
997 "       LightVector.x = dot(LightDir, Attrib_TexCoord1.xyz);\n"
998 "       LightVector.y = dot(LightDir, Attrib_TexCoord2.xyz);\n"
999 "       LightVector.z = dot(LightDir, Attrib_TexCoord3.xyz);\n"
1000 "#endif\n"
1001 "\n"
1002 "       // transform unnormalized eye direction into tangent space\n"
1003 "#ifdef USEEYEVECTOR\n"
1004 "       vec3 EyeRelative = EyePosition - Attrib_Position.xyz;\n"
1005 "       EyeVectorFogDepth.x = dot(EyeRelative, Attrib_TexCoord1.xyz);\n"
1006 "       EyeVectorFogDepth.y = dot(EyeRelative, Attrib_TexCoord2.xyz);\n"
1007 "       EyeVectorFogDepth.z = dot(EyeRelative, Attrib_TexCoord3.xyz);\n"
1008 "#ifdef USEFOG\n"
1009 "       EyeVectorFogDepth.w = dot(FogPlane, Attrib_Position);\n"
1010 "#else\n"
1011 "       EyeVectorFogDepth.w = 0.0;\n"
1012 "#endif\n"
1013 "#endif\n"
1014 "\n"
1015 "\n"
1016 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(USEREFLECTCUBE) || defined(USEBOUNCEGRIDDIRECTIONAL)\n"
1017 "# ifdef USEFOG\n"
1018 "       VectorS = vec4(Attrib_TexCoord1.xyz, EyePosition.x - Attrib_Position.x);\n"
1019 "       VectorT = vec4(Attrib_TexCoord2.xyz, EyePosition.y - Attrib_Position.y);\n"
1020 "       VectorR = vec4(Attrib_TexCoord3.xyz, EyePosition.z - Attrib_Position.z);\n"
1021 "# else\n"
1022 "       VectorS = vec4(Attrib_TexCoord1, 0);\n"
1023 "       VectorT = vec4(Attrib_TexCoord2, 0);\n"
1024 "       VectorR = vec4(Attrib_TexCoord3, 0);\n"
1025 "# endif\n"
1026 "#else\n"
1027 "# ifdef USEFOG\n"
1028 "       EyeVectorModelSpace = EyePosition - Attrib_Position.xyz;\n"
1029 "# endif\n"
1030 "#endif\n"
1031 "\n"
1032 "       // transform vertex to clipspace (post-projection, but before perspective divide by W occurs)\n"
1033 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
1034 "\n"
1035 "#ifdef USESHADOWMAPORTHO\n"
1036 "       ShadowMapTC = vec3(ShadowMapMatrix * gl_Position);\n"
1037 "#endif\n"
1038 "\n"
1039 "#ifdef USEREFLECTION\n"
1040 "       ModelViewProjectionPosition = gl_Position;\n"
1041 "#endif\n"
1042 "}\n"
1043 "#endif // VERTEX_SHADER\n"
1044 "\n"
1045 "\n"
1046 "\n"
1047 "\n"
1048 "#ifdef FRAGMENT_SHADER\n"
1049 "#ifdef USEDEFERREDLIGHTMAP\n"
1050 "uniform myhalf2 PixelToScreenTexCoord;\n"
1051 "uniform myhalf3 DeferredMod_Diffuse;\n"
1052 "uniform myhalf3 DeferredMod_Specular;\n"
1053 "#endif\n"
1054 "uniform myhalf3 Color_Ambient;\n"
1055 "uniform myhalf3 Color_Diffuse;\n"
1056 "uniform myhalf3 Color_Specular;\n"
1057 "uniform myhalf SpecularPower;\n"
1058 "#ifdef USEGLOW\n"
1059 "uniform myhalf3 Color_Glow;\n"
1060 "#endif\n"
1061 "uniform myhalf Alpha;\n"
1062 "#ifdef USEREFLECTION\n"
1063 "uniform mediump vec4 DistortScaleRefractReflect;\n"
1064 "uniform mediump vec4 ScreenScaleRefractReflect;\n"
1065 "uniform mediump vec4 ScreenCenterRefractReflect;\n"
1066 "uniform mediump vec4 ReflectColor;\n"
1067 "#endif\n"
1068 "#ifdef USEREFLECTCUBE\n"
1069 "uniform highp mat4 ModelToReflectCube;\n"
1070 "uniform sampler2D Texture_ReflectMask;\n"
1071 "uniform samplerCube Texture_ReflectCube;\n"
1072 "#endif\n"
1073 "#ifdef MODE_LIGHTDIRECTION\n"
1074 "uniform myhalf3 LightColor;\n"
1075 "#endif\n"
1076 "#ifdef MODE_LIGHTSOURCE\n"
1077 "uniform myhalf3 LightColor;\n"
1078 "#endif\n"
1079 "#ifdef USEBOUNCEGRID\n"
1080 "uniform sampler3D Texture_BounceGrid;\n"
1081 "uniform float BounceGridIntensity;\n"
1082 "uniform highp mat4 BounceGridMatrix;\n"
1083 "#endif\n"
1084 "uniform highp float ClientTime;\n"
1085 "#ifdef USENORMALMAPSCROLLBLEND\n"
1086 "uniform highp vec2 NormalmapScrollBlend;\n"
1087 "#endif\n"
1088 "void main(void)\n"
1089 "{\n"
1090 "#ifdef USEOFFSETMAPPING\n"
1091 "       // apply offsetmapping\n"
1092 "       vec2 dPdx = dp_offsetmapping_dFdx(TexCoordSurfaceLightmap.xy);\n"
1093 "       vec2 dPdy = dp_offsetmapping_dFdy(TexCoordSurfaceLightmap.xy);\n"
1094 "       vec2 TexCoordOffset = OffsetMapping(TexCoordSurfaceLightmap.xy, dPdx, dPdy);\n"
1095 "# define offsetMappedTexture2D(t) dp_textureGrad(t, TexCoordOffset, dPdx, dPdy)\n"
1096 "# define TexCoord TexCoordOffset\n"
1097 "#else\n"
1098 "# define offsetMappedTexture2D(t) dp_texture2D(t, TexCoordSurfaceLightmap.xy)\n"
1099 "# define TexCoord TexCoordSurfaceLightmap.xy\n"
1100 "#endif\n"
1101 "\n"
1102 "       // combine the diffuse textures (base, pants, shirt)\n"
1103 "       myhalf4 color = myhalf4(offsetMappedTexture2D(Texture_Color));\n"
1104 "#ifdef USEALPHAKILL\n"
1105 "       if (color.a < 0.5)\n"
1106 "               discard;\n"
1107 "#endif\n"
1108 "       color.a *= Alpha;\n"
1109 "#ifdef USECOLORMAPPING\n"
1110 "       color.rgb += myhalf3(offsetMappedTexture2D(Texture_Pants)) * Color_Pants + myhalf3(offsetMappedTexture2D(Texture_Shirt)) * Color_Shirt;\n"
1111 "#endif\n"
1112 "#ifdef USEVERTEXTEXTUREBLEND\n"
1113 "#ifdef USEBOTHALPHAS\n"
1114 "       myhalf4 color2 = myhalf4(dp_texture2D(Texture_SecondaryColor, TexCoord2));\n"
1115 "       myhalf terrainblend = clamp(myhalf(VertexColor.a) * color.a, myhalf(1.0 - color2.a), myhalf(1.0));\n"
1116 "       color.rgb = mix(color2.rgb, color.rgb, terrainblend);\n"
1117 "#else\n"
1118 "       myhalf terrainblend = clamp(myhalf(VertexColor.a) * color.a * 2.0 - 0.5, myhalf(0.0), myhalf(1.0));\n"
1119 "       //myhalf terrainblend = min(myhalf(VertexColor.a) * color.a * 2.0, myhalf(1.0));\n"
1120 "       //myhalf terrainblend = myhalf(VertexColor.a) * color.a > 0.5;\n"
1121 "       color.rgb = mix(myhalf3(dp_texture2D(Texture_SecondaryColor, TexCoord2)), color.rgb, terrainblend);\n"
1122 "#endif\n"
1123 "       color.a = 1.0;\n"
1124 "       //color = mix(myhalf4(1, 0, 0, 1), color, terrainblend);\n"
1125 "#endif\n"
1126 "\n"
1127 "       // get the surface normal\n"
1128 "#ifdef USEVERTEXTEXTUREBLEND\n"
1129 "       myhalf3 surfacenormal = normalize(mix(myhalf3(dp_texture2D(Texture_SecondaryNormal, TexCoord2)), myhalf3(offsetMappedTexture2D(Texture_Normal)), terrainblend) - myhalf3(0.5, 0.5, 0.5));\n"
1130 "#else\n"
1131 "       myhalf3 surfacenormal = normalize(myhalf3(offsetMappedTexture2D(Texture_Normal)) - myhalf3(0.5, 0.5, 0.5));\n"
1132 "#endif\n"
1133 "\n"
1134 "       // get the material colors\n"
1135 "       myhalf3 diffusetex = color.rgb;\n"
1136 "#if defined(USESPECULAR) || defined(USEDEFERREDLIGHTMAP)\n"
1137 "# ifdef USEVERTEXTEXTUREBLEND\n"
1138 "       myhalf4 glosstex = mix(myhalf4(dp_texture2D(Texture_SecondaryGloss, TexCoord2)), myhalf4(offsetMappedTexture2D(Texture_Gloss)), terrainblend);\n"
1139 "# else\n"
1140 "       myhalf4 glosstex = myhalf4(offsetMappedTexture2D(Texture_Gloss));\n"
1141 "# endif\n"
1142 "#endif\n"
1143 "\n"
1144 "#ifdef USEREFLECTCUBE\n"
1145 "       vec3 TangentReflectVector = reflect(-EyeVectorFogDepth.xyz, surfacenormal);\n"
1146 "       vec3 ModelReflectVector = TangentReflectVector.x * VectorS.xyz + TangentReflectVector.y * VectorT.xyz + TangentReflectVector.z * VectorR.xyz;\n"
1147 "       vec3 ReflectCubeTexCoord = vec3(ModelToReflectCube * vec4(ModelReflectVector, 0));\n"
1148 "       diffusetex += myhalf3(offsetMappedTexture2D(Texture_ReflectMask)) * myhalf3(dp_textureCube(Texture_ReflectCube, ReflectCubeTexCoord));\n"
1149 "#endif\n"
1150 "\n"
1151 "\n"
1152 "\n"
1153 "\n"
1154 "#ifdef MODE_LIGHTSOURCE\n"
1155 "       // light source\n"
1156 "#ifdef USEDIFFUSE\n"
1157 "       myhalf3 lightnormal = myhalf3(normalize(LightVector));\n"
1158 "       myhalf diffuse = myhalf(max(float(dot(surfacenormal, lightnormal)), 0.0));\n"
1159 "       color.rgb = diffusetex * (Color_Ambient + diffuse * Color_Diffuse);\n"
1160 "#ifdef USESPECULAR\n"
1161 "#ifdef USEEXACTSPECULARMATH\n"
1162 "       myhalf specular = pow(myhalf(max(float(dot(reflect(lightnormal, surfacenormal), normalize(EyeVectorFogDepth.xyz)))*-1.0, 0.0)), SpecularPower * glosstex.a);\n"
1163 "#else\n"
1164 "       myhalf3 specularnormal = normalize(lightnormal + myhalf3(normalize(EyeVectorFogDepth.xyz)));\n"
1165 "       myhalf specular = pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower * glosstex.a);\n"
1166 "#endif\n"
1167 "       color.rgb += glosstex.rgb * (specular * Color_Specular);\n"
1168 "#endif\n"
1169 "#else\n"
1170 "       color.rgb = diffusetex * Color_Ambient;\n"
1171 "#endif\n"
1172 "       color.rgb *= LightColor;\n"
1173 "       color.rgb *= myhalf(dp_texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0)));\n"
1174 "#if defined(USESHADOWMAP2D)\n"
1175 "       color.rgb *= ShadowMapCompare(CubeVector);\n"
1176 "#endif\n"
1177 "# ifdef USECUBEFILTER\n"
1178 "       color.rgb *= myhalf3(dp_textureCube(Texture_Cube, CubeVector));\n"
1179 "# endif\n"
1180 "#endif // MODE_LIGHTSOURCE\n"
1181 "\n"
1182 "\n"
1183 "\n"
1184 "\n"
1185 "#ifdef MODE_LIGHTDIRECTION\n"
1186 "#define SHADING\n"
1187 "#ifdef USEDIFFUSE\n"
1188 "       myhalf3 lightnormal = myhalf3(normalize(LightVector));\n"
1189 "#endif\n"
1190 "#define lightcolor LightColor\n"
1191 "#endif // MODE_LIGHTDIRECTION\n"
1192 "#ifdef MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
1193 "#define SHADING\n"
1194 "       // deluxemap lightmapping using light vectors in modelspace (q3map2 -light -deluxe)\n"
1195 "       myhalf3 lightnormal_modelspace = myhalf3(dp_texture2D(Texture_Deluxemap, TexCoordSurfaceLightmap.zw)) * 2.0 + myhalf3(-1.0, -1.0, -1.0);\n"
1196 "       myhalf3 lightcolor = myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw));\n"
1197 "       // convert modelspace light vector to tangentspace\n"
1198 "       myhalf3 lightnormal;\n"
1199 "       lightnormal.x = dot(lightnormal_modelspace, myhalf3(VectorS));\n"
1200 "       lightnormal.y = dot(lightnormal_modelspace, myhalf3(VectorT));\n"
1201 "       lightnormal.z = dot(lightnormal_modelspace, myhalf3(VectorR));\n"
1202 "       lightnormal = normalize(lightnormal); // VectorS/T/R are not always perfectly normalized, and EXACTSPECULARMATH is very picky about this\n"
1203 "       // calculate directional shading (and undoing the existing angle attenuation on the lightmap by the division)\n"
1204 "       // note that q3map2 is too stupid to calculate proper surface normals when q3map_nonplanar\n"
1205 "       // is used (the lightmap and deluxemap coords correspond to virtually random coordinates\n"
1206 "       // on that luxel, and NOT to its center, because recursive triangle subdivision is used\n"
1207 "       // to map the luxels to coordinates on the draw surfaces), which also causes\n"
1208 "       // deluxemaps to be wrong because light contributions from the wrong side of the surface\n"
1209 "       // are added up. To prevent divisions by zero or strong exaggerations, a max()\n"
1210 "       // nudge is done here at expense of some additional fps. This is ONLY needed for\n"
1211 "       // deluxemaps, tangentspace deluxemap avoid this problem by design.\n"
1212 "       lightcolor *= 1.0 / max(0.25, lightnormal.z);\n"
1213 "#endif // MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
1214 "#ifdef MODE_LIGHTDIRECTIONMAP_TANGENTSPACE\n"
1215 "#define SHADING\n"
1216 "       // deluxemap lightmapping using light vectors in tangentspace (hmap2 -light)\n"
1217 "       myhalf3 lightnormal = myhalf3(dp_texture2D(Texture_Deluxemap, TexCoordSurfaceLightmap.zw)) * 2.0 + myhalf3(-1.0, -1.0, -1.0);\n"
1218 "       myhalf3 lightcolor = myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw));\n"
1219 "#endif\n"
1220 "\n"
1221 "\n"
1222 "\n"
1223 "\n"
1224 "#ifdef MODE_FAKELIGHT\n"
1225 "#define SHADING\n"
1226 "myhalf3 lightnormal = myhalf3(normalize(EyeVectorFogDepth.xyz));\n"
1227 "myhalf3 lightcolor = myhalf3(1.0);\n"
1228 "#endif // MODE_FAKELIGHT\n"
1229 "\n"
1230 "\n"
1231 "\n"
1232 "\n"
1233 "#ifdef MODE_LIGHTMAP\n"
1234 "       color.rgb = diffusetex * (Color_Ambient + myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw)) * Color_Diffuse);\n"
1235 "#endif // MODE_LIGHTMAP\n"
1236 "#ifdef MODE_VERTEXCOLOR\n"
1237 "       color.rgb = diffusetex * (Color_Ambient + myhalf3(VertexColor.rgb) * Color_Diffuse);\n"
1238 "#endif // MODE_VERTEXCOLOR\n"
1239 "#ifdef MODE_FLATCOLOR\n"
1240 "       color.rgb = diffusetex * Color_Ambient;\n"
1241 "#endif // MODE_FLATCOLOR\n"
1242 "\n"
1243 "\n"
1244 "\n"
1245 "\n"
1246 "#ifdef SHADING\n"
1247 "# ifdef USEDIFFUSE\n"
1248 "       myhalf diffuse = myhalf(max(float(dot(surfacenormal, lightnormal)), 0.0));\n"
1249 "#  ifdef USESPECULAR\n"
1250 "#   ifdef USEEXACTSPECULARMATH\n"
1251 "       myhalf specular = pow(myhalf(max(float(dot(reflect(lightnormal, surfacenormal), normalize(EyeVectorFogDepth.xyz)))*-1.0, 0.0)), SpecularPower * glosstex.a);\n"
1252 "#   else\n"
1253 "       myhalf3 specularnormal = normalize(lightnormal + myhalf3(normalize(EyeVectorFogDepth.xyz)));\n"
1254 "       myhalf specular = pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower * glosstex.a);\n"
1255 "#   endif\n"
1256 "       color.rgb = diffusetex * Color_Ambient + (diffusetex * Color_Diffuse * diffuse + glosstex.rgb * Color_Specular * specular) * lightcolor;\n"
1257 "#  else\n"
1258 "       color.rgb = diffusetex * (Color_Ambient + Color_Diffuse * diffuse * lightcolor);\n"
1259 "#  endif\n"
1260 "# else\n"
1261 "       color.rgb = diffusetex * Color_Ambient;\n"
1262 "# endif\n"
1263 "#endif\n"
1264 "\n"
1265 "#ifdef USESHADOWMAPORTHO\n"
1266 "       color.rgb *= ShadowMapCompare(ShadowMapTC);\n"
1267 "#endif\n"
1268 "\n"
1269 "#ifdef USEDEFERREDLIGHTMAP\n"
1270 "       vec2 ScreenTexCoord = gl_FragCoord.xy * PixelToScreenTexCoord;\n"
1271 "       color.rgb += diffusetex * myhalf3(dp_texture2D(Texture_ScreenDiffuse, ScreenTexCoord)) * DeferredMod_Diffuse;\n"
1272 "       color.rgb += glosstex.rgb * myhalf3(dp_texture2D(Texture_ScreenSpecular, ScreenTexCoord)) * DeferredMod_Specular;\n"
1273 "#endif\n"
1274 "\n"
1275 "#ifdef USEBOUNCEGRID\n"
1276 "#ifdef USEBOUNCEGRIDDIRECTIONAL\n"
1277 "//     myhalf4 bouncegrid_coeff1 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord                        ));\n"
1278 "//     myhalf4 bouncegrid_coeff2 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.125))) * 2.0 + myhalf4(-1.0, -1.0, -1.0, -1.0);\n"
1279 "       myhalf4 bouncegrid_coeff3 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.250)));\n"
1280 "       myhalf4 bouncegrid_coeff4 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.375)));\n"
1281 "       myhalf4 bouncegrid_coeff5 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.500)));\n"
1282 "       myhalf4 bouncegrid_coeff6 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.625)));\n"
1283 "       myhalf4 bouncegrid_coeff7 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.750)));\n"
1284 "       myhalf4 bouncegrid_coeff8 = myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.875)));\n"
1285 "       myhalf3 bouncegrid_dir = normalize(mat3(BounceGridMatrix) * (surfacenormal.x * VectorS.xyz + surfacenormal.y * VectorT.xyz + surfacenormal.z * VectorR.xyz));\n"
1286 "       myhalf3 bouncegrid_dirp = max(myhalf3(0.0, 0.0, 0.0), bouncegrid_dir);\n"
1287 "       myhalf3 bouncegrid_dirn = max(myhalf3(0.0, 0.0, 0.0), -bouncegrid_dir);\n"
1288 "//     bouncegrid_dirp  = bouncegrid_dirn = myhalf3(1.0,1.0,1.0);\n"
1289 "       myhalf3 bouncegrid_light = myhalf3(\n"
1290 "               dot(bouncegrid_coeff3.xyz, bouncegrid_dirp) + dot(bouncegrid_coeff6.xyz, bouncegrid_dirn),\n"
1291 "               dot(bouncegrid_coeff4.xyz, bouncegrid_dirp) + dot(bouncegrid_coeff7.xyz, bouncegrid_dirn),\n"
1292 "               dot(bouncegrid_coeff5.xyz, bouncegrid_dirp) + dot(bouncegrid_coeff8.xyz, bouncegrid_dirn));\n"
1293 "       color.rgb += diffusetex * bouncegrid_light * BounceGridIntensity;\n"
1294 "//     color.rgb = bouncegrid_dir.rgb * 0.5 + vec3(0.5, 0.5, 0.5);\n"
1295 "#else\n"
1296 "       color.rgb += diffusetex * myhalf3(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord)) * BounceGridIntensity;\n"
1297 "#endif\n"
1298 "#endif\n"
1299 "\n"
1300 "#ifdef USEGLOW\n"
1301 "#ifdef USEVERTEXTEXTUREBLEND\n"
1302 "       color.rgb += mix(myhalf3(dp_texture2D(Texture_SecondaryGlow, TexCoord2)), myhalf3(offsetMappedTexture2D(Texture_Glow)), terrainblend) * Color_Glow;\n"
1303 "#else\n"
1304 "       color.rgb += myhalf3(offsetMappedTexture2D(Texture_Glow)) * Color_Glow;\n"
1305 "#endif\n"
1306 "#endif\n"
1307 "\n"
1308 "#ifdef USEFOG\n"
1309 "       color.rgb = FogVertex(color);\n"
1310 "#endif\n"
1311 "\n"
1312 "       // reflection must come last because it already contains exactly the correct fog (the reflection render preserves camera distance from the plane, it only flips the side) and ContrastBoost/SceneBrightness\n"
1313 "#ifdef USEREFLECTION\n"
1314 "       vec4 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect * (1.0 / ModelViewProjectionPosition.w);\n"
1315 "       //vec4 ScreenTexCoord = (ModelViewProjectionPosition.xyxy + normalize(myhalf3(offsetMappedTexture2D(Texture_Normal)) - myhalf3(0.5)).xyxy * DistortScaleRefractReflect * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
1316 "       vec2 SafeScreenTexCoord = ModelViewProjectionPosition.xy * ScreenScaleRefractReflectIW.zw + ScreenCenterRefractReflect.zw;\n"
1317 "       #ifdef USENORMALMAPSCROLLBLEND\n"
1318 "# ifdef USEOFFSETMAPPING\n"
1319 "               vec3 normal = dp_textureGrad(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y, dPdx*NormalmapScrollBlend.y, dPdy*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
1320 "# else\n"
1321 "               vec3 normal = dp_texture2D(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
1322 "# endif\n"
1323 "               normal += dp_texture2D(Texture_Normal, (TexCoord + vec2(-0.06, -0.09)*ClientTime*NormalmapScrollBlend.x)*NormalmapScrollBlend.y*0.75).rgb;\n"
1324 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(myhalf3(normal))).xy * DistortScaleRefractReflect.zw;\n"
1325 "       #else\n"
1326 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(myhalf3(offsetMappedTexture2D(Texture_Normal)) - myhalf3(0.5))).xy * DistortScaleRefractReflect.zw;\n"
1327 "       #endif\n"
1328 "       // FIXME temporary hack to detect the case that the reflection\n"
1329 "       // gets blackened at edges due to leaving the area that contains actual\n"
1330 "       // content.\n"
1331 "       // Remove this 'ack once we have a better way to stop this thing from\n"
1332 "       // 'appening.\n"
1333 "       float f = min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(0.01, 0.01)).rgb) / 0.05);\n"
1334 "       f      *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(0.01, -0.01)).rgb) / 0.05);\n"
1335 "       f      *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(-0.01, 0.01)).rgb) / 0.05);\n"
1336 "       f      *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(-0.01, -0.01)).rgb) / 0.05);\n"
1337 "       ScreenTexCoord = mix(SafeScreenTexCoord, ScreenTexCoord, f);\n"
1338 "       color.rgb = mix(color.rgb, myhalf3(dp_texture2D(Texture_Reflection, ScreenTexCoord)) * ReflectColor.rgb, ReflectColor.a);\n"
1339 "#endif\n"
1340 "\n"
1341 "       dp_FragColor = vec4(color);\n"
1342 "}\n"
1343 "#endif // FRAGMENT_SHADER\n"
1344 "\n"
1345 "#endif // !MODE_DEFERREDLIGHTSOURCE\n"
1346 "#endif // !MODE_DEFERREDGEOMETRY\n"
1347 "#endif // !MODE_WATER\n"
1348 "#endif // !MODE_REFRACTION\n"
1349 "#endif // !MODE_BLOOMBLUR\n"
1350 "#endif // !MODE_GENERIC\n"
1351 "#endif // !MODE_POSTPROCESS\n"
1352 "#endif // !MODE_SHOWDEPTH\n"
1353 "#endif // !MODE_DEPTH_OR_SHADOW\n"