]> icculus.org git repositories - divverent/darkplaces.git/blob - gl_rmain.c
fix bug in RSurf_ActiveWorldEntity (now sets basepolygonoffset fields)
[divverent/darkplaces.git] / gl_rmain.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // r_main.c
21
22 #include "quakedef.h"
23 #include "cl_dyntexture.h"
24 #include "r_shadow.h"
25 #include "polygon.h"
26 #include "image.h"
27
28 mempool_t *r_main_mempool;
29 rtexturepool_t *r_main_texturepool;
30
31 //
32 // screen size info
33 //
34 r_refdef_t r_refdef;
35 r_view_t r_view;
36 r_viewcache_t r_viewcache;
37
38 cvar_t r_depthfirst = {CVAR_SAVE, "r_depthfirst", "1", "renders a depth-only version of the scene before normal rendering begins to eliminate overdraw, values: 0 = off, 1 = world depth, 2 = world and model depth"};
39 cvar_t r_nearclip = {0, "r_nearclip", "1", "distance from camera of nearclip plane" };
40 cvar_t r_showbboxes = {0, "r_showbboxes", "0", "shows bounding boxes of server entities, value controls opacity scaling (1 = 10%,  10 = 100%)"};
41 cvar_t r_showsurfaces = {0, "r_showsurfaces", "0", "1 shows surfaces as different colors, or a value of 2 shows triangle draw order (for analyzing whether meshes are optimized for vertex cache)"};
42 cvar_t r_showtris = {0, "r_showtris", "0", "shows triangle outlines, value controls brightness (can be above 1)"};
43 cvar_t r_shownormals = {0, "r_shownormals", "0", "shows per-vertex surface normals and tangent vectors for bumpmapped lighting"};
44 cvar_t r_showlighting = {0, "r_showlighting", "0", "shows areas lit by lights, useful for finding out why some areas of a map render slowly (bright orange = lots of passes = slow), a value of 2 disables depth testing which can be interesting but not very useful"};
45 cvar_t r_showshadowvolumes = {0, "r_showshadowvolumes", "0", "shows areas shadowed by lights, useful for finding out why some areas of a map render slowly (bright blue = lots of passes = slow), a value of 2 disables depth testing which can be interesting but not very useful"};
46 cvar_t r_showcollisionbrushes = {0, "r_showcollisionbrushes", "0", "draws collision brushes in quake3 maps (mode 1), mode 2 disables rendering of world (trippy!)"};
47 cvar_t r_showcollisionbrushes_polygonfactor = {0, "r_showcollisionbrushes_polygonfactor", "-1", "expands outward the brush polygons a little bit, used to make collision brushes appear infront of walls"};
48 cvar_t r_showcollisionbrushes_polygonoffset = {0, "r_showcollisionbrushes_polygonoffset", "0", "nudges brush polygon depth in hardware depth units, used to make collision brushes appear infront of walls"};
49 cvar_t r_showdisabledepthtest = {0, "r_showdisabledepthtest", "0", "disables depth testing on r_show* cvars, allowing you to see what hidden geometry the graphics card is processing"};
50 cvar_t r_drawportals = {0, "r_drawportals", "0", "shows portals (separating polygons) in world interior in quake1 maps"};
51 cvar_t r_drawentities = {0, "r_drawentities","1", "draw entities (doors, players, projectiles, etc)"};
52 cvar_t r_drawviewmodel = {0, "r_drawviewmodel","1", "draw your weapon model"};
53 cvar_t r_cullentities_trace = {0, "r_cullentities_trace", "1", "probabistically cull invisible entities"};
54 cvar_t r_cullentities_trace_samples = {0, "r_cullentities_trace_samples", "2", "number of samples to test for entity culling"};
55 cvar_t r_cullentities_trace_enlarge = {0, "r_cullentities_trace_enlarge", "0", "box enlargement for entity culling"};
56 cvar_t r_cullentities_trace_delay = {0, "r_cullentities_trace_delay", "1", "number of seconds until the entity gets actually culled"};
57 cvar_t r_speeds = {0, "r_speeds","0", "displays rendering statistics and per-subsystem timings"};
58 cvar_t r_fullbright = {0, "r_fullbright","0", "makes map very bright and renders faster"};
59 cvar_t r_wateralpha = {CVAR_SAVE, "r_wateralpha","1", "opacity of water polygons"};
60 cvar_t r_dynamic = {CVAR_SAVE, "r_dynamic","1", "enables dynamic lights (rocket glow and such)"};
61 cvar_t r_fullbrights = {CVAR_SAVE, "r_fullbrights", "1", "enables glowing pixels in quake textures (changes need r_restart to take effect)"};
62 cvar_t r_shadows = {CVAR_SAVE, "r_shadows", "0", "casts fake stencil shadows from models onto the world (rtlights are unaffected by this)"};
63 cvar_t r_shadows_throwdistance = {CVAR_SAVE, "r_shadows_throwdistance", "500", "how far to cast shadows from models"};
64 cvar_t r_q1bsp_skymasking = {0, "r_q1bsp_skymasking", "1", "allows sky polygons in quake1 maps to obscure other geometry"};
65 cvar_t r_polygonoffset_submodel_factor = {0, "r_polygonoffset_submodel_factor", "0", "biases depth values of world submodels such as doors, to prevent z-fighting artifacts in Quake maps"};
66 cvar_t r_polygonoffset_submodel_offset = {0, "r_polygonoffset_submodel_offset", "2", "biases depth values of world submodels such as doors, to prevent z-fighting artifacts in Quake maps"};
67
68 cvar_t gl_fogenable = {0, "gl_fogenable", "0", "nehahra fog enable (for Nehahra compatibility only)"};
69 cvar_t gl_fogdensity = {0, "gl_fogdensity", "0.25", "nehahra fog density (recommend values below 0.1) (for Nehahra compatibility only)"};
70 cvar_t gl_fogred = {0, "gl_fogred","0.3", "nehahra fog color red value (for Nehahra compatibility only)"};
71 cvar_t gl_foggreen = {0, "gl_foggreen","0.3", "nehahra fog color green value (for Nehahra compatibility only)"};
72 cvar_t gl_fogblue = {0, "gl_fogblue","0.3", "nehahra fog color blue value (for Nehahra compatibility only)"};
73 cvar_t gl_fogstart = {0, "gl_fogstart", "0", "nehahra fog start distance (for Nehahra compatibility only)"};
74 cvar_t gl_fogend = {0, "gl_fogend","0", "nehahra fog end distance (for Nehahra compatibility only)"};
75
76 cvar_t r_textureunits = {0, "r_textureunits", "32", "number of hardware texture units reported by driver (note: setting this to 1 turns off gl_combine)"};
77
78 cvar_t r_glsl = {CVAR_SAVE, "r_glsl", "1", "enables use of OpenGL 2.0 pixel shaders for lighting"};
79 cvar_t r_glsl_offsetmapping = {CVAR_SAVE, "r_glsl_offsetmapping", "0", "offset mapping effect (also known as parallax mapping or virtual displacement mapping)"};
80 cvar_t r_glsl_offsetmapping_reliefmapping = {CVAR_SAVE, "r_glsl_offsetmapping_reliefmapping", "0", "relief mapping effect (higher quality)"};
81 cvar_t r_glsl_offsetmapping_scale = {CVAR_SAVE, "r_glsl_offsetmapping_scale", "0.04", "how deep the offset mapping effect is"};
82 cvar_t r_glsl_deluxemapping = {CVAR_SAVE, "r_glsl_deluxemapping", "1", "use per pixel lighting on deluxemap-compiled q3bsp maps (or a value of 2 forces deluxemap shading even without deluxemaps)"};
83 cvar_t r_glsl_contrastboost = {CVAR_SAVE, "r_glsl_contrastboost", "1", "by how much to multiply the contrast in dark areas (1 is no change)"};
84
85 cvar_t r_water = {CVAR_SAVE, "r_water", "0", "whether to use reflections and refraction on water surfaces (note: r_wateralpha must be set below 1)"};
86 cvar_t r_water_clippingplanebias = {CVAR_SAVE, "r_water_clippingplanebias", "1", "a rather technical setting which avoids black pixels around water edges"};
87 cvar_t r_water_resolutionmultiplier = {CVAR_SAVE, "r_water_resolutionmultiplier", "0.5", "multiplier for screen resolution when rendering refracted/reflected scenes, 1 is full quality, lower values are faster"};
88 cvar_t r_water_refractdistort = {CVAR_SAVE, "r_water_refractdistort", "0.01", "how much water refractions shimmer"};
89 cvar_t r_water_reflectdistort = {CVAR_SAVE, "r_water_reflectdistort", "0.01", "how much water reflections shimmer"};
90
91 cvar_t r_lerpsprites = {CVAR_SAVE, "r_lerpsprites", "1", "enables animation smoothing on sprites (requires r_lerpmodels 1)"};
92 cvar_t r_lerpmodels = {CVAR_SAVE, "r_lerpmodels", "1", "enables animation smoothing on models"};
93 cvar_t r_lerplightstyles = {CVAR_SAVE, "r_lerplightstyles", "0", "enable animation smoothing on flickering lights"};
94 cvar_t r_waterscroll = {CVAR_SAVE, "r_waterscroll", "1", "makes water scroll around, value controls how much"};
95
96 cvar_t r_bloom = {CVAR_SAVE, "r_bloom", "0", "enables bloom effect (makes bright pixels affect neighboring pixels)"};
97 cvar_t r_bloom_colorscale = {CVAR_SAVE, "r_bloom_colorscale", "1", "how bright the glow is"};
98 cvar_t r_bloom_brighten = {CVAR_SAVE, "r_bloom_brighten", "2", "how bright the glow is, after subtract/power"};
99 cvar_t r_bloom_blur = {CVAR_SAVE, "r_bloom_blur", "4", "how large the glow is"};
100 cvar_t r_bloom_resolution = {CVAR_SAVE, "r_bloom_resolution", "320", "what resolution to perform the bloom effect at (independent of screen resolution)"};
101 cvar_t r_bloom_colorexponent = {CVAR_SAVE, "r_bloom_colorexponent", "1", "how exagerated the glow is"};
102 cvar_t r_bloom_colorsubtract = {CVAR_SAVE, "r_bloom_colorsubtract", "0.125", "reduces bloom colors by a certain amount"};
103
104 cvar_t r_hdr = {CVAR_SAVE, "r_hdr", "0", "enables High Dynamic Range bloom effect (higher quality version of r_bloom)"};
105 cvar_t r_hdr_scenebrightness = {CVAR_SAVE, "r_hdr_scenebrightness", "1", "global rendering brightness"};
106 cvar_t r_hdr_glowintensity = {CVAR_SAVE, "r_hdr_glowintensity", "1", "how bright light emitting textures should appear"};
107 cvar_t r_hdr_range = {CVAR_SAVE, "r_hdr_range", "4", "how much dynamic range to render bloom with (equivilant to multiplying r_bloom_brighten by this value and dividing r_bloom_colorscale by this value)"};
108
109 cvar_t r_smoothnormals_areaweighting = {0, "r_smoothnormals_areaweighting", "1", "uses significantly faster (and supposedly higher quality) area-weighted vertex normals and tangent vectors rather than summing normalized triangle normals and tangents"};
110
111 cvar_t developer_texturelogging = {0, "developer_texturelogging", "0", "produces a textures.log file containing names of skins and map textures the engine tried to load"};
112
113 cvar_t gl_lightmaps = {0, "gl_lightmaps", "0", "draws only lightmaps, no texture (for level designers)"};
114
115 cvar_t r_test = {0, "r_test", "0", "internal development use only, leave it alone (usually does nothing anyway)"};
116 cvar_t r_batchmode = {0, "r_batchmode", "1", "selects method of rendering multiple surfaces with one driver call (values are 0, 1, 2, etc...)"};
117 cvar_t r_track_sprites = {CVAR_SAVE, "r_track_sprites", "1", "track SPR_LABEL* sprites by putting them as indicator at the screen border to rotate to"};
118 cvar_t r_track_sprites_flags = {CVAR_SAVE, "r_track_sprites_flags", "1", "1: Rotate sprites accodringly, 2: Make it a continuous rotation"};
119 cvar_t r_track_sprites_scalew = {CVAR_SAVE, "r_track_sprites_scalew", "1", "width scaling of tracked sprites"};
120 cvar_t r_track_sprites_scaleh = {CVAR_SAVE, "r_track_sprites_scaleh", "1", "height scaling of tracked sprites"};
121
122 extern qboolean v_flipped_state;
123
124 typedef struct r_glsl_bloomshader_s
125 {
126         int program;
127         int loc_Texture_Bloom;
128 }
129 r_glsl_bloomshader_t;
130
131 static struct r_bloomstate_s
132 {
133         qboolean enabled;
134         qboolean hdr;
135
136         int bloomwidth, bloomheight;
137
138         int screentexturewidth, screentextureheight;
139         rtexture_t *texture_screen;
140
141         int bloomtexturewidth, bloomtextureheight;
142         rtexture_t *texture_bloom;
143
144         r_glsl_bloomshader_t *shader;
145
146         // arrays for rendering the screen passes
147         float screentexcoord2f[8];
148         float bloomtexcoord2f[8];
149         float offsettexcoord2f[8];
150 }
151 r_bloomstate;
152
153 typedef struct r_waterstate_waterplane_s
154 {
155         rtexture_t *texture_refraction;
156         rtexture_t *texture_reflection;
157         mplane_t plane;
158         int materialflags; // combined flags of all water surfaces on this plane
159         unsigned char pvsbits[(32768+7)>>3]; // FIXME: buffer overflow on huge maps
160         qboolean pvsvalid;
161 }
162 r_waterstate_waterplane_t;
163
164 #define MAX_WATERPLANES 16
165
166 static struct r_waterstate_s
167 {
168         qboolean enabled;
169
170         qboolean renderingscene; // true while rendering a refraction or reflection texture, disables water surfaces
171
172         int waterwidth, waterheight;
173         int texturewidth, textureheight;
174
175         int maxwaterplanes; // same as MAX_WATERPLANES
176         int numwaterplanes;
177         r_waterstate_waterplane_t waterplanes[MAX_WATERPLANES];
178
179         float screenscale[2];
180         float screencenter[2];
181 }
182 r_waterstate;
183
184 // shadow volume bsp struct with automatically growing nodes buffer
185 svbsp_t r_svbsp;
186
187 rtexture_t *r_texture_blanknormalmap;
188 rtexture_t *r_texture_white;
189 rtexture_t *r_texture_grey128;
190 rtexture_t *r_texture_black;
191 rtexture_t *r_texture_notexture;
192 rtexture_t *r_texture_whitecube;
193 rtexture_t *r_texture_normalizationcube;
194 rtexture_t *r_texture_fogattenuation;
195 //rtexture_t *r_texture_fogintensity;
196
197 char r_qwskincache[MAX_SCOREBOARD][MAX_QPATH];
198 skinframe_t *r_qwskincache_skinframe[MAX_SCOREBOARD];
199
200 // vertex coordinates for a quad that covers the screen exactly
201 const static float r_screenvertex3f[12] =
202 {
203         0, 0, 0,
204         1, 0, 0,
205         1, 1, 0,
206         0, 1, 0
207 };
208
209 extern void R_DrawModelShadows(void);
210
211 void R_ModulateColors(float *in, float *out, int verts, float r, float g, float b)
212 {
213         int i;
214         for (i = 0;i < verts;i++)
215         {
216                 out[0] = in[0] * r;
217                 out[1] = in[1] * g;
218                 out[2] = in[2] * b;
219                 out[3] = in[3];
220                 in += 4;
221                 out += 4;
222         }
223 }
224
225 void R_FillColors(float *out, int verts, float r, float g, float b, float a)
226 {
227         int i;
228         for (i = 0;i < verts;i++)
229         {
230                 out[0] = r;
231                 out[1] = g;
232                 out[2] = b;
233                 out[3] = a;
234                 out += 4;
235         }
236 }
237
238 // FIXME: move this to client?
239 void FOG_clear(void)
240 {
241         if (gamemode == GAME_NEHAHRA)
242         {
243                 Cvar_Set("gl_fogenable", "0");
244                 Cvar_Set("gl_fogdensity", "0.2");
245                 Cvar_Set("gl_fogred", "0.3");
246                 Cvar_Set("gl_foggreen", "0.3");
247                 Cvar_Set("gl_fogblue", "0.3");
248         }
249         r_refdef.fog_density = r_refdef.fog_red = r_refdef.fog_green = r_refdef.fog_blue = 0.0f;
250         r_refdef.fog_start = 0;
251         r_refdef.fog_end = 1000000000;
252 }
253
254 float FogForDistance(vec_t dist)
255 {
256         unsigned int fogmasktableindex = (unsigned int)(bound(0, dist - r_refdef.fog_start, r_refdef.fog_end - r_refdef.fog_start) * r_refdef.fogmasktabledistmultiplier);
257         return r_refdef.fogmasktable[min(fogmasktableindex, FOGMASKTABLEWIDTH - 1)];
258 }
259
260 float FogPoint_World(const vec3_t p)
261 {
262         return FogForDistance(VectorDistance((p), r_view.origin));
263 }
264
265 float FogPoint_Model(const vec3_t p)
266 {
267         return FogForDistance(VectorDistance((p), rsurface.modelorg));
268 }
269
270 static void R_BuildBlankTextures(void)
271 {
272         unsigned char data[4];
273         data[2] = 128; // normal X
274         data[1] = 128; // normal Y
275         data[0] = 255; // normal Z
276         data[3] = 128; // height
277         r_texture_blanknormalmap = R_LoadTexture2D(r_main_texturepool, "blankbump", 1, 1, data, TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_PERSISTENT, NULL);
278         data[0] = 255;
279         data[1] = 255;
280         data[2] = 255;
281         data[3] = 255;
282         r_texture_white = R_LoadTexture2D(r_main_texturepool, "blankwhite", 1, 1, data, TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_PERSISTENT, NULL);
283         data[0] = 128;
284         data[1] = 128;
285         data[2] = 128;
286         data[3] = 255;
287         r_texture_grey128 = R_LoadTexture2D(r_main_texturepool, "blankgrey128", 1, 1, data, TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_PERSISTENT, NULL);
288         data[0] = 0;
289         data[1] = 0;
290         data[2] = 0;
291         data[3] = 255;
292         r_texture_black = R_LoadTexture2D(r_main_texturepool, "blankblack", 1, 1, data, TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_PERSISTENT, NULL);
293 }
294
295 static void R_BuildNoTexture(void)
296 {
297         int x, y;
298         unsigned char pix[16][16][4];
299         // this makes a light grey/dark grey checkerboard texture
300         for (y = 0;y < 16;y++)
301         {
302                 for (x = 0;x < 16;x++)
303                 {
304                         if ((y < 8) ^ (x < 8))
305                         {
306                                 pix[y][x][0] = 128;
307                                 pix[y][x][1] = 128;
308                                 pix[y][x][2] = 128;
309                                 pix[y][x][3] = 255;
310                         }
311                         else
312                         {
313                                 pix[y][x][0] = 64;
314                                 pix[y][x][1] = 64;
315                                 pix[y][x][2] = 64;
316                                 pix[y][x][3] = 255;
317                         }
318                 }
319         }
320         r_texture_notexture = R_LoadTexture2D(r_main_texturepool, "notexture", 16, 16, &pix[0][0][0], TEXTYPE_BGRA, TEXF_MIPMAP | TEXF_PERSISTENT, NULL);
321 }
322
323 static void R_BuildWhiteCube(void)
324 {
325         unsigned char data[6*1*1*4];
326         memset(data, 255, sizeof(data));
327         r_texture_whitecube = R_LoadTextureCubeMap(r_main_texturepool, "whitecube", 1, data, TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_CLAMP | TEXF_PERSISTENT, NULL);
328 }
329
330 static void R_BuildNormalizationCube(void)
331 {
332         int x, y, side;
333         vec3_t v;
334         vec_t s, t, intensity;
335 #define NORMSIZE 64
336         unsigned char data[6][NORMSIZE][NORMSIZE][4];
337         for (side = 0;side < 6;side++)
338         {
339                 for (y = 0;y < NORMSIZE;y++)
340                 {
341                         for (x = 0;x < NORMSIZE;x++)
342                         {
343                                 s = (x + 0.5f) * (2.0f / NORMSIZE) - 1.0f;
344                                 t = (y + 0.5f) * (2.0f / NORMSIZE) - 1.0f;
345                                 switch(side)
346                                 {
347                                 default:
348                                 case 0:
349                                         v[0] = 1;
350                                         v[1] = -t;
351                                         v[2] = -s;
352                                         break;
353                                 case 1:
354                                         v[0] = -1;
355                                         v[1] = -t;
356                                         v[2] = s;
357                                         break;
358                                 case 2:
359                                         v[0] = s;
360                                         v[1] = 1;
361                                         v[2] = t;
362                                         break;
363                                 case 3:
364                                         v[0] = s;
365                                         v[1] = -1;
366                                         v[2] = -t;
367                                         break;
368                                 case 4:
369                                         v[0] = s;
370                                         v[1] = -t;
371                                         v[2] = 1;
372                                         break;
373                                 case 5:
374                                         v[0] = -s;
375                                         v[1] = -t;
376                                         v[2] = -1;
377                                         break;
378                                 }
379                                 intensity = 127.0f / sqrt(DotProduct(v, v));
380                                 data[side][y][x][2] = (unsigned char)(128.0f + intensity * v[0]);
381                                 data[side][y][x][1] = (unsigned char)(128.0f + intensity * v[1]);
382                                 data[side][y][x][0] = (unsigned char)(128.0f + intensity * v[2]);
383                                 data[side][y][x][3] = 255;
384                         }
385                 }
386         }
387         r_texture_normalizationcube = R_LoadTextureCubeMap(r_main_texturepool, "normalcube", NORMSIZE, &data[0][0][0][0], TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_CLAMP | TEXF_PERSISTENT, NULL);
388 }
389
390 static void R_BuildFogTexture(void)
391 {
392         int x, b;
393 #define FOGWIDTH 256
394         unsigned char data1[FOGWIDTH][4];
395         //unsigned char data2[FOGWIDTH][4];
396         for (x = 0;x < FOGWIDTH;x++)
397         {
398                 b = (int)(r_refdef.fogmasktable[x * (FOGMASKTABLEWIDTH - 1) / (FOGWIDTH - 1)] * 255);
399                 data1[x][0] = b;
400                 data1[x][1] = b;
401                 data1[x][2] = b;
402                 data1[x][3] = 255;
403                 //data2[x][0] = 255 - b;
404                 //data2[x][1] = 255 - b;
405                 //data2[x][2] = 255 - b;
406                 //data2[x][3] = 255;
407         }
408         r_texture_fogattenuation = R_LoadTexture2D(r_main_texturepool, "fogattenuation", FOGWIDTH, 1, &data1[0][0], TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_FORCELINEAR | TEXF_CLAMP | TEXF_PERSISTENT, NULL);
409         //r_texture_fogintensity = R_LoadTexture2D(r_main_texturepool, "fogintensity", FOGWIDTH, 1, &data2[0][0], TEXTYPE_BGRA, TEXF_PRECACHE | TEXF_FORCELINEAR | TEXF_CLAMP, NULL);
410 }
411
412 static const char *builtinshaderstring =
413 "// ambient+diffuse+specular+normalmap+attenuation+cubemap+fog shader\n"
414 "// written by Forest 'LordHavoc' Hale\n"
415 "\n"
416 "// common definitions between vertex shader and fragment shader:\n"
417 "\n"
418 "#ifdef __GLSL_CG_DATA_TYPES\n"
419 "# define myhalf half\n"
420 "# define myhvec2 hvec2\n"
421 "# define myhvec3 hvec3\n"
422 "# define myhvec4 hvec4\n"
423 "#else\n"
424 "# define myhalf float\n"
425 "# define myhvec2 vec2\n"
426 "# define myhvec3 vec3\n"
427 "# define myhvec4 vec4\n"
428 "#endif\n"
429 "\n"
430 "varying vec2 TexCoord;\n"
431 "varying vec2 TexCoordLightmap;\n"
432 "\n"
433 "//#ifdef MODE_LIGHTSOURCE\n"
434 "varying vec3 CubeVector;\n"
435 "//#endif\n"
436 "\n"
437 "//#ifdef MODE_LIGHTSOURCE\n"
438 "varying vec3 LightVector;\n"
439 "//#else\n"
440 "//# ifdef MODE_LIGHTDIRECTION\n"
441 "//varying vec3 LightVector;\n"
442 "//# endif\n"
443 "//#endif\n"
444 "\n"
445 "varying vec3 EyeVector;\n"
446 "//#ifdef USEFOG\n"
447 "varying vec3 EyeVectorModelSpace;\n"
448 "//#endif\n"
449 "\n"
450 "varying vec3 VectorS; // direction of S texcoord (sometimes crudely called tangent)\n"
451 "varying vec3 VectorT; // direction of T texcoord (sometimes crudely called binormal)\n"
452 "varying vec3 VectorR; // direction of R texcoord (surface normal)\n"
453 "\n"
454 "//#ifdef MODE_WATER\n"
455 "varying vec4 ModelViewProjectionPosition;\n"
456 "//#else\n"
457 "//# ifdef MODE_REFRACTION\n"
458 "//varying vec4 ModelViewProjectionPosition;\n"
459 "//# else\n"
460 "//#  ifdef USEREFLECTION\n"
461 "//varying vec4 ModelViewProjectionPosition;\n"
462 "//#  endif\n"
463 "//# endif\n"
464 "//#endif\n"
465 "\n"
466 "\n"
467 "\n"
468 "\n"
469 "\n"
470 "// vertex shader specific:\n"
471 "#ifdef VERTEX_SHADER\n"
472 "\n"
473 "uniform vec3 LightPosition;\n"
474 "uniform vec3 EyePosition;\n"
475 "uniform vec3 LightDir;\n"
476 "\n"
477 "// TODO: get rid of tangentt (texcoord2) and use a crossproduct to regenerate it from tangents (texcoord1) and normal (texcoord3)\n"
478 "\n"
479 "void main(void)\n"
480 "{\n"
481 "       gl_FrontColor = gl_Color;\n"
482 "       // copy the surface texcoord\n"
483 "       TexCoord = vec2(gl_TextureMatrix[0] * gl_MultiTexCoord0);\n"
484 "#ifndef MODE_LIGHTSOURCE\n"
485 "# ifndef MODE_LIGHTDIRECTION\n"
486 "       TexCoordLightmap = vec2(gl_MultiTexCoord4);\n"
487 "# endif\n"
488 "#endif\n"
489 "\n"
490 "#ifdef MODE_LIGHTSOURCE\n"
491 "       // transform vertex position into light attenuation/cubemap space\n"
492 "       // (-1 to +1 across the light box)\n"
493 "       CubeVector = vec3(gl_TextureMatrix[3] * gl_Vertex);\n"
494 "\n"
495 "       // transform unnormalized light direction into tangent space\n"
496 "       // (we use unnormalized to ensure that it interpolates correctly and then\n"
497 "       //  normalize it per pixel)\n"
498 "       vec3 lightminusvertex = LightPosition - gl_Vertex.xyz;\n"
499 "       LightVector.x = dot(lightminusvertex, gl_MultiTexCoord1.xyz);\n"
500 "       LightVector.y = dot(lightminusvertex, gl_MultiTexCoord2.xyz);\n"
501 "       LightVector.z = dot(lightminusvertex, gl_MultiTexCoord3.xyz);\n"
502 "#endif\n"
503 "\n"
504 "#ifdef MODE_LIGHTDIRECTION\n"
505 "       LightVector.x = dot(LightDir, gl_MultiTexCoord1.xyz);\n"
506 "       LightVector.y = dot(LightDir, gl_MultiTexCoord2.xyz);\n"
507 "       LightVector.z = dot(LightDir, gl_MultiTexCoord3.xyz);\n"
508 "#endif\n"
509 "\n"
510 "       // transform unnormalized eye direction into tangent space\n"
511 "#ifndef USEFOG\n"
512 "       vec3 EyeVectorModelSpace;\n"
513 "#endif\n"
514 "       EyeVectorModelSpace = EyePosition - gl_Vertex.xyz;\n"
515 "       EyeVector.x = dot(EyeVectorModelSpace, gl_MultiTexCoord1.xyz);\n"
516 "       EyeVector.y = dot(EyeVectorModelSpace, gl_MultiTexCoord2.xyz);\n"
517 "       EyeVector.z = dot(EyeVectorModelSpace, gl_MultiTexCoord3.xyz);\n"
518 "\n"
519 "#ifdef MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
520 "       VectorS = gl_MultiTexCoord1.xyz;\n"
521 "       VectorT = gl_MultiTexCoord2.xyz;\n"
522 "       VectorR = gl_MultiTexCoord3.xyz;\n"
523 "#endif\n"
524 "\n"
525 "//#if defined(MODE_WATER) || defined(MODE_REFRACTION) || defined(USEREFLECTION)\n"
526 "//     ModelViewProjectionPosition = gl_Vertex * gl_ModelViewProjectionMatrix;\n"
527 "//     //ModelViewProjectionPosition_svector = (gl_Vertex + vec4(gl_MultiTexCoord1.xyz, 0)) * gl_ModelViewProjectionMatrix - ModelViewProjectionPosition;\n"
528 "//     //ModelViewProjectionPosition_tvector = (gl_Vertex + vec4(gl_MultiTexCoord2.xyz, 0)) * gl_ModelViewProjectionMatrix - ModelViewProjectionPosition;\n"
529 "//#endif\n"
530 "\n"
531 "// transform vertex to camera space, using ftransform to match non-VS\n"
532 "       // rendering\n"
533 "       gl_Position = ftransform();\n"
534 "\n"
535 "#ifdef MODE_WATER\n"
536 "       ModelViewProjectionPosition = gl_Position;\n"
537 "#endif\n"
538 "#ifdef MODE_REFRACTION\n"
539 "       ModelViewProjectionPosition = gl_Position;\n"
540 "#endif\n"
541 "#ifdef USEREFLECTION\n"
542 "       ModelViewProjectionPosition = gl_Position;\n"
543 "#endif\n"
544 "}\n"
545 "\n"
546 "#endif // VERTEX_SHADER\n"
547 "\n"
548 "\n"
549 "\n"
550 "\n"
551 "// fragment shader specific:\n"
552 "#ifdef FRAGMENT_SHADER\n"
553 "\n"
554 "// 13 textures, we can only use up to 16 on DX9-class hardware\n"
555 "uniform sampler2D Texture_Normal;\n"
556 "uniform sampler2D Texture_Color;\n"
557 "uniform sampler2D Texture_Gloss;\n"
558 "uniform samplerCube Texture_Cube;\n"
559 "uniform sampler2D Texture_Attenuation;\n"
560 "uniform sampler2D Texture_FogMask;\n"
561 "uniform sampler2D Texture_Pants;\n"
562 "uniform sampler2D Texture_Shirt;\n"
563 "uniform sampler2D Texture_Lightmap;\n"
564 "uniform sampler2D Texture_Deluxemap;\n"
565 "uniform sampler2D Texture_Glow;\n"
566 "uniform sampler2D Texture_Reflection;\n"
567 "uniform sampler2D Texture_Refraction;\n"
568 "\n"
569 "uniform myhvec3 LightColor;\n"
570 "uniform myhvec3 AmbientColor;\n"
571 "uniform myhvec3 DiffuseColor;\n"
572 "uniform myhvec3 SpecularColor;\n"
573 "uniform myhvec3 Color_Pants;\n"
574 "uniform myhvec3 Color_Shirt;\n"
575 "uniform myhvec3 FogColor;\n"
576 "\n"
577 "//#ifdef MODE_WATER\n"
578 "uniform vec4 DistortScaleRefractReflect;\n"
579 "uniform vec4 ScreenScaleRefractReflect;\n"
580 "uniform vec4 ScreenCenterRefractReflect;\n"
581 "uniform myhvec4 RefractColor;\n"
582 "uniform myhvec4 ReflectColor;\n"
583 "uniform myhalf ReflectFactor;\n"
584 "uniform myhalf ReflectOffset;\n"
585 "//#else\n"
586 "//# ifdef MODE_REFRACTION\n"
587 "//uniform vec4 DistortScaleRefractReflect;\n"
588 "//uniform vec4 ScreenScaleRefractReflect;\n"
589 "//uniform vec4 ScreenCenterRefractReflect;\n"
590 "//uniform myhvec4 RefractColor;\n"
591 "//#  ifdef USEREFLECTION\n"
592 "//uniform myhvec4 ReflectColor;\n"
593 "//#  endif\n"
594 "//# else\n"
595 "//#  ifdef USEREFLECTION\n"
596 "//uniform vec4 DistortScaleRefractReflect;\n"
597 "//uniform vec4 ScreenScaleRefractReflect;\n"
598 "//uniform vec4 ScreenCenterRefractReflect;\n"
599 "//uniform myhvec4 ReflectColor;\n"
600 "//#  endif\n"
601 "//# endif\n"
602 "//#endif\n"
603 "\n"
604 "uniform myhalf GlowScale;\n"
605 "uniform myhalf SceneBrightness;\n"
606 "#ifdef USECONTRASTBOOST\n"
607 "uniform myhalf ContrastBoostCoeff;\n"
608 "#endif\n"
609 "\n"
610 "uniform float OffsetMapping_Scale;\n"
611 "uniform float OffsetMapping_Bias;\n"
612 "uniform float FogRangeRecip;\n"
613 "uniform float FogStart;\n"
614 "uniform float FogLength;\n"
615 "\n"
616 "uniform myhalf AmbientScale;\n"
617 "uniform myhalf DiffuseScale;\n"
618 "uniform myhalf SpecularScale;\n"
619 "uniform myhalf SpecularPower;\n"
620 "\n"
621 "#ifdef USEOFFSETMAPPING\n"
622 "vec2 OffsetMapping(vec2 TexCoord)\n"
623 "{\n"
624 "#ifdef USEOFFSETMAPPING_RELIEFMAPPING\n"
625 "       // 14 sample relief mapping: linear search and then binary search\n"
626 "       // this basically steps forward a small amount repeatedly until it finds\n"
627 "       // itself inside solid, then jitters forward and back using decreasing\n"
628 "       // amounts to find the impact\n"
629 "       //vec3 OffsetVector = vec3(EyeVector.xy * ((1.0 / EyeVector.z) * OffsetMapping_Scale) * vec2(-1, 1), -1);\n"
630 "       //vec3 OffsetVector = vec3(normalize(EyeVector.xy) * OffsetMapping_Scale * vec2(-1, 1), -1);\n"
631 "       vec3 OffsetVector = vec3(normalize(EyeVector).xy * OffsetMapping_Scale * vec2(-1, 1), -1);\n"
632 "       vec3 RT = vec3(TexCoord, 1);\n"
633 "       OffsetVector *= 0.1;\n"
634 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
635 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
636 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
637 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
638 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
639 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
640 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
641 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
642 "       RT += OffsetVector *  step(texture2D(Texture_Normal, RT.xy).a, RT.z);\n"
643 "       RT += OffsetVector * (step(texture2D(Texture_Normal, RT.xy).a, RT.z)          - 0.5);\n"
644 "       RT += OffsetVector * (step(texture2D(Texture_Normal, RT.xy).a, RT.z) * 0.5    - 0.25);\n"
645 "       RT += OffsetVector * (step(texture2D(Texture_Normal, RT.xy).a, RT.z) * 0.25   - 0.125);\n"
646 "       RT += OffsetVector * (step(texture2D(Texture_Normal, RT.xy).a, RT.z) * 0.125  - 0.0625);\n"
647 "       RT += OffsetVector * (step(texture2D(Texture_Normal, RT.xy).a, RT.z) * 0.0625 - 0.03125);\n"
648 "       return RT.xy;\n"
649 "#else\n"
650 "       // 3 sample offset mapping (only 3 samples because of ATI Radeon 9500-9800/X300 limits)\n"
651 "       // this basically moves forward the full distance, and then backs up based\n"
652 "       // on height of samples\n"
653 "       //vec2 OffsetVector = vec2(EyeVector.xy * ((1.0 / EyeVector.z) * OffsetMapping_Scale) * vec2(-1, 1));\n"
654 "       //vec2 OffsetVector = vec2(normalize(EyeVector.xy) * OffsetMapping_Scale * vec2(-1, 1));\n"
655 "       vec2 OffsetVector = vec2(normalize(EyeVector).xy * OffsetMapping_Scale * vec2(-1, 1));\n"
656 "       TexCoord += OffsetVector;\n"
657 "       OffsetVector *= 0.333;\n"
658 "       TexCoord -= OffsetVector * texture2D(Texture_Normal, TexCoord).a;\n"
659 "       TexCoord -= OffsetVector * texture2D(Texture_Normal, TexCoord).a;\n"
660 "       TexCoord -= OffsetVector * texture2D(Texture_Normal, TexCoord).a;\n"
661 "       return TexCoord;\n"
662 "#endif\n"
663 "}\n"
664 "#endif // USEOFFSETMAPPING\n"
665 "\n"
666 "#ifdef MODE_WATER\n"
667 "\n"
668 "// water pass\n"
669 "void main(void)\n"
670 "{\n"
671 "#ifdef USEOFFSETMAPPING\n"
672 "       // apply offsetmapping\n"
673 "       vec2 TexCoordOffset = OffsetMapping(TexCoord);\n"
674 "#define TexCoord TexCoordOffset\n"
675 "#endif\n"
676 "\n"
677 "       vec4 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect * (1.0 / ModelViewProjectionPosition.w);\n"
678 "       //vec4 ScreenTexCoord = (ModelViewProjectionPosition.xyxy + normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5)).xyxy * DistortScaleRefractReflect * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
679 "       vec4 ScreenTexCoord = ModelViewProjectionPosition.xyxy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect + vec2(normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5))).xyxy * DistortScaleRefractReflect;\n"
680 "       float Fresnel = pow(min(1.0, 1.0 - float(normalize(EyeVector).z)), 5.0) * ReflectFactor + ReflectOffset;\n"
681 "       gl_FragColor = mix(texture2D(Texture_Refraction, ScreenTexCoord.xy) * RefractColor, texture2D(Texture_Reflection, ScreenTexCoord.zw) * ReflectColor, Fresnel);\n"
682 "}\n"
683 "\n"
684 "#else // MODE_WATER\n"
685 "#ifdef MODE_REFRACTION\n"
686 "\n"
687 "// refraction pass\n"
688 "void main(void)\n"
689 "{\n"
690 "#ifdef USEOFFSETMAPPING\n"
691 "       // apply offsetmapping\n"
692 "       vec2 TexCoordOffset = OffsetMapping(TexCoord);\n"
693 "#define TexCoord TexCoordOffset\n"
694 "#endif\n"
695 "\n"
696 "       vec2 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect.xy * (1.0 / ModelViewProjectionPosition.w);\n"
697 "       //vec2 ScreenTexCoord = (ModelViewProjectionPosition.xy + normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5)).xy * DistortScaleRefractReflect.xy * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect.xy;\n"
698 "       vec2 ScreenTexCoord = ModelViewProjectionPosition.xy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect.xy + vec2(normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5))).xy * DistortScaleRefractReflect.xy;\n"
699 "       gl_FragColor = texture2D(Texture_Refraction, ScreenTexCoord) * RefractColor;\n"
700 "}\n"
701 "\n"
702 "#else // MODE_REFRACTION\n"
703 "void main(void)\n"
704 "{\n"
705 "#ifdef USEOFFSETMAPPING\n"
706 "       // apply offsetmapping\n"
707 "       vec2 TexCoordOffset = OffsetMapping(TexCoord);\n"
708 "#define TexCoord TexCoordOffset\n"
709 "#endif\n"
710 "\n"
711 "       // combine the diffuse textures (base, pants, shirt)\n"
712 "       myhvec4 color = myhvec4(texture2D(Texture_Color, TexCoord));\n"
713 "#ifdef USECOLORMAPPING\n"
714 "       color.rgb += myhvec3(texture2D(Texture_Pants, TexCoord)) * Color_Pants + myhvec3(texture2D(Texture_Shirt, TexCoord)) * Color_Shirt;\n"
715 "#endif\n"
716 "\n"
717 "\n"
718 "\n"
719 "\n"
720 "#ifdef MODE_LIGHTSOURCE\n"
721 "       // light source\n"
722 "\n"
723 "       // calculate surface normal, light normal, and specular normal\n"
724 "       // compute color intensity for the two textures (colormap and glossmap)\n"
725 "       // scale by light color and attenuation as efficiently as possible\n"
726 "       // (do as much scalar math as possible rather than vector math)\n"
727 "# ifdef USESPECULAR\n"
728 "       myhvec3 surfacenormal = normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5));\n"
729 "       myhvec3 diffusenormal = myhvec3(normalize(LightVector));\n"
730 "       myhvec3 specularnormal = normalize(diffusenormal + myhvec3(normalize(EyeVector)));\n"
731 "\n"
732 "       // calculate directional shading\n"
733 "       color.rgb = LightColor * myhalf(texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0))) * (color.rgb * (AmbientScale + DiffuseScale * myhalf(max(float(dot(surfacenormal, diffusenormal)), 0.0))) + (SpecularScale * pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower)) * myhvec3(texture2D(Texture_Gloss, TexCoord)));\n"
734 "# else\n"
735 "#  ifdef USEDIFFUSE\n"
736 "       myhvec3 surfacenormal = normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5));\n"
737 "       myhvec3 diffusenormal = myhvec3(normalize(LightVector));\n"
738 "\n"
739 "       // calculate directional shading\n"
740 "       color.rgb = color.rgb * LightColor * (myhalf(texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0))) * (AmbientScale + DiffuseScale * myhalf(max(float(dot(surfacenormal, diffusenormal)), 0.0))));\n"
741 "#  else\n"
742 "       // calculate directionless shading\n"
743 "       color.rgb = color.rgb * LightColor * myhalf(texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0)));\n"
744 "#  endif\n"
745 "# endif\n"
746 "\n"
747 "# ifdef USECUBEFILTER\n"
748 "       // apply light cubemap filter\n"
749 "       //color.rgb *= normalize(CubeVector) * 0.5 + 0.5;//vec3(textureCube(Texture_Cube, CubeVector));\n"
750 "       color.rgb *= myhvec3(textureCube(Texture_Cube, CubeVector));\n"
751 "# endif\n"
752 "       color *= myhvec4(gl_Color);\n"
753 "#endif // MODE_LIGHTSOURCE\n"
754 "\n"
755 "\n"
756 "\n"
757 "\n"
758 "#ifdef MODE_LIGHTDIRECTION\n"
759 "       // directional model lighting\n"
760 "# ifdef USESPECULAR\n"
761 "       // get the surface normal and light normal\n"
762 "       myhvec3 surfacenormal = normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5));\n"
763 "       myhvec3 diffusenormal = myhvec3(LightVector);\n"
764 "\n"
765 "       // calculate directional shading\n"
766 "       color.rgb *= AmbientColor + DiffuseColor * myhalf(max(float(dot(surfacenormal, diffusenormal)), 0.0));\n"
767 "       myhvec3 specularnormal = normalize(diffusenormal + myhvec3(normalize(EyeVector)));\n"
768 "       color.rgb += myhvec3(texture2D(Texture_Gloss, TexCoord)) * SpecularColor * pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower);\n"
769 "# else\n"
770 "#  ifdef USEDIFFUSE\n"
771 "       // get the surface normal and light normal\n"
772 "       myhvec3 surfacenormal = normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5));\n"
773 "       myhvec3 diffusenormal = myhvec3(LightVector);\n"
774 "\n"
775 "       // calculate directional shading\n"
776 "       color.rgb *= AmbientColor + DiffuseColor * myhalf(max(float(dot(surfacenormal, diffusenormal)), 0.0));\n"
777 "#  else\n"
778 "       color.rgb *= AmbientColor;\n"
779 "#  endif\n"
780 "# endif\n"
781 "\n"
782 "       color *= myhvec4(gl_Color);\n"
783 "#endif // MODE_LIGHTDIRECTION\n"
784 "\n"
785 "\n"
786 "\n"
787 "\n"
788 "#ifdef MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
789 "       // deluxemap lightmapping using light vectors in modelspace (evil q3map2)\n"
790 "\n"
791 "       // get the surface normal and light normal\n"
792 "       myhvec3 surfacenormal = normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5));\n"
793 "\n"
794 "       myhvec3 diffusenormal_modelspace = myhvec3(texture2D(Texture_Deluxemap, TexCoordLightmap)) - myhvec3(0.5);\n"
795 "       myhvec3 diffusenormal = normalize(myhvec3(dot(diffusenormal_modelspace, myhvec3(VectorS)), dot(diffusenormal_modelspace, myhvec3(VectorT)), dot(diffusenormal_modelspace, myhvec3(VectorR))));\n"
796 "       // calculate directional shading\n"
797 "       myhvec3 tempcolor = color.rgb * (DiffuseScale * myhalf(max(float(dot(surfacenormal, diffusenormal)), 0.0)));\n"
798 "# ifdef USESPECULAR\n"
799 "       myhvec3 specularnormal = myhvec3(normalize(diffusenormal + myhvec3(normalize(EyeVector))));\n"
800 "       tempcolor += myhvec3(texture2D(Texture_Gloss, TexCoord)) * SpecularScale * pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower);\n"
801 "# endif\n"
802 "\n"
803 "       // apply lightmap color\n"
804 "       color.rgb = color.rgb * AmbientScale + tempcolor * myhvec3(texture2D(Texture_Lightmap, TexCoordLightmap)) * myhvec3(gl_Color);\n"
805 "       color.a *= myhalf(gl_Color.a);\n"
806 "#endif // MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
807 "\n"
808 "\n"
809 "\n"
810 "\n"
811 "#ifdef MODE_LIGHTDIRECTIONMAP_TANGENTSPACE\n"
812 "       // deluxemap lightmapping using light vectors in tangentspace (hmap2 -light)\n"
813 "\n"
814 "       // get the surface normal and light normal\n"
815 "       myhvec3 surfacenormal = normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5));\n"
816 "\n"
817 "       myhvec3 diffusenormal = normalize(myhvec3(texture2D(Texture_Deluxemap, TexCoordLightmap)) - myhvec3(0.5));\n"
818 "       // calculate directional shading\n"
819 "       myhvec3 tempcolor = color.rgb * (DiffuseScale * myhalf(max(float(dot(surfacenormal, diffusenormal)), 0.0)));\n"
820 "# ifdef USESPECULAR\n"
821 "       myhvec3 specularnormal = myhvec3(normalize(diffusenormal + myhvec3(normalize(EyeVector))));\n"
822 "       tempcolor += myhvec3(texture2D(Texture_Gloss, TexCoord)) * SpecularScale * pow(myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), SpecularPower);\n"
823 "# endif\n"
824 "\n"
825 "       // apply lightmap color\n"
826 "       color.rgb = color.rgb * AmbientScale + tempcolor * myhvec3(texture2D(Texture_Lightmap, TexCoordLightmap)) * myhvec3(gl_Color);\n"
827 "       color.a *= myhalf(gl_Color.a);\n"
828 "#endif // MODE_LIGHTDIRECTIONMAP_TANGENTSPACE\n"
829 "\n"
830 "\n"
831 "\n"
832 "\n"
833 "#ifdef MODE_LIGHTMAP\n"
834 "       // apply lightmap color\n"
835 "       color *= myhvec4(texture2D(Texture_Lightmap, TexCoordLightmap)) * myhvec4(gl_Color) * myhvec4(myhvec3(DiffuseScale), 1) + myhvec4(myhvec3(AmbientScale), 0);\n"
836 "#endif // MODE_LIGHTMAP\n"
837 "\n"
838 "\n"
839 "\n"
840 "\n"
841 "\n"
842 "\n"
843 "\n"
844 "\n"
845 "#ifdef USEGLOW\n"
846 "       color.rgb += myhvec3(texture2D(Texture_Glow, TexCoord)) * GlowScale;\n"
847 "#endif\n"
848 "\n"
849 "#ifndef MODE_LIGHTSOURCE\n"
850 "# ifdef USEREFLECTION\n"
851 "       vec4 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect * (1.0 / ModelViewProjectionPosition.w);\n"
852 "       //vec4 ScreenTexCoord = (ModelViewProjectionPosition.xyxy + normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5)).xyxy * DistortScaleRefractReflect * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
853 "       vec4 ScreenTexCoord = ModelViewProjectionPosition.xyxy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect + vec3(normalize(myhvec3(texture2D(Texture_Normal, TexCoord)) - myhvec3(0.5))).xyxy * DistortScaleRefractReflect;\n"
854 "       color.rgb = mix(color.rgb, myhvec3(texture2D(Texture_Reflection, ScreenTexCoord.zw)) * ReflectColor.rgb, ReflectColor.a);\n"
855 "# endif\n"
856 "#endif\n"
857 "\n"
858 "#ifdef USECONTRASTBOOST\n"
859 "       color.rgb = color.rgb / (ContrastBoostCoeff * color.rgb + myhvec3(1, 1, 1));\n"
860 "#endif\n"
861 "\n"
862 "       color.rgb *= SceneBrightness;\n"
863 "\n"
864 "#ifdef USEFOG\n"
865 "       // apply fog\n"
866 "       color.rgb = mix(FogColor, color.rgb, myhalf(texture2D(Texture_FogMask, myhvec2(max(0.0, min(length(EyeVectorModelSpace) - FogStart, FogLength))*FogRangeRecip, 0.0))));\n"
867 //"      color.rgb = mix(FogColor, color.rgb, myhalf(texture2D(Texture_FogMask, myhvec2(length(EyeVectorModelSpace)*FogRangeRecip, 0.0))));\n"
868 "#endif\n"
869 "\n"
870 "       gl_FragColor = vec4(color);\n"
871 "}\n"
872 "#endif // MODE_REFRACTION\n"
873 "#endif // MODE_WATER\n"
874 "\n"
875 "#endif // FRAGMENT_SHADER\n"
876 ;
877
878 #define SHADERPERMUTATION_COLORMAPPING (1<<0) // indicates this is a colormapped skin
879 #define SHADERPERMUTATION_CONTRASTBOOST (1<<1) // r_glsl_contrastboost boosts the contrast at low color levels (similar to gamma)
880 #define SHADERPERMUTATION_FOG (1<<2) // tint the color by fog color or black if using additive blend mode
881 #define SHADERPERMUTATION_CUBEFILTER (1<<3) // (lightsource) use cubemap light filter
882 #define SHADERPERMUTATION_GLOW (1<<4) // (lightmap) blend in an additive glow texture
883 #define SHADERPERMUTATION_DIFFUSE (1<<5) // (lightsource) whether to use directional shading
884 #define SHADERPERMUTATION_SPECULAR (1<<6) // (lightsource or deluxemapping) render specular effects
885 #define SHADERPERMUTATION_REFLECTION (1<<7) // normalmap-perturbed reflection of the scene infront of the surface, preformed as an overlay on the surface
886 #define SHADERPERMUTATION_OFFSETMAPPING (1<<8) // adjust texcoords to roughly simulate a displacement mapped surface
887 #define SHADERPERMUTATION_OFFSETMAPPING_RELIEFMAPPING (1<<9) // adjust texcoords to accurately simulate a displacement mapped surface (requires OFFSETMAPPING to also be set!)
888 #define SHADERPERMUTATION_MODEBASE (1<<10) // multiplier for the SHADERMODE_ values to get a valid index
889
890 // NOTE: MUST MATCH ORDER OF SHADERPERMUTATION_* DEFINES!
891 const char *shaderpermutationinfo[][2] =
892 {
893         {"#define USECOLORMAPPING\n", " colormapping"},
894         {"#define USECONTRASTBOOST\n", " contrastboost"},
895         {"#define USEFOG\n", " fog"},
896         {"#define USECUBEFILTER\n", " cubefilter"},
897         {"#define USEGLOW\n", " glow"},
898         {"#define USEDIFFUSE\n", " diffuse"},
899         {"#define USESPECULAR\n", " specular"},
900         {"#define USEREFLECTION\n", " reflection"},
901         {"#define USEOFFSETMAPPING\n", " offsetmapping"},
902         {"#define USEOFFSETMAPPING_RELIEFMAPPING\n", " reliefmapping"},
903         {NULL, NULL}
904 };
905
906 // this enum is multiplied by SHADERPERMUTATION_MODEBASE
907 typedef enum shadermode_e
908 {
909         SHADERMODE_LIGHTMAP, // (lightmap) use directional pixel shading from fixed light direction (q3bsp)
910         SHADERMODE_LIGHTDIRECTIONMAP_MODELSPACE, // (lightmap) use directional pixel shading from texture containing modelspace light directions (deluxemap)
911         SHADERMODE_LIGHTDIRECTIONMAP_TANGENTSPACE, // (lightmap) use directional pixel shading from texture containing tangentspace light directions (deluxemap)
912         SHADERMODE_LIGHTDIRECTION, // (lightmap) use directional pixel shading from fixed light direction (q3bsp)
913         SHADERMODE_LIGHTSOURCE, // (lightsource) use directional pixel shading from light source (rtlight)
914         SHADERMODE_REFRACTION, // refract background (the material is rendered normally after this pass)
915         SHADERMODE_WATER, // refract background and reflection (the material is rendered normally after this pass)
916         SHADERMODE_COUNT
917 }
918 shadermode_t;
919
920 // NOTE: MUST MATCH ORDER OF SHADERMODE_* ENUMS!
921 const char *shadermodeinfo[][2] =
922 {
923         {"#define MODE_LIGHTMAP\n", " lightmap"},
924         {"#define MODE_LIGHTDIRECTIONMAP_MODELSPACE\n", " lightdirectionmap_modelspace"},
925         {"#define MODE_LIGHTDIRECTIONMAP_TANGENTSPACE\n", " lightdirectionmap_tangentspace"},
926         {"#define MODE_LIGHTDIRECTION\n", " lightdirection"},
927         {"#define MODE_LIGHTSOURCE\n", " lightsource"},
928         {"#define MODE_REFRACTION\n", " refraction"},
929         {"#define MODE_WATER\n", " water"},
930         {NULL, NULL}
931 };
932
933 #define SHADERPERMUTATION_INDICES (SHADERPERMUTATION_MODEBASE * SHADERMODE_COUNT)
934
935 typedef struct r_glsl_permutation_s
936 {
937         // indicates if we have tried compiling this permutation already
938         qboolean compiled;
939         // 0 if compilation failed
940         int program;
941         // locations of detected uniforms in program object, or -1 if not found
942         int loc_Texture_Normal;
943         int loc_Texture_Color;
944         int loc_Texture_Gloss;
945         int loc_Texture_Cube;
946         int loc_Texture_Attenuation;
947         int loc_Texture_FogMask;
948         int loc_Texture_Pants;
949         int loc_Texture_Shirt;
950         int loc_Texture_Lightmap;
951         int loc_Texture_Deluxemap;
952         int loc_Texture_Glow;
953         int loc_Texture_Refraction;
954         int loc_Texture_Reflection;
955         int loc_FogColor;
956         int loc_LightPosition;
957         int loc_EyePosition;
958         int loc_LightColor;
959         int loc_Color_Pants;
960         int loc_Color_Shirt;
961         int loc_FogRangeRecip;
962         int loc_FogStart;
963         int loc_FogLength;
964         int loc_AmbientScale;
965         int loc_DiffuseScale;
966         int loc_SpecularScale;
967         int loc_SpecularPower;
968         int loc_GlowScale;
969         int loc_SceneBrightness; // or: Scenebrightness * ContrastBoost
970         int loc_OffsetMapping_Scale;
971         int loc_AmbientColor;
972         int loc_DiffuseColor;
973         int loc_SpecularColor;
974         int loc_LightDir;
975         int loc_ContrastBoostCoeff; // 1 - 1/ContrastBoost
976         int loc_DistortScaleRefractReflect;
977         int loc_ScreenScaleRefractReflect;
978         int loc_ScreenCenterRefractReflect;
979         int loc_RefractColor;
980         int loc_ReflectColor;
981         int loc_ReflectFactor;
982         int loc_ReflectOffset;
983 }
984 r_glsl_permutation_t;
985
986 // information about each possible shader permutation
987 r_glsl_permutation_t r_glsl_permutations[SHADERPERMUTATION_INDICES];
988 // currently selected permutation
989 r_glsl_permutation_t *r_glsl_permutation;
990
991 // these are additional flags used only by R_GLSL_CompilePermutation
992 #define SHADERTYPE_USES_VERTEXSHADER (1<<0)
993 #define SHADERTYPE_USES_GEOMETRYSHADER (1<<1)
994 #define SHADERTYPE_USES_FRAGMENTSHADER (1<<2)
995
996 static void R_GLSL_CompilePermutation(const char *filename, int permutation, int shadertype)
997 {
998         int i;
999         qboolean shaderfound;
1000         r_glsl_permutation_t *p = r_glsl_permutations + permutation;
1001         int vertstrings_count;
1002         int geomstrings_count;
1003         int fragstrings_count;
1004         char *shaderstring;
1005         const char *vertstrings_list[32+1];
1006         const char *geomstrings_list[32+1];
1007         const char *fragstrings_list[32+1];
1008         char permutationname[256];
1009         if (p->compiled)
1010                 return;
1011         p->compiled = true;
1012         p->program = 0;
1013         vertstrings_list[0] = "#define VERTEX_SHADER\n";
1014         geomstrings_list[0] = "#define GEOMETRY_SHADER\n";
1015         fragstrings_list[0] = "#define FRAGMENT_SHADER\n";
1016         vertstrings_count = 1;
1017         geomstrings_count = 1;
1018         fragstrings_count = 1;
1019         permutationname[0] = 0;
1020         i = permutation / SHADERPERMUTATION_MODEBASE;
1021         vertstrings_list[vertstrings_count++] = shadermodeinfo[i][0];
1022         geomstrings_list[geomstrings_count++] = shadermodeinfo[i][0];
1023         fragstrings_list[fragstrings_count++] = shadermodeinfo[i][0];
1024         strlcat(permutationname, shadermodeinfo[i][1], sizeof(permutationname));
1025         for (i = 0;shaderpermutationinfo[i][0];i++)
1026         {
1027                 if (permutation & (1<<i))
1028                 {
1029                         vertstrings_list[vertstrings_count++] = shaderpermutationinfo[i][0];
1030                         geomstrings_list[geomstrings_count++] = shaderpermutationinfo[i][0];
1031                         fragstrings_list[fragstrings_count++] = shaderpermutationinfo[i][0];
1032                         strlcat(permutationname, shaderpermutationinfo[i][1], sizeof(permutationname));
1033                 }
1034                 else
1035                 {
1036                         // keep line numbers correct
1037                         vertstrings_list[vertstrings_count++] = "\n";
1038                         geomstrings_list[geomstrings_count++] = "\n";
1039                         fragstrings_list[fragstrings_count++] = "\n";
1040                 }
1041         }
1042         shaderstring = (char *)FS_LoadFile(filename, r_main_mempool, false, NULL);
1043         shaderfound = false;
1044         if (shaderstring)
1045         {
1046                 Con_DPrint("from disk... ");
1047                 vertstrings_list[vertstrings_count++] = shaderstring;
1048                 geomstrings_list[geomstrings_count++] = shaderstring;
1049                 fragstrings_list[fragstrings_count++] = shaderstring;
1050                 shaderfound = true;
1051         }
1052         else if (!strcmp(filename, "glsl/default.glsl"))
1053         {
1054                 vertstrings_list[vertstrings_count++] = builtinshaderstring;
1055                 geomstrings_list[geomstrings_count++] = builtinshaderstring;
1056                 fragstrings_list[fragstrings_count++] = builtinshaderstring;
1057                 shaderfound = true;
1058         }
1059         // clear any lists that are not needed by this shader
1060         if (!(shadertype & SHADERTYPE_USES_VERTEXSHADER))
1061                 vertstrings_count = 0;
1062         if (!(shadertype & SHADERTYPE_USES_GEOMETRYSHADER))
1063                 geomstrings_count = 0;
1064         if (!(shadertype & SHADERTYPE_USES_FRAGMENTSHADER))
1065                 fragstrings_count = 0;
1066         // compile the shader program
1067         if (shaderfound && vertstrings_count + geomstrings_count + fragstrings_count)
1068                 p->program = GL_Backend_CompileProgram(vertstrings_count, vertstrings_list, geomstrings_count, geomstrings_list, fragstrings_count, fragstrings_list);
1069         if (p->program)
1070         {
1071                 CHECKGLERROR
1072                 qglUseProgramObjectARB(p->program);CHECKGLERROR
1073                 // look up all the uniform variable names we care about, so we don't
1074                 // have to look them up every time we set them
1075                 p->loc_Texture_Normal      = qglGetUniformLocationARB(p->program, "Texture_Normal");
1076                 p->loc_Texture_Color       = qglGetUniformLocationARB(p->program, "Texture_Color");
1077                 p->loc_Texture_Gloss       = qglGetUniformLocationARB(p->program, "Texture_Gloss");
1078                 p->loc_Texture_Cube        = qglGetUniformLocationARB(p->program, "Texture_Cube");
1079                 p->loc_Texture_Attenuation = qglGetUniformLocationARB(p->program, "Texture_Attenuation");
1080                 p->loc_Texture_FogMask     = qglGetUniformLocationARB(p->program, "Texture_FogMask");
1081                 p->loc_Texture_Pants       = qglGetUniformLocationARB(p->program, "Texture_Pants");
1082                 p->loc_Texture_Shirt       = qglGetUniformLocationARB(p->program, "Texture_Shirt");
1083                 p->loc_Texture_Lightmap    = qglGetUniformLocationARB(p->program, "Texture_Lightmap");
1084                 p->loc_Texture_Deluxemap   = qglGetUniformLocationARB(p->program, "Texture_Deluxemap");
1085                 p->loc_Texture_Glow        = qglGetUniformLocationARB(p->program, "Texture_Glow");
1086                 p->loc_Texture_Refraction  = qglGetUniformLocationARB(p->program, "Texture_Refraction");
1087                 p->loc_Texture_Reflection  = qglGetUniformLocationARB(p->program, "Texture_Reflection");
1088                 p->loc_FogColor            = qglGetUniformLocationARB(p->program, "FogColor");
1089                 p->loc_LightPosition       = qglGetUniformLocationARB(p->program, "LightPosition");
1090                 p->loc_EyePosition         = qglGetUniformLocationARB(p->program, "EyePosition");
1091                 p->loc_LightColor          = qglGetUniformLocationARB(p->program, "LightColor");
1092                 p->loc_Color_Pants         = qglGetUniformLocationARB(p->program, "Color_Pants");
1093                 p->loc_Color_Shirt         = qglGetUniformLocationARB(p->program, "Color_Shirt");
1094                 p->loc_FogRangeRecip       = qglGetUniformLocationARB(p->program, "FogRangeRecip");
1095                 p->loc_FogStart            = qglGetUniformLocationARB(p->program, "FogStart");
1096                 p->loc_FogLength           = qglGetUniformLocationARB(p->program, "FogLength");
1097                 p->loc_AmbientScale        = qglGetUniformLocationARB(p->program, "AmbientScale");
1098                 p->loc_DiffuseScale        = qglGetUniformLocationARB(p->program, "DiffuseScale");
1099                 p->loc_SpecularPower       = qglGetUniformLocationARB(p->program, "SpecularPower");
1100                 p->loc_SpecularScale       = qglGetUniformLocationARB(p->program, "SpecularScale");
1101                 p->loc_GlowScale           = qglGetUniformLocationARB(p->program, "GlowScale");
1102                 p->loc_SceneBrightness     = qglGetUniformLocationARB(p->program, "SceneBrightness");
1103                 p->loc_OffsetMapping_Scale = qglGetUniformLocationARB(p->program, "OffsetMapping_Scale");
1104                 p->loc_AmbientColor        = qglGetUniformLocationARB(p->program, "AmbientColor");
1105                 p->loc_DiffuseColor        = qglGetUniformLocationARB(p->program, "DiffuseColor");
1106                 p->loc_SpecularColor       = qglGetUniformLocationARB(p->program, "SpecularColor");
1107                 p->loc_LightDir            = qglGetUniformLocationARB(p->program, "LightDir");
1108                 p->loc_ContrastBoostCoeff  = qglGetUniformLocationARB(p->program, "ContrastBoostCoeff");
1109                 p->loc_DistortScaleRefractReflect = qglGetUniformLocationARB(p->program, "DistortScaleRefractReflect");
1110                 p->loc_ScreenScaleRefractReflect = qglGetUniformLocationARB(p->program, "ScreenScaleRefractReflect");
1111                 p->loc_ScreenCenterRefractReflect = qglGetUniformLocationARB(p->program, "ScreenCenterRefractReflect");
1112                 p->loc_RefractColor        = qglGetUniformLocationARB(p->program, "RefractColor");
1113                 p->loc_ReflectColor        = qglGetUniformLocationARB(p->program, "ReflectColor");
1114                 p->loc_ReflectFactor       = qglGetUniformLocationARB(p->program, "ReflectFactor");
1115                 p->loc_ReflectOffset       = qglGetUniformLocationARB(p->program, "ReflectOffset");
1116                 // initialize the samplers to refer to the texture units we use
1117                 if (p->loc_Texture_Normal >= 0)    qglUniform1iARB(p->loc_Texture_Normal, 0);
1118                 if (p->loc_Texture_Color >= 0)     qglUniform1iARB(p->loc_Texture_Color, 1);
1119                 if (p->loc_Texture_Gloss >= 0)     qglUniform1iARB(p->loc_Texture_Gloss, 2);
1120                 if (p->loc_Texture_Cube >= 0)      qglUniform1iARB(p->loc_Texture_Cube, 3);
1121                 if (p->loc_Texture_FogMask >= 0)   qglUniform1iARB(p->loc_Texture_FogMask, 4);
1122                 if (p->loc_Texture_Pants >= 0)     qglUniform1iARB(p->loc_Texture_Pants, 5);
1123                 if (p->loc_Texture_Shirt >= 0)     qglUniform1iARB(p->loc_Texture_Shirt, 6);
1124                 if (p->loc_Texture_Lightmap >= 0)  qglUniform1iARB(p->loc_Texture_Lightmap, 7);
1125                 if (p->loc_Texture_Deluxemap >= 0) qglUniform1iARB(p->loc_Texture_Deluxemap, 8);
1126                 if (p->loc_Texture_Glow >= 0)      qglUniform1iARB(p->loc_Texture_Glow, 9);
1127                 if (p->loc_Texture_Attenuation >= 0) qglUniform1iARB(p->loc_Texture_Attenuation, 10);
1128                 if (p->loc_Texture_Refraction >= 0) qglUniform1iARB(p->loc_Texture_Refraction, 11);
1129                 if (p->loc_Texture_Reflection >= 0) qglUniform1iARB(p->loc_Texture_Reflection, 12);
1130                 CHECKGLERROR
1131                 qglUseProgramObjectARB(0);CHECKGLERROR
1132                 if (developer.integer)
1133                         Con_Printf("GLSL shader %s :%s compiled.\n", filename, permutationname);
1134         }
1135         else
1136         {
1137                 if (developer.integer)
1138                         Con_Printf("GLSL shader %s :%s failed!  source code line offset for above errors is %i.\n", permutationname, filename, -(vertstrings_count - 1));
1139                 else
1140                         Con_Printf("GLSL shader %s :%s failed!  some features may not work properly.\n", permutationname, filename);
1141         }
1142         if (shaderstring)
1143                 Mem_Free(shaderstring);
1144 }
1145
1146 void R_GLSL_Restart_f(void)
1147 {
1148         int i;
1149         for (i = 0;i < SHADERPERMUTATION_INDICES;i++)
1150                 if (r_glsl_permutations[i].program)
1151                         GL_Backend_FreeProgram(r_glsl_permutations[i].program);
1152         memset(r_glsl_permutations, 0, sizeof(r_glsl_permutations));
1153 }
1154
1155 void R_GLSL_DumpShader_f(void)
1156 {
1157         int i;
1158
1159         qfile_t *file = FS_Open("glsl/default.glsl", "w", false, false);
1160         if(!file)
1161         {
1162                 Con_Printf("failed to write to glsl/default.glsl\n");
1163                 return;
1164         }
1165
1166         FS_Print(file, "// The engine may define the following macros:\n");
1167         FS_Print(file, "// #define VERTEX_SHADER\n// #define GEOMETRY_SHADER\n// #define FRAGMENT_SHADER\n");
1168         for (i = 0;shadermodeinfo[i][0];i++)
1169                 FS_Printf(file, "// %s", shadermodeinfo[i][0]);
1170         for (i = 0;shaderpermutationinfo[i][0];i++)
1171                 FS_Printf(file, "// %s", shaderpermutationinfo[i][0]);
1172         FS_Print(file, "\n");
1173         FS_Print(file, builtinshaderstring);
1174         FS_Close(file);
1175
1176         Con_Printf("glsl/default.glsl written\n");
1177 }
1178
1179 extern rtexture_t *r_shadow_attenuationgradienttexture;
1180 extern rtexture_t *r_shadow_attenuation2dtexture;
1181 extern rtexture_t *r_shadow_attenuation3dtexture;
1182 int R_SetupSurfaceShader(const vec3_t lightcolorbase, qboolean modellighting, float ambientscale, float diffusescale, float specularscale, rsurfacepass_t rsurfacepass)
1183 {
1184         // select a permutation of the lighting shader appropriate to this
1185         // combination of texture, entity, light source, and fogging, only use the
1186         // minimum features necessary to avoid wasting rendering time in the
1187         // fragment shader on features that are not being used
1188         const char *shaderfilename = NULL;
1189         unsigned int permutation = 0;
1190         unsigned int shadertype = 0;
1191         shadermode_t mode = 0;
1192         r_glsl_permutation = NULL;
1193         shaderfilename = "glsl/default.glsl";
1194         shadertype = SHADERTYPE_USES_VERTEXSHADER | SHADERTYPE_USES_FRAGMENTSHADER;
1195         // TODO: implement geometry-shader based shadow volumes someday
1196         if (r_glsl_offsetmapping.integer)
1197         {
1198                 permutation |= SHADERPERMUTATION_OFFSETMAPPING;
1199                 if (r_glsl_offsetmapping_reliefmapping.integer)
1200                         permutation |= SHADERPERMUTATION_OFFSETMAPPING_RELIEFMAPPING;
1201         }
1202         if (rsurfacepass == RSURFPASS_BACKGROUND)
1203         {
1204                 // distorted background
1205                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_WATERSHADER)
1206                         mode = SHADERMODE_WATER;
1207                 else
1208                         mode = SHADERMODE_REFRACTION;
1209         }
1210         else if (rsurfacepass == RSURFPASS_RTLIGHT)
1211         {
1212                 // light source
1213                 mode = SHADERMODE_LIGHTSOURCE;
1214                 if (rsurface.rtlight->currentcubemap != r_texture_whitecube)
1215                         permutation |= SHADERPERMUTATION_CUBEFILTER;
1216                 if (diffusescale > 0)
1217                         permutation |= SHADERPERMUTATION_DIFFUSE;
1218                 if (specularscale > 0)
1219                         permutation |= SHADERPERMUTATION_SPECULAR | SHADERPERMUTATION_DIFFUSE;
1220                 if (r_refdef.fogenabled)
1221                         permutation |= SHADERPERMUTATION_FOG;
1222                 if (rsurface.texture->colormapping)
1223                         permutation |= SHADERPERMUTATION_COLORMAPPING;
1224                 if(r_glsl_contrastboost.value > 1 || r_glsl_contrastboost.value < 0)
1225                         permutation |= SHADERPERMUTATION_CONTRASTBOOST;
1226                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_REFLECTION)
1227                         permutation |= SHADERPERMUTATION_REFLECTION;
1228         }
1229         else if (rsurface.texture->currentmaterialflags & MATERIALFLAG_FULLBRIGHT)
1230         {
1231                 // unshaded geometry (fullbright or ambient model lighting)
1232                 mode = SHADERMODE_LIGHTMAP;
1233                 if (rsurface.texture->currentskinframe->glow)
1234                         permutation |= SHADERPERMUTATION_GLOW;
1235                 if (r_refdef.fogenabled)
1236                         permutation |= SHADERPERMUTATION_FOG;
1237                 if (rsurface.texture->colormapping)
1238                         permutation |= SHADERPERMUTATION_COLORMAPPING;
1239                 if (r_glsl_offsetmapping.integer)
1240                 {
1241                         permutation |= SHADERPERMUTATION_OFFSETMAPPING;
1242                         if (r_glsl_offsetmapping_reliefmapping.integer)
1243                                 permutation |= SHADERPERMUTATION_OFFSETMAPPING_RELIEFMAPPING;
1244                 }
1245                 if(r_glsl_contrastboost.value > 1 || r_glsl_contrastboost.value < 0)
1246                         permutation |= SHADERPERMUTATION_CONTRASTBOOST;
1247                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_REFLECTION)
1248                         permutation |= SHADERPERMUTATION_REFLECTION;
1249         }
1250         else if (rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT_DIRECTIONAL)
1251         {
1252                 // directional model lighting
1253                 mode = SHADERMODE_LIGHTDIRECTION;
1254                 if (rsurface.texture->currentskinframe->glow)
1255                         permutation |= SHADERPERMUTATION_GLOW;
1256                 permutation |= SHADERPERMUTATION_DIFFUSE;
1257                 if (specularscale > 0)
1258                         permutation |= SHADERPERMUTATION_SPECULAR;
1259                 if (r_refdef.fogenabled)
1260                         permutation |= SHADERPERMUTATION_FOG;
1261                 if (rsurface.texture->colormapping)
1262                         permutation |= SHADERPERMUTATION_COLORMAPPING;
1263                 if(r_glsl_contrastboost.value > 1 || r_glsl_contrastboost.value < 0)
1264                         permutation |= SHADERPERMUTATION_CONTRASTBOOST;
1265                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_REFLECTION)
1266                         permutation |= SHADERPERMUTATION_REFLECTION;
1267         }
1268         else if (rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT)
1269         {
1270                 // ambient model lighting
1271                 mode = SHADERMODE_LIGHTDIRECTION;
1272                 if (rsurface.texture->currentskinframe->glow)
1273                         permutation |= SHADERPERMUTATION_GLOW;
1274                 if (r_refdef.fogenabled)
1275                         permutation |= SHADERPERMUTATION_FOG;
1276                 if (rsurface.texture->colormapping)
1277                         permutation |= SHADERPERMUTATION_COLORMAPPING;
1278                 if(r_glsl_contrastboost.value > 1 || r_glsl_contrastboost.value < 0)
1279                         permutation |= SHADERPERMUTATION_CONTRASTBOOST;
1280                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_REFLECTION)
1281                         permutation |= SHADERPERMUTATION_REFLECTION;
1282         }
1283         else
1284         {
1285                 // lightmapped wall
1286                 if (r_glsl_deluxemapping.integer >= 1 && rsurface.uselightmaptexture && r_refdef.worldmodel && r_refdef.worldmodel->brushq3.deluxemapping)
1287                 {
1288                         // deluxemapping (light direction texture)
1289                         if (rsurface.uselightmaptexture && r_refdef.worldmodel && r_refdef.worldmodel->brushq3.deluxemapping && r_refdef.worldmodel->brushq3.deluxemapping_modelspace)
1290                                 mode = SHADERMODE_LIGHTDIRECTIONMAP_MODELSPACE;
1291                         else
1292                                 mode = SHADERMODE_LIGHTDIRECTIONMAP_TANGENTSPACE;
1293                         if (specularscale > 0)
1294                                 permutation |= SHADERPERMUTATION_SPECULAR | SHADERPERMUTATION_DIFFUSE;
1295                 }
1296                 else if (r_glsl_deluxemapping.integer >= 2)
1297                 {
1298                         // fake deluxemapping (uniform light direction in tangentspace)
1299                         mode = SHADERMODE_LIGHTDIRECTIONMAP_TANGENTSPACE;
1300                         if (specularscale > 0)
1301                                 permutation |= SHADERPERMUTATION_SPECULAR | SHADERPERMUTATION_DIFFUSE;
1302                 }
1303                 else
1304                 {
1305                         // ordinary lightmapping
1306                         mode = SHADERMODE_LIGHTMAP;
1307                 }
1308                 if (rsurface.texture->currentskinframe->glow)
1309                         permutation |= SHADERPERMUTATION_GLOW;
1310                 if (r_refdef.fogenabled)
1311                         permutation |= SHADERPERMUTATION_FOG;
1312                 if (rsurface.texture->colormapping)
1313                         permutation |= SHADERPERMUTATION_COLORMAPPING;
1314                 if(r_glsl_contrastboost.value > 1 || r_glsl_contrastboost.value < 0)
1315                         permutation |= SHADERPERMUTATION_CONTRASTBOOST;
1316                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_REFLECTION)
1317                         permutation |= SHADERPERMUTATION_REFLECTION;
1318         }
1319         permutation |= mode * SHADERPERMUTATION_MODEBASE;
1320         if (!r_glsl_permutations[permutation].program)
1321         {
1322                 if (!r_glsl_permutations[permutation].compiled)
1323                         R_GLSL_CompilePermutation(shaderfilename, permutation, shadertype);
1324                 if (!r_glsl_permutations[permutation].program)
1325                 {
1326                         // remove features until we find a valid permutation
1327                         unsigned int i;
1328                         for (i = (SHADERPERMUTATION_MODEBASE >> 1);;i>>=1)
1329                         {
1330                                 if (!i)
1331                                 {
1332                                         Con_Printf("OpenGL 2.0 shaders disabled - unable to find a working shader permutation fallback on this driver (set r_glsl 1 if you want to try again)\n");
1333                                         Cvar_SetValueQuick(&r_glsl, 0);
1334                                         return 0; // no bit left to clear
1335                                 }
1336                                 // reduce i more quickly whenever it would not remove any bits
1337                                 if (!(permutation & i))
1338                                         continue;
1339                                 permutation &= ~i;
1340                                 if (!r_glsl_permutations[permutation].compiled)
1341                                         R_GLSL_CompilePermutation(shaderfilename, permutation, shadertype);
1342                                 if (r_glsl_permutations[permutation].program)
1343                                         break;
1344                         }
1345                 }
1346         }
1347         r_glsl_permutation = r_glsl_permutations + permutation;
1348         CHECKGLERROR
1349         qglUseProgramObjectARB(r_glsl_permutation->program);CHECKGLERROR
1350         if (mode == SHADERMODE_LIGHTSOURCE)
1351         {
1352                 if (r_glsl_permutation->loc_LightPosition >= 0) qglUniform3fARB(r_glsl_permutation->loc_LightPosition, rsurface.entitylightorigin[0], rsurface.entitylightorigin[1], rsurface.entitylightorigin[2]);
1353                 if (permutation & SHADERPERMUTATION_DIFFUSE)
1354                 {
1355                         if (r_glsl_permutation->loc_LightColor >= 0) qglUniform3fARB(r_glsl_permutation->loc_LightColor, lightcolorbase[0], lightcolorbase[1], lightcolorbase[2]);
1356                         if (r_glsl_permutation->loc_AmbientScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_AmbientScale, ambientscale);
1357                         if (r_glsl_permutation->loc_DiffuseScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_DiffuseScale, diffusescale);
1358                         if (r_glsl_permutation->loc_SpecularScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_SpecularScale, specularscale);
1359                 }
1360                 else
1361                 {
1362                         // ambient only is simpler
1363                         if (r_glsl_permutation->loc_LightColor >= 0) qglUniform3fARB(r_glsl_permutation->loc_LightColor, lightcolorbase[0] * ambientscale, lightcolorbase[1] * ambientscale, lightcolorbase[2] * ambientscale);
1364                         if (r_glsl_permutation->loc_AmbientScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_AmbientScale, 1);
1365                         if (r_glsl_permutation->loc_DiffuseScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_DiffuseScale, 0);
1366                         if (r_glsl_permutation->loc_SpecularScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_SpecularScale, 0);
1367                 }
1368         }
1369         else if (mode == SHADERMODE_LIGHTDIRECTION)
1370         {
1371                 if (r_glsl_permutation->loc_AmbientColor >= 0)
1372                         qglUniform3fARB(r_glsl_permutation->loc_AmbientColor, rsurface.modellight_ambient[0] * ambientscale * r_refdef.lightmapintensity, rsurface.modellight_ambient[1] * ambientscale * r_refdef.lightmapintensity, rsurface.modellight_ambient[2] * ambientscale * r_refdef.lightmapintensity);
1373                 if (r_glsl_permutation->loc_DiffuseColor >= 0)
1374                         qglUniform3fARB(r_glsl_permutation->loc_DiffuseColor, rsurface.modellight_diffuse[0] * diffusescale * r_refdef.lightmapintensity, rsurface.modellight_diffuse[1] * diffusescale * r_refdef.lightmapintensity, rsurface.modellight_diffuse[2] * diffusescale * r_refdef.lightmapintensity);
1375                 if (r_glsl_permutation->loc_SpecularColor >= 0)
1376                         qglUniform3fARB(r_glsl_permutation->loc_SpecularColor, rsurface.modellight_diffuse[0] * specularscale * r_refdef.lightmapintensity, rsurface.modellight_diffuse[1] * specularscale * r_refdef.lightmapintensity, rsurface.modellight_diffuse[2] * specularscale * r_refdef.lightmapintensity);
1377                 if (r_glsl_permutation->loc_LightDir >= 0)
1378                         qglUniform3fARB(r_glsl_permutation->loc_LightDir, rsurface.modellight_lightdir[0], rsurface.modellight_lightdir[1], rsurface.modellight_lightdir[2]);
1379         }
1380         else
1381         {
1382                 if (r_glsl_permutation->loc_AmbientScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_AmbientScale, r_ambient.value * 2.0f / 128.0f);
1383                 if (r_glsl_permutation->loc_DiffuseScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_DiffuseScale, r_refdef.lightmapintensity * 2.0f);
1384                 if (r_glsl_permutation->loc_SpecularScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_SpecularScale, r_refdef.lightmapintensity * specularscale * 2.0f);
1385         }
1386         if (r_glsl_permutation->loc_GlowScale >= 0) qglUniform1fARB(r_glsl_permutation->loc_GlowScale, r_hdr_glowintensity.value);
1387         if (r_glsl_permutation->loc_ContrastBoostCoeff >= 0)
1388         {
1389                 // The formula used is actually:
1390                 //   color.rgb *= SceneBrightness;
1391                 //   color.rgb *= ContrastBoost / ((ContrastBoost - 1) * color.rgb + 1);
1392                 // I simplify that to
1393                 //   color.rgb *= [[SceneBrightness * ContrastBoost]];
1394                 //   color.rgb /= [[(ContrastBoost - 1) / ContrastBoost]] * color.rgb + 1;
1395                 // and Black:
1396                 //   color.rgb = [[SceneBrightness * ContrastBoost]] * color.rgb / ([[(ContrastBoost - 1) * SceneBrightness]] * color.rgb + 1);
1397                 // and do [[calculations]] here in the engine
1398                 qglUniform1fARB(r_glsl_permutation->loc_ContrastBoostCoeff, (r_glsl_contrastboost.value - 1) * r_view.colorscale);
1399                 if (r_glsl_permutation->loc_SceneBrightness >= 0) qglUniform1fARB(r_glsl_permutation->loc_SceneBrightness, r_view.colorscale * r_glsl_contrastboost.value);
1400         }
1401         else
1402                 if (r_glsl_permutation->loc_SceneBrightness >= 0) qglUniform1fARB(r_glsl_permutation->loc_SceneBrightness, r_view.colorscale);
1403         if (r_glsl_permutation->loc_FogColor >= 0)
1404         {
1405                 // additive passes are only darkened by fog, not tinted
1406                 if (rsurface.rtlight || (rsurface.texture->currentmaterialflags & MATERIALFLAG_ADD))
1407                         qglUniform3fARB(r_glsl_permutation->loc_FogColor, 0, 0, 0);
1408                 else
1409                         qglUniform3fARB(r_glsl_permutation->loc_FogColor, r_refdef.fogcolor[0], r_refdef.fogcolor[1], r_refdef.fogcolor[2]);
1410         }
1411         if (r_glsl_permutation->loc_EyePosition >= 0) qglUniform3fARB(r_glsl_permutation->loc_EyePosition, rsurface.modelorg[0], rsurface.modelorg[1], rsurface.modelorg[2]);
1412         if (r_glsl_permutation->loc_Color_Pants >= 0)
1413         {
1414                 if (rsurface.texture->currentskinframe->pants)
1415                         qglUniform3fARB(r_glsl_permutation->loc_Color_Pants, rsurface.colormap_pantscolor[0], rsurface.colormap_pantscolor[1], rsurface.colormap_pantscolor[2]);
1416                 else
1417                         qglUniform3fARB(r_glsl_permutation->loc_Color_Pants, 0, 0, 0);
1418         }
1419         if (r_glsl_permutation->loc_Color_Shirt >= 0)
1420         {
1421                 if (rsurface.texture->currentskinframe->shirt)
1422                         qglUniform3fARB(r_glsl_permutation->loc_Color_Shirt, rsurface.colormap_shirtcolor[0], rsurface.colormap_shirtcolor[1], rsurface.colormap_shirtcolor[2]);
1423                 else
1424                         qglUniform3fARB(r_glsl_permutation->loc_Color_Shirt, 0, 0, 0);
1425         }
1426         if (r_glsl_permutation->loc_FogRangeRecip >= 0) qglUniform1fARB(r_glsl_permutation->loc_FogRangeRecip, r_refdef.fograngerecip);
1427         if (r_glsl_permutation->loc_FogStart >= 0) qglUniform1fARB(r_glsl_permutation->loc_FogStart, r_refdef.fog_start);
1428         if (r_glsl_permutation->loc_FogLength >= 0) qglUniform1fARB(r_glsl_permutation->loc_FogLength, r_refdef.fog_end - r_refdef.fog_start);
1429         if (r_glsl_permutation->loc_SpecularPower >= 0) qglUniform1fARB(r_glsl_permutation->loc_SpecularPower, rsurface.texture->specularpower);
1430         if (r_glsl_permutation->loc_OffsetMapping_Scale >= 0) qglUniform1fARB(r_glsl_permutation->loc_OffsetMapping_Scale, r_glsl_offsetmapping_scale.value);
1431         if (r_glsl_permutation->loc_DistortScaleRefractReflect >= 0) qglUniform4fARB(r_glsl_permutation->loc_DistortScaleRefractReflect, r_water_refractdistort.value * rsurface.texture->refractfactor, r_water_refractdistort.value * rsurface.texture->refractfactor, r_water_reflectdistort.value * rsurface.texture->reflectfactor, r_water_reflectdistort.value * rsurface.texture->reflectfactor);
1432         if (r_glsl_permutation->loc_ScreenScaleRefractReflect >= 0) qglUniform4fARB(r_glsl_permutation->loc_ScreenScaleRefractReflect, r_waterstate.screenscale[0], r_waterstate.screenscale[1], r_waterstate.screenscale[0], r_waterstate.screenscale[1]);
1433         if (r_glsl_permutation->loc_ScreenCenterRefractReflect >= 0) qglUniform4fARB(r_glsl_permutation->loc_ScreenCenterRefractReflect, r_waterstate.screencenter[0], r_waterstate.screencenter[1], r_waterstate.screencenter[0], r_waterstate.screencenter[1]);
1434         if (r_glsl_permutation->loc_RefractColor >= 0) qglUniform4fvARB(r_glsl_permutation->loc_RefractColor, 1, rsurface.texture->refractcolor4f);
1435         if (r_glsl_permutation->loc_ReflectColor >= 0) qglUniform4fvARB(r_glsl_permutation->loc_ReflectColor, 1, rsurface.texture->reflectcolor4f);
1436         if (r_glsl_permutation->loc_ReflectFactor >= 0) qglUniform1fARB(r_glsl_permutation->loc_ReflectFactor, rsurface.texture->reflectmax - rsurface.texture->reflectmin);
1437         if (r_glsl_permutation->loc_ReflectOffset >= 0) qglUniform1fARB(r_glsl_permutation->loc_ReflectOffset, rsurface.texture->reflectmin);
1438         CHECKGLERROR
1439         return permutation;
1440 }
1441
1442 #define SKINFRAME_HASH 1024
1443
1444 struct
1445 {
1446         int loadsequence; // incremented each level change
1447         memexpandablearray_t array;
1448         skinframe_t *hash[SKINFRAME_HASH];
1449 }
1450 r_skinframe;
1451
1452 void R_SkinFrame_PrepareForPurge(void)
1453 {
1454         r_skinframe.loadsequence++;
1455         // wrap it without hitting zero
1456         if (r_skinframe.loadsequence >= 200)
1457                 r_skinframe.loadsequence = 1;
1458 }
1459
1460 void R_SkinFrame_MarkUsed(skinframe_t *skinframe)
1461 {
1462         if (!skinframe)
1463                 return;
1464         // mark the skinframe as used for the purging code
1465         skinframe->loadsequence = r_skinframe.loadsequence;
1466 }
1467
1468 void R_SkinFrame_Purge(void)
1469 {
1470         int i;
1471         skinframe_t *s;
1472         for (i = 0;i < SKINFRAME_HASH;i++)
1473         {
1474                 for (s = r_skinframe.hash[i];s;s = s->next)
1475                 {
1476                         if (s->loadsequence && s->loadsequence != r_skinframe.loadsequence)
1477                         {
1478                                 if (s->merged == s->base)
1479                                         s->merged = NULL;
1480                                 // FIXME: maybe pass a pointer to the pointer to R_PurgeTexture and reset it to NULL inside? [11/29/2007 Black]
1481                                 R_PurgeTexture(s->stain );s->stain  = NULL;
1482                                 R_PurgeTexture(s->merged);s->merged = NULL;
1483                                 R_PurgeTexture(s->base  );s->base   = NULL;
1484                                 R_PurgeTexture(s->pants );s->pants  = NULL;
1485                                 R_PurgeTexture(s->shirt );s->shirt  = NULL;
1486                                 R_PurgeTexture(s->nmap  );s->nmap   = NULL;
1487                                 R_PurgeTexture(s->gloss );s->gloss  = NULL;
1488                                 R_PurgeTexture(s->glow  );s->glow   = NULL;
1489                                 R_PurgeTexture(s->fog   );s->fog    = NULL;
1490                                 s->loadsequence = 0;
1491                         }
1492                 }
1493         }
1494 }
1495
1496 skinframe_t *R_SkinFrame_FindNextByName( skinframe_t *last, const char *name ) {
1497         skinframe_t *item;
1498         char basename[MAX_QPATH];
1499
1500         Image_StripImageExtension(name, basename, sizeof(basename));
1501
1502         if( last == NULL ) {
1503                 int hashindex;
1504                 hashindex = CRC_Block((unsigned char *)basename, strlen(basename)) & (SKINFRAME_HASH - 1);
1505                 item = r_skinframe.hash[hashindex];
1506         } else {
1507                 item = last->next;
1508         }
1509
1510         // linearly search through the hash bucket
1511         for( ; item ; item = item->next ) {
1512                 if( !strcmp( item->basename, basename ) ) {
1513                         return item;
1514                 }
1515         }
1516         return NULL;
1517 }
1518
1519 skinframe_t *R_SkinFrame_Find(const char *name, int textureflags, int comparewidth, int compareheight, int comparecrc, qboolean add)
1520 {
1521         skinframe_t *item;
1522         int hashindex;
1523         char basename[MAX_QPATH];
1524         
1525         Image_StripImageExtension(name, basename, sizeof(basename));
1526
1527         hashindex = CRC_Block((unsigned char *)basename, strlen(basename)) & (SKINFRAME_HASH - 1);
1528         for (item = r_skinframe.hash[hashindex];item;item = item->next)
1529                 if (!strcmp(item->basename, basename) && item->textureflags == textureflags && item->comparewidth == comparewidth && item->compareheight == compareheight && item->comparecrc == comparecrc)
1530                         break;
1531
1532         if (!item) {
1533                 rtexture_t *dyntexture;
1534                 // check whether its a dynamic texture
1535                 dyntexture = CL_GetDynTexture( basename );
1536                 if (!add && !dyntexture)
1537                         return NULL;
1538                 item = (skinframe_t *)Mem_ExpandableArray_AllocRecord(&r_skinframe.array);
1539                 memset(item, 0, sizeof(*item));
1540                 strlcpy(item->basename, basename, sizeof(item->basename));
1541                 item->base = dyntexture; // either NULL or dyntexture handle
1542                 item->textureflags = textureflags;
1543                 item->comparewidth = comparewidth;
1544                 item->compareheight = compareheight;
1545                 item->comparecrc = comparecrc;
1546                 item->next = r_skinframe.hash[hashindex];       
1547                 r_skinframe.hash[hashindex] = item;
1548         }
1549         else if( item->base == NULL )
1550         {
1551                 rtexture_t *dyntexture;
1552                 // check whether its a dynamic texture
1553                 // this only needs to be done because Purge doesnt delete skinframes - only sets the texture pointers to NULL and we need to restore it before returing.. [11/29/2007 Black]
1554                 dyntexture = CL_GetDynTexture( basename );
1555                 item->base = dyntexture; // either NULL or dyntexture handle
1556         }
1557
1558         R_SkinFrame_MarkUsed(item);
1559         return item;
1560 }
1561
1562 skinframe_t *R_SkinFrame_LoadExternal(const char *name, int textureflags, qboolean complain)
1563 {
1564         // FIXME: it should be possible to disable loading various layers using
1565         // cvars, to prevent wasted loading time and memory usage if the user does
1566         // not want them
1567         qboolean loadnormalmap = true;
1568         qboolean loadgloss = true;
1569         qboolean loadpantsandshirt = true;
1570         qboolean loadglow = true;
1571         int j;
1572         unsigned char *pixels;
1573         unsigned char *bumppixels;
1574         unsigned char *basepixels = NULL;
1575         int basepixels_width;
1576         int basepixels_height;
1577         skinframe_t *skinframe;
1578
1579         if (cls.state == ca_dedicated)
1580                 return NULL;
1581
1582         // return an existing skinframe if already loaded
1583         // if loading of the first image fails, don't make a new skinframe as it
1584         // would cause all future lookups of this to be missing
1585         skinframe = R_SkinFrame_Find(name, textureflags, 0, 0, 0, false);
1586         if (skinframe && skinframe->base)
1587                 return skinframe;
1588
1589         basepixels = loadimagepixelsbgra(name, complain, true);
1590         if (basepixels == NULL)
1591                 return NULL;
1592
1593         // we've got some pixels to store, so really allocate this new texture now
1594         if (!skinframe)
1595                 skinframe = R_SkinFrame_Find(name, textureflags, 0, 0, 0, true);
1596         skinframe->stain = NULL;
1597         skinframe->merged = NULL;
1598         skinframe->base = r_texture_notexture;
1599         skinframe->pants = NULL;
1600         skinframe->shirt = NULL;
1601         skinframe->nmap = r_texture_blanknormalmap;
1602         skinframe->gloss = NULL;
1603         skinframe->glow = NULL;
1604         skinframe->fog = NULL;
1605
1606         basepixels_width = image_width;
1607         basepixels_height = image_height;
1608         skinframe->base = R_LoadTexture2D (r_main_texturepool, skinframe->basename, basepixels_width, basepixels_height, basepixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_color.integer ? ~0 : ~TEXF_COMPRESS), NULL);
1609
1610         if (textureflags & TEXF_ALPHA)
1611         {
1612                 for (j = 3;j < basepixels_width * basepixels_height * 4;j += 4)
1613                         if (basepixels[j] < 255)
1614                                 break;
1615                 if (j < basepixels_width * basepixels_height * 4)
1616                 {
1617                         // has transparent pixels
1618                         pixels = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
1619                         for (j = 0;j < image_width * image_height * 4;j += 4)
1620                         {
1621                                 pixels[j+0] = 255;
1622                                 pixels[j+1] = 255;
1623                                 pixels[j+2] = 255;
1624                                 pixels[j+3] = basepixels[j+3];
1625                         }
1626                         skinframe->fog = R_LoadTexture2D (r_main_texturepool, va("%s_mask", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_color.integer ? ~0 : ~TEXF_COMPRESS), NULL);
1627                         Mem_Free(pixels);
1628                 }
1629         }
1630
1631         // _norm is the name used by tenebrae and has been adopted as standard
1632         if (loadnormalmap)
1633         {
1634                 if ((pixels = loadimagepixelsbgra(va("%s_norm", skinframe->basename), false, false)) != NULL)
1635                 {
1636                         skinframe->nmap = R_LoadTexture2D (r_main_texturepool, va("%s_nmap", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_normal.integer ? ~0 : ~TEXF_COMPRESS), NULL);
1637                         Mem_Free(pixels);
1638                         pixels = NULL;
1639                 }
1640                 else if (r_shadow_bumpscale_bumpmap.value > 0 && (bumppixels = loadimagepixelsbgra(va("%s_bump", skinframe->basename), false, false)) != NULL)
1641                 {
1642                         pixels = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
1643                         Image_HeightmapToNormalmap_BGRA(bumppixels, pixels, image_width, image_height, false, r_shadow_bumpscale_bumpmap.value);
1644                         skinframe->nmap = R_LoadTexture2D (r_main_texturepool, va("%s_nmap", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_normal.integer ? ~0 : ~TEXF_COMPRESS), NULL);
1645                         Mem_Free(pixels);
1646                         Mem_Free(bumppixels);
1647                 }
1648                 else if (r_shadow_bumpscale_basetexture.value > 0)
1649                 {
1650                         pixels = (unsigned char *)Mem_Alloc(tempmempool, basepixels_width * basepixels_height * 4);
1651                         Image_HeightmapToNormalmap_BGRA(basepixels, pixels, basepixels_width, basepixels_height, false, r_shadow_bumpscale_basetexture.value);
1652                         skinframe->nmap = R_LoadTexture2D (r_main_texturepool, va("%s_nmap", skinframe->basename), basepixels_width, basepixels_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_normal.integer ? ~0 : ~TEXF_COMPRESS), NULL);
1653                         Mem_Free(pixels);
1654                 }
1655         }
1656         // _luma is supported for tenebrae compatibility
1657         // (I think it's a very stupid name, but oh well)
1658         // _glow is the preferred name
1659         if (loadglow          && ((pixels = loadimagepixelsbgra(va("%s_glow", skinframe->basename), false, false)) != NULL || (pixels = loadimagepixelsbgra(va("%s_luma", skinframe->basename), false, false)) != NULL)) {skinframe->glow = R_LoadTexture2D (r_main_texturepool, va("%s_glow", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_glow.integer ? ~0 : ~TEXF_COMPRESS), NULL);Mem_Free(pixels);pixels = NULL;}
1660         if (loadgloss         && (pixels = loadimagepixelsbgra(va("%s_gloss", skinframe->basename), false, false)) != NULL) {skinframe->gloss = R_LoadTexture2D (r_main_texturepool, va("%s_gloss", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_gloss.integer ? ~0 : ~TEXF_COMPRESS), NULL);Mem_Free(pixels);pixels = NULL;}
1661         if (loadpantsandshirt && (pixels = loadimagepixelsbgra(va("%s_pants", skinframe->basename), false, false)) != NULL) {skinframe->pants = R_LoadTexture2D (r_main_texturepool, va("%s_pants", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_color.integer ? ~0 : ~TEXF_COMPRESS), NULL);Mem_Free(pixels);pixels = NULL;}
1662         if (loadpantsandshirt && (pixels = loadimagepixelsbgra(va("%s_shirt", skinframe->basename), false, false)) != NULL) {skinframe->shirt = R_LoadTexture2D (r_main_texturepool, va("%s_shirt", skinframe->basename), image_width, image_height, pixels, TEXTYPE_BGRA, skinframe->textureflags & (gl_texturecompression_color.integer ? ~0 : ~TEXF_COMPRESS), NULL);Mem_Free(pixels);pixels = NULL;}
1663
1664         if (basepixels)
1665                 Mem_Free(basepixels);
1666
1667         return skinframe;
1668 }
1669
1670 static rtexture_t *R_SkinFrame_TextureForSkinLayer(const unsigned char *in, int width, int height, const char *name, const unsigned int *palette, int textureflags, qboolean force)
1671 {
1672         int i;
1673         if (!force)
1674         {
1675                 for (i = 0;i < width*height;i++)
1676                         if (((unsigned char *)&palette[in[i]])[3] > 0)
1677                                 break;
1678                 if (i == width*height)
1679                         return NULL;
1680         }
1681         return R_LoadTexture2D (r_main_texturepool, name, width, height, in, TEXTYPE_PALETTE, textureflags, palette);
1682 }
1683
1684 // this is only used by .spr32 sprites, HL .spr files, HL .bsp files
1685 skinframe_t *R_SkinFrame_LoadInternalBGRA(const char *name, int textureflags, const unsigned char *skindata, int width, int height)
1686 {
1687         int i;
1688         unsigned char *temp1, *temp2;
1689         skinframe_t *skinframe;
1690
1691         if (cls.state == ca_dedicated)
1692                 return NULL;
1693
1694         // if already loaded just return it, otherwise make a new skinframe
1695         skinframe = R_SkinFrame_Find(name, textureflags, width, height, skindata ? CRC_Block(skindata, width*height*4) : 0, true);
1696         if (skinframe && skinframe->base)
1697                 return skinframe;
1698
1699         skinframe->stain = NULL;
1700         skinframe->merged = NULL;
1701         skinframe->base = r_texture_notexture;
1702         skinframe->pants = NULL;
1703         skinframe->shirt = NULL;
1704         skinframe->nmap = r_texture_blanknormalmap;
1705         skinframe->gloss = NULL;
1706         skinframe->glow = NULL;
1707         skinframe->fog = NULL;
1708
1709         // if no data was provided, then clearly the caller wanted to get a blank skinframe
1710         if (!skindata)
1711                 return NULL;
1712
1713         if (r_shadow_bumpscale_basetexture.value > 0)
1714         {
1715                 temp1 = (unsigned char *)Mem_Alloc(tempmempool, width * height * 8);
1716                 temp2 = temp1 + width * height * 4;
1717                 Image_HeightmapToNormalmap_BGRA(skindata, temp2, width, height, false, r_shadow_bumpscale_basetexture.value);
1718                 skinframe->nmap = R_LoadTexture2D(r_main_texturepool, va("%s_nmap", skinframe->basename), width, height, temp2, TEXTYPE_BGRA, skinframe->textureflags | TEXF_ALPHA, NULL);
1719                 Mem_Free(temp1);
1720         }
1721         skinframe->base = skinframe->merged = R_LoadTexture2D(r_main_texturepool, skinframe->basename, width, height, skindata, TEXTYPE_BGRA, skinframe->textureflags, NULL);
1722         if (textureflags & TEXF_ALPHA)
1723         {
1724                 for (i = 3;i < width * height * 4;i += 4)
1725                         if (skindata[i] < 255)
1726                                 break;
1727                 if (i < width * height * 4)
1728                 {
1729                         unsigned char *fogpixels = (unsigned char *)Mem_Alloc(tempmempool, width * height * 4);
1730                         memcpy(fogpixels, skindata, width * height * 4);
1731                         for (i = 0;i < width * height * 4;i += 4)
1732                                 fogpixels[i] = fogpixels[i+1] = fogpixels[i+2] = 255;
1733                         skinframe->fog = R_LoadTexture2D(r_main_texturepool, va("%s_fog", skinframe->basename), width, height, fogpixels, TEXTYPE_BGRA, skinframe->textureflags, NULL);
1734                         Mem_Free(fogpixels);
1735                 }
1736         }
1737
1738         return skinframe;
1739 }
1740
1741 skinframe_t *R_SkinFrame_LoadInternalQuake(const char *name, int textureflags, int loadpantsandshirt, int loadglowtexture, const unsigned char *skindata, int width, int height)
1742 {
1743         int i;
1744         unsigned char *temp1, *temp2;
1745         skinframe_t *skinframe;
1746
1747         if (cls.state == ca_dedicated)
1748                 return NULL;
1749
1750         // if already loaded just return it, otherwise make a new skinframe
1751         skinframe = R_SkinFrame_Find(name, textureflags, width, height, skindata ? CRC_Block(skindata, width*height) : 0, true);
1752         if (skinframe && skinframe->base)
1753                 return skinframe;
1754
1755         skinframe->stain = NULL;
1756         skinframe->merged = NULL;
1757         skinframe->base = r_texture_notexture;
1758         skinframe->pants = NULL;
1759         skinframe->shirt = NULL;
1760         skinframe->nmap = r_texture_blanknormalmap;
1761         skinframe->gloss = NULL;
1762         skinframe->glow = NULL;
1763         skinframe->fog = NULL;
1764
1765         // if no data was provided, then clearly the caller wanted to get a blank skinframe
1766         if (!skindata)
1767                 return NULL;
1768
1769         if (r_shadow_bumpscale_basetexture.value > 0)
1770         {
1771                 temp1 = (unsigned char *)Mem_Alloc(tempmempool, width * height * 8);
1772                 temp2 = temp1 + width * height * 4;
1773                 // use either a custom palette or the quake palette
1774                 Image_Copy8bitBGRA(skindata, temp1, width * height, palette_bgra_complete);
1775                 Image_HeightmapToNormalmap_BGRA(temp1, temp2, width, height, false, r_shadow_bumpscale_basetexture.value);
1776                 skinframe->nmap = R_LoadTexture2D(r_main_texturepool, va("%s_nmap", skinframe->basename), width, height, temp2, TEXTYPE_BGRA, skinframe->textureflags | TEXF_ALPHA, NULL);
1777                 Mem_Free(temp1);
1778         }
1779         // use either a custom palette, or the quake palette
1780         skinframe->base = skinframe->merged = R_SkinFrame_TextureForSkinLayer(skindata, width, height, va("%s_merged", skinframe->basename), (loadglowtexture ? palette_bgra_nofullbrights : ((skinframe->textureflags & TEXF_ALPHA) ? palette_bgra_transparent : palette_bgra_complete)), skinframe->textureflags, true); // all
1781         if (loadglowtexture)
1782                 skinframe->glow = R_SkinFrame_TextureForSkinLayer(skindata, width, height, va("%s_glow", skinframe->basename), palette_bgra_onlyfullbrights, skinframe->textureflags, false); // glow
1783         if (loadpantsandshirt)
1784         {
1785                 skinframe->pants = R_SkinFrame_TextureForSkinLayer(skindata, width, height, va("%s_pants", skinframe->basename), palette_bgra_pantsaswhite, skinframe->textureflags, false); // pants
1786                 skinframe->shirt = R_SkinFrame_TextureForSkinLayer(skindata, width, height, va("%s_shirt", skinframe->basename), palette_bgra_shirtaswhite, skinframe->textureflags, false); // shirt
1787         }
1788         if (skinframe->pants || skinframe->shirt)
1789                 skinframe->base = R_SkinFrame_TextureForSkinLayer(skindata, width, height, va("%s_nospecial", skinframe->basename), loadglowtexture ? palette_bgra_nocolormapnofullbrights : palette_bgra_nocolormap, skinframe->textureflags, false); // no special colors
1790         if (textureflags & TEXF_ALPHA)
1791         {
1792                 for (i = 0;i < width * height;i++)
1793                         if (((unsigned char *)palette_bgra_alpha)[skindata[i]*4+3] < 255)
1794                                 break;
1795                 if (i < width * height)
1796                         skinframe->fog = R_SkinFrame_TextureForSkinLayer(skindata, width, height, va("%s_fog", skinframe->basename), palette_bgra_alpha, skinframe->textureflags, true); // fog mask
1797         }
1798
1799         return skinframe;
1800 }
1801
1802 skinframe_t *R_SkinFrame_LoadMissing(void)
1803 {
1804         skinframe_t *skinframe;
1805
1806         if (cls.state == ca_dedicated)
1807                 return NULL;
1808
1809         skinframe = R_SkinFrame_Find("missing", TEXF_PRECACHE, 0, 0, 0, true);
1810         skinframe->stain = NULL;
1811         skinframe->merged = NULL;
1812         skinframe->base = r_texture_notexture;
1813         skinframe->pants = NULL;
1814         skinframe->shirt = NULL;
1815         skinframe->nmap = r_texture_blanknormalmap;
1816         skinframe->gloss = NULL;
1817         skinframe->glow = NULL;
1818         skinframe->fog = NULL;
1819
1820         return skinframe;
1821 }
1822
1823 void gl_main_start(void)
1824 {
1825         int x;
1826         double r, alpha;
1827
1828         r = -16.0 / (1.0 * FOGMASKTABLEWIDTH * FOGMASKTABLEWIDTH);
1829         for (x = 0;x < FOGMASKTABLEWIDTH;x++)
1830         {
1831                 alpha = exp(r * ((double)x*(double)x));
1832                 if (x == FOGMASKTABLEWIDTH - 1)
1833                         alpha = 0;
1834                 r_refdef.fogmasktable[x] = bound(0, alpha, 1);
1835         }
1836
1837         memset(r_qwskincache, 0, sizeof(r_qwskincache));
1838         memset(r_qwskincache_skinframe, 0, sizeof(r_qwskincache_skinframe));
1839
1840         // set up r_skinframe loading system for textures
1841         memset(&r_skinframe, 0, sizeof(r_skinframe));
1842         r_skinframe.loadsequence = 1;
1843         Mem_ExpandableArray_NewArray(&r_skinframe.array, r_main_mempool, sizeof(skinframe_t), 256);
1844
1845         r_main_texturepool = R_AllocTexturePool();
1846         R_BuildBlankTextures();
1847         R_BuildNoTexture();
1848         if (gl_texturecubemap)
1849         {
1850                 R_BuildWhiteCube();
1851                 R_BuildNormalizationCube();
1852         }
1853         R_BuildFogTexture();
1854         memset(&r_bloomstate, 0, sizeof(r_bloomstate));
1855         memset(&r_waterstate, 0, sizeof(r_waterstate));
1856         memset(r_glsl_permutations, 0, sizeof(r_glsl_permutations));
1857         memset(&r_svbsp, 0, sizeof (r_svbsp));
1858 }
1859
1860 void gl_main_shutdown(void)
1861 {
1862         memset(r_qwskincache, 0, sizeof(r_qwskincache));
1863         memset(r_qwskincache_skinframe, 0, sizeof(r_qwskincache_skinframe));
1864
1865         // clear out the r_skinframe state
1866         Mem_ExpandableArray_FreeArray(&r_skinframe.array);
1867         memset(&r_skinframe, 0, sizeof(r_skinframe));
1868
1869         if (r_svbsp.nodes)
1870                 Mem_Free(r_svbsp.nodes);
1871         memset(&r_svbsp, 0, sizeof (r_svbsp));
1872         R_FreeTexturePool(&r_main_texturepool);
1873         r_texture_blanknormalmap = NULL;
1874         r_texture_white = NULL;
1875         r_texture_grey128 = NULL;
1876         r_texture_black = NULL;
1877         r_texture_whitecube = NULL;
1878         r_texture_normalizationcube = NULL;
1879         memset(&r_bloomstate, 0, sizeof(r_bloomstate));
1880         memset(&r_waterstate, 0, sizeof(r_waterstate));
1881         R_GLSL_Restart_f();
1882 }
1883
1884 extern void CL_ParseEntityLump(char *entitystring);
1885 void gl_main_newmap(void)
1886 {
1887         // FIXME: move this code to client
1888         int l;
1889         char *entities, entname[MAX_QPATH];
1890         if (cl.worldmodel)
1891         {
1892                 strlcpy(entname, cl.worldmodel->name, sizeof(entname));
1893                 l = (int)strlen(entname) - 4;
1894                 if (l >= 0 && !strcmp(entname + l, ".bsp"))
1895                 {
1896                         memcpy(entname + l, ".ent", 5);
1897                         if ((entities = (char *)FS_LoadFile(entname, tempmempool, true, NULL)))
1898                         {
1899                                 CL_ParseEntityLump(entities);
1900                                 Mem_Free(entities);
1901                                 return;
1902                         }
1903                 }
1904                 if (cl.worldmodel->brush.entities)
1905                         CL_ParseEntityLump(cl.worldmodel->brush.entities);
1906         }
1907 }
1908
1909 void GL_Main_Init(void)
1910 {
1911         r_main_mempool = Mem_AllocPool("Renderer", 0, NULL);
1912
1913         Cmd_AddCommand("r_glsl_restart", R_GLSL_Restart_f, "unloads GLSL shaders, they will then be reloaded as needed");
1914         Cmd_AddCommand("r_glsl_dumpshader", R_GLSL_DumpShader_f, "dumps the engine internal default.glsl shader into glsl/default.glsl");
1915         // FIXME: the client should set up r_refdef.fog stuff including the fogmasktable
1916         if (gamemode == GAME_NEHAHRA)
1917         {
1918                 Cvar_RegisterVariable (&gl_fogenable);
1919                 Cvar_RegisterVariable (&gl_fogdensity);
1920                 Cvar_RegisterVariable (&gl_fogred);
1921                 Cvar_RegisterVariable (&gl_foggreen);
1922                 Cvar_RegisterVariable (&gl_fogblue);
1923                 Cvar_RegisterVariable (&gl_fogstart);
1924                 Cvar_RegisterVariable (&gl_fogend);
1925         }
1926         Cvar_RegisterVariable(&r_depthfirst);
1927         Cvar_RegisterVariable(&r_nearclip);
1928         Cvar_RegisterVariable(&r_showbboxes);
1929         Cvar_RegisterVariable(&r_showsurfaces);
1930         Cvar_RegisterVariable(&r_showtris);
1931         Cvar_RegisterVariable(&r_shownormals);
1932         Cvar_RegisterVariable(&r_showlighting);
1933         Cvar_RegisterVariable(&r_showshadowvolumes);
1934         Cvar_RegisterVariable(&r_showcollisionbrushes);
1935         Cvar_RegisterVariable(&r_showcollisionbrushes_polygonfactor);
1936         Cvar_RegisterVariable(&r_showcollisionbrushes_polygonoffset);
1937         Cvar_RegisterVariable(&r_showdisabledepthtest);
1938         Cvar_RegisterVariable(&r_drawportals);
1939         Cvar_RegisterVariable(&r_drawentities);
1940         Cvar_RegisterVariable(&r_cullentities_trace);
1941         Cvar_RegisterVariable(&r_cullentities_trace_samples);
1942         Cvar_RegisterVariable(&r_cullentities_trace_enlarge);
1943         Cvar_RegisterVariable(&r_cullentities_trace_delay);
1944         Cvar_RegisterVariable(&r_drawviewmodel);
1945         Cvar_RegisterVariable(&r_speeds);
1946         Cvar_RegisterVariable(&r_fullbrights);
1947         Cvar_RegisterVariable(&r_wateralpha);
1948         Cvar_RegisterVariable(&r_dynamic);
1949         Cvar_RegisterVariable(&r_fullbright);
1950         Cvar_RegisterVariable(&r_shadows);
1951         Cvar_RegisterVariable(&r_shadows_throwdistance);
1952         Cvar_RegisterVariable(&r_q1bsp_skymasking);
1953         Cvar_RegisterVariable(&r_polygonoffset_submodel_factor);
1954         Cvar_RegisterVariable(&r_polygonoffset_submodel_offset);
1955         Cvar_RegisterVariable(&r_textureunits);
1956         Cvar_RegisterVariable(&r_glsl);
1957         Cvar_RegisterVariable(&r_glsl_offsetmapping);
1958         Cvar_RegisterVariable(&r_glsl_offsetmapping_reliefmapping);
1959         Cvar_RegisterVariable(&r_glsl_offsetmapping_scale);
1960         Cvar_RegisterVariable(&r_glsl_deluxemapping);
1961         Cvar_RegisterVariable(&r_water);
1962         Cvar_RegisterVariable(&r_water_resolutionmultiplier);
1963         Cvar_RegisterVariable(&r_water_clippingplanebias);
1964         Cvar_RegisterVariable(&r_water_refractdistort);
1965         Cvar_RegisterVariable(&r_water_reflectdistort);
1966         Cvar_RegisterVariable(&r_lerpsprites);
1967         Cvar_RegisterVariable(&r_lerpmodels);
1968         Cvar_RegisterVariable(&r_lerplightstyles);
1969         Cvar_RegisterVariable(&r_waterscroll);
1970         Cvar_RegisterVariable(&r_bloom);
1971         Cvar_RegisterVariable(&r_bloom_colorscale);
1972         Cvar_RegisterVariable(&r_bloom_brighten);
1973         Cvar_RegisterVariable(&r_bloom_blur);
1974         Cvar_RegisterVariable(&r_bloom_resolution);
1975         Cvar_RegisterVariable(&r_bloom_colorexponent);
1976         Cvar_RegisterVariable(&r_bloom_colorsubtract);
1977         Cvar_RegisterVariable(&r_hdr);
1978         Cvar_RegisterVariable(&r_hdr_scenebrightness);
1979         Cvar_RegisterVariable(&r_glsl_contrastboost);
1980         Cvar_RegisterVariable(&r_hdr_glowintensity);
1981         Cvar_RegisterVariable(&r_hdr_range);
1982         Cvar_RegisterVariable(&r_smoothnormals_areaweighting);
1983         Cvar_RegisterVariable(&developer_texturelogging);
1984         Cvar_RegisterVariable(&gl_lightmaps);
1985         Cvar_RegisterVariable(&r_test);
1986         Cvar_RegisterVariable(&r_batchmode);
1987         if (gamemode == GAME_NEHAHRA || gamemode == GAME_TENEBRAE)
1988                 Cvar_SetValue("r_fullbrights", 0);
1989         R_RegisterModule("GL_Main", gl_main_start, gl_main_shutdown, gl_main_newmap);
1990
1991         Cvar_RegisterVariable(&r_track_sprites);
1992         Cvar_RegisterVariable(&r_track_sprites_flags);
1993         Cvar_RegisterVariable(&r_track_sprites_scalew);
1994         Cvar_RegisterVariable(&r_track_sprites_scaleh);
1995 }
1996
1997 extern void R_Textures_Init(void);
1998 extern void GL_Draw_Init(void);
1999 extern void GL_Main_Init(void);
2000 extern void R_Shadow_Init(void);
2001 extern void R_Sky_Init(void);
2002 extern void GL_Surf_Init(void);
2003 extern void R_Particles_Init(void);
2004 extern void R_Explosion_Init(void);
2005 extern void gl_backend_init(void);
2006 extern void Sbar_Init(void);
2007 extern void R_LightningBeams_Init(void);
2008 extern void Mod_RenderInit(void);
2009
2010 void Render_Init(void)
2011 {
2012         gl_backend_init();
2013         R_Textures_Init();
2014         GL_Main_Init();
2015         GL_Draw_Init();
2016         R_Shadow_Init();
2017         R_Sky_Init();
2018         GL_Surf_Init();
2019         Sbar_Init();
2020         R_Particles_Init();
2021         R_Explosion_Init();
2022         R_LightningBeams_Init();
2023         Mod_RenderInit();
2024 }
2025
2026 /*
2027 ===============
2028 GL_Init
2029 ===============
2030 */
2031 extern char *ENGINE_EXTENSIONS;
2032 void GL_Init (void)
2033 {
2034         VID_CheckExtensions();
2035
2036         // LordHavoc: report supported extensions
2037         Con_DPrintf("\nQuakeC extensions for server and client: %s\nQuakeC extensions for menu: %s\n", vm_sv_extensions, vm_m_extensions );
2038
2039         // clear to black (loading plaque will be seen over this)
2040         CHECKGLERROR
2041         qglClearColor(0,0,0,1);CHECKGLERROR
2042         qglClear(GL_COLOR_BUFFER_BIT);CHECKGLERROR
2043 }
2044
2045 int R_CullBox(const vec3_t mins, const vec3_t maxs)
2046 {
2047         int i;
2048         mplane_t *p;
2049         for (i = 0;i < r_view.numfrustumplanes;i++)
2050         {
2051                 // skip nearclip plane, it often culls portals when you are very close, and is almost never useful
2052                 if (i == 4)
2053                         continue;
2054                 p = r_view.frustum + i;
2055                 switch(p->signbits)
2056                 {
2057                 default:
2058                 case 0:
2059                         if (p->normal[0]*maxs[0] + p->normal[1]*maxs[1] + p->normal[2]*maxs[2] < p->dist)
2060                                 return true;
2061                         break;
2062                 case 1:
2063                         if (p->normal[0]*mins[0] + p->normal[1]*maxs[1] + p->normal[2]*maxs[2] < p->dist)
2064                                 return true;
2065                         break;
2066                 case 2:
2067                         if (p->normal[0]*maxs[0] + p->normal[1]*mins[1] + p->normal[2]*maxs[2] < p->dist)
2068                                 return true;
2069                         break;
2070                 case 3:
2071                         if (p->normal[0]*mins[0] + p->normal[1]*mins[1] + p->normal[2]*maxs[2] < p->dist)
2072                                 return true;
2073                         break;
2074                 case 4:
2075                         if (p->normal[0]*maxs[0] + p->normal[1]*maxs[1] + p->normal[2]*mins[2] < p->dist)
2076                                 return true;
2077                         break;
2078                 case 5:
2079                         if (p->normal[0]*mins[0] + p->normal[1]*maxs[1] + p->normal[2]*mins[2] < p->dist)
2080                                 return true;
2081                         break;
2082                 case 6:
2083                         if (p->normal[0]*maxs[0] + p->normal[1]*mins[1] + p->normal[2]*mins[2] < p->dist)
2084                                 return true;
2085                         break;
2086                 case 7:
2087                         if (p->normal[0]*mins[0] + p->normal[1]*mins[1] + p->normal[2]*mins[2] < p->dist)
2088                                 return true;
2089                         break;
2090                 }
2091         }
2092         return false;
2093 }
2094
2095 int R_CullBoxCustomPlanes(const vec3_t mins, const vec3_t maxs, int numplanes, const mplane_t *planes)
2096 {
2097         int i;
2098         const mplane_t *p;
2099         for (i = 0;i < numplanes;i++)
2100         {
2101                 p = planes + i;
2102                 switch(p->signbits)
2103                 {
2104                 default:
2105                 case 0:
2106                         if (p->normal[0]*maxs[0] + p->normal[1]*maxs[1] + p->normal[2]*maxs[2] < p->dist)
2107                                 return true;
2108                         break;
2109                 case 1:
2110                         if (p->normal[0]*mins[0] + p->normal[1]*maxs[1] + p->normal[2]*maxs[2] < p->dist)
2111                                 return true;
2112                         break;
2113                 case 2:
2114                         if (p->normal[0]*maxs[0] + p->normal[1]*mins[1] + p->normal[2]*maxs[2] < p->dist)
2115                                 return true;
2116                         break;
2117                 case 3:
2118                         if (p->normal[0]*mins[0] + p->normal[1]*mins[1] + p->normal[2]*maxs[2] < p->dist)
2119                                 return true;
2120                         break;
2121                 case 4:
2122                         if (p->normal[0]*maxs[0] + p->normal[1]*maxs[1] + p->normal[2]*mins[2] < p->dist)
2123                                 return true;
2124                         break;
2125                 case 5:
2126                         if (p->normal[0]*mins[0] + p->normal[1]*maxs[1] + p->normal[2]*mins[2] < p->dist)
2127                                 return true;
2128                         break;
2129                 case 6:
2130                         if (p->normal[0]*maxs[0] + p->normal[1]*mins[1] + p->normal[2]*mins[2] < p->dist)
2131                                 return true;
2132                         break;
2133                 case 7:
2134                         if (p->normal[0]*mins[0] + p->normal[1]*mins[1] + p->normal[2]*mins[2] < p->dist)
2135                                 return true;
2136                         break;
2137                 }
2138         }
2139         return false;
2140 }
2141
2142 //==================================================================================
2143
2144 static void R_View_UpdateEntityVisible (void)
2145 {
2146         int i, renderimask;
2147         entity_render_t *ent;
2148
2149         if (!r_drawentities.integer)
2150                 return;
2151
2152         renderimask = r_refdef.envmap ? (RENDER_EXTERIORMODEL | RENDER_VIEWMODEL) : ((chase_active.integer || r_waterstate.renderingscene) ? RENDER_VIEWMODEL : RENDER_EXTERIORMODEL);
2153         if (r_refdef.worldmodel && r_refdef.worldmodel->brush.BoxTouchingVisibleLeafs)
2154         {
2155                 // worldmodel can check visibility
2156                 for (i = 0;i < r_refdef.numentities;i++)
2157                 {
2158                         ent = r_refdef.entities[i];
2159                         r_viewcache.entityvisible[i] = !(ent->flags & renderimask) && ((ent->model && ent->model->type == mod_sprite && (ent->model->sprite.sprnum_type == SPR_LABEL || ent->model->sprite.sprnum_type == SPR_LABEL_SCALE)) || !R_CullBox(ent->mins, ent->maxs)) && ((ent->effects & EF_NODEPTHTEST) || (ent->flags & RENDER_VIEWMODEL) || r_refdef.worldmodel->brush.BoxTouchingVisibleLeafs(r_refdef.worldmodel, r_viewcache.world_leafvisible, ent->mins, ent->maxs));
2160
2161                 }
2162                 if(r_cullentities_trace.integer)
2163                 {
2164                         for (i = 0;i < r_refdef.numentities;i++)
2165                         {
2166                                 ent = r_refdef.entities[i];
2167                                 if(r_viewcache.entityvisible[i] && !(ent->effects & EF_NODEPTHTEST) && !(ent->flags & RENDER_VIEWMODEL) && !(ent->model && (ent->model->name[0] == '*')))
2168                                 {
2169                                         if(Mod_CanSeeBox_Trace(r_cullentities_trace_samples.integer, r_cullentities_trace_enlarge.value, r_refdef.worldmodel, r_view.origin, ent->mins, ent->maxs))
2170                                                 ent->last_trace_visibility = realtime;
2171                                         if(ent->last_trace_visibility < realtime - r_cullentities_trace_delay.value)
2172                                                 r_viewcache.entityvisible[i] = 0;
2173                                 }
2174                         }
2175                 }
2176         }
2177         else
2178         {
2179                 // no worldmodel or it can't check visibility
2180                 for (i = 0;i < r_refdef.numentities;i++)
2181                 {
2182                         ent = r_refdef.entities[i];
2183                         r_viewcache.entityvisible[i] = !(ent->flags & renderimask) && ((ent->model && ent->model->type == mod_sprite && (ent->model->sprite.sprnum_type == SPR_LABEL || ent->model->sprite.sprnum_type == SPR_LABEL_SCALE)) || !R_CullBox(ent->mins, ent->maxs));
2184                 }
2185         }
2186 }
2187
2188 // only used if skyrendermasked, and normally returns false
2189 int R_DrawBrushModelsSky (void)
2190 {
2191         int i, sky;
2192         entity_render_t *ent;
2193
2194         if (!r_drawentities.integer)
2195                 return false;
2196
2197         sky = false;
2198         for (i = 0;i < r_refdef.numentities;i++)
2199         {
2200                 if (!r_viewcache.entityvisible[i])
2201                         continue;
2202                 ent = r_refdef.entities[i];
2203                 if (!ent->model || !ent->model->DrawSky)
2204                         continue;
2205                 ent->model->DrawSky(ent);
2206                 sky = true;
2207         }
2208         return sky;
2209 }
2210
2211 static void R_DrawNoModel(entity_render_t *ent);
2212 static void R_DrawModels(void)
2213 {
2214         int i;
2215         entity_render_t *ent;
2216
2217         if (!r_drawentities.integer)
2218                 return;
2219
2220         for (i = 0;i < r_refdef.numentities;i++)
2221         {
2222                 if (!r_viewcache.entityvisible[i])
2223                         continue;
2224                 ent = r_refdef.entities[i];
2225                 r_refdef.stats.entities++;
2226                 if (ent->model && ent->model->Draw != NULL)
2227                         ent->model->Draw(ent);
2228                 else
2229                         R_DrawNoModel(ent);
2230         }
2231 }
2232
2233 static void R_DrawModelsDepth(void)
2234 {
2235         int i;
2236         entity_render_t *ent;
2237
2238         if (!r_drawentities.integer)
2239                 return;
2240
2241         for (i = 0;i < r_refdef.numentities;i++)
2242         {
2243                 if (!r_viewcache.entityvisible[i])
2244                         continue;
2245                 ent = r_refdef.entities[i];
2246                 if (ent->model && ent->model->DrawDepth != NULL)
2247                         ent->model->DrawDepth(ent);
2248         }
2249 }
2250
2251 static void R_DrawModelsDebug(void)
2252 {
2253         int i;
2254         entity_render_t *ent;
2255
2256         if (!r_drawentities.integer)
2257                 return;
2258
2259         for (i = 0;i < r_refdef.numentities;i++)
2260         {
2261                 if (!r_viewcache.entityvisible[i])
2262                         continue;
2263                 ent = r_refdef.entities[i];
2264                 if (ent->model && ent->model->DrawDebug != NULL)
2265                         ent->model->DrawDebug(ent);
2266         }
2267 }
2268
2269 static void R_DrawModelsAddWaterPlanes(void)
2270 {
2271         int i;
2272         entity_render_t *ent;
2273
2274         if (!r_drawentities.integer)
2275                 return;
2276
2277         for (i = 0;i < r_refdef.numentities;i++)
2278         {
2279                 if (!r_viewcache.entityvisible[i])
2280                         continue;
2281                 ent = r_refdef.entities[i];
2282                 if (ent->model && ent->model->DrawAddWaterPlanes != NULL)
2283                         ent->model->DrawAddWaterPlanes(ent);
2284         }
2285 }
2286
2287 static void R_View_SetFrustum(void)
2288 {
2289         int i;
2290         double slopex, slopey;
2291
2292         // break apart the view matrix into vectors for various purposes
2293         Matrix4x4_ToVectors(&r_view.matrix, r_view.forward, r_view.left, r_view.up, r_view.origin);
2294         VectorNegate(r_view.left, r_view.right);
2295
2296 #if 0
2297         r_view.frustum[0].normal[0] = 0 - 1.0 / r_view.frustum_x;
2298         r_view.frustum[0].normal[1] = 0 - 0;
2299         r_view.frustum[0].normal[2] = -1 - 0;
2300         r_view.frustum[1].normal[0] = 0 + 1.0 / r_view.frustum_x;
2301         r_view.frustum[1].normal[1] = 0 + 0;
2302         r_view.frustum[1].normal[2] = -1 + 0;
2303         r_view.frustum[2].normal[0] = 0 - 0;
2304         r_view.frustum[2].normal[1] = 0 - 1.0 / r_view.frustum_y;
2305         r_view.frustum[2].normal[2] = -1 - 0;
2306         r_view.frustum[3].normal[0] = 0 + 0;
2307         r_view.frustum[3].normal[1] = 0 + 1.0 / r_view.frustum_y;
2308         r_view.frustum[3].normal[2] = -1 + 0;
2309 #endif
2310
2311 #if 0
2312         zNear = r_refdef.nearclip;
2313         nudge = 1.0 - 1.0 / (1<<23);
2314         r_view.frustum[4].normal[0] = 0 - 0;
2315         r_view.frustum[4].normal[1] = 0 - 0;
2316         r_view.frustum[4].normal[2] = -1 - -nudge;
2317         r_view.frustum[4].dist = 0 - -2 * zNear * nudge;
2318         r_view.frustum[5].normal[0] = 0 + 0;
2319         r_view.frustum[5].normal[1] = 0 + 0;
2320         r_view.frustum[5].normal[2] = -1 + -nudge;
2321         r_view.frustum[5].dist = 0 + -2 * zNear * nudge;
2322 #endif
2323
2324
2325
2326 #if 0
2327         r_view.frustum[0].normal[0] = m[3] - m[0];
2328         r_view.frustum[0].normal[1] = m[7] - m[4];
2329         r_view.frustum[0].normal[2] = m[11] - m[8];
2330         r_view.frustum[0].dist = m[15] - m[12];
2331
2332         r_view.frustum[1].normal[0] = m[3] + m[0];
2333         r_view.frustum[1].normal[1] = m[7] + m[4];
2334         r_view.frustum[1].normal[2] = m[11] + m[8];
2335         r_view.frustum[1].dist = m[15] + m[12];
2336
2337         r_view.frustum[2].normal[0] = m[3] - m[1];
2338         r_view.frustum[2].normal[1] = m[7] - m[5];
2339         r_view.frustum[2].normal[2] = m[11] - m[9];
2340         r_view.frustum[2].dist = m[15] - m[13];
2341
2342         r_view.frustum[3].normal[0] = m[3] + m[1];
2343         r_view.frustum[3].normal[1] = m[7] + m[5];
2344         r_view.frustum[3].normal[2] = m[11] + m[9];
2345         r_view.frustum[3].dist = m[15] + m[13];
2346
2347         r_view.frustum[4].normal[0] = m[3] - m[2];
2348         r_view.frustum[4].normal[1] = m[7] - m[6];
2349         r_view.frustum[4].normal[2] = m[11] - m[10];
2350         r_view.frustum[4].dist = m[15] - m[14];
2351
2352         r_view.frustum[5].normal[0] = m[3] + m[2];
2353         r_view.frustum[5].normal[1] = m[7] + m[6];
2354         r_view.frustum[5].normal[2] = m[11] + m[10];
2355         r_view.frustum[5].dist = m[15] + m[14];
2356 #endif
2357
2358         if (r_view.useperspective)
2359         {
2360                 slopex = 1.0 / r_view.frustum_x;
2361                 slopey = 1.0 / r_view.frustum_y;
2362                 VectorMA(r_view.forward, -slopex, r_view.left, r_view.frustum[0].normal);
2363                 VectorMA(r_view.forward,  slopex, r_view.left, r_view.frustum[1].normal);
2364                 VectorMA(r_view.forward, -slopey, r_view.up  , r_view.frustum[2].normal);
2365                 VectorMA(r_view.forward,  slopey, r_view.up  , r_view.frustum[3].normal);
2366                 VectorCopy(r_view.forward, r_view.frustum[4].normal);
2367                 
2368                 // Leaving those out was a mistake, those were in the old code, and they
2369                 // fix a reproducable bug in this one: frustum culling got fucked up when viewmatrix was an identity matrix
2370                 // I couldn't reproduce it after adding those normalizations. --blub
2371                 VectorNormalize(r_view.frustum[0].normal);
2372                 VectorNormalize(r_view.frustum[1].normal);
2373                 VectorNormalize(r_view.frustum[2].normal);
2374                 VectorNormalize(r_view.frustum[3].normal);
2375
2376                 // calculate frustum corners, which are used to calculate deformed frustum planes for shadow caster culling
2377                 VectorMAMAMAM(1, r_view.origin, 1024, r_view.forward, -1024 * slopex, r_view.left, -1024 * slopey, r_view.up, r_view.frustumcorner[0]);
2378                 VectorMAMAMAM(1, r_view.origin, 1024, r_view.forward,  1024 * slopex, r_view.left, -1024 * slopey, r_view.up, r_view.frustumcorner[1]);
2379                 VectorMAMAMAM(1, r_view.origin, 1024, r_view.forward, -1024 * slopex, r_view.left,  1024 * slopey, r_view.up, r_view.frustumcorner[2]);
2380                 VectorMAMAMAM(1, r_view.origin, 1024, r_view.forward,  1024 * slopex, r_view.left,  1024 * slopey, r_view.up, r_view.frustumcorner[3]);
2381
2382                 r_view.frustum[0].dist = DotProduct (r_view.origin, r_view.frustum[0].normal);
2383                 r_view.frustum[1].dist = DotProduct (r_view.origin, r_view.frustum[1].normal);
2384                 r_view.frustum[2].dist = DotProduct (r_view.origin, r_view.frustum[2].normal);
2385                 r_view.frustum[3].dist = DotProduct (r_view.origin, r_view.frustum[3].normal);
2386                 r_view.frustum[4].dist = DotProduct (r_view.origin, r_view.frustum[4].normal) + r_refdef.nearclip;
2387         }
2388         else
2389         {
2390                 VectorScale(r_view.left, -r_view.ortho_x, r_view.frustum[0].normal);
2391                 VectorScale(r_view.left,  r_view.ortho_x, r_view.frustum[1].normal);
2392                 VectorScale(r_view.up, -r_view.ortho_y, r_view.frustum[2].normal);
2393                 VectorScale(r_view.up,  r_view.ortho_y, r_view.frustum[3].normal);
2394                 VectorCopy(r_view.forward, r_view.frustum[4].normal);
2395                 r_view.frustum[0].dist = DotProduct (r_view.origin, r_view.frustum[0].normal) + r_view.ortho_x;
2396                 r_view.frustum[1].dist = DotProduct (r_view.origin, r_view.frustum[1].normal) + r_view.ortho_x;
2397                 r_view.frustum[2].dist = DotProduct (r_view.origin, r_view.frustum[2].normal) + r_view.ortho_y;
2398                 r_view.frustum[3].dist = DotProduct (r_view.origin, r_view.frustum[3].normal) + r_view.ortho_y;
2399                 r_view.frustum[4].dist = DotProduct (r_view.origin, r_view.frustum[4].normal) + r_refdef.nearclip;
2400         }
2401         r_view.numfrustumplanes = 5;
2402
2403         if (r_view.useclipplane)
2404         {
2405                 r_view.numfrustumplanes = 6;
2406                 r_view.frustum[5] = r_view.clipplane;
2407         }
2408
2409         for (i = 0;i < r_view.numfrustumplanes;i++)
2410                 PlaneClassify(r_view.frustum + i);
2411
2412         // LordHavoc: note to all quake engine coders, Quake had a special case
2413         // for 90 degrees which assumed a square view (wrong), so I removed it,
2414         // Quake2 has it disabled as well.
2415
2416         // rotate R_VIEWFORWARD right by FOV_X/2 degrees
2417         //RotatePointAroundVector( r_view.frustum[0].normal, r_view.up, r_view.forward, -(90 - r_refdef.fov_x / 2));
2418         //r_view.frustum[0].dist = DotProduct (r_view.origin, frustum[0].normal);
2419         //PlaneClassify(&frustum[0]);
2420
2421         // rotate R_VIEWFORWARD left by FOV_X/2 degrees
2422         //RotatePointAroundVector( r_view.frustum[1].normal, r_view.up, r_view.forward, (90 - r_refdef.fov_x / 2));
2423         //r_view.frustum[1].dist = DotProduct (r_view.origin, frustum[1].normal);
2424         //PlaneClassify(&frustum[1]);
2425
2426         // rotate R_VIEWFORWARD up by FOV_X/2 degrees
2427         //RotatePointAroundVector( r_view.frustum[2].normal, r_view.left, r_view.forward, -(90 - r_refdef.fov_y / 2));
2428         //r_view.frustum[2].dist = DotProduct (r_view.origin, frustum[2].normal);
2429         //PlaneClassify(&frustum[2]);
2430
2431         // rotate R_VIEWFORWARD down by FOV_X/2 degrees
2432         //RotatePointAroundVector( r_view.frustum[3].normal, r_view.left, r_view.forward, (90 - r_refdef.fov_y / 2));
2433         //r_view.frustum[3].dist = DotProduct (r_view.origin, frustum[3].normal);
2434         //PlaneClassify(&frustum[3]);
2435
2436         // nearclip plane
2437         //VectorCopy(r_view.forward, r_view.frustum[4].normal);
2438         //r_view.frustum[4].dist = DotProduct (r_view.origin, frustum[4].normal) + r_nearclip.value;
2439         //PlaneClassify(&frustum[4]);
2440 }
2441
2442 void R_View_Update(void)
2443 {
2444         R_View_SetFrustum();
2445         R_View_WorldVisibility(r_view.useclipplane);
2446         R_View_UpdateEntityVisible();
2447 }
2448
2449 void R_SetupView(void)
2450 {
2451         if (!r_view.useperspective)
2452                 GL_SetupView_Mode_Ortho(-r_view.ortho_x, -r_view.ortho_y, r_view.ortho_x, r_view.ortho_y, -r_refdef.farclip, r_refdef.farclip);
2453         else if (r_refdef.rtworldshadows || r_refdef.rtdlightshadows)
2454                 GL_SetupView_Mode_PerspectiveInfiniteFarClip(r_view.frustum_x, r_view.frustum_y, r_refdef.nearclip);
2455         else
2456                 GL_SetupView_Mode_Perspective(r_view.frustum_x, r_view.frustum_y, r_refdef.nearclip, r_refdef.farclip);
2457
2458         GL_SetupView_Orientation_FromEntity(&r_view.matrix);
2459
2460         if (r_view.useclipplane)
2461         {
2462                 // LordHavoc: couldn't figure out how to make this approach the
2463                 vec_t dist = r_view.clipplane.dist - r_water_clippingplanebias.value;
2464                 vec_t viewdist = DotProduct(r_view.origin, r_view.clipplane.normal);
2465                 if (viewdist < r_view.clipplane.dist + r_water_clippingplanebias.value)
2466                         dist = r_view.clipplane.dist;
2467                 GL_SetupView_ApplyCustomNearClipPlane(r_view.clipplane.normal[0], r_view.clipplane.normal[1], r_view.clipplane.normal[2], dist);
2468         }
2469 }
2470
2471 void R_ResetViewRendering2D(void)
2472 {
2473         if (gl_support_fragment_shader)
2474         {
2475                 qglUseProgramObjectARB(0);CHECKGLERROR
2476         }
2477
2478         DrawQ_Finish();
2479
2480         // GL is weird because it's bottom to top, r_view.y is top to bottom
2481         qglViewport(r_view.x, vid.height - (r_view.y + r_view.height), r_view.width, r_view.height);CHECKGLERROR
2482         GL_SetupView_Mode_Ortho(0, 0, 1, 1, -10, 100);
2483         GL_Scissor(r_view.x, r_view.y, r_view.width, r_view.height);
2484         GL_Color(1, 1, 1, 1);
2485         GL_ColorMask(r_view.colormask[0], r_view.colormask[1], r_view.colormask[2], 1);
2486         GL_BlendFunc(GL_ONE, GL_ZERO);
2487         GL_AlphaTest(false);
2488         GL_ScissorTest(false);
2489         GL_DepthMask(false);
2490         GL_DepthRange(0, 1);
2491         GL_DepthTest(false);
2492         R_Mesh_Matrix(&identitymatrix);
2493         R_Mesh_ResetTextureState();
2494         GL_PolygonOffset(0, 0);
2495         qglEnable(GL_POLYGON_OFFSET_FILL);CHECKGLERROR
2496         qglDepthFunc(GL_LEQUAL);CHECKGLERROR
2497         qglDisable(GL_STENCIL_TEST);CHECKGLERROR
2498         qglStencilMask(~0);CHECKGLERROR
2499         qglStencilFunc(GL_ALWAYS, 128, ~0);CHECKGLERROR
2500         qglStencilOp(GL_KEEP, GL_KEEP, GL_KEEP);CHECKGLERROR
2501         GL_CullFace(GL_FRONT); // quake is backwards, this culls back faces
2502 }
2503
2504 void R_ResetViewRendering3D(void)
2505 {
2506         if (gl_support_fragment_shader)
2507         {
2508                 qglUseProgramObjectARB(0);CHECKGLERROR
2509         }
2510
2511         DrawQ_Finish();
2512
2513         // GL is weird because it's bottom to top, r_view.y is top to bottom
2514         qglViewport(r_view.x, vid.height - (r_view.y + r_view.height), r_view.width, r_view.height);CHECKGLERROR
2515         R_SetupView();
2516         GL_Scissor(r_view.x, r_view.y, r_view.width, r_view.height);
2517         GL_Color(1, 1, 1, 1);
2518         GL_ColorMask(r_view.colormask[0], r_view.colormask[1], r_view.colormask[2], 1);
2519         GL_BlendFunc(GL_ONE, GL_ZERO);
2520         GL_AlphaTest(false);
2521         GL_ScissorTest(true);
2522         GL_DepthMask(true);
2523         GL_DepthRange(0, 1);
2524         GL_DepthTest(true);
2525         R_Mesh_Matrix(&identitymatrix);
2526         R_Mesh_ResetTextureState();
2527         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
2528         qglEnable(GL_POLYGON_OFFSET_FILL);CHECKGLERROR
2529         qglDepthFunc(GL_LEQUAL);CHECKGLERROR
2530         qglDisable(GL_STENCIL_TEST);CHECKGLERROR
2531         qglStencilMask(~0);CHECKGLERROR
2532         qglStencilFunc(GL_ALWAYS, 128, ~0);CHECKGLERROR
2533         qglStencilOp(GL_KEEP, GL_KEEP, GL_KEEP);CHECKGLERROR
2534         GL_CullFace(r_view.cullface_back);
2535 }
2536
2537 /*
2538         R_Bloom_SetupShader(
2539 "// bloom shader\n"
2540 "// written by Forest 'LordHavoc' Hale\n"
2541 "\n"
2542 "// common definitions between vertex shader and fragment shader:\n"
2543 "\n"
2544 "#ifdef __GLSL_CG_DATA_TYPES\n"
2545 "#define myhalf half\n"
2546 "#define myhvec2 hvec2\n"
2547 "#define myhvec3 hvec3\n"
2548 "#define myhvec4 hvec4\n"
2549 "#else\n"
2550 "#define myhalf float\n"
2551 "#define myhvec2 vec2\n"
2552 "#define myhvec3 vec3\n"
2553 "#define myhvec4 vec4\n"
2554 "#endif\n"
2555 "\n"
2556 "varying vec2 ScreenTexCoord;\n"
2557 "varying vec2 BloomTexCoord;\n"
2558 "\n"
2559 "\n"
2560 "\n"
2561 "\n"
2562 "// vertex shader specific:\n"
2563 "#ifdef VERTEX_SHADER\n"
2564 "\n"
2565 "void main(void)\n"
2566 "{\n"
2567 "       ScreenTexCoord = vec2(gl_MultiTexCoord0);\n"
2568 "       BloomTexCoord = vec2(gl_MultiTexCoord1);\n"
2569 "       // transform vertex to camera space, using ftransform to match non-VS\n"
2570 "       // rendering\n"
2571 "       gl_Position = ftransform();\n"
2572 "}\n"
2573 "\n"
2574 "#endif // VERTEX_SHADER\n"
2575 "\n"
2576 "\n"
2577 "\n"
2578 "\n"
2579 "// fragment shader specific:\n"
2580 "#ifdef FRAGMENT_SHADER\n"
2581 "\n"
2582 "void main(void)\n"
2583 "{\n"
2584 "       int x, y;
2585 "       myhvec3 color = myhvec3(texture2D(Texture_Screen, ScreenTexCoord));\n"
2586 "       for (x = -BLUR_X;x <= BLUR_X;x++)
2587 "       color.rgb += myhvec3(texture2D(Texture_Bloom, BloomTexCoord));\n"
2588 "       color.rgb += myhvec3(texture2D(Texture_Bloom, BloomTexCoord));\n"
2589 "       color.rgb += myhvec3(texture2D(Texture_Bloom, BloomTexCoord));\n"
2590 "       color.rgb += myhvec3(texture2D(Texture_Bloom, BloomTexCoord));\n"
2591
2592 "       gl_FragColor = vec4(color);\n"
2593 "}\n"
2594 "\n"
2595 "#endif // FRAGMENT_SHADER\n"
2596 */
2597
2598 void R_RenderScene(qboolean addwaterplanes);
2599
2600 static void R_Water_StartFrame(void)
2601 {
2602         int i;
2603         int waterwidth, waterheight, texturewidth, textureheight;
2604         r_waterstate_waterplane_t *p;
2605
2606         // set waterwidth and waterheight to the water resolution that will be
2607         // used (often less than the screen resolution for faster rendering)
2608         waterwidth = (int)bound(1, r_view.width * r_water_resolutionmultiplier.value, r_view.width);
2609         waterheight = (int)bound(1, r_view.height * r_water_resolutionmultiplier.value, r_view.height);
2610
2611         // calculate desired texture sizes
2612         // can't use water if the card does not support the texture size
2613         if (!r_water.integer || !r_glsl.integer || !gl_support_fragment_shader || waterwidth > gl_max_texture_size || waterheight > gl_max_texture_size)
2614                 texturewidth = textureheight = waterwidth = waterheight = 0;
2615         else if (gl_support_arb_texture_non_power_of_two)
2616         {
2617                 texturewidth = waterwidth;
2618                 textureheight = waterheight;
2619         }
2620         else
2621         {
2622                 for (texturewidth   = 1;texturewidth   < waterwidth ;texturewidth   *= 2);
2623                 for (textureheight  = 1;textureheight  < waterheight;textureheight  *= 2);
2624         }
2625
2626         // allocate textures as needed
2627         if (r_waterstate.waterwidth != waterwidth || r_waterstate.waterheight != waterheight || r_waterstate.texturewidth != texturewidth || r_waterstate.textureheight != textureheight)
2628         {
2629                 r_waterstate.maxwaterplanes = MAX_WATERPLANES;
2630                 for (i = 0, p = r_waterstate.waterplanes;i < r_waterstate.maxwaterplanes;i++, p++)
2631                 {
2632                         if (p->texture_refraction)
2633                                 R_FreeTexture(p->texture_refraction);
2634                         p->texture_refraction = NULL;
2635                         if (p->texture_reflection)
2636                                 R_FreeTexture(p->texture_reflection);
2637                         p->texture_reflection = NULL;
2638                 }
2639                 memset(&r_waterstate, 0, sizeof(r_waterstate));
2640                 r_waterstate.waterwidth = waterwidth;
2641                 r_waterstate.waterheight = waterheight;
2642                 r_waterstate.texturewidth = texturewidth;
2643                 r_waterstate.textureheight = textureheight;
2644         }
2645
2646         if (r_waterstate.waterwidth)
2647         {
2648                 r_waterstate.enabled = true;
2649
2650                 // set up variables that will be used in shader setup
2651                 r_waterstate.screenscale[0] = 0.5f * (float)waterwidth / (float)texturewidth;
2652                 r_waterstate.screenscale[1] = 0.5f * (float)waterheight / (float)textureheight;
2653                 r_waterstate.screencenter[0] = 0.5f * (float)waterwidth / (float)texturewidth;
2654                 r_waterstate.screencenter[1] = 0.5f * (float)waterheight / (float)textureheight;
2655         }
2656
2657         r_waterstate.maxwaterplanes = MAX_WATERPLANES;
2658         r_waterstate.numwaterplanes = 0;
2659 }
2660
2661 static void R_Water_AddWaterPlane(msurface_t *surface)
2662 {
2663         int triangleindex, planeindex;
2664         const int *e;
2665         vec3_t vert[3];
2666         vec3_t normal;
2667         vec3_t center;
2668         r_waterstate_waterplane_t *p;
2669         // just use the first triangle with a valid normal for any decisions
2670         VectorClear(normal);
2671         for (triangleindex = 0, e = rsurface.modelelement3i + surface->num_firsttriangle * 3;triangleindex < surface->num_triangles;triangleindex++, e += 3)
2672         {
2673                 Matrix4x4_Transform(&rsurface.matrix, rsurface.modelvertex3f + e[0]*3, vert[0]);
2674                 Matrix4x4_Transform(&rsurface.matrix, rsurface.modelvertex3f + e[1]*3, vert[1]);
2675                 Matrix4x4_Transform(&rsurface.matrix, rsurface.modelvertex3f + e[2]*3, vert[2]);
2676                 TriangleNormal(vert[0], vert[1], vert[2], normal);
2677                 if (VectorLength2(normal) >= 0.001)
2678                         break;
2679         }
2680
2681         // find a matching plane if there is one
2682         for (planeindex = 0, p = r_waterstate.waterplanes;planeindex < r_waterstate.numwaterplanes;planeindex++, p++)
2683                 if (fabs(PlaneDiff(vert[0], &p->plane)) < 1 && fabs(PlaneDiff(vert[1], &p->plane)) < 1 && fabs(PlaneDiff(vert[2], &p->plane)) < 1)
2684                         break;
2685         if (planeindex >= r_waterstate.maxwaterplanes)
2686                 return; // nothing we can do, out of planes
2687
2688         // if this triangle does not fit any known plane rendered this frame, add one
2689         if (planeindex >= r_waterstate.numwaterplanes)
2690         {
2691                 // store the new plane
2692                 r_waterstate.numwaterplanes++;
2693                 VectorCopy(normal, p->plane.normal);
2694                 VectorNormalize(p->plane.normal);
2695                 p->plane.dist = DotProduct(vert[0], p->plane.normal);
2696                 PlaneClassify(&p->plane);
2697                 // flip the plane if it does not face the viewer
2698                 if (PlaneDiff(r_view.origin, &p->plane) < 0)
2699                 {
2700                         VectorNegate(p->plane.normal, p->plane.normal);
2701                         p->plane.dist *= -1;
2702                         PlaneClassify(&p->plane);
2703                 }
2704                 // clear materialflags and pvs
2705                 p->materialflags = 0;
2706                 p->pvsvalid = false;
2707         }
2708         // merge this surface's materialflags into the waterplane
2709         p->materialflags |= surface->texture->currentframe->currentmaterialflags;
2710         // merge this surface's PVS into the waterplane
2711         VectorMAM(0.5f, surface->mins, 0.5f, surface->maxs, center);
2712         if (p->materialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION) && r_refdef.worldmodel && r_refdef.worldmodel->brush.FatPVS
2713          && r_refdef.worldmodel->brush.PointInLeaf && r_refdef.worldmodel->brush.PointInLeaf(r_refdef.worldmodel, center)->clusterindex >= 0)
2714         {
2715                 r_refdef.worldmodel->brush.FatPVS(r_refdef.worldmodel, center, 2, p->pvsbits, sizeof(p->pvsbits), p->pvsvalid);
2716                 p->pvsvalid = true;
2717         }
2718 }
2719
2720 static void R_Water_ProcessPlanes(void)
2721 {
2722         r_view_t originalview;
2723         int planeindex;
2724         r_waterstate_waterplane_t *p;
2725
2726         originalview = r_view;
2727
2728         // make sure enough textures are allocated
2729         for (planeindex = 0, p = r_waterstate.waterplanes;planeindex < r_waterstate.numwaterplanes;planeindex++, p++)
2730         {
2731                 if (p->materialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION))
2732                 {
2733                         if (!p->texture_refraction)
2734                                 p->texture_refraction = R_LoadTexture2D(r_main_texturepool, va("waterplane%i_refraction", planeindex), r_waterstate.texturewidth, r_waterstate.textureheight, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_CLAMP | TEXF_ALWAYSPRECACHE, NULL);
2735                         if (!p->texture_refraction)
2736                                 goto error;
2737                 }
2738
2739                 if (p->materialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFLECTION))
2740                 {
2741                         if (!p->texture_reflection)
2742                                 p->texture_reflection = R_LoadTexture2D(r_main_texturepool, va("waterplane%i_reflection", planeindex), r_waterstate.texturewidth, r_waterstate.textureheight, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_CLAMP | TEXF_ALWAYSPRECACHE, NULL);
2743                         if (!p->texture_reflection)
2744                                 goto error;
2745                 }
2746         }
2747
2748         // render views
2749         for (planeindex = 0, p = r_waterstate.waterplanes;planeindex < r_waterstate.numwaterplanes;planeindex++, p++)
2750         {
2751                 r_view.showdebug = false;
2752                 r_view.width = r_waterstate.waterwidth;
2753                 r_view.height = r_waterstate.waterheight;
2754                 r_view.useclipplane = true;
2755                 r_waterstate.renderingscene = true;
2756
2757                 // render the normal view scene and copy into texture
2758                 // (except that a clipping plane should be used to hide everything on one side of the water, and the viewer's weapon model should be omitted)
2759                 if (p->materialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION))
2760                 {
2761                         r_view.clipplane = p->plane;
2762                         VectorNegate(r_view.clipplane.normal, r_view.clipplane.normal);
2763                         r_view.clipplane.dist = -r_view.clipplane.dist;
2764                         PlaneClassify(&r_view.clipplane);
2765
2766                         R_RenderScene(false);
2767
2768                         // copy view into the screen texture
2769                         R_Mesh_TexBind(0, R_GetTexture(p->texture_refraction));
2770                         GL_ActiveTexture(0);
2771                         CHECKGLERROR
2772                         qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_view.height), r_view.width, r_view.height);CHECKGLERROR
2773                 }
2774
2775                 if (p->materialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFLECTION))
2776                 {
2777                         // render reflected scene and copy into texture
2778                         Matrix4x4_Reflect(&r_view.matrix, p->plane.normal[0], p->plane.normal[1], p->plane.normal[2], p->plane.dist, -2);
2779                         r_view.clipplane = p->plane;
2780                         // reverse the cullface settings for this render
2781                         r_view.cullface_front = GL_FRONT;
2782                         r_view.cullface_back = GL_BACK;
2783                         if (r_refdef.worldmodel && r_refdef.worldmodel->brush.num_pvsclusterbytes)
2784                         {
2785                                 r_view.usecustompvs = true;
2786                                 if (p->pvsvalid)
2787                                         memcpy(r_viewcache.world_pvsbits, p->pvsbits, r_refdef.worldmodel->brush.num_pvsclusterbytes);
2788                                 else
2789                                         memset(r_viewcache.world_pvsbits, 0xFF, r_refdef.worldmodel->brush.num_pvsclusterbytes);
2790                         }
2791
2792                         R_ResetViewRendering3D();
2793                         R_ClearScreen();
2794                         if (r_timereport_active)
2795                                 R_TimeReport("viewclear");
2796
2797                         R_RenderScene(false);
2798
2799                         R_Mesh_TexBind(0, R_GetTexture(p->texture_reflection));
2800                         GL_ActiveTexture(0);
2801                         CHECKGLERROR
2802                         qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_view.height), r_view.width, r_view.height);CHECKGLERROR
2803
2804                         R_ResetViewRendering3D();
2805                         R_ClearScreen();
2806                         if (r_timereport_active)
2807                                 R_TimeReport("viewclear");
2808                 }
2809
2810                 r_view = originalview;
2811                 r_view.clear = true;
2812                 r_waterstate.renderingscene = false;
2813         }
2814         return;
2815 error:
2816         r_view = originalview;
2817         r_waterstate.renderingscene = false;
2818         Cvar_SetValueQuick(&r_water, 0);
2819         Con_Printf("R_Water_ProcessPlanes: Error: texture creation failed!  Turned off r_water.\n");
2820         return;
2821 }
2822
2823 void R_Bloom_StartFrame(void)
2824 {
2825         int bloomtexturewidth, bloomtextureheight, screentexturewidth, screentextureheight;
2826
2827         // set bloomwidth and bloomheight to the bloom resolution that will be
2828         // used (often less than the screen resolution for faster rendering)
2829         r_bloomstate.bloomwidth = bound(1, r_bloom_resolution.integer, r_view.width);
2830         r_bloomstate.bloomheight = r_bloomstate.bloomwidth * r_view.height / r_view.width;
2831         r_bloomstate.bloomheight = bound(1, r_bloomstate.bloomheight, r_view.height);
2832
2833         // calculate desired texture sizes
2834         if (gl_support_arb_texture_non_power_of_two)
2835         {
2836                 screentexturewidth = r_view.width;
2837                 screentextureheight = r_view.height;
2838                 bloomtexturewidth = r_bloomstate.bloomwidth;
2839                 bloomtextureheight = r_bloomstate.bloomheight;
2840         }
2841         else
2842         {
2843                 for (screentexturewidth  = 1;screentexturewidth  < vid.width               ;screentexturewidth  *= 2);
2844                 for (screentextureheight = 1;screentextureheight < vid.height              ;screentextureheight *= 2);
2845                 for (bloomtexturewidth   = 1;bloomtexturewidth   < r_bloomstate.bloomwidth ;bloomtexturewidth   *= 2);
2846                 for (bloomtextureheight  = 1;bloomtextureheight  < r_bloomstate.bloomheight;bloomtextureheight  *= 2);
2847         }
2848
2849         if (r_hdr.integer)
2850         {
2851                 screentexturewidth = screentextureheight = 0;
2852         }
2853         else if (r_bloom.integer)
2854         {
2855         }
2856         else
2857         {
2858                 screentexturewidth = screentextureheight = 0;
2859                 bloomtexturewidth = bloomtextureheight = 0;
2860         }
2861
2862         if ((!bloomtexturewidth && !bloomtextureheight) || r_bloom_resolution.integer < 4 || r_bloom_blur.value < 1 || r_bloom_blur.value >= 512 || screentexturewidth > gl_max_texture_size || screentextureheight > gl_max_texture_size || bloomtexturewidth > gl_max_texture_size || bloomtextureheight > gl_max_texture_size)
2863         {
2864                 // can't use bloom if the parameters are too weird
2865                 // can't use bloom if the card does not support the texture size
2866                 if (r_bloomstate.texture_screen)
2867                         R_FreeTexture(r_bloomstate.texture_screen);
2868                 if (r_bloomstate.texture_bloom)
2869                         R_FreeTexture(r_bloomstate.texture_bloom);
2870                 memset(&r_bloomstate, 0, sizeof(r_bloomstate));
2871                 return;
2872         }
2873
2874         r_bloomstate.enabled = true;
2875         r_bloomstate.hdr = r_hdr.integer != 0;
2876
2877         // allocate textures as needed
2878         if (r_bloomstate.screentexturewidth != screentexturewidth || r_bloomstate.screentextureheight != screentextureheight)
2879         {
2880                 if (r_bloomstate.texture_screen)
2881                         R_FreeTexture(r_bloomstate.texture_screen);
2882                 r_bloomstate.texture_screen = NULL;
2883                 r_bloomstate.screentexturewidth = screentexturewidth;
2884                 r_bloomstate.screentextureheight = screentextureheight;
2885                 if (r_bloomstate.screentexturewidth && r_bloomstate.screentextureheight)
2886                         r_bloomstate.texture_screen = R_LoadTexture2D(r_main_texturepool, "screen", r_bloomstate.screentexturewidth, r_bloomstate.screentextureheight, NULL, TEXTYPE_BGRA, TEXF_FORCENEAREST | TEXF_CLAMP | TEXF_ALWAYSPRECACHE, NULL);
2887         }
2888         if (r_bloomstate.bloomtexturewidth != bloomtexturewidth || r_bloomstate.bloomtextureheight != bloomtextureheight)
2889         {
2890                 if (r_bloomstate.texture_bloom)
2891                         R_FreeTexture(r_bloomstate.texture_bloom);
2892                 r_bloomstate.texture_bloom = NULL;
2893                 r_bloomstate.bloomtexturewidth = bloomtexturewidth;
2894                 r_bloomstate.bloomtextureheight = bloomtextureheight;
2895                 if (r_bloomstate.bloomtexturewidth && r_bloomstate.bloomtextureheight)
2896                         r_bloomstate.texture_bloom = R_LoadTexture2D(r_main_texturepool, "bloom", r_bloomstate.bloomtexturewidth, r_bloomstate.bloomtextureheight, NULL, TEXTYPE_BGRA, TEXF_FORCELINEAR | TEXF_CLAMP | TEXF_ALWAYSPRECACHE, NULL);
2897         }
2898
2899         // set up a texcoord array for the full resolution screen image
2900         // (we have to keep this around to copy back during final render)
2901         r_bloomstate.screentexcoord2f[0] = 0;
2902         r_bloomstate.screentexcoord2f[1] = (float)r_view.height / (float)r_bloomstate.screentextureheight;
2903         r_bloomstate.screentexcoord2f[2] = (float)r_view.width / (float)r_bloomstate.screentexturewidth;
2904         r_bloomstate.screentexcoord2f[3] = (float)r_view.height / (float)r_bloomstate.screentextureheight;
2905         r_bloomstate.screentexcoord2f[4] = (float)r_view.width / (float)r_bloomstate.screentexturewidth;
2906         r_bloomstate.screentexcoord2f[5] = 0;
2907         r_bloomstate.screentexcoord2f[6] = 0;
2908         r_bloomstate.screentexcoord2f[7] = 0;
2909
2910         // set up a texcoord array for the reduced resolution bloom image
2911         // (which will be additive blended over the screen image)
2912         r_bloomstate.bloomtexcoord2f[0] = 0;
2913         r_bloomstate.bloomtexcoord2f[1] = (float)r_bloomstate.bloomheight / (float)r_bloomstate.bloomtextureheight;
2914         r_bloomstate.bloomtexcoord2f[2] = (float)r_bloomstate.bloomwidth / (float)r_bloomstate.bloomtexturewidth;
2915         r_bloomstate.bloomtexcoord2f[3] = (float)r_bloomstate.bloomheight / (float)r_bloomstate.bloomtextureheight;
2916         r_bloomstate.bloomtexcoord2f[4] = (float)r_bloomstate.bloomwidth / (float)r_bloomstate.bloomtexturewidth;
2917         r_bloomstate.bloomtexcoord2f[5] = 0;
2918         r_bloomstate.bloomtexcoord2f[6] = 0;
2919         r_bloomstate.bloomtexcoord2f[7] = 0;
2920 }
2921
2922 void R_Bloom_CopyScreenTexture(float colorscale)
2923 {
2924         r_refdef.stats.bloom++;
2925
2926         R_ResetViewRendering2D();
2927         R_Mesh_VertexPointer(r_screenvertex3f, 0, 0);
2928         R_Mesh_ColorPointer(NULL, 0, 0);
2929         R_Mesh_TexCoordPointer(0, 2, r_bloomstate.screentexcoord2f, 0, 0);
2930         R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_screen));
2931
2932         // copy view into the screen texture
2933         GL_ActiveTexture(0);
2934         CHECKGLERROR
2935         qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_view.height), r_view.width, r_view.height);CHECKGLERROR
2936         r_refdef.stats.bloom_copypixels += r_view.width * r_view.height;
2937
2938         // now scale it down to the bloom texture size
2939         CHECKGLERROR
2940         qglViewport(r_view.x, vid.height - (r_view.y + r_bloomstate.bloomheight), r_bloomstate.bloomwidth, r_bloomstate.bloomheight);CHECKGLERROR
2941         GL_BlendFunc(GL_ONE, GL_ZERO);
2942         GL_Color(colorscale, colorscale, colorscale, 1);
2943         // TODO: optimize with multitexture or GLSL
2944         R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
2945         r_refdef.stats.bloom_drawpixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
2946
2947         // we now have a bloom image in the framebuffer
2948         // copy it into the bloom image texture for later processing
2949         R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
2950         GL_ActiveTexture(0);
2951         CHECKGLERROR
2952         qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_bloomstate.bloomheight), r_bloomstate.bloomwidth, r_bloomstate.bloomheight);CHECKGLERROR
2953         r_refdef.stats.bloom_copypixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
2954 }
2955
2956 void R_Bloom_CopyHDRTexture(void)
2957 {
2958         R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
2959         GL_ActiveTexture(0);
2960         CHECKGLERROR
2961         qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_view.height), r_view.width, r_view.height);CHECKGLERROR
2962         r_refdef.stats.bloom_copypixels += r_view.width * r_view.height;
2963 }
2964
2965 void R_Bloom_MakeTexture(void)
2966 {
2967         int x, range, dir;
2968         float xoffset, yoffset, r, brighten;
2969
2970         r_refdef.stats.bloom++;
2971
2972         R_ResetViewRendering2D();
2973         R_Mesh_VertexPointer(r_screenvertex3f, 0, 0);
2974         R_Mesh_ColorPointer(NULL, 0, 0);
2975
2976         // we have a bloom image in the framebuffer
2977         CHECKGLERROR
2978         qglViewport(r_view.x, vid.height - (r_view.y + r_bloomstate.bloomheight), r_bloomstate.bloomwidth, r_bloomstate.bloomheight);CHECKGLERROR
2979
2980         for (x = 1;x < min(r_bloom_colorexponent.value, 32);)
2981         {
2982                 x *= 2;
2983                 r = bound(0, r_bloom_colorexponent.value / x, 1);
2984                 GL_BlendFunc(GL_DST_COLOR, GL_SRC_COLOR);
2985                 GL_Color(r, r, r, 1);
2986                 R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
2987                 R_Mesh_TexCoordPointer(0, 2, r_bloomstate.bloomtexcoord2f, 0, 0);
2988                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
2989                 r_refdef.stats.bloom_drawpixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
2990
2991                 // copy the vertically blurred bloom view to a texture
2992                 GL_ActiveTexture(0);
2993                 CHECKGLERROR
2994                 qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_bloomstate.bloomheight), r_bloomstate.bloomwidth, r_bloomstate.bloomheight);CHECKGLERROR
2995                 r_refdef.stats.bloom_copypixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
2996         }
2997
2998         range = r_bloom_blur.integer * r_bloomstate.bloomwidth / 320;
2999         brighten = r_bloom_brighten.value;
3000         if (r_hdr.integer)
3001                 brighten *= r_hdr_range.value;
3002         R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
3003         R_Mesh_TexCoordPointer(0, 2, r_bloomstate.offsettexcoord2f, 0, 0);
3004
3005         for (dir = 0;dir < 2;dir++)
3006         {
3007                 // blend on at multiple vertical offsets to achieve a vertical blur
3008                 // TODO: do offset blends using GLSL
3009                 GL_BlendFunc(GL_ONE, GL_ZERO);
3010                 for (x = -range;x <= range;x++)
3011                 {
3012                         if (!dir){xoffset = 0;yoffset = x;}
3013                         else {xoffset = x;yoffset = 0;}
3014                         xoffset /= (float)r_bloomstate.bloomtexturewidth;
3015                         yoffset /= (float)r_bloomstate.bloomtextureheight;
3016                         // compute a texcoord array with the specified x and y offset
3017                         r_bloomstate.offsettexcoord2f[0] = xoffset+0;
3018                         r_bloomstate.offsettexcoord2f[1] = yoffset+(float)r_bloomstate.bloomheight / (float)r_bloomstate.bloomtextureheight;
3019                         r_bloomstate.offsettexcoord2f[2] = xoffset+(float)r_bloomstate.bloomwidth / (float)r_bloomstate.bloomtexturewidth;
3020                         r_bloomstate.offsettexcoord2f[3] = yoffset+(float)r_bloomstate.bloomheight / (float)r_bloomstate.bloomtextureheight;
3021                         r_bloomstate.offsettexcoord2f[4] = xoffset+(float)r_bloomstate.bloomwidth / (float)r_bloomstate.bloomtexturewidth;
3022                         r_bloomstate.offsettexcoord2f[5] = yoffset+0;
3023                         r_bloomstate.offsettexcoord2f[6] = xoffset+0;
3024                         r_bloomstate.offsettexcoord2f[7] = yoffset+0;
3025                         // this r value looks like a 'dot' particle, fading sharply to
3026                         // black at the edges
3027                         // (probably not realistic but looks good enough)
3028                         //r = ((range*range+1)/((float)(x*x+1)))/(range*2+1);
3029                         //r = (dir ? 1.0f : brighten)/(range*2+1);
3030                         r = (dir ? 1.0f : brighten)/(range*2+1)*(1 - x*x/(float)(range*range));
3031                         GL_Color(r, r, r, 1);
3032                         R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3033                         r_refdef.stats.bloom_drawpixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
3034                         GL_BlendFunc(GL_ONE, GL_ONE);
3035                 }
3036
3037                 // copy the vertically blurred bloom view to a texture
3038                 GL_ActiveTexture(0);
3039                 CHECKGLERROR
3040                 qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_bloomstate.bloomheight), r_bloomstate.bloomwidth, r_bloomstate.bloomheight);CHECKGLERROR
3041                 r_refdef.stats.bloom_copypixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
3042         }
3043
3044         // apply subtract last
3045         // (just like it would be in a GLSL shader)
3046         if (r_bloom_colorsubtract.value > 0 && gl_support_ext_blend_subtract)
3047         {
3048                 GL_BlendFunc(GL_ONE, GL_ZERO);
3049                 R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
3050                 R_Mesh_TexCoordPointer(0, 2, r_bloomstate.bloomtexcoord2f, 0, 0);
3051                 GL_Color(1, 1, 1, 1);
3052                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3053                 r_refdef.stats.bloom_drawpixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
3054
3055                 GL_BlendFunc(GL_ONE, GL_ONE);
3056                 qglBlendEquationEXT(GL_FUNC_REVERSE_SUBTRACT_EXT);
3057                 R_Mesh_TexBind(0, R_GetTexture(r_texture_white));
3058                 R_Mesh_TexCoordPointer(0, 2, r_bloomstate.bloomtexcoord2f, 0, 0);
3059                 GL_Color(r_bloom_colorsubtract.value, r_bloom_colorsubtract.value, r_bloom_colorsubtract.value, 1);
3060                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3061                 r_refdef.stats.bloom_drawpixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
3062                 qglBlendEquationEXT(GL_FUNC_ADD_EXT);
3063
3064                 // copy the darkened bloom view to a texture
3065                 R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
3066                 GL_ActiveTexture(0);
3067                 CHECKGLERROR
3068                 qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, r_view.x, vid.height - (r_view.y + r_bloomstate.bloomheight), r_bloomstate.bloomwidth, r_bloomstate.bloomheight);CHECKGLERROR
3069                 r_refdef.stats.bloom_copypixels += r_bloomstate.bloomwidth * r_bloomstate.bloomheight;
3070         }
3071 }
3072
3073 static void R_UpdateFogColor(void); // needs to be called before HDR subrender too, as that changes colorscale!
3074
3075 void R_HDR_RenderBloomTexture(void)
3076 {
3077         int oldwidth, oldheight;
3078
3079         oldwidth = r_view.width;
3080         oldheight = r_view.height;
3081         r_view.width = r_bloomstate.bloomwidth;
3082         r_view.height = r_bloomstate.bloomheight;
3083
3084         // TODO: support GL_EXT_framebuffer_object rather than reusing the framebuffer?  it might improve SLI performance.
3085         // TODO: add exposure compensation features
3086         // TODO: add fp16 framebuffer support
3087
3088         r_view.showdebug = false;
3089         r_view.colorscale = r_bloom_colorscale.value * r_hdr_scenebrightness.value;
3090         if (r_hdr.integer)
3091                 r_view.colorscale /= r_hdr_range.value;
3092
3093         R_UpdateFogColor();
3094
3095         r_waterstate.numwaterplanes = 0;
3096         R_RenderScene(r_waterstate.enabled);
3097         r_view.showdebug = true;
3098
3099         R_ResetViewRendering2D();
3100
3101         R_Bloom_CopyHDRTexture();
3102         R_Bloom_MakeTexture();
3103
3104         R_ResetViewRendering3D();
3105
3106         R_ClearScreen();
3107         if (r_timereport_active)
3108                 R_TimeReport("viewclear");
3109
3110         // restore the view settings
3111         r_view.width = oldwidth;
3112         r_view.height = oldheight;
3113 }
3114
3115 static void R_BlendView(void)
3116 {
3117         if (r_bloomstate.enabled && r_bloomstate.hdr)
3118         {
3119                 // render high dynamic range bloom effect
3120                 // the bloom texture was made earlier this render, so we just need to
3121                 // blend it onto the screen...
3122                 R_ResetViewRendering2D();
3123                 R_Mesh_VertexPointer(r_screenvertex3f, 0, 0);
3124                 R_Mesh_ColorPointer(NULL, 0, 0);
3125                 GL_Color(1, 1, 1, 1);
3126                 GL_BlendFunc(GL_ONE, GL_ONE);
3127                 R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
3128                 R_Mesh_TexCoordPointer(0, 2, r_bloomstate.bloomtexcoord2f, 0, 0);
3129                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3130                 r_refdef.stats.bloom_drawpixels += r_view.width * r_view.height;
3131         }
3132         else if (r_bloomstate.enabled)
3133         {
3134                 // render simple bloom effect
3135                 // copy the screen and shrink it and darken it for the bloom process
3136                 R_Bloom_CopyScreenTexture(r_bloom_colorscale.value);
3137                 // make the bloom texture
3138                 R_Bloom_MakeTexture();
3139                 // put the original screen image back in place and blend the bloom
3140                 // texture on it
3141                 R_ResetViewRendering2D();
3142                 R_Mesh_VertexPointer(r_screenvertex3f, 0, 0);
3143                 R_Mesh_ColorPointer(NULL, 0, 0);
3144                 GL_Color(1, 1, 1, 1);
3145                 GL_BlendFunc(GL_ONE, GL_ZERO);
3146                 // do both in one pass if possible
3147                 R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_bloom));
3148                 R_Mesh_TexCoordPointer(0, 2, r_bloomstate.bloomtexcoord2f, 0, 0);
3149                 if (r_textureunits.integer >= 2 && gl_combine.integer)
3150                 {
3151                         R_Mesh_TexCombine(1, GL_ADD, GL_ADD, 1, 1);
3152                         R_Mesh_TexBind(1, R_GetTexture(r_bloomstate.texture_screen));
3153                         R_Mesh_TexCoordPointer(1, 2, r_bloomstate.screentexcoord2f, 0, 0);
3154                 }
3155                 else
3156                 {
3157                         R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3158                         r_refdef.stats.bloom_drawpixels += r_view.width * r_view.height;
3159                         // now blend on the bloom texture
3160                         GL_BlendFunc(GL_ONE, GL_ONE);
3161                         R_Mesh_TexBind(0, R_GetTexture(r_bloomstate.texture_screen));
3162                         R_Mesh_TexCoordPointer(0, 2, r_bloomstate.screentexcoord2f, 0, 0);
3163                 }
3164                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3165                 r_refdef.stats.bloom_drawpixels += r_view.width * r_view.height;
3166         }
3167         if (r_refdef.viewblend[3] >= (1.0f / 256.0f))
3168         {
3169                 // apply a color tint to the whole view
3170                 R_ResetViewRendering2D();
3171                 R_Mesh_VertexPointer(r_screenvertex3f, 0, 0);
3172                 R_Mesh_ColorPointer(NULL, 0, 0);
3173                 GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
3174                 GL_Color(r_refdef.viewblend[0], r_refdef.viewblend[1], r_refdef.viewblend[2], r_refdef.viewblend[3]);
3175                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3176         }
3177 }
3178
3179 void R_RenderScene(qboolean addwaterplanes);
3180
3181 matrix4x4_t r_waterscrollmatrix;
3182
3183 static void R_UpdateFogColor(void) // needs to be called before HDR subrender too, as that changes colorscale!
3184 {
3185         if (r_refdef.fog_density)
3186         {
3187                 r_refdef.fogcolor[0] = r_refdef.fog_red;
3188                 r_refdef.fogcolor[1] = r_refdef.fog_green;
3189                 r_refdef.fogcolor[2] = r_refdef.fog_blue;
3190
3191                 {
3192                         vec3_t fogvec;
3193                         //   color.rgb *= SceneBrightness;
3194                         VectorScale(r_refdef.fogcolor, r_view.colorscale, fogvec);
3195                         if(r_glsl.integer && (r_glsl_contrastboost.value > 1 || r_glsl_contrastboost.value < 0)) // need to support contrast boost
3196                         {
3197                                 //   color.rgb *= ContrastBoost / ((ContrastBoost - 1) * color.rgb + 1);
3198                                 fogvec[0] *= r_glsl_contrastboost.value / ((r_glsl_contrastboost.value - 1) * fogvec[0] + 1);
3199                                 fogvec[1] *= r_glsl_contrastboost.value / ((r_glsl_contrastboost.value - 1) * fogvec[1] + 1);
3200                                 fogvec[2] *= r_glsl_contrastboost.value / ((r_glsl_contrastboost.value - 1) * fogvec[2] + 1);
3201                         }
3202                         r_refdef.fogcolor[0] = bound(0.0f, fogvec[0], 1.0f);
3203                         r_refdef.fogcolor[1] = bound(0.0f, fogvec[1], 1.0f);
3204                         r_refdef.fogcolor[2] = bound(0.0f, fogvec[2], 1.0f);
3205                 }
3206         }
3207 }
3208
3209 void R_UpdateVariables(void)
3210 {
3211         R_Textures_Frame();
3212
3213         r_refdef.farclip = 4096;
3214         if (r_refdef.worldmodel)
3215                 r_refdef.farclip += VectorDistance(r_refdef.worldmodel->normalmins, r_refdef.worldmodel->normalmaxs);
3216         r_refdef.nearclip = bound (0.001f, r_nearclip.value, r_refdef.farclip - 1.0f);
3217
3218         if (r_shadow_frontsidecasting.integer < 0 || r_shadow_frontsidecasting.integer > 1)
3219                 Cvar_SetValueQuick(&r_shadow_frontsidecasting, 1);
3220         r_refdef.polygonfactor = 0;
3221         r_refdef.polygonoffset = 0;
3222         r_refdef.shadowpolygonfactor = r_refdef.polygonfactor + r_shadow_polygonfactor.value * (r_shadow_frontsidecasting.integer ? 1 : -1);
3223         r_refdef.shadowpolygonoffset = r_refdef.polygonoffset + r_shadow_polygonoffset.value * (r_shadow_frontsidecasting.integer ? 1 : -1);
3224
3225         r_refdef.rtworld = r_shadow_realtime_world.integer;
3226         r_refdef.rtworldshadows = r_shadow_realtime_world_shadows.integer && gl_stencil;
3227         r_refdef.rtdlight = (r_shadow_realtime_world.integer || r_shadow_realtime_dlight.integer) && !gl_flashblend.integer && r_dynamic.integer;
3228         r_refdef.rtdlightshadows = r_refdef.rtdlight && r_shadow_realtime_dlight_shadows.integer && gl_stencil;
3229         r_refdef.lightmapintensity = r_refdef.rtworld ? r_shadow_realtime_world_lightmaps.value : 1;
3230         if (r_showsurfaces.integer)
3231         {
3232                 r_refdef.rtworld = false;
3233                 r_refdef.rtworldshadows = false;
3234                 r_refdef.rtdlight = false;
3235                 r_refdef.rtdlightshadows = false;
3236                 r_refdef.lightmapintensity = 0;
3237         }
3238
3239         if (gamemode == GAME_NEHAHRA)
3240         {
3241                 if (gl_fogenable.integer)
3242                 {
3243                         r_refdef.oldgl_fogenable = true;
3244                         r_refdef.fog_density = gl_fogdensity.value;
3245                         r_refdef.fog_red = gl_fogred.value;
3246                         r_refdef.fog_green = gl_foggreen.value;
3247                         r_refdef.fog_blue = gl_fogblue.value;
3248                 }
3249                 else if (r_refdef.oldgl_fogenable)
3250                 {
3251                         r_refdef.oldgl_fogenable = false;
3252                         r_refdef.fog_density = 0;
3253                         r_refdef.fog_red = 0;
3254                         r_refdef.fog_green = 0;
3255                         r_refdef.fog_blue = 0;
3256                 }
3257         }
3258
3259         if (r_refdef.fog_start >= r_refdef.fog_end || r_refdef.fog_start < 0)
3260         {
3261                 r_refdef.fog_start = 0;
3262                 r_refdef.fog_end = 1000000000;
3263                 // TODO update fog cvars here too
3264         }
3265
3266         R_UpdateFogColor();
3267
3268         if (r_refdef.fog_density)
3269         {
3270                 r_refdef.fogenabled = true;
3271                 // this is the point where the fog reaches 0.9986 alpha, which we
3272                 // consider a good enough cutoff point for the texture
3273                 // (0.9986 * 256 == 255.6)
3274                 r_refdef.fogrange = 16 / (r_refdef.fog_density * r_refdef.fog_density);
3275                 r_refdef.fograngerecip = 1.0f / r_refdef.fogrange;
3276                 r_refdef.fogmasktabledistmultiplier = FOGMASKTABLEWIDTH * r_refdef.fograngerecip;
3277                 // fog color was already set
3278         }
3279         else
3280                 r_refdef.fogenabled = false;
3281 }
3282
3283 /*
3284 ================
3285 R_RenderView
3286 ================
3287 */
3288 void R_RenderView(void)
3289 {
3290         if (!r_refdef.entities/* || !r_refdef.worldmodel*/)
3291                 return; //Host_Error ("R_RenderView: NULL worldmodel");
3292
3293         R_Shadow_UpdateWorldLightSelection();
3294
3295         R_Bloom_StartFrame();
3296         R_Water_StartFrame();
3297
3298         CHECKGLERROR
3299         if (r_timereport_active)
3300                 R_TimeReport("viewsetup");
3301
3302         R_ResetViewRendering3D();
3303
3304         if (r_view.clear)
3305         {
3306                 R_ClearScreen();
3307                 if (r_timereport_active)
3308                         R_TimeReport("viewclear");
3309         }
3310         r_view.clear = true;
3311
3312         r_view.showdebug = true;
3313
3314         // this produces a bloom texture to be used in R_BlendView() later
3315         if (r_hdr.integer)
3316                 R_HDR_RenderBloomTexture();
3317
3318         r_view.colorscale = r_hdr_scenebrightness.value;
3319         r_waterstate.numwaterplanes = 0;
3320         R_RenderScene(r_waterstate.enabled);
3321
3322         R_BlendView();
3323         if (r_timereport_active)
3324                 R_TimeReport("blendview");
3325
3326         GL_Scissor(0, 0, vid.width, vid.height);
3327         GL_ScissorTest(false);
3328         CHECKGLERROR
3329 }
3330
3331 extern void R_DrawLightningBeams (void);
3332 extern void VM_CL_AddPolygonsToMeshQueue (void);
3333 extern void R_DrawPortals (void);
3334 extern cvar_t cl_locs_show;
3335 static void R_DrawLocs(void);
3336 static void R_DrawEntityBBoxes(void);
3337 void R_RenderScene(qboolean addwaterplanes)
3338 {
3339         if (addwaterplanes)
3340         {
3341                 R_ResetViewRendering3D();
3342
3343                 R_View_Update();
3344                 if (r_timereport_active)
3345                         R_TimeReport("watervis");
3346
3347                 if (cl.csqc_vidvars.drawworld && r_refdef.worldmodel && r_refdef.worldmodel->DrawAddWaterPlanes)
3348                 {
3349                         r_refdef.worldmodel->DrawAddWaterPlanes(r_refdef.worldentity);
3350                         if (r_timereport_active)
3351                                 R_TimeReport("waterworld");
3352                 }
3353
3354                 // don't let sound skip if going slow
3355                 if (r_refdef.extraupdate)
3356                         S_ExtraUpdate ();
3357
3358                 R_DrawModelsAddWaterPlanes();
3359                 if (r_timereport_active)
3360                         R_TimeReport("watermodels");
3361
3362                 R_Water_ProcessPlanes();
3363                 if (r_timereport_active)
3364                         R_TimeReport("waterscenes");
3365         }
3366
3367         R_ResetViewRendering3D();
3368
3369         // don't let sound skip if going slow
3370         if (r_refdef.extraupdate)
3371                 S_ExtraUpdate ();
3372
3373         R_MeshQueue_BeginScene();
3374
3375         R_SkyStartFrame();
3376
3377         R_View_Update();
3378         if (r_timereport_active)
3379                 R_TimeReport("visibility");
3380
3381         Matrix4x4_CreateTranslate(&r_waterscrollmatrix, sin(r_refdef.time) * 0.025 * r_waterscroll.value, sin(r_refdef.time * 0.8f) * 0.025 * r_waterscroll.value, 0);
3382
3383         if (cl.csqc_vidvars.drawworld)
3384         {
3385                 // don't let sound skip if going slow
3386                 if (r_refdef.extraupdate)
3387                         S_ExtraUpdate ();
3388
3389                 if (r_refdef.worldmodel && r_refdef.worldmodel->DrawSky)
3390                 {
3391                         r_refdef.worldmodel->DrawSky(r_refdef.worldentity);
3392                         if (r_timereport_active)
3393                                 R_TimeReport("worldsky");
3394                 }
3395
3396                 if (R_DrawBrushModelsSky() && r_timereport_active)
3397                         R_TimeReport("bmodelsky");
3398         }
3399
3400         if (r_depthfirst.integer >= 1 && cl.csqc_vidvars.drawworld && r_refdef.worldmodel && r_refdef.worldmodel->DrawDepth)
3401         {
3402                 r_refdef.worldmodel->DrawDepth(r_refdef.worldentity);
3403                 if (r_timereport_active)
3404                         R_TimeReport("worlddepth");
3405         }
3406         if (r_depthfirst.integer >= 2)
3407         {
3408                 R_DrawModelsDepth();
3409                 if (r_timereport_active)
3410                         R_TimeReport("modeldepth");
3411         }
3412
3413         if (cl.csqc_vidvars.drawworld && r_refdef.worldmodel && r_refdef.worldmodel->Draw)
3414         {
3415                 r_refdef.worldmodel->Draw(r_refdef.worldentity);
3416                 if (r_timereport_active)
3417                         R_TimeReport("world");
3418         }
3419
3420         // don't let sound skip if going slow
3421         if (r_refdef.extraupdate)
3422                 S_ExtraUpdate ();
3423
3424         R_DrawModels();
3425         if (r_timereport_active)
3426                 R_TimeReport("models");
3427
3428         // don't let sound skip if going slow
3429         if (r_refdef.extraupdate)
3430                 S_ExtraUpdate ();
3431
3432         if (r_shadows.integer > 0 && r_refdef.lightmapintensity > 0)
3433         {
3434                 R_DrawModelShadows();
3435
3436                 R_ResetViewRendering3D();
3437
3438                 // don't let sound skip if going slow
3439                 if (r_refdef.extraupdate)
3440                         S_ExtraUpdate ();
3441         }
3442
3443         R_ShadowVolumeLighting(false);
3444         if (r_timereport_active)
3445                 R_TimeReport("rtlights");
3446
3447         // don't let sound skip if going slow
3448         if (r_refdef.extraupdate)
3449                 S_ExtraUpdate ();
3450
3451         if (cl.csqc_vidvars.drawworld)
3452         {
3453                 R_DrawLightningBeams();
3454                 if (r_timereport_active)
3455                         R_TimeReport("lightning");
3456
3457                 R_DrawDecals();
3458                 if (r_timereport_active)
3459                         R_TimeReport("decals");
3460
3461                 R_DrawParticles();
3462                 if (r_timereport_active)
3463                         R_TimeReport("particles");
3464
3465                 R_DrawExplosions();
3466                 if (r_timereport_active)
3467                         R_TimeReport("explosions");
3468         }
3469
3470         if (gl_support_fragment_shader)
3471         {
3472                 qglUseProgramObjectARB(0);CHECKGLERROR
3473         }
3474         VM_CL_AddPolygonsToMeshQueue();
3475
3476         if (r_view.showdebug)
3477         {
3478                 if (cl_locs_show.integer)
3479                 {
3480                         R_DrawLocs();
3481                         if (r_timereport_active)
3482                                 R_TimeReport("showlocs");
3483                 }
3484
3485                 if (r_drawportals.integer)
3486                 {
3487                         R_DrawPortals();
3488                         if (r_timereport_active)
3489                                 R_TimeReport("portals");
3490                 }
3491
3492                 if (r_showbboxes.value > 0)
3493                 {
3494                         R_DrawEntityBBoxes();
3495                         if (r_timereport_active)
3496                                 R_TimeReport("bboxes");
3497                 }
3498         }
3499
3500         if (gl_support_fragment_shader)
3501         {
3502                 qglUseProgramObjectARB(0);CHECKGLERROR
3503         }
3504         R_MeshQueue_RenderTransparent();
3505         if (r_timereport_active)
3506                 R_TimeReport("drawtrans");
3507
3508         if (gl_support_fragment_shader)
3509         {
3510                 qglUseProgramObjectARB(0);CHECKGLERROR
3511         }
3512
3513         if (r_view.showdebug && r_refdef.worldmodel && r_refdef.worldmodel->DrawDebug && (r_showtris.value > 0 || r_shownormals.value > 0 || r_showcollisionbrushes.value > 0))
3514         {
3515                 r_refdef.worldmodel->DrawDebug(r_refdef.worldentity);
3516                 if (r_timereport_active)
3517                         R_TimeReport("worlddebug");
3518                 R_DrawModelsDebug();
3519                 if (r_timereport_active)
3520                         R_TimeReport("modeldebug");
3521         }
3522
3523         if (gl_support_fragment_shader)
3524         {
3525                 qglUseProgramObjectARB(0);CHECKGLERROR
3526         }
3527
3528         if (cl.csqc_vidvars.drawworld)
3529         {
3530                 R_DrawCoronas();
3531                 if (r_timereport_active)
3532                         R_TimeReport("coronas");
3533         }
3534
3535         // don't let sound skip if going slow
3536         if (r_refdef.extraupdate)
3537                 S_ExtraUpdate ();
3538
3539         R_ResetViewRendering2D();
3540 }
3541
3542 static const int bboxelements[36] =
3543 {
3544         5, 1, 3, 5, 3, 7,
3545         6, 2, 0, 6, 0, 4,
3546         7, 3, 2, 7, 2, 6,
3547         4, 0, 1, 4, 1, 5,
3548         4, 5, 7, 4, 7, 6,
3549         1, 0, 2, 1, 2, 3,
3550 };
3551
3552 void R_DrawBBoxMesh(vec3_t mins, vec3_t maxs, float cr, float cg, float cb, float ca)
3553 {
3554         int i;
3555         float *v, *c, f1, f2, vertex3f[8*3], color4f[8*4];
3556         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
3557         GL_DepthMask(false);
3558         GL_DepthRange(0, 1);
3559         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
3560         R_Mesh_Matrix(&identitymatrix);
3561         R_Mesh_ResetTextureState();
3562
3563         vertex3f[ 0] = mins[0];vertex3f[ 1] = mins[1];vertex3f[ 2] = mins[2]; //
3564         vertex3f[ 3] = maxs[0];vertex3f[ 4] = mins[1];vertex3f[ 5] = mins[2];
3565         vertex3f[ 6] = mins[0];vertex3f[ 7] = maxs[1];vertex3f[ 8] = mins[2];
3566         vertex3f[ 9] = maxs[0];vertex3f[10] = maxs[1];vertex3f[11] = mins[2];
3567         vertex3f[12] = mins[0];vertex3f[13] = mins[1];vertex3f[14] = maxs[2];
3568         vertex3f[15] = maxs[0];vertex3f[16] = mins[1];vertex3f[17] = maxs[2];
3569         vertex3f[18] = mins[0];vertex3f[19] = maxs[1];vertex3f[20] = maxs[2];
3570         vertex3f[21] = maxs[0];vertex3f[22] = maxs[1];vertex3f[23] = maxs[2];
3571         R_FillColors(color4f, 8, cr, cg, cb, ca);
3572         if (r_refdef.fogenabled)
3573         {
3574                 for (i = 0, v = vertex3f, c = color4f;i < 8;i++, v += 3, c += 4)
3575                 {
3576                         f1 = FogPoint_World(v);
3577                         f2 = 1 - f1;
3578                         c[0] = c[0] * f1 + r_refdef.fogcolor[0] * f2;
3579                         c[1] = c[1] * f1 + r_refdef.fogcolor[1] * f2;
3580                         c[2] = c[2] * f1 + r_refdef.fogcolor[2] * f2;
3581                 }
3582         }
3583         R_Mesh_VertexPointer(vertex3f, 0, 0);
3584         R_Mesh_ColorPointer(color4f, 0, 0);
3585         R_Mesh_ResetTextureState();
3586         R_Mesh_Draw(0, 8, 12, bboxelements, 0, 0);
3587 }
3588
3589 static void R_DrawEntityBBoxes_Callback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
3590 {
3591         int i;
3592         float color[4];
3593         prvm_edict_t *edict;
3594         // this function draws bounding boxes of server entities
3595         if (!sv.active)
3596                 return;
3597         SV_VM_Begin();
3598         for (i = 0;i < numsurfaces;i++)
3599         {
3600                 edict = PRVM_EDICT_NUM(surfacelist[i]);
3601                 switch ((int)edict->fields.server->solid)
3602                 {
3603                         case SOLID_NOT:      Vector4Set(color, 1, 1, 1, 0.05);break;
3604                         case SOLID_TRIGGER:  Vector4Set(color, 1, 0, 1, 0.10);break;
3605                         case SOLID_BBOX:     Vector4Set(color, 0, 1, 0, 0.10);break;
3606                         case SOLID_SLIDEBOX: Vector4Set(color, 1, 0, 0, 0.10);break;
3607                         case SOLID_BSP:      Vector4Set(color, 0, 0, 1, 0.05);break;
3608                         default:             Vector4Set(color, 0, 0, 0, 0.50);break;
3609                 }
3610                 color[3] *= r_showbboxes.value;
3611                 color[3] = bound(0, color[3], 1);
3612                 GL_DepthTest(!r_showdisabledepthtest.integer);
3613                 GL_CullFace(r_view.cullface_front);
3614                 R_DrawBBoxMesh(edict->priv.server->areamins, edict->priv.server->areamaxs, color[0], color[1], color[2], color[3]);
3615         }
3616         SV_VM_End();
3617 }
3618
3619 static void R_DrawEntityBBoxes(void)
3620 {
3621         int i;
3622         prvm_edict_t *edict;
3623         vec3_t center;
3624         // this function draws bounding boxes of server entities
3625         if (!sv.active)
3626                 return;
3627         SV_VM_Begin();
3628         for (i = 0;i < prog->num_edicts;i++)
3629         {
3630                 edict = PRVM_EDICT_NUM(i);
3631                 if (edict->priv.server->free)
3632                         continue;
3633                 VectorLerp(edict->priv.server->areamins, 0.5f, edict->priv.server->areamaxs, center);
3634                 R_MeshQueue_AddTransparent(center, R_DrawEntityBBoxes_Callback, (entity_render_t *)NULL, i, (rtlight_t *)NULL);
3635         }
3636         SV_VM_End();
3637 }
3638
3639 int nomodelelements[24] =
3640 {
3641         5, 2, 0,
3642         5, 1, 2,
3643         5, 0, 3,
3644         5, 3, 1,
3645         0, 2, 4,
3646         2, 1, 4,
3647         3, 0, 4,
3648         1, 3, 4
3649 };
3650
3651 float nomodelvertex3f[6*3] =
3652 {
3653         -16,   0,   0,
3654          16,   0,   0,
3655           0, -16,   0,
3656           0,  16,   0,
3657           0,   0, -16,
3658           0,   0,  16
3659 };
3660
3661 float nomodelcolor4f[6*4] =
3662 {
3663         0.0f, 0.0f, 0.5f, 1.0f,
3664         0.0f, 0.0f, 0.5f, 1.0f,
3665         0.0f, 0.5f, 0.0f, 1.0f,
3666         0.0f, 0.5f, 0.0f, 1.0f,
3667         0.5f, 0.0f, 0.0f, 1.0f,
3668         0.5f, 0.0f, 0.0f, 1.0f
3669 };
3670
3671 void R_DrawNoModel_TransparentCallback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
3672 {
3673         int i;
3674         float f1, f2, *c;
3675         float color4f[6*4];
3676         // this is only called once per entity so numsurfaces is always 1, and
3677         // surfacelist is always {0}, so this code does not handle batches
3678         R_Mesh_Matrix(&ent->matrix);
3679
3680         if (ent->flags & EF_ADDITIVE)
3681         {
3682                 GL_BlendFunc(GL_SRC_ALPHA, GL_ONE);
3683                 GL_DepthMask(false);
3684         }
3685         else if (ent->alpha < 1)
3686         {
3687                 GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
3688                 GL_DepthMask(false);
3689         }
3690         else
3691         {
3692                 GL_BlendFunc(GL_ONE, GL_ZERO);
3693                 GL_DepthMask(true);
3694         }
3695         GL_DepthRange(0, (ent->flags & RENDER_VIEWMODEL) ? 0.0625 : 1);
3696         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
3697         GL_DepthTest(!(ent->effects & EF_NODEPTHTEST));
3698         GL_CullFace((ent->effects & EF_DOUBLESIDED) ? GL_NONE : r_view.cullface_back);
3699         R_Mesh_VertexPointer(nomodelvertex3f, 0, 0);
3700         if (r_refdef.fogenabled)
3701         {
3702                 vec3_t org;
3703                 memcpy(color4f, nomodelcolor4f, sizeof(float[6*4]));
3704                 R_Mesh_ColorPointer(color4f, 0, 0);
3705                 Matrix4x4_OriginFromMatrix(&ent->matrix, org);
3706                 f1 = FogPoint_World(org);
3707                 f2 = 1 - f1;
3708                 for (i = 0, c = color4f;i < 6;i++, c += 4)
3709                 {
3710                         c[0] = (c[0] * f1 + r_refdef.fogcolor[0] * f2);
3711                         c[1] = (c[1] * f1 + r_refdef.fogcolor[1] * f2);
3712                         c[2] = (c[2] * f1 + r_refdef.fogcolor[2] * f2);
3713                         c[3] *= ent->alpha;
3714                 }
3715         }
3716         else if (ent->alpha != 1)
3717         {
3718                 memcpy(color4f, nomodelcolor4f, sizeof(float[6*4]));
3719                 R_Mesh_ColorPointer(color4f, 0, 0);
3720                 for (i = 0, c = color4f;i < 6;i++, c += 4)
3721                         c[3] *= ent->alpha;
3722         }
3723         else
3724                 R_Mesh_ColorPointer(nomodelcolor4f, 0, 0);
3725         R_Mesh_ResetTextureState();
3726         R_Mesh_Draw(0, 6, 8, nomodelelements, 0, 0);
3727 }
3728
3729 void R_DrawNoModel(entity_render_t *ent)
3730 {
3731         vec3_t org;
3732         Matrix4x4_OriginFromMatrix(&ent->matrix, org);
3733         //if ((ent->effects & EF_ADDITIVE) || (ent->alpha < 1))
3734                 R_MeshQueue_AddTransparent(ent->effects & EF_NODEPTHTEST ? r_view.origin : org, R_DrawNoModel_TransparentCallback, ent, 0, rsurface.rtlight);
3735         //else
3736         //      R_DrawNoModelCallback(ent, 0);
3737 }
3738
3739 void R_CalcBeam_Vertex3f (float *vert, const vec3_t org1, const vec3_t org2, float width)
3740 {
3741         vec3_t right1, right2, diff, normal;
3742
3743         VectorSubtract (org2, org1, normal);
3744
3745         // calculate 'right' vector for start
3746         VectorSubtract (r_view.origin, org1, diff);
3747         CrossProduct (normal, diff, right1);
3748         VectorNormalize (right1);
3749
3750         // calculate 'right' vector for end
3751         VectorSubtract (r_view.origin, org2, diff);
3752         CrossProduct (normal, diff, right2);
3753         VectorNormalize (right2);
3754
3755         vert[ 0] = org1[0] + width * right1[0];
3756         vert[ 1] = org1[1] + width * right1[1];
3757         vert[ 2] = org1[2] + width * right1[2];
3758         vert[ 3] = org1[0] - width * right1[0];
3759         vert[ 4] = org1[1] - width * right1[1];
3760         vert[ 5] = org1[2] - width * right1[2];
3761         vert[ 6] = org2[0] - width * right2[0];
3762         vert[ 7] = org2[1] - width * right2[1];
3763         vert[ 8] = org2[2] - width * right2[2];
3764         vert[ 9] = org2[0] + width * right2[0];
3765         vert[10] = org2[1] + width * right2[1];
3766         vert[11] = org2[2] + width * right2[2];
3767 }
3768
3769 float spritetexcoord2f[4*2] = {0, 1, 0, 0, 1, 0, 1, 1};
3770
3771 void R_DrawSprite(int blendfunc1, int blendfunc2, rtexture_t *texture, rtexture_t *fogtexture, qboolean depthdisable, qboolean depthshort, const vec3_t origin, const vec3_t left, const vec3_t up, float scalex1, float scalex2, float scaley1, float scaley2, float cr, float cg, float cb, float ca)
3772 {
3773         float fog = 1.0f;
3774         float vertex3f[12];
3775
3776         if (r_refdef.fogenabled)
3777                 fog = FogPoint_World(origin);
3778
3779         R_Mesh_Matrix(&identitymatrix);
3780         GL_BlendFunc(blendfunc1, blendfunc2);
3781
3782         if(v_flipped_state)
3783         {
3784                 scalex1 = -scalex1;
3785                 scalex2 = -scalex2;
3786                 GL_CullFace(r_view.cullface_front);
3787         }
3788         else
3789                 GL_CullFace(r_view.cullface_back);
3790
3791         GL_DepthMask(false);
3792         GL_DepthRange(0, depthshort ? 0.0625 : 1);
3793         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
3794         GL_DepthTest(!depthdisable);
3795
3796         vertex3f[ 0] = origin[0] + left[0] * scalex2 + up[0] * scaley1;
3797         vertex3f[ 1] = origin[1] + left[1] * scalex2 + up[1] * scaley1;
3798         vertex3f[ 2] = origin[2] + left[2] * scalex2 + up[2] * scaley1;
3799         vertex3f[ 3] = origin[0] + left[0] * scalex2 + up[0] * scaley2;
3800         vertex3f[ 4] = origin[1] + left[1] * scalex2 + up[1] * scaley2;
3801         vertex3f[ 5] = origin[2] + left[2] * scalex2 + up[2] * scaley2;
3802         vertex3f[ 6] = origin[0] + left[0] * scalex1 + up[0] * scaley2;
3803         vertex3f[ 7] = origin[1] + left[1] * scalex1 + up[1] * scaley2;
3804         vertex3f[ 8] = origin[2] + left[2] * scalex1 + up[2] * scaley2;
3805         vertex3f[ 9] = origin[0] + left[0] * scalex1 + up[0] * scaley1;
3806         vertex3f[10] = origin[1] + left[1] * scalex1 + up[1] * scaley1;
3807         vertex3f[11] = origin[2] + left[2] * scalex1 + up[2] * scaley1;
3808
3809         R_Mesh_VertexPointer(vertex3f, 0, 0);
3810         R_Mesh_ColorPointer(NULL, 0, 0);
3811         R_Mesh_ResetTextureState();
3812         R_Mesh_TexBind(0, R_GetTexture(texture));
3813         R_Mesh_TexCoordPointer(0, 2, spritetexcoord2f, 0, 0);
3814         // FIXME: fixed function path can't properly handle r_view.colorscale > 1
3815         GL_Color(cr * fog * r_view.colorscale, cg * fog * r_view.colorscale, cb * fog * r_view.colorscale, ca);
3816         R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3817
3818         if (blendfunc2 == GL_ONE_MINUS_SRC_ALPHA)
3819         {
3820                 R_Mesh_TexBind(0, R_GetTexture(fogtexture));
3821                 GL_BlendFunc(blendfunc1, GL_ONE);
3822                 fog = 1 - fog;
3823                 GL_Color(r_refdef.fogcolor[0] * fog, r_refdef.fogcolor[1] * fog, r_refdef.fogcolor[2] * fog, ca);
3824                 R_Mesh_Draw(0, 4, 2, polygonelements, 0, 0);
3825         }
3826 }
3827
3828 int R_Mesh_AddVertex(rmesh_t *mesh, float x, float y, float z)
3829 {
3830         int i;
3831         float *vertex3f;
3832         float v[3];
3833         VectorSet(v, x, y, z);
3834         for (i = 0, vertex3f = mesh->vertex3f;i < mesh->numvertices;i++, vertex3f += 3)
3835                 if (VectorDistance2(v, vertex3f) < mesh->epsilon2)
3836                         break;
3837         if (i == mesh->numvertices)
3838         {
3839                 if (mesh->numvertices < mesh->maxvertices)
3840                 {
3841                         VectorCopy(v, vertex3f);
3842                         mesh->numvertices++;
3843                 }
3844                 return mesh->numvertices;
3845         }
3846         else
3847                 return i;
3848 }
3849
3850 void R_Mesh_AddPolygon3f(rmesh_t *mesh, int numvertices, float *vertex3f)
3851 {
3852         int i;
3853         int *e, element[3];
3854         element[0] = R_Mesh_AddVertex(mesh, vertex3f[0], vertex3f[1], vertex3f[2]);vertex3f += 3;
3855         element[1] = R_Mesh_AddVertex(mesh, vertex3f[0], vertex3f[1], vertex3f[2]);vertex3f += 3;
3856         e = mesh->element3i + mesh->numtriangles * 3;
3857         for (i = 0;i < numvertices - 2;i++, vertex3f += 3)
3858         {
3859                 element[2] = R_Mesh_AddVertex(mesh, vertex3f[0], vertex3f[1], vertex3f[2]);
3860                 if (mesh->numtriangles < mesh->maxtriangles)
3861                 {
3862                         *e++ = element[0];
3863                         *e++ = element[1];
3864                         *e++ = element[2];
3865                         mesh->numtriangles++;
3866                 }
3867                 element[1] = element[2];
3868         }
3869 }
3870
3871 void R_Mesh_AddPolygon3d(rmesh_t *mesh, int numvertices, double *vertex3d)
3872 {
3873         int i;
3874         int *e, element[3];
3875         element[0] = R_Mesh_AddVertex(mesh, vertex3d[0], vertex3d[1], vertex3d[2]);vertex3d += 3;
3876         element[1] = R_Mesh_AddVertex(mesh, vertex3d[0], vertex3d[1], vertex3d[2]);vertex3d += 3;
3877         e = mesh->element3i + mesh->numtriangles * 3;
3878         for (i = 0;i < numvertices - 2;i++, vertex3d += 3)
3879         {
3880                 element[2] = R_Mesh_AddVertex(mesh, vertex3d[0], vertex3d[1], vertex3d[2]);
3881                 if (mesh->numtriangles < mesh->maxtriangles)
3882                 {
3883                         *e++ = element[0];
3884                         *e++ = element[1];
3885                         *e++ = element[2];
3886                         mesh->numtriangles++;
3887                 }
3888                 element[1] = element[2];
3889         }
3890 }
3891
3892 #define R_MESH_PLANE_DIST_EPSILON (1.0 / 32.0)
3893 void R_Mesh_AddBrushMeshFromPlanes(rmesh_t *mesh, int numplanes, mplane_t *planes)
3894 {
3895         int planenum, planenum2;
3896         int w;
3897         int tempnumpoints;
3898         mplane_t *plane, *plane2;
3899         double maxdist;
3900         double temppoints[2][256*3];
3901         // figure out how large a bounding box we need to properly compute this brush
3902         maxdist = 0;
3903         for (w = 0;w < numplanes;w++)
3904                 maxdist = max(maxdist, planes[w].dist);
3905         // now make it large enough to enclose the entire brush, and round it off to a reasonable multiple of 1024
3906         maxdist = floor(maxdist * (4.0 / 1024.0) + 1) * 1024.0;
3907         for (planenum = 0, plane = planes;planenum < numplanes;planenum++, plane++)
3908         {
3909                 w = 0;
3910                 tempnumpoints = 4;
3911                 PolygonD_QuadForPlane(temppoints[w], plane->normal[0], plane->normal[1], plane->normal[2], plane->dist, maxdist);
3912                 for (planenum2 = 0, plane2 = planes;planenum2 < numplanes && tempnumpoints >= 3;planenum2++, plane2++)
3913                 {
3914                         if (planenum2 == planenum)
3915                                 continue;
3916                         PolygonD_Divide(tempnumpoints, temppoints[w], plane2->normal[0], plane2->normal[1], plane2->normal[2], plane2->dist, R_MESH_PLANE_DIST_EPSILON, 0, NULL, NULL, 256, temppoints[!w], &tempnumpoints, NULL);
3917                         w = !w;
3918                 }
3919                 if (tempnumpoints < 3)
3920                         continue;
3921                 // generate elements forming a triangle fan for this polygon
3922                 R_Mesh_AddPolygon3d(mesh, tempnumpoints, temppoints[w]);
3923         }
3924 }
3925
3926 static void R_Texture_AddLayer(texture_t *t, qboolean depthmask, int blendfunc1, int blendfunc2, texturelayertype_t type, rtexture_t *texture, const matrix4x4_t *matrix, float r, float g, float b, float a)
3927 {
3928         texturelayer_t *layer;
3929         layer = t->currentlayers + t->currentnumlayers++;
3930         layer->type = type;
3931         layer->depthmask = depthmask;
3932         layer->blendfunc1 = blendfunc1;
3933         layer->blendfunc2 = blendfunc2;
3934         layer->texture = texture;
3935         layer->texmatrix = *matrix;
3936         layer->color[0] = r * r_view.colorscale;
3937         layer->color[1] = g * r_view.colorscale;
3938         layer->color[2] = b * r_view.colorscale;
3939         layer->color[3] = a;
3940 }
3941
3942 static float R_EvaluateQ3WaveFunc(q3wavefunc_t func, const float *parms)
3943 {
3944         double index, f;
3945         index = parms[2] + r_refdef.time * parms[3];
3946         index -= floor(index);
3947         switch (func)
3948         {
3949         default:
3950         case Q3WAVEFUNC_NONE:
3951         case Q3WAVEFUNC_NOISE:
3952         case Q3WAVEFUNC_COUNT:
3953                 f = 0;
3954                 break;
3955         case Q3WAVEFUNC_SIN: f = sin(index * M_PI * 2);break;
3956         case Q3WAVEFUNC_SQUARE: f = index < 0.5 ? 1 : -1;break;
3957         case Q3WAVEFUNC_SAWTOOTH: f = index;break;
3958         case Q3WAVEFUNC_INVERSESAWTOOTH: f = 1 - index;break;
3959         case Q3WAVEFUNC_TRIANGLE:
3960                 index *= 4;
3961                 f = index - floor(index);
3962                 if (index < 1)
3963                         f = f;
3964                 else if (index < 2)
3965                         f = 1 - f;
3966                 else if (index < 3)
3967                         f = -f;
3968                 else
3969                         f = -(1 - f);
3970                 break;
3971         }
3972         return (float)(parms[0] + parms[1] * f);
3973 }
3974
3975 void R_UpdateTextureInfo(const entity_render_t *ent, texture_t *t)
3976 {
3977         int i;
3978         model_t *model = ent->model;
3979         float f;
3980         float tcmat[12];
3981         q3shaderinfo_layer_tcmod_t *tcmod;
3982
3983         // switch to an alternate material if this is a q1bsp animated material
3984         {
3985                 texture_t *texture = t;
3986                 int s = ent->skinnum;
3987                 if ((unsigned int)s >= (unsigned int)model->numskins)
3988                         s = 0;
3989                 if (model->skinscenes)
3990                 {
3991                         if (model->skinscenes[s].framecount > 1)
3992                                 s = model->skinscenes[s].firstframe + (unsigned int) (r_refdef.time * model->skinscenes[s].framerate) % model->skinscenes[s].framecount;
3993                         else
3994                                 s = model->skinscenes[s].firstframe;
3995                 }
3996                 if (s > 0)
3997                         t = t + s * model->num_surfaces;
3998                 if (t->animated)
3999                 {
4000                         // use an alternate animation if the entity's frame is not 0,
4001                         // and only if the texture has an alternate animation
4002                         if (ent->frame2 != 0 && t->anim_total[1])
4003                                 t = t->anim_frames[1][(t->anim_total[1] >= 2) ? ((int)(r_refdef.time * 5.0f) % t->anim_total[1]) : 0];
4004                         else
4005                                 t = t->anim_frames[0][(t->anim_total[0] >= 2) ? ((int)(r_refdef.time * 5.0f) % t->anim_total[0]) : 0];
4006                 }
4007                 texture->currentframe = t;
4008         }
4009
4010         // update currentskinframe to be a qw skin or animation frame
4011         if ((i = ent->entitynumber - 1) >= 0 && i < cl.maxclients)
4012         {
4013                 if (strcmp(r_qwskincache[i], cl.scores[i].qw_skin))
4014                 {
4015                         strlcpy(r_qwskincache[i], cl.scores[i].qw_skin, sizeof(r_qwskincache[i]));
4016                         Con_DPrintf("loading skins/%s\n", r_qwskincache[i]);
4017                         r_qwskincache_skinframe[i] = R_SkinFrame_LoadExternal(va("skins/%s", r_qwskincache[i]), TEXF_PRECACHE | (r_mipskins.integer ? TEXF_MIPMAP : 0) | TEXF_PICMIP | TEXF_COMPRESS, developer.integer > 0);
4018                 }
4019                 t->currentskinframe = r_qwskincache_skinframe[i];
4020                 if (t->currentskinframe == NULL)
4021                         t->currentskinframe = t->skinframes[(int)(t->skinframerate * (cl.time - ent->frame2time)) % t->numskinframes];
4022         }
4023         else if (t->numskinframes >= 2)
4024                 t->currentskinframe = t->skinframes[(int)(t->skinframerate * (cl.time - ent->frame2time)) % t->numskinframes];
4025         if (t->backgroundnumskinframes >= 2)
4026                 t->backgroundcurrentskinframe = t->backgroundskinframes[(int)(t->backgroundskinframerate * (cl.time - ent->frame2time)) % t->backgroundnumskinframes];
4027
4028         t->currentmaterialflags = t->basematerialflags;
4029         t->currentalpha = ent->alpha;
4030         if (t->basematerialflags & MATERIALFLAG_WATERALPHA && (model->brush.supportwateralpha || r_novis.integer))
4031         {
4032                 t->currentalpha *= r_wateralpha.value;
4033                 /*
4034                  * FIXME what is this supposed to do?
4035                 // if rendering refraction/reflection, disable transparency
4036                 if (r_waterstate.enabled && (t->currentalpha < 1 || (t->currentmaterialflags & MATERIALFLAG_ALPHA)))
4037                         t->currentmaterialflags |= MATERIALFLAG_WATERSHADER;
4038                 */
4039         }
4040         if(!r_waterstate.enabled)
4041                 t->currentmaterialflags &= ~(MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION);
4042         if (!(ent->flags & RENDER_LIGHT))
4043                 t->currentmaterialflags |= MATERIALFLAG_FULLBRIGHT;
4044         else if (rsurface.modeltexcoordlightmap2f == NULL)
4045         {
4046                 // pick a model lighting mode
4047                 if (VectorLength2(ent->modellight_diffuse) >= (1.0f / 256.0f))
4048                         t->currentmaterialflags |= MATERIALFLAG_MODELLIGHT | MATERIALFLAG_MODELLIGHT_DIRECTIONAL;
4049                 else
4050                         t->currentmaterialflags |= MATERIALFLAG_MODELLIGHT;
4051         }
4052         if (ent->effects & EF_ADDITIVE)
4053                 t->currentmaterialflags |= MATERIALFLAG_ADD | MATERIALFLAG_BLENDED | MATERIALFLAG_NOSHADOW;
4054         else if (t->currentalpha < 1)
4055                 t->currentmaterialflags |= MATERIALFLAG_ALPHA | MATERIALFLAG_BLENDED | MATERIALFLAG_NOSHADOW;
4056         if (ent->effects & EF_DOUBLESIDED)
4057                 t->currentmaterialflags |= MATERIALFLAG_NOSHADOW | MATERIALFLAG_NOCULLFACE;
4058         if (ent->effects & EF_NODEPTHTEST)
4059                 t->currentmaterialflags |= MATERIALFLAG_SHORTDEPTHRANGE;
4060         if (ent->flags & RENDER_VIEWMODEL)
4061                 t->currentmaterialflags |= MATERIALFLAG_SHORTDEPTHRANGE;
4062         if (t->backgroundnumskinframes && !(t->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED))
4063                 t->currentmaterialflags |= MATERIALFLAG_VERTEXTEXTUREBLEND;
4064
4065         // make sure that the waterscroll matrix is used on water surfaces when
4066         // there is no tcmod
4067         if (t->currentmaterialflags & MATERIALFLAG_WATER && r_waterscroll.value != 0)
4068                 t->currenttexmatrix = r_waterscrollmatrix;
4069
4070         for (i = 0, tcmod = t->tcmods;i < Q3MAXTCMODS && tcmod->tcmod;i++, tcmod++)
4071         {
4072                 matrix4x4_t matrix;
4073                 switch(tcmod->tcmod)
4074                 {
4075                 case Q3TCMOD_COUNT:
4076                 case Q3TCMOD_NONE:
4077                         if (t->currentmaterialflags & MATERIALFLAG_WATER && r_waterscroll.value != 0)
4078                                 matrix = r_waterscrollmatrix;
4079                         else
4080                                 matrix = identitymatrix;
4081                         break;
4082                 case Q3TCMOD_ENTITYTRANSLATE:
4083                         // this is used in Q3 to allow the gamecode to control texcoord
4084                         // scrolling on the entity, which is not supported in darkplaces yet.
4085                         Matrix4x4_CreateTranslate(&matrix, 0, 0, 0);
4086                         break;
4087                 case Q3TCMOD_ROTATE:
4088                         Matrix4x4_CreateTranslate(&matrix, 0.5, 0.5, 0);
4089                         Matrix4x4_ConcatRotate(&matrix, tcmod->parms[0] * r_refdef.time, 0, 0, 1);
4090                         Matrix4x4_ConcatTranslate(&matrix, -0.5, -0.5, 0);
4091                         break;
4092                 case Q3TCMOD_SCALE:
4093                         Matrix4x4_CreateScale3(&matrix, tcmod->parms[0], tcmod->parms[1], 1);
4094                         break;
4095                 case Q3TCMOD_SCROLL:
4096                         Matrix4x4_CreateTranslate(&matrix, tcmod->parms[0] * r_refdef.time, tcmod->parms[1] * r_refdef.time, 0);
4097                         break;
4098                 case Q3TCMOD_STRETCH:
4099                         f = 1.0f / R_EvaluateQ3WaveFunc(tcmod->wavefunc, tcmod->waveparms);
4100                         Matrix4x4_CreateFromQuakeEntity(&matrix, 0.5f * (1 - f), 0.5 * (1 - f), 0, 0, 0, 0, f);
4101                         break;
4102                 case Q3TCMOD_TRANSFORM:
4103                         VectorSet(tcmat +  0, tcmod->parms[0], tcmod->parms[1], 0);
4104                         VectorSet(tcmat +  3, tcmod->parms[2], tcmod->parms[3], 0);
4105                         VectorSet(tcmat +  6, 0                   , 0                , 1);
4106                         VectorSet(tcmat +  9, tcmod->parms[4], tcmod->parms[5], 0);
4107                         Matrix4x4_FromArray12FloatGL(&matrix, tcmat);
4108                         break;
4109                 case Q3TCMOD_TURBULENT:
4110                         // this is handled in the RSurf_PrepareVertices function
4111                         matrix = identitymatrix;
4112                         break;
4113                 }
4114                 // either replace or concatenate the transformation
4115                 if (i < 1)
4116                         t->currenttexmatrix = matrix;
4117                 else
4118                 {
4119                         matrix4x4_t temp = t->currenttexmatrix;
4120                         Matrix4x4_Concat(&t->currenttexmatrix, &matrix, &temp);
4121                 }
4122         }
4123
4124         t->colormapping = VectorLength2(ent->colormap_pantscolor) + VectorLength2(ent->colormap_shirtcolor) >= (1.0f / 1048576.0f);
4125         t->basetexture = (!t->colormapping && t->currentskinframe->merged) ? t->currentskinframe->merged : t->currentskinframe->base;
4126         t->glosstexture = r_texture_black;
4127         t->backgroundbasetexture = t->backgroundnumskinframes ? ((!t->colormapping && t->backgroundcurrentskinframe->merged) ? t->backgroundcurrentskinframe->merged : t->backgroundcurrentskinframe->base) : r_texture_white;
4128         t->backgroundglosstexture = r_texture_black;
4129         t->specularpower = r_shadow_glossexponent.value;
4130         // TODO: store reference values for these in the texture?
4131         t->specularscale = 0;
4132         if (r_shadow_gloss.integer > 0)
4133         {
4134                 if (t->currentskinframe->gloss || (t->backgroundcurrentskinframe && t->backgroundcurrentskinframe->gloss))
4135                 {
4136                         if (r_shadow_glossintensity.value > 0)
4137                         {
4138                                 t->glosstexture = t->currentskinframe->gloss ? t->currentskinframe->gloss : r_texture_white;
4139                                 t->backgroundglosstexture = (t->backgroundcurrentskinframe && t->backgroundcurrentskinframe->gloss) ? t->backgroundcurrentskinframe->gloss : r_texture_white;
4140                                 t->specularscale = r_shadow_glossintensity.value;
4141                         }
4142                 }
4143                 else if (r_shadow_gloss.integer >= 2 && r_shadow_gloss2intensity.value > 0)
4144                 {
4145                         t->glosstexture = r_texture_white;
4146                         t->backgroundglosstexture = r_texture_white;
4147                         t->specularscale = r_shadow_gloss2intensity.value;
4148                 }
4149         }
4150
4151         // lightmaps mode looks bad with dlights using actual texturing, so turn
4152         // off the colormap and glossmap, but leave the normalmap on as it still
4153         // accurately represents the shading involved
4154         if (gl_lightmaps.integer && !(t->currentmaterialflags & MATERIALFLAG_BLENDED))
4155         {
4156                 t->basetexture = r_texture_white;
4157                 t->specularscale = 0;
4158         }
4159
4160         VectorClear(t->dlightcolor);
4161         t->currentnumlayers = 0;
4162         if (!(t->currentmaterialflags & MATERIALFLAG_NODRAW))
4163         {
4164                 if (!(t->currentmaterialflags & MATERIALFLAG_SKY))
4165                 {
4166                         int blendfunc1, blendfunc2, depthmask;
4167                         if (t->currentmaterialflags & MATERIALFLAG_ADD)
4168                         {
4169                                 blendfunc1 = GL_SRC_ALPHA;
4170                                 blendfunc2 = GL_ONE;
4171                         }
4172                         else if (t->currentmaterialflags & MATERIALFLAG_ALPHA)
4173                         {
4174                                 blendfunc1 = GL_SRC_ALPHA;
4175                                 blendfunc2 = GL_ONE_MINUS_SRC_ALPHA;
4176                         }
4177                         else if (t->currentmaterialflags & MATERIALFLAG_CUSTOMBLEND)
4178                         {
4179                                 blendfunc1 = t->customblendfunc[0];
4180                                 blendfunc2 = t->customblendfunc[1];
4181                         }
4182                         else
4183                         {
4184                                 blendfunc1 = GL_ONE;
4185                                 blendfunc2 = GL_ZERO;
4186                         }
4187                         depthmask = !(t->currentmaterialflags & MATERIALFLAG_BLENDED);
4188                         if (t->currentmaterialflags & (MATERIALFLAG_WATER | MATERIALFLAG_WALL))
4189                         {
4190                                 rtexture_t *currentbasetexture;
4191                                 int layerflags = 0;
4192                                 if (r_refdef.fogenabled && (t->currentmaterialflags & MATERIALFLAG_BLENDED))
4193                                         layerflags |= TEXTURELAYERFLAG_FOGDARKEN;
4194                                 currentbasetexture = (VectorLength2(ent->colormap_pantscolor) + VectorLength2(ent->colormap_shirtcolor) < (1.0f / 1048576.0f) && t->currentskinframe->merged) ? t->currentskinframe->merged : t->currentskinframe->base;
4195                                 if (t->currentmaterialflags & MATERIALFLAG_FULLBRIGHT)
4196                                 {
4197                                         // fullbright is not affected by r_refdef.lightmapintensity
4198                                         R_Texture_AddLayer(t, depthmask, blendfunc1, blendfunc2, TEXTURELAYERTYPE_TEXTURE, currentbasetexture, &t->currenttexmatrix, ent->colormod[0], ent->colormod[1], ent->colormod[2], t->currentalpha);
4199                                         if (VectorLength2(ent->colormap_pantscolor) >= (1.0f / 1048576.0f) && t->currentskinframe->pants)
4200                                                 R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_TEXTURE, t->currentskinframe->pants, &t->currenttexmatrix, ent->colormap_pantscolor[0] * ent->colormod[0], ent->colormap_pantscolor[1] * ent->colormod[1], ent->colormap_pantscolor[2] * ent->colormod[2], t->currentalpha);
4201                                         if (VectorLength2(ent->colormap_shirtcolor) >= (1.0f / 1048576.0f) && t->currentskinframe->shirt)
4202                                                 R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_TEXTURE, t->currentskinframe->shirt, &t->currenttexmatrix, ent->colormap_shirtcolor[0] * ent->colormod[0], ent->colormap_shirtcolor[1] * ent->colormod[1], ent->colormap_shirtcolor[2] * ent->colormod[2], t->currentalpha);
4203                                 }
4204                                 else
4205                                 {
4206                                         float colorscale;
4207                                         // set the color tint used for lights affecting this surface
4208                                         VectorSet(t->dlightcolor, ent->colormod[0] * t->currentalpha, ent->colormod[1] * t->currentalpha, ent->colormod[2] * t->currentalpha);
4209                                         colorscale = 2;
4210                                         // q3bsp has no lightmap updates, so the lightstylevalue that
4211                                         // would normally be baked into the lightmap must be
4212                                         // applied to the color
4213                                         // FIXME: r_glsl 1 rendering doesn't support overbright lightstyles with this (the default light style is not overbright)
4214                                         if (ent->model->type == mod_brushq3)
4215                                                 colorscale *= r_refdef.rtlightstylevalue[0];
4216                                         colorscale *= r_refdef.lightmapintensity;
4217                                         R_Texture_AddLayer(t, depthmask, blendfunc1, blendfunc2, TEXTURELAYERTYPE_LITTEXTURE, currentbasetexture, &t->currenttexmatrix, ent->colormod[0] * colorscale, ent->colormod[1] * colorscale, ent->colormod[2] * colorscale, t->currentalpha);
4218                                         if (r_ambient.value >= (1.0f/64.0f))
4219                                                 R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_TEXTURE, currentbasetexture, &t->currenttexmatrix, ent->colormod[0] * r_ambient.value * (1.0f / 64.0f), ent->colormod[1] * r_ambient.value * (1.0f / 64.0f), ent->colormod[2] * r_ambient.value * (1.0f / 64.0f), t->currentalpha);
4220                                         if (VectorLength2(ent->colormap_pantscolor) >= (1.0f / 1048576.0f) && t->currentskinframe->pants)
4221                                         {
4222                                                 R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_LITTEXTURE, t->currentskinframe->pants, &t->currenttexmatrix, ent->colormap_pantscolor[0] * ent->colormod[0] * colorscale, ent->colormap_pantscolor[1] * ent->colormod[1] * colorscale, ent->colormap_pantscolor[2]  * ent->colormod[2] * colorscale, t->currentalpha);
4223                                                 if (r_ambient.value >= (1.0f/64.0f))
4224                                                         R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_TEXTURE, t->currentskinframe->pants, &t->currenttexmatrix, ent->colormap_pantscolor[0] * ent->colormod[0] * r_ambient.value * (1.0f / 64.0f), ent->colormap_pantscolor[1] * ent->colormod[1] * r_ambient.value * (1.0f / 64.0f), ent->colormap_pantscolor[2] * ent->colormod[2] * r_ambient.value * (1.0f / 64.0f), t->currentalpha);
4225                                         }
4226                                         if (VectorLength2(ent->colormap_shirtcolor) >= (1.0f / 1048576.0f) && t->currentskinframe->shirt)
4227                                         {
4228                                                 R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_LITTEXTURE, t->currentskinframe->shirt, &t->currenttexmatrix, ent->colormap_shirtcolor[0] * ent->colormod[0] * colorscale, ent->colormap_shirtcolor[1] * ent->colormod[1] * colorscale, ent->colormap_shirtcolor[2] * ent->colormod[2] * colorscale, t->currentalpha);
4229                                                 if (r_ambient.value >= (1.0f/64.0f))
4230                                                         R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_TEXTURE, t->currentskinframe->shirt, &t->currenttexmatrix, ent->colormap_shirtcolor[0] * ent->colormod[0] * r_ambient.value * (1.0f / 64.0f), ent->colormap_shirtcolor[1] * ent->colormod[1] * r_ambient.value * (1.0f / 64.0f), ent->colormap_shirtcolor[2] * ent->colormod[2] * r_ambient.value * (1.0f / 64.0f), t->currentalpha);
4231                                         }
4232                                 }
4233                                 if (t->currentskinframe->glow != NULL)
4234                                         R_Texture_AddLayer(t, false, GL_SRC_ALPHA, GL_ONE, TEXTURELAYERTYPE_TEXTURE, t->currentskinframe->glow, &t->currenttexmatrix, r_hdr_glowintensity.value, r_hdr_glowintensity.value, r_hdr_glowintensity.value, t->currentalpha);
4235                                 if (r_refdef.fogenabled && !(t->currentmaterialflags & MATERIALFLAG_ADD))
4236                                 {
4237                                         // if this is opaque use alpha blend which will darken the earlier
4238                                         // passes cheaply.
4239                                         //
4240                                         // if this is an alpha blended material, all the earlier passes
4241                                         // were darkened by fog already, so we only need to add the fog
4242                                         // color ontop through the fog mask texture
4243                                         //
4244                                         // if this is an additive blended material, all the earlier passes
4245                                         // were darkened by fog already, and we should not add fog color
4246                                         // (because the background was not darkened, there is no fog color
4247                                         // that was lost behind it).
4248                                         R_Texture_AddLayer(t, false, GL_SRC_ALPHA, (t->currentmaterialflags & MATERIALFLAG_BLENDED) ? GL_ONE : GL_ONE_MINUS_SRC_ALPHA, TEXTURELAYERTYPE_FOG, t->currentskinframe->fog, &identitymatrix, r_refdef.fogcolor[0], r_refdef.fogcolor[1], r_refdef.fogcolor[2], t->currentalpha);
4249                                 }
4250                         }
4251                 }
4252         }
4253 }
4254
4255 void R_UpdateAllTextureInfo(entity_render_t *ent)
4256 {
4257         int i;
4258         if (ent->model)
4259                 for (i = 0;i < ent->model->num_texturesperskin;i++)
4260                         R_UpdateTextureInfo(ent, ent->model->data_textures + i);
4261 }
4262
4263 rsurfacestate_t rsurface;
4264
4265 void R_Mesh_ResizeArrays(int newvertices)
4266 {
4267         float *base;
4268         if (rsurface.array_size >= newvertices)
4269                 return;
4270         if (rsurface.array_modelvertex3f)
4271                 Mem_Free(rsurface.array_modelvertex3f);
4272         rsurface.array_size = (newvertices + 1023) & ~1023;
4273         base = (float *)Mem_Alloc(r_main_mempool, rsurface.array_size * sizeof(float[33]));
4274         rsurface.array_modelvertex3f     = base + rsurface.array_size * 0;
4275         rsurface.array_modelsvector3f    = base + rsurface.array_size * 3;
4276         rsurface.array_modeltvector3f    = base + rsurface.array_size * 6;
4277         rsurface.array_modelnormal3f     = base + rsurface.array_size * 9;
4278         rsurface.array_deformedvertex3f  = base + rsurface.array_size * 12;
4279         rsurface.array_deformedsvector3f = base + rsurface.array_size * 15;
4280         rsurface.array_deformedtvector3f = base + rsurface.array_size * 18;
4281         rsurface.array_deformednormal3f  = base + rsurface.array_size * 21;
4282         rsurface.array_texcoord3f        = base + rsurface.array_size * 24;
4283         rsurface.array_color4f           = base + rsurface.array_size * 27;
4284         rsurface.array_generatedtexcoordtexture2f = base + rsurface.array_size * 31;
4285 }
4286
4287 void RSurf_CleanUp(void)
4288 {
4289         CHECKGLERROR
4290         if (rsurface.mode == RSURFMODE_GLSL)
4291         {
4292                 qglUseProgramObjectARB(0);CHECKGLERROR
4293         }
4294         GL_AlphaTest(false);
4295         rsurface.mode = RSURFMODE_NONE;
4296         rsurface.uselightmaptexture = false;
4297         rsurface.texture = NULL;
4298 }
4299
4300 void RSurf_ActiveWorldEntity(void)
4301 {
4302         model_t *model = r_refdef.worldmodel;
4303         RSurf_CleanUp();
4304         if (rsurface.array_size < model->surfmesh.num_vertices)
4305                 R_Mesh_ResizeArrays(model->surfmesh.num_vertices);
4306         rsurface.matrix = identitymatrix;
4307         rsurface.inversematrix = identitymatrix;
4308         R_Mesh_Matrix(&identitymatrix);
4309         VectorCopy(r_view.origin, rsurface.modelorg);
4310         VectorSet(rsurface.modellight_ambient, 0, 0, 0);
4311         VectorSet(rsurface.modellight_diffuse, 0, 0, 0);
4312         VectorSet(rsurface.modellight_lightdir, 0, 0, 1);
4313         VectorSet(rsurface.colormap_pantscolor, 0, 0, 0);
4314         VectorSet(rsurface.colormap_shirtcolor, 0, 0, 0);
4315         rsurface.frameblend[0].frame = 0;
4316         rsurface.frameblend[0].lerp = 1;
4317         rsurface.frameblend[1].frame = 0;
4318         rsurface.frameblend[1].lerp = 0;
4319         rsurface.frameblend[2].frame = 0;
4320         rsurface.frameblend[2].lerp = 0;
4321         rsurface.frameblend[3].frame = 0;
4322         rsurface.frameblend[3].lerp = 0;
4323         rsurface.basepolygonfactor = r_refdef.polygonfactor;
4324         rsurface.basepolygonoffset = r_refdef.polygonoffset;
4325         rsurface.modelvertex3f  = model->surfmesh.data_vertex3f;
4326         rsurface.modelvertex3f_bufferobject = model->surfmesh.vbo;
4327         rsurface.modelvertex3f_bufferoffset = model->surfmesh.vbooffset_vertex3f;
4328         rsurface.modelsvector3f = model->surfmesh.data_svector3f;
4329         rsurface.modelsvector3f_bufferobject = model->surfmesh.vbo;
4330         rsurface.modelsvector3f_bufferoffset = model->surfmesh.vbooffset_svector3f;
4331         rsurface.modeltvector3f = model->surfmesh.data_tvector3f;
4332         rsurface.modeltvector3f_bufferobject = model->surfmesh.vbo;
4333         rsurface.modeltvector3f_bufferoffset = model->surfmesh.vbooffset_tvector3f;
4334         rsurface.modelnormal3f  = model->surfmesh.data_normal3f;
4335         rsurface.modelnormal3f_bufferobject = model->surfmesh.vbo;
4336         rsurface.modelnormal3f_bufferoffset = model->surfmesh.vbooffset_normal3f;
4337         rsurface.modellightmapcolor4f  = model->surfmesh.data_lightmapcolor4f;
4338         rsurface.modellightmapcolor4f_bufferobject = model->surfmesh.vbo;
4339         rsurface.modellightmapcolor4f_bufferoffset = model->surfmesh.vbooffset_lightmapcolor4f;
4340         rsurface.modeltexcoordtexture2f  = model->surfmesh.data_texcoordtexture2f;
4341         rsurface.modeltexcoordtexture2f_bufferobject = model->surfmesh.vbo;
4342         rsurface.modeltexcoordtexture2f_bufferoffset = model->surfmesh.vbooffset_texcoordtexture2f;
4343         rsurface.modeltexcoordlightmap2f  = model->surfmesh.data_texcoordlightmap2f;
4344         rsurface.modeltexcoordlightmap2f_bufferobject = model->surfmesh.vbo;
4345         rsurface.modeltexcoordlightmap2f_bufferoffset = model->surfmesh.vbooffset_texcoordlightmap2f;
4346         rsurface.modelelement3i = model->surfmesh.data_element3i;
4347         rsurface.modelelement3i_bufferobject = model->surfmesh.ebo;
4348         rsurface.modellightmapoffsets = model->surfmesh.data_lightmapoffsets;
4349         rsurface.modelnum_vertices = model->surfmesh.num_vertices;
4350         rsurface.modelnum_triangles = model->surfmesh.num_triangles;
4351         rsurface.modelsurfaces = model->data_surfaces;
4352         rsurface.generatedvertex = false;
4353         rsurface.vertex3f  = rsurface.modelvertex3f;
4354         rsurface.vertex3f_bufferobject = rsurface.modelvertex3f_bufferobject;
4355         rsurface.vertex3f_bufferoffset = rsurface.modelvertex3f_bufferoffset;
4356         rsurface.svector3f = rsurface.modelsvector3f;
4357         rsurface.svector3f_bufferobject = rsurface.modelsvector3f_bufferobject;
4358         rsurface.svector3f_bufferoffset = rsurface.modelsvector3f_bufferoffset;
4359         rsurface.tvector3f = rsurface.modeltvector3f;
4360         rsurface.tvector3f_bufferobject = rsurface.modeltvector3f_bufferobject;
4361         rsurface.tvector3f_bufferoffset = rsurface.modeltvector3f_bufferoffset;
4362         rsurface.normal3f  = rsurface.modelnormal3f;
4363         rsurface.normal3f_bufferobject = rsurface.modelnormal3f_bufferobject;
4364         rsurface.normal3f_bufferoffset = rsurface.modelnormal3f_bufferoffset;
4365         rsurface.texcoordtexture2f = rsurface.modeltexcoordtexture2f;
4366 }
4367
4368 void RSurf_ActiveModelEntity(const entity_render_t *ent, qboolean wantnormals, qboolean wanttangents)
4369 {
4370         model_t *model = ent->model;
4371         RSurf_CleanUp();
4372         if (rsurface.array_size < model->surfmesh.num_vertices)
4373                 R_Mesh_ResizeArrays(model->surfmesh.num_vertices);
4374         rsurface.matrix = ent->matrix;
4375         rsurface.inversematrix = ent->inversematrix;
4376         R_Mesh_Matrix(&rsurface.matrix);
4377         Matrix4x4_Transform(&rsurface.inversematrix, r_view.origin, rsurface.modelorg);
4378         VectorCopy(ent->modellight_ambient, rsurface.modellight_ambient);
4379         VectorCopy(ent->modellight_diffuse, rsurface.modellight_diffuse);
4380         VectorCopy(ent->modellight_lightdir, rsurface.modellight_lightdir);
4381         VectorCopy(ent->colormap_pantscolor, rsurface.colormap_pantscolor);
4382         VectorCopy(ent->colormap_shirtcolor, rsurface.colormap_shirtcolor);
4383         rsurface.frameblend[0] = ent->frameblend[0];
4384         rsurface.frameblend[1] = ent->frameblend[1];
4385         rsurface.frameblend[2] = ent->frameblend[2];
4386         rsurface.frameblend[3] = ent->frameblend[3];
4387         rsurface.basepolygonfactor = r_refdef.polygonfactor;
4388         rsurface.basepolygonoffset = r_refdef.polygonoffset;
4389         if (ent->model->brush.submodel)
4390         {
4391                 rsurface.basepolygonfactor += r_polygonoffset_submodel_factor.value;
4392                 rsurface.basepolygonoffset += r_polygonoffset_submodel_offset.value;
4393         }
4394         if (model->surfmesh.isanimated && (rsurface.frameblend[0].lerp != 1 || rsurface.frameblend[0].frame != 0))
4395         {
4396                 if (wanttangents)
4397                 {
4398                         rsurface.modelvertex3f = rsurface.array_modelvertex3f;
4399                         rsurface.modelsvector3f = rsurface.array_modelsvector3f;
4400                         rsurface.modeltvector3f = rsurface.array_modeltvector3f;
4401                         rsurface.modelnormal3f = rsurface.array_modelnormal3f;
4402                         Mod_Alias_GetMesh_Vertices(model, rsurface.frameblend, rsurface.array_modelvertex3f, rsurface.array_modelnormal3f, rsurface.array_modelsvector3f, rsurface.array_modeltvector3f);
4403                 }
4404                 else if (wantnormals)
4405                 {
4406                         rsurface.modelvertex3f = rsurface.array_modelvertex3f;
4407                         rsurface.modelsvector3f = NULL;
4408                         rsurface.modeltvector3f = NULL;
4409                         rsurface.modelnormal3f = rsurface.array_modelnormal3f;
4410                         Mod_Alias_GetMesh_Vertices(model, rsurface.frameblend, rsurface.array_modelvertex3f, rsurface.array_modelnormal3f, NULL, NULL);
4411                 }
4412                 else
4413                 {
4414                         rsurface.modelvertex3f = rsurface.array_modelvertex3f;
4415                         rsurface.modelsvector3f = NULL;
4416                         rsurface.modeltvector3f = NULL;
4417                         rsurface.modelnormal3f = NULL;
4418                         Mod_Alias_GetMesh_Vertices(model, rsurface.frameblend, rsurface.array_modelvertex3f, NULL, NULL, NULL);
4419                 }
4420                 rsurface.modelvertex3f_bufferobject = 0;
4421                 rsurface.modelvertex3f_bufferoffset = 0;
4422                 rsurface.modelsvector3f_bufferobject = 0;
4423                 rsurface.modelsvector3f_bufferoffset = 0;
4424                 rsurface.modeltvector3f_bufferobject = 0;
4425                 rsurface.modeltvector3f_bufferoffset = 0;
4426                 rsurface.modelnormal3f_bufferobject = 0;
4427                 rsurface.modelnormal3f_bufferoffset = 0;
4428                 rsurface.generatedvertex = true;
4429         }
4430         else
4431         {
4432                 rsurface.modelvertex3f  = model->surfmesh.data_vertex3f;
4433                 rsurface.modelvertex3f_bufferobject = model->surfmesh.vbo;
4434                 rsurface.modelvertex3f_bufferoffset = model->surfmesh.vbooffset_vertex3f;
4435                 rsurface.modelsvector3f = model->surfmesh.data_svector3f;
4436                 rsurface.modelsvector3f_bufferobject = model->surfmesh.vbo;
4437                 rsurface.modelsvector3f_bufferoffset = model->surfmesh.vbooffset_svector3f;
4438                 rsurface.modeltvector3f = model->surfmesh.data_tvector3f;
4439                 rsurface.modeltvector3f_bufferobject = model->surfmesh.vbo;
4440                 rsurface.modeltvector3f_bufferoffset = model->surfmesh.vbooffset_tvector3f;
4441                 rsurface.modelnormal3f  = model->surfmesh.data_normal3f;
4442                 rsurface.modelnormal3f_bufferobject = model->surfmesh.vbo;
4443                 rsurface.modelnormal3f_bufferoffset = model->surfmesh.vbooffset_normal3f;
4444                 rsurface.generatedvertex = false;
4445         }
4446         rsurface.modellightmapcolor4f  = model->surfmesh.data_lightmapcolor4f;
4447         rsurface.modellightmapcolor4f_bufferobject = model->surfmesh.vbo;
4448         rsurface.modellightmapcolor4f_bufferoffset = model->surfmesh.vbooffset_lightmapcolor4f;
4449         rsurface.modeltexcoordtexture2f  = model->surfmesh.data_texcoordtexture2f;
4450         rsurface.modeltexcoordtexture2f_bufferobject = model->surfmesh.vbo;
4451         rsurface.modeltexcoordtexture2f_bufferoffset = model->surfmesh.vbooffset_texcoordtexture2f;
4452         rsurface.modeltexcoordlightmap2f  = model->surfmesh.data_texcoordlightmap2f;
4453         rsurface.modeltexcoordlightmap2f_bufferobject = model->surfmesh.vbo;
4454         rsurface.modeltexcoordlightmap2f_bufferoffset = model->surfmesh.vbooffset_texcoordlightmap2f;
4455         rsurface.modelelement3i = model->surfmesh.data_element3i;
4456         rsurface.modelelement3i_bufferobject = model->surfmesh.ebo;
4457         rsurface.modellightmapoffsets = model->surfmesh.data_lightmapoffsets;
4458         rsurface.modelnum_vertices = model->surfmesh.num_vertices;
4459         rsurface.modelnum_triangles = model->surfmesh.num_triangles;
4460         rsurface.modelsurfaces = model->data_surfaces;
4461         rsurface.vertex3f  = rsurface.modelvertex3f;
4462         rsurface.vertex3f_bufferobject = rsurface.modelvertex3f_bufferobject;
4463         rsurface.vertex3f_bufferoffset = rsurface.modelvertex3f_bufferoffset;
4464         rsurface.svector3f = rsurface.modelsvector3f;
4465         rsurface.svector3f_bufferobject = rsurface.modelsvector3f_bufferobject;
4466         rsurface.svector3f_bufferoffset = rsurface.modelsvector3f_bufferoffset;
4467         rsurface.tvector3f = rsurface.modeltvector3f;
4468         rsurface.tvector3f_bufferobject = rsurface.modeltvector3f_bufferobject;
4469         rsurface.tvector3f_bufferoffset = rsurface.modeltvector3f_bufferoffset;
4470         rsurface.normal3f  = rsurface.modelnormal3f;
4471         rsurface.normal3f_bufferobject = rsurface.modelnormal3f_bufferobject;
4472         rsurface.normal3f_bufferoffset = rsurface.modelnormal3f_bufferoffset;
4473         rsurface.texcoordtexture2f = rsurface.modeltexcoordtexture2f;
4474 }
4475
4476 static const int quadedges[6][2] = {{0, 1}, {0, 2}, {0, 3}, {1, 2}, {1, 3}, {2, 3}};
4477 void RSurf_PrepareVerticesForBatch(qboolean generatenormals, qboolean generatetangents, int texturenumsurfaces, msurface_t **texturesurfacelist)
4478 {
4479         int deformindex;
4480         int texturesurfaceindex;
4481         int i, j;
4482         float amplitude;
4483         float animpos;
4484         float scale;
4485         const float *v1, *in_tc;
4486         float *out_tc;
4487         float center[3], forward[3], right[3], up[3], v[3], newforward[3], newright[3], newup[3];
4488         float waveparms[4];
4489         q3shaderinfo_deform_t *deform;
4490         // if vertices are dynamic (animated models), generate them into the temporary rsurface.array_model* arrays and point rsurface.model* at them instead of the static data from the model itself
4491         if (rsurface.generatedvertex)
4492         {
4493                 if (rsurface.texture->tcgen.tcgen == Q3TCGEN_ENVIRONMENT)
4494                         generatenormals = true;
4495                 for (i = 0;i < Q3MAXDEFORMS;i++)
4496                 {
4497                         if (rsurface.texture->deforms[i].deform == Q3DEFORM_AUTOSPRITE)
4498                         {
4499                                 generatetangents = true;
4500                                 generatenormals = true;
4501                         }
4502                         if (rsurface.texture->deforms[i].deform != Q3DEFORM_NONE)
4503                                 generatenormals = true;
4504                 }
4505                 if (generatenormals && !rsurface.modelnormal3f)
4506                 {
4507                         rsurface.normal3f = rsurface.modelnormal3f = rsurface.array_modelnormal3f;
4508                         rsurface.normal3f_bufferobject = rsurface.modelnormal3f_bufferobject = 0;
4509                         rsurface.normal3f_bufferoffset = rsurface.modelnormal3f_bufferoffset = 0;
4510                         Mod_BuildNormals(0, rsurface.modelnum_vertices, rsurface.modelnum_triangles, rsurface.modelvertex3f, rsurface.modelelement3i, rsurface.array_modelnormal3f, r_smoothnormals_areaweighting.integer);
4511                 }
4512                 if (generatetangents && !rsurface.modelsvector3f)
4513                 {
4514                         rsurface.svector3f = rsurface.modelsvector3f = rsurface.array_modelsvector3f;
4515                         rsurface.svector3f_bufferobject = rsurface.modelsvector3f_bufferobject = 0;
4516                         rsurface.svector3f_bufferoffset = rsurface.modelsvector3f_bufferoffset = 0;
4517                         rsurface.tvector3f = rsurface.modeltvector3f = rsurface.array_modeltvector3f;
4518                         rsurface.tvector3f_bufferobject = rsurface.modeltvector3f_bufferobject = 0;
4519                         rsurface.tvector3f_bufferoffset = rsurface.modeltvector3f_bufferoffset = 0;
4520                         Mod_BuildTextureVectorsFromNormals(0, rsurface.modelnum_vertices, rsurface.modelnum_triangles, rsurface.modelvertex3f, rsurface.modeltexcoordtexture2f, rsurface.modelnormal3f, rsurface.modelelement3i, rsurface.array_modelsvector3f, rsurface.array_modeltvector3f, r_smoothnormals_areaweighting.integer);
4521                 }
4522         }
4523         rsurface.vertex3f  = rsurface.modelvertex3f;
4524         rsurface.vertex3f_bufferobject = rsurface.modelvertex3f_bufferobject;
4525         rsurface.vertex3f_bufferoffset = rsurface.modelvertex3f_bufferoffset;
4526         rsurface.svector3f = rsurface.modelsvector3f;
4527         rsurface.svector3f_bufferobject = rsurface.modelsvector3f_bufferobject;
4528         rsurface.svector3f_bufferoffset = rsurface.modelsvector3f_bufferoffset;
4529         rsurface.tvector3f = rsurface.modeltvector3f;
4530         rsurface.tvector3f_bufferobject = rsurface.modeltvector3f_bufferobject;
4531         rsurface.tvector3f_bufferoffset = rsurface.modeltvector3f_bufferoffset;
4532         rsurface.normal3f  = rsurface.modelnormal3f;
4533         rsurface.normal3f_bufferobject = rsurface.modelnormal3f_bufferobject;
4534         rsurface.normal3f_bufferoffset = rsurface.modelnormal3f_bufferoffset;
4535         // if vertices are deformed (sprite flares and things in maps, possibly
4536         // water waves, bulges and other deformations), generate them into
4537         // rsurface.deform* arrays from whatever the rsurface.* arrays point to
4538         // (may be static model data or generated data for an animated model, or
4539         //  the previous deform pass)
4540         for (deformindex = 0, deform = rsurface.texture->deforms;deformindex < Q3MAXDEFORMS && deform->deform;deformindex++, deform++)
4541         {
4542                 switch (deform->deform)
4543                 {
4544                 default:
4545                 case Q3DEFORM_PROJECTIONSHADOW:
4546                 case Q3DEFORM_TEXT0:
4547                 case Q3DEFORM_TEXT1:
4548                 case Q3DEFORM_TEXT2:
4549                 case Q3DEFORM_TEXT3:
4550                 case Q3DEFORM_TEXT4:
4551                 case Q3DEFORM_TEXT5:
4552                 case Q3DEFORM_TEXT6:
4553                 case Q3DEFORM_TEXT7:
4554                 case Q3DEFORM_NONE:
4555                         break;
4556                 case Q3DEFORM_AUTOSPRITE:
4557                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.forward, newforward);
4558                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.right, newright);
4559                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.up, newup);
4560                         VectorNormalize(newforward);
4561                         VectorNormalize(newright);
4562                         VectorNormalize(newup);
4563                         // make deformed versions of only the model vertices used by the specified surfaces
4564                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4565                         {
4566                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4567                                 // a single autosprite surface can contain multiple sprites...
4568                                 for (j = 0;j < surface->num_vertices - 3;j += 4)
4569                                 {
4570                                         VectorClear(center);
4571                                         for (i = 0;i < 4;i++)
4572                                                 VectorAdd(center, (rsurface.vertex3f + 3 * surface->num_firstvertex) + (j+i) * 3, center);
4573                                         VectorScale(center, 0.25f, center);
4574                                         VectorCopy((rsurface.normal3f  + 3 * surface->num_firstvertex) + j*3, forward);
4575                                         VectorCopy((rsurface.svector3f + 3 * surface->num_firstvertex) + j*3, right);
4576                                         VectorCopy((rsurface.tvector3f + 3 * surface->num_firstvertex) + j*3, up);
4577                                         for (i = 0;i < 4;i++)
4578                                         {
4579                                                 VectorSubtract((rsurface.vertex3f + 3 * surface->num_firstvertex) + (j+i)*3, center, v);
4580                                                 VectorMAMAMAM(1, center, DotProduct(forward, v), newforward, DotProduct(right, v), newright, DotProduct(up, v), newup, rsurface.array_deformedvertex3f + (surface->num_firstvertex+i+j) * 3);
4581                                         }
4582                                 }
4583                                 Mod_BuildNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, rsurface.vertex3f, rsurface.modelelement3i + surface->num_firsttriangle * 3, rsurface.array_deformednormal3f, r_smoothnormals_areaweighting.integer);
4584                                 Mod_BuildTextureVectorsFromNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, rsurface.vertex3f, rsurface.modeltexcoordtexture2f, rsurface.array_deformednormal3f, rsurface.modelelement3i + surface->num_firsttriangle * 3, rsurface.array_deformedsvector3f, rsurface.array_deformedtvector3f, r_smoothnormals_areaweighting.integer);
4585                         }
4586                         rsurface.vertex3f = rsurface.array_deformedvertex3f;
4587                         rsurface.vertex3f_bufferobject = 0;
4588                         rsurface.vertex3f_bufferoffset = 0;
4589                         rsurface.svector3f = rsurface.array_deformedsvector3f;
4590                         rsurface.svector3f_bufferobject = 0;
4591                         rsurface.svector3f_bufferoffset = 0;
4592                         rsurface.tvector3f = rsurface.array_deformedtvector3f;
4593                         rsurface.tvector3f_bufferobject = 0;
4594                         rsurface.tvector3f_bufferoffset = 0;
4595                         rsurface.normal3f = rsurface.array_deformednormal3f;
4596                         rsurface.normal3f_bufferobject = 0;
4597                         rsurface.normal3f_bufferoffset = 0;
4598                         break;
4599                 case Q3DEFORM_AUTOSPRITE2:
4600                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.forward, newforward);
4601                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.right, newright);
4602                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.up, newup);
4603                         VectorNormalize(newforward);
4604                         VectorNormalize(newright);
4605                         VectorNormalize(newup);
4606                         // make deformed versions of only the model vertices used by the specified surfaces
4607                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4608                         {
4609                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4610                                 const float *v1, *v2;
4611                                 vec3_t start, end;
4612                                 float f, l;
4613                                 struct
4614                                 {
4615                                         float length2;
4616                                         const float *v1;
4617                                         const float *v2;
4618                                 }
4619                                 shortest[2];
4620                                 memset(shortest, 0, sizeof(shortest));
4621                                 // a single autosprite surface can contain multiple sprites...
4622                                 for (j = 0;j < surface->num_vertices - 3;j += 4)
4623                                 {
4624                                         VectorClear(center);
4625                                         for (i = 0;i < 4;i++)
4626                                                 VectorAdd(center, (rsurface.vertex3f + 3 * surface->num_firstvertex) + (j+i) * 3, center);
4627                                         VectorScale(center, 0.25f, center);
4628                                         // find the two shortest edges, then use them to define the
4629                                         // axis vectors for rotating around the central axis
4630                                         for (i = 0;i < 6;i++)
4631                                         {
4632                                                 v1 = rsurface.vertex3f + 3 * (surface->num_firstvertex + quadedges[i][0]);
4633                                                 v2 = rsurface.vertex3f + 3 * (surface->num_firstvertex + quadedges[i][1]);
4634 #if 0
4635                                                 Debug_PolygonBegin(NULL, 0, false, 0);
4636                                                 Debug_PolygonVertex(v1[0], v1[1], v1[2], 0, 0, 1, 0, 0, 1);
4637                                                 Debug_PolygonVertex((v1[0] + v2[0]) * 0.5f + rsurface.normal3f[3 * (surface->num_firstvertex + j)+0] * 4, (v1[1] + v2[1]) * 0.5f + rsurface.normal3f[3 * (surface->num_firstvertex + j)+1], (v1[2] + v2[2]) * 0.5f + rsurface.normal3f[3 * (surface->num_firstvertex + j)+2], 0, 0, 1, 1, 0, 1);
4638                                                 Debug_PolygonVertex(v2[0], v2[1], v2[2], 0, 0, 1, 0, 0, 1);
4639                                                 Debug_PolygonEnd();
4640 #endif
4641                                                 l = VectorDistance2(v1, v2);
4642                                                 // this length bias tries to make sense of square polygons, assuming they are meant to be upright
4643                                                 if (v1[2] != v2[2])
4644                                                         l += (1.0f / 1024.0f);
4645                                                 if (shortest[0].length2 > l || i == 0)
4646                                                 {
4647                                                         shortest[1] = shortest[0];
4648                                                         shortest[0].length2 = l;
4649                                                         shortest[0].v1 = v1;
4650                                                         shortest[0].v2 = v2;
4651                                                 }
4652                                                 else if (shortest[1].length2 > l || i == 1)
4653                                                 {
4654                                                         shortest[1].length2 = l;
4655                                                         shortest[1].v1 = v1;
4656                                                         shortest[1].v2 = v2;
4657                                                 }
4658                                         }
4659                                         VectorLerp(shortest[0].v1, 0.5f, shortest[0].v2, start);
4660                                         VectorLerp(shortest[1].v1, 0.5f, shortest[1].v2, end);
4661 #if 0
4662                                         Debug_PolygonBegin(NULL, 0, false, 0);
4663                                         Debug_PolygonVertex(start[0], start[1], start[2], 0, 0, 1, 1, 0, 1);
4664                                         Debug_PolygonVertex(center[0] + rsurface.normal3f[3 * (surface->num_firstvertex + j)+0] * 4, center[1] + rsurface.normal3f[3 * (surface->num_firstvertex + j)+1] * 4, center[2] + rsurface.normal3f[3 * (surface->num_firstvertex + j)+2] * 4, 0, 0, 0, 1, 0, 1);
4665                                         Debug_PolygonVertex(end[0], end[1], end[2], 0, 0, 0, 1, 1, 1);
4666                                         Debug_PolygonEnd();
4667 #endif
4668                                         // this calculates the right vector from the shortest edge
4669                                         // and the up vector from the edge midpoints
4670                                         VectorSubtract(shortest[0].v1, shortest[0].v2, right);
4671                                         VectorNormalize(right);
4672                                         VectorSubtract(end, start, up);
4673                                         VectorNormalize(up);
4674                                         // calculate a forward vector to use instead of the original plane normal (this is how we get a new right vector)
4675                                         //VectorSubtract(rsurface.modelorg, center, forward);
4676                                         Matrix4x4_Transform3x3(&rsurface.inversematrix, r_view.forward, forward);
4677                                         VectorNegate(forward, forward);
4678                                         VectorReflect(forward, 0, up, forward);
4679                                         VectorNormalize(forward);
4680                                         CrossProduct(up, forward, newright);
4681                                         VectorNormalize(newright);
4682 #if 0
4683                                         Debug_PolygonBegin(NULL, 0, false, 0);
4684                                         Debug_PolygonVertex(center[0] + rsurface.normal3f[3 * (surface->num_firstvertex + j)+0] * 8, center[1] + rsurface.normal3f[3 * (surface->num_firstvertex + j)+1] * 8, center[2] + rsurface.normal3f[3 * (surface->num_firstvertex + j)+2] * 8, 0, 0, 1, 0, 0, 1);
4685                                         Debug_PolygonVertex(center[0] + right[0] * 8, center[1] + right[1] * 8, center[2] + right[2] * 8, 0, 0, 0, 1, 0, 1);
4686                                         Debug_PolygonVertex(center[0] + up   [0] * 8, center[1] + up   [1] * 8, center[2] + up   [2] * 8, 0, 0, 0, 0, 1, 1);
4687                                         Debug_PolygonEnd();
4688 #endif
4689 #if 0
4690                                         Debug_PolygonBegin(NULL, 0, false, 0);
4691                                         Debug_PolygonVertex(center[0] + forward [0] * 8, center[1] + forward [1] * 8, center[2] + forward [2] * 8, 0, 0, 1, 0, 0, 1);
4692                                         Debug_PolygonVertex(center[0] + newright[0] * 8, center[1] + newright[1] * 8, center[2] + newright[2] * 8, 0, 0, 0, 1, 0, 1);
4693                                         Debug_PolygonVertex(center[0] + up      [0] * 8, center[1] + up      [1] * 8, center[2] + up      [2] * 8, 0, 0, 0, 0, 1, 1);
4694                                         Debug_PolygonEnd();
4695 #endif
4696                                         // rotate the quad around the up axis vector, this is made
4697                                         // especially easy by the fact we know the quad is flat,
4698                                         // so we only have to subtract the center position and
4699                                         // measure distance along the right vector, and then
4700                                         // multiply that by the newright vector and add back the
4701                                         // center position
4702                                         // we also need to subtract the old position to undo the
4703                                         // displacement from the center, which we do with a
4704                                         // DotProduct, the subtraction/addition of center is also
4705                                         // optimized into DotProducts here
4706                                         l = DotProduct(right, center);
4707                                         for (i = 0;i < 4;i++)
4708                                         {
4709                                                 v1 = rsurface.vertex3f + 3 * (surface->num_firstvertex + j + i);
4710                                                 f = DotProduct(right, v1) - l;
4711                                                 VectorMAMAM(1, v1, -f, right, f, newright, rsurface.array_deformedvertex3f + (surface->num_firstvertex+i+j) * 3);
4712                                         }
4713                                 }
4714                                 Mod_BuildNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, rsurface.vertex3f, rsurface.modelelement3i + surface->num_firsttriangle * 3, rsurface.array_deformednormal3f, r_smoothnormals_areaweighting.integer);
4715                                 Mod_BuildTextureVectorsFromNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, rsurface.vertex3f, rsurface.modeltexcoordtexture2f, rsurface.array_deformednormal3f, rsurface.modelelement3i + surface->num_firsttriangle * 3, rsurface.array_deformedsvector3f, rsurface.array_deformedtvector3f, r_smoothnormals_areaweighting.integer);
4716                         }
4717                         rsurface.vertex3f = rsurface.array_deformedvertex3f;
4718                         rsurface.vertex3f_bufferobject = 0;
4719                         rsurface.vertex3f_bufferoffset = 0;
4720                         rsurface.svector3f = rsurface.array_deformedsvector3f;
4721                         rsurface.svector3f_bufferobject = 0;
4722                         rsurface.svector3f_bufferoffset = 0;
4723                         rsurface.tvector3f = rsurface.array_deformedtvector3f;
4724                         rsurface.tvector3f_bufferobject = 0;
4725                         rsurface.tvector3f_bufferoffset = 0;
4726                         rsurface.normal3f = rsurface.array_deformednormal3f;
4727                         rsurface.normal3f_bufferobject = 0;
4728                         rsurface.normal3f_bufferoffset = 0;
4729                         break;
4730                 case Q3DEFORM_NORMAL:
4731                         // deform the normals to make reflections wavey
4732                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4733                         {
4734                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4735                                 for (j = 0;j < surface->num_vertices;j++)
4736                                 {
4737                                         float vertex[3];
4738                                         float *normal = (rsurface.array_deformednormal3f  + 3 * surface->num_firstvertex) + j*3;
4739                                         VectorScale((rsurface.vertex3f  + 3 * surface->num_firstvertex) + j*3, 0.98f, vertex);
4740                                         VectorCopy((rsurface.normal3f  + 3 * surface->num_firstvertex) + j*3, normal);
4741                                         normal[0] += deform->parms[0] * noise4f(      vertex[0], vertex[1], vertex[2], r_refdef.time * deform->parms[1]);
4742                                         normal[1] += deform->parms[0] * noise4f( 98 + vertex[0], vertex[1], vertex[2], r_refdef.time * deform->parms[1]);
4743                                         normal[2] += deform->parms[0] * noise4f(196 + vertex[0], vertex[1], vertex[2], r_refdef.time * deform->parms[1]);
4744                                         VectorNormalize(normal);
4745                                 }
4746                                 Mod_BuildTextureVectorsFromNormals(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, rsurface.vertex3f, rsurface.modeltexcoordtexture2f, rsurface.array_deformednormal3f, rsurface.modelelement3i + surface->num_firsttriangle * 3, rsurface.array_deformedsvector3f, rsurface.array_deformedtvector3f, r_smoothnormals_areaweighting.integer);
4747                         }
4748                         rsurface.svector3f = rsurface.array_deformedsvector3f;
4749                         rsurface.svector3f_bufferobject = 0;
4750                         rsurface.svector3f_bufferoffset = 0;
4751                         rsurface.tvector3f = rsurface.array_deformedtvector3f;
4752                         rsurface.tvector3f_bufferobject = 0;
4753                         rsurface.tvector3f_bufferoffset = 0;
4754                         rsurface.normal3f = rsurface.array_deformednormal3f;
4755                         rsurface.normal3f_bufferobject = 0;
4756                         rsurface.normal3f_bufferoffset = 0;
4757                         break;
4758                 case Q3DEFORM_WAVE:
4759                         // deform vertex array to make wavey water and flags and such
4760                         waveparms[0] = deform->waveparms[0];
4761                         waveparms[1] = deform->waveparms[1];
4762                         waveparms[2] = deform->waveparms[2];
4763                         waveparms[3] = deform->waveparms[3];
4764                         // this is how a divisor of vertex influence on deformation
4765                         animpos = deform->parms[0] ? 1.0f / deform->parms[0] : 100.0f;
4766                         scale = R_EvaluateQ3WaveFunc(deform->wavefunc, waveparms);
4767                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4768                         {
4769                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4770                                 for (j = 0;j < surface->num_vertices;j++)
4771                                 {
4772                                         float *vertex = (rsurface.array_deformedvertex3f  + 3 * surface->num_firstvertex) + j*3;
4773                                         VectorCopy((rsurface.vertex3f  + 3 * surface->num_firstvertex) + j*3, vertex);
4774                                         // if the wavefunc depends on time, evaluate it per-vertex
4775                                         if (waveparms[3])
4776                                         {
4777                                                 waveparms[2] = deform->waveparms[2] + (vertex[0] + vertex[1] + vertex[2]) * animpos;
4778                                                 scale = R_EvaluateQ3WaveFunc(deform->wavefunc, waveparms);
4779                                         }
4780                                         VectorMA(vertex, scale, (rsurface.normal3f  + 3 * surface->num_firstvertex) + j*3, vertex);
4781                                 }
4782                         }
4783                         rsurface.vertex3f = rsurface.array_deformedvertex3f;
4784                         rsurface.vertex3f_bufferobject = 0;
4785                         rsurface.vertex3f_bufferoffset = 0;
4786                         break;
4787                 case Q3DEFORM_BULGE:
4788                         // deform vertex array to make the surface have moving bulges
4789                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4790                         {
4791                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4792                                 for (j = 0;j < surface->num_vertices;j++)
4793                                 {
4794                                         scale = sin((rsurface.modeltexcoordtexture2f[2 * (surface->num_firstvertex + j)] * deform->parms[0] + r_refdef.time * deform->parms[2])) * deform->parms[1];
4795                                         VectorMA(rsurface.vertex3f + 3 * (surface->num_firstvertex + j), scale, rsurface.normal3f + 3 * (surface->num_firstvertex + j), rsurface.array_deformedvertex3f + 3 * (surface->num_firstvertex + j));
4796                                 }
4797                         }
4798                         rsurface.vertex3f = rsurface.array_deformedvertex3f;
4799                         rsurface.vertex3f_bufferobject = 0;
4800                         rsurface.vertex3f_bufferoffset = 0;
4801                         break;
4802                 case Q3DEFORM_MOVE:
4803                         // deform vertex array
4804                         scale = R_EvaluateQ3WaveFunc(deform->wavefunc, deform->waveparms);
4805                         VectorScale(deform->parms, scale, waveparms);
4806                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4807                         {
4808                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4809                                 for (j = 0;j < surface->num_vertices;j++)
4810                                         VectorAdd(rsurface.vertex3f + 3 * (surface->num_firstvertex + j), waveparms, rsurface.array_deformedvertex3f + 3 * (surface->num_firstvertex + j));
4811                         }
4812                         rsurface.vertex3f = rsurface.array_deformedvertex3f;
4813                         rsurface.vertex3f_bufferobject = 0;
4814                         rsurface.vertex3f_bufferoffset = 0;
4815                         break;
4816                 }
4817         }
4818         // generate texcoords based on the chosen texcoord source
4819         switch(rsurface.texture->tcgen.tcgen)
4820         {
4821         default:
4822         case Q3TCGEN_TEXTURE:
4823                 rsurface.texcoordtexture2f               = rsurface.modeltexcoordtexture2f;
4824                 rsurface.texcoordtexture2f_bufferobject  = rsurface.modeltexcoordtexture2f_bufferobject;
4825                 rsurface.texcoordtexture2f_bufferoffset  = rsurface.modeltexcoordtexture2f_bufferoffset;
4826                 break;
4827         case Q3TCGEN_LIGHTMAP:
4828                 rsurface.texcoordtexture2f               = rsurface.modeltexcoordlightmap2f;
4829                 rsurface.texcoordtexture2f_bufferobject  = rsurface.modeltexcoordlightmap2f_bufferobject;
4830                 rsurface.texcoordtexture2f_bufferoffset  = rsurface.modeltexcoordlightmap2f_bufferoffset;
4831                 break;
4832         case Q3TCGEN_VECTOR:
4833                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4834                 {
4835                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4836                         for (j = 0, v1 = rsurface.modelvertex3f + 3 * surface->num_firstvertex, out_tc = rsurface.array_generatedtexcoordtexture2f + 2 * surface->num_firstvertex;j < surface->num_vertices;j++, v1 += 3, out_tc += 2)
4837                         {
4838                                 out_tc[0] = DotProduct(v1, rsurface.texture->tcgen.parms);
4839                                 out_tc[1] = DotProduct(v1, rsurface.texture->tcgen.parms + 3);
4840                         }
4841                 }
4842                 rsurface.texcoordtexture2f               = rsurface.array_generatedtexcoordtexture2f;
4843                 rsurface.texcoordtexture2f_bufferobject  = 0;
4844                 rsurface.texcoordtexture2f_bufferoffset  = 0;
4845                 break;
4846         case Q3TCGEN_ENVIRONMENT:
4847                 // make environment reflections using a spheremap
4848                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4849                 {
4850                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4851                         const float *vertex = rsurface.modelvertex3f + 3 * surface->num_firstvertex;
4852                         const float *normal = rsurface.modelnormal3f + 3 * surface->num_firstvertex;
4853                         float *out_tc = rsurface.array_generatedtexcoordtexture2f + 2 * surface->num_firstvertex;
4854                         for (j = 0;j < surface->num_vertices;j++, vertex += 3, normal += 3, out_tc += 2)
4855                         {
4856                                 float l, d, eyedir[3];
4857                                 VectorSubtract(rsurface.modelorg, vertex, eyedir);
4858                                 l = 0.5f / VectorLength(eyedir);
4859                                 d = DotProduct(normal, eyedir)*2;
4860                                 out_tc[0] = 0.5f + (normal[1]*d - eyedir[1])*l;
4861                                 out_tc[1] = 0.5f - (normal[2]*d - eyedir[2])*l;
4862                         }
4863                 }
4864                 rsurface.texcoordtexture2f               = rsurface.array_generatedtexcoordtexture2f;
4865                 rsurface.texcoordtexture2f_bufferobject  = 0;
4866                 rsurface.texcoordtexture2f_bufferoffset  = 0;
4867                 break;
4868         }
4869         // the only tcmod that needs software vertex processing is turbulent, so
4870         // check for it here and apply the changes if needed
4871         // and we only support that as the first one
4872         // (handling a mixture of turbulent and other tcmods would be problematic
4873         //  without punting it entirely to a software path)
4874         if (rsurface.texture->tcmods[0].tcmod == Q3TCMOD_TURBULENT)
4875         {
4876                 amplitude = rsurface.texture->tcmods[0].parms[1];
4877                 animpos = rsurface.texture->tcmods[0].parms[2] + r_refdef.time * rsurface.texture->tcmods[0].parms[3];
4878                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
4879                 {
4880                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
4881                         for (j = 0, v1 = rsurface.modelvertex3f + 3 * surface->num_firstvertex, in_tc = rsurface.texcoordtexture2f + 2 * surface->num_firstvertex, out_tc = rsurface.array_generatedtexcoordtexture2f + 2 * surface->num_firstvertex;j < surface->num_vertices;j++, v1 += 3, in_tc += 2, out_tc += 2)
4882                         {
4883                                 out_tc[0] = in_tc[0] + amplitude * sin(((v1[0] + v1[2]) * 1.0 / 1024.0f + animpos) * M_PI * 2);
4884                                 out_tc[1] = in_tc[1] + amplitude * sin(((v1[1]        ) * 1.0 / 1024.0f + animpos) * M_PI * 2);
4885                         }
4886                 }
4887                 rsurface.texcoordtexture2f               = rsurface.array_generatedtexcoordtexture2f;
4888                 rsurface.texcoordtexture2f_bufferobject  = 0;
4889                 rsurface.texcoordtexture2f_bufferoffset  = 0;
4890         }
4891         rsurface.texcoordlightmap2f              = rsurface.modeltexcoordlightmap2f;
4892         rsurface.texcoordlightmap2f_bufferobject = rsurface.modeltexcoordlightmap2f_bufferobject;
4893         rsurface.texcoordlightmap2f_bufferoffset = rsurface.modeltexcoordlightmap2f_bufferoffset;
4894         R_Mesh_VertexPointer(rsurface.vertex3f, rsurface.vertex3f_bufferobject, rsurface.vertex3f_bufferoffset);
4895 }
4896
4897 void RSurf_DrawBatch_Simple(int texturenumsurfaces, msurface_t **texturesurfacelist)
4898 {
4899         int i, j;
4900         const msurface_t *surface = texturesurfacelist[0];
4901         const msurface_t *surface2;
4902         int firstvertex;
4903         int endvertex;
4904         int numvertices;
4905         int numtriangles;
4906         // TODO: lock all array ranges before render, rather than on each surface
4907         if (texturenumsurfaces == 1)
4908         {
4909                 GL_LockArrays(surface->num_firstvertex, surface->num_vertices);
4910                 R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
4911         }
4912         else if (r_batchmode.integer == 2)
4913         {
4914                 #define MAXBATCHTRIANGLES 4096
4915                 int batchtriangles = 0;
4916                 int batchelements[MAXBATCHTRIANGLES*3];
4917                 for (i = 0;i < texturenumsurfaces;i = j)
4918                 {
4919                         surface = texturesurfacelist[i];
4920                         j = i + 1;
4921                         if (surface->num_triangles > MAXBATCHTRIANGLES)
4922                         {
4923                                 R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
4924                                 continue;
4925                         }
4926                         memcpy(batchelements, rsurface.modelelement3i + 3 * surface->num_firsttriangle, surface->num_triangles * sizeof(int[3]));
4927                         batchtriangles = surface->num_triangles;
4928                         firstvertex = surface->num_firstvertex;
4929                         endvertex = surface->num_firstvertex + surface->num_vertices;
4930                         for (;j < texturenumsurfaces;j++)
4931                         {
4932                                 surface2 = texturesurfacelist[j];
4933                                 if (batchtriangles + surface2->num_triangles > MAXBATCHTRIANGLES)
4934                                         break;
4935                                 memcpy(batchelements + batchtriangles * 3, rsurface.modelelement3i + 3 * surface2->num_firsttriangle, surface2->num_triangles * sizeof(int[3]));
4936                                 batchtriangles += surface2->num_triangles;
4937                                 firstvertex = min(firstvertex, surface2->num_firstvertex);
4938                                 endvertex = max(endvertex, surface2->num_firstvertex + surface2->num_vertices);
4939                         }
4940                         surface2 = texturesurfacelist[j-1];
4941                         numvertices = endvertex - firstvertex;
4942                         R_Mesh_Draw(firstvertex, numvertices, batchtriangles, batchelements, 0, 0);
4943                 }
4944         }
4945         else if (r_batchmode.integer == 1)
4946         {
4947                 for (i = 0;i < texturenumsurfaces;i = j)
4948                 {
4949                         surface = texturesurfacelist[i];
4950                         for (j = i + 1, surface2 = surface + 1;j < texturenumsurfaces;j++, surface2++)
4951                                 if (texturesurfacelist[j] != surface2)
4952                                         break;
4953                         surface2 = texturesurfacelist[j-1];
4954                         numvertices = surface2->num_firstvertex + surface2->num_vertices - surface->num_firstvertex;
4955                         numtriangles = surface2->num_firsttriangle + surface2->num_triangles - surface->num_firsttriangle;
4956                         GL_LockArrays(surface->num_firstvertex, numvertices);
4957                         R_Mesh_Draw(surface->num_firstvertex, numvertices, numtriangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
4958                 }
4959         }
4960         else
4961         {
4962                 for (i = 0;i < texturenumsurfaces;i++)
4963                 {
4964                         surface = texturesurfacelist[i];
4965                         GL_LockArrays(surface->num_firstvertex, surface->num_vertices);
4966                         R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
4967                 }
4968         }
4969 }
4970
4971 static void RSurf_DrawBatch_WithLightmapSwitching_WithWaterTextureSwitching(int texturenumsurfaces, msurface_t **texturesurfacelist, int lightmaptexunit, int deluxemaptexunit, int refractiontexunit, int reflectiontexunit)
4972 {
4973         int i, planeindex, vertexindex;
4974         float d, bestd;
4975         vec3_t vert;
4976         const float *v;
4977         r_waterstate_waterplane_t *p, *bestp;
4978         msurface_t *surface;
4979         if (r_waterstate.renderingscene)
4980                 return;
4981         for (i = 0;i < texturenumsurfaces;i++)
4982         {
4983                 surface = texturesurfacelist[i];
4984                 if (lightmaptexunit >= 0)
4985                         R_Mesh_TexBind(lightmaptexunit, R_GetTexture(surface->lightmaptexture));
4986                 if (deluxemaptexunit >= 0)
4987                         R_Mesh_TexBind(deluxemaptexunit, R_GetTexture(surface->deluxemaptexture));
4988                 // pick the closest matching water plane
4989                 bestd = 0;
4990                 bestp = NULL;
4991                 for (planeindex = 0, p = r_waterstate.waterplanes;planeindex < r_waterstate.numwaterplanes;planeindex++, p++)
4992                 {
4993                         d = 0;
4994                         for (vertexindex = 0, v = rsurface.modelvertex3f + surface->num_firstvertex * 3;vertexindex < surface->num_vertices;vertexindex++, v += 3)
4995                         {
4996                                 Matrix4x4_Transform(&rsurface.matrix, v, vert);
4997                                 d += fabs(PlaneDiff(vert, &p->plane));
4998                         }
4999                         if (bestd > d || !bestp)
5000                         {
5001                                 bestd = d;
5002                                 bestp = p;
5003                         }
5004                 }
5005                 if (bestp)
5006                 {
5007                         if (refractiontexunit >= 0)
5008                                 R_Mesh_TexBind(refractiontexunit, R_GetTexture(bestp->texture_refraction));
5009                         if (reflectiontexunit >= 0)
5010                                 R_Mesh_TexBind(reflectiontexunit, R_GetTexture(bestp->texture_reflection));
5011                 }
5012                 else
5013                 {
5014                         if (refractiontexunit >= 0)
5015                                 R_Mesh_TexBind(refractiontexunit, R_GetTexture(r_texture_black));
5016                         if (reflectiontexunit >= 0)
5017                                 R_Mesh_TexBind(reflectiontexunit, R_GetTexture(r_texture_black));
5018                 }
5019                 GL_LockArrays(surface->num_firstvertex, surface->num_vertices);
5020                 R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
5021         }
5022 }
5023
5024 static void RSurf_DrawBatch_WithLightmapSwitching(int texturenumsurfaces, msurface_t **texturesurfacelist, int lightmaptexunit, int deluxemaptexunit)
5025 {
5026         int i;
5027         int j;
5028         const msurface_t *surface = texturesurfacelist[0];
5029         const msurface_t *surface2;
5030         int firstvertex;
5031         int endvertex;
5032         int numvertices;
5033         int numtriangles;
5034         // TODO: lock all array ranges before render, rather than on each surface
5035         if (texturenumsurfaces == 1)
5036         {
5037                 R_Mesh_TexBind(lightmaptexunit, R_GetTexture(surface->lightmaptexture));
5038                 if (deluxemaptexunit >= 0)
5039                         R_Mesh_TexBind(deluxemaptexunit, R_GetTexture(surface->deluxemaptexture));
5040                 GL_LockArrays(surface->num_firstvertex, surface->num_vertices);
5041                 R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
5042         }
5043         else if (r_batchmode.integer == 2)
5044         {
5045                 #define MAXBATCHTRIANGLES 4096
5046                 int batchtriangles = 0;
5047                 int batchelements[MAXBATCHTRIANGLES*3];
5048                 for (i = 0;i < texturenumsurfaces;i = j)
5049                 {
5050                         surface = texturesurfacelist[i];
5051                         R_Mesh_TexBind(lightmaptexunit, R_GetTexture(surface->lightmaptexture));
5052                         if (deluxemaptexunit >= 0)
5053                                 R_Mesh_TexBind(deluxemaptexunit, R_GetTexture(surface->deluxemaptexture));
5054                         j = i + 1;
5055                         if (surface->num_triangles > MAXBATCHTRIANGLES)
5056                         {
5057                                 R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
5058                                 continue;
5059                         }
5060                         memcpy(batchelements, rsurface.modelelement3i + 3 * surface->num_firsttriangle, surface->num_triangles * sizeof(int[3]));
5061                         batchtriangles = surface->num_triangles;
5062                         firstvertex = surface->num_firstvertex;
5063                         endvertex = surface->num_firstvertex + surface->num_vertices;
5064                         for (;j < texturenumsurfaces;j++)
5065                         {
5066                                 surface2 = texturesurfacelist[j];
5067                                 if (surface2->lightmaptexture != surface->lightmaptexture || batchtriangles + surface2->num_triangles > MAXBATCHTRIANGLES)
5068                                         break;
5069                                 memcpy(batchelements + batchtriangles * 3, rsurface.modelelement3i + 3 * surface2->num_firsttriangle, surface2->num_triangles * sizeof(int[3]));
5070                                 batchtriangles += surface2->num_triangles;
5071                                 firstvertex = min(firstvertex, surface2->num_firstvertex);
5072                                 endvertex = max(endvertex, surface2->num_firstvertex + surface2->num_vertices);
5073                         }
5074                         surface2 = texturesurfacelist[j-1];
5075                         numvertices = endvertex - firstvertex;
5076                         R_Mesh_Draw(firstvertex, numvertices, batchtriangles, batchelements, 0, 0);
5077                 }
5078         }
5079         else if (r_batchmode.integer == 1)
5080         {
5081 #if 0
5082                 Con_Printf("%s batch sizes ignoring lightmap:", rsurface.texture->name);
5083                 for (i = 0;i < texturenumsurfaces;i = j)
5084                 {
5085                         surface = texturesurfacelist[i];
5086                         for (j = i + 1, surface2 = surface + 1;j < texturenumsurfaces;j++, surface2++)
5087                                 if (texturesurfacelist[j] != surface2)
5088                                         break;
5089                         Con_Printf(" %i", j - i);
5090                 }
5091                 Con_Printf("\n");
5092                 Con_Printf("%s batch sizes honoring lightmap:", rsurface.texture->name);
5093 #endif
5094                 for (i = 0;i < texturenumsurfaces;i = j)
5095                 {
5096                         surface = texturesurfacelist[i];
5097                         R_Mesh_TexBind(lightmaptexunit, R_GetTexture(surface->lightmaptexture));
5098                         if (deluxemaptexunit >= 0)
5099                                 R_Mesh_TexBind(deluxemaptexunit, R_GetTexture(surface->deluxemaptexture));
5100                         for (j = i + 1, surface2 = surface + 1;j < texturenumsurfaces;j++, surface2++)
5101                                 if (texturesurfacelist[j] != surface2 || texturesurfacelist[j]->lightmaptexture != surface->lightmaptexture)
5102                                         break;
5103 #if 0
5104                         Con_Printf(" %i", j - i);
5105 #endif
5106                         surface2 = texturesurfacelist[j-1];
5107                         numvertices = surface2->num_firstvertex + surface2->num_vertices - surface->num_firstvertex;
5108                         numtriangles = surface2->num_firsttriangle + surface2->num_triangles - surface->num_firsttriangle;
5109                         GL_LockArrays(surface->num_firstvertex, numvertices);
5110                         R_Mesh_Draw(surface->num_firstvertex, numvertices, numtriangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
5111                 }
5112 #if 0
5113                 Con_Printf("\n");
5114 #endif
5115         }
5116         else
5117         {
5118                 for (i = 0;i < texturenumsurfaces;i++)
5119                 {
5120                         surface = texturesurfacelist[i];
5121                         R_Mesh_TexBind(lightmaptexunit, R_GetTexture(surface->lightmaptexture));
5122                         if (deluxemaptexunit >= 0)
5123                                 R_Mesh_TexBind(deluxemaptexunit, R_GetTexture(surface->deluxemaptexture));
5124                         GL_LockArrays(surface->num_firstvertex, surface->num_vertices);
5125                         R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
5126                 }
5127         }
5128 }
5129
5130 static void RSurf_DrawBatch_ShowSurfaces(int texturenumsurfaces, msurface_t **texturesurfacelist)
5131 {
5132         int j;
5133         int texturesurfaceindex;
5134         if (r_showsurfaces.integer == 2)
5135         {
5136                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5137                 {
5138                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5139                         for (j = 0;j < surface->num_triangles;j++)
5140                         {
5141                                 float f = ((j + surface->num_firsttriangle) & 31) * (1.0f / 31.0f) * r_view.colorscale;
5142                                 GL_Color(f, f, f, 1);
5143                                 R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, 1, (rsurface.modelelement3i + 3 * (j + surface->num_firsttriangle)), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * (j + surface->num_firsttriangle)));
5144                         }
5145                 }
5146         }
5147         else
5148         {
5149                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5150                 {
5151                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5152                         int k = (int)(((size_t)surface) / sizeof(msurface_t));
5153                         GL_Color((k & 15) * (1.0f / 16.0f) * r_view.colorscale, ((k >> 4) & 15) * (1.0f / 16.0f) * r_view.colorscale, ((k >> 8) & 15) * (1.0f / 16.0f) * r_view.colorscale, 1);
5154                         GL_LockArrays(surface->num_firstvertex, surface->num_vertices);
5155                         R_Mesh_Draw(surface->num_firstvertex, surface->num_vertices, surface->num_triangles, (rsurface.modelelement3i + 3 * surface->num_firsttriangle), rsurface.modelelement3i_bufferobject, (sizeof(int[3]) * surface->num_firsttriangle));
5156                 }
5157         }
5158 }
5159
5160 static void RSurf_DrawBatch_GL11_ApplyFog(int texturenumsurfaces, msurface_t **texturesurfacelist)
5161 {
5162         int texturesurfaceindex;
5163         int i;
5164         float f;
5165         float *v, *c, *c2;
5166         if (rsurface.lightmapcolor4f)
5167         {
5168                 // generate color arrays for the surfaces in this list
5169                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5170                 {
5171                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5172                         for (i = 0, v = (rsurface.vertex3f + 3 * surface->num_firstvertex), c = (rsurface.lightmapcolor4f + 4 * surface->num_firstvertex), c2 = (rsurface.array_color4f + 4 * surface->num_firstvertex);i < surface->num_vertices;i++, v += 3, c += 4, c2 += 4)
5173                         {
5174                                 f = FogPoint_Model(v);
5175                                 c2[0] = c[0] * f;
5176                                 c2[1] = c[1] * f;
5177                                 c2[2] = c[2] * f;
5178                                 c2[3] = c[3];
5179                         }
5180                 }
5181         }
5182         else
5183         {
5184                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5185                 {
5186                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5187                         for (i = 0, v = (rsurface.vertex3f + 3 * surface->num_firstvertex), c2 = (rsurface.array_color4f + 4 * surface->num_firstvertex);i < surface->num_vertices;i++, v += 3, c2 += 4)
5188                         {
5189                                 f = FogPoint_Model(v);
5190                                 c2[0] = f;
5191                                 c2[1] = f;
5192                                 c2[2] = f;
5193                                 c2[3] = 1;
5194                         }
5195                 }
5196         }
5197         rsurface.lightmapcolor4f = rsurface.array_color4f;
5198         rsurface.lightmapcolor4f_bufferobject = 0;
5199         rsurface.lightmapcolor4f_bufferoffset = 0;
5200 }
5201
5202 static void RSurf_DrawBatch_GL11_ApplyColor(int texturenumsurfaces, msurface_t **texturesurfacelist, float r, float g, float b, float a)
5203 {
5204         int texturesurfaceindex;
5205         int i;
5206         float *c, *c2;
5207         if (!rsurface.lightmapcolor4f)
5208                 return;
5209         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5210         {
5211                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5212                 for (i = 0, c = (rsurface.lightmapcolor4f + 4 * surface->num_firstvertex), c2 = (rsurface.array_color4f + 4 * surface->num_firstvertex);i < surface->num_vertices;i++, c += 4, c2 += 4)
5213                 {
5214                         c2[0] = c[0] * r;
5215                         c2[1] = c[1] * g;
5216                         c2[2] = c[2] * b;
5217                         c2[3] = c[3] * a;
5218                 }
5219         }
5220         rsurface.lightmapcolor4f = rsurface.array_color4f;
5221         rsurface.lightmapcolor4f_bufferobject = 0;
5222         rsurface.lightmapcolor4f_bufferoffset = 0;
5223 }
5224
5225 static void RSurf_DrawBatch_GL11_Lightmap(int texturenumsurfaces, msurface_t **texturesurfacelist, float r, float g, float b, float a, qboolean applycolor, qboolean applyfog)
5226 {
5227         // TODO: optimize
5228         rsurface.lightmapcolor4f = NULL;
5229         rsurface.lightmapcolor4f_bufferobject = 0;
5230         rsurface.lightmapcolor4f_bufferoffset = 0;
5231         if (applyfog)   RSurf_DrawBatch_GL11_ApplyFog(texturenumsurfaces, texturesurfacelist);
5232         if (applycolor) RSurf_DrawBatch_GL11_ApplyColor(texturenumsurfaces, texturesurfacelist, r, g, b, a);
5233         R_Mesh_ColorPointer(rsurface.lightmapcolor4f, rsurface.lightmapcolor4f_bufferobject, rsurface.lightmapcolor4f_bufferoffset);
5234         GL_Color(r, g, b, a);
5235         RSurf_DrawBatch_WithLightmapSwitching(texturenumsurfaces, texturesurfacelist, 0, -1);
5236 }
5237
5238 static void RSurf_DrawBatch_GL11_Unlit(int texturenumsurfaces, msurface_t **texturesurfacelist, float r, float g, float b, float a, qboolean applycolor, qboolean applyfog)
5239 {
5240         // TODO: optimize applyfog && applycolor case
5241         // just apply fog if necessary, and tint the fog color array if necessary
5242         rsurface.lightmapcolor4f = NULL;
5243         rsurface.lightmapcolor4f_bufferobject = 0;
5244         rsurface.lightmapcolor4f_bufferoffset = 0;
5245         if (applyfog)   RSurf_DrawBatch_GL11_ApplyFog(texturenumsurfaces, texturesurfacelist);
5246         if (applycolor) RSurf_DrawBatch_GL11_ApplyColor(texturenumsurfaces, texturesurfacelist, r, g, b, a);
5247         R_Mesh_ColorPointer(rsurface.lightmapcolor4f, rsurface.lightmapcolor4f_bufferobject, rsurface.lightmapcolor4f_bufferoffset);
5248         GL_Color(r, g, b, a);
5249         RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5250 }
5251
5252 static void RSurf_DrawBatch_GL11_VertexColor(int texturenumsurfaces, msurface_t **texturesurfacelist, float r, float g, float b, float a, qboolean applycolor, qboolean applyfog)
5253 {
5254         int texturesurfaceindex;
5255         int i;
5256         float *c;
5257         // TODO: optimize
5258         if (texturesurfacelist[0]->lightmapinfo && texturesurfacelist[0]->lightmapinfo->stainsamples)
5259         {
5260                 // generate color arrays for the surfaces in this list
5261                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5262                 {
5263                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5264                         for (i = 0, c = rsurface.array_color4f + 4 * surface->num_firstvertex;i < surface->num_vertices;i++, c += 4)
5265                         {
5266                                 if (surface->lightmapinfo->samples)
5267                                 {
5268                                         const unsigned char *lm = surface->lightmapinfo->samples + (rsurface.modellightmapoffsets + surface->num_firstvertex)[i];
5269                                         float scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[0]] * (1.0f / 32768.0f);
5270                                         VectorScale(lm, scale, c);
5271                                         if (surface->lightmapinfo->styles[1] != 255)
5272                                         {
5273                                                 int size3 = ((surface->lightmapinfo->extents[0]>>4)+1)*((surface->lightmapinfo->extents[1]>>4)+1)*3;
5274                                                 lm += size3;
5275                                                 scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[1]] * (1.0f / 32768.0f);
5276                                                 VectorMA(c, scale, lm, c);
5277                                                 if (surface->lightmapinfo->styles[2] != 255)
5278                                                 {
5279                                                         lm += size3;
5280                                                         scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[2]] * (1.0f / 32768.0f);
5281                                                         VectorMA(c, scale, lm, c);
5282                                                         if (surface->lightmapinfo->styles[3] != 255)
5283                                                         {
5284                                                                 lm += size3;
5285                                                                 scale = r_refdef.lightstylevalue[surface->lightmapinfo->styles[3]] * (1.0f / 32768.0f);
5286                                                                 VectorMA(c, scale, lm, c);
5287                                                         }
5288                                                 }
5289                                         }
5290                                 }
5291                                 else
5292                                         VectorClear(c);
5293                                 c[3] = 1;
5294                         }
5295                 }
5296                 rsurface.lightmapcolor4f = rsurface.array_color4f;
5297                 rsurface.lightmapcolor4f_bufferobject = 0;
5298                 rsurface.lightmapcolor4f_bufferoffset = 0;
5299         }
5300         else
5301         {
5302                 rsurface.lightmapcolor4f = rsurface.modellightmapcolor4f;
5303                 rsurface.lightmapcolor4f_bufferobject = rsurface.modellightmapcolor4f_bufferobject;
5304                 rsurface.lightmapcolor4f_bufferoffset = rsurface.modellightmapcolor4f_bufferoffset;
5305         }
5306         if (applyfog)   RSurf_DrawBatch_GL11_ApplyFog(texturenumsurfaces, texturesurfacelist);
5307         if (applycolor) RSurf_DrawBatch_GL11_ApplyColor(texturenumsurfaces, texturesurfacelist, r, g, b, a);
5308         R_Mesh_ColorPointer(rsurface.lightmapcolor4f, rsurface.lightmapcolor4f_bufferobject, rsurface.lightmapcolor4f_bufferoffset);
5309         GL_Color(r, g, b, a);
5310         RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5311 }
5312
5313 static void RSurf_DrawBatch_GL11_VertexShade(int texturenumsurfaces, msurface_t **texturesurfacelist, float r, float g, float b, float a, qboolean applycolor, qboolean applyfog)
5314 {
5315         int texturesurfaceindex;
5316         int i;
5317         float f;
5318         float *v, *c, *c2;
5319         vec3_t ambientcolor;
5320         vec3_t diffusecolor;
5321         vec3_t lightdir;
5322         // TODO: optimize
5323         // model lighting
5324         VectorCopy(rsurface.modellight_lightdir, lightdir);
5325         f = 0.5f * r_refdef.lightmapintensity;
5326         ambientcolor[0] = rsurface.modellight_ambient[0] * r * f;
5327         ambientcolor[1] = rsurface.modellight_ambient[1] * g * f;
5328         ambientcolor[2] = rsurface.modellight_ambient[2] * b * f;
5329         diffusecolor[0] = rsurface.modellight_diffuse[0] * r * f;
5330         diffusecolor[1] = rsurface.modellight_diffuse[1] * g * f;
5331         diffusecolor[2] = rsurface.modellight_diffuse[2] * b * f;
5332         if (VectorLength2(diffusecolor) > 0)
5333         {
5334                 // generate color arrays for the surfaces in this list
5335                 for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5336                 {
5337                         const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5338                         int numverts = surface->num_vertices;
5339                         v = rsurface.vertex3f + 3 * surface->num_firstvertex;
5340                         c2 = rsurface.normal3f + 3 * surface->num_firstvertex;
5341                         c = rsurface.array_color4f + 4 * surface->num_firstvertex;
5342                         // q3-style directional shading
5343                         for (i = 0;i < numverts;i++, v += 3, c2 += 3, c += 4)
5344                         {
5345                                 if ((f = DotProduct(c2, lightdir)) > 0)
5346                                         VectorMA(ambientcolor, f, diffusecolor, c);
5347                                 else
5348                                         VectorCopy(ambientcolor, c);
5349                                 c[3] = a;
5350                         }
5351                 }
5352                 r = 1;
5353                 g = 1;
5354                 b = 1;
5355                 a = 1;
5356                 applycolor = false;
5357                 rsurface.lightmapcolor4f = rsurface.array_color4f;
5358                 rsurface.lightmapcolor4f_bufferobject = 0;
5359                 rsurface.lightmapcolor4f_bufferoffset = 0;
5360         }
5361         else
5362         {
5363                 r = ambientcolor[0];
5364                 g = ambientcolor[1];
5365                 b = ambientcolor[2];
5366                 rsurface.lightmapcolor4f = NULL;
5367                 rsurface.lightmapcolor4f_bufferobject = 0;
5368                 rsurface.lightmapcolor4f_bufferoffset = 0;
5369         }
5370         if (applyfog)   RSurf_DrawBatch_GL11_ApplyFog(texturenumsurfaces, texturesurfacelist);
5371         if (applycolor) RSurf_DrawBatch_GL11_ApplyColor(texturenumsurfaces, texturesurfacelist, r, g, b, a);
5372         R_Mesh_ColorPointer(rsurface.lightmapcolor4f, rsurface.lightmapcolor4f_bufferobject, rsurface.lightmapcolor4f_bufferoffset);
5373         GL_Color(r, g, b, a);
5374         RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5375 }
5376
5377 void RSurf_SetupDepthAndCulling(void)
5378 {
5379         // submodels are biased to avoid z-fighting with world surfaces that they
5380         // may be exactly overlapping (avoids z-fighting artifacts on certain
5381         // doors and things in Quake maps)
5382         GL_DepthRange(0, (rsurface.texture->currentmaterialflags & MATERIALFLAG_SHORTDEPTHRANGE) ? 0.0625 : 1);
5383         GL_PolygonOffset(rsurface.basepolygonfactor + rsurface.texture->biaspolygonfactor, rsurface.basepolygonoffset + rsurface.texture->biaspolygonoffset);
5384         GL_DepthTest(!(rsurface.texture->currentmaterialflags & MATERIALFLAG_NODEPTHTEST));
5385         GL_CullFace((rsurface.texture->currentmaterialflags & MATERIALFLAG_NOCULLFACE) ? GL_NONE : r_view.cullface_back);
5386 }
5387
5388 static void R_DrawTextureSurfaceList_ShowSurfaces(int texturenumsurfaces, msurface_t **texturesurfacelist)
5389 {
5390         RSurf_SetupDepthAndCulling();
5391         if (rsurface.mode != RSURFMODE_SHOWSURFACES)
5392         {
5393                 rsurface.mode = RSURFMODE_SHOWSURFACES;
5394                 GL_DepthMask(true);
5395                 GL_BlendFunc(GL_ONE, GL_ZERO);
5396                 R_Mesh_ColorPointer(NULL, 0, 0);
5397                 R_Mesh_ResetTextureState();
5398         }
5399         RSurf_PrepareVerticesForBatch(false, false, texturenumsurfaces, texturesurfacelist);
5400         RSurf_DrawBatch_ShowSurfaces(texturenumsurfaces, texturesurfacelist);
5401 }
5402
5403 static void R_DrawTextureSurfaceList_Sky(int texturenumsurfaces, msurface_t **texturesurfacelist)
5404 {
5405         // transparent sky would be ridiculous
5406         if ((rsurface.texture->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED))
5407                 return;
5408         if (rsurface.mode != RSURFMODE_SKY)
5409         {
5410                 if (rsurface.mode == RSURFMODE_GLSL)
5411                 {
5412                         qglUseProgramObjectARB(0);CHECKGLERROR
5413                 }
5414                 rsurface.mode = RSURFMODE_SKY;
5415         }
5416         if (skyrendernow)
5417         {
5418                 skyrendernow = false;
5419                 R_Sky();
5420                 // restore entity matrix
5421                 R_Mesh_Matrix(&rsurface.matrix);
5422         }
5423         RSurf_SetupDepthAndCulling();
5424         GL_DepthMask(true);
5425         // LordHavoc: HalfLife maps have freaky skypolys so don't use
5426         // skymasking on them, and Quake3 never did sky masking (unlike
5427         // software Quake and software Quake2), so disable the sky masking
5428         // in Quake3 maps as it causes problems with q3map2 sky tricks,
5429         // and skymasking also looks very bad when noclipping outside the
5430         // level, so don't use it then either.
5431         if (r_refdef.worldmodel && r_refdef.worldmodel->type == mod_brushq1 && r_q1bsp_skymasking.integer && !r_viewcache.world_novis)
5432         {
5433                 GL_Color(r_refdef.fogcolor[0] * r_view.colorscale, r_refdef.fogcolor[1] * r_view.colorscale, r_refdef.fogcolor[2] * r_view.colorscale, 1);
5434                 R_Mesh_ColorPointer(NULL, 0, 0);
5435                 R_Mesh_ResetTextureState();
5436                 if (skyrendermasked)
5437                 {
5438                         // depth-only (masking)
5439                         GL_ColorMask(0,0,0,0);
5440                         // just to make sure that braindead drivers don't draw
5441                         // anything despite that colormask...
5442                         GL_BlendFunc(GL_ZERO, GL_ONE);
5443                 }
5444                 else
5445                 {
5446                         // fog sky
5447                         GL_BlendFunc(GL_ONE, GL_ZERO);
5448                 }
5449                 RSurf_PrepareVerticesForBatch(false, false, texturenumsurfaces, texturesurfacelist);
5450                 RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5451                 if (skyrendermasked)
5452                         GL_ColorMask(r_view.colormask[0], r_view.colormask[1], r_view.colormask[2], 1);
5453         }
5454 }
5455
5456 static void R_DrawTextureSurfaceList_GL20(int texturenumsurfaces, msurface_t **texturesurfacelist)
5457 {
5458         if (r_waterstate.renderingscene && (rsurface.texture->currentmaterialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION)))
5459                 return;
5460
5461         if (rsurface.mode != RSURFMODE_GLSL)
5462         {
5463                 rsurface.mode = RSURFMODE_GLSL;
5464                 R_Mesh_ResetTextureState();
5465         }
5466
5467         R_Mesh_TexMatrix(0, &rsurface.texture->currenttexmatrix);
5468         R_Mesh_TexBind(0, R_GetTexture(rsurface.texture->currentskinframe->nmap));
5469         R_Mesh_TexBind(1, R_GetTexture(rsurface.texture->basetexture));
5470         R_Mesh_TexBind(2, R_GetTexture(rsurface.texture->glosstexture));
5471         R_Mesh_TexBind(4, R_GetTexture(r_texture_fogattenuation));
5472         R_Mesh_TexBind(5, R_GetTexture(rsurface.texture->currentskinframe->pants));
5473         R_Mesh_TexBind(6, R_GetTexture(rsurface.texture->currentskinframe->shirt));
5474         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_FULLBRIGHT)
5475         {
5476                 R_Mesh_TexBind(7, R_GetTexture(r_texture_grey128));
5477                 R_Mesh_TexBind(8, R_GetTexture(r_texture_blanknormalmap));
5478                 R_Mesh_ColorPointer(NULL, 0, 0);
5479         }
5480         else if (rsurface.uselightmaptexture)
5481         {
5482                 R_Mesh_TexBind(7, R_GetTexture(texturesurfacelist[0]->lightmaptexture));
5483                 R_Mesh_TexBind(8, R_GetTexture(texturesurfacelist[0]->deluxemaptexture));
5484                 R_Mesh_ColorPointer(NULL, 0, 0);
5485         }
5486         else
5487         {
5488                 R_Mesh_TexBind(7, R_GetTexture(r_texture_white));
5489                 R_Mesh_TexBind(8, R_GetTexture(r_texture_blanknormalmap));
5490                 R_Mesh_ColorPointer(rsurface.modellightmapcolor4f, rsurface.modellightmapcolor4f_bufferobject, rsurface.modellightmapcolor4f_bufferoffset);
5491         }
5492         R_Mesh_TexBind(9, R_GetTexture(rsurface.texture->currentskinframe->glow));
5493         R_Mesh_TexBind(11, R_GetTexture(r_texture_white)); // changed per surface
5494         R_Mesh_TexBind(12, R_GetTexture(r_texture_white)); // changed per surface
5495
5496         if (rsurface.texture->currentmaterialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION))
5497         {
5498                 // render background
5499                 GL_BlendFunc(GL_ONE, GL_ZERO);
5500                 GL_DepthMask(true);
5501                 GL_AlphaTest(false);
5502
5503                 GL_Color(1, 1, 1, 1);
5504                 R_Mesh_ColorPointer(NULL, 0, 0);
5505
5506                 R_SetupSurfaceShader(vec3_origin, rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT, 1, 1, rsurface.texture->specularscale, RSURFPASS_BACKGROUND);
5507                 if (r_glsl_permutation)
5508                 {
5509                         RSurf_PrepareVerticesForBatch(true, true, texturenumsurfaces, texturesurfacelist);
5510                         R_Mesh_TexCoordPointer(0, 2, rsurface.texcoordtexture2f, rsurface.texcoordtexture2f_bufferobject, rsurface.texcoordtexture2f_bufferoffset);
5511                         R_Mesh_TexCoordPointer(1, 3, rsurface.svector3f, rsurface.svector3f_bufferobject, rsurface.svector3f_bufferoffset);
5512                         R_Mesh_TexCoordPointer(2, 3, rsurface.tvector3f, rsurface.tvector3f_bufferobject, rsurface.tvector3f_bufferoffset);
5513                         R_Mesh_TexCoordPointer(3, 3, rsurface.normal3f, rsurface.normal3f_bufferobject, rsurface.normal3f_bufferoffset);
5514                         R_Mesh_TexCoordPointer(4, 2, rsurface.modeltexcoordlightmap2f, rsurface.modeltexcoordlightmap2f_bufferobject, rsurface.modeltexcoordlightmap2f_bufferoffset);
5515                         RSurf_DrawBatch_WithLightmapSwitching_WithWaterTextureSwitching(texturenumsurfaces, texturesurfacelist, -1, -1, r_glsl_permutation->loc_Texture_Refraction ? 11 : -1, r_glsl_permutation->loc_Texture_Reflection ? 12 : -1);
5516                 }
5517
5518                 GL_BlendFunc(rsurface.texture->currentlayers[0].blendfunc1, rsurface.texture->currentlayers[0].blendfunc2);
5519                 GL_DepthMask(false);
5520                 GL_AlphaTest((rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST) != 0);
5521                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_FULLBRIGHT)
5522                 {
5523                         R_Mesh_TexBind(7, R_GetTexture(r_texture_grey128));
5524                         R_Mesh_TexBind(8, R_GetTexture(r_texture_blanknormalmap));
5525                         R_Mesh_ColorPointer(NULL, 0, 0);
5526                 }
5527                 else if (rsurface.uselightmaptexture)
5528                 {
5529                         R_Mesh_TexBind(7, R_GetTexture(texturesurfacelist[0]->lightmaptexture));
5530                         R_Mesh_TexBind(8, R_GetTexture(texturesurfacelist[0]->deluxemaptexture));
5531                         R_Mesh_ColorPointer(NULL, 0, 0);
5532                 }
5533                 else
5534                 {
5535                         R_Mesh_TexBind(7, R_GetTexture(r_texture_white));
5536                         R_Mesh_TexBind(8, R_GetTexture(r_texture_blanknormalmap));
5537                         R_Mesh_ColorPointer(rsurface.modellightmapcolor4f, rsurface.modellightmapcolor4f_bufferobject, rsurface.modellightmapcolor4f_bufferoffset);
5538                 }
5539                 R_Mesh_TexBind(11, R_GetTexture(r_texture_white)); // changed per surface
5540                 R_Mesh_TexBind(12, R_GetTexture(r_texture_white)); // changed per surface
5541         }
5542
5543         R_SetupSurfaceShader(vec3_origin, rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT, 1, 1, rsurface.texture->specularscale, RSURFPASS_BASE);
5544         if (!r_glsl_permutation)
5545                 return;
5546
5547         RSurf_PrepareVerticesForBatch(r_glsl_permutation->loc_Texture_Normal >= 0 || r_glsl_permutation->loc_LightDir >= 0, r_glsl_permutation->loc_Texture_Normal >= 0, texturenumsurfaces, texturesurfacelist);
5548         R_Mesh_TexCoordPointer(0, 2, rsurface.texcoordtexture2f, rsurface.texcoordtexture2f_bufferobject, rsurface.texcoordtexture2f_bufferoffset);
5549         R_Mesh_TexCoordPointer(1, 3, rsurface.svector3f, rsurface.svector3f_bufferobject, rsurface.svector3f_bufferoffset);
5550         R_Mesh_TexCoordPointer(2, 3, rsurface.tvector3f, rsurface.tvector3f_bufferobject, rsurface.tvector3f_bufferoffset);
5551         R_Mesh_TexCoordPointer(3, 3, rsurface.normal3f, rsurface.normal3f_bufferobject, rsurface.normal3f_bufferoffset);
5552         R_Mesh_TexCoordPointer(4, 2, rsurface.modeltexcoordlightmap2f, rsurface.modeltexcoordlightmap2f_bufferobject, rsurface.modeltexcoordlightmap2f_bufferoffset);
5553         // FIXME MOVE THIS TO A UNIFORM
5554         GL_Color(rsurface.texture->currentlayers[0].color[0], rsurface.texture->currentlayers[0].color[1], rsurface.texture->currentlayers[0].color[2], rsurface.texture->currentlayers[0].color[3]);
5555
5556         if (r_glsl_permutation->loc_Texture_Refraction >= 0)
5557         {
5558                 GL_BlendFunc(GL_ONE, GL_ZERO);
5559                 GL_DepthMask(true);
5560                 GL_AlphaTest(false);
5561         }
5562
5563         if (rsurface.uselightmaptexture && !(rsurface.texture->currentmaterialflags & MATERIALFLAG_FULLBRIGHT))
5564         {
5565                 if (r_glsl_permutation->loc_Texture_Refraction >= 0 || r_glsl_permutation->loc_Texture_Reflection >= 0)
5566                         RSurf_DrawBatch_WithLightmapSwitching_WithWaterTextureSwitching(texturenumsurfaces, texturesurfacelist, 7, r_glsl_permutation->loc_Texture_Deluxemap >= 0 ? 8 : -1, r_glsl_permutation->loc_Texture_Refraction >= 0 ? 11 : -1, r_glsl_permutation->loc_Texture_Reflection >= 0 ? 12 : -1);
5567                 else
5568                         RSurf_DrawBatch_WithLightmapSwitching(texturenumsurfaces, texturesurfacelist, 7, r_glsl_permutation->loc_Texture_Deluxemap >= 0 ? 8 : -1);
5569         }
5570         else
5571         {
5572                 if (r_glsl_permutation->loc_Texture_Refraction >= 0 || r_glsl_permutation->loc_Texture_Reflection >= 0)
5573                         RSurf_DrawBatch_WithLightmapSwitching_WithWaterTextureSwitching(texturenumsurfaces, texturesurfacelist, -1, -1, r_glsl_permutation->loc_Texture_Refraction >= 0 ? 11 : -1, r_glsl_permutation->loc_Texture_Reflection >= 0 ? 12 : -1);
5574                 else
5575                         RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5576         }
5577         if (rsurface.texture->backgroundnumskinframes && !(rsurface.texture->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED))
5578         {
5579         }
5580 }
5581
5582 static void R_DrawTextureSurfaceList_GL13(int texturenumsurfaces, msurface_t **texturesurfacelist)
5583 {
5584         // OpenGL 1.3 path - anything not completely ancient
5585         int texturesurfaceindex;
5586         qboolean applycolor;
5587         qboolean applyfog;
5588         rmeshstate_t m;
5589         int layerindex;
5590         const texturelayer_t *layer;
5591         if (rsurface.mode != RSURFMODE_MULTIPASS)
5592                 rsurface.mode = RSURFMODE_MULTIPASS;
5593         RSurf_PrepareVerticesForBatch(true, false, texturenumsurfaces, texturesurfacelist);
5594
5595         for (layerindex = 0, layer = rsurface.texture->currentlayers;layerindex < rsurface.texture->currentnumlayers;layerindex++, layer++)
5596         {
5597                 vec4_t layercolor;
5598                 int layertexrgbscale;
5599                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST)
5600                 {
5601                         if (layerindex == 0)
5602                                 GL_AlphaTest(true);
5603                         else
5604                         {
5605                                 GL_AlphaTest(false);
5606                                 qglDepthFunc(GL_EQUAL);CHECKGLERROR
5607                         }
5608                 }
5609                 GL_DepthMask(layer->depthmask);
5610                 GL_BlendFunc(layer->blendfunc1, layer->blendfunc2);
5611                 if ((layer->color[0] > 2 || layer->color[1] > 2 || layer->color[2] > 2) && (gl_combine.integer || layer->depthmask))
5612                 {
5613                         layertexrgbscale = 4;
5614                         VectorScale(layer->color, 0.25f, layercolor);
5615                 }
5616                 else if ((layer->color[0] > 1 || layer->color[1] > 1 || layer->color[2] > 1) && (gl_combine.integer || layer->depthmask))
5617                 {
5618                         layertexrgbscale = 2;
5619                         VectorScale(layer->color, 0.5f, layercolor);
5620                 }
5621                 else
5622                 {
5623                         layertexrgbscale = 1;
5624                         VectorScale(layer->color, 1.0f, layercolor);
5625                 }
5626                 layercolor[3] = layer->color[3];
5627                 applycolor = layercolor[0] != 1 || layercolor[1] != 1 || layercolor[2] != 1 || layercolor[3] != 1;
5628                 R_Mesh_ColorPointer(NULL, 0, 0);
5629                 applyfog = (layer->flags & TEXTURELAYERFLAG_FOGDARKEN) != 0;
5630                 switch (layer->type)
5631                 {
5632                 case TEXTURELAYERTYPE_LITTEXTURE:
5633                         memset(&m, 0, sizeof(m));
5634                         m.tex[0] = R_GetTexture(r_texture_white);
5635                         m.pointer_texcoord[0] = rsurface.modeltexcoordlightmap2f;
5636                         m.pointer_texcoord_bufferobject[0] = rsurface.modeltexcoordlightmap2f_bufferobject;
5637                         m.pointer_texcoord_bufferoffset[0] = rsurface.modeltexcoordlightmap2f_bufferoffset;
5638                         m.tex[1] = R_GetTexture(layer->texture);
5639                         m.texmatrix[1] = layer->texmatrix;
5640                         m.texrgbscale[1] = layertexrgbscale;
5641                         m.pointer_texcoord[1] = rsurface.texcoordtexture2f;
5642                         m.pointer_texcoord_bufferobject[1] = rsurface.texcoordtexture2f_bufferobject;
5643                         m.pointer_texcoord_bufferoffset[1] = rsurface.texcoordtexture2f_bufferoffset;
5644                         R_Mesh_TextureState(&m);
5645                         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT)
5646                                 RSurf_DrawBatch_GL11_VertexShade(texturenumsurfaces, texturesurfacelist, layercolor[0], layercolor[1], layercolor[2], layercolor[3], applycolor, applyfog);
5647                         else if (rsurface.uselightmaptexture)
5648                                 RSurf_DrawBatch_GL11_Lightmap(texturenumsurfaces, texturesurfacelist, layercolor[0], layercolor[1], layercolor[2], layercolor[3], applycolor, applyfog);
5649                         else
5650                                 RSurf_DrawBatch_GL11_VertexColor(texturenumsurfaces, texturesurfacelist, layercolor[0], layercolor[1], layercolor[2], layercolor[3], applycolor, applyfog);
5651                         break;
5652                 case TEXTURELAYERTYPE_TEXTURE:
5653                         memset(&m, 0, sizeof(m));
5654                         m.tex[0] = R_GetTexture(layer->texture);
5655                         m.texmatrix[0] = layer->texmatrix;
5656                         m.texrgbscale[0] = layertexrgbscale;
5657                         m.pointer_texcoord[0] = rsurface.texcoordtexture2f;
5658                         m.pointer_texcoord_bufferobject[0] = rsurface.texcoordtexture2f_bufferobject;
5659                         m.pointer_texcoord_bufferoffset[0] = rsurface.texcoordtexture2f_bufferoffset;
5660                         R_Mesh_TextureState(&m);
5661                         RSurf_DrawBatch_GL11_Unlit(texturenumsurfaces, texturesurfacelist, layercolor[0], layercolor[1], layercolor[2], layercolor[3], applycolor, applyfog);
5662                         break;
5663                 case TEXTURELAYERTYPE_FOG:
5664                         memset(&m, 0, sizeof(m));
5665                         m.texrgbscale[0] = layertexrgbscale;
5666                         if (layer->texture)
5667                         {
5668                                 m.tex[0] = R_GetTexture(layer->texture);
5669                                 m.texmatrix[0] = layer->texmatrix;
5670                                 m.pointer_texcoord[0] = rsurface.texcoordtexture2f;
5671                                 m.pointer_texcoord_bufferobject[0] = rsurface.texcoordtexture2f_bufferobject;
5672                                 m.pointer_texcoord_bufferoffset[0] = rsurface.texcoordtexture2f_bufferoffset;
5673                         }
5674                         R_Mesh_TextureState(&m);
5675                         // generate a color array for the fog pass
5676                         R_Mesh_ColorPointer(rsurface.array_color4f, 0, 0);
5677                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5678                         {
5679                                 int i;
5680                                 float f, *v, *c;
5681                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5682                                 for (i = 0, v = (rsurface.vertex3f + 3 * surface->num_firstvertex), c = (rsurface.array_color4f + 4 * surface->num_firstvertex);i < surface->num_vertices;i++, v += 3, c += 4)
5683                                 {
5684                                         f = 1 - FogPoint_Model(v);
5685                                         c[0] = layercolor[0];
5686                                         c[1] = layercolor[1];
5687                                         c[2] = layercolor[2];
5688                                         c[3] = f * layercolor[3];
5689                                 }
5690                         }
5691                         RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5692                         break;
5693                 default:
5694                         Con_Printf("R_DrawTextureSurfaceList: unknown layer type %i\n", layer->type);
5695                 }
5696                 GL_LockArrays(0, 0);
5697         }
5698         CHECKGLERROR
5699         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST)
5700         {
5701                 qglDepthFunc(GL_LEQUAL);CHECKGLERROR
5702                 GL_AlphaTest(false);
5703         }
5704 }
5705
5706 static void R_DrawTextureSurfaceList_GL11(int texturenumsurfaces, msurface_t **texturesurfacelist)
5707 {
5708         // OpenGL 1.1 - crusty old voodoo path
5709         int texturesurfaceindex;
5710         qboolean applyfog;
5711         rmeshstate_t m;
5712         int layerindex;
5713         const texturelayer_t *layer;
5714         if (rsurface.mode != RSURFMODE_MULTIPASS)
5715                 rsurface.mode = RSURFMODE_MULTIPASS;
5716         RSurf_PrepareVerticesForBatch(true, false, texturenumsurfaces, texturesurfacelist);
5717
5718         for (layerindex = 0, layer = rsurface.texture->currentlayers;layerindex < rsurface.texture->currentnumlayers;layerindex++, layer++)
5719         {
5720                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST)
5721                 {
5722                         if (layerindex == 0)
5723                                 GL_AlphaTest(true);
5724                         else
5725                         {
5726                                 GL_AlphaTest(false);
5727                                 qglDepthFunc(GL_EQUAL);CHECKGLERROR
5728                         }
5729                 }
5730                 GL_DepthMask(layer->depthmask);
5731                 GL_BlendFunc(layer->blendfunc1, layer->blendfunc2);
5732                 R_Mesh_ColorPointer(NULL, 0, 0);
5733                 applyfog = (layer->flags & TEXTURELAYERFLAG_FOGDARKEN) != 0;
5734                 switch (layer->type)
5735                 {
5736                 case TEXTURELAYERTYPE_LITTEXTURE:
5737                         if (layer->blendfunc1 == GL_ONE && layer->blendfunc2 == GL_ZERO)
5738                         {
5739                                 // two-pass lit texture with 2x rgbscale
5740                                 // first the lightmap pass
5741                                 memset(&m, 0, sizeof(m));
5742                                 m.tex[0] = R_GetTexture(r_texture_white);
5743                                 m.pointer_texcoord[0] = rsurface.modeltexcoordlightmap2f;
5744                                 m.pointer_texcoord_bufferobject[0] = rsurface.modeltexcoordlightmap2f_bufferobject;
5745                                 m.pointer_texcoord_bufferoffset[0] = rsurface.modeltexcoordlightmap2f_bufferoffset;
5746                                 R_Mesh_TextureState(&m);
5747                                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT)
5748                                         RSurf_DrawBatch_GL11_VertexShade(texturenumsurfaces, texturesurfacelist, 1, 1, 1, 1, false, false);
5749                                 else if (rsurface.uselightmaptexture)
5750                                         RSurf_DrawBatch_GL11_Lightmap(texturenumsurfaces, texturesurfacelist, 1, 1, 1, 1, false, false);
5751                                 else
5752                                         RSurf_DrawBatch_GL11_VertexColor(texturenumsurfaces, texturesurfacelist, 1, 1, 1, 1, false, false);
5753                                 GL_LockArrays(0, 0);
5754                                 // then apply the texture to it
5755                                 GL_BlendFunc(GL_DST_COLOR, GL_SRC_COLOR);
5756                                 memset(&m, 0, sizeof(m));
5757                                 m.tex[0] = R_GetTexture(layer->texture);
5758                                 m.texmatrix[0] = layer->texmatrix;
5759                                 m.pointer_texcoord[0] = rsurface.texcoordtexture2f;
5760                                 m.pointer_texcoord_bufferobject[0] = rsurface.texcoordtexture2f_bufferobject;
5761                                 m.pointer_texcoord_bufferoffset[0] = rsurface.texcoordtexture2f_bufferoffset;
5762                                 R_Mesh_TextureState(&m);
5763                                 RSurf_DrawBatch_GL11_Unlit(texturenumsurfaces, texturesurfacelist, layer->color[0] * 0.5f, layer->color[1] * 0.5f, layer->color[2] * 0.5f, layer->color[3], layer->color[0] != 2 || layer->color[1] != 2 || layer->color[2] != 2 || layer->color[3] != 1, false);
5764                         }
5765                         else
5766                         {
5767                                 // single pass vertex-lighting-only texture with 1x rgbscale and transparency support
5768                                 memset(&m, 0, sizeof(m));
5769                                 m.tex[0] = R_GetTexture(layer->texture);
5770                                 m.texmatrix[0] = layer->texmatrix;
5771                                 m.pointer_texcoord[0] = rsurface.texcoordtexture2f;
5772                                 m.pointer_texcoord_bufferobject[0] = rsurface.texcoordtexture2f_bufferobject;
5773                                 m.pointer_texcoord_bufferoffset[0] = rsurface.texcoordtexture2f_bufferoffset;
5774                                 R_Mesh_TextureState(&m);
5775                                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT)
5776                                         RSurf_DrawBatch_GL11_VertexShade(texturenumsurfaces, texturesurfacelist, layer->color[0], layer->color[1], layer->color[2], layer->color[3], layer->color[0] != 1 || layer->color[1] != 1 || layer->color[2] != 1 || layer->color[3] != 1, applyfog);
5777                                 else
5778                                         RSurf_DrawBatch_GL11_VertexColor(texturenumsurfaces, texturesurfacelist, layer->color[0], layer->color[1], layer->color[2], layer->color[3], layer->color[0] != 1 || layer->color[1] != 1 || layer->color[2] != 1 || layer->color[3] != 1, applyfog);
5779                         }
5780                         break;
5781                 case TEXTURELAYERTYPE_TEXTURE:
5782                         // singletexture unlit texture with transparency support
5783                         memset(&m, 0, sizeof(m));
5784                         m.tex[0] = R_GetTexture(layer->texture);
5785                         m.texmatrix[0] = layer->texmatrix;
5786                         m.pointer_texcoord[0] = rsurface.texcoordtexture2f;
5787                         m.pointer_texcoord_bufferobject[0] = rsurface.texcoordtexture2f_bufferobject;
5788                         m.pointer_texcoord_bufferoffset[0] = rsurface.texcoordtexture2f_bufferoffset;
5789                         R_Mesh_TextureState(&m);
5790                         RSurf_DrawBatch_GL11_Unlit(texturenumsurfaces, texturesurfacelist, layer->color[0], layer->color[1], layer->color[2], layer->color[3], layer->color[0] != 1 || layer->color[1] != 1 || layer->color[2] != 1 || layer->color[3] != 1, applyfog);
5791                         break;
5792                 case TEXTURELAYERTYPE_FOG:
5793                         // singletexture fogging
5794                         R_Mesh_ColorPointer(rsurface.array_color4f, 0, 0);
5795                         if (layer->texture)
5796                         {
5797                                 memset(&m, 0, sizeof(m));
5798                                 m.tex[0] = R_GetTexture(layer->texture);
5799                                 m.texmatrix[0] = layer->texmatrix;
5800                                 m.pointer_texcoord[0] = rsurface.texcoordtexture2f;
5801                                 m.pointer_texcoord_bufferobject[0] = rsurface.texcoordtexture2f_bufferobject;
5802                                 m.pointer_texcoord_bufferoffset[0] = rsurface.texcoordtexture2f_bufferoffset;
5803                                 R_Mesh_TextureState(&m);
5804                         }
5805                         else
5806                                 R_Mesh_ResetTextureState();
5807                         // generate a color array for the fog pass
5808                         for (texturesurfaceindex = 0;texturesurfaceindex < texturenumsurfaces;texturesurfaceindex++)
5809                         {
5810                                 int i;
5811                                 float f, *v, *c;
5812                                 const msurface_t *surface = texturesurfacelist[texturesurfaceindex];
5813                                 for (i = 0, v = (rsurface.vertex3f + 3 * surface->num_firstvertex), c = (rsurface.array_color4f + 4 * surface->num_firstvertex);i < surface->num_vertices;i++, v += 3, c += 4)
5814                                 {
5815                                         f = 1 - FogPoint_Model(v);
5816                                         c[0] = layer->color[0];
5817                                         c[1] = layer->color[1];
5818                                         c[2] = layer->color[2];
5819                                         c[3] = f * layer->color[3];
5820                                 }
5821                         }
5822                         RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5823                         break;
5824                 default:
5825                         Con_Printf("R_DrawTextureSurfaceList: unknown layer type %i\n", layer->type);
5826                 }
5827                 GL_LockArrays(0, 0);
5828         }
5829         CHECKGLERROR
5830         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST)
5831         {
5832                 qglDepthFunc(GL_LEQUAL);CHECKGLERROR
5833                 GL_AlphaTest(false);
5834         }
5835 }
5836
5837 static void R_DrawTextureSurfaceList(int texturenumsurfaces, msurface_t **texturesurfacelist, qboolean writedepth, qboolean depthonly)
5838 {
5839         if (rsurface.texture->currentmaterialflags & MATERIALFLAG_NODRAW)
5840                 return;
5841         rsurface.rtlight = NULL;
5842         CHECKGLERROR
5843         if (depthonly)
5844         {
5845                 if ((rsurface.texture->currentmaterialflags & (MATERIALFLAG_NODEPTHTEST | MATERIALFLAG_BLENDED | MATERIALFLAG_ALPHATEST)))
5846                         return;
5847                 if (r_waterstate.renderingscene && (rsurface.texture->currentmaterialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFLECTION)))
5848                         return;
5849                 if (rsurface.mode != RSURFMODE_MULTIPASS)
5850                         rsurface.mode = RSURFMODE_MULTIPASS;
5851                 if (r_depthfirst.integer == 3)
5852                 {
5853                         int i = (int)(texturesurfacelist[0] - rsurface.modelsurfaces);
5854                         if (!r_view.showdebug)
5855                                 GL_Color(0, 0, 0, 1);
5856                         else
5857                                 GL_Color(((i >> 6) & 7) / 7.0f, ((i >> 3) & 7) / 7.0f, (i & 7) / 7.0f,1);
5858                 }
5859                 else
5860                 {
5861                         GL_ColorMask(0,0,0,0);
5862                         GL_Color(1,1,1,1);
5863                 }
5864                 RSurf_SetupDepthAndCulling();
5865                 GL_DepthTest(true);
5866                 GL_BlendFunc(GL_ONE, GL_ZERO);
5867                 GL_DepthMask(true);
5868                 GL_AlphaTest(false);
5869                 R_Mesh_ColorPointer(NULL, 0, 0);
5870                 R_Mesh_ResetTextureState();
5871                 RSurf_PrepareVerticesForBatch(false, false, texturenumsurfaces, texturesurfacelist);
5872                 RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5873                 GL_ColorMask(r_view.colormask[0], r_view.colormask[1], r_view.colormask[2], 1);
5874         }
5875         else if (r_depthfirst.integer == 3)
5876                 return;
5877         else if (!r_view.showdebug && (r_showsurfaces.integer || gl_lightmaps.integer))
5878         {
5879                 GL_Color(0, 0, 0, 1);
5880                 RSurf_DrawBatch_Simple(texturenumsurfaces, texturesurfacelist);
5881         }
5882         else if (r_showsurfaces.integer)
5883         {
5884                 if (rsurface.mode != RSURFMODE_MULTIPASS)
5885                         rsurface.mode = RSURFMODE_MULTIPASS;
5886                 RSurf_SetupDepthAndCulling();
5887                 GL_DepthTest(true);
5888                 GL_BlendFunc(GL_ONE, GL_ZERO);
5889                 GL_DepthMask(writedepth);
5890                 GL_Color(1,1,1,1);
5891                 GL_AlphaTest(false);
5892                 R_Mesh_ColorPointer(NULL, 0, 0);
5893                 R_Mesh_ResetTextureState();
5894                 RSurf_PrepareVerticesForBatch(false, false, texturenumsurfaces, texturesurfacelist);
5895                 R_DrawTextureSurfaceList_ShowSurfaces(texturenumsurfaces, texturesurfacelist);
5896         }
5897         else if (gl_lightmaps.integer)
5898         {
5899                 rmeshstate_t m;
5900                 if (rsurface.mode != RSURFMODE_MULTIPASS)
5901                         rsurface.mode = RSURFMODE_MULTIPASS;
5902                 GL_DepthRange(0, (rsurface.texture->currentmaterialflags & MATERIALFLAG_SHORTDEPTHRANGE) ? 0.0625 : 1);
5903                 GL_DepthTest(true);
5904                 GL_CullFace((rsurface.texture->currentmaterialflags & MATERIALFLAG_NOCULLFACE) ? GL_NONE : r_view.cullface_back);
5905                 GL_BlendFunc(GL_ONE, GL_ZERO);
5906                 GL_DepthMask(writedepth);
5907                 GL_Color(1,1,1,1);
5908                 GL_AlphaTest(false);
5909                 R_Mesh_ColorPointer(NULL, 0, 0);
5910                 memset(&m, 0, sizeof(m));
5911                 m.tex[0] = R_GetTexture(r_texture_white);
5912                 m.pointer_texcoord[0] = rsurface.modeltexcoordlightmap2f;
5913                 m.pointer_texcoord_bufferobject[0] = rsurface.modeltexcoordlightmap2f_bufferobject;
5914                 m.pointer_texcoord_bufferoffset[0] = rsurface.modeltexcoordlightmap2f_bufferoffset;
5915                 R_Mesh_TextureState(&m);
5916                 RSurf_PrepareVerticesForBatch(rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT, false, texturenumsurfaces, texturesurfacelist);
5917                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_MODELLIGHT)
5918                         RSurf_DrawBatch_GL11_VertexShade(texturenumsurfaces, texturesurfacelist, 1, 1, 1, 1, false, false);
5919                 else if (rsurface.uselightmaptexture)
5920                         RSurf_DrawBatch_GL11_Lightmap(texturenumsurfaces, texturesurfacelist, 1, 1, 1, 1, false, false);
5921                 else
5922                         RSurf_DrawBatch_GL11_VertexColor(texturenumsurfaces, texturesurfacelist, 1, 1, 1, 1, false, false);
5923         }
5924         else if (rsurface.texture->currentmaterialflags & MATERIALFLAG_SKY)
5925                 R_DrawTextureSurfaceList_Sky(texturenumsurfaces, texturesurfacelist);
5926         else if (rsurface.texture->currentnumlayers)
5927         {
5928                 // write depth for anything we skipped on the depth-only pass earlier
5929                 if (rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST)
5930                         writedepth = true;
5931                 RSurf_SetupDepthAndCulling();
5932                 GL_BlendFunc(rsurface.texture->currentlayers[0].blendfunc1, rsurface.texture->currentlayers[0].blendfunc2);
5933                 GL_DepthMask(writedepth && !(rsurface.texture->currentmaterialflags & MATERIALFLAG_BLENDED));
5934                 GL_AlphaTest((rsurface.texture->currentmaterialflags & MATERIALFLAG_ALPHATEST) != 0);
5935                 if (r_glsl.integer && gl_support_fragment_shader)
5936                         R_DrawTextureSurfaceList_GL20(texturenumsurfaces, texturesurfacelist);
5937                 else if (gl_combine.integer && r_textureunits.integer >= 2)
5938                         R_DrawTextureSurfaceList_GL13(texturenumsurfaces, texturesurfacelist);
5939                 else
5940                         R_DrawTextureSurfaceList_GL11(texturenumsurfaces, texturesurfacelist);
5941         }
5942         CHECKGLERROR
5943         GL_LockArrays(0, 0);
5944 }
5945
5946 static void R_DrawSurface_TransparentCallback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
5947 {
5948         int i, j;
5949         int texturenumsurfaces, endsurface;
5950         texture_t *texture;
5951         msurface_t *surface;
5952         msurface_t *texturesurfacelist[1024];
5953
5954         // if the model is static it doesn't matter what value we give for
5955         // wantnormals and wanttangents, so this logic uses only rules applicable
5956         // to a model, knowing that they are meaningless otherwise
5957         if (ent == r_refdef.worldentity)
5958                 RSurf_ActiveWorldEntity();
5959         else if ((ent->effects & EF_FULLBRIGHT) || r_showsurfaces.integer || VectorLength2(ent->modellight_diffuse) < (1.0f / 256.0f))
5960                 RSurf_ActiveModelEntity(ent, false, false);
5961         else
5962                 RSurf_ActiveModelEntity(ent, true, r_glsl.integer && gl_support_fragment_shader);
5963
5964         for (i = 0;i < numsurfaces;i = j)
5965         {
5966                 j = i + 1;
5967                 surface = rsurface.modelsurfaces + surfacelist[i];
5968                 texture = surface->texture;
5969                 R_UpdateTextureInfo(ent, texture);
5970                 rsurface.texture = texture->currentframe;
5971                 rsurface.uselightmaptexture = surface->lightmaptexture != NULL;
5972                 // scan ahead until we find a different texture
5973                 endsurface = min(i + 1024, numsurfaces);
5974                 texturenumsurfaces = 0;
5975                 texturesurfacelist[texturenumsurfaces++] = surface;
5976                 for (;j < endsurface;j++)
5977                 {
5978                         surface = rsurface.modelsurfaces + surfacelist[j];
5979                         if (texture != surface->texture || rsurface.uselightmaptexture != (surface->lightmaptexture != NULL))
5980                                 break;
5981                         texturesurfacelist[texturenumsurfaces++] = surface;
5982                 }
5983                 // render the range of surfaces
5984                 R_DrawTextureSurfaceList(texturenumsurfaces, texturesurfacelist, true, false);
5985         }
5986
5987         RSurf_CleanUp();
5988 }
5989
5990 void R_QueueSurfaceList(entity_render_t *ent, int numsurfaces, msurface_t **surfacelist, int flagsmask, qboolean writedepth, qboolean depthonly, qboolean addwaterplanes)
5991 {
5992         int i, j;
5993         vec3_t tempcenter, center;
5994         texture_t *texture;
5995         // if we're rendering water textures (extra scene renders), use a separate loop to avoid burdening the main one
5996         if (addwaterplanes)
5997         {
5998                 for (i = 0;i < numsurfaces;i++)
5999                         if (surfacelist[i]->texture->currentframe->currentmaterialflags & (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION))
6000                                 R_Water_AddWaterPlane(surfacelist[i]);
6001                 return;
6002         }
6003         // break the surface list down into batches by texture and use of lightmapping
6004         for (i = 0;i < numsurfaces;i = j)
6005         {
6006                 j = i + 1;
6007                 // texture is the base texture pointer, rsurface.texture is the
6008                 // current frame/skin the texture is directing us to use (for example
6009                 // if a model has 2 skins and it is on skin 1, then skin 0 tells us to
6010                 // use skin 1 instead)
6011                 texture = surfacelist[i]->texture;
6012                 rsurface.texture = texture->currentframe;
6013                 rsurface.uselightmaptexture = surfacelist[i]->lightmaptexture != NULL;
6014                 if (!(rsurface.texture->currentmaterialflags & flagsmask))
6015                 {
6016                         // if this texture is not the kind we want, skip ahead to the next one
6017                         for (;j < numsurfaces && texture == surfacelist[j]->texture;j++)
6018                                 ;
6019                         continue;
6020                 }
6021                 if (rsurface.texture->currentmaterialflags & MATERIALFLAGMASK_DEPTHSORTED)
6022                 {
6023                         // transparent surfaces get pushed off into the transparent queue
6024                         const msurface_t *surface = surfacelist[i];
6025                         if (depthonly)
6026                                 continue;
6027                         tempcenter[0] = (surface->mins[0] + surface->maxs[0]) * 0.5f;
6028                         tempcenter[1] = (surface->mins[1] + surface->maxs[1]) * 0.5f;
6029                         tempcenter[2] = (surface->mins[2] + surface->maxs[2]) * 0.5f;
6030                         Matrix4x4_Transform(&rsurface.matrix, tempcenter, center);
6031                         R_MeshQueue_AddTransparent(rsurface.texture->currentmaterialflags & MATERIALFLAG_NODEPTHTEST ? r_view.origin : center, R_DrawSurface_TransparentCallback, ent, surface - rsurface.modelsurfaces, rsurface.rtlight);
6032                 }
6033                 else
6034                 {
6035                         // simply scan ahead until we find a different texture or lightmap state
6036                         for (;j < numsurfaces && texture == surfacelist[j]->texture && rsurface.uselightmaptexture == (surfacelist[j]->lightmaptexture != NULL);j++)
6037                                 ;
6038                         // render the range of surfaces
6039                         R_DrawTextureSurfaceList(j - i, surfacelist + i, writedepth, depthonly);
6040                 }
6041         }
6042 }
6043
6044 float locboxvertex3f[6*4*3] =
6045 {
6046         1,0,1, 1,0,0, 1,1,0, 1,1,1,
6047         0,1,1, 0,1,0, 0,0,0, 0,0,1,
6048         1,1,1, 1,1,0, 0,1,0, 0,1,1,
6049         0,0,1, 0,0,0, 1,0,0, 1,0,1,
6050         0,0,1, 1,0,1, 1,1,1, 0,1,1,
6051         1,0,0, 0,0,0, 0,1,0, 1,1,0
6052 };
6053
6054 int locboxelement3i[6*2*3] =
6055 {
6056          0, 1, 2, 0, 2, 3,
6057          4, 5, 6, 4, 6, 7,
6058          8, 9,10, 8,10,11,
6059         12,13,14, 12,14,15,
6060         16,17,18, 16,18,19,
6061         20,21,22, 20,22,23
6062 };
6063
6064 void R_DrawLoc_Callback(const entity_render_t *ent, const rtlight_t *rtlight, int numsurfaces, int *surfacelist)
6065 {
6066         int i, j;
6067         cl_locnode_t *loc = (cl_locnode_t *)ent;
6068         vec3_t mins, size;
6069         float vertex3f[6*4*3];
6070         CHECKGLERROR
6071         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
6072         GL_DepthMask(false);
6073         GL_DepthRange(0, 1);
6074         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
6075         GL_DepthTest(true);
6076         GL_CullFace(GL_NONE);
6077         R_Mesh_Matrix(&identitymatrix);
6078
6079         R_Mesh_VertexPointer(vertex3f, 0, 0);
6080         R_Mesh_ColorPointer(NULL, 0, 0);
6081         R_Mesh_ResetTextureState();
6082
6083         i = surfacelist[0];
6084         GL_Color(((i & 0x0007) >> 0) * (1.0f / 7.0f) * r_view.colorscale,
6085                          ((i & 0x0038) >> 3) * (1.0f / 7.0f) * r_view.colorscale,
6086                          ((i & 0x01C0) >> 6) * (1.0f / 7.0f) * r_view.colorscale,
6087                         surfacelist[0] < 0 ? 0.5f : 0.125f);
6088
6089         if (VectorCompare(loc->mins, loc->maxs))
6090         {
6091                 VectorSet(size, 2, 2, 2);
6092                 VectorMA(loc->mins, -0.5f, size, mins);
6093         }
6094         else
6095         {
6096                 VectorCopy(loc->mins, mins);
6097                 VectorSubtract(loc->maxs, loc->mins, size);
6098         }
6099
6100         for (i = 0;i < 6*4*3;)
6101                 for (j = 0;j < 3;j++, i++)
6102                         vertex3f[i] = mins[j] + size[j] * locboxvertex3f[i];
6103
6104         R_Mesh_Draw(0, 6*4, 6*2, locboxelement3i, 0, 0);
6105 }
6106
6107 void R_DrawLocs(void)
6108 {
6109         int index;
6110         cl_locnode_t *loc, *nearestloc;
6111         vec3_t center;
6112         nearestloc = CL_Locs_FindNearest(cl.movement_origin);
6113         for (loc = cl.locnodes, index = 0;loc;loc = loc->next, index++)
6114         {
6115                 VectorLerp(loc->mins, 0.5f, loc->maxs, center);
6116                 R_MeshQueue_AddTransparent(center, R_DrawLoc_Callback, (entity_render_t *)loc, loc == nearestloc ? -1 : index, NULL);
6117         }
6118 }
6119
6120 void R_DrawDebugModel(entity_render_t *ent)
6121 {
6122         int i, j, k, l, flagsmask;
6123         const int *elements;
6124         q3mbrush_t *brush;
6125         msurface_t *surface;
6126         model_t *model = ent->model;
6127         vec3_t v;
6128
6129         flagsmask = MATERIALFLAG_SKY | MATERIALFLAG_WATER | MATERIALFLAG_WALL;
6130
6131         R_Mesh_ColorPointer(NULL, 0, 0);
6132         R_Mesh_ResetTextureState();
6133         GL_DepthRange(0, 1);
6134         GL_DepthTest(!r_showdisabledepthtest.integer);
6135         GL_DepthMask(false);
6136         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
6137
6138         if (r_showcollisionbrushes.value > 0 && model->brush.num_brushes)
6139         {
6140                 GL_PolygonOffset(r_refdef.polygonfactor + r_showcollisionbrushes_polygonfactor.value, r_refdef.polygonoffset + r_showcollisionbrushes_polygonoffset.value);
6141                 for (i = 0, brush = model->brush.data_brushes + model->firstmodelbrush;i < model->nummodelbrushes;i++, brush++)
6142                 {
6143                         if (brush->colbrushf && brush->colbrushf->numtriangles)
6144                         {
6145                                 R_Mesh_VertexPointer(brush->colbrushf->points->v, 0, 0);
6146                                 GL_Color((i & 31) * (1.0f / 32.0f) * r_view.colorscale, ((i >> 5) & 31) * (1.0f / 32.0f) * r_view.colorscale, ((i >> 10) & 31) * (1.0f / 32.0f) * r_view.colorscale, r_showcollisionbrushes.value);
6147                                 R_Mesh_Draw(0, brush->colbrushf->numpoints, brush->colbrushf->numtriangles, brush->colbrushf->elements, 0, 0);
6148                         }
6149                 }
6150                 for (i = 0, surface = model->data_surfaces + model->firstmodelsurface;i < model->nummodelsurfaces;i++, surface++)
6151                 {
6152                         if (surface->num_collisiontriangles)
6153                         {
6154                                 R_Mesh_VertexPointer(surface->data_collisionvertex3f, 0, 0);
6155                                 GL_Color((i & 31) * (1.0f / 32.0f) * r_view.colorscale, ((i >> 5) & 31) * (1.0f / 32.0f) * r_view.colorscale, ((i >> 10) & 31) * (1.0f / 32.0f) * r_view.colorscale, r_showcollisionbrushes.value);
6156                                 R_Mesh_Draw(0, surface->num_collisionvertices, surface->num_collisiontriangles, surface->data_collisionelement3i, 0, 0);
6157                         }
6158                 }
6159         }
6160
6161         GL_PolygonOffset(r_refdef.polygonfactor, r_refdef.polygonoffset);
6162
6163         if (r_showtris.integer || r_shownormals.integer)
6164         {
6165                 if (r_showdisabledepthtest.integer)
6166                 {
6167                         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
6168                         GL_DepthMask(false);
6169                 }
6170                 else
6171                 {
6172                         GL_BlendFunc(GL_ONE, GL_ZERO);
6173                         GL_DepthMask(true);
6174                 }
6175                 for (i = 0, j = model->firstmodelsurface, surface = model->data_surfaces + j;i < model->nummodelsurfaces;i++, j++, surface++)
6176                 {
6177                         if (ent == r_refdef.worldentity && !r_viewcache.world_surfacevisible[j])
6178                                 continue;
6179                         rsurface.texture = surface->texture->currentframe;
6180                         if ((rsurface.texture->currentmaterialflags & flagsmask) && surface->num_triangles)
6181                         {
6182                                 RSurf_PrepareVerticesForBatch(true, true, 1, &surface);
6183                                 if (r_showtris.value > 0)
6184                                 {
6185                                         if (!rsurface.texture->currentlayers->depthmask)
6186                                                 GL_Color(r_view.colorscale, 0, 0, r_showtris.value);
6187                                         else if (ent == r_refdef.worldentity)
6188                                                 GL_Color(r_view.colorscale, r_view.colorscale, r_view.colorscale, r_showtris.value);
6189                                         else
6190                                                 GL_Color(0, r_view.colorscale, 0, r_showtris.value);
6191                                         elements = (ent->model->surfmesh.data_element3i + 3 * surface->num_firsttriangle);
6192                                         CHECKGLERROR
6193                                         qglBegin(GL_LINES);
6194                                         for (k = 0;k < surface->num_triangles;k++, elements += 3)
6195                                         {
6196 #define GLVERTEXELEMENT(n) qglVertex3f(rsurface.vertex3f[elements[n]*3+0], rsurface.vertex3f[elements[n]*3+1], rsurface.vertex3f[elements[n]*3+2])
6197                                                 GLVERTEXELEMENT(0);GLVERTEXELEMENT(1);
6198                                                 GLVERTEXELEMENT(1);GLVERTEXELEMENT(2);
6199                                                 GLVERTEXELEMENT(2);GLVERTEXELEMENT(0);
6200                                         }
6201                                         qglEnd();
6202                                         CHECKGLERROR
6203                                 }
6204                                 if (r_shownormals.value > 0)
6205                                 {
6206                                         qglBegin(GL_LINES);
6207                                         for (k = 0, l = surface->num_firstvertex;k < surface->num_vertices;k++, l++)
6208                                         {
6209                                                 VectorCopy(rsurface.vertex3f + l * 3, v);
6210                                                 GL_Color(r_view.colorscale, 0, 0, 1);
6211                                                 qglVertex3f(v[0], v[1], v[2]);
6212                                                 VectorMA(v, r_shownormals.value, rsurface.svector3f + l * 3, v);
6213                                                 GL_Color(r_view.colorscale, 1, 1, 1);
6214                                                 qglVertex3f(v[0], v[1], v[2]);
6215                                         }
6216                                         qglEnd();
6217                                         CHECKGLERROR
6218                                         qglBegin(GL_LINES);
6219                                         for (k = 0, l = surface->num_firstvertex;k < surface->num_vertices;k++, l++)
6220                                         {
6221                                                 VectorCopy(rsurface.vertex3f + l * 3, v);
6222                                                 GL_Color(0, r_view.colorscale, 0, 1);
6223                                                 qglVertex3f(v[0], v[1], v[2]);
6224                                                 VectorMA(v, r_shownormals.value, rsurface.tvector3f + l * 3, v);
6225                                                 GL_Color(r_view.colorscale, 1, 1, 1);
6226                                                 qglVertex3f(v[0], v[1], v[2]);
6227                                         }
6228                                         qglEnd();
6229                                         CHECKGLERROR
6230                                         qglBegin(GL_LINES);
6231                                         for (k = 0, l = surface->num_firstvertex;k < surface->num_vertices;k++, l++)
6232                                         {
6233                                                 VectorCopy(rsurface.vertex3f + l * 3, v);
6234                                                 GL_Color(0, 0, r_view.colorscale, 1);
6235                                                 qglVertex3f(v[0], v[1], v[2]);
6236                                                 VectorMA(v, r_shownormals.value, rsurface.normal3f + l * 3, v);
6237                                                 GL_Color(r_view.colorscale, 1, 1, 1);
6238                                                 qglVertex3f(v[0], v[1], v[2]);
6239                                         }
6240                                         qglEnd();
6241                                         CHECKGLERROR
6242                                 }
6243                         }
6244                 }
6245                 rsurface.texture = NULL;
6246         }
6247 }
6248
6249 extern void R_BuildLightMap(const entity_render_t *ent, msurface_t *surface);
6250 void R_DrawWorldSurfaces(qboolean skysurfaces, qboolean writedepth, qboolean depthonly, qboolean addwaterplanes, qboolean debug)
6251 {
6252         int i, j, endj, f, flagsmask;
6253         msurface_t *surface;
6254         texture_t *t;
6255         model_t *model = r_refdef.worldmodel;
6256         const int maxsurfacelist = 1024;
6257         int numsurfacelist = 0;
6258         msurface_t *surfacelist[1024];
6259         if (model == NULL)
6260                 return;
6261
6262         RSurf_ActiveWorldEntity();
6263
6264         // update light styles on this submodel
6265         if (!skysurfaces && !depthonly && !addwaterplanes && model->brushq1.num_lightstyles && r_refdef.lightmapintensity > 0)
6266         {
6267                 model_brush_lightstyleinfo_t *style;
6268                 for (i = 0, style = model->brushq1.data_lightstyleinfo;i < model->brushq1.num_lightstyles;i++, style++)
6269                 {
6270                         if (style->value != r_refdef.lightstylevalue[style->style])
6271                         {
6272                                 msurface_t *surfaces = model->data_surfaces;
6273                                 int *list = style->surfacelist;
6274                                 style->value = r_refdef.lightstylevalue[style->style];
6275                                 for (j = 0;j < style->numsurfaces;j++)
6276                                         surfaces[list[j]].cached_dlight = true;
6277                         }
6278                 }
6279         }
6280
6281         R_UpdateAllTextureInfo(r_refdef.worldentity);
6282         flagsmask = addwaterplanes ? (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION) : (skysurfaces ? MATERIALFLAG_SKY : (MATERIALFLAG_WATER | MATERIALFLAG_WALL));
6283
6284         if (debug)
6285         {
6286                 R_DrawDebugModel(r_refdef.worldentity);
6287                 return;
6288         }
6289
6290         f = 0;
6291         t = NULL;
6292         rsurface.uselightmaptexture = false;
6293         rsurface.texture = NULL;
6294         numsurfacelist = 0;
6295         j = model->firstmodelsurface;
6296         endj = j + model->nummodelsurfaces;
6297         while (j < endj)
6298         {
6299                 // quickly skip over non-visible surfaces
6300                 for (;j < endj && !r_viewcache.world_surfacevisible[j];j++)
6301                         ;
6302                 // quickly iterate over visible surfaces
6303                 for (;j < endj && r_viewcache.world_surfacevisible[j];j++)
6304                 {
6305                         // process this surface
6306                         surface = model->data_surfaces + j;
6307                         // if this surface fits the criteria, add it to the list
6308                         if (surface->num_triangles)
6309                         {
6310                                 // if lightmap parameters changed, rebuild lightmap texture
6311                                 if (surface->cached_dlight)
6312                                         R_BuildLightMap(r_refdef.worldentity, surface);
6313                                 // add face to draw list
6314                                 surfacelist[numsurfacelist++] = surface;
6315                                 r_refdef.stats.world_triangles += surface->num_triangles;
6316                                 if (numsurfacelist >= maxsurfacelist)
6317                                 {
6318                                         r_refdef.stats.world_surfaces += numsurfacelist;
6319                                         R_QueueSurfaceList(r_refdef.worldentity, numsurfacelist, surfacelist, flagsmask, writedepth, depthonly, addwaterplanes);
6320                                         numsurfacelist = 0;
6321                                 }
6322                         }
6323                 }
6324         }
6325         r_refdef.stats.world_surfaces += numsurfacelist;
6326         if (numsurfacelist)
6327                 R_QueueSurfaceList(r_refdef.worldentity, numsurfacelist, surfacelist, flagsmask, writedepth, depthonly, addwaterplanes);
6328         RSurf_CleanUp();
6329 }
6330
6331 void R_DrawModelSurfaces(entity_render_t *ent, qboolean skysurfaces, qboolean writedepth, qboolean depthonly, qboolean addwaterplanes, qboolean debug)
6332 {
6333         int i, j, f, flagsmask;
6334         msurface_t *surface, *endsurface;
6335         texture_t *t;
6336         model_t *model = ent->model;
6337         const int maxsurfacelist = 1024;
6338         int numsurfacelist = 0;
6339         msurface_t *surfacelist[1024];
6340         if (model == NULL)
6341                 return;
6342
6343         // if the model is static it doesn't matter what value we give for
6344         // wantnormals and wanttangents, so this logic uses only rules applicable
6345         // to a model, knowing that they are meaningless otherwise
6346         if (ent == r_refdef.worldentity)
6347                 RSurf_ActiveWorldEntity();
6348         else if ((ent->effects & EF_FULLBRIGHT) || r_showsurfaces.integer || VectorLength2(ent->modellight_diffuse) < (1.0f / 256.0f))
6349                 RSurf_ActiveModelEntity(ent, false, false);
6350         else
6351                 RSurf_ActiveModelEntity(ent, true, r_glsl.integer && gl_support_fragment_shader && !depthonly);
6352
6353         // update light styles
6354         if (!skysurfaces && !depthonly && !addwaterplanes && model->brushq1.num_lightstyles && r_refdef.lightmapintensity > 0)
6355         {
6356                 model_brush_lightstyleinfo_t *style;
6357                 for (i = 0, style = model->brushq1.data_lightstyleinfo;i < model->brushq1.num_lightstyles;i++, style++)
6358                 {
6359                         if (style->value != r_refdef.lightstylevalue[style->style])
6360                         {
6361                                 msurface_t *surfaces = model->data_surfaces;
6362                                 int *list = style->surfacelist;
6363                                 style->value = r_refdef.lightstylevalue[style->style];
6364                                 for (j = 0;j < style->numsurfaces;j++)
6365                                         surfaces[list[j]].cached_dlight = true;
6366                         }
6367                 }
6368         }
6369
6370         R_UpdateAllTextureInfo(ent);
6371         flagsmask = addwaterplanes ? (MATERIALFLAG_WATERSHADER | MATERIALFLAG_REFRACTION | MATERIALFLAG_REFLECTION) : (skysurfaces ? MATERIALFLAG_SKY : (MATERIALFLAG_WATER | MATERIALFLAG_WALL));
6372
6373         if (debug)
6374         {
6375                 R_DrawDebugModel(ent);
6376                 return;
6377         }
6378
6379         f = 0;
6380         t = NULL;
6381         rsurface.uselightmaptexture = false;
6382         rsurface.texture = NULL;
6383         numsurfacelist = 0;
6384         surface = model->data_surfaces + model->firstmodelsurface;
6385         endsurface = surface + model->nummodelsurfaces;
6386         for (;surface < endsurface;surface++)
6387         {
6388                 // if this surface fits the criteria, add it to the list
6389                 if (surface->num_triangles)
6390                 {
6391                         // if lightmap parameters changed, rebuild lightmap texture
6392                         if (surface->cached_dlight)
6393                                 R_BuildLightMap(ent, surface);
6394                         // add face to draw list
6395                         surfacelist[numsurfacelist++] = surface;
6396                         r_refdef.stats.entities_triangles += surface->num_triangles;
6397                         if (numsurfacelist >= maxsurfacelist)
6398                         {
6399                                 r_refdef.stats.entities_surfaces += numsurfacelist;
6400                                 R_QueueSurfaceList(ent, numsurfacelist, surfacelist, flagsmask, writedepth, depthonly, addwaterplanes);
6401                                 numsurfacelist = 0;
6402                         }
6403                 }
6404         }
6405         r_refdef.stats.entities_surfaces += numsurfacelist;
6406         if (numsurfacelist)
6407                 R_QueueSurfaceList(ent, numsurfacelist, surfacelist, flagsmask, writedepth, depthonly, addwaterplanes);
6408         RSurf_CleanUp();
6409 }