2006-09-10 09:32:51 +00:00
|
|
|
/*
|
|
|
|
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 the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
// world.c -- world query functions
|
|
|
|
|
2012-11-12 22:40:40 +00:00
|
|
|
#include "bspfile.h"
|
2006-09-10 09:32:51 +00:00
|
|
|
#include "console.h"
|
2012-11-12 22:40:40 +00:00
|
|
|
#include "mathlib.h"
|
2012-11-19 02:52:30 +00:00
|
|
|
#include "model.h"
|
2006-09-10 09:32:51 +00:00
|
|
|
#include "progs.h"
|
|
|
|
#include "server.h"
|
|
|
|
#include "world.h"
|
|
|
|
|
2012-11-12 22:57:12 +00:00
|
|
|
#ifdef NQ_HACK
|
2012-11-12 22:40:40 +00:00
|
|
|
#include "host.h"
|
2012-11-19 02:52:30 +00:00
|
|
|
#include "quakedef.h"
|
2012-11-12 22:40:40 +00:00
|
|
|
#include "sys.h"
|
2012-11-12 22:23:04 +00:00
|
|
|
/* FIXME - quick hack to enable merging of NQ/QWSV shared code */
|
|
|
|
#define SV_Error Sys_Error
|
2012-11-12 22:57:12 +00:00
|
|
|
#endif
|
|
|
|
#if defined(QW_HACK) && defined(SERVERONLY)
|
|
|
|
#include "qwsvdef.h"
|
|
|
|
#include "pmove.h"
|
2013-03-17 01:18:56 +00:00
|
|
|
/* FIXME - quick hack to enable merging of NQ/QWSV shared code */
|
|
|
|
#define Host_Error SV_Error
|
2012-11-12 22:57:12 +00:00
|
|
|
#endif
|
2012-11-12 22:23:04 +00:00
|
|
|
|
2006-09-10 09:32:51 +00:00
|
|
|
/*
|
2013-03-17 01:12:46 +00:00
|
|
|
* Entities never clip against themselves, or their owner.
|
|
|
|
* Line of sight checks trace->crosscontent, but bullets don't.
|
|
|
|
*/
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 10:27:51 +00:00
|
|
|
typedef struct {
|
|
|
|
vec3_t mins;
|
|
|
|
vec3_t maxs;
|
|
|
|
} bounds_t;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2013-03-16 10:27:51 +00:00
|
|
|
bounds_t move; /* enclose the test object along entire move */
|
|
|
|
bounds_t object; /* size of the moving object */
|
2013-03-17 01:12:46 +00:00
|
|
|
bounds_t monster; /* size to test against monsters (>= object) */
|
2013-03-16 10:27:51 +00:00
|
|
|
vec3_t start, end;
|
2013-03-16 05:49:05 +00:00
|
|
|
movetype_t type;
|
2013-03-16 03:33:01 +00:00
|
|
|
const edict_t *passedict;
|
2006-09-10 09:32:51 +00:00
|
|
|
} moveclip_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
SV_HullForEntity
|
|
|
|
|
|
|
|
Returns a hull that can be used for testing or clipping an object of mins/maxs
|
|
|
|
size.
|
|
|
|
Offset is filled in to contain the adjustment that must be added to the
|
|
|
|
testing object's origin to get a point to use with the returned hull.
|
|
|
|
================
|
|
|
|
*/
|
2013-03-16 03:33:01 +00:00
|
|
|
static const hull_t *
|
|
|
|
SV_HullForEntity(const edict_t *ent, const vec3_t mins, const vec3_t maxs,
|
2013-03-19 04:27:34 +00:00
|
|
|
vec3_t offset, boxhull_t *boxhull)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2013-04-16 11:15:33 +00:00
|
|
|
model_t *model;
|
|
|
|
const brushmodel_t *brushmodel;
|
2013-03-16 03:33:01 +00:00
|
|
|
const hull_t *hull;
|
|
|
|
vec3_t hullmins, hullmaxs, size;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
// decide which clipping hull to use, based on the size
|
|
|
|
if (ent->v.solid == SOLID_BSP) { // explicit hulls in the BSP model
|
|
|
|
if (ent->v.movetype != MOVETYPE_PUSH)
|
2012-11-12 22:23:04 +00:00
|
|
|
SV_Error("SOLID_BSP without MOVETYPE_PUSH");
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
model = sv.models[(int)ent->v.modelindex];
|
|
|
|
|
|
|
|
if (!model || model->type != mod_brush)
|
2012-11-12 22:23:04 +00:00
|
|
|
SV_Error("MOVETYPE_PUSH with a non bsp model");
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-04-16 11:15:33 +00:00
|
|
|
brushmodel = BrushModel(model);
|
2006-09-10 09:32:51 +00:00
|
|
|
VectorSubtract(maxs, mins, size);
|
|
|
|
if (size[0] < 3)
|
2013-04-16 11:15:33 +00:00
|
|
|
hull = &brushmodel->hulls[0];
|
2006-09-10 09:32:51 +00:00
|
|
|
else if (size[0] <= 32)
|
2013-04-16 11:15:33 +00:00
|
|
|
hull = &brushmodel->hulls[1];
|
2006-09-10 09:32:51 +00:00
|
|
|
else
|
2013-04-16 11:15:33 +00:00
|
|
|
hull = &brushmodel->hulls[2];
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
// calculate an offset value to center the origin
|
|
|
|
VectorSubtract(hull->clip_mins, mins, offset);
|
|
|
|
VectorAdd(offset, ent->v.origin, offset);
|
|
|
|
} else {
|
|
|
|
/* create a temp hull from bounding box sizes */
|
|
|
|
VectorSubtract(ent->v.mins, maxs, hullmins);
|
|
|
|
VectorSubtract(ent->v.maxs, mins, hullmaxs);
|
2013-03-19 05:35:15 +00:00
|
|
|
Mod_CreateBoxhull(hullmins, hullmaxs, boxhull);
|
2013-03-19 04:27:34 +00:00
|
|
|
hull = &boxhull->hull;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
VectorCopy(ent->v.origin, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hull;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
ENTITY AREA CHECKING
|
|
|
|
|
|
|
|
===============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct areanode_s {
|
|
|
|
int axis; // -1 = leaf node
|
|
|
|
float dist;
|
|
|
|
struct areanode_s *children[2];
|
|
|
|
link_t trigger_edicts;
|
|
|
|
link_t solid_edicts;
|
|
|
|
} areanode_t;
|
|
|
|
|
|
|
|
#define AREA_DEPTH 4
|
|
|
|
#define AREA_NODES 32
|
|
|
|
|
|
|
|
static areanode_t sv_areanodes[AREA_NODES];
|
|
|
|
static int sv_numareanodes;
|
|
|
|
|
2012-11-12 22:57:12 +00:00
|
|
|
#if defined(QW_HACK) && defined(SERVERONLY)
|
|
|
|
/*
|
|
|
|
====================
|
2013-03-21 00:43:53 +00:00
|
|
|
AddLinksToPhysents
|
2012-11-12 22:57:12 +00:00
|
|
|
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
static void
|
2013-03-22 02:20:54 +00:00
|
|
|
SV_AddLinksToPhysents_r(const areanode_t *node, const edict_t *player,
|
|
|
|
const vec3_t mins, const vec3_t maxs,
|
|
|
|
physent_stack_t *pestack)
|
2012-11-12 22:57:12 +00:00
|
|
|
{
|
2013-03-17 01:09:55 +00:00
|
|
|
const link_t *link, *next;
|
|
|
|
const link_t *const solids = &node->solid_edicts;
|
2012-11-12 22:57:12 +00:00
|
|
|
const edict_t *check;
|
2013-03-17 01:09:55 +00:00
|
|
|
int i, playernum;
|
|
|
|
physent_t *physent;
|
2012-11-12 22:57:12 +00:00
|
|
|
|
2013-03-22 02:20:54 +00:00
|
|
|
playernum = EDICT_TO_PROG(player);
|
2013-03-21 00:43:53 +00:00
|
|
|
physent = &pestack->physents[pestack->numphysent];
|
2012-11-12 22:57:12 +00:00
|
|
|
|
2013-03-17 01:09:55 +00:00
|
|
|
/* touch linked edicts */
|
|
|
|
for (link = solids->next; link != solids; link = next) {
|
|
|
|
next = link->next;
|
2013-04-24 10:53:21 +00:00
|
|
|
check = const_container_of(link, edict_t, area);
|
2012-11-12 22:57:12 +00:00
|
|
|
|
2013-03-17 01:09:55 +00:00
|
|
|
/* player's own missile */
|
|
|
|
if (check->v.owner == playernum)
|
|
|
|
continue;
|
2012-11-12 22:57:12 +00:00
|
|
|
if (check->v.solid == SOLID_BSP
|
|
|
|
|| check->v.solid == SOLID_BBOX
|
|
|
|
|| check->v.solid == SOLID_SLIDEBOX) {
|
2013-03-22 02:20:54 +00:00
|
|
|
if (check == player)
|
2012-11-12 22:57:12 +00:00
|
|
|
continue;
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
if (check->v.absmin[i] > maxs[i]
|
|
|
|
|| check->v.absmax[i] < mins[i])
|
|
|
|
break;
|
|
|
|
if (i != 3)
|
|
|
|
continue;
|
2013-03-21 00:43:53 +00:00
|
|
|
if (pestack->numphysent == MAX_PHYSENTS)
|
2012-11-12 22:57:12 +00:00
|
|
|
return;
|
|
|
|
|
2013-03-17 01:09:55 +00:00
|
|
|
VectorCopy(check->v.origin, physent->origin);
|
2013-03-21 06:18:02 +00:00
|
|
|
physent->entitynum = NUM_FOR_EDICT(check);
|
2013-04-18 03:05:39 +00:00
|
|
|
if (check->v.solid == SOLID_BSP) {
|
|
|
|
const model_t *model = sv.models[(int)(check->v.modelindex)];
|
|
|
|
physent->brushmodel = ConstBrushModel(model);
|
|
|
|
} else {
|
|
|
|
physent->brushmodel = NULL;
|
2013-03-17 01:09:55 +00:00
|
|
|
VectorCopy(check->v.mins, physent->mins);
|
|
|
|
VectorCopy(check->v.maxs, physent->maxs);
|
2012-11-12 22:57:12 +00:00
|
|
|
}
|
2013-03-21 00:43:53 +00:00
|
|
|
physent++;
|
|
|
|
pestack->numphysent++;
|
2012-11-12 22:57:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-17 01:09:55 +00:00
|
|
|
/* recurse down both sides */
|
2012-11-12 22:57:12 +00:00
|
|
|
if (node->axis == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (maxs[node->axis] > node->dist)
|
2013-03-22 02:20:54 +00:00
|
|
|
SV_AddLinksToPhysents_r(node->children[0], player, mins, maxs, pestack);
|
2012-11-12 22:57:12 +00:00
|
|
|
if (mins[node->axis] < node->dist)
|
2013-03-22 02:20:54 +00:00
|
|
|
SV_AddLinksToPhysents_r(node->children[1], player, mins, maxs, pestack);
|
2012-11-12 22:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-22 02:20:54 +00:00
|
|
|
SV_AddLinksToPhysents(const edict_t *player, const vec3_t mins,
|
|
|
|
const vec3_t maxs, physent_stack_t *pestack)
|
2012-11-12 22:57:12 +00:00
|
|
|
{
|
2013-03-22 02:20:54 +00:00
|
|
|
SV_AddLinksToPhysents_r(sv_areanodes, player, mins, maxs, pestack);
|
2012-11-12 22:57:12 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-09-10 09:32:51 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
SV_CreateAreaNode
|
|
|
|
|
|
|
|
===============
|
|
|
|
*/
|
2013-01-05 05:42:04 +00:00
|
|
|
static areanode_t *
|
2013-03-16 03:33:01 +00:00
|
|
|
SV_CreateAreaNode(int depth, const vec3_t mins, const vec3_t maxs)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
|
|
|
areanode_t *anode;
|
|
|
|
vec3_t size;
|
|
|
|
vec3_t mins1, maxs1, mins2, maxs2;
|
|
|
|
|
|
|
|
if (sv_numareanodes == AREA_NODES)
|
2012-11-12 22:23:04 +00:00
|
|
|
SV_Error("%s: sv_numareanodes == AREA_NODES", __func__);
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
anode = &sv_areanodes[sv_numareanodes];
|
|
|
|
sv_numareanodes++;
|
|
|
|
|
|
|
|
ClearLink(&anode->trigger_edicts);
|
|
|
|
ClearLink(&anode->solid_edicts);
|
|
|
|
|
|
|
|
if (depth == AREA_DEPTH) {
|
|
|
|
anode->axis = -1;
|
|
|
|
anode->children[0] = anode->children[1] = NULL;
|
|
|
|
return anode;
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorSubtract(maxs, mins, size);
|
|
|
|
if (size[0] > size[1])
|
|
|
|
anode->axis = 0;
|
|
|
|
else
|
|
|
|
anode->axis = 1;
|
|
|
|
|
|
|
|
anode->dist = 0.5 * (maxs[anode->axis] + mins[anode->axis]);
|
|
|
|
VectorCopy(mins, mins1);
|
|
|
|
VectorCopy(mins, mins2);
|
|
|
|
VectorCopy(maxs, maxs1);
|
|
|
|
VectorCopy(maxs, maxs2);
|
|
|
|
|
|
|
|
maxs1[anode->axis] = mins2[anode->axis] = anode->dist;
|
|
|
|
|
|
|
|
anode->children[0] = SV_CreateAreaNode(depth + 1, mins2, maxs2);
|
|
|
|
anode->children[1] = SV_CreateAreaNode(depth + 1, mins1, maxs1);
|
|
|
|
|
|
|
|
return anode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
SV_ClearWorld
|
|
|
|
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_ClearWorld(void)
|
|
|
|
{
|
2013-04-16 11:15:33 +00:00
|
|
|
model_t *model = &sv.worldmodel->model;
|
|
|
|
|
2006-09-10 09:32:51 +00:00
|
|
|
memset(sv_areanodes, 0, sizeof(sv_areanodes));
|
|
|
|
sv_numareanodes = 0;
|
2013-04-16 11:15:33 +00:00
|
|
|
SV_CreateAreaNode(0, model->mins, model->maxs);
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-16 11:15:33 +00:00
|
|
|
static link_t **sv_link_next;
|
|
|
|
static link_t **sv_link_prev;
|
2013-04-12 22:16:47 +00:00
|
|
|
|
2006-09-10 09:32:51 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
SV_UnlinkEdict
|
|
|
|
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_UnlinkEdict(edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->area.prev)
|
|
|
|
return; // not linked in anywhere
|
|
|
|
RemoveLink(&ent->area);
|
2013-04-12 22:16:47 +00:00
|
|
|
if (sv_link_next && *sv_link_next == &ent->area)
|
|
|
|
*sv_link_next = ent->area.next;
|
|
|
|
if (sv_link_prev && *sv_link_prev == &ent->area)
|
|
|
|
*sv_link_prev = ent->area.prev;
|
2006-09-10 09:32:51 +00:00
|
|
|
ent->area.prev = ent->area.next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
SV_TouchLinks
|
|
|
|
====================
|
|
|
|
*/
|
2013-01-05 05:42:04 +00:00
|
|
|
static void
|
2013-03-16 03:33:01 +00:00
|
|
|
SV_TouchLinks(edict_t *ent, const areanode_t *node)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2013-03-17 01:09:55 +00:00
|
|
|
link_t *link, *next;
|
|
|
|
const link_t *const triggers = &node->trigger_edicts;
|
2006-09-10 09:32:51 +00:00
|
|
|
edict_t *touch;
|
|
|
|
int old_self, old_other;
|
|
|
|
|
|
|
|
/* touch linked edicts */
|
2013-03-17 01:09:55 +00:00
|
|
|
for (link = triggers->next; link != triggers; link = next) {
|
2013-04-12 22:16:47 +00:00
|
|
|
sv_link_next = &next;
|
2012-11-12 22:47:26 +00:00
|
|
|
/*
|
|
|
|
* FIXME - Just paranoia? Check if this can really happen...
|
|
|
|
* (I think it was related to the E2M2 drawbridge bug)
|
|
|
|
*/
|
2013-04-12 22:16:47 +00:00
|
|
|
if (!link) { /* my area got removed out from under me! */
|
|
|
|
Con_Printf ("%s: encountered NULL link\n", __func__);
|
|
|
|
break;
|
|
|
|
}
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-17 01:09:55 +00:00
|
|
|
next = link->next;
|
|
|
|
touch = container_of(link, edict_t, area);
|
2006-09-10 09:32:51 +00:00
|
|
|
if (touch == ent)
|
|
|
|
continue;
|
|
|
|
if (!touch->v.touch || touch->v.solid != SOLID_TRIGGER)
|
|
|
|
continue;
|
|
|
|
if (ent->v.absmin[0] > touch->v.absmax[0]
|
|
|
|
|| ent->v.absmin[1] > touch->v.absmax[1]
|
|
|
|
|| ent->v.absmin[2] > touch->v.absmax[2]
|
|
|
|
|| ent->v.absmax[0] < touch->v.absmin[0]
|
|
|
|
|| ent->v.absmax[1] < touch->v.absmin[1]
|
|
|
|
|| ent->v.absmax[2] < touch->v.absmin[2])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
old_self = pr_global_struct->self;
|
|
|
|
old_other = pr_global_struct->other;
|
|
|
|
|
|
|
|
pr_global_struct->self = EDICT_TO_PROG(touch);
|
|
|
|
pr_global_struct->other = EDICT_TO_PROG(ent);
|
|
|
|
pr_global_struct->time = sv.time;
|
|
|
|
PR_ExecuteProgram(touch->v.touch);
|
|
|
|
|
|
|
|
pr_global_struct->self = old_self;
|
|
|
|
pr_global_struct->other = old_other;
|
|
|
|
}
|
|
|
|
|
2013-04-12 22:16:47 +00:00
|
|
|
sv_link_next = NULL;
|
|
|
|
|
2006-09-10 09:32:51 +00:00
|
|
|
/* recurse down both sides */
|
|
|
|
if (node->axis == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ent->v.absmax[node->axis] > node->dist)
|
|
|
|
SV_TouchLinks(ent, node->children[0]);
|
|
|
|
if (ent->v.absmin[node->axis] < node->dist)
|
|
|
|
SV_TouchLinks(ent, node->children[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
SV_FindTouchedLeafs
|
|
|
|
|
|
|
|
===============
|
|
|
|
*/
|
2013-01-05 05:42:04 +00:00
|
|
|
static void
|
2013-03-16 03:33:01 +00:00
|
|
|
SV_FindTouchedLeafs(edict_t *ent, const mnode_t *node)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2013-03-16 03:33:01 +00:00
|
|
|
const mplane_t *splitplane;
|
|
|
|
const mleaf_t *leaf;
|
2006-09-10 09:32:51 +00:00
|
|
|
int sides;
|
|
|
|
int leafnum;
|
|
|
|
|
|
|
|
if (node->contents == CONTENTS_SOLID)
|
|
|
|
return;
|
|
|
|
|
2013-03-17 08:29:46 +00:00
|
|
|
/* add an efrag if the node is a leaf */
|
2006-09-10 09:32:51 +00:00
|
|
|
if (node->contents < 0) {
|
|
|
|
if (ent->num_leafs == MAX_ENT_LEAFS)
|
|
|
|
return;
|
|
|
|
|
|
|
|
leaf = (mleaf_t *)node;
|
|
|
|
leafnum = leaf - sv.worldmodel->leafs - 1;
|
|
|
|
ent->leafnums[ent->num_leafs] = leafnum;
|
|
|
|
ent->num_leafs++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-17 08:29:46 +00:00
|
|
|
/* recurse down the contacted sides */
|
2006-09-10 09:32:51 +00:00
|
|
|
splitplane = node->plane;
|
|
|
|
sides = BOX_ON_PLANE_SIDE(ent->v.absmin, ent->v.absmax, splitplane);
|
2013-01-02 03:01:49 +00:00
|
|
|
if (sides & PSIDE_FRONT)
|
2006-09-10 09:32:51 +00:00
|
|
|
SV_FindTouchedLeafs(ent, node->children[0]);
|
2013-01-02 03:01:49 +00:00
|
|
|
if (sides & PSIDE_BACK)
|
2006-09-10 09:32:51 +00:00
|
|
|
SV_FindTouchedLeafs(ent, node->children[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
SV_LinkEdict
|
|
|
|
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_LinkEdict(edict_t *ent, qboolean touch_triggers)
|
|
|
|
{
|
|
|
|
areanode_t *node;
|
|
|
|
|
|
|
|
if (ent->area.prev)
|
|
|
|
SV_UnlinkEdict(ent); // unlink from old position
|
|
|
|
|
|
|
|
if (ent == sv.edicts)
|
|
|
|
return; // don't add the world
|
|
|
|
|
|
|
|
if (ent->free)
|
|
|
|
return;
|
|
|
|
|
2006-09-10 09:43:23 +00:00
|
|
|
/* set the abs box */
|
2006-09-10 09:32:51 +00:00
|
|
|
VectorAdd(ent->v.origin, ent->v.mins, ent->v.absmin);
|
|
|
|
VectorAdd(ent->v.origin, ent->v.maxs, ent->v.absmax);
|
|
|
|
|
2006-09-10 09:43:23 +00:00
|
|
|
/*
|
|
|
|
* To make items easier to pick up and allow them to be grabbed off of
|
|
|
|
* shelves, the abs sizes are expanded
|
|
|
|
*/
|
2006-09-10 09:32:51 +00:00
|
|
|
if ((int)ent->v.flags & FL_ITEM) {
|
|
|
|
ent->v.absmin[0] -= 15;
|
|
|
|
ent->v.absmin[1] -= 15;
|
|
|
|
ent->v.absmax[0] += 15;
|
|
|
|
ent->v.absmax[1] += 15;
|
|
|
|
} else {
|
2006-09-10 09:43:23 +00:00
|
|
|
/*
|
|
|
|
* because movement is clipped an epsilon away from an actual edge, we
|
|
|
|
* must fully check even when bounding boxes don't quite touch
|
|
|
|
*/
|
2006-09-10 09:32:51 +00:00
|
|
|
ent->v.absmin[0] -= 1;
|
|
|
|
ent->v.absmin[1] -= 1;
|
|
|
|
ent->v.absmin[2] -= 1;
|
|
|
|
ent->v.absmax[0] += 1;
|
|
|
|
ent->v.absmax[1] += 1;
|
|
|
|
ent->v.absmax[2] += 1;
|
|
|
|
}
|
|
|
|
|
2006-09-10 09:43:23 +00:00
|
|
|
/* link to PVS leafs */
|
2006-09-10 09:32:51 +00:00
|
|
|
ent->num_leafs = 0;
|
|
|
|
if (ent->v.modelindex)
|
|
|
|
SV_FindTouchedLeafs(ent, sv.worldmodel->nodes);
|
|
|
|
|
|
|
|
if (ent->v.solid == SOLID_NOT)
|
|
|
|
return;
|
|
|
|
|
2006-09-10 09:43:23 +00:00
|
|
|
/* find the first node that the ent's box crosses */
|
2006-09-10 09:32:51 +00:00
|
|
|
node = sv_areanodes;
|
|
|
|
while (1) {
|
|
|
|
if (node->axis == -1)
|
|
|
|
break;
|
|
|
|
if (ent->v.absmin[node->axis] > node->dist)
|
|
|
|
node = node->children[0];
|
|
|
|
else if (ent->v.absmax[node->axis] < node->dist)
|
|
|
|
node = node->children[1];
|
|
|
|
else
|
|
|
|
break; // crosses the node
|
|
|
|
}
|
|
|
|
|
2006-09-10 09:43:23 +00:00
|
|
|
/* link it in */
|
2006-09-10 09:32:51 +00:00
|
|
|
if (ent->v.solid == SOLID_TRIGGER)
|
|
|
|
InsertLinkBefore(&ent->area, &node->trigger_edicts);
|
|
|
|
else
|
|
|
|
InsertLinkBefore(&ent->area, &node->solid_edicts);
|
|
|
|
|
|
|
|
if (touch_triggers)
|
2006-09-10 09:43:23 +00:00
|
|
|
/* touch all entities at this node and decend for more */
|
2006-09-10 09:32:51 +00:00
|
|
|
SV_TouchLinks(ent, sv_areanodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
==================
|
|
|
|
SV_PointContents
|
|
|
|
==================
|
|
|
|
*/
|
|
|
|
int
|
2013-03-16 03:33:01 +00:00
|
|
|
SV_PointContents(const vec3_t point)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2012-11-12 22:57:12 +00:00
|
|
|
#ifdef NQ_HACK
|
2013-03-16 03:33:01 +00:00
|
|
|
int contents;
|
|
|
|
|
2013-03-19 03:17:38 +00:00
|
|
|
contents = Mod_HullPointContents(&sv.worldmodel->hulls[0], 0, point);
|
2013-03-16 03:33:01 +00:00
|
|
|
if (contents <= CONTENTS_CURRENT_0 && contents >= CONTENTS_CURRENT_DOWN)
|
|
|
|
contents = CONTENTS_WATER;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 03:33:01 +00:00
|
|
|
return contents;
|
2012-11-12 22:57:12 +00:00
|
|
|
#endif
|
|
|
|
#if defined(QW_HACK) && defined(SERVERONLY)
|
2013-03-19 03:17:38 +00:00
|
|
|
return Mod_HullPointContents(&sv.worldmodel->hulls[0], 0, point);
|
2012-11-12 22:57:12 +00:00
|
|
|
#endif
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
/*
|
|
|
|
============
|
|
|
|
SV_TestEntityPosition
|
|
|
|
|
2012-11-12 22:57:12 +00:00
|
|
|
A small wrapper around SV_BoxInSolidEntity that never clips against the
|
|
|
|
supplied entity. TODO: This could be a lot more efficient?
|
2006-09-10 09:32:51 +00:00
|
|
|
============
|
|
|
|
*/
|
|
|
|
edict_t *
|
2013-03-16 03:33:01 +00:00
|
|
|
SV_TestEntityPosition(const edict_t *ent)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2006-09-10 09:43:23 +00:00
|
|
|
edict_t *ret = NULL;
|
2013-03-16 03:33:01 +00:00
|
|
|
trace_t trace;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-17 04:09:15 +00:00
|
|
|
SV_TraceMoveEntity(ent, ent->v.origin, ent->v.origin, MOVE_NORMAL, &trace);
|
2006-09-10 09:32:51 +00:00
|
|
|
if (trace.startsolid)
|
2006-09-10 09:43:23 +00:00
|
|
|
ret = sv.edicts;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2006-09-10 09:43:23 +00:00
|
|
|
return ret;
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
==================
|
2013-03-18 22:53:23 +00:00
|
|
|
SV_ClipToEntity
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
Handles selection or creation of a clipping hull, and offseting (and
|
2013-03-18 22:53:23 +00:00
|
|
|
eventually rotation) of the end points. Returns true if the move was clipped
|
|
|
|
by the entity, false otherwise.
|
2006-09-10 09:32:51 +00:00
|
|
|
==================
|
|
|
|
*/
|
2013-03-16 11:07:35 +00:00
|
|
|
static void
|
2013-03-18 22:53:23 +00:00
|
|
|
SV_ClipToEntity(const edict_t *ent, const vec3_t start, const vec3_t mins,
|
|
|
|
const vec3_t maxs, const vec3_t end, trace_t *trace)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2013-03-19 04:27:34 +00:00
|
|
|
boxhull_t boxhull;
|
2013-03-16 03:33:01 +00:00
|
|
|
const hull_t *hull;
|
2006-09-10 09:32:51 +00:00
|
|
|
vec3_t offset;
|
|
|
|
vec3_t start_l, end_l;
|
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* fill in a default trace */
|
|
|
|
memset(trace, 0, sizeof(trace_t));
|
|
|
|
trace->fraction = 1;
|
|
|
|
trace->allsolid = true;
|
|
|
|
VectorCopy(end, trace->endpos);
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* get the clipping hull */
|
2013-03-19 04:27:34 +00:00
|
|
|
hull = SV_HullForEntity(ent, mins, maxs, offset, &boxhull);
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
VectorSubtract(start, offset, start_l);
|
|
|
|
VectorSubtract(end, offset, end_l);
|
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* trace a line through the apropriate clipping hull */
|
2013-03-19 03:25:14 +00:00
|
|
|
Mod_TraceHull(hull, hull->firstclipnode, start_l, end_l, trace);
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* fix trace up by the offset */
|
|
|
|
if (trace->fraction != 1)
|
|
|
|
VectorAdd(trace->endpos, offset, trace->endpos);
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
SV_ClipToLinks
|
|
|
|
|
2013-03-18 23:24:36 +00:00
|
|
|
Mins and maxs enclose the entire area swept by the move.
|
|
|
|
Returns a pointer to the entity which clipped the move, NULL otherwise.
|
2006-09-10 09:32:51 +00:00
|
|
|
====================
|
|
|
|
*/
|
2013-03-18 23:24:36 +00:00
|
|
|
static const edict_t *
|
|
|
|
SV_ClipToLinks_r(const edict_t *clipent, const areanode_t *node,
|
|
|
|
const moveclip_t *clip, trace_t *trace)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2013-03-17 01:09:55 +00:00
|
|
|
link_t *link, *next;
|
|
|
|
const link_t *const solids = &node->solid_edicts;
|
2006-09-10 09:32:51 +00:00
|
|
|
edict_t *touch;
|
2013-03-16 23:47:42 +00:00
|
|
|
trace_t stacktrace;
|
2013-03-18 22:53:23 +00:00
|
|
|
const bounds_t *clipbounds;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 23:47:42 +00:00
|
|
|
/* touch linked edicts */
|
2013-03-17 01:09:55 +00:00
|
|
|
for (link = solids->next; link != solids; link = next) {
|
|
|
|
next = link->next;
|
|
|
|
touch = container_of(link, edict_t, area);
|
2006-09-10 09:32:51 +00:00
|
|
|
if (touch->v.solid == SOLID_NOT)
|
|
|
|
continue;
|
|
|
|
if (touch == clip->passedict)
|
|
|
|
continue;
|
|
|
|
if (touch->v.solid == SOLID_TRIGGER)
|
2012-11-12 22:23:04 +00:00
|
|
|
SV_Error("Trigger in clipping list");
|
2006-09-10 09:32:51 +00:00
|
|
|
|
|
|
|
if (clip->type == MOVE_NOMONSTERS && touch->v.solid != SOLID_BSP)
|
|
|
|
continue;
|
|
|
|
|
2013-03-16 10:27:51 +00:00
|
|
|
if (clip->move.mins[0] > touch->v.absmax[0]
|
|
|
|
|| clip->move.mins[1] > touch->v.absmax[1]
|
|
|
|
|| clip->move.mins[2] > touch->v.absmax[2]
|
|
|
|
|| clip->move.maxs[0] < touch->v.absmin[0]
|
|
|
|
|| clip->move.maxs[1] < touch->v.absmin[1]
|
|
|
|
|| clip->move.maxs[2] < touch->v.absmin[2])
|
2006-09-10 09:32:51 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (clip->passedict && clip->passedict->v.size[0]
|
|
|
|
&& !touch->v.size[0])
|
|
|
|
continue; // points never interact
|
|
|
|
|
2013-03-16 23:47:42 +00:00
|
|
|
/* might intersect, so do an exact clip */
|
|
|
|
if (trace->allsolid)
|
2013-03-18 23:24:36 +00:00
|
|
|
return clipent;
|
2006-09-10 09:32:51 +00:00
|
|
|
if (clip->passedict) {
|
2013-03-16 23:47:42 +00:00
|
|
|
/* don't clip against own missiles */
|
2006-09-10 09:32:51 +00:00
|
|
|
if (PROG_TO_EDICT(touch->v.owner) == clip->passedict)
|
2013-03-16 23:47:42 +00:00
|
|
|
continue;
|
|
|
|
/* don't clip against owner */
|
2006-09-10 09:32:51 +00:00
|
|
|
if (PROG_TO_EDICT(clip->passedict->v.owner) == touch)
|
2013-03-16 23:47:42 +00:00
|
|
|
continue;
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((int)touch->v.flags & FL_MONSTER)
|
2013-03-18 22:53:23 +00:00
|
|
|
clipbounds = &clip->monster;
|
2006-09-10 09:32:51 +00:00
|
|
|
else
|
2013-03-18 22:53:23 +00:00
|
|
|
clipbounds = &clip->object;
|
|
|
|
SV_ClipToEntity(touch, clip->start, clipbounds->mins, clipbounds->maxs,
|
|
|
|
clip->end, &stacktrace);
|
|
|
|
|
2013-03-16 23:47:42 +00:00
|
|
|
if (stacktrace.allsolid || stacktrace.startsolid
|
|
|
|
|| stacktrace.fraction < trace->fraction) {
|
2013-03-18 23:24:36 +00:00
|
|
|
clipent = touch;
|
2013-03-16 23:47:42 +00:00
|
|
|
if (trace->startsolid) {
|
|
|
|
*trace = stacktrace;
|
|
|
|
trace->startsolid = true;
|
2006-09-10 09:32:51 +00:00
|
|
|
} else
|
2013-03-16 23:47:42 +00:00
|
|
|
*trace = stacktrace;
|
|
|
|
} else if (stacktrace.startsolid)
|
|
|
|
trace->startsolid = true;
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
2013-03-16 23:47:42 +00:00
|
|
|
/* recurse down both sides */
|
2006-09-10 09:32:51 +00:00
|
|
|
if (node->axis == -1)
|
2013-03-18 23:24:36 +00:00
|
|
|
return clipent;
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 10:27:51 +00:00
|
|
|
if (clip->move.maxs[node->axis] > node->dist)
|
2013-03-18 23:24:36 +00:00
|
|
|
clipent = SV_ClipToLinks_r(clipent, node->children[0], clip, trace);
|
2013-03-16 10:27:51 +00:00
|
|
|
if (clip->move.mins[node->axis] < node->dist)
|
2013-03-18 23:24:36 +00:00
|
|
|
clipent = SV_ClipToLinks_r(clipent, node->children[1], clip, trace);
|
|
|
|
|
|
|
|
return clipent;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const edict_t *
|
|
|
|
SV_ClipToLinks(const areanode_t *node, const moveclip_t *clip, trace_t *trace)
|
|
|
|
{
|
|
|
|
return SV_ClipToLinks_r(NULL, node, clip, trace);
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
==================
|
|
|
|
SV_MoveBounds
|
|
|
|
==================
|
|
|
|
*/
|
2013-01-05 05:42:04 +00:00
|
|
|
static void
|
2013-03-16 10:27:51 +00:00
|
|
|
SV_MoveBounds(const bounds_t *object, const vec3_t start, const vec3_t end,
|
|
|
|
bounds_t *move)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
if (end[i] > start[i]) {
|
2013-03-16 10:27:51 +00:00
|
|
|
move->mins[i] = start[i] + object->mins[i] - 1;
|
|
|
|
move->maxs[i] = end[i] + object->maxs[i] + 1;
|
2006-09-10 09:32:51 +00:00
|
|
|
} else {
|
2013-03-16 10:27:51 +00:00
|
|
|
move->mins[i] = end[i] + object->mins[i] - 1;
|
|
|
|
move->maxs[i] = start[i] + object->maxs[i] + 1;
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
==================
|
2013-03-17 04:09:15 +00:00
|
|
|
SV_TraceMove
|
2013-03-18 23:24:36 +00:00
|
|
|
|
|
|
|
If the move was clipped, returns a pointer to the entity that clipped the
|
|
|
|
move, otherwise NULL.
|
2006-09-10 09:32:51 +00:00
|
|
|
==================
|
|
|
|
*/
|
2013-03-18 23:24:36 +00:00
|
|
|
const edict_t *
|
2013-03-17 04:09:15 +00:00
|
|
|
SV_TraceMove(const vec3_t start, const vec3_t mins, const vec3_t maxs,
|
2013-03-18 23:24:36 +00:00
|
|
|
const vec3_t end, const movetype_t type, const edict_t *passedict,
|
2013-03-17 04:09:15 +00:00
|
|
|
trace_t *trace)
|
2006-09-10 09:32:51 +00:00
|
|
|
{
|
2013-03-18 23:24:36 +00:00
|
|
|
const edict_t *clipent;
|
|
|
|
qboolean clipworld;
|
2006-09-10 09:32:51 +00:00
|
|
|
moveclip_t clip;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
memset(&clip, 0, sizeof(moveclip_t));
|
|
|
|
|
2013-03-16 10:27:51 +00:00
|
|
|
VectorCopy(start, clip.start);
|
|
|
|
VectorCopy(end, clip.end);
|
|
|
|
VectorCopy(mins, clip.object.mins);
|
|
|
|
VectorCopy(maxs, clip.object.maxs);
|
2006-09-10 09:32:51 +00:00
|
|
|
clip.type = type;
|
|
|
|
clip.passedict = passedict;
|
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* clip to world */
|
2013-03-18 22:53:23 +00:00
|
|
|
SV_ClipToEntity(sv.edicts, start, mins, maxs, end, trace);
|
2013-03-18 23:24:36 +00:00
|
|
|
clipworld = (trace->fraction < 1 || trace->startsolid);
|
2013-03-16 11:07:35 +00:00
|
|
|
|
2006-09-10 09:32:51 +00:00
|
|
|
if (type == MOVE_MISSILE) {
|
|
|
|
for (i = 0; i < 3; i++) {
|
2013-03-16 10:27:51 +00:00
|
|
|
clip.monster.mins[i] = -15;
|
|
|
|
clip.monster.maxs[i] = 15;
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
} else {
|
2013-03-16 10:27:51 +00:00
|
|
|
VectorCopy(mins, clip.monster.mins);
|
|
|
|
VectorCopy(maxs, clip.monster.maxs);
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* create the bounding box of the entire move */
|
2013-03-16 10:27:51 +00:00
|
|
|
SV_MoveBounds(&clip.monster, start, end, &clip.move);
|
2006-09-10 09:32:51 +00:00
|
|
|
|
2013-03-16 11:07:35 +00:00
|
|
|
/* clip to entities */
|
2013-03-18 23:24:36 +00:00
|
|
|
clipent = SV_ClipToLinks(sv_areanodes, &clip, trace);
|
|
|
|
if (!clipent && clipworld)
|
|
|
|
clipent = sv.edicts;
|
|
|
|
|
|
|
|
return clipent;
|
2006-09-10 09:32:51 +00:00
|
|
|
}
|