]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - gl_models.c
fixed some dynamic lighting bugs related to glowing self
[xonotic/darkplaces.git] / gl_models.c
index 4cc5f9fd40c6133166f4346ababf63d443815bf6..f77d722eeec2ec85f44311e60bb33c37f075b857 100644 (file)
@@ -3,8 +3,6 @@
 #include "cl_collision.h"
 #include "r_shadow.h"
 
-cvar_t r_quickmodels = {0, "r_quickmodels", "1"};
-
 typedef struct
 {
        float m[3][4];
@@ -12,13 +10,13 @@ typedef struct
 
 // LordHavoc: vertex arrays
 
-float *aliasvertbuf;
 float *aliasvertcolorbuf;
-float *aliasvert; // this may point at aliasvertbuf or at vertex arrays in the mesh backend
 float *aliasvertcolor; // this may point at aliasvertcolorbuf or at vertex arrays in the mesh backend
+float *aliasvert_svectors;
+float *aliasvert_tvectors;
+float *aliasvert_normals;
 
 float *aliasvertcolor2;
-float *aliasvertnorm;
 int *aliasvertusage;
 zymbonematrix *zymbonepose;
 
@@ -28,9 +26,10 @@ void gl_models_start(void)
 {
        // allocate vertex processing arrays
        gl_models_mempool = Mem_AllocPool("GL_Models");
-       aliasvert = aliasvertbuf = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][4]));
        aliasvertcolor = aliasvertcolorbuf = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][4]));
-       aliasvertnorm = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][3]));
+       aliasvert_svectors = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][4]));
+       aliasvert_tvectors = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][4]));
+       aliasvert_normals = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][4]));
        aliasvertcolor2 = Mem_Alloc(gl_models_mempool, sizeof(float[MD2MAX_VERTS][4])); // used temporarily for tinted coloring
        zymbonepose = Mem_Alloc(gl_models_mempool, sizeof(zymbonematrix[256]));
        aliasvertusage = Mem_Alloc(gl_models_mempool, sizeof(int[MD2MAX_VERTS]));
@@ -47,33 +46,9 @@ void gl_models_newmap(void)
 
 void GL_Models_Init(void)
 {
-       Cvar_RegisterVariable(&r_quickmodels);
-
        R_RegisterModule("GL_Models", gl_models_start, gl_models_shutdown, gl_models_newmap);
 }
 
-/*
-void R_AliasTransformVerts(int vertcount)
-{
-       vec3_t point;
-       float *av;
-       av = aliasvert;
-       while (vertcount >= 4)
-       {
-               VectorCopy(av, point);softwaretransform(point, av);av += 4;
-               VectorCopy(av, point);softwaretransform(point, av);av += 4;
-               VectorCopy(av, point);softwaretransform(point, av);av += 4;
-               VectorCopy(av, point);softwaretransform(point, av);av += 4;
-               vertcount -= 4;
-       }
-       while(vertcount > 0)
-       {
-               VectorCopy(av, point);softwaretransform(point, av);av += 4;
-               vertcount--;
-       }
-}
-*/
-
 void R_AliasLerpVerts(int vertcount, float *vertices, float *normals,
                float lerp1, const trivertx_t *verts1, const vec3_t fscale1, const vec3_t translate1,
                float lerp2, const trivertx_t *verts2, const vec3_t fscale2, const vec3_t translate2,
@@ -113,7 +88,7 @@ void R_AliasLerpVerts(int vertcount, float *vertices, float *normals,
                                        avn[1] = n1[1] * lerp1 + n2[1] * lerp2 + n3[1] * lerp3 + n4[1] * lerp4;
                                        avn[2] = n1[2] * lerp1 + n2[2] * lerp2 + n3[2] * lerp3 + n4[2] * lerp4;
                                        av += 4;
-                                       avn += 3;
+                                       avn += 4;
                                        verts1++;verts2++;verts3++;verts4++;
                                }
                        }
@@ -135,7 +110,7 @@ void R_AliasLerpVerts(int vertcount, float *vertices, float *normals,
                                        avn[1] = n1[1] * lerp1 + n2[1] * lerp2 + n3[1] * lerp3;
                                        avn[2] = n1[2] * lerp1 + n2[2] * lerp2 + n3[2] * lerp3;
                                        av += 4;
-                                       avn += 3;
+                                       avn += 4;
                                        verts1++;verts2++;verts3++;
                                }
                        }
