]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - gl_rsurf.c
added back r_speeds2, with masses of information (6 lines high), and made it print...
[xonotic/darkplaces.git] / gl_rsurf.c
index fe5bb6ca9f6127fa2a02f3fabbf080803c911b05..6ab30c4de943d417877350be801a8829a0a82413 100644 (file)
@@ -21,8 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include "quakedef.h"
 
-extern int                     skytexturenum;
-
 int            lightmap_textures;
 
 signed blocklights[18*18*3]; // LordHavoc: *3 for colored lighting
@@ -50,16 +48,25 @@ cvar_t r_ambient = {"r_ambient", "0"};
 cvar_t gl_vertex = {"gl_vertex", "0"};
 cvar_t gl_texsort = {"gl_texsort", "1"};
 //cvar_t gl_funnywalls = {"gl_funnywalls", "0"}; // LordHavoc: see BuildSurfaceDisplayList
+cvar_t r_newworldnode = {"r_newworldnode", "0"};
+cvar_t r_oldclip = {"r_oldclip", "1"};
 
-qboolean lightmaprgba, nosubimagefragments, nosubimage;
+qboolean lightmaprgba, nosubimagefragments, nosubimage, skyisvisible;
 int lightmapbytes;
 
-qboolean skyisvisible;
 extern qboolean gl_arrays;
 
 extern int r_dlightframecount;
 
-void glrsurf_init()
+void gl_surf_start()
+{
+}
+
+void gl_surf_shutdown()
+{
+}
+
+void GL_Surf_Init()
 {
        int i;
        for (i = 0;i < MAX_LIGHTMAPS;i++)
@@ -72,6 +79,8 @@ void glrsurf_init()
 //     Cvar_RegisterVariable(&gl_funnywalls);
        Cvar_RegisterVariable(&gl_vertex);
        Cvar_RegisterVariable(&gl_texsort);
+       Cvar_RegisterVariable(&r_newworldnode);
+       Cvar_RegisterVariable(&r_oldclip);
        // check if it's the glquake minigl driver
        if (strncasecmp(gl_vendor,"3Dfx",4)==0)
        if (!gl_arrays)
@@ -80,9 +89,10 @@ void glrsurf_init()
 //             Cvar_SetValue("gl_nosubimage", 1);
                Cvar_SetValue("gl_lightmode", 0);
        }
+
+       R_RegisterModule("GL_Surf", gl_surf_start, gl_surf_shutdown);
 }
 
