2001-08-25 02:47:11 +00:00
|
|
|
/*
|
|
|
|
sw32_r_bsp.c
|
|
|
|
|
|
|
|
(description)
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
#define NH_DEFINE
|
|
|
|
#include "namehack.h"
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
#include <math.h>
|
2013-01-10 12:54:37 +00:00
|
|
|
#include <stdlib.h>
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2013-01-22 05:09:41 +00:00
|
|
|
#include "qfalloca.h"
|
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
#include "QF/render.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "r_internal.h"
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// current entity info
|
2012-02-22 07:32:34 +00:00
|
|
|
qboolean sw32_insubmodel;
|
|
|
|
vec3_t sw32_r_worldmodelorg;
|
2012-02-18 05:34:14 +00:00
|
|
|
static float entity_rotation[3][3];
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
int sw32_r_currentbkey;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
typedef enum { touchessolid, drawnode, nodrawnode } solidstate_t;
|
|
|
|
|
|
|
|
#define MAX_BMODEL_VERTS 500 // 6K
|
|
|
|
#define MAX_BMODEL_EDGES 1000 // 12K
|
|
|
|
|
|
|
|
static mvertex_t *pbverts;
|
|
|
|
static bedge_t *pbedges;
|
|
|
|
static int numbverts, numbedges;
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
int sw32_numbtofpolys;
|
2012-02-21 05:10:20 +00:00
|
|
|
static btofpoly_t *pbtofpolys;
|
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
static mvertex_t *pfrontenter, *pfrontexit;
|
|
|
|
|
|
|
|
static qboolean makeclippededge;
|
|
|
|
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-08-25 02:47:11 +00:00
|
|
|
R_EntityRotate (vec3_t vec)
|
|
|
|
{
|
|
|
|
vec3_t tvec;
|
|
|
|
|
|
|
|
VectorCopy (vec, tvec);
|
|
|
|
vec[0] = DotProduct (entity_rotation[0], tvec);
|
|
|
|
vec[1] = DotProduct (entity_rotation[1], tvec);
|
|
|
|
vec[2] = DotProduct (entity_rotation[2], tvec);
|
|
|
|
}
|
|
|
|
|
2001-08-28 20:51:51 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_R_RotateBmodel (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
2011-12-15 03:06:03 +00:00
|
|
|
VectorCopy (currententity->transform + 0, entity_rotation[0]);
|
|
|
|
VectorCopy (currententity->transform + 4, entity_rotation[1]);
|
|
|
|
VectorCopy (currententity->transform + 8, entity_rotation[2]);
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// rotate modelorg and the transformation matrix
|
|
|
|
R_EntityRotate (modelorg);
|
|
|
|
R_EntityRotate (vpn);
|
|
|
|
R_EntityRotate (vright);
|
|
|
|
R_EntityRotate (vup);
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_R_TransformFrustum ();
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
|
|
|
|
2001-08-28 20:51:51 +00:00
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-08-25 02:47:11 +00:00
|
|
|
R_RecursiveClipBPoly (bedge_t *pedges, mnode_t *pnode, msurface_t *psurf)
|
|
|
|
{
|
|
|
|
bedge_t *psideedges[2], *pnextedge, *ptedge;
|
|
|
|
int i, side, lastside;
|
|
|
|
float dist, frac, lastdist;
|
2011-11-14 02:18:22 +00:00
|
|
|
plane_t *splitplane, tplane;
|
2001-08-25 02:47:11 +00:00
|
|
|
mvertex_t *pvert, *plastvert, *ptvert;
|
|
|
|
mnode_t *pn;
|
|
|
|
|
|
|
|
psideedges[0] = psideedges[1] = NULL;
|
|
|
|
|
|
|
|
makeclippededge = false;
|
|
|
|
|
|
|
|
// transform the BSP plane into model space
|
|
|
|
// FIXME: cache these?
|
|
|
|
splitplane = pnode->plane;
|
|
|
|
tplane.dist = splitplane->dist -
|
|
|
|
DotProduct (r_entorigin, splitplane->normal);
|
|
|
|
tplane.normal[0] = DotProduct (entity_rotation[0], splitplane->normal);
|
|
|
|
tplane.normal[1] = DotProduct (entity_rotation[1], splitplane->normal);
|
|
|
|
tplane.normal[2] = DotProduct (entity_rotation[2], splitplane->normal);
|
|
|
|
|
|
|
|
// clip edges to BSP plane
|
|
|
|
for (; pedges; pedges = pnextedge) {
|
|
|
|
pnextedge = pedges->pnext;
|
|
|
|
|
|
|
|
// set the status for the last point as the previous point
|
|
|
|
// FIXME: cache this stuff somehow?
|
|
|
|
plastvert = pedges->v[0];
|
|
|
|
lastdist = DotProduct (plastvert->position, tplane.normal) -
|
|
|
|
tplane.dist;
|
|
|
|
|
|
|
|
if (lastdist > 0)
|
|
|
|
lastside = 0;
|
|
|
|
else
|
|
|
|
lastside = 1;
|
|
|
|
|
|
|
|
pvert = pedges->v[1];
|
|
|
|
|
|
|
|
dist = DotProduct (pvert->position, tplane.normal) - tplane.dist;
|
|
|
|
|
|
|
|
if (dist > 0)
|
|
|
|
side = 0;
|
|
|
|
else
|
|
|
|
side = 1;
|
|
|
|
|
|
|
|
if (side != lastside) {
|
|
|
|
// clipped
|
|
|
|
if (numbverts >= MAX_BMODEL_VERTS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// generate the clipped vertex
|
|
|
|
frac = lastdist / (lastdist - dist);
|
|
|
|
ptvert = &pbverts[numbverts++];
|
|
|
|
ptvert->position[0] = plastvert->position[0] +
|
|
|
|
frac * (pvert->position[0] - plastvert->position[0]);
|
|
|
|
ptvert->position[1] = plastvert->position[1] +
|
|
|
|
frac * (pvert->position[1] - plastvert->position[1]);
|
|
|
|
ptvert->position[2] = plastvert->position[2] +
|
|
|
|
frac * (pvert->position[2] - plastvert->position[2]);
|
|
|
|
|
|
|
|
// split into two edges, one on each side, and remember entering
|
|
|
|
// and exiting points
|
|
|
|
// FIXME: share the clip edge by having a winding direction flag?
|
|
|
|
if (numbedges >= (MAX_BMODEL_EDGES - 1)) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Out of edges for bmodel\n");
|
2001-08-25 02:47:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptedge = &pbedges[numbedges];
|
|
|
|
ptedge->pnext = psideedges[lastside];
|
|
|
|
psideedges[lastside] = ptedge;
|
|
|
|
ptedge->v[0] = plastvert;
|
|
|
|
ptedge->v[1] = ptvert;
|
|
|
|
|
|
|
|
ptedge = &pbedges[numbedges + 1];
|
|
|
|
ptedge->pnext = psideedges[side];
|
|
|
|
psideedges[side] = ptedge;
|
|
|
|
ptedge->v[0] = ptvert;
|
|
|
|
ptedge->v[1] = pvert;
|
|
|
|
|
|
|
|
numbedges += 2;
|
|
|
|
|
|
|
|
if (side == 0) {
|
|
|
|
// entering for front, exiting for back
|
|
|
|
pfrontenter = ptvert;
|
|
|
|
makeclippededge = true;
|
|
|
|
} else {
|
|
|
|
pfrontexit = ptvert;
|
|
|
|
makeclippededge = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// add the edge to the appropriate side
|
|
|
|
pedges->pnext = psideedges[side];
|
|
|
|
psideedges[side] = pedges;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if anything was clipped, reconstitute and add the edges along the clip
|
|
|
|
// plane to both sides (but in opposite directions)
|
|
|
|
if (makeclippededge) {
|
|
|
|
if (numbedges >= (MAX_BMODEL_EDGES - 2)) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Out of edges for bmodel\n");
|
2001-08-25 02:47:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptedge = &pbedges[numbedges];
|
|
|
|
ptedge->pnext = psideedges[0];
|
|
|
|
psideedges[0] = ptedge;
|
|
|
|
ptedge->v[0] = pfrontexit;
|
|
|
|
ptedge->v[1] = pfrontenter;
|
|
|
|
|
|
|
|
ptedge = &pbedges[numbedges + 1];
|
|
|
|
ptedge->pnext = psideedges[1];
|
|
|
|
psideedges[1] = ptedge;
|
|
|
|
ptedge->v[0] = pfrontenter;
|
|
|
|
ptedge->v[1] = pfrontexit;
|
|
|
|
|
|
|
|
numbedges += 2;
|
|
|
|
}
|
|
|
|
// draw or recurse further
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
if (psideedges[i]) {
|
2001-08-28 20:51:51 +00:00
|
|
|
// draw if we've reached a non-solid leaf, done if all that's left
|
|
|
|
// is a solid leaf, and continue down the tree if it's not a leaf
|
2001-08-25 02:47:11 +00:00
|
|
|
pn = pnode->children[i];
|
|
|
|
|
2001-08-28 20:51:51 +00:00
|
|
|
// we're done with this branch if the node or leaf isn't in the PVS
|
2001-08-25 02:47:11 +00:00
|
|
|
if (pn->visframe == r_visframecount) {
|
|
|
|
if (pn->contents < 0) {
|
|
|
|
if (pn->contents != CONTENTS_SOLID) {
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_r_currentbkey = ((mleaf_t *) pn)->key;
|
|
|
|
sw32_R_RenderBmodelFace (psideedges[i], psurf);
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
R_RecursiveClipBPoly (psideedges[i], pnode->children[i],
|
|
|
|
psurf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-28 20:51:51 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
void
|
2021-02-01 10:31:11 +00:00
|
|
|
sw32_R_DrawSolidClippedSubmodelPolygons (model_t *model)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
int i, j, lindex;
|
|
|
|
vec_t dot;
|
|
|
|
msurface_t *psurf;
|
|
|
|
int numsurfaces;
|
2011-11-14 02:18:22 +00:00
|
|
|
plane_t *pplane;
|
2001-08-25 02:47:11 +00:00
|
|
|
mvertex_t bverts[MAX_BMODEL_VERTS];
|
|
|
|
bedge_t bedges[MAX_BMODEL_EDGES], *pbedge;
|
|
|
|
medge_t *pedge, *pedges;
|
2021-02-01 10:31:11 +00:00
|
|
|
mod_brush_t *brush = &model->brush;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// FIXME: use bounding-box-based frustum clipping info?
|
|
|
|
|
2021-02-01 10:31:11 +00:00
|
|
|
psurf = &brush->surfaces[brush->firstmodelsurface];
|
|
|
|
numsurfaces = brush->nummodelsurfaces;
|
|
|
|
pedges = brush->edges;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
for (i = 0; i < numsurfaces; 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))) {
|
|
|
|
// FIXME: use bounding-box-based frustum clipping info?
|
|
|
|
|
|
|
|
// copy the edges to bedges, flipping if necessary so always
|
|
|
|
// clockwise winding
|
2001-08-28 20:51:51 +00:00
|
|
|
// FIXME: if edges and vertices get caches, these assignments must
|
|
|
|
// move outside the loop, and overflow checking must be done here
|
2001-08-25 02:47:11 +00:00
|
|
|
pbverts = bverts;
|
|
|
|
pbedges = bedges;
|
|
|
|
numbverts = numbedges = 0;
|
|
|
|
|
|
|
|
if (psurf->numedges > 0) {
|
|
|
|
pbedge = &bedges[numbedges];
|
|
|
|
numbedges += psurf->numedges;
|
|
|
|
|
|
|
|
for (j = 0; j < psurf->numedges; j++) {
|
2021-02-01 10:31:11 +00:00
|
|
|
lindex = brush->surfedges[psurf->firstedge + j];
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
if (lindex > 0) {
|
|
|
|
pedge = &pedges[lindex];
|
|
|
|
pbedge[j].v[0] = &r_pcurrentvertbase[pedge->v[0]];
|
|
|
|
pbedge[j].v[1] = &r_pcurrentvertbase[pedge->v[1]];
|
|
|
|
} else {
|
|
|
|
lindex = -lindex;
|
|
|
|
pedge = &pedges[lindex];
|
|
|
|
pbedge[j].v[0] = &r_pcurrentvertbase[pedge->v[1]];
|
|
|
|
pbedge[j].v[1] = &r_pcurrentvertbase[pedge->v[0]];
|
|
|
|
}
|
|
|
|
|
|
|
|
pbedge[j].pnext = &pbedge[j + 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
pbedge[j - 1].pnext = NULL; // mark end of edges
|
|
|
|
|
|
|
|
R_RecursiveClipBPoly (pbedge, currententity->topnode, psurf);
|
|
|
|
} else {
|
|
|
|
Sys_Error ("no edges in bmodel");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-08-28 20:51:51 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
void
|
2021-02-01 10:31:11 +00:00
|
|
|
sw32_R_DrawSubmodelPolygons (model_t *model, int clipflags)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
vec_t dot;
|
|
|
|
msurface_t *psurf;
|
|
|
|
int numsurfaces;
|
2011-11-14 02:18:22 +00:00
|
|
|
plane_t *pplane;
|
2021-02-01 10:31:11 +00:00
|
|
|
mod_brush_t *brush = &model->brush;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// FIXME: use bounding-box-based frustum clipping info?
|
|
|
|
|
2021-02-01 10:31:11 +00:00
|
|
|
psurf = &brush->surfaces[brush->firstmodelsurface];
|
|
|
|
numsurfaces = brush->nummodelsurfaces;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
for (i = 0; i < numsurfaces; 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))) {
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_r_currentkey = ((mleaf_t *) currententity->topnode)->key;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// FIXME: use bounding-box-based frustum clipping info?
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_R_RenderFace (psurf, clipflags);
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-15 03:46:55 +00:00
|
|
|
static inline void
|
|
|
|
visit_leaf (mleaf_t *leaf)
|
|
|
|
{
|
|
|
|
// deal with model fragments in this leaf
|
|
|
|
if (leaf->efrags)
|
2010-12-03 04:28:58 +00:00
|
|
|
R_StoreEfrags (leaf->efrags);
|
2012-02-22 07:32:34 +00:00
|
|
|
leaf->key = sw32_r_currentkey;
|
|
|
|
sw32_r_currentkey++; // all bmodels in a leaf share the same key
|
2004-02-15 03:46:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
get_side (mnode_t *node)
|
|
|
|
{
|
|
|
|
// find which side of the node we are on
|
2011-11-14 02:18:22 +00:00
|
|
|
plane_t *plane = node->plane;
|
2004-02-15 03:46:55 +00:00
|
|
|
|
|
|
|
if (plane->type < 3)
|
|
|
|
return (modelorg[plane->type] - plane->dist) < 0;
|
|
|
|
return (DotProduct (modelorg, plane->normal) - plane->dist) < 0;
|
|
|
|
}
|
2001-08-28 20:51:51 +00:00
|
|
|
|
2004-02-15 03:46:55 +00:00
|
|
|
static void
|
2021-02-01 10:31:11 +00:00
|
|
|
visit_node (mod_brush_t *brush, mnode_t *node, int side, int clipflags)
|
2004-02-15 03:46:55 +00:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
msurface_t *surf;
|
|
|
|
|
|
|
|
// sneaky hack for side = side ? SURF_PLANEBACK : 0;
|
|
|
|
side = (~side + 1) & SURF_PLANEBACK;
|
|
|
|
// draw stuff
|
|
|
|
if ((c = node->numsurfaces)) {
|
2021-02-01 10:31:11 +00:00
|
|
|
surf = brush->surfaces + node->firstsurface;
|
2004-02-15 03:46:55 +00:00
|
|
|
for (; c; c--, surf++) {
|
|
|
|
if (surf->visframe != r_visframecount)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// side is either 0 or SURF_PLANEBACK
|
|
|
|
if (side ^ (surf->flags & SURF_PLANEBACK))
|
|
|
|
continue; // wrong side
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
if (sw32_r_drawpolys) {
|
|
|
|
if (sw32_r_worldpolysbacktofront) {
|
|
|
|
if (sw32_numbtofpolys < MAX_BTOFPOLYS) {
|
|
|
|
pbtofpolys[sw32_numbtofpolys].clipflags = clipflags;
|
|
|
|
pbtofpolys[sw32_numbtofpolys].psurf = surf;
|
|
|
|
sw32_numbtofpolys++;
|
2004-02-15 03:46:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_R_RenderPoly (surf, clipflags);
|
2004-02-15 03:46:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_R_RenderFace (surf, clipflags);
|
2004-02-15 03:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// all surfaces on the same node share the same sequence number
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_r_currentkey++;
|
2004-02-15 03:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2004-02-26 22:53:30 +00:00
|
|
|
test_node (mnode_t *node, int *clipflags)
|
2004-02-15 03:46:55 +00:00
|
|
|
{
|
|
|
|
int i, *pindex;
|
|
|
|
vec3_t acceptpt, rejectpt;
|
|
|
|
double d;
|
|
|
|
|
|
|
|
if (node->contents < 0)
|
|
|
|
return 0;
|
|
|
|
if (node->visframe != r_visframecount)
|
|
|
|
return 0;
|
|
|
|
// cull the clipping planes if not trivial accept
|
|
|
|
// FIXME: the compiler is doing a lousy job of optimizing here; it could be
|
|
|
|
// twice as fast in ASM
|
2004-02-26 22:53:30 +00:00
|
|
|
if (*clipflags) {
|
2004-02-15 03:46:55 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2004-02-26 22:53:30 +00:00
|
|
|
if (!(*clipflags & (1 << i)))
|
2004-02-15 03:46:55 +00:00
|
|
|
continue; // don't need to clip against it
|
|
|
|
|
|
|
|
// generate accept and reject points
|
|
|
|
// FIXME: do with fast look-ups or integer tests based on the
|
|
|
|
// sign bit of the floating point values
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
pindex = sw32_pfrustum_indexes[i];
|
2004-02-15 03:46:55 +00:00
|
|
|
|
|
|
|
rejectpt[0] = (float) node->minmaxs[pindex[0]];
|
|
|
|
rejectpt[1] = (float) node->minmaxs[pindex[1]];
|
|
|
|
rejectpt[2] = (float) node->minmaxs[pindex[2]];
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
d = DotProduct (rejectpt, sw32_view_clipplanes[i].normal);
|
|
|
|
d -= sw32_view_clipplanes[i].dist;
|
2004-02-15 03:46:55 +00:00
|
|
|
|
2004-02-26 22:53:30 +00:00
|
|
|
if (d <= 0)
|
2004-02-15 03:46:55 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
acceptpt[0] = (float) node->minmaxs[pindex[3 + 0]];
|
|
|
|
acceptpt[1] = (float) node->minmaxs[pindex[3 + 1]];
|
|
|
|
acceptpt[2] = (float) node->minmaxs[pindex[3 + 2]];
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
d = DotProduct (acceptpt, sw32_view_clipplanes[i].normal);
|
|
|
|
d -= sw32_view_clipplanes[i].dist;
|
2004-02-15 03:46:55 +00:00
|
|
|
if (d >= 0)
|
2004-02-26 22:53:30 +00:00
|
|
|
*clipflags &= ~(1 << i); // node is entirely on screen
|
2004-02-15 03:46:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-02-01 10:31:11 +00:00
|
|
|
R_VisitWorldNodes (mod_brush_t *brush, int clipflags)
|
2004-02-15 03:46:55 +00:00
|
|
|
{
|
2013-01-07 10:51:36 +00:00
|
|
|
typedef struct {
|
2004-02-15 03:46:55 +00:00
|
|
|
mnode_t *node;
|
|
|
|
int side, clipflags;
|
2013-01-07 10:51:36 +00:00
|
|
|
} rstack_t;
|
|
|
|
rstack_t *node_ptr;
|
|
|
|
rstack_t *node_stack;
|
|
|
|
mnode_t *node;
|
2004-02-15 03:46:55 +00:00
|
|
|
mnode_t *front;
|
2004-02-26 22:53:30 +00:00
|
|
|
int side, cf;
|
2004-02-15 03:46:55 +00:00
|
|
|
|
2021-02-01 10:31:11 +00:00
|
|
|
node = brush->nodes;
|
2013-01-07 10:51:36 +00:00
|
|
|
// +2 for paranoia
|
2021-02-01 10:31:11 +00:00
|
|
|
node_stack = alloca ((brush->depth + 2) * sizeof (rstack_t));
|
2004-02-15 03:46:55 +00:00
|
|
|
node_ptr = node_stack;
|
|
|
|
|
2004-02-26 22:53:30 +00:00
|
|
|
cf = clipflags;
|
2004-02-15 03:46:55 +00:00
|
|
|
while (1) {
|
2004-02-26 22:53:30 +00:00
|
|
|
while (test_node (node, &cf)) {
|
|
|
|
cf = clipflags;
|
2004-02-15 03:46:55 +00:00
|
|
|
side = get_side (node);
|
|
|
|
front = node->children[side];
|
2004-02-26 22:53:30 +00:00
|
|
|
if (test_node (front, &cf)) {
|
2004-02-15 03:46:55 +00:00
|
|
|
node_ptr->node = node;
|
|
|
|
node_ptr->side = side;
|
|
|
|
node_ptr->clipflags = clipflags;
|
|
|
|
node_ptr++;
|
2004-02-26 22:53:30 +00:00
|
|
|
clipflags = cf;
|
2004-02-15 03:46:55 +00:00
|
|
|
node = front;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (front->contents < 0 && front->contents != CONTENTS_SOLID)
|
|
|
|
visit_leaf ((mleaf_t *) front);
|
2021-02-01 10:31:11 +00:00
|
|
|
visit_node (brush, node, side, clipflags);
|
2004-02-15 03:46:55 +00:00
|
|
|
node = node->children[!side];
|
|
|
|
}
|
|
|
|
if (node->contents < 0 && node->contents != CONTENTS_SOLID)
|
|
|
|
visit_leaf ((mleaf_t *) node);
|
|
|
|
if (node_ptr != node_stack) {
|
|
|
|
node_ptr--;
|
|
|
|
node = node_ptr->node;
|
|
|
|
side = node_ptr->side;
|
|
|
|
clipflags = node_ptr->clipflags;
|
2021-02-01 10:31:11 +00:00
|
|
|
visit_node (brush, node, side, clipflags);
|
2004-02-15 03:46:55 +00:00
|
|
|
node = node->children[!side];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (node->contents < 0 && node->contents != CONTENTS_SOLID)
|
|
|
|
visit_leaf ((mleaf_t *) node);
|
|
|
|
}
|
2001-08-28 20:51:51 +00:00
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_R_RenderWorld (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
btofpoly_t btofpolys[MAX_BTOFPOLYS];
|
2021-02-01 10:31:11 +00:00
|
|
|
mod_brush_t *brush;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
pbtofpolys = btofpolys;
|
|
|
|
|
|
|
|
currententity = &r_worldentity;
|
|
|
|
VectorCopy (r_origin, modelorg);
|
2021-02-01 10:31:11 +00:00
|
|
|
brush = ¤tentity->model->brush;
|
|
|
|
r_pcurrentvertbase = brush->vertexes;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2021-02-01 10:31:11 +00:00
|
|
|
R_VisitWorldNodes (brush, 15);
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// if the driver wants the polygons back to front, play the visible ones
|
|
|
|
// back in that order
|
2012-02-22 07:32:34 +00:00
|
|
|
if (sw32_r_worldpolysbacktofront) {
|
|
|
|
for (i = sw32_numbtofpolys - 1; i >= 0; i--) {
|
|
|
|
sw32_R_RenderPoly (btofpolys[i].psurf, btofpolys[i].clipflags);
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|