/* Copyright (C) 1996-1997 Id Software, Inc. Copyright (C) 2007 Peter Mackay and Chris Swindle. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // r_surf.c: surface-related refresh code #include #include extern "C" { #include "../quakedef.h" } #include "lightmaps.h" #include "clipping.hpp" using namespace quake; int skytexturenum; /* #ifdef NORMAL_MODEL #define LIGHTMAP_BYTES 4 // 1 or 4, used to be 1 #define MAX_LIGHTMAPS 16 // used to be 64, reduced to fit under 2MB or else crashes psp if lightmap bytes is 4 #endif #ifdef SLIM_MODEL #define LIGHTMAP_BYTES 4 // 1 or 4, used to be 1 #define MAX_LIGHTMAPS 28 // used to be 64, reduced to fit under 2MB or else crashes psp if lightmap bytes is 4 //#define LIGHTMAP_BYTES 3 // 1 or 4, used to be 1 //#define MAX_LIGHTMAPS 37 // used to be 64, reduced to fit under 2MB or else crashes psp if lightmap bytes is 4 #endif */ #define BLOCK_WIDTH 128 #define BLOCK_HEIGHT 128 int lightmap_textures; //unsigned blocklights[18*18]; unsigned blocklights[BLOCK_WIDTH*BLOCK_HEIGHT*3]; // LordHavoc: .lit support (*3 for RGB) int active_lightmaps; typedef struct glRect_s { unsigned char l,t,w,h; } glRect_t; ////////////////////////////////////////////////////////////////////////////// // For none .lit maps. ////////////////////////////////////////////////////////////////////////////// glpoly_t *lightmap_polys[64]; qboolean lightmap_modified[64]; glRect_t lightmap_rectchange[64]; int allocated[64][BLOCK_WIDTH]; // the lightmap texture data needs to be kept in // main memory so texsubimage can update properly byte lightmaps[1*64*BLOCK_WIDTH*BLOCK_HEIGHT]; int lightmap_index[64]; // For gl_texsort 0 msurface_t *skychain = NULL; msurface_t *waterchain = NULL; void R_RenderDynamicLightmaps (msurface_t *fa); void VID_SetPaletteLM(); // switch palette for lightmaps void VID_SetPaletteTX(); // switch palette for textures /* =============== R_AddDynamicLights =============== */ void R_AddDynamicLights (msurface_t *surf) { int lnum; int sd, td; float dist, rad, minlight; vec3_t impact, local; int s, t; int i; int smax, tmax; mtexinfo_t *tex; // LordHavoc: .lit support begin float cred, cgreen, cblue, brightness; unsigned *bl; // LordHavoc: .lit support end smax = (surf->extents[0]>>4)+1; tmax = (surf->extents[1]>>4)+1; tex = surf->texinfo; for (lnum=0 ; lnumdlightbits & (1<plane->normal) - surf->plane->dist; rad -= fabsf(dist); minlight = cl_dlights[lnum].minlight; if (rad < minlight) continue; minlight = rad - minlight; for (i=0 ; i<3 ; i++) { impact[i] = cl_dlights[lnum].origin[i] - surf->plane->normal[i]*dist; } local[0] = DotProduct (impact, tex->vecs[0]) + tex->vecs[0][3]; local[1] = DotProduct (impact, tex->vecs[1]) + tex->vecs[1][3]; local[0] -= surf->texturemins[0]; local[1] -= surf->texturemins[1]; // LordHavoc: .lit support begin bl = blocklights; cred = cl_dlights[lnum].color[0] * 256.0f; cgreen = cl_dlights[lnum].color[1] * 256.0f; cblue = cl_dlights[lnum].color[2] * 256.0f; // LordHavoc: .lit support end for (t = 0 ; t td) dist = sd + (td>>1); else dist = td + (sd>>1); if (dist < minlight) // LordHavoc: .lit support begin // blocklights[t*smax + s] += (rad - dist)*256; // LordHavoc: original code { brightness = rad - dist; bl[0] += (int) (brightness * cred); bl[1] += (int) (brightness * cgreen); bl[2] += (int) (brightness * cblue); } bl += 3; // LordHavoc: .lit support end } } } } /* =============== R_BuildLightMap 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, r, s, q; int i, j, size; byte *lightmap; unsigned scale; int maps; unsigned *bl; unsigned *blcr, *blcg, *blcb; surf->cached_dlight = (surf->dlightframe == r_framecount) ? qtrue : qfalse; smax = (surf->extents[0]>>4)+1; tmax = (surf->extents[1]>>4)+1; size = smax*tmax; lightmap = surf->samples; // set to full bright if no light data if (r_fullbright.value || !cl.worldmodel->lightdata) { // LordHavoc: .lit support begin bl = blocklights; for (i=0 ; istyles[maps] != 255 ; maps++) { scale = d_lightstylevalue[surf->styles[maps]]; surf->cached_light[maps] = scale; // 8.8 fraction // LordHavoc: .lit support begin bl = blocklights; for (i=0 ; idlightframe == r_framecount) R_AddDynamicLights (surf); // bound, invert, and shift store: switch (LIGHTMAP_BYTES) { case 4: stride -= (smax<<2); bl = blocklights; for (i=0 ; i>= 7; if (t > 255) t = 255; dest[3] = 255-t; dest += 4; */ // LordHavoc: positive lighting (would be 255-t if it were inverse like glquake was) t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; *dest++ = 255; // LordHavoc: .lit support end } } break; case 3: stride -= (smax<<2); bl = blocklights; for (i=0 ; i>= 7; if (t > 255) t = 255; dest[3] = 255-t; dest += 4; */ // LordHavoc: positive lighting (would be 255-t if it were inverse like glquake was) t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; *dest++ = 255; // LordHavoc: .lit support end } } break; /* stride -= smax * 3; bl = blocklights; for (i=0 ; i> 7;if (t > 255) t = 255;*dest++ = t; t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; t = *bl++ >> 7;if (t > 255) t = 255;*dest++ = t; } } break; */ case 2: bl = blocklights; for (i=0 ; i>= 7; // LordHavoc: original code t = ((bl[0] + bl[1] + bl[2]) * 85) >> 15; // LordHavoc: basically / 3, but faster and combined with >> 7 shift down, note: actual number would be 85.3333... bl += 3; // LordHavoc: .lit support end if (t > 255) t = 255; dest[j] = t; } } break; /* //stride -= (smax<<1); bl = blocklights; for (i=0 ; i>= 7; if (t > 255) t = 255; byte x = (t & 0x00f0) >> 4; dest[2*j] = x | (x << 4); dest[2*j+1] = x | (x << 4); //dest += 2; } } break; */ case 1: bl = blocklights; for (i=0 ; i>= 7; // LordHavoc: original code t = ((bl[0] + bl[1] + bl[2]) * 85) >> 15; // LordHavoc: basically / 3, but faster and combined with >> 7 shift down, note: actual number would be 85.3333... bl += 3; // LordHavoc: .lit support end if (t > 255) t = 255; dest[j] = t; } } break; default: Sys_Error ("Bad lightmap format"); } } /* =============== R_TextureAnimation Returns the proper texture for a given time and base texture =============== */ texture_t *R_TextureAnimation (texture_t *base) { int reletive; int count; if (currententity->frame) { if (base->alternate_anims) base = base->alternate_anims; } if (!base->anim_total) return base; reletive = (int)(cl.time*10) % base->anim_total; count = 0; while (base->anim_min > reletive || base->anim_max <= reletive) { base = base->anim_next; if (!base) Sys_Error ("R_TextureAnimation: broken cycle"); if (++count > 100) Sys_Error ("R_TextureAnimation: infinite cycle"); } return base; } /* ============================================================= BRUSH MODELS ============================================================= */ extern int solidskytexture; extern int alphaskytexture; extern float speedscale; // for top sky and bottom sky static inline void DrawGLPolyLM (glpoly_t *p) { // Does this poly need clipped? const int unclipped_vertex_count = p->numverts; const glvert_t* const unclipped_vertices = &(p->verts[p->numverts]); if (clipping::is_clipping_required( unclipped_vertices, unclipped_vertex_count)) { // Clip the polygon. const glvert_t* clipped_vertices; std::size_t clipped_vertex_count; clipping::clip( unclipped_vertices, unclipped_vertex_count, &clipped_vertices, &clipped_vertex_count); // Did we have any vertices left? if (clipped_vertex_count) { // Copy the vertices to the display list. const std::size_t buffer_size = clipped_vertex_count * sizeof(glvert_t); glvert_t* const display_list_vertices = static_cast(sceGuGetMemory(buffer_size)); memcpy(display_list_vertices, clipped_vertices, buffer_size); if (r_showtris.value) { sceGuDisable(GU_TEXTURE_2D); sceGuDisable(GU_BLEND); // Draw the clipped vertices. sceGumDrawArray( GU_LINE_STRIP, GU_TEXTURE_32BITF | GU_VERTEX_32BITF , clipped_vertex_count, 0, display_list_vertices); sceGuEnable(GU_TEXTURE_2D); sceGuEnable(GU_BLEND); } else { // Draw the clipped vertices. sceGuDrawArray( GU_TRIANGLE_FAN, GU_TEXTURE_32BITF | GU_VERTEX_32BITF , clipped_vertex_count, 0, display_list_vertices); } } } else { if (r_showtris.value) { sceGuDisable(GU_TEXTURE_2D); sceGuDisable(GU_BLEND); // Draw the lines directly. sceGumDrawArray( GU_LINE_STRIP, GU_TEXTURE_32BITF | GU_VERTEX_32BITF , unclipped_vertex_count, 0, unclipped_vertices); sceGuEnable(GU_TEXTURE_2D); sceGuEnable(GU_BLEND); } else { // Draw the poly directly. sceGuDrawArray( GU_TRIANGLE_FAN, GU_TEXTURE_32BITF | GU_VERTEX_32BITF , unclipped_vertex_count, 0, unclipped_vertices); } } } static inline void DrawGLPoly (glpoly_t *p) { // Does this poly need clipped? const int unclipped_vertex_count = p->numverts; const glvert_t* const unclipped_vertices = p->verts; if (clipping::is_clipping_required( unclipped_vertices, unclipped_vertex_count)) { // Clip the polygon. const glvert_t* clipped_vertices; std::size_t clipped_vertex_count; clipping::clip( unclipped_vertices, unclipped_vertex_count, &clipped_vertices, &clipped_vertex_count); // Did we have any vertices left? if (clipped_vertex_count) { // Copy the vertices to the display list. const std::size_t buffer_size = clipped_vertex_count * sizeof(glvert_t); glvert_t* const display_list_vertices = static_cast(sceGuGetMemory(buffer_size)); memcpy(display_list_vertices, clipped_vertices, buffer_size); // Draw the clipped vertices. sceGuDrawArray( GU_TRIANGLE_FAN, GU_TEXTURE_32BITF | GU_VERTEX_32BITF, clipped_vertex_count, 0, display_list_vertices); } } else { // Draw the poly directly. sceGuDrawArray( GU_TRIANGLE_FAN, GU_TEXTURE_32BITF | GU_VERTEX_32BITF, unclipped_vertex_count, 0, unclipped_vertices); } } static void DrawGLWaterPoly (glpoly_t *p) { #if 0 int i; const glvert_t *v; float s, t, os, ot; vec3_t nv; /*GL_DisableMultitexture(); glBegin (GL_TRIANGLE_FAN);*/ v = p->verts; for (i=0 ; inumverts ; i++, ++v) { /*glTexCoord2f (v[3], v[4]);*/ nv[0] = v->xyz[0] + 8*sinf(v->xyz[1]*0.05+realtime)*sinf(v->xyz[2]*0.05+realtime); nv[1] = v->xyz[1] + 8*sinf(v->xyz[0]*0.05+realtime)*sinf(v->xyz[2]*0.05+realtime); nv[2] = v->xyz[2]; /*glVertex3fv (nv);*/ } /*glEnd ();*/ #else DrawGLPoly(p); #endif } //static void DrawGLWaterPolyLightmap (glpoly_t *p) //{ // int i; // const glvert_t *v; // float s, t, os, ot; // vec3_t nv; /*GL_DisableMultitexture(); glBegin (GL_TRIANGLE_FAN);*/ // v = p->verts; // for (i=0 ; inumverts ; i++, ++v) // { /*glTexCoord2f (v[5], v[6]);*/ // nv[0] = v->xyz[0] + 8*sinf(v->xyz[1]*0.05+realtime)*sinf(v->xyz[2]*0.05+realtime); // nv[1] = v->xyz[1] + 8*sinf(v->xyz[0]*0.05+realtime)*sinf(v->xyz[2]*0.05+realtime); // nv[2] = v->xyz[2]; /*glVertex3fv (nv);*/ // } /*glEnd ();*/ //} /* ================ R_BlendLightmaps ================ */ static void R_BlendLightmaps (void) { int i; glpoly_t *p; if (r_fullbright.value) return; sceGuDepthMask(GU_TRUE); sceGuEnable(GU_BLEND); sceGuBlendFunc(GU_ADD, GU_DST_COLOR, GU_SRC_COLOR, 0, 0); VID_SetPaletteLM(); if (r_lightmap.value) sceGuDisable(GU_BLEND); for (i=0 ; ichain) { if (p->flags & SURF_UNDERWATER) DrawGLPolyLM(p); else DrawGLPolyLM(p); } } VID_SetPaletteTX(); sceGuDisable(GU_BLEND); sceGuBlendFunc(GU_ADD, GU_SRC_ALPHA, GU_ONE_MINUS_SRC_ALPHA, 0, 0); sceGuDepthMask (GU_FALSE); } /* ================ R_RenderBrushPoly ================ */ void R_RenderBrushPoly (msurface_t *fa) { texture_t *t; byte *base; int maps; glRect_t *theRect; int smax, tmax; unsigned *bl; c_brush_polys++; if (fa->flags & SURF_DRAWSKY) { // warp texture, no lightmaps EmitBothSkyLayers (fa); return; } t = R_TextureAnimation (fa->texinfo->texture); GL_Bind (t->gl_texturenum); if (fa->flags & SURF_DRAWTURB) { // warp texture, no lightmaps EmitWaterPolys (fa); return; } sceGuEnable(GU_ALPHA_TEST); sceGuAlphaFunc(GU_GREATER, 0x88, 0xff); if (fa->flags & SURF_UNDERWATER) DrawGLWaterPoly (fa->polys); // Don't draw texture and lightmaps. else if (!Q_strncmp(fa->texinfo->texture->name,"nodraw",6)) return; // Alpha blended textures, no lightmaps. else if ((!Q_strncmp(fa->texinfo->texture->name,"z",1)) || (!Q_strncmp(fa->texinfo->texture->name,"{",1))) { if (kurok) { sceGuDepthMask(GU_TRUE); sceGuDisable(GU_ALPHA_TEST); sceGuEnable(GU_BLEND); sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA); DrawGLPoly (fa->polys); sceGuDepthMask(GU_FALSE); sceGuEnable(GU_ALPHA_TEST); sceGuDisable(GU_BLEND); sceGuTexFunc(GU_TFX_MODULATE, GU_TCC_RGBA); return; } else DrawGLPoly (fa->polys); } // No lightmaps. else if (!Q_strncmp(fa->texinfo->texture->name,"light",5)) { if (kurok) { DrawGLPoly (fa->polys); return; } else DrawGLPoly (fa->polys); } // Surface uvmaps warp, like metal or glass effects. else if (!Q_strncmp(fa->texinfo->texture->name,"env",3)) { if (kurok) EmitReflectivePolys (fa); else DrawGLPoly (fa->polys); } // Surface uvmaps warp, like metal or glass effects + transparency. else if (!Q_strncmp(fa->texinfo->texture->name,"glass",5)) { if (r_glassalpha.value < 1) { if (kurok) { float alpha1 = r_glassalpha.value; float alpha2 = 1 - r_glassalpha.value; sceGuEnable (GU_BLEND); sceGuDepthMask(GU_TRUE); sceGuBlendFunc(GU_ADD, GU_FIX, GU_FIX, GU_COLOR(alpha1,alpha1,alpha1,alpha1), GU_COLOR(alpha2,alpha2,alpha2,alpha2)); EmitReflectivePolys (fa); sceGuBlendFunc(GU_ADD, GU_SRC_ALPHA, GU_ONE_MINUS_SRC_ALPHA, 0, 0); sceGuDepthMask(GU_FALSE); sceGuDisable (GU_BLEND); } else DrawGLPoly (fa->polys); } else { if (kurok) EmitReflectivePolys (fa); else DrawGLPoly (fa->polys); } } else DrawGLPoly (fa->polys); // add the poly to the proper lightmap chain fa->polys->chain = lightmap_polys[fa->lightmaptexturenum]; lightmap_polys[fa->lightmaptexturenum] = fa->polys; // check for lightmap modification for (maps = 0 ; maps < MAXLIGHTMAPS && fa->styles[maps] != 255 ; maps++) if (d_lightstylevalue[fa->styles[maps]] != fa->cached_light[maps]) goto dynamic; if (fa->dlightframe == r_framecount // dynamic this frame || fa->cached_dlight) // dynamic previously { dynamic: if (r_dynamic.value) { lightmap_modified[fa->lightmaptexturenum] = qtrue; theRect = &lightmap_rectchange[fa->lightmaptexturenum]; if (fa->light_t < theRect->t) { if (theRect->h) theRect->h += theRect->t - fa->light_t; theRect->t = fa->light_t; } if (fa->light_s < theRect->l) { if (theRect->w) theRect->w += theRect->l - fa->light_s; theRect->l = fa->light_s; } smax = (fa->extents[0]>>4)+1; tmax = (fa->extents[1]>>4)+1; if ((theRect->w + theRect->l) < (fa->light_s + smax)) theRect->w = (fa->light_s-theRect->l)+smax; if ((theRect->h + theRect->t) < (fa->light_t + tmax)) theRect->h = (fa->light_t-theRect->t)+tmax; base = lightmaps + fa->lightmaptexturenum*LIGHTMAP_BYTES*BLOCK_WIDTH*BLOCK_HEIGHT; base += fa->light_t * BLOCK_WIDTH * LIGHTMAP_BYTES + fa->light_s * LIGHTMAP_BYTES; R_BuildLightMap (fa, base, BLOCK_WIDTH*LIGHTMAP_BYTES); } } sceGuAlphaFunc(GU_GREATER, 0, 0xff); sceGuDisable(GU_ALPHA_TEST); } /* ================ R_RenderDynamicLightmaps Multitexture ================ */ void R_RenderDynamicLightmaps (msurface_t *fa) { // texture_t *t; byte *base; int maps; glRect_t *theRect; int smax, tmax; c_brush_polys++; if (fa->flags & ( SURF_DRAWSKY | SURF_DRAWTURB) ) return; fa->polys->chain = lightmap_polys[fa->lightmaptexturenum]; lightmap_polys[fa->lightmaptexturenum] = fa->polys; // check for lightmap modification for (maps = 0 ; maps < MAXLIGHTMAPS && fa->styles[maps] != 255 ; maps++) if (d_lightstylevalue[fa->styles[maps]] != fa->cached_light[maps]) goto dynamic; if (fa->dlightframe == r_framecount // dynamic this frame || fa->cached_dlight) // dynamic previously { dynamic: if (r_dynamic.value) { lightmap_modified[fa->lightmaptexturenum] = qtrue; theRect = &lightmap_rectchange[fa->lightmaptexturenum]; if (fa->light_t < theRect->t) { if (theRect->h) theRect->h += theRect->t - fa->light_t; theRect->t = fa->light_t; } if (fa->light_s < theRect->l) { if (theRect->w) theRect->w += theRect->l - fa->light_s; theRect->l = fa->light_s; } smax = (fa->extents[0]>>4)+1; tmax = (fa->extents[1]>>4)+1; if ((theRect->w + theRect->l) < (fa->light_s + smax)) theRect->w = (fa->light_s-theRect->l)+smax; if ((theRect->h + theRect->t) < (fa->light_t + tmax)) theRect->h = (fa->light_t-theRect->t)+tmax; base = lightmaps + fa->lightmaptexturenum*LIGHTMAP_BYTES*BLOCK_WIDTH*BLOCK_HEIGHT; base += fa->light_t * BLOCK_WIDTH * LIGHTMAP_BYTES + fa->light_s * LIGHTMAP_BYTES; R_BuildLightMap (fa, base, BLOCK_WIDTH*LIGHTMAP_BYTES); } } } /* ================ R_MirrorChain ================ */ void R_MirrorChain (msurface_t *s) { if (mirror) return; mirror = qtrue; mirror_plane = s->plane; } /* ================ R_DrawWaterSurfaces ================ */ void R_DrawWaterSurfaces (void) { int i; msurface_t *s; texture_t *t; if (r_wateralpha.value == 1.0) return; float alpha1 = r_wateralpha.value; float alpha2 = 1 - r_wateralpha.value; // // go back to the world matrix // sceGumMatrixMode(GU_VIEW); sceGumLoadMatrix(&r_world_matrix); sceGumUpdateMatrix(); sceGumMatrixMode(GU_MODEL); if (r_wateralpha.value < 1.0) { sceGuEnable (GU_BLEND); sceGuTexFunc(GU_TFX_REPLACE , GU_TCC_RGBA); sceGuBlendFunc(GU_ADD, GU_FIX, GU_FIX, GU_COLOR(alpha1,alpha1,alpha1,alpha1), GU_COLOR(alpha2,alpha2,alpha2,alpha2)); } { for (i=0 ; inumtextures ; i++) { t = cl.worldmodel->textures[i]; if (!t) continue; s = t->texturechain; if (!s) continue; if ( !(s->flags & SURF_DRAWTURB ) ) continue; // set modulate mode explicitly GL_Bind (t->gl_texturenum); for ( ; s ; s=s->texturechain) EmitWaterPolys (s); t->texturechain = NULL; } } if (r_wateralpha.value < 1.0) { sceGuTexFunc(GU_TFX_REPLACE, GU_TCC_RGBA); sceGuBlendFunc(GU_ADD, GU_SRC_ALPHA, GU_ONE_MINUS_SRC_ALPHA, 0, 0); sceGuDisable (GU_BLEND); } } /* ================ DrawTextureChains ================ */ static void DrawTextureChains (void) { int i; msurface_t *s; texture_t *t; /* if (!gl_texsort.value) { GL_DisableMultitexture(); if (skychain) { R_DrawSkyChain(skychain); skychain = NULL; } return; } */ for (i=0 ; inumtextures ; i++) { t = cl.worldmodel->textures[i]; if (!t) continue; s = t->texturechain; if (!s) continue; if (i == skytexturenum) R_DrawSkyChain (s); else if (i == mirrortexturenum && r_mirroralpha.value != 1.0) { R_MirrorChain (s); continue; } else { if ((s->flags & SURF_DRAWTURB) && r_wateralpha.value != 1.0) continue; // draw translucent water later for ( ; s ; s=s->texturechain) R_RenderBrushPoly (s); } t->texturechain = NULL; } } /* ================= R_DrawBrushModel ================= */ void R_DrawBrushModel (entity_t *e) { int k;//j, k; vec3_t mins, maxs; int i;//, numsurfaces; msurface_t *psurf; float dot; mplane_t *pplane; model_t *clmodel; qboolean rotated; currententity = e; currenttexture = -1; clmodel = e->model; if (e->angles[0] || e->angles[1] || e->angles[2]) { rotated = qtrue; for (i=0 ; i<3 ; i++) { mins[i] = (e->origin[i] - clmodel->radius); maxs[i] = (e->origin[i] + clmodel->radius); } } else { rotated = qfalse; VectorAdd (e->origin, clmodel->mins, mins); VectorAdd (e->origin, clmodel->maxs, maxs); } if (R_CullBox (mins, maxs)) return; memset (lightmap_polys, 0, sizeof(lightmap_polys)); VectorSubtract (r_refdef.vieworg, e->origin, modelorg); if (rotated) { vec3_t temp; vec3_t forward, right, up; VectorCopy (modelorg, temp); AngleVectors (e->angles, forward, right, up); modelorg[0] = DotProduct (temp, forward); modelorg[1] = -DotProduct (temp, right); modelorg[2] = DotProduct (temp, up); } psurf = &clmodel->surfaces[clmodel->firstmodelsurface]; // calculate dynamic lighting for bmodel if it's not an // instanced model if (clmodel->firstmodelsurface != 0/* && !gl_flashblend.value*/) { for (k=0 ; knodes + clmodel->hulls[0].firstclipnode); } } sceGumPushMatrix(); e->angles[0] = -e->angles[0]; // stupid quake bug R_RotateForEntity (e); clipping::begin_brush_model(); e->angles[0] = -e->angles[0]; // stupid quake bug // // draw texture // for (i=0 ; inummodelsurfaces ; i++, psurf++) { // find which side of the node we are on pplane = psurf->plane; dot = DotProduct (modelorg, pplane->normal) - pplane->dist; // draw the polygon if (((psurf->flags & SURF_PLANEBACK) && (dot < -BACKFACE_EPSILON)) || (!(psurf->flags & SURF_PLANEBACK) && (dot > BACKFACE_EPSILON))) { R_RenderBrushPoly (psurf); } } R_BlendLightmaps (); clipping::end_brush_model(); sceGumPopMatrix(); sceGumUpdateMatrix(); } /* ============================================================= WORLD MODEL ============================================================= */ /* ================ R_RecursiveWorldNode ================ */ void R_RecursiveWorldNode (mnode_t *node) { int c, side;//, i, *pindex; // vec3_t acceptpt, rejectpt; mplane_t *plane; msurface_t *surf, **mark; mleaf_t *pleaf; float dot;//, d; // vec3_t mins, maxs; if (node->contents == CONTENTS_SOLID) return; // solid if (node->visframe != r_visframecount) return; if (R_CullBox (node->minmaxs, node->minmaxs+3)) return; // if a leaf node, draw stuff if (node->contents < 0) { pleaf = (mleaf_t *)node; mark = pleaf->firstmarksurface; c = pleaf->nummarksurfaces; if (c) { do { (*mark)->visframe = r_framecount; mark++; } while (--c); } // deal with model fragments in this leaf if (pleaf->efrags) R_StoreEfrags (&pleaf->efrags); return; } // node is just a decision point, so go down the apropriate sides // find which side of the node we are on plane = node->plane; switch (plane->type) { case PLANE_X: dot = modelorg[0] - plane->dist; break; case PLANE_Y: dot = modelorg[1] - plane->dist; break; case PLANE_Z: dot = modelorg[2] - plane->dist; break; default: dot = DotProduct (modelorg, plane->normal) - plane->dist; break; } if (dot >= 0) side = 0; else side = 1; // recurse down the children, front side first R_RecursiveWorldNode (node->children[side]); // draw stuff c = node->numsurfaces; if (c) { surf = cl.worldmodel->surfaces + node->firstsurface; if (dot < 0 -BACKFACE_EPSILON) side = SURF_PLANEBACK; else if (dot > BACKFACE_EPSILON) side = 0; { for ( ; c ; c--, surf++) { if (surf->visframe != r_framecount) continue; // don't backface underwater surfaces, because they warp if ( !(surf->flags & SURF_UNDERWATER) && ( (dot < 0) ^ !!(surf->flags & SURF_PLANEBACK)) ) continue; // wrong side // if sorting by texture, just store it out /*if (gl_texsort.value)*/ { if (!mirror || surf->texinfo->texture != cl.worldmodel->textures[mirrortexturenum]) { surf->texturechain = surf->texinfo->texture->texturechain; surf->texinfo->texture->texturechain = surf; } }/* else if (surf->flags & SURF_DRAWSKY) { surf->texturechain = skychain; skychain = surf; } else if (surf->flags & SURF_DRAWTURB) { surf->texturechain = waterchain; waterchain = surf; } else R_DrawSequentialPoly (surf);*/ } } } // recurse down the back side R_RecursiveWorldNode (node->children[!side]); } extern char skybox_name[32]; /* ============= R_DrawWorld ============= */ void R_DrawWorld (void) { entity_t ent; // int i; memset (&ent, 0, sizeof(ent)); ent.model = cl.worldmodel; VectorCopy (r_refdef.vieworg, modelorg); currententity = &ent; currenttexture = -1; /*glColor3f (1,1,1);*/ memset (lightmap_polys, 0, sizeof(lightmap_polys)); //#ifdef QUAKE2 R_ClearSkyBox (); //#endif R_RecursiveWorldNode (cl.worldmodel->nodes); DrawTextureChains (); R_BlendLightmaps (); //#ifdef QUAKE2 if (skybox_name[0]) R_DrawSkyBox (); // if (r_refdef.fog_end > 0) // R_DrawSkyBoxFog (); //#endif } /* =============== R_MarkLeaves =============== */ void R_MarkLeaves (void) { byte *vis; mnode_t *node; int i; byte solid[4096]; if (r_oldviewleaf == r_viewleaf && !r_novis.value) return; if (mirror) return; r_visframecount++; r_oldviewleaf = r_viewleaf; if (r_novis.value) { vis = solid; memset (solid, 0xff, (cl.worldmodel->numleafs+7)>>3); } else vis = Mod_LeafPVS (r_viewleaf, cl.worldmodel); for (i=0 ; inumleafs ; i++) { if (vis[i>>3] & (1<<(i&7))) { node = (mnode_t *)&cl.worldmodel->leafs[i+1]; do { if (node->visframe == r_visframecount) break; node->visframe = r_visframecount; node = node->parent; } while (node); } } } /* ============================================================================= LIGHTMAP ALLOCATION ============================================================================= */ // returns a texture number and the position inside it static int AllocBlock (int w, int h, int *x, int *y) { int i, j; int best, best2; // int bestx; int texnum; for (texnum=0 ; texnum= best) break; if (allocated[texnum][i+j] > best2) best2 = allocated[texnum][i+j]; } if (j == w) { // this is a valid spot *x = i; *y = best = best2; } } if (best + h > BLOCK_HEIGHT) continue; for (i=0 ; iedges; lnumverts = fa->numedges; vertpage = 0; // // draw texture // poly = static_cast(Hunk_Alloc (sizeof(glpoly_t) + (lnumverts * 2 - 1) * sizeof(glvert_t))); poly->next = fa->polys; poly->flags = fa->flags; fa->polys = poly; poly->numverts = lnumverts; for (i=0 ; isurfedges[fa->firstedge + i]; if (lindex > 0) { r_pedge = &pedges[lindex]; vec = r_pcurrentvertbase[r_pedge->v[0]].position; } else { r_pedge = &pedges[-lindex]; vec = r_pcurrentvertbase[r_pedge->v[1]].position; } s = DotProduct (vec, fa->texinfo->vecs[0]) + fa->texinfo->vecs[0][3]; s /= fa->texinfo->texture->width; t = DotProduct (vec, fa->texinfo->vecs[1]) + fa->texinfo->vecs[1][3]; t /= fa->texinfo->texture->height; VectorCopy(vec, poly->verts[i].xyz); poly->verts[i].st[0] = s; poly->verts[i].st[1] = t; // // lightmap texture coordinates // s = DotProduct (vec, fa->texinfo->vecs[0]) + fa->texinfo->vecs[0][3]; s -= fa->texturemins[0]; s += fa->light_s*16; s += 8; s /= BLOCK_WIDTH*16; //fa->texinfo->texture->width; t = DotProduct (vec, fa->texinfo->vecs[1]) + fa->texinfo->vecs[1][3]; t -= fa->texturemins[1]; t += fa->light_t*16; t += 8; t /= BLOCK_HEIGHT*16; //fa->texinfo->texture->height; VectorCopy(vec, poly->verts[i + lnumverts].xyz); poly->verts[i + lnumverts].st[0] = s; poly->verts[i + lnumverts].st[1] = t; } // // remove co-linear points - Ed // // Colinear point removal-start int lm_vert_offset = lnumverts; if (!gl_keeptjunctions.value && !(fa->flags & SURF_UNDERWATER) ) { int numRemoved = 0; int j; for (i = 0 ; i < lnumverts ; ++i) { vec3_t v1, v2; const glvert_t *prev, *this_, *next; // float f; prev = &poly->verts[(i + lnumverts - 1) % lnumverts]; this_ = &poly->verts[i]; next = &poly->verts[(i + 1) % lnumverts]; VectorSubtract( this_->xyz, prev->xyz, v1 ); VectorNormalize( v1 ); VectorSubtract( next->xyz, prev->xyz, v2 ); VectorNormalize( v2 ); // skip co-linear points #define COLINEAR_EPSILON 0.001 if ((fabsf( v1[0] - v2[0] ) <= COLINEAR_EPSILON) && (fabsf( v1[1] - v2[1] ) <= COLINEAR_EPSILON) && (fabsf( v1[2] - v2[2] ) <= COLINEAR_EPSILON)) { for (j = i + 1; j < lnumverts; ++j) { poly->verts[j - 1] = poly->verts[j]; poly->verts[lm_vert_offset + j - 1] = poly->verts[lm_vert_offset+j]; } --lnumverts; ++nColinElim; numRemoved++; // retry next vertex next time, which is now current vertex --i; } } if (numRemoved > 0) { for (j = lm_vert_offset; j < lm_vert_offset + lnumverts; j++) { poly->verts[j - numRemoved] = poly->verts[j]; } } } // Colinear point removal-end poly->numverts = lnumverts; } /* ======================== GL_CreateSurfaceLightmap ======================== */ static void GL_CreateSurfaceLightmap (msurface_t *surf) { int smax, tmax;//, s, t, l, i; byte *base; if (surf->flags & (SURF_DRAWSKY|SURF_DRAWTURB)) return; smax = (surf->extents[0]>>4)+1; tmax = (surf->extents[1]>>4)+1; surf->lightmaptexturenum = AllocBlock (smax, tmax, &surf->light_s, &surf->light_t); base = lightmaps + surf->lightmaptexturenum*LIGHTMAP_BYTES*BLOCK_WIDTH*BLOCK_HEIGHT; base += (surf->light_t * BLOCK_WIDTH + surf->light_s) * LIGHTMAP_BYTES; R_BuildLightMap (surf, base, BLOCK_WIDTH*LIGHTMAP_BYTES); } /* ================== GL_BuildLightmaps Builds the lightmap texture with all the surfaces from all brush models ================== */ void GL_BuildLightmaps (void) { int i, j; model_t *m; // Con_Printf ("Lightmap surfaces = %i\n", MAX_LIGHTMAPS); // Con_Printf ("Lightmap bytes = %i\n", LIGHTMAP_BYTES); memset (allocated, 0, sizeof(allocated)); r_framecount = 1; // no dlightcache if (!lightmap_textures) { lightmap_textures = 0; } for (j=1 ; jname[0] == '*') continue; r_pcurrentvertbase = m->vertexes; currentmodel = m; for (i=0 ; inumsurfaces ; i++) { GL_CreateSurfaceLightmap (m->surfaces + i); if ( m->surfaces[i].flags & SURF_DRAWTURB ) continue; #ifndef QUAKE2 if ( m->surfaces[i].flags & SURF_DRAWSKY ) continue; #endif BuildSurfaceDisplayList (m->surfaces + i); } } // // upload all lightmaps that were filled // char lm_name[16]; for (i=0 ; i