-extern qboolean lighthalf;
 /*
 ===============
 R_BuildLightMap
@@ -93,7 +103,6 @@ Combine and scale multiple lightmaps into the 8.8 format in blocklights
 void R_BuildLightMap (msurface_t *surf, byte *dest, int stride)
 {
        int                     smax, tmax;
-       int                     t;
        int                     i, j, size;
        byte            *lightmap;
        int                     scale;
@@ -133,6 +142,7 @@ void R_BuildLightMap (msurface_t *surf, byte *dest, int stride)
 
 // add all the lightmaps
                if (lightmap)
+               {
                        for (maps = 0;maps < MAXLIGHTMAPS && surf->styles[maps] != 255;maps++)
                        {
                                scale = d_lightstylevalue[surf->styles[maps]];
@@ -145,6 +155,7 @@ void R_BuildLightMap (msurface_t *surf, byte *dest, int stride)
                                        *bl++ += *lightmap++ * scale;
                                }
                        }
+               }
        }
        stride -= (smax*lightmapbytes);
        bl = blocklights;
@@ -154,26 +165,26 @@ void R_BuildLightMap (msurface_t *surf, byte *dest, int stride)
                // the image is brightened as a processing pass
                if (lightmaprgba)
                {
-                       for (i=0 ; i<tmax ; i++, dest += stride)
+                       for (i = 0;i < tmax;i++, dest += stride)
                        {
-                               for (j=0 ; j<smax ; j++)
+                               for (j = 0;j < smax;j++, bl += 3, dest += 4)
                                {
-                                       t = *bl++ >> 8;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 8;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 8;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       *dest++ = 255;
+                                       dest[0] = min(bl[0] >> 8, 255);
+                                       dest[1] = min(bl[1] >> 8, 255);
+                                       dest[2] = min(bl[2] >> 8, 255);
+                                       dest[3] = 255;
                                }
                        }
                }
                else
                {
-                       for (i=0 ; i<tmax ; i++, dest += stride)
+                       for (i = 0;i < tmax;i++, dest += stride)
                        {
-                               for (j=0 ; j<smax ; j++)
+                               for (j = 0;j < smax;j++, bl += 3, dest += 3)
                                {
-                                       t = *bl++ >> 8;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 8;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 8;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
+                                       dest[0] = min(bl[0] >> 8, 255);
+                                       dest[1] = min(bl[1] >> 8, 255);
+                                       dest[2] = min(bl[2] >> 8, 255);
                                }
                        }
                }
@@ -182,26 +193,26 @@ void R_BuildLightMap (msurface_t *surf, byte *dest, int stride)
        {
                if (lightmaprgba)
                {
-                       for (i=0 ; i<tmax ; i++, dest += stride)
+                       for (i = 0;i < tmax;i++, dest += stride)
                        {
-                               for (j=0 ; j<smax ; j++)
+                               for (j = 0;j < smax;j++, bl += 3, dest += 4)
                                {
-                                       t = *bl++ >> 7;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 7;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 7;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       *dest++ = 255;
+                                       dest[0] = min(bl[0] >> 7, 255);
+                                       dest[1] = min(bl[1] >> 7, 255);
+                                       dest[2] = min(bl[2] >> 7, 255);
+                                       dest[3] = 255;
                                }
                        }
                }
                else
                {
-                       for (i=0 ; i<tmax ; i++, dest += stride)
+                       for (i = 0;i < tmax;i++, dest += stride)
                        {
-                               for (j=0 ; j<smax ; j++)
+                               for (j = 0;j < smax;j++, bl += 3, dest += 3)
                                {
-                                       t = *bl++ >> 7;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 7;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
-                                       t = *bl++ >> 7;if (t > 255) t = 255;else if (t < 0) t = 0;*dest++ = t;
+                                       dest[0] = min(bl[0] >> 7, 255);
+                                       dest[1] = min(bl[1] >> 7, 255);
+                                       dest[2] = min(bl[2] >> 7, 255);
                                }
                        }
                }
@@ -214,7 +225,8 @@ void R_UpdateLightmap(msurface_t *s, int lnum)
 {
        int smax, tmax;
        // upload the new lightmap texture fragment
-       glBindTexture(GL_TEXTURE_2D, lightmap_textures + lnum);
+       if(r_upload.value)
+               glBindTexture(GL_TEXTURE_2D, lightmap_textures + lnum);
        if (nosubimage || nosubimagefragments)
        {
                if (lightmapupdate[lnum][0] > s->light_t)
@@ -233,12 +245,14 @@ void R_UpdateLightmap(msurface_t *s, int lnum)
                if (lightmaprgba)
                {
                        R_BuildLightMap (s, templight, smax * 4);
-                       glTexSubImage2D(GL_TEXTURE_2D, 0, s->light_s, s->light_t, smax, tmax, GL_RGBA, GL_UNSIGNED_BYTE, templight);
+                       if(r_upload.value)
+                               glTexSubImage2D(GL_TEXTURE_2D, 0, s->light_s, s->light_t, smax, tmax, GL_RGBA, GL_UNSIGNED_BYTE, templight);
                }
                else
                {
                        R_BuildLightMap (s, templight, smax * 3);
-                       glTexSubImage2D(GL_TEXTURE_2D, 0, s->light_s, s->light_t, smax, tmax, GL_RGB , GL_UNSIGNED_BYTE, templight);
+                       if(r_upload.value)
+                               glTexSubImage2D(GL_TEXTURE_2D, 0, s->light_s, s->light_t, smax, tmax, GL_RGB , GL_UNSIGNED_BYTE, templight);
                }
        }
 }
@@ -303,12 +317,9 @@ extern     int             solidskytexture;
 extern int             alphaskytexture;
 extern float   speedscale;             // for top sky and bottom sky
 
-qboolean mtexenabled = false;
-
 extern char skyname[];
 
 void R_DynamicLightPoint(vec3_t color, vec3_t org, int *dlightbits);
-//extern cvar_t r_dynamicwater;
 float  turbsin[256] =
 {
        #include "gl_warp_sin.h"
@@ -325,20 +336,23 @@ void UploadLightmaps()
                {
                        if (lightmapupdate[i][0] < lightmapupdate[i][1])
                        {
-                               glBindTexture(GL_TEXTURE_2D, lightmap_textures + i);
-                               if (nosubimage)
-                               {
-                                       if (lightmaprgba)
-                                               glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGBA, GL_UNSIGNED_BYTE, lightmaps[i]);
-                                       else
-                                               glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, lightmaps[i]);
-                               }
-                               else
+                               if(r_upload.value)
                                {
-                                       if (lightmaprgba)
-                                               glTexSubImage2D(GL_TEXTURE_2D, 0, 0, lightmapupdate[i][0], BLOCK_WIDTH, lightmapupdate[i][1] - lightmapupdate[i][0], GL_RGBA, GL_UNSIGNED_BYTE, lightmaps[i] + (BLOCK_WIDTH * 4 * lightmapupdate[i][0]));
+                                       glBindTexture(GL_TEXTURE_2D, lightmap_textures + i);
+                                       if (nosubimage)
+                                       {
+                                               if (lightmaprgba)
+                                                       glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGBA, GL_UNSIGNED_BYTE, lightmaps[i]);
+                                               else
+                                                       glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, lightmaps[i]);
+                                       }
                                        else
-                                               glTexSubImage2D(GL_TEXTURE_2D, 0, 0, lightmapupdate[i][0], BLOCK_WIDTH, lightmapupdate[i][1] - lightmapupdate[i][0], GL_RGB, GL_UNSIGNED_BYTE, lightmaps[i] + (BLOCK_WIDTH * 3 * lightmapupdate[i][0]));
+                                       {
+                                               if (lightmaprgba)
+                                                       glTexSubImage2D(GL_TEXTURE_2D, 0, 0, lightmapupdate[i][0], BLOCK_WIDTH, lightmapupdate[i][1] - lightmapupdate[i][0], GL_RGBA, GL_UNSIGNED_BYTE, lightmaps[i] + (BLOCK_WIDTH * 4 * lightmapupdate[i][0]));
+                                               else
+                                                       glTexSubImage2D(GL_TEXTURE_2D, 0, 0, lightmapupdate[i][0], BLOCK_WIDTH, lightmapupdate[i][1] - lightmapupdate[i][0], GL_RGB, GL_UNSIGNED_BYTE, lightmaps[i] + (BLOCK_WIDTH * 3 * lightmapupdate[i][0]));
+                                       }
                                }
                        }
                        lightmapupdate[i][0] = BLOCK_HEIGHT;
@@ -347,7 +361,9 @@ void UploadLightmaps()
        }
 }
 
-void R_SkySurf(msurface_t *s, qboolean transform)
+float  wvert[1024*6]; // used by the following functions
+
+void RSurf_DrawSky(msurface_t *s, int transform)
 {
        glpoly_t *p;
        int i;
@@ -379,11 +395,11 @@ void R_SkySurf(msurface_t *s, qboolean transform)
        }
 }
 
-void R_LightSurface(int *dlightbits, glpoly_t *polys, float *wvert)
+int RSurf_Light(int *dlightbits, glpoly_t *polys)
 {
        float           cr, cg, cb, radius, radius2, f, *v, *wv;
-       int                     i, a, b;
-       unsigned int c;
+       int                     i, a, b, lit = false;
+       unsigned int c, d;
        dlight_t        *light;
        vec_t           *lightorigin;
        glpoly_t        *p;
@@ -391,18 +407,18 @@ void R_LightSurface(int *dlightbits, glpoly_t *polys, float *wvert)
        {
                if ((c = dlightbits[a]))
                {
-                       for (b = 0;c && b < 32;b++)
+                       for (b = 0, d = 1;c;b++, d <<= 1)
                        {
-                               if (c & (1 << b))
+                               if (c & d)
                                {
-                                       c -= (1 << b);
+                                       c -= d;
                                        light = &cl_dlights[a * 32 + b];
                                        lightorigin = light->origin;
                                        cr = light->color[0];
                                        cg = light->color[1];
                                        cb = light->color[2];
-                                       radius = light->radius*light->radius*16.0f;
-                                       radius2 = radius * 16.0f;
+                                       radius = light->radius*light->radius*LIGHTSCALE;
+                                       radius2 = radius * (256.0f / LIGHTSCALE2);
                                        wv = wvert;
                                        for (p = polys;p;p = p->next)
                                        {
@@ -411,28 +427,28 @@ void R_LightSurface(int *dlightbits, glpoly_t *polys, float *wvert)
                                                        f = VectorDistance2(wv, lightorigin);
                                                        if (f < radius)
                                                        {
-                                                               f = radius2 / (f + 65536.0f);
+                                                               f = radius2 / (f + LIGHTOFFSET);
                                                                wv[3] += cr * f;
                                                                wv[4] += cg * f;
                                                                wv[5] += cb * f;
+                                                               lit = true;
                                                        }
                                                        wv += 6;
                                                }
                                        }
                                }
-                               c >>= 1;
-                               b++;
                        }
                }
        }
+       return lit;
 }
 
-void R_WaterSurf(msurface_t *s, texture_t *t, qboolean transform, int alpha)
+void RSurf_DrawWater(msurface_t *s, texture_t *t, int transform, int alpha)
 {
        int             i;
-       float   os = turbsin[(int)(realtime * TURBSCALE) & 255], ot = turbsin[(int)(realtime * TURBSCALE + 96.0) & 255];
+       float   os = turbsin[(int)(realtime * TURBSCALE) & 255], ot = turbsin[(int)(cl.time * TURBSCALE + 96.0) & 255];
        glpoly_t *p;
-       float   wvert[1024*6], *wv, *v;
+       float   *wv, *v;
        wv = wvert;
        for (p = s->polys;p;p = p->next)
        {
@@ -443,13 +459,13 @@ void R_WaterSurf(msurface_t *s, texture_t *t, qboolean transform, int alpha)
                        else
                                VectorCopy(v, wv);
                        if (r_waterripple.value)
-                               wv[2] += r_waterripple.value * turbsin[(int)((wv[0]*(1.0f/32.0f)+realtime) * TURBSCALE) & 255] * turbsin[(int)((wv[1]*(1.0f/32.0f)+realtime) * TURBSCALE) & 255] * (1.0f / 64.0f);
+                               wv[2] += r_waterripple.value * turbsin[(int)((wv[0]*(1.0f/32.0f)+cl.time) * TURBSCALE) & 255] * turbsin[(int)((wv[1]*(1.0f/32.0f)+realtime) * TURBSCALE) & 255] * (1.0f / 64.0f);
                        wv[3] = wv[4] = wv[5] = 128.0f;
                        wv += 6;
                }
        }
        if (s->dlightframe == r_dlightframecount && r_dynamic.value)
-               R_LightSurface(s->dlightbits, s->polys, wvert);
+               RSurf_Light(s->dlightbits, s->polys);
        wv = wvert;
        // FIXME: make fog texture if water texture is transparent?
        for (p=s->polys ; p ; p=p->next)
@@ -461,11 +477,13 @@ void R_WaterSurf(msurface_t *s, texture_t *t, qboolean transform, int alpha)
        }
 }
 
-void R_WallSurf(msurface_t *s, texture_t *t, qboolean transform)
+void RSurf_DrawWall(msurface_t *s, texture_t *t, int transform)
 {
-       int                     i;
-       glpoly_t        *p;
-       float           wvert[64*6], *wv, *v;
+       int             i, lit = false, polys = 0, verts = 0;
+       float   *v, *wv;
+       glpoly_t *p;
+       wallpoly_t *wp;
+       wallvert_t *out;
        // check for lightmap modification
        if (r_dynamic.value)
        {
@@ -488,45 +506,54 @@ void R_WallSurf(msurface_t *s, texture_t *t, qboolean transform)
                        wv[3] = wv[4] = wv[5] = 0.0f;
                        wv += 6;
                }
+               verts += p->numverts;
+               polys++;
        }
+       if ((currentwallpoly + polys > MAX_WALLPOLYS) || (currentwallvert+verts > MAX_WALLVERTS))
+               return;
        if (s->dlightframe == r_dlightframecount && r_dynamic.value)
-               R_LightSurface(s->dlightbits, s->polys, wvert);
+               lit = RSurf_Light(s->dlightbits, s->polys);
        wv = wvert;
+       wp = &wallpoly[currentwallpoly];
+       out = &wallvert[currentwallvert];
+       currentwallpoly += polys;
        for (p = s->polys;p;p = p->next)
        {
-               if (currentwallpoly >= MAX_WALLPOLYS)
-                       break;
                v = p->verts[0];
-               wallpoly[currentwallpoly].texnum = (unsigned short) t->gl_texturenum;
-               wallpoly[currentwallpoly].lighttexnum = (unsigned short) lightmap_textures + s->lightmaptexturenum;
-               wallpoly[currentwallpoly].glowtexnum = (unsigned short) t->gl_glowtexturenum;
-               wallpoly[currentwallpoly].firstvert = currentwallvert;
-               wallpoly[currentwallpoly].numverts = p->numverts;
-               wallpoly[currentwallpoly++].lit = true;
-               for (i = 0;i<p->numverts;i++, v += VERTEXSIZE)
+               wp->texnum = (unsigned short) t->gl_texturenum;
+               wp->lighttexnum = (unsigned short) (lightmap_textures + s->lightmaptexturenum);
+               wp->glowtexnum = (unsigned short) t->gl_glowtexturenum;
+               wp->firstvert = currentwallvert;
+               wp->numverts = p->numverts;
+               wp->lit = lit;
+               wp++;
+               currentwallvert += p->numverts;
+               for (i = 0;i < p->numverts;i++, v += VERTEXSIZE, wv += 6, out++)
                {
-                       if (lighthalf)
-                       {
-                               wallvert[currentwallvert].r = (byte) (bound(0, (int) wv[3] >> 1, 255));
-                               wallvert[currentwallvert].g = (byte) (bound(0, (int) wv[4] >> 1, 255));
-                               wallvert[currentwallvert].b = (byte) (bound(0, (int) wv[5] >> 1, 255));
-                               wallvert[currentwallvert].a = 255;
-                       }
-                       else
+                       if (lit)
                        {
-                               wallvert[currentwallvert].r = (byte) (bound(0, (int) wv[3], 255));
-                               wallvert[currentwallvert].g = (byte) (bound(0, (int) wv[4], 255));
-                               wallvert[currentwallvert].b = (byte) (bound(0, (int) wv[5], 255));
-                               wallvert[currentwallvert].a = 255;
+                               if (lighthalf)
+                               {
+                                       out->r = (byte) (bound(0, (int) wv[3] >> 1, 255));
+                                       out->g = (byte) (bound(0, (int) wv[4] >> 1, 255));
+                                       out->b = (byte) (bound(0, (int) wv[5] >> 1, 255));
+                                       out->a = 255;
+                               }
+                               else
+                               {
+                                       out->r = (byte) (bound(0, (int) wv[3], 255));
+                                       out->g = (byte) (bound(0, (int) wv[4], 255));
+                                       out->b = (byte) (bound(0, (int) wv[5], 255));
+                                       out->a = 255;
+                               }
                        }
-                       wallvert[currentwallvert].vert[0] = wv[0];
-                       wallvert[currentwallvert].vert[1] = wv[1];
-                       wallvert[currentwallvert].vert[2] = wv[2];
-                       wallvert[currentwallvert].s = v[3];
-                       wallvert[currentwallvert].t = v[4];
-                       wallvert[currentwallvert].u = v[5];
-                       wallvert[currentwallvert++].v = v[6];
-                       wv += 6;
+                       out->vert[0] = wv[0];
+                       out->vert[1] = wv[1];
+                       out->vert[2] = wv[2];
+                       out->s = v[3];
+                       out->t = v[4];
+                       out->u = v[5];
+                       out->v = v[6];
                }
        }
 }
@@ -534,32 +561,15 @@ void R_WallSurf(msurface_t *s, texture_t *t, qboolean transform)
 // LordHavoc: transparent brush models
 extern int r_dlightframecount;
 extern float modelalpha;
-//extern vec3_t shadecolor;
-//qboolean R_CullBox (vec3_t mins, vec3_t maxs);
-//void R_DynamicLightPoint(vec3_t color, vec3_t org, int *dlightbits);
-//void R_DynamicLightPointNoMask(vec3_t color, vec3_t org);
-//void EmitWaterPolys (msurface_t *fa);
 
-void R_WallSurfVertex(msurface_t *s, texture_t *t, qboolean transform, qboolean isbmodel)
+void RSurf_DrawWallVertex(msurface_t *s, texture_t *t, int transform, int isbmodel)
 {
-       int                     i, alpha;
-       glpoly_t        *p;
-       float           wvert[64*6], *wv, *v;
-       int                     size3;
-       float           scale;
-       byte            *lm;
-       size3 = ((s->extents[0]>>4)+1)*((s->extents[1]>>4)+1)*3; // *3 for colored lighting
+       int i, alpha, size3;
+       float *v, *wv, scale;
+       glpoly_t *p;
+       byte *lm;
        alpha = (int) (modelalpha * 255.0f);
-       // check for lightmap modification
-       if (r_dynamic.value)
-       {
-               if (r_ambient.value != s->cached_ambient || lighthalf != s->cached_lighthalf
-               || (s->styles[0] != 255 && d_lightstylevalue[s->styles[0]] != s->cached_light[0])
-               || (s->styles[1] != 255 && d_lightstylevalue[s->styles[1]] != s->cached_light[1])
-               || (s->styles[2] != 255 && d_lightstylevalue[s->styles[2]] != s->cached_light[2])
-               || (s->styles[3] != 255 && d_lightstylevalue[s->styles[3]] != s->cached_light[3]))
-                       R_UpdateLightmap(s, s->lightmaptexturenum);
-       }
+       size3 = ((s->extents[0]>>4)+1)*((s->extents[1]>>4)+1)*3; // *3 for colored lighting
        wv = wvert;
        for (p = s->polys;p;p = p->next)
        {
@@ -591,7 +601,7 @@ void R_WallSurfVertex(msurface_t *s, texture_t *t, qboolean transform, qboolean
                }
        }
        if (s->dlightframe == r_dlightframecount && r_dynamic.value)
-               R_LightSurface(s->dlightbits, s->polys, wvert);
+               RSurf_Light(s->dlightbits, s->polys);
        wv = wvert;
        if (isbmodel && (currententity->colormod[0] != 1 || currententity->colormod[1] != 1 || currententity->colormod[2] != 1))
        {
@@ -624,27 +634,26 @@ DrawTextureChains
 */
 extern qboolean hlbsp;
 extern char skyname[];
