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