@@ -157,7 +132,7 @@ void R_AliasLerpVerts(int vertcount, float *vertices, float *normals,
                                avn[1] = n1[1] * lerp1 + n2[1] * lerp2;
                                avn[2] = n1[2] * lerp1 + n2[2] * lerp2;
                                av += 4;
-                               avn += 3;
+                               avn += 4;
                                verts1++;verts2++;
                        }
                }
@@ -181,7 +156,7 @@ void R_AliasLerpVerts(int vertcount, float *vertices, float *normals,
                                avn[1] = n1[1] * lerp1;
                                avn[2] = n1[2] * lerp1;
                                av += 4;
-                               avn += 3;
+                               avn += 4;
                                verts1++;
                        }
                }
@@ -195,7 +170,7 @@ void R_AliasLerpVerts(int vertcount, float *vertices, float *normals,
                                av[2] = verts1->v[2] * scale1[2] + translate[2];
                                VectorCopy(m_bytenormals[verts1->lightnormalindex], avn);
                                av += 4;
-                               avn += 3;
+                               avn += 4;
                                verts1++;
                        }
                }
@@ -237,9 +212,9 @@ void R_LerpMDLMD2Vertices(const entity_render_t *ent, float *vertices, float *no
 
 void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
 {
-       int i, c, pantsfullbright, shirtfullbright, colormapped, tex;
+       int i, c, fullbright, pantsfullbright, shirtfullbright, colormapped, tex;
        float pantscolor[3], shirtcolor[3];
-       float fog, colorscale;
+       float fog, ifog, colorscale;
        vec3_t diff;
        qbyte *bcolor;
        rmeshstate_t m;
@@ -248,9 +223,15 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
        const entity_render_t *ent = calldata1;
        int blendfunc1, blendfunc2;
 
-//     softwaretransformforentity(ent);
        R_Mesh_Matrix(&ent->matrix);
 
+       model = ent->model;
+       R_Mesh_ResizeCheck(model->numverts);
+
+       skinframe = R_FetchSkinFrame(ent);
+
+       fullbright = (ent->effects & EF_FULLBRIGHT) != 0;
+
        fog = 0;
        if (fogenabled)
        {
@@ -267,11 +248,7 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                // 1. render model as normal, scaled by inverse of fog alpha (darkens it)
                // 2. render fog as additive
        }
-
-       model = ent->model;
-       R_Mesh_ResizeCheck(model->numverts);
-
-       skinframe = R_FetchSkinFrame(ent);
+       ifog = 1 - fog;
 
        if (ent->effects & EF_ADDITIVE)
        {
@@ -289,73 +266,43 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                blendfunc2 = GL_ZERO;
        }
 
-       colorscale = r_colorscale;
-       if (gl_combine.integer)
-               colorscale *= 0.25f;
-
+       R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvert_normals);
+       memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[4]));
        if (!skinframe->base && !skinframe->pants && !skinframe->shirt && !skinframe->glow)
        {
                // untextured
                memset(&m, 0, sizeof(m));
                m.blendfunc1 = blendfunc1;
                m.blendfunc2 = blendfunc2;
+               colorscale = r_colorscale;
                if (gl_combine.integer)
+               {
+                       colorscale *= 0.25f;
                        m.texrgbscale[0] = 4;
+               }
                m.tex[0] = R_GetTexture(r_notexture);
                R_Mesh_State(&m);
-
                c_alias_polys += model->numtris;
-               for (i = 0;i < model->numverts * 2;i++)
-                       varray_texcoord[0][i] = model->mdlmd2data_texcoords[i] * 8.0f;
-               aliasvert = varray_vertex;
-               aliasvertcolor = varray_color;
-               R_LerpMDLMD2Vertices(ent, aliasvert, aliasvertnorm);
-               R_LightModel(ent, model->numverts, colorscale, colorscale, colorscale, false);
-               aliasvert = aliasvertbuf;
-               aliasvertcolor = aliasvertcolorbuf;
-               GL_UseColorArray();
+               for (i = 0;i < model->numverts * 4;i += 4)
+               {
+                       varray_texcoord[0][i + 0] *= 8.0f;
+                       varray_texcoord[0][i + 1] *= 8.0f;
+               }
+               R_LightModel(ent, model->numverts, varray_vertex, aliasvert_normals, varray_color, colorscale, colorscale, colorscale, false);
                R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
                return;
        }
 
-
        colormapped = !skinframe->merged || (ent->colormap >= 0 && skinframe->base && (skinframe->pants || skinframe->shirt));