-//extern qboolean SV_TestLine (hull_t *hull, int num, vec3_t p1, vec3_t p2);
-void R_DrawSurf(msurface_t *s, qboolean isbmodel, qboolean vertexlit)
+void R_DrawSurf(msurface_t *s, int isbmodel, int vertexlit)
 {
        texture_t *t;
        if (s->flags & SURF_DRAWSKY)
        {
                skyisvisible = true;
                if (!hlbsp) // LordHavoc: HalfLife maps have freaky skypolys...
-                       R_SkySurf(s, false);
+                       RSurf_DrawSky(s, false);
                return;
        }
        t = R_TextureAnimation (s->texinfo->texture);
        if (s->flags & SURF_DRAWTURB)
        {
-               R_WaterSurf(s, t, false, s->flags & SURF_DRAWNOALPHA ? 255 : r_wateralpha.value*255.0f);
+               RSurf_DrawWater(s, t, false, s->flags & SURF_DRAWNOALPHA ? 255 : r_wateralpha.value*255.0f);
                return;
        }
        if (vertexlit)
-               R_WallSurfVertex(s, t, false, false);
+               RSurf_DrawWallVertex(s, t, false, false);
        else
-               R_WallSurf(s, t, false);
+               RSurf_DrawWall(s, t, false);
 }
 
 void DrawTextureChains (void)
