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