-       if (!colormapped && !fog && !skinframe->glow && !skinframe->fog)
-       {
-               // fastpath for the normal situation (one texture)
-               memset(&m, 0, sizeof(m));
-               m.blendfunc1 = blendfunc1;
-               m.blendfunc2 = blendfunc2;
-               if (gl_combine.integer)
-                       m.texrgbscale[0] = 4;
-               m.tex[0] = R_GetTexture(skinframe->merged);
-               R_Mesh_State(&m);
-
-               c_alias_polys += model->numtris;
-               memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[2]));
-               aliasvert = varray_vertex;
-               aliasvertcolor = varray_color;
-               R_LerpMDLMD2Vertices(ent, aliasvert, aliasvertnorm);
-               R_LightModel(ent, model->numverts, colorscale, colorscale, colorscale, false);
-               aliasvert = aliasvertbuf;
-               aliasvertcolor = aliasvertcolorbuf;
-               GL_UseColorArray();
-               R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
-               return;
-       }
-
-       R_LerpMDLMD2Vertices(ent, aliasvert, aliasvertnorm);
-       R_LightModel(ent, model->numverts, colorscale * (1 - fog), colorscale * (1 - fog), colorscale * (1 - fog), false);
-
        if (colormapped)
        {
                // 128-224 are backwards ranges
                c = (ent->colormap & 0xF) << 4;c += (c >= 128 && c < 224) ? 4 : 12;
-               bcolor = (qbyte *) (&d_8to24table[c]);
+               bcolor = (qbyte *) (&palette_complete[c]);
                pantsfullbright = c >= 224;
                VectorScale(bcolor, (1.0f / 255.0f), pantscolor);
                c = (ent->colormap & 0xF0);c += (c >= 128 && c < 224) ? 4 : 12;
-               bcolor = (qbyte *) (&d_8to24table[c]);
+               bcolor = (qbyte *) (&palette_complete[c]);
                shirtfullbright = c >= 224;
                VectorScale(bcolor, (1.0f / 255.0f), shirtcolor);
        }
@@ -371,19 +318,22 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                memset(&m, 0, sizeof(m));
                m.blendfunc1 = blendfunc1;
                m.blendfunc2 = blendfunc2;
+               colorscale = r_colorscale;
                if (gl_combine.integer)
+               {
+                       colorscale *= 0.25f;
                        m.texrgbscale[0] = 4;
+               }
                m.tex[0] = tex;
                R_Mesh_State(&m);
-
+               if (fullbright)
+                       GL_Color(colorscale * ifog, colorscale * ifog, colorscale * ifog, ent->alpha);
+               else
+                       R_LightModel(ent, model->numverts, varray_vertex, aliasvert_normals, varray_color, colorscale * ifog, colorscale * ifog, colorscale * ifog, false);
+               R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
+               c_alias_polys += model->numtris;
                blendfunc1 = GL_SRC_ALPHA;
                blendfunc2 = GL_ONE;
-               c_alias_polys += model->numtris;
-               R_ModulateColors(aliasvertcolor, varray_color, model->numverts, colorscale, colorscale, colorscale);
-               memcpy(varray_vertex, aliasvert, model->numverts * sizeof(float[4]));
-               memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[2]));
-               GL_UseColorArray();
-               R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
        }
 
        if (colormapped)
@@ -396,24 +346,22 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                                memset(&m, 0, sizeof(m));
                                m.blendfunc1 = blendfunc1;
                                m.blendfunc2 = blendfunc2;
+                               colorscale = r_colorscale;
                                if (gl_combine.integer)
+                               {
+                                       colorscale *= 0.25f;
                                        m.texrgbscale[0] = 4;
+                               }
                                m.tex[0] = tex;
                                R_Mesh_State(&m);
-
-                               blendfunc1 = GL_SRC_ALPHA;
-                               blendfunc2 = GL_ONE;
-                               c_alias_polys += model->numtris;
                                if (pantsfullbright)
-                                       GL_Color(pantscolor[0] * colorscale, pantscolor[1] * colorscale, pantscolor[2] * colorscale, ent->alpha);
+                                       GL_Color(pantscolor[0] * colorscale * ifog, pantscolor[1] * colorscale * ifog, pantscolor[2] * colorscale * ifog, ent->alpha);
                                else
-                               {
-                                       GL_UseColorArray();
-                                       R_ModulateColors(aliasvertcolor, varray_color, model->numverts, pantscolor[0] * colorscale, pantscolor[1] * colorscale, pantscolor[2] * colorscale);
-                               }
-                               memcpy(varray_vertex, aliasvert, model->numverts * sizeof(float[4]));
-                               memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[2]));
+                                       R_LightModel(ent, model->numverts, varray_vertex, aliasvert_normals, varray_color, pantscolor[0] * colorscale * ifog, pantscolor[1] * colorscale * ifog, pantscolor[2] * colorscale * ifog, false);
                                R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