@@ -667,7 +676,7 @@ void DrawTextureChains (void)
                        skyisvisible = true;
                        if (!hlbsp) // LordHavoc: HalfLife maps have freaky skypolys...
                                for (;s;s = s->texturechain)
-                                       R_SkySurf(s, false);
+                                       RSurf_DrawSky(s, false);
                        continue;
                }
                t = R_TextureAnimation (cl.worldmodel->textures[n]);
@@ -676,15 +685,15 @@ void DrawTextureChains (void)
                {
                        int alpha = s->flags & SURF_DRAWNOALPHA ? 255 : r_wateralpha.value*255.0f;
                        for (;s;s = s->texturechain)
-                               R_WaterSurf(s, t, false, alpha);
+                               RSurf_DrawWater(s, t, false, alpha);
                        continue;
                }
                if (gl_vertex.value)
                        for (;s;s = s->texturechain)
-                               R_WallSurfVertex(s, t, false, false);
+                               RSurf_DrawWallVertex(s, t, false, false);
                else
                        for (;s;s = s->texturechain)
-                               R_WallSurf(s, t, false);
+                               RSurf_DrawWall(s, t, false);
        }
 }
 
@@ -701,7 +710,7 @@ void R_DrawBrushModel (entity_t *e)
        vec3_t          mins, maxs;
        msurface_t      *s;
        model_t         *clmodel;
