2004-08-23 00:15:46 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
// sv_move.c -- monster movement
|
|
|
|
|
|
|
|
#include "qwsvdef.h"
|
|
|
|
|
2004-11-29 01:21:00 +00:00
|
|
|
#ifndef CLIENTONLY
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
/*
|
|
|
|
=============
|
|
|
|
SV_CheckBottom
|
|
|
|
|
|
|
|
Returns false if any part of the bottom of the entity is off an edge that
|
|
|
|
is not a staircase.
|
|
|
|
|
|
|
|
=============
|
|
|
|
*/
|
|
|
|
int c_yes, c_no;
|
|
|
|
|
|
|
|
qboolean SV_CheckBottom (edict_t *ent)
|
|
|
|
{
|
|
|
|
int savedhull;
|
|
|
|
vec3_t mins, maxs, start, stop;
|
|
|
|
trace_t trace;
|
|
|
|
int x, y;
|
|
|
|
float mid, bottom;
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorAdd (ent->v->origin, ent->v->mins, mins);
|
|
|
|
VectorAdd (ent->v->origin, ent->v->maxs, maxs);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
// if all of the points under the corners are solid world, don't bother
|
|
|
|
// with the tougher checks
|
|
|
|
// the corners must be within 16 of the midpoint
|
|
|
|
start[2] = mins[2] - 1;
|
|
|
|
for (x=0 ; x<=1 ; x++)
|
|
|
|
for (y=0 ; y<=1 ; y++)
|
|
|
|
{
|
|
|
|
start[0] = x ? maxs[0] : mins[0];
|
|
|
|
start[1] = y ? maxs[1] : mins[1];
|
|
|
|
if (!(SV_PointContents (start) & FTECONTENTS_SOLID))
|
|
|
|
goto realcheck;
|
|
|
|
}
|
|
|
|
|
|
|
|
c_yes++;
|
|
|
|
return true; // we got out easy
|
|
|
|
|
|
|
|
realcheck:
|
|
|
|
c_no++;
|
|
|
|
//
|
|
|
|
// check it for real...
|
|
|
|
//
|
|
|
|
start[2] = mins[2];
|
|
|
|
|
|
|
|
// the midpoint must be within 16 of the bottom
|
|
|
|
start[0] = stop[0] = (mins[0] + maxs[0])*0.5;
|
|
|
|
start[1] = stop[1] = (mins[1] + maxs[1])*0.5;
|
|
|
|
stop[2] = start[2] - 2*pm_stepheight;
|
|
|
|
trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
|
|
|
|
|
|
|
|
if (trace.fraction == 1.0)
|
|
|
|
return false;
|
|
|
|
mid = bottom = trace.endpos[2];
|
|
|
|
|
|
|
|
// the corners must be within 16 of the midpoint
|
|
|
|
for (x=0 ; x<=1 ; x++)
|
|
|
|
for (y=0 ; y<=1 ; y++)
|
|
|
|
{
|
|
|
|
start[0] = stop[0] = x ? maxs[0] : mins[0];
|
|
|
|
start[1] = stop[1] = y ? maxs[1] : mins[1];
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
savedhull = ent->v->hull;
|
|
|
|
ent->v->hull = 0;
|
2004-08-23 00:15:46 +00:00
|
|
|
trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
|
2005-03-28 00:11:59 +00:00
|
|
|
ent->v->hull = savedhull;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
if (trace.fraction != 1.0 && trace.endpos[2] > bottom)
|
|
|
|
bottom = trace.endpos[2];
|
|
|
|
if (trace.fraction == 1.0 || mid - trace.endpos[2] > pm_stepheight)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
c_yes++;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void set_move_trace(trace_t *trace, struct globalvars_s *pr_globals)
|
|
|
|
{
|
|
|
|
pr_global_struct->trace_allsolid = trace->allsolid;
|
|
|
|
pr_global_struct->trace_startsolid = trace->startsolid;
|
|
|
|
pr_global_struct->trace_fraction = trace->fraction;
|
|
|
|
pr_global_struct->trace_inwater = trace->inwater;
|
|
|
|
pr_global_struct->trace_inopen = trace->inopen;
|
|
|
|
VectorCopy (trace->endpos, P_VEC(trace_endpos));
|
|
|
|
VectorCopy (trace->plane.normal, P_VEC(trace_plane_normal));
|
|
|
|
pr_global_struct->trace_plane_dist = trace->plane.dist;
|
|
|
|
if (trace->ent)
|
|
|
|
pr_global_struct->trace_ent = EDICT_TO_PROG(svprogfuncs, trace->ent);
|
|
|
|
else
|
|
|
|
pr_global_struct->trace_ent = EDICT_TO_PROG(svprogfuncs, sv.edicts);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=============
|
|
|
|
SV_movestep
|
|
|
|
|
|
|
|
Called by monster program code.
|
|
|
|
The move will be adjusted for slopes and stairs, but if the move isn't
|
|
|
|
possible, no move is done, false is returned, and
|
|
|
|
pr_global_struct->trace_normal is set to the normal of the blocking wall
|
|
|
|
=============
|
|
|
|
*/
|
|
|
|
qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink, qboolean noenemy, struct globalvars_s *set_trace)
|
|
|
|
{
|
|
|
|
float dz;
|
|
|
|
vec3_t oldorg, neworg, end;
|
|
|
|
trace_t trace;
|
|
|
|
int i;
|
|
|
|
edict_t *enemy = sv.edicts;
|
|
|
|
|
|
|
|
// try the move
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorCopy (ent->v->origin, oldorg);
|
|
|
|
VectorAdd (ent->v->origin, move, neworg);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
// flying monsters don't step up
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( (int)ent->v->flags & (FL_SWIM | FL_FLY) )
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
// try one move with vertical motion, then one without
|
|
|
|
for (i=0 ; i<2 ; i++)
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorAdd (ent->v->origin, move, neworg);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (!noenemy)
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
enemy = PROG_TO_EDICT(svprogfuncs, ent->v->enemy);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (i == 0 && enemy != sv.edicts)
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
dz = ent->v->origin[2] - PROG_TO_EDICT(svprogfuncs, ent->v->enemy)->v->origin[2];
|
2004-08-23 00:15:46 +00:00
|
|
|
if (dz > 40)
|
|
|
|
neworg[2] -= 8;
|
|
|
|
if (dz < 30)
|
|
|
|
neworg[2] += 8;
|
|
|
|
}
|
|
|
|
}
|
2005-03-28 00:11:59 +00:00
|
|
|
trace = SV_Move (ent->v->origin, ent->v->mins, ent->v->maxs, neworg, false, ent);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (set_trace)
|
|
|
|
set_move_trace(&trace, set_trace);
|
|
|
|
|
|
|
|
if (trace.fraction == 1)
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( ((int)ent->v->flags & FL_SWIM) && !(SV_PointContents(trace.endpos) & FTECONTENTS_FLUID))
|
2004-08-23 00:15:46 +00:00
|
|
|
return false; // swim monster left water
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorCopy (trace.endpos, ent->v->origin);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (relink)
|
|
|
|
SV_LinkEdict (ent, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (noenemy || enemy == sv.edicts)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// push down from a step height above the wished position
|
|
|
|
neworg[2] += pm_stepheight;
|
|
|
|
VectorCopy (neworg, end);
|
|
|
|
end[2] -= pm_stepheight*2;
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
trace = SV_Move (neworg, ent->v->mins, ent->v->maxs, end, false, ent);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (set_trace)
|
|
|
|
set_move_trace(&trace, set_trace);
|
|
|
|
|
|
|
|
if (trace.allsolid)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (trace.startsolid)
|
|
|
|
{
|
|
|
|
neworg[2] -= pm_stepheight;
|
2005-03-28 00:11:59 +00:00
|
|
|
trace = SV_Move (neworg, ent->v->mins, ent->v->maxs, end, false, ent);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (set_trace)
|
|
|
|
set_move_trace(&trace, set_trace);
|
|
|
|
if (trace.allsolid || trace.startsolid)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (trace.fraction == 1)
|
|
|
|
{
|
|
|
|
// if monster had the ground pulled out, go ahead and fall
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( (int)ent->v->flags & FL_PARTIALGROUND )
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorAdd (ent->v->origin, move, ent->v->origin);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (relink)
|
|
|
|
SV_LinkEdict (ent, true);
|
2005-03-28 00:11:59 +00:00
|
|
|
ent->v->flags = (int)ent->v->flags & ~FL_ONGROUND;
|
2004-08-23 00:15:46 +00:00
|
|
|
// Con_Printf ("fall down\n");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false; // walked off an edge
|
|
|
|
}
|
|
|
|
|
|
|
|
// check point traces down for dangling corners
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorCopy (trace.endpos, ent->v->origin);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
if (!SV_CheckBottom (ent))
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( (int)ent->v->flags & FL_PARTIALGROUND )
|
2004-08-23 00:15:46 +00:00
|
|
|
{ // entity had floor mostly pulled out from underneath it
|
|
|
|
// and is trying to correct
|
|
|
|
if (relink)
|
|
|
|
SV_LinkEdict (ent, true);
|
|
|
|
return true;
|
|
|
|
}
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorCopy (oldorg, ent->v->origin);
|
2004-08-23 00:15:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( (int)ent->v->flags & FL_PARTIALGROUND )
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
// Con_Printf ("back on ground\n");
|
2005-03-28 00:11:59 +00:00
|
|
|
ent->v->flags = (int)ent->v->flags & ~FL_PARTIALGROUND;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2005-03-28 00:11:59 +00:00
|
|
|
ent->v->groundentity = EDICT_TO_PROG(svprogfuncs, trace.ent);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
// the move is ok
|
|
|
|
if (relink)
|
|
|
|
SV_LinkEdict (ent, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
/*
|
|
|
|
======================
|
|
|
|
SV_StepDirection
|
|
|
|
|
|
|
|
Turns to the movement direction, and walks the current distance if
|
|
|
|
facing it.
|
|
|
|
|
|
|
|
======================
|
|
|
|
*/
|
|
|
|
void PF_changeyaw (progfuncs_t *prinst, struct globalvars_s *pr_globals);
|
|
|
|
qboolean SV_StepDirection (edict_t *ent, float yaw, float dist, struct globalvars_s *pr_globals)
|
|
|
|
{
|
|
|
|
vec3_t move, oldorigin;
|
|
|
|
float delta;
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
ent->v->ideal_yaw = yaw;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
PF_changeyaw(svprogfuncs, pr_globals);
|
|
|
|
|
|
|
|
yaw = yaw*M_PI*2 / 360;
|
|
|
|
move[0] = cos(yaw)*dist;
|
|
|
|
move[1] = sin(yaw)*dist;
|
|
|
|
move[2] = 0;
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorCopy (ent->v->origin, oldorigin);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (SV_movestep (ent, move, false, false, NULL))
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
delta = ent->v->angles[YAW] - ent->v->ideal_yaw;
|
2004-08-23 00:15:46 +00:00
|
|
|
if (delta > 45 && delta < 315)
|
|
|
|
{ // not turned far enough, so don't take the step
|
2005-03-28 00:11:59 +00:00
|
|
|
VectorCopy (oldorigin, ent->v->origin);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
SV_LinkEdict (ent, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
SV_LinkEdict (ent, true);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
======================
|
|
|
|
SV_FixCheckBottom
|
|
|
|
|
|
|
|
======================
|
|
|
|
*/
|
|
|
|
void SV_FixCheckBottom (edict_t *ent)
|
|
|
|
{
|
|
|
|
// Con_Printf ("SV_FixCheckBottom\n");
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
ent->v->flags = (int)ent->v->flags | FL_PARTIALGROUND;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
SV_NewChaseDir
|
|
|
|
|
|
|
|
================
|
|
|
|
*/
|
|
|
|
#define DI_NODIR -1
|
|
|
|
|
|
|
|
#define NEWSV_StepDirection(x, y, z, s) SV_StepDirection(x, y, z, s)
|
|
|
|
void SV_NewChaseDir (edict_t *actor, edict_t *enemy, float dist, struct globalvars_s *pr_globals)
|
|
|
|
{
|
|
|
|
float deltax,deltay;
|
|
|
|
float d[3];
|
|
|
|
float tdir, olddir, turnaround;
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
olddir = anglemod( (int)(actor->v->ideal_yaw/45)*45 );
|
2004-08-23 00:15:46 +00:00
|
|
|
turnaround = anglemod(olddir - 180);
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
deltax = enemy->v->origin[0] - actor->v->origin[0];
|
|
|
|
deltay = enemy->v->origin[1] - actor->v->origin[1];
|
2004-08-23 00:15:46 +00:00
|
|
|
if (deltax>10)
|
|
|
|
d[1]= 0;
|
|
|
|
else if (deltax<-10)
|
|
|
|
d[1]= 180;
|
|
|
|
else
|
|
|
|
d[1]= DI_NODIR;
|
|
|
|
if (deltay<-10)
|
|
|
|
d[2]= 270;
|
|
|
|
else if (deltay>10)
|
|
|
|
d[2]= 90;
|
|
|
|
else
|
|
|
|
d[2]= DI_NODIR;
|
|
|
|
|
|
|
|
// try direct route
|
|
|
|
if (d[1] != DI_NODIR && d[2] != DI_NODIR)
|
|
|
|
{
|
|
|
|
if (d[1] == 0)
|
|
|
|
tdir = d[2] == 90 ? 45 : 315;
|
|
|
|
else
|
|
|
|
tdir = d[2] == 90 ? 135 : 215;
|
|
|
|
|
|
|
|
if (tdir != turnaround && NEWSV_StepDirection(actor, tdir, dist, pr_globals))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// try other directions
|
|
|
|
if ( ((rand()&3) & 1) || abs(deltay)>abs(deltax))
|
|
|
|
{
|
|
|
|
tdir=d[1];
|
|
|
|
d[1]=d[2];
|
|
|
|
d[2]=tdir;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d[1]!=DI_NODIR && d[1]!=turnaround
|
|
|
|
&& NEWSV_StepDirection(actor, d[1], dist, pr_globals))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (d[2]!=DI_NODIR && d[2]!=turnaround
|
|
|
|
&& NEWSV_StepDirection(actor, d[2], dist, pr_globals))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* there is no direct path to the player, so pick another direction */
|
|
|
|
|
|
|
|
if (olddir!=DI_NODIR && NEWSV_StepDirection(actor, olddir, dist, pr_globals))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (rand()&1) /*randomly determine direction of search*/
|
|
|
|
{
|
|
|
|
for (tdir=0 ; tdir<=315 ; tdir += 45)
|
|
|
|
if (tdir!=turnaround && NEWSV_StepDirection(actor, tdir, dist, pr_globals) )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (tdir=315 ; tdir >=0 ; tdir -= 45)
|
|
|
|
if (tdir!=turnaround && NEWSV_StepDirection(actor, tdir, dist, pr_globals) )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (turnaround != DI_NODIR && NEWSV_StepDirection(actor, turnaround, dist, pr_globals) )
|
|
|
|
return;
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
actor->v->ideal_yaw = olddir; // can't move
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
// if a bridge was pulled out from underneath a monster, it may not have
|
|
|
|
// a valid standing position at all
|
|
|
|
|
|
|
|
if (!SV_CheckBottom (actor))
|
|
|
|
SV_FixCheckBottom (actor);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
======================
|
|
|
|
SV_CloseEnough
|
|
|
|
|
|
|
|
======================
|
|
|
|
*/
|
|
|
|
qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0 ; i<3 ; i++)
|
|
|
|
{
|
2005-03-28 00:11:59 +00:00
|
|
|
if (goal->v->absmin[i] > ent->v->absmax[i] + dist)
|
2004-08-23 00:15:46 +00:00
|
|
|
return false;
|
2005-03-28 00:11:59 +00:00
|
|
|
if (goal->v->absmax[i] < ent->v->absmin[i] - dist)
|
2004-08-23 00:15:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
======================
|
|
|
|
SV_MoveToGoal
|
|
|
|
|
|
|
|
======================
|
|
|
|
*/
|
|
|
|
void SV_MoveToGoal (progfuncs_t *prinst, struct globalvars_s *pr_globals)
|
|
|
|
{
|
|
|
|
edict_t *ent, *goal;
|
|
|
|
float dist;
|
|
|
|
|
|
|
|
ent = PROG_TO_EDICT(svprogfuncs, pr_global_struct->self);
|
2005-03-28 00:11:59 +00:00
|
|
|
goal = PROG_TO_EDICT(svprogfuncs, ent->v->goalentity);
|
2004-08-23 00:15:46 +00:00
|
|
|
dist = G_FLOAT(OFS_PARM0);
|
|
|
|
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( !( (int)ent->v->flags & (FL_ONGROUND|FL_FLY|FL_SWIM) ) )
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
G_FLOAT(OFS_RETURN) = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the next step hits the enemy, return immediately
|
2005-03-28 00:11:59 +00:00
|
|
|
if ( PROG_TO_EDICT(svprogfuncs, ent->v->enemy) != sv.edicts && SV_CloseEnough (ent, goal, dist) )
|
2004-08-23 00:15:46 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// bump around...
|
|
|
|
if ( (rand()&3)==1 ||
|
2005-03-28 00:11:59 +00:00
|
|
|
!NEWSV_StepDirection (ent, ent->v->ideal_yaw, dist, pr_globals))
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
SV_NewChaseDir (ent, goal, dist, pr_globals);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-29 01:21:00 +00:00
|
|
|
#endif
|