+                               c_alias_polys += model->numtris;
+                               blendfunc1 = GL_SRC_ALPHA;
+                               blendfunc2 = GL_ONE;
                        }
                }
                if (skinframe->shirt)
@@ -424,24 +372,22 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                                memset(&m, 0, sizeof(m));
                                m.blendfunc1 = blendfunc1;
                                m.blendfunc2 = blendfunc2;
+                               colorscale = r_colorscale;
                                if (gl_combine.integer)
+                               {
+                                       colorscale *= 0.25f;
                                        m.texrgbscale[0] = 4;
+                               }
                                m.tex[0] = tex;
                                R_Mesh_State(&m);
-
-                               blendfunc1 = GL_SRC_ALPHA;
-                               blendfunc2 = GL_ONE;
-                               c_alias_polys += model->numtris;
                                if (shirtfullbright)
-                                       GL_Color(shirtcolor[0] * colorscale, shirtcolor[1] * colorscale, shirtcolor[2] * colorscale, ent->alpha);
+                                       GL_Color(shirtcolor[0] * colorscale * ifog, shirtcolor[1] * colorscale * ifog, shirtcolor[2] * colorscale * ifog, ent->alpha);
                                else
-                               {
-                                       GL_UseColorArray();
-                                       R_ModulateColors(aliasvertcolor, varray_color, model->numverts, shirtcolor[0] * colorscale, shirtcolor[1] * colorscale, shirtcolor[2] * colorscale);
-                               }
-                               memcpy(varray_vertex, aliasvert, model->numverts * sizeof(float[4]));
-                               memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[2]));
+                                       R_LightModel(ent, model->numverts, varray_vertex, aliasvert_normals, varray_color, shirtcolor[0] * colorscale * ifog, shirtcolor[1] * colorscale * ifog, shirtcolor[2] * colorscale * ifog, false);
                                R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
+                               c_alias_polys += model->numtris;
+                               blendfunc1 = GL_SRC_ALPHA;
+                               blendfunc2 = GL_ONE;
                        }
                }
        }
@@ -459,9 +405,7 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                        blendfunc1 = GL_SRC_ALPHA;
                        blendfunc2 = GL_ONE;
                        c_alias_polys += model->numtris;
-                       memcpy(varray_vertex, aliasvert, model->numverts * sizeof(float[4]));
-                       memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[2]));
-                       GL_Color((1 - fog) * r_colorscale, (1 - fog) * r_colorscale, (1 - fog) * r_colorscale, ent->alpha);
+                       GL_Color(ifog * r_colorscale, ifog * r_colorscale, ifog * r_colorscale, ent->alpha);
                        R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
                }
        }
@@ -474,76 +418,31 @@ void R_DrawQ1Q2AliasModelCallback (const void *calldata1, int calldata2)
                R_Mesh_State(&m);
 
                c_alias_polys += model->numtris;
-               memcpy(varray_vertex, aliasvert, model->numverts * sizeof(float[4]));
-               memcpy(varray_texcoord[0], model->mdlmd2data_texcoords, model->numverts * sizeof(float[2]));
                GL_Color(fogcolor[0] * fog * r_colorscale, fogcolor[1] * fog * r_colorscale, fogcolor[2] * fog * r_colorscale, ent->alpha);
                R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
        }
 }
 
+void R_Model_Alias_Draw(entity_render_t *ent)
+{
+       if (ent->alpha < (1.0f / 64.0f))
+               return; // basically completely transparent
+
+       c_models++;
+
+       if (ent->effects & EF_ADDITIVE || ent->alpha != 1.0 || R_FetchSkinFrame(ent)->fog != NULL)
+               R_MeshQueue_AddTransparent(ent->origin, R_DrawQ1Q2AliasModelCallback, ent, 0);
+       else
+               R_DrawQ1Q2AliasModelCallback(ent, 0);
+}
+
 extern cvar_t r_shadows;