-       qboolean        rotated, vertexlit = false;
+       int     rotated, vertexlit = false;
        texture_t       *t;
        vec3_t          org;
 
@@ -728,6 +737,8 @@ void R_DrawBrushModel (entity_t *e)
        if (R_CullBox (mins, maxs))
                return;
 
+       c_bmodels++;
+
        VectorSubtract (r_refdef.vieworg, e->origin, modelorg);
        if (rotated)
        {
@@ -767,19 +778,19 @@ e->angles[0] = -e->angles[0];     // stupid quake bug
 //                     R_DrawSurf(s, true, vertexlit || s->texinfo->texture->transparent);
                        if (s->flags & SURF_DRAWSKY)
                        {
-                               R_SkySurf(s, true);
+                               RSurf_DrawSky(s, true);
                                continue;
                        }
                        t = R_TextureAnimation (s->texinfo->texture);
                        if (s->flags & SURF_DRAWTURB)
                        {
-                               R_WaterSurf(s, t, true, s->flags & SURF_DRAWNOALPHA ? 255 : r_wateralpha.value*255.0f);
+                               RSurf_DrawWater(s, t, true, s->flags & SURF_DRAWNOALPHA ? 255 : r_wateralpha.value*255.0f);
                                continue;
                        }
                        if (vertexlit || s->texinfo->texture->transparent)
-                               R_WallSurfVertex(s, t, true, true);
+                               RSurf_DrawWallVertex(s, t, true, true);
                        else
-                               R_WallSurf(s, t, true);
+                               RSurf_DrawWall(s, t, true);
                }
        }
        UploadLightmaps();
