newtree/source/r_efrag.c

267 lines
4.8 KiB
C
Raw Normal View History

/*
r_efrag.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
$Id$
*/
2000-05-10 11:29:38 +00:00
2000-05-17 10:03:19 +00:00
#ifdef HAVE_CONFIG_H
# include "config.h"
2000-05-17 10:03:19 +00:00
#endif
2000-12-30 02:16:36 +00:00
#include "bothdefs.h"
#include "cl_main.h"
#include "cl_tent.h"
2000-12-30 02:16:36 +00:00
#include "console.h"
#include "r_local.h"
#include "sys.h"
2000-05-10 11:29:38 +00:00
mnode_t *r_pefragtopnode;
2000-05-10 11:29:38 +00:00
//===========================================================================
/*
ENTITY FRAGMENT FUNCTIONS
*/
efrag_t **lastlink;
2000-05-10 11:29:38 +00:00
vec3_t r_emins, r_emaxs;
2000-05-10 11:29:38 +00:00
entity_t *r_addent;
2000-05-10 11:29:38 +00:00
/*
2001-02-09 02:53:09 +00:00
R_RemoveEfrags
2000-05-10 11:29:38 +00:00
2001-02-09 02:53:09 +00:00
Call when removing an object from the world or moving it to another position
2000-05-10 11:29:38 +00:00
*/
void
R_RemoveEfrags (entity_t *ent)
2000-05-10 11:29:38 +00:00
{
efrag_t *ef, *old, *walk, **prev;
2000-05-10 11:29:38 +00:00
ef = ent->efrag;
while (ef) {
2000-05-10 11:29:38 +00:00
prev = &ef->leaf->efrags;
while (1) {
2000-05-10 11:29:38 +00:00
walk = *prev;
if (!walk)
break;
if (walk == ef) { // remove this fragment
2000-05-10 11:29:38 +00:00
*prev = ef->leafnext;
break;
} else
2000-05-10 11:29:38 +00:00
prev = &walk->leafnext;
}
2000-05-10 11:29:38 +00:00
old = ef;
ef = ef->entnext;
// put it on the free list
2000-05-10 11:29:38 +00:00
old->entnext = cl.free_efrags;
cl.free_efrags = old;
}
ent->efrag = NULL;
2000-05-10 11:29:38 +00:00
}
/*
2001-02-09 02:53:09 +00:00
R_SplitEntityOnNode
2000-05-10 11:29:38 +00:00
*/
void
R_SplitEntityOnNode (mnode_t *node)
2000-05-10 11:29:38 +00:00
{
efrag_t *ef;
mplane_t *splitplane;
mleaf_t *leaf;
int sides;
if (node->contents == CONTENTS_SOLID) {
2000-05-10 11:29:38 +00:00
return;
}
// add an efrag if the node is a leaf
if (node->contents < 0) {
2000-05-10 11:29:38 +00:00
if (!r_pefragtopnode)
r_pefragtopnode = node;
leaf = (mleaf_t *) node;
2000-05-10 11:29:38 +00:00
// grab an efrag off the free list
ef = cl.free_efrags;
if (!ef) {
2000-05-10 11:29:38 +00:00
Con_Printf ("Too many efrags!\n");
return; // no free fragments...
2000-05-10 11:29:38 +00:00
}
cl.free_efrags = cl.free_efrags->entnext;
ef->entity = r_addent;
// add the entity link
2000-05-10 11:29:38 +00:00
*lastlink = ef;
lastlink = &ef->entnext;
ef->entnext = NULL;
2000-05-10 11:29:38 +00:00
// set the leaf links
ef->leaf = leaf;
ef->leafnext = leaf->efrags;
leaf->efrags = ef;
2000-05-10 11:29:38 +00:00
return;
}
// NODE_MIXED
splitplane = node->plane;
sides = BOX_ON_PLANE_SIDE (r_emins, r_emaxs, splitplane);
if (sides == 3) {
// split on this plane
// if this is the first splitter of this bmodel, remember it
2000-05-10 11:29:38 +00:00
if (!r_pefragtopnode)
r_pefragtopnode = node;
}
// recurse down the contacted sides
if (sides & 1)
R_SplitEntityOnNode (node->children[0]);
2000-05-10 11:29:38 +00:00
if (sides & 2)
R_SplitEntityOnNode (node->children[1]);
}
/*
2001-02-09 02:53:09 +00:00
R_SplitEntityOnNode2
2000-05-10 11:29:38 +00:00
*/
void
R_SplitEntityOnNode2 (mnode_t *node)
2000-05-10 11:29:38 +00:00
{
mplane_t *splitplane;
int sides;
2000-05-10 11:29:38 +00:00
if (node->visframe != r_visframecount)
return;
if (node->contents < 0) {
2000-05-10 11:29:38 +00:00
if (node->contents != CONTENTS_SOLID)
r_pefragtopnode = node; // we've reached a non-solid leaf, so
// it's
// visible and not BSP clipped
2000-05-10 11:29:38 +00:00
return;
}
2000-05-10 11:29:38 +00:00
splitplane = node->plane;
sides = BOX_ON_PLANE_SIDE (r_emins, r_emaxs, splitplane);
if (sides == 3) {
// remember first splitter
2000-05-10 11:29:38 +00:00
r_pefragtopnode = node;
return;
}
// not split yet; recurse down the contacted side
if (sides & 1)
R_SplitEntityOnNode2 (node->children[0]);
else
R_SplitEntityOnNode2 (node->children[1]);
}
/*
2001-02-09 02:53:09 +00:00
R_AddEfrags
2000-05-10 11:29:38 +00:00
*/
void
R_AddEfrags (entity_t *ent)
2000-05-10 11:29:38 +00:00
{
model_t *entmodel;
int i;
2000-05-10 11:29:38 +00:00
if (!ent->model)
return;
if (ent == &r_worldentity)
return; // never add the world
2000-05-10 11:29:38 +00:00
r_addent = ent;
2000-05-10 11:29:38 +00:00
lastlink = &ent->efrag;
r_pefragtopnode = NULL;
2000-05-10 11:29:38 +00:00
entmodel = ent->model;
for (i = 0; i < 3; i++) {
2000-05-10 11:29:38 +00:00
r_emins[i] = ent->origin[i] + entmodel->mins[i];
r_emaxs[i] = ent->origin[i] + entmodel->maxs[i];
}
R_SplitEntityOnNode (cl.worldmodel->nodes);
ent->topnode = r_pefragtopnode;
}
/*
2001-02-09 02:53:09 +00:00
R_StoreEfrags
2000-05-10 11:29:38 +00:00
2001-02-09 02:53:09 +00:00
// FIXME: a lot of this goes away with edge-based
2000-05-10 11:29:38 +00:00
*/
void
R_StoreEfrags (efrag_t **ppefrag)
2000-05-10 11:29:38 +00:00
{
entity_t *pent;
model_t *clmodel;
efrag_t *pefrag;
2000-05-10 11:29:38 +00:00
while ((pefrag = *ppefrag) != NULL) {
2000-05-10 11:29:38 +00:00
pent = pefrag->entity;
clmodel = pent->model;
switch (clmodel->type) {
case mod_alias:
case mod_brush:
case mod_sprite:
pent = pefrag->entity;
2000-05-10 11:29:38 +00:00
if (pent->visframe != r_framecount) {
entity_t **ent = CL_NewTempEntity ();
if (!ent)
return;
*ent = pent;
2000-05-10 11:29:38 +00:00
// mark that we've recorded this entity for this frame
pent->visframe = r_framecount;
}
2000-05-10 11:29:38 +00:00
ppefrag = &pefrag->leafnext;
break;
2000-05-10 11:29:38 +00:00
default:
Sys_Error ("R_StoreEfrags: Bad entity type %d\n",
clmodel->type);
2000-05-10 11:29:38 +00:00
}
}
}