-void R_DrawQ1Q2AliasModelFakeShadow (entity_render_t *ent)
+void R_Model_Alias_DrawFakeShadow (entity_render_t *ent)
 {
        int i;
        rmeshstate_t m;
        model_t *model;
        float *v, planenormal[3], planedist, dist, projection[3], floororigin[3], surfnormal[3], lightdirection[3], v2[3];
-       mlight_t *sl;
-       rdlight_t *rd;
-
-       if (r_shadows.integer > 1)
-       {
-               float f, lightscale, lightcolor[3];
-               vec3_t temp;
-               memset(&m, 0, sizeof(m));
-               m.blendfunc1 = GL_ONE;
-               m.blendfunc2 = GL_ONE;
-               R_Mesh_State(&m);
-               R_Mesh_Matrix(&ent->matrix);
-               for (i = 0, sl = cl.worldmodel->lights;i < cl.worldmodel->numlights;i++, sl++)
-               {
-                       if (d_lightstylevalue[sl->style] > 0)
-                       {
-                               VectorSubtract(ent->origin, sl->origin, temp);
-                               f = DotProduct(temp,temp);
-                               if (f < (ent->model->radius2 + sl->cullradius2))
-                               {
-                                       model = ent->model;
-                                       R_Mesh_ResizeCheck(model->numverts * 2);
-                                       R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvertnorm);
-                                       Matrix4x4_Transform(&ent->inversematrix, sl->origin, temp);
-                                       GL_Color(0.1 * r_colorscale, 0.025 * r_colorscale, 0.0125 * r_colorscale, 1);
-                                       R_Shadow_Volume(model->numverts, model->numtris, varray_vertex, model->mdlmd2data_indices, model->mdlmd2data_triangleneighbors, temp, sl->cullradius + model->radius - sqrt(f), true);
-                                       GL_UseColorArray();
-                                       lightscale = d_lightstylevalue[sl->style] * (1.0f / 65536.0f);
-                                       VectorScale(sl->light, lightscale, lightcolor);
-                                       R_Shadow_VertexLight(model->numverts, varray_vertex, aliasvertnorm, temp, sl->cullradius2, sl->distbias, sl->subtract, lightcolor);
-                                       R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
-                               }
-                       }
-               }
-               for (i = 0, rd = r_dlight;i < r_numdlights;i++, rd++)
-               {
-                       if (ent != rd->ent)
-                       {
-                               VectorSubtract(ent->origin, rd->origin, temp);
-                               f = DotProduct(temp,temp);
-                               if (f < (ent->model->radius2 + rd->cullradius2))
-                               {
-                                       model = ent->model;
-                                       R_Mesh_ResizeCheck(model->numverts * 2);
-                                       R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvertnorm);
-                                       Matrix4x4_Transform(&ent->inversematrix, rd->origin, temp);
-                                       GL_Color(0.1 * r_colorscale, 0.025 * r_colorscale, 0.0125 * r_colorscale, 1);
-                                       R_Shadow_Volume(model->numverts, model->numtris, varray_vertex, model->mdlmd2data_indices, model->mdlmd2data_triangleneighbors, temp, rd->cullradius + model->radius - sqrt(f), true);
-                                       GL_UseColorArray();
-                                       R_Shadow_VertexLight(model->numverts, varray_vertex, aliasvertnorm, temp, rd->cullradius2, LIGHTOFFSET, rd->subtract, rd->light);
-                                       R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
-                               }
-                       }
-               }
-               return;
-       }
 
        lightdirection[0] = 0.5;
        lightdirection[1] = 0.2;
@@ -565,7 +464,7 @@ void R_DrawQ1Q2AliasModelFakeShadow (entity_render_t *ent)
        R_Mesh_State(&m);
 
        c_alias_polys += model->numtris;
-       R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvertnorm);
+       R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvert_normals);
 
        // put a light direction in the entity's coordinate space
        Matrix4x4_Transform3x3(&ent->inversematrix, lightdirection, projection);
@@ -592,6 +491,30 @@ void R_DrawQ1Q2AliasModelFakeShadow (entity_render_t *ent)
        R_Mesh_Draw(model->numverts, model->numtris, model->mdlmd2data_indices);
 }
 
+void R_Model_Alias_DrawShadowVolume(entity_render_t *ent, vec3_t relativelightorigin, float lightradius)
+{
+       float projectdistance;
+       projectdistance = lightradius + ent->model->radius - sqrt(DotProduct(relativelightorigin, relativelightorigin));
+       if (projectdistance > 0.1)
+       {
+               R_Mesh_Matrix(&ent->matrix);
+               R_Mesh_ResizeCheck(ent->model->numverts * 2);
+               R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvert_normals);
+               R_Shadow_Volume(ent->model->numverts, ent->model->numtris, varray_vertex, ent->model->mdlmd2data_indices, ent->model->mdlmd2data_triangleneighbors, relativelightorigin, lightradius, projectdistance);
+       }
+}
+
+void R_Model_Alias_DrawLight(entity_render_t *ent, vec3_t relativelightorigin, vec3_t relativeeyeorigin, float lightradius, float lightdistbias, float lightsubtract, float *lightcolor)
+{
+       skinframe_t *skinframe;
+       R_Mesh_Matrix(&ent->matrix);
+       skinframe = R_FetchSkinFrame(ent);
+       R_Mesh_ResizeCheck(ent->model->numverts);
+       R_LerpMDLMD2Vertices(ent, varray_vertex, aliasvert_normals);
+       Mod_BuildTextureVectorsAndNormals(ent->model->numverts, ent->model->numtris, varray_vertex, ent->model->mdlmd2data_texcoords, ent->model->mdlmd2data_indices, aliasvert_svectors, aliasvert_tvectors, aliasvert_normals);
+       R_Shadow_RenderLighting(ent->model->numverts, ent->model->numtris, ent->model->mdlmd2data_indices, aliasvert_svectors, aliasvert_tvectors, aliasvert_normals, ent->model->mdlmd2data_texcoords, relativelightorigin, relativeeyeorigin, lightradius, lightcolor, skinframe->base, skinframe->gloss, skinframe->nmap, NULL);
+}
+
 int ZymoticLerpBones(int count, const zymbonematrix *bonebase, const frameblend_t *blend, const zymbone_t *bone)
 {
        int i;
@@ -599,21 +522,6 @@ int ZymoticLerpBones(int count, const zymbonematrix *bonebase, const frameblend_
        zymbonematrix *out, rootmatrix, m;
        const zymbonematrix *bone1, *bone2, *bone3, *bone4;
 
-       /*
-       // LordHavoc: combine transform from zym coordinate space to quake coordinate space with model to world transform matrix
-       rootmatrix.m[0][0] = softwaretransform_matrix[0][1];
-       rootmatrix.m[0][1] = -softwaretransform_matrix[0][0];
-       rootmatrix.m[0][2] = softwaretransform_matrix[0][2];
-       rootmatrix.m[0][3] = softwaretransform_matrix[0][3];
-       rootmatrix.m[1][0] = softwaretransform_matrix[1][1];
-       rootmatrix.m[1][1] = -softwaretransform_matrix[1][0];
-       rootmatrix.m[1][2] = softwaretransform_matrix[1][2];
-       rootmatrix.m[1][3] = softwaretransform_matrix[1][3];
-       rootmatrix.m[2][0] = softwaretransform_matrix[2][1];
-       rootmatrix.m[2][1] = -softwaretransform_matrix[2][0];
-       rootmatrix.m[2][2] = softwaretransform_matrix[2][2];
-       rootmatrix.m[2][3] = softwaretransform_matrix[2][3];
-       */
        rootmatrix.m[0][0] = 1;
        rootmatrix.m[0][1] = 0;
        rootmatrix.m[0][2] = 0;
@@ -771,10 +679,10 @@ int ZymoticLerpBones(int count, const zymbonematrix *bonebase, const frameblend_
        return true;
 }
 
-void ZymoticTransformVerts(int vertcount, int *bonecounts, zymvertex_t *vert)
+void ZymoticTransformVerts(int vertcount, float *vertex, int *bonecounts, zymvertex_t *vert)
 {
        int c;
-       float *out = aliasvert;
+       float *out = vertex;
        zymbonematrix *matrix;
        while(vertcount--)
        {
@@ -805,13 +713,13 @@ void ZymoticTransformVerts(int vertcount, int *bonecounts, zymvertex_t *vert)
        }
 }
 
-void ZymoticCalcNormals(int vertcount, int shadercount, int *renderlist)
+void ZymoticCalcNormals(int vertcount, float *vertex, float *normals, int shadercount, int *renderlist)
 {
        int a, b, c, d;
        float *out, v1[3], v2[3], normal[3], s;
        int *u;
        // clear normals
-       memset(aliasvertnorm, 0, sizeof(float) * vertcount * 3);
+       memset(normals, 0, sizeof(float) * vertcount * 3);
        memset(aliasvertusage, 0, sizeof(int) * vertcount);
        // parse render list and accumulate surface normals
        while(shadercount--)
@@ -822,36 +730,36 @@ void ZymoticCalcNormals(int vertcount, int shadercount, int *renderlist)
                        a = renderlist[0]*4;
                        b = renderlist[1]*4;
                        c = renderlist[2]*4;
-                       v1[0] = aliasvert[a+0] - aliasvert[b+0];
-                       v1[1] = aliasvert[a+1] - aliasvert[b+1];
-                       v1[2] = aliasvert[a+2] - aliasvert[b+2];
-                       v2[0] = aliasvert[c+0] - aliasvert[b+0];
-                       v2[1] = aliasvert[c+1] - aliasvert[b+1];
-                       v2[2] = aliasvert[c+2] - aliasvert[b+2];
+                       v1[0] = vertex[a+0] - vertex[b+0];
+                       v1[1] = vertex[a+1] - vertex[b+1];
+                       v1[2] = vertex[a+2] - vertex[b+2];
+                       v2[0] = vertex[c+0] - vertex[b+0];
+                       v2[1] = vertex[c+1] - vertex[b+1];
+                       v2[2] = vertex[c+2] - vertex[b+2];
                        CrossProduct(v1, v2, normal);
                        VectorNormalizeFast(normal);
                        // add surface normal to vertices
                        a = renderlist[0] * 3;
-                       aliasvertnorm[a+0] += normal[0];
-                       aliasvertnorm[a+1] += normal[1];
-                       aliasvertnorm[a+2] += normal[2];
+                       normals[a+0] += normal[0];
+                       normals[a+1] += normal[1];
+                       normals[a+2] += normal[2];
                        aliasvertusage[renderlist[0]]++;
                        a = renderlist[1] * 3;
-                       aliasvertnorm[a+0] += normal[0];
-                       aliasvertnorm[a+1] += normal[1];
-                       aliasvertnorm[a+2] += normal[2];
+                       normals[a+0] += normal[0];
+                       normals[a+1] += normal[1];
+                       normals[a+2] += normal[2];
                        aliasvertusage[renderlist[1]]++;
                        a = renderlist[2] * 3;
-                       aliasvertnorm[a+0] += normal[0];
-                       aliasvertnorm[a+1] += normal[1];
-                       aliasvertnorm[a+2] += normal[2];
+                       normals[a+0] += normal[0];
+                       normals[a+1] += normal[1];
+                       normals[a+2] += normal[2];
                        aliasvertusage[renderlist[2]]++;
                        renderlist += 3;
                }
        }
        // FIXME: precalc this
        // average surface normals
-       out = aliasvertnorm;
+       out = normals;
        u = aliasvertusage;
        while(vertcount--)
        {
@@ -869,10 +777,9 @@ void ZymoticCalcNormals(int vertcount, int shadercount, int *renderlist)
 
 void R_DrawZymoticModelMeshCallback (const void *calldata1, int calldata2)
 {
-       float fog, colorscale;
+       float fog, ifog, colorscale;
        vec3_t diff;
        int i, *renderlist, *elements;
-       zymtype1header_t *m;
        rtexture_t *texture;
        rmeshstate_t mstate;
        const entity_render_t *ent = calldata1;
@@ -882,13 +789,12 @@ void R_DrawZymoticModelMeshCallback (const void *calldata1, int calldata2)
        R_Mesh_Matrix(&ent->matrix);
 
        // find the vertex index list and texture
-       m = ent->model->zymdata_header;
-       renderlist = (int *)(m->lump_render.start + (int) m);
+       renderlist = ent->model->zymdata_renderlist;
        for (i = 0;i < shadernum;i++)
                renderlist += renderlist[0] * 3 + 1;
-       texture = ((rtexture_t **)(m->lump_shaders.start + (int) m))[shadernum];
+       texture = ent->model->zymdata_textures[shadernum];
 
-       numverts = m->numverts;
+       numverts = ent->model->zymnum_verts;
        numtriangles = *renderlist++;
        elements = renderlist;
        R_Mesh_ResizeCheck(numverts);
@@ -909,12 +815,7 @@ void R_DrawZymoticModelMeshCallback (const void *calldata1, int calldata2)
                // 1. render model as normal, scaled by inverse of fog alpha (darkens it)
                // 2. render fog as additive
        }
-
-       ZymoticLerpBones(m->numbones, (zymbonematrix *)(m->lump_poses.start + (int) m), ent->frameblend, (zymbone_t *)(m->lump_bones.start + (int) m));
-       ZymoticTransformVerts(numverts, (int *)(m->lump_vertbonecounts.start + (int) m), (zymvertex_t *)(m->lump_verts.start + (int) m));
-       ZymoticCalcNormals(numverts, m->numshaders, (int *)(m->lump_render.start + (int) m));
-
-       R_LightModel(ent, numverts, 1 - fog, 1 - fog, 1 - fog, false);
+       ifog = 1 - fog;
 
        memset(&mstate, 0, sizeof(mstate));
        if (ent->effects & EF_ADDITIVE)
@@ -940,13 +841,14 @@ void R_DrawZymoticModelMeshCallback (const void *calldata1, int calldata2)
        }
        mstate.tex[0] = R_GetTexture(texture);
        R_Mesh_State(&mstate);
-
-       c_alias_polys += numtriangles;
-       memcpy(varray_vertex, aliasvert, numverts * sizeof(float[4]));
-       R_ModulateColors(aliasvertcolor, varray_color, numverts, colorscale, colorscale, colorscale);
-       memcpy(varray_texcoord[0], (float *)(m->lump_texcoords.start + (int) m), numverts * sizeof(float[2]));
+       ZymoticLerpBones(ent->model->zymnum_bones, (zymbonematrix *) ent->model->zymdata_poses, ent->frameblend, ent->model->zymdata_bones);
+       ZymoticTransformVerts(numverts, varray_vertex, ent->model->zymdata_vertbonecounts, ent->model->zymdata_verts);
+       ZymoticCalcNormals(numverts, varray_vertex, aliasvert_normals, ent->model->zymnum_shaders, ent->model->zymdata_renderlist);
+       memcpy(varray_texcoord[0], ent->model->zymdata_texcoords, ent->model->zymnum_verts * sizeof(float[4]));
        GL_UseColorArray();
+       R_LightModel(ent, numverts, varray_vertex, aliasvert_normals, varray_color, ifog * colorscale, ifog * colorscale, ifog * colorscale, false);
        R_Mesh_Draw(numverts, numtriangles, elements);
+       c_alias_polys += numtriangles;
 
        if (fog)
        {
@@ -956,46 +858,41 @@ void R_DrawZymoticModelMeshCallback (const void *calldata1, int calldata2)
                // FIXME: need alpha mask for fogging...
                //mstate.tex[0] = R_GetTexture(texture);
                R_Mesh_State(&mstate);
-
-               c_alias_polys += numtriangles;
-               memcpy(varray_vertex, aliasvert, numverts * sizeof(float[4]));
-               //memcpy(mesh_texcoord[0], (float *)(m->lump_texcoords.start + (int) m), numverts * sizeof(float[2]));
                GL_Color(fogcolor[0] * r_colorscale, fogcolor[1] * r_colorscale, fogcolor[2] * r_colorscale, ent->alpha * fog);
                R_Mesh_Draw(numverts, numtriangles, elements);
+               c_alias_polys += numtriangles;
        }
 }
 
-void R_DrawZymoticModel (entity_render_t *ent)
+void R_Model_Zymotic_Draw(entity_render_t *ent)
 {
        int i;
-       zymtype1header_t *m;
-       rtexture_t *texture;
 
        if (ent->alpha < (1.0f / 64.0f))
                return; // basically completely transparent
 
        c_models++;
 
-       m = ent->model->zymdata_header;
-       for (i = 0;i < m->numshaders;i++)
+       for (i = 0;i < ent->model->zymnum_shaders;i++)
        {
-               texture = ((rtexture_t **)(m->lump_shaders.start + (int) m))[i];
-               if (ent->effects & EF_ADDITIVE || ent->alpha != 1.0 || R_TextureHasAlpha(texture))
+               if (ent->effects & EF_ADDITIVE || ent->alpha != 1.0 || R_TextureHasAlpha(ent->model->zymdata_textures[i]))
                        R_MeshQueue_AddTransparent(ent->origin, R_DrawZymoticModelMeshCallback, ent, i);
                else
                        R_DrawZymoticModelMeshCallback(ent, i);
        }
 }
 
-void R_DrawQ1Q2AliasModel(entity_render_t *ent)
+void R_Model_Zymotic_DrawFakeShadow(entity_render_t *ent)
 {
-       if (ent->alpha < (1.0f / 64.0f))
-               return; // basically completely transparent
+       // FIXME
+}
 
-       c_models++;
+void R_Model_Zymotic_DrawLight(entity_render_t *ent, vec3_t relativelightorigin, float lightradius2, float lightdistbias, float lightsubtract, float *lightcolor)
+{
+       // FIXME
+}
 
-       if (ent->effects & EF_ADDITIVE || ent->alpha != 1.0 || R_FetchSkinFrame(ent)->fog != NULL)
-               R_MeshQueue_AddTransparent(ent->origin, R_DrawQ1Q2AliasModelCallback, ent, 0);
-       else
-               R_DrawQ1Q2AliasModelCallback(ent, 0);
+void R_Model_Zymotic_DrawOntoLight(entity_render_t *ent)
+{
+       // FIXME
 }