@@ -795,6 +806,80 @@ e->angles[0] = -e->angles[0];      // stupid quake bug
 
 void R_StoreEfrags (efrag_t **ppefrag);
 
+void R_NewWorldNode ()
+{
+       int l, texsort = gl_texsort.value, vertex = gl_vertex.value;
+       mleaf_t *leaf;
+       msurface_t *surf, **mark, **endmark;
+
+       for (l = 0, leaf = cl.worldmodel->leafs;l < cl.worldmodel->numleafs;l++, leaf++)
+       {
+               if ((leaf->visframe == r_visframecount) && (leaf->efrags || leaf->nummarksurfaces))
+               {
+                       if (R_CullBox(leaf->minmaxs, leaf->minmaxs+3))
+                               continue;
+
+                       c_leafs++;
+
+                       // deal with model fragments in this leaf
+                       if (leaf->efrags)
+                               R_StoreEfrags (&leaf->efrags);
+
+                       if (leaf->nummarksurfaces)
+                       {
+                               mark = leaf->firstmarksurface;
+                               endmark = mark + leaf->nummarksurfaces;
+                               do
+                               {
+                                       surf = *mark++;
+                                       // make sure surfaces are only processed once
+                                       if (surf->worldnodeframe == r_framecount)
+                                               continue;
+                                       surf->worldnodeframe = r_framecount;
+                                       if (PlaneDist(modelorg, surf->plane) < surf->plane->dist)
+                                       {
+                                               if ( (surf->flags & SURF_PLANEBACK))
+                                               {
+                                                       surf->visframe = r_framecount;
+                                                       c_faces++;
+                                                       if (texsort)
+                                                       {
+                                                               surf->texturechain = surf->texinfo->texture->texturechain;
+                                                               surf->texinfo->texture->texturechain = surf;
+                                                       }
+                                                       else
+                                                               R_DrawSurf(surf, false, vertex);
+                                               }
+                                       }
+                                       else
+                                       {
+                                               if (!(surf->flags & SURF_PLANEBACK))
+                                               {
+                                                       surf->visframe = r_framecount;
+                                                       c_faces++;
+                                                       if (texsort)
+                                                       {
+                                                               surf->texturechain = surf->texinfo->texture->texturechain;
+                                                               surf->texinfo->texture->texturechain = surf;
+                                                       }
+                                                       else
+                                                               R_DrawSurf(surf, false, vertex);
+                                               }
+                                       }
+                               }
+                               while (mark < endmark);
+                       }
+               }
+       }
+}
+
+struct nodestack_s
+{
+       int side;
+       mnode_t *node;
+       int noclipping;
+} nodestack[8192];
+
 /*
 ================
 R_WorldNode
@@ -802,38 +887,61 @@ R_WorldNode
 */
 void R_WorldNode ()
 {
-       int             c, side, s = 0;
-       double  dot;
-       struct
-       {
-               double dot;
-               mnode_t *node;
-       } nodestack[8192];
+       int side, texsort = gl_texsort.value, vertex = gl_vertex.value, ca, cb, cc, cd, noclipping = false, oldclip = r_oldclip.value;
+       struct nodestack_s *nstack;
        mnode_t *node;
+       mleaf_t *pleaf;
+       msurface_t *surf, *endsurf, **mark, **endmark;
+       nstack = nodestack;
 
        if (!(node = cl.worldmodel->nodes))
                return;
 
        while(1)
        {
+               if (oldclip)
+               {
+                       if (R_CullBox(node->minmaxs, node->minmaxs+3))
+                       {
+backupstack:
+                               if (nstack <= nodestack)
+                                       break;
+                               nstack--;
+                               node = nstack->node;
+                               side = nstack->side;
+                               noclipping = nstack->noclipping;
+                               goto loc0;
+                       }
+               }
+               else
+               if (!noclipping)
+               {
+                       ca = frustum[0].BoxOnPlaneSideFunc(node->minmaxs, node->minmaxs+3, &frustum[0]);if (ca == 2) goto backupstack; // completely clipped away
+                       cb = frustum[1].BoxOnPlaneSideFunc(node->minmaxs, node->minmaxs+3, &frustum[1]);if (cb == 2) goto backupstack; // completely clipped away
+                       cc = frustum[2].BoxOnPlaneSideFunc(node->minmaxs, node->minmaxs+3, &frustum[2]);if (cc == 2) goto backupstack; // completely clipped away
+                       cd = frustum[3].BoxOnPlaneSideFunc(node->minmaxs, node->minmaxs+3, &frustum[3]);if (cd == 2) goto backupstack; // completely clipped away
+                       if (ca == 0 && cb == 0 && cc == 0 && cd == 0)
+                               noclipping = true; // not clipped at all, no need to clip any children of this node
+                       // partially clipped node
+               }
        // if a leaf node, draw stuff
                if (node->contents < 0)
                {
                        if (node->contents != CONTENTS_SOLID)
                        {
-                               mleaf_t         *pleaf;
                                pleaf = (mleaf_t *)node;
 
                                c_leafs++;
-                               if ((c = pleaf->nummarksurfaces))
+                               if (pleaf->nummarksurfaces)
                                {
-                                       msurface_t      **mark;
                                        mark = pleaf->firstmarksurface;
+                                       endmark = mark + pleaf->nummarksurfaces;
                                        do
                                        {
                                                (*mark)->visframe = r_framecount;
                                                mark++;
-                                       } while (--c);
+                                       }
+                                       while (mark < endmark);
                                }
 
                                // deal with model fragments in this leaf
@@ -841,84 +949,124 @@ void R_WorldNode ()
                                        R_StoreEfrags (&pleaf->efrags);
                        }
 
-                       if (!s)
+                       if (nstack <= nodestack)
                                break;
-                       node = nodestack[--s].node;
-                       dot = nodestack[s].dot;
+                       nstack--;
+                       node = nstack->node;
+                       side = nstack->side;
+                       noclipping = nstack->noclipping;
                        goto loc0;
                }
 
                c_nodes++;
 
-       // node is just a decision point, so go down the apropriate sides
+               // node is just a decision point, so go down the apropriate sides
 
-       // find which side of the node we are on
-               dot = (node->plane->type < 3 ? modelorg[node->plane->type] : DotProduct (modelorg, node->plane->normal)) - node->plane->dist;
+               // find which side of the node we are on
+               side = PlaneDist(modelorg, node->plane) < node->plane->dist;
 
-       // recurse down the children, front side first
-               side = dot < 0;
-               if (node->children[side]->visframe == r_visframecount && R_NotCulledBox(node->children[side]->minmaxs, node->children[side]->minmaxs+3))
+               // recurse down the children, front side first
+               if (node->children[side]->visframe == r_visframecount)
                {
-                       nodestack[s].node = node;
-                       nodestack[s++].dot = dot;
+                       nstack->node = node;
+                       nstack->side = !side; // go down back side when we come back up
+                       nstack->noclipping = noclipping;
+                       nstack++;
                        node = node->children[side];
                        continue;
                }
+               side = !side;
 loc0:
 
-               // backside
-               side = dot >= 0;
        // draw stuff
-               if ((c = node->numsurfaces))
+               if (node->numsurfaces)
                {
-                       msurface_t      *surf;
                        surf = cl.worldmodel->surfaces + node->firstsurface;
+                       endsurf = surf + node->numsurfaces;
 
-                       if (side)
+                       if (texsort)
                        {
-                               for (;c;c--, surf++)
+                               if (side)
                                {
-                                       if (surf->visframe == r_framecount && !(surf->flags & SURF_PLANEBACK))
+                                       do
                                        {
-                                               if (gl_texsort.value)
+                                               if (surf->visframe == r_framecount && !(surf->flags & SURF_PLANEBACK))
                                                {
+                                                       c_faces++;
                                                        surf->texturechain = surf->texinfo->texture->texturechain;
                                                        surf->texinfo->texture->texturechain = surf;
                                                }
                                                else
-                                                       R_DrawSurf(surf, false, gl_vertex.value);
+                                                       surf->visframe = -1; // LordHavoc: mark as not visible, so lighting will not touch it
+                                               surf++;
                                        }
+                                       while (surf < endsurf);
+                               }
+                               else
+                               {
+                                       do
+                                       {
+                                               if (surf->visframe == r_framecount && (surf->flags & SURF_PLANEBACK))
+                                               {
+                                                       c_faces++;
+                                                       surf->texturechain = surf->texinfo->texture->texturechain;
+                                                       surf->texinfo->texture->texturechain = surf;
+                                               }
+                                               else
+                                                       surf->visframe = -1; // LordHavoc: mark as not visible, so lighting will not touch it
+                                               surf++;
+                                       }
+                                       while (surf < endsurf);
                                }
                        }
                        else
                        {
-                               for (;c;c--, surf++)
+                               if (side)
                                {
-                                       if (surf->visframe == r_framecount && (surf->flags & SURF_PLANEBACK))
+                                       do
                                        {
-                                               if (gl_texsort.value)
+                                               if (surf->visframe == r_framecount && !(surf->flags & SURF_PLANEBACK))
                                                {
-                                                       surf->texturechain = surf->texinfo->texture->texturechain;
-                                                       surf->texinfo->texture->texturechain = surf;
+                                                       c_faces++;
+                                                       R_DrawSurf(surf, false, vertex);
+                                               }
+                                               else
+                                                       surf->visframe = -1; // LordHavoc: mark as not visible, so lighting will not touch it
+                                               surf++;
+                                       }
+                                       while (surf < endsurf);
+                               }
+                               else
+                               {
+                                       do
+                                       {
+                                               if (surf->visframe == r_framecount && (surf->flags & SURF_PLANEBACK))
+                                               {
+                                                       c_faces++;
+                                                       R_DrawSurf(surf, false, vertex);
                                                }
                                                else
-                                                       R_DrawSurf(surf, false, gl_vertex.value);
+                                                       surf->visframe = -1; // LordHavoc: mark as not visible, so lighting will not touch it
+                                               surf++;
                                        }
+                                       while (surf < endsurf);
                                }
                        }
                }
 
        // recurse down the back side
-               if (node->children[side]->visframe == r_visframecount && R_NotCulledBox(node->children[side]->minmaxs, node->children[side]->minmaxs+3))
+               if (node->children[side]->visframe == r_visframecount)
                {
                        node = node->children[side];
                        continue;
                }
 
-               if (!s)
+               if (nstack <= nodestack)
                        break;
-               node = nodestack[--s].node;
-               dot = nodestack[s].dot;
+               nstack--;
+               node = nstack->node;
+               side = nstack->side;
+               noclipping = nstack->noclipping;
                goto loc0;
        }
 }
@@ -946,16 +1094,16 @@ void R_DrawWorld (void)
        softwaretransformidentity(); // LordHavoc: clear transform
 
        if (cl.worldmodel)
-               R_WorldNode ();
-
-       glClear (GL_DEPTH_BUFFER_BIT);
+       {
+               if (r_newworldnode.value)
+                       R_NewWorldNode ();
+               else
+                       R_WorldNode ();
+       }
 
        R_PushDlights (); // now mark the lit surfaces
 
        DrawTextureChains ();
-
-       glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
-       glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
 }
 
 
@@ -1022,7 +1170,7 @@ void R_MarkLeaves (void)
 */
 
 // returns a texture number and the position inside it
-int AllocBlock (int w, int h, int *x, int *y)
+int AllocBlock (int w, int h, short *x, short *y)
 {
        int             i, j;
        int             best, best2;
@@ -1056,20 +1204,26 @@ int AllocBlock (int w, int h, int *x, int *y)
                if (nosubimagefragments || nosubimage)
                {
                        if (!lightmaps[texnum])
-                               lightmaps[texnum] = calloc(BLOCK_WIDTH*BLOCK_HEIGHT*4, 1);
+                       {
+                               lightmaps[texnum] = qmalloc(BLOCK_WIDTH*BLOCK_HEIGHT*4);
+                               memset(lightmaps[texnum], 0, BLOCK_WIDTH*BLOCK_HEIGHT*4);
+                       }
                }
                // LordHavoc: clear texture to blank image, fragments are uploaded using subimage
                else if (!allocated[texnum][0])
                {
                        byte blank[BLOCK_WIDTH*BLOCK_HEIGHT*3];
                        memset(blank, 0, sizeof(blank));
-                       glBindTexture(GL_TEXTURE_2D, lightmap_textures + texnum);
-                       glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
-                       glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
-                       if (lightmaprgba)
-                               glTexImage2D (GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGBA, GL_UNSIGNED_BYTE, blank);
-                       else
-                               glTexImage2D (GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, blank);
+                       if(r_upload.value)
+                       {
+                               glBindTexture(GL_TEXTURE_2D, lightmap_textures + texnum);
+                               glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
+                               glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
+                               if (lightmaprgba)
+                                       glTexImage2D (GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGBA, GL_UNSIGNED_BYTE, blank);
+                               else
+                                       glTexImage2D (GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, blank);
+                       }
                }
 
                for (i=0 ; i<w ; i++)
@@ -1110,7 +1264,7 @@ void BuildSurfaceDisplayList (msurface_t *fa)
        //
        // draw texture
        //
-       poly = Hunk_Alloc (sizeof(glpoly_t) + (lnumverts-4) * VERTEXSIZE*sizeof(float));
+       poly = Hunk_AllocName (sizeof(glpoly_t) + (lnumverts-4) * VERTEXSIZE*sizeof(float), "surfaces");
        poly->next = fa->polys;
        poly->flags = fa->flags;
        fa->polys = poly;
@@ -1224,12 +1378,14 @@ void GL_CreateSurfaceLightmap (msurface_t *surf)
        if (lightmaprgba)
        {
                R_BuildLightMap (surf, templight, smax * 4);
-               glTexSubImage2D(GL_TEXTURE_2D, 0, surf->light_s, surf->light_t, smax, tmax, GL_RGBA, GL_UNSIGNED_BYTE, templight);
+               if(r_upload.value)
+                       glTexSubImage2D(GL_TEXTURE_2D, 0, surf->light_s, surf->light_t, smax, tmax, GL_RGBA, GL_UNSIGNED_BYTE, templight);
        }
        else
        {
                R_BuildLightMap (surf, templight, smax * 3);
-               glTexSubImage2D(GL_TEXTURE_2D, 0, surf->light_s, surf->light_t, smax, tmax, GL_RGB , GL_UNSIGNED_BYTE, templight);
+               if(r_upload.value)
+                       glTexSubImage2D(GL_TEXTURE_2D, 0, surf->light_s, surf->light_t, smax, tmax, GL_RGB , GL_UNSIGNED_BYTE, templight);
        }
 }
 
@@ -1318,24 +1474,29 @@ void GL_BuildLightmaps (void)
 
        if (nosubimage || nosubimagefragments)
        {
-               if (gl_mtexable)
-                       qglSelectTexture(gl_mtex_enum+1);
+               if(r_upload.value)
+                       if (gl_mtexable)
+                               qglSelectTexture(gl_mtex_enum+1);
                for (i = 0;i < MAX_LIGHTMAPS;i++)
                {
                        if (!allocated[i][0])
                                break;
                        lightmapupdate[i][0] = BLOCK_HEIGHT;
                        lightmapupdate[i][1] = 0;
-                       glBindTexture(GL_TEXTURE_2D, lightmap_textures + i);
-                       glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
-                       glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
-                       if (lightmaprgba)
-                               glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGBA, GL_UNSIGNED_BYTE, lightmaps[i]);
-                       else
-                               glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, lightmaps[i]);
+                       if(r_upload.value)
+                       {
+                               glBindTexture(GL_TEXTURE_2D, lightmap_textures + i);
+                               glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
+                               glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
+                               if (lightmaprgba)
+                                       glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGBA, GL_UNSIGNED_BYTE, lightmaps[i]);
+                               else
+                                       glTexImage2D(GL_TEXTURE_2D, 0, 3, BLOCK_WIDTH, BLOCK_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, lightmaps[i]);
+                       }
                }
-               if (gl_mtexable)
-                       qglSelectTexture(gl_mtex_enum+0);
+               if(r_upload.value)
+                       if (gl_mtexable)
+                               qglSelectTexture(gl_mtex_enum+0);
        }
 }