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
2006-02-17 19:54:47 +00:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
2004-08-23 00:15:46 +00:00
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_phys.c
# include "qwsvdef.h"
2011-10-29 19:01:33 +00:00
# if !defined(CLIENTONLY) || defined(CSQC_DAT)
2009-11-05 01:22:27 +00:00
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
# include "pr_common.h"
2004-08-23 00:15:46 +00:00
/*
pushmove objects do not obey gravity , and do not interact with each other or trigger fields , but block normal movement and push normal objects when they move .
2006-02-17 19:54:47 +00:00
onground is set for toss objects when they come to a complete rest . it is set for steping or walking objects
2004-08-23 00:15:46 +00:00
doors , plats , etc are SOLID_BSP , and MOVETYPE_PUSH
bonus items are SOLID_TRIGGER touch , and MOVETYPE_TOSS
corpses are SOLID_NOT and MOVETYPE_TOSS
crates are SOLID_BBOX and MOVETYPE_TOSS
walking monsters are SOLID_SLIDEBOX and MOVETYPE_STEP
flying / floating monsters are SOLID_SLIDEBOX and MOVETYPE_FLY
solid_edge items only clip against bsp models .
*/
2006-02-11 02:09:43 +00:00
cvar_t sv_maxvelocity = SCVAR ( " sv_maxvelocity " , " 2000 " ) ;
cvar_t sv_gravity = SCVAR ( " sv_gravity " , " 800 " ) ;
cvar_t sv_stopspeed = SCVAR ( " sv_stopspeed " , " 100 " ) ;
cvar_t sv_maxspeed = SCVAR ( " sv_maxspeed " , " 320 " ) ;
cvar_t sv_spectatormaxspeed = SCVAR ( " sv_spectatormaxspeed " , " 500 " ) ;
cvar_t sv_accelerate = SCVAR ( " sv_accelerate " , " 10 " ) ;
cvar_t sv_airaccelerate = SCVAR ( " sv_airaccelerate " , " 0.7 " ) ;
cvar_t sv_wateraccelerate = SCVAR ( " sv_wateraccelerate " , " 10 " ) ;
cvar_t sv_friction = SCVAR ( " sv_friction " , " 4 " ) ;
cvar_t sv_waterfriction = SCVAR ( " sv_waterfriction " , " 4 " ) ;
2006-02-17 19:54:47 +00:00
cvar_t sv_gameplayfix_noairborncorpse = SCVAR ( " sv_gameplayfix_noairborncorpse " , " 0 " ) ;
2011-10-29 19:01:33 +00:00
cvar_t sv_gameplayfix_multiplethinks = CVARD ( " sv_gameplayfix_multiplethinks " , " 1 " , " Enables multiple thinks per entity per frame so small nextthink times are accurate. QuakeWorld mods expect a value of 1. " ) ;
2010-12-18 17:02:47 +00:00
cvar_t sv_sound_watersplash = CVAR ( " sv_sound_watersplash " , " misc/h2ohit1.wav " ) ;
2011-09-03 03:49:43 +00:00
cvar_t sv_sound_land = CVAR ( " sv_sound_land " , " demon/dland2.wav " ) ;
2011-10-29 19:01:33 +00:00
cvar_t sv_stepheight = CVARAF ( " pm_stepheight " , " 18 " ,
" sv_stepheight " , CVAR_SERVERINFO ) ;
2006-02-11 02:09:43 +00:00
2006-05-25 23:08:37 +00:00
cvar_t pm_ktjump = SCVARF ( " pm_ktjump " , " 0 " , CVAR_SERVERINFO ) ;
cvar_t pm_bunnyspeedcap = SCVARF ( " pm_bunnyspeedcap " , " 0 " , CVAR_SERVERINFO ) ;
cvar_t pm_slidefix = SCVARF ( " pm_slidefix " , " 0 " , CVAR_SERVERINFO ) ;
cvar_t pm_slidyslopes = SCVARF ( " pm_slidyslopes " , " 0 " , CVAR_SERVERINFO ) ;
cvar_t pm_airstep = SCVARF ( " pm_airstep " , " 0 " , CVAR_SERVERINFO ) ;
cvar_t pm_walljump = SCVARF ( " pm_walljump " , " 0 " , CVAR_SERVERINFO ) ;
2004-08-23 00:15:46 +00:00
2011-10-29 19:01:33 +00:00
# define cvargroup_serverphysics "server physics variables"
void WPhys_Init ( void )
{
Cvar_Register ( & sv_maxvelocity , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_gravity , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_stopspeed , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_maxspeed , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_spectatormaxspeed , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_accelerate , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_airaccelerate , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_wateraccelerate , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_friction , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_waterfriction , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_sound_watersplash , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_sound_land , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_stepheight , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_gameplayfix_noairborncorpse , cvargroup_serverphysics ) ;
Cvar_Register ( & sv_gameplayfix_multiplethinks , cvargroup_serverphysics ) ;
}
2004-08-23 00:15:46 +00:00
# define MOVE_EPSILON 0.01
2011-10-29 19:01:33 +00:00
static void WPhys_Physics_Toss ( world_t * w , wedict_t * ent ) ;
2012-02-17 01:12:37 +00:00
const vec3_t standardgravity = { 0 , 0 , - 1 } ;
2004-08-23 00:15:46 +00:00
2011-05-15 13:23:13 +00:00
// warning: <20> SV_CheckAllEnts<74> defined but not used
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = =
SV_CheckAllEnts
= = = = = = = = = = = = = = = =
2011-05-15 13:23:13 +00:00
2010-07-11 10:53:13 +00:00
static void SV_CheckAllEnts ( void )
2004-08-23 00:15:46 +00:00
{
int e ;
edict_t * check ;
// see if any solid entities are inside the final position
2009-11-04 21:16:50 +00:00
for ( e = 1 ; e < sv . world . num_edicts ; e + + )
2004-08-23 00:15:46 +00:00
{
check = EDICT_NUM ( svprogfuncs , e ) ;
if ( check - > isfree )
continue ;
2005-03-28 00:11:59 +00:00
if ( check - > v - > movetype = = MOVETYPE_PUSH
| | check - > v - > movetype = = MOVETYPE_NONE
| | check - > v - > movetype = = MOVETYPE_FOLLOW
2011-02-27 15:01:56 +00:00
| | check - > v - > movetype = = MOVETYPE_NOCLIP
| | check - > v - > movetype = = MOVETYPE_ANGLENOCLIP )
2004-08-23 00:15:46 +00:00
continue ;
2009-11-04 21:16:50 +00:00
if ( World_TestEntityPosition ( & sv . world , ( wedict_t * ) check ) )
2004-08-23 00:15:46 +00:00
Con_Printf ( " entity in invalid position \n " ) ;
}
}
2011-05-15 13:23:13 +00:00
*/
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = =
SV_CheckVelocity
= = = = = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
void WPhys_CheckVelocity ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
int i ;
//
// bound velocity
//
for ( i = 0 ; i < 3 ; i + + )
{
2005-03-28 00:11:59 +00:00
if ( IS_NAN ( ent - > v - > velocity [ i ] ) )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
Con_Printf ( " Got a NaN velocity on %s \n " , PR_GetString ( w - > progs , ent - > v - > classname ) ) ;
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ i ] = 0 ;
2004-08-23 00:15:46 +00:00
}
2005-03-28 00:11:59 +00:00
if ( IS_NAN ( ent - > v - > origin [ i ] ) )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
Con_Printf ( " Got a NaN origin on %s \n " , PR_GetString ( w - > progs , ent - > v - > classname ) ) ;
2005-03-28 00:11:59 +00:00
ent - > v - > origin [ i ] = 0 ;
2004-08-23 00:15:46 +00:00
}
}
2005-03-28 00:11:59 +00:00
if ( Length ( ent - > v - > velocity ) > sv_maxvelocity . value )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
// Con_DPrintf("Slowing %s\n", PR_GetString(w->progs, ent->v->classname));
2005-03-28 00:11:59 +00:00
VectorScale ( ent - > v - > velocity , sv_maxvelocity . value / Length ( ent - > v - > velocity ) , ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
}
}
/*
= = = = = = = = = = = = =
SV_RunThink
Runs thinking code if time . There is some play in the exact time the think
function will be called , because it is called before any movement is done
in a frame . Not used for pushmove objects , because they must be exact .
Returns false if the entity removed itself .
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
qboolean WPhys_RunThink ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
float thinktime ;
2011-10-29 19:01:33 +00:00
if ( ! sv_gameplayfix_multiplethinks . ival ) //try and imitate nq as closeley as possible
2005-08-26 22:56:51 +00:00
{
thinktime = ent - > v - > nextthink ;
2011-09-03 03:49:43 +00:00
if ( thinktime < = 0 | | thinktime > w - > physicstime + host_frametime )
2005-08-26 22:56:51 +00:00
return true ;
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
if ( thinktime < w - > physicstime )
thinktime = w - > physicstime ; // don't let things stay in the past.
2005-08-26 22:56:51 +00:00
// it is possible to start that way
// by a trigger with a local time.
ent - > v - > nextthink = 0 ;
2011-09-03 03:49:43 +00:00
* w - > g . time = thinktime ;
w - > Event_Think ( w , ent ) ;
2005-08-26 22:56:51 +00:00
return ! ent - > isfree ;
}
2004-08-23 00:15:46 +00:00
do
{
2005-03-28 00:11:59 +00:00
thinktime = ent - > v - > nextthink ;
2004-08-23 00:15:46 +00:00
if ( thinktime < = 0 )
return true ;
2011-09-03 03:49:43 +00:00
if ( thinktime > w - > physicstime + host_frametime )
2004-08-23 00:15:46 +00:00
return true ;
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
if ( thinktime < w - > physicstime )
thinktime = w - > physicstime ; // don't let things stay in the past.
2004-08-23 00:15:46 +00:00
// it is possible to start that way
// by a trigger with a local time.
2005-03-28 00:11:59 +00:00
ent - > v - > nextthink = 0 ;
2004-08-23 00:15:46 +00:00
2011-09-03 03:49:43 +00:00
* w - > g . time = thinktime ;
w - > Event_Think ( w , ent ) ;
2004-08-23 00:15:46 +00:00
if ( ent - > isfree )
return false ;
2005-03-28 00:11:59 +00:00
if ( ent - > v - > nextthink < = thinktime ) //hmm... infinate loop was possible here.. Quite a few non-QW mods do this.
2004-08-23 00:15:46 +00:00
return true ;
} while ( 1 ) ;
return true ;
}
/*
= = = = = = = = = = = = = = = = = =
SV_Impact
Two entities have touched , so run their touch functions
= = = = = = = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_Impact ( world_t * w , wedict_t * e1 , wedict_t * e2 )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
* w - > g . time = w - > physicstime ;
2005-03-28 00:11:59 +00:00
if ( e1 - > v - > touch & & e1 - > v - > solid ! = SOLID_NOT )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
w - > Event_Touch ( w , e1 , e2 ) ;
2004-08-23 00:15:46 +00:00
}
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( e2 - > v - > touch & & e2 - > v - > solid ! = SOLID_NOT )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
w - > Event_Touch ( w , e2 , e1 ) ;
2004-08-23 00:15:46 +00:00
}
}
/*
= = = = = = = = = = = = = = = = = =
ClipVelocity
Slide off of the impacting object
= = = = = = = = = = = = = = = = = =
*/
# define STOP_EPSILON 0.1
2004-09-22 15:29:33 +00:00
//courtesy of darkplaces, it's just more efficient.
2010-07-11 10:53:13 +00:00
static void ClipVelocity ( vec3_t in , vec3_t normal , vec3_t out , float overbounce )
2004-08-23 00:15:46 +00:00
{
2004-09-22 15:29:33 +00:00
int i ;
float backoff ;
2004-08-23 00:15:46 +00:00
2004-09-22 15:29:33 +00:00
backoff = - DotProduct ( in , normal ) * overbounce ;
VectorMA ( in , backoff , normal , out ) ;
for ( i = 0 ; i < 3 ; i + + )
2004-08-23 00:15:46 +00:00
if ( out [ i ] > - STOP_EPSILON & & out [ i ] < STOP_EPSILON )
out [ i ] = 0 ;
}
2004-09-22 15:29:33 +00:00
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = =
SV_FlyMove
The basic solid body movement clip that slides along multiple planes
Returns the clipflags if the velocity was modified ( hit something solid )
1 = floor
2 = wall / step
4 = dead stop
If steptrace is not NULL , the trace of any vertical wall hit will be stored
= = = = = = = = = = = =
*/
# define MAX_CLIP_PLANES 5
2012-02-17 01:12:37 +00:00
static int WPhys_FlyMove ( world_t * w , wedict_t * ent , const vec3_t gravitydir , float time , trace_t * steptrace )
2004-08-23 00:15:46 +00:00
{
int bumpcount , numbumps ;
vec3_t dir ;
float d ;
int numplanes ;
vec3_t planes [ MAX_CLIP_PLANES ] ;
vec3_t primal_velocity , original_velocity , new_velocity ;
int i , j ;
trace_t trace ;
vec3_t end ;
float time_left ;
int blocked ;
2004-11-19 17:43:55 +00:00
vec3_t diff ;
2005-05-15 18:49:04 +00:00
vec3_t startorg ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
numbumps = 4 ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
blocked = 0 ;
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > velocity , original_velocity ) ;
VectorCopy ( ent - > v - > velocity , primal_velocity ) ;
2004-08-23 00:15:46 +00:00
numplanes = 0 ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
time_left = time ;
2005-05-15 18:49:04 +00:00
VectorCopy ( ent - > v - > origin , startorg ) ;
2004-08-23 00:15:46 +00:00
for ( bumpcount = 0 ; bumpcount < numbumps ; bumpcount + + )
{
for ( i = 0 ; i < 3 ; i + + )
2005-03-28 00:11:59 +00:00
end [ i ] = ent - > v - > origin [ i ] + time_left * ent - > v - > velocity [ i ] ;
2004-08-23 00:15:46 +00:00
2011-09-03 03:49:43 +00:00
trace = World_Move ( w , ent - > v - > origin , ent - > v - > mins , ent - > v - > maxs , end , false , ( wedict_t * ) ent ) ;
2004-08-23 00:15:46 +00:00
2004-12-08 04:14:52 +00:00
if ( trace . startsolid )
2004-08-23 00:15:46 +00:00
{ // entity is trapped in another solid
2006-05-29 04:50:24 +00:00
VectorClear ( ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
return 3 ;
}
if ( trace . fraction > 0 )
{ // actually covered some distance
2005-03-28 00:11:59 +00:00
VectorCopy ( trace . endpos , ent - > v - > origin ) ;
VectorCopy ( ent - > v - > velocity , original_velocity ) ;
2004-08-23 00:15:46 +00:00
numplanes = 0 ;
}
if ( trace . fraction = = 1 )
break ; // moved the entire distance
if ( ! trace . ent )
2011-10-29 19:01:33 +00:00
Host_Error ( " SV_FlyMove: !trace.ent " ) ;
2004-08-23 00:15:46 +00:00
2012-02-17 01:12:37 +00:00
if ( - DotProduct ( gravitydir , trace . plane . normal ) > 0.7 )
2004-08-23 00:15:46 +00:00
{
blocked | = 1 ; // floor
2011-10-29 19:01:33 +00:00
if ( ( ( wedict_t * ) trace . ent ) - > v - > solid = = SOLID_BSP )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
ent - > v - > flags = ( int ) ent - > v - > flags | FL_ONGROUND ;
2011-09-03 03:49:43 +00:00
ent - > v - > groundentity = EDICT_TO_PROG ( w - > progs , trace . ent ) ;
2004-08-23 00:15:46 +00:00
}
}
2012-02-17 01:12:37 +00:00
if ( ! DotProduct ( gravitydir , trace . plane . normal ) )
2004-08-23 00:15:46 +00:00
{
blocked | = 2 ; // step
if ( steptrace )
* steptrace = trace ; // save for player extrafriction
}
//
// run the impact function
//
2011-09-03 03:49:43 +00:00
WPhys_Impact ( w , ent , trace . ent ) ;
2004-08-23 00:15:46 +00:00
if ( ent - > isfree )
break ; // removed by the impact function
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
time_left - = time_left * trace . fraction ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// cliped to another plane
if ( numplanes > = MAX_CLIP_PLANES )
{ // this shouldn't really happen
2006-05-29 04:50:24 +00:00
VectorClear ( ent - > v - > velocity ) ;
2004-11-19 17:43:55 +00:00
if ( steptrace )
* steptrace = trace ; // save for player extrafriction
2004-08-23 00:15:46 +00:00
return 3 ;
}
2004-10-03 22:52:02 +00:00
if ( 0 )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
ClipVelocity ( ent - > v - > velocity , trace . plane . normal , ent - > v - > velocity , 1 ) ;
2004-09-22 15:29:33 +00:00
break ;
2004-08-23 00:15:46 +00:00
}
else
2004-09-22 15:29:33 +00:00
{
2004-12-24 09:10:39 +00:00
if ( numplanes )
{
VectorSubtract ( planes [ 0 ] , trace . plane . normal , diff ) ;
if ( Length ( diff ) < 0.01 )
continue ; //hit this plane already
}
2004-11-19 17:43:55 +00:00
2004-09-22 15:29:33 +00:00
VectorCopy ( trace . plane . normal , planes [ numplanes ] ) ;
numplanes + + ;
//
// modify original_velocity so it parallels all of the clip planes
//
for ( i = 0 ; i < numplanes ; i + + )
2004-08-23 00:15:46 +00:00
{
2004-09-22 15:29:33 +00:00
ClipVelocity ( original_velocity , planes [ i ] , new_velocity , 1 ) ;
for ( j = 0 ; j < numplanes ; j + + )
if ( j ! = i )
{
if ( DotProduct ( new_velocity , planes [ j ] ) < 0 )
break ; // not ok
}
if ( j = = numplanes )
break ;
}
2004-11-19 17:43:55 +00:00
2004-09-22 15:29:33 +00:00
if ( i ! = numplanes )
{ // go along this plane
2005-03-28 00:11:59 +00:00
// Con_Printf ("%5.1f %5.1f %5.1f ",ent->v->velocity[0], ent->v->velocity[1], ent->v->velocity[2]);
VectorCopy ( new_velocity , ent - > v - > velocity ) ;
// Con_Printf ("%5.1f %5.1f %5.1f\n",ent->v->velocity[0], ent->v->velocity[1], ent->v->velocity[2]);
2004-09-22 15:29:33 +00:00
}
else
{ // go along the crease
if ( numplanes ! = 2 )
{
2004-10-18 10:50:23 +00:00
// Con_Printf ("clip velocity, numplanes == %i\n",numplanes);
2005-03-28 00:11:59 +00:00
// Con_Printf ("%5.1f %5.1f %5.1f ",ent->v->velocity[0], ent->v->velocity[1], ent->v->velocity[2]);
2006-05-29 04:50:24 +00:00
VectorClear ( ent - > v - > velocity ) ;
2005-03-28 00:11:59 +00:00
// Con_Printf ("%5.1f %5.1f %5.1f\n",ent->v->velocity[0], ent->v->velocity[1], ent->v->velocity[2]);
2004-09-22 15:29:33 +00:00
return 7 ;
}
2005-03-28 00:11:59 +00:00
// Con_Printf ("%5.1f %5.1f %5.1f ",ent->v->velocity[0], ent->v->velocity[1], ent->v->velocity[2]);
2004-09-22 15:29:33 +00:00
CrossProduct ( planes [ 0 ] , planes [ 1 ] , dir ) ;
VectorNormalize ( dir ) ; //fixes slow falling in corners
2005-03-28 00:11:59 +00:00
d = DotProduct ( dir , ent - > v - > velocity ) ;
VectorScale ( dir , d , ent - > v - > velocity ) ;
// Con_Printf ("%5.1f %5.1f %5.1f\n",ent->v->velocity[0], ent->v->velocity[1], ent->v->velocity[2]);
2004-08-23 00:15:46 +00:00
}
}
//
// if original velocity is against the original velocity, stop dead
// to avoid tiny occilations in sloping corners
//
2005-03-28 00:11:59 +00:00
if ( DotProduct ( ent - > v - > velocity , primal_velocity ) < = 0 )
2004-08-23 00:15:46 +00:00
{
2006-05-29 04:50:24 +00:00
VectorClear ( ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
return blocked ;
}
}
return blocked ;
}
/*
= = = = = = = = = = = =
SV_AddGravity
= = = = = = = = = = = =
*/
2012-02-17 01:12:37 +00:00
static void WPhys_AddGravity ( world_t * w , wedict_t * ent , const float * gravitydir , float scale )
2004-08-23 00:15:46 +00:00
{
2012-02-12 05:18:31 +00:00
if ( ! scale )
scale = w - > defaultgravityscale ;
2012-02-17 01:12:37 +00:00
VectorMA ( ent - > v - > velocity , scale * movevars . gravity * host_frametime , gravitydir , ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
PUSHMOVE
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
*/
/*
= = = = = = = = = = = =
SV_PushEntity
Does not change the entities velocity at all
= = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static trace_t WPhys_PushEntity ( world_t * w , wedict_t * ent , vec3_t push , unsigned int traceflags )
2004-08-23 00:15:46 +00:00
{
trace_t trace ;
vec3_t end ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
VectorAdd ( ent - > v - > origin , push , end ) ;
2004-08-23 00:15:46 +00:00
2012-01-17 07:57:46 +00:00
if ( ( int ) ent - > v - > flags & FLQW_LAGGEDMOVE )
2009-11-04 21:16:50 +00:00
traceflags | = MOVE_LAGGED ;
2005-03-28 00:11:59 +00:00
if ( ent - > v - > movetype = = MOVETYPE_FLYMISSILE )
2011-09-03 03:49:43 +00:00
trace = World_Move ( w , ent - > v - > origin , ent - > v - > mins , ent - > v - > maxs , end , MOVE_MISSILE | traceflags , ( wedict_t * ) ent ) ;
2005-03-28 00:11:59 +00:00
else if ( ent - > v - > solid = = SOLID_TRIGGER | | ent - > v - > solid = = SOLID_NOT )
2004-08-23 00:15:46 +00:00
// only clip against bmodels
2011-09-03 03:49:43 +00:00
trace = World_Move ( w , ent - > v - > origin , ent - > v - > mins , ent - > v - > maxs , end , MOVE_NOMONSTERS | traceflags , ( wedict_t * ) ent ) ;
2004-08-23 00:15:46 +00:00
else
2011-09-03 03:49:43 +00:00
trace = World_Move ( w , ent - > v - > origin , ent - > v - > mins , ent - > v - > maxs , end , MOVE_NORMAL | traceflags , ( wedict_t * ) ent ) ;
2006-02-17 19:54:47 +00:00
2012-01-17 07:57:46 +00:00
/*hexen2's movetype_swim does not allow swimming entities to move out of water. this implementation is quite hacky, but matches hexen2 well enough*/
if ( ent - > v - > movetype = = MOVETYPE_H2SWIM )
{
if ( ! ( w - > worldmodel - > funcs . PointContents ( w - > worldmodel , NULL , trace . endpos ) & ( FTECONTENTS_WATER | FTECONTENTS_SLIME | FTECONTENTS_LAVA ) ) )
{
VectorCopy ( ent - > v - > origin , trace . endpos ) ;
trace . fraction = 0 ;
trace . ent = w - > edicts ;
}
}
2004-08-23 00:15:46 +00:00
// if (trace.ent)
2005-03-28 00:11:59 +00:00
// VectorMA(trace.endpos, sv_impactpush.value, trace.plane.normal, ent->v->origin);
2004-08-23 00:15:46 +00:00
// else
2005-03-28 00:11:59 +00:00
VectorCopy ( trace . endpos , ent - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ent , true ) ;
2004-08-23 00:15:46 +00:00
if ( trace . ent )
2011-09-03 03:49:43 +00:00
WPhys_Impact ( w , ent , trace . ent ) ;
2004-08-23 00:15:46 +00:00
return trace ;
2006-02-17 19:54:47 +00:00
}
2004-08-23 00:15:46 +00:00
typedef struct
{
2011-09-03 03:49:43 +00:00
wedict_t * ent ;
2004-08-23 00:15:46 +00:00
vec3_t origin ;
vec3_t angles ;
// float deltayaw;
} pushed_t ;
2010-07-11 10:53:13 +00:00
static pushed_t pushed [ MAX_EDICTS ] , * pushed_p ;
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = =
SV_Push
Objects need to be moved back on a failed push ,
otherwise riders would continue to slide .
= = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static qboolean WPhys_PushAngles ( world_t * w , wedict_t * pusher , vec3_t move , vec3_t amove )
2004-08-23 00:15:46 +00:00
{
int i , e ;
2011-09-03 03:49:43 +00:00
wedict_t * check , * block ;
2004-08-23 00:15:46 +00:00
vec3_t mins , maxs ;
2012-02-12 05:18:31 +00:00
//float oldsolid;
2004-08-23 00:15:46 +00:00
pushed_t * p ;
vec3_t org , org2 , move2 , forward , right , up ;
pushed_p = pushed ;
// find the bounding box
for ( i = 0 ; i < 3 ; i + + )
{
2005-03-28 00:11:59 +00:00
mins [ i ] = pusher - > v - > absmin [ i ] + move [ i ] ;
maxs [ i ] = pusher - > v - > absmax [ i ] + move [ i ] ;
2004-08-23 00:15:46 +00:00
}
// we need this for pushing things later
2006-05-29 04:50:24 +00:00
VectorNegate ( amove , org ) ;
2004-08-23 00:15:46 +00:00
AngleVectors ( org , forward , right , up ) ;
// save the pusher's original position
pushed_p - > ent = pusher ;
2005-03-28 00:11:59 +00:00
VectorCopy ( pusher - > v - > origin , pushed_p - > origin ) ;
VectorCopy ( pusher - > v - > angles , pushed_p - > angles ) ;
2004-08-23 00:15:46 +00:00
pushed_p + + ;
// move the pusher to it's final position
2005-03-28 00:11:59 +00:00
VectorAdd ( pusher - > v - > origin , move , pusher - > v - > origin ) ;
VectorAdd ( pusher - > v - > angles , amove , pusher - > v - > angles ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , pusher , false ) ;
2004-08-23 00:15:46 +00:00
// see if any solid entities are inside the final position
2011-09-03 03:49:43 +00:00
for ( e = 1 ; e < w - > num_edicts ; e + + )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
check = WEDICT_NUM ( w - > progs , e ) ;
2004-08-23 00:15:46 +00:00
if ( check - > isfree )
continue ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( check - > v - > movetype = = MOVETYPE_PUSH
| | check - > v - > movetype = = MOVETYPE_NONE
2011-02-27 15:01:56 +00:00
| | check - > v - > movetype = = MOVETYPE_NOCLIP
| | check - > v - > movetype = = MOVETYPE_ANGLENOCLIP )
2004-08-23 00:15:46 +00:00
continue ;
2012-02-12 05:18:31 +00:00
/*
2005-03-28 00:11:59 +00:00
oldsolid = pusher - > v - > solid ;
pusher - > v - > solid = SOLID_NOT ;
2011-09-03 03:49:43 +00:00
block = World_TestEntityPosition ( w , check ) ;
2005-03-28 00:11:59 +00:00
pusher - > v - > solid = oldsolid ;
2004-08-23 00:15:46 +00:00
if ( block )
continue ;
2012-02-12 05:18:31 +00:00
*/
2004-08-23 00:15:46 +00:00
// if the entity is standing on the pusher, it will definitely be moved
2005-03-28 00:11:59 +00:00
if ( ! ( ( ( int ) check - > v - > flags & FL_ONGROUND )
2011-09-03 03:49:43 +00:00
& & PROG_TO_WEDICT ( w - > progs , check - > v - > groundentity ) = = pusher ) )
2004-08-23 00:15:46 +00:00
{
// see if the ent needs to be tested
2005-03-28 00:11:59 +00:00
if ( check - > v - > absmin [ 0 ] > = maxs [ 0 ]
| | check - > v - > absmin [ 1 ] > = maxs [ 1 ]
| | check - > v - > absmin [ 2 ] > = maxs [ 2 ]
| | check - > v - > absmax [ 0 ] < = mins [ 0 ]
| | check - > v - > absmax [ 1 ] < = mins [ 1 ]
| | check - > v - > absmax [ 2 ] < = mins [ 2 ] )
2004-08-23 00:15:46 +00:00
continue ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// see if the ent's bbox is inside the pusher's final position
2011-09-03 03:49:43 +00:00
if ( ! World_TestEntityPosition ( w , ( wedict_t * ) check ) )
2004-08-23 00:15:46 +00:00
continue ;
}
2011-09-03 03:49:43 +00:00
if ( ( pusher - > v - > movetype = = MOVETYPE_PUSH ) | | ( PROG_TO_WEDICT ( w - > progs , check - > v - > groundentity ) = = pusher ) )
2004-08-23 00:15:46 +00:00
{
// move this entity
pushed_p - > ent = check ;
2005-03-28 00:11:59 +00:00
VectorCopy ( check - > v - > origin , pushed_p - > origin ) ;
VectorCopy ( check - > v - > angles , pushed_p - > angles ) ;
2004-08-23 00:15:46 +00:00
pushed_p + + ;
2006-02-17 19:54:47 +00:00
// try moving the contacted entity
2005-03-28 00:11:59 +00:00
VectorAdd ( check - > v - > origin , move , check - > v - > origin ) ;
VectorAdd ( check - > v - > angles , amove , check - > v - > angles ) ;
2004-08-23 00:15:46 +00:00
// figure movement due to the pusher's amove
2005-03-28 00:11:59 +00:00
VectorSubtract ( check - > v - > origin , pusher - > v - > origin , org ) ;
2004-08-23 00:15:46 +00:00
org2 [ 0 ] = DotProduct ( org , forward ) ;
2006-10-15 03:30:56 +00:00
org2 [ 1 ] = - DotProduct ( org , right ) ;
2004-08-23 00:15:46 +00:00
org2 [ 2 ] = DotProduct ( org , up ) ;
VectorSubtract ( org2 , org , move2 ) ;
2005-03-28 00:11:59 +00:00
VectorAdd ( check - > v - > origin , move2 , check - > v - > origin ) ;
2004-08-23 00:15:46 +00:00
2006-02-17 19:54:47 +00:00
check - > v - > flags = ( int ) check - > v - > flags & ~ FL_ONGROUND ;
2004-08-23 00:15:46 +00:00
// may have pushed them off an edge
2011-09-03 03:49:43 +00:00
if ( PROG_TO_WEDICT ( w - > progs , check - > v - > groundentity ) ! = pusher )
2005-03-28 00:11:59 +00:00
check - > v - > groundentity = 0 ;
2004-08-23 00:15:46 +00:00
2011-09-03 03:49:43 +00:00
block = World_TestEntityPosition ( w , check ) ;
2004-08-23 00:15:46 +00:00
if ( ! block )
{ // pushed ok
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , check , false ) ;
2004-08-23 00:15:46 +00:00
// impact?
continue ;
}
// if it is ok to leave in the old position, do it
// this is only relevent for riding entities, not pushed
// FIXME: this doesn't acount for rotation
2005-03-28 00:11:59 +00:00
VectorSubtract ( check - > v - > origin , move , check - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
block = World_TestEntityPosition ( w , check ) ;
2004-08-23 00:15:46 +00:00
if ( ! block )
{
pushed_p - - ;
continue ;
}
}
// if it is sitting on top. Do not block.
2005-03-28 00:11:59 +00:00
if ( check - > v - > mins [ 0 ] = = check - > v - > maxs [ 0 ] )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , check , false ) ;
2004-08-23 00:15:46 +00:00
continue ;
}
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
// Con_Printf("Pusher hit %s\n", PR_GetString(w->progs, check->v->classname));
2005-03-28 00:11:59 +00:00
if ( pusher - > v - > blocked )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
* w - > g . self = EDICT_TO_PROG ( w - > progs , pusher ) ;
* w - > g . other = EDICT_TO_PROG ( w - > progs , check ) ;
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
2011-09-03 03:49:43 +00:00
if ( w = = & sv . world & & svs . gametype = = GT_Q1QVM )
2007-09-02 19:55:17 +00:00
Q1QVM_Blocked ( ) ;
else
# endif
2011-09-03 03:49:43 +00:00
PR_ExecuteProgram ( w - > progs , pusher - > v - > blocked ) ;
2004-08-23 00:15:46 +00:00
}
// move back any entities we already moved
// go backwards, so if the same entity was pushed
// twice, it goes back to the original position
for ( p = pushed_p - 1 ; p > = pushed ; p - - )
{
2005-03-28 00:11:59 +00:00
VectorCopy ( p - > origin , p - > ent - > v - > origin ) ;
VectorCopy ( p - > angles , p - > ent - > v - > angles ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , p - > ent , false ) ;
2004-08-23 00:15:46 +00:00
}
return false ;
}
//FIXME: is there a better way to handle this?
// see if anything we moved has touched a trigger
for ( p = pushed_p - 1 ; p > = pushed ; p - - )
2011-09-03 03:49:43 +00:00
World_TouchLinks ( w , p - > ent , w - > areanodes ) ;
2004-08-23 00:15:46 +00:00
return true ;
}
/*
= = = = = = = = = = = =
SV_Push
= = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static qboolean WPhys_Push ( world_t * w , wedict_t * pusher , vec3_t move , vec3_t amove )
2004-08-23 00:15:46 +00:00
{
int i , e ;
2011-09-03 03:49:43 +00:00
wedict_t * check , * block ;
2004-08-23 00:15:46 +00:00
vec3_t mins , maxs ;
vec3_t pushorig ;
int num_moved ;
2011-09-03 03:49:43 +00:00
wedict_t * moved_edict [ MAX_EDICTS ] ;
2004-08-23 00:15:46 +00:00
vec3_t moved_from [ MAX_EDICTS ] ;
float oldsolid ;
if ( amove [ 0 ] | | amove [ 1 ] | | amove [ 2 ] )
{
2011-09-03 03:49:43 +00:00
return WPhys_PushAngles ( w , pusher , move , amove ) ;
2004-08-23 00:15:46 +00:00
}
for ( i = 0 ; i < 3 ; i + + )
{
2005-03-28 00:11:59 +00:00
mins [ i ] = pusher - > v - > absmin [ i ] + move [ i ] ;
maxs [ i ] = pusher - > v - > absmax [ i ] + move [ i ] ;
2004-08-23 00:15:46 +00:00
}
2005-03-28 00:11:59 +00:00
VectorCopy ( pusher - > v - > origin , pushorig ) ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// move the pusher to it's final position
2005-03-28 00:11:59 +00:00
VectorAdd ( pusher - > v - > origin , move , pusher - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , pusher , false ) ;
2004-08-23 00:15:46 +00:00
// see if any solid entities are inside the final position
num_moved = 0 ;
2011-09-03 03:49:43 +00:00
for ( e = 1 ; e < w - > num_edicts ; e + + )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
check = WEDICT_NUM ( w - > progs , e ) ;
2004-08-23 00:15:46 +00:00
if ( check - > isfree )
continue ;
2005-03-28 00:11:59 +00:00
if ( check - > v - > movetype = = MOVETYPE_PUSH
| | check - > v - > movetype = = MOVETYPE_NONE
| | check - > v - > movetype = = MOVETYPE_FOLLOW
2011-02-27 15:01:56 +00:00
| | check - > v - > movetype = = MOVETYPE_NOCLIP
| | check - > v - > movetype = = MOVETYPE_ANGLENOCLIP )
2004-08-23 00:15:46 +00:00
continue ;
// if the entity is standing on the pusher, it will definately be moved
2005-03-28 00:11:59 +00:00
if ( ! ( ( ( int ) check - > v - > flags & FL_ONGROUND )
2006-02-17 19:54:47 +00:00
& &
2011-09-03 03:49:43 +00:00
PROG_TO_WEDICT ( w - > progs , check - > v - > groundentity ) = = pusher ) )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
if ( check - > v - > absmin [ 0 ] > = maxs [ 0 ]
| | check - > v - > absmin [ 1 ] > = maxs [ 1 ]
| | check - > v - > absmin [ 2 ] > = maxs [ 2 ]
| | check - > v - > absmax [ 0 ] < = mins [ 0 ]
| | check - > v - > absmax [ 1 ] < = mins [ 1 ]
| | check - > v - > absmax [ 2 ] < = mins [ 2 ] )
2004-08-23 00:15:46 +00:00
continue ;
// see if the ent's bbox is inside the pusher's final position
2011-09-03 03:49:43 +00:00
if ( ! World_TestEntityPosition ( w , check ) )
2004-08-23 00:15:46 +00:00
continue ;
}
2010-07-11 02:22:39 +00:00
oldsolid = pusher - > v - > solid ;
pusher - > v - > solid = SOLID_NOT ;
2011-09-03 03:49:43 +00:00
block = World_TestEntityPosition ( w , check ) ;
2010-07-11 02:22:39 +00:00
pusher - > v - > solid = oldsolid ;
if ( block )
continue ;
2005-03-28 00:11:59 +00:00
VectorCopy ( check - > v - > origin , moved_from [ num_moved ] ) ;
2004-08-23 00:15:46 +00:00
moved_edict [ num_moved ] = check ;
num_moved + + ;
2006-04-06 20:47:18 +00:00
// check->v->flags = (int)check->v->flags & ~FL_ONGROUND;
2006-02-17 19:54:47 +00:00
// try moving the contacted entity
2005-03-28 00:11:59 +00:00
VectorAdd ( check - > v - > origin , move , check - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
block = World_TestEntityPosition ( w , check ) ;
2004-08-23 00:15:46 +00:00
if ( ! block )
{ // pushed ok
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , check , false ) ;
2004-08-23 00:15:46 +00:00
continue ;
}
// if it is ok to leave in the old position, do it
2005-03-28 00:11:59 +00:00
VectorSubtract ( check - > v - > origin , move , check - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
block = World_TestEntityPosition ( w , check ) ;
2004-08-23 00:15:46 +00:00
if ( ! block )
{
2006-09-17 00:59:22 +00:00
//if leaving it where it was, allow it to drop to the floor again (useful for plats that move downward)
check - > v - > flags = ( int ) check - > v - > flags & ~ FL_ONGROUND ;
2004-08-23 00:15:46 +00:00
num_moved - - ;
continue ;
}
// if it is still inside the pusher, block
2005-03-28 00:11:59 +00:00
if ( check - > v - > mins [ 0 ] = = check - > v - > maxs [ 0 ] )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , check , false ) ;
2004-08-23 00:15:46 +00:00
continue ;
}
2005-03-28 00:11:59 +00:00
if ( check - > v - > solid = = SOLID_NOT | | check - > v - > solid = = SOLID_TRIGGER )
2004-08-23 00:15:46 +00:00
{ // corpse
2005-03-28 00:11:59 +00:00
check - > v - > mins [ 0 ] = check - > v - > mins [ 1 ] = 0 ;
VectorCopy ( check - > v - > mins , check - > v - > maxs ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , check , false ) ;
2004-08-23 00:15:46 +00:00
continue ;
}
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
VectorCopy ( pushorig , pusher - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , pusher , false ) ;
2004-08-23 00:15:46 +00:00
// if the pusher has a "blocked" function, call it
// otherwise, just stay in place until the obstacle is gone
2005-03-28 00:11:59 +00:00
if ( pusher - > v - > blocked )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
* w - > g . self = EDICT_TO_PROG ( w - > progs , pusher ) ;
* w - > g . other = EDICT_TO_PROG ( w - > progs , check ) ;
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
2011-09-03 03:49:43 +00:00
if ( w = = & sv . world & & svs . gametype = = GT_Q1QVM )
2007-09-02 19:55:17 +00:00
Q1QVM_Blocked ( ) ;
else
# endif
2011-09-03 03:49:43 +00:00
PR_ExecuteProgram ( w - > progs , pusher - > v - > blocked ) ;
2004-08-23 00:15:46 +00:00
}
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// move back any entities we already moved
for ( i = 0 ; i < num_moved ; i + + )
{
2005-03-28 00:11:59 +00:00
VectorCopy ( moved_from [ i ] , moved_edict [ i ] - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , moved_edict [ i ] , false ) ;
2004-08-23 00:15:46 +00:00
}
return false ;
}
return true ;
}
/*
= = = = = = = = = = = =
SV_PushMove
= = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_PushMove ( world_t * w , wedict_t * pusher , float movetime )
2004-08-23 00:15:46 +00:00
{
int i ;
vec3_t move ;
vec3_t amove ;
2005-03-28 00:11:59 +00:00
if ( ! pusher - > v - > velocity [ 0 ] & & ! pusher - > v - > velocity [ 1 ] & & ! pusher - > v - > velocity [ 2 ]
& & ! pusher - > v - > avelocity [ 0 ] & & ! pusher - > v - > avelocity [ 1 ] & & ! pusher - > v - > avelocity [ 2 ] )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
pusher - > v - > ltime + = movetime ;
2004-08-23 00:15:46 +00:00
return ;
}
for ( i = 0 ; i < 3 ; i + + )
{
2005-03-28 00:11:59 +00:00
move [ i ] = pusher - > v - > velocity [ i ] * movetime ;
amove [ i ] = pusher - > v - > avelocity [ i ] * movetime ;
2004-08-23 00:15:46 +00:00
}
2011-09-03 03:49:43 +00:00
if ( WPhys_Push ( w , pusher , move , amove ) )
2005-03-28 00:11:59 +00:00
pusher - > v - > ltime + = movetime ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = =
SV_Physics_Pusher
= = = = = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_Physics_Pusher ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
float thinktime ;
float oldltime ;
float movetime ;
vec3_t oldorg , move ;
vec3_t oldang , amove ;
float l ;
2005-03-28 00:11:59 +00:00
oldltime = ent - > v - > ltime ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
thinktime = ent - > v - > nextthink ;
if ( thinktime < ent - > v - > ltime + host_frametime )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
movetime = thinktime - ent - > v - > ltime ;
2004-08-23 00:15:46 +00:00
if ( movetime < 0 )
movetime = 0 ;
}
else
movetime = host_frametime ;
if ( movetime )
{
2011-09-03 03:49:43 +00:00
WPhys_PushMove ( w , ent , movetime ) ; // advances ent->v->ltime if not blocked
2004-08-23 00:15:46 +00:00
}
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( thinktime > oldltime & & thinktime < = ent - > v - > ltime )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , oldorg ) ;
VectorCopy ( ent - > v - > angles , oldang ) ;
ent - > v - > nextthink = 0 ;
2011-09-03 03:49:43 +00:00
# if 1
* w - > g . time = w - > physicstime ;
w - > Event_Think ( w , ent ) ;
# else
2009-11-04 21:16:50 +00:00
pr_global_struct - > time = sv . world . physicstime ;
2011-09-03 03:49:43 +00:00
pr_global_struct - > self = EDICT_TO_PROG ( w - > progs , ent ) ;
pr_global_struct - > other = EDICT_TO_PROG ( w - > progs , w - > edicts ) ;
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
if ( svs . gametype = = GT_Q1QVM )
Q1QVM_Think ( ) ;
else
# endif
PR_ExecuteProgram ( svprogfuncs , ent - > v - > think ) ;
2011-09-03 03:49:43 +00:00
# endif
2004-08-23 00:15:46 +00:00
if ( ent - > isfree )
return ;
2005-03-28 00:11:59 +00:00
VectorSubtract ( ent - > v - > origin , oldorg , move ) ;
VectorSubtract ( ent - > v - > angles , oldang , amove ) ;
2004-08-23 00:15:46 +00:00
l = Length ( move ) + Length ( amove ) ;
if ( l > 1.0 / 64 )
{
// Con_Printf ("**** snap: %f\n", Length (l));
2005-03-28 00:11:59 +00:00
VectorCopy ( oldorg , ent - > v - > origin ) ;
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
VectorCopy ( oldang , ent - > v - > angles ) ;
2011-09-03 03:49:43 +00:00
WPhys_Push ( w , ent , move , amove ) ;
2004-08-23 00:15:46 +00:00
}
}
}
2004-10-10 06:32:29 +00:00
/*
= = = = = = = = = = = = =
SV_Physics_Follow
Entities that are " stuck " to another entity
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_Physics_Follow ( world_t * w , wedict_t * ent )
2004-10-10 06:32:29 +00:00
{
vec3_t vf , vr , vu , angles , v ;
2011-09-03 03:49:43 +00:00
wedict_t * e ;
2004-10-10 06:32:29 +00:00
// regular thinking
2011-09-03 03:49:43 +00:00
if ( ! WPhys_RunThink ( w , ent ) )
2004-10-10 06:32:29 +00:00
return ;
// LordHavoc: implemented rotation on MOVETYPE_FOLLOW objects
2011-09-03 03:49:43 +00:00
e = PROG_TO_WEDICT ( w - > progs , ent - > v - > aiment ) ;
2007-09-02 19:55:17 +00:00
if ( e - > v - > angles [ 0 ] = = ent - > xv - > punchangle [ 0 ] & & e - > v - > angles [ 1 ] = = ent - > xv - > punchangle [ 1 ] & & e - > v - > angles [ 2 ] = = ent - > xv - > punchangle [ 2 ] )
2004-10-10 06:32:29 +00:00
{
// quick case for no rotation
2005-03-28 00:11:59 +00:00
VectorAdd ( e - > v - > origin , ent - > v - > view_ofs , ent - > v - > origin ) ;
2004-10-10 06:32:29 +00:00
}
else
{
2007-09-02 19:55:17 +00:00
angles [ 0 ] = - ent - > xv - > punchangle [ 0 ] ;
angles [ 1 ] = ent - > xv - > punchangle [ 1 ] ;
angles [ 2 ] = ent - > xv - > punchangle [ 2 ] ;
2004-10-10 06:32:29 +00:00
AngleVectors ( angles , vf , vr , vu ) ;
2005-03-28 00:11:59 +00:00
v [ 0 ] = ent - > v - > view_ofs [ 0 ] * vf [ 0 ] + ent - > v - > view_ofs [ 1 ] * vr [ 0 ] + ent - > v - > view_ofs [ 2 ] * vu [ 0 ] ;
v [ 1 ] = ent - > v - > view_ofs [ 0 ] * vf [ 1 ] + ent - > v - > view_ofs [ 1 ] * vr [ 1 ] + ent - > v - > view_ofs [ 2 ] * vu [ 1 ] ;
v [ 2 ] = ent - > v - > view_ofs [ 0 ] * vf [ 2 ] + ent - > v - > view_ofs [ 1 ] * vr [ 2 ] + ent - > v - > view_ofs [ 2 ] * vu [ 2 ] ;
angles [ 0 ] = - e - > v - > angles [ 0 ] ;
angles [ 1 ] = e - > v - > angles [ 1 ] ;
angles [ 2 ] = e - > v - > angles [ 2 ] ;
2004-10-10 06:32:29 +00:00
AngleVectors ( angles , vf , vr , vu ) ;
2005-03-28 00:11:59 +00:00
ent - > v - > origin [ 0 ] = v [ 0 ] * vf [ 0 ] + v [ 1 ] * vf [ 1 ] + v [ 2 ] * vf [ 2 ] + e - > v - > origin [ 0 ] ;
ent - > v - > origin [ 1 ] = v [ 0 ] * vr [ 0 ] + v [ 1 ] * vr [ 1 ] + v [ 2 ] * vr [ 2 ] + e - > v - > origin [ 1 ] ;
ent - > v - > origin [ 2 ] = v [ 0 ] * vu [ 0 ] + v [ 1 ] * vu [ 1 ] + v [ 2 ] * vu [ 2 ] + e - > v - > origin [ 2 ] ;
2004-10-10 06:32:29 +00:00
}
2005-03-28 00:11:59 +00:00
VectorAdd ( e - > v - > angles , ent - > v - > v_angle , ent - > v - > angles ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ent , true ) ;
2004-10-10 06:32:29 +00:00
}
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = =
SV_Physics_Noclip
A moving object that doesn ' t obey physics
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_Physics_Noclip ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
// regular thinking
2011-09-03 03:49:43 +00:00
if ( ! WPhys_RunThink ( w , ent ) )
2004-08-23 00:15:46 +00:00
return ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
VectorMA ( ent - > v - > angles , host_frametime , ent - > v - > avelocity , ent - > v - > angles ) ;
VectorMA ( ent - > v - > origin , host_frametime , ent - > v - > velocity , ent - > v - > origin ) ;
2004-08-23 00:15:46 +00:00
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ( wedict_t * ) ent , false ) ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
TOSS / BOUNCE
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
*/
/*
= = = = = = = = = = = = =
SV_CheckWaterTransition
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_CheckWaterTransition ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
int cont ;
2011-09-03 03:49:43 +00:00
cont = World_PointContents ( w , ent - > v - > origin ) ;
2004-08-23 00:15:46 +00:00
2007-10-05 18:08:47 +00:00
//needs to be q1 progs compatible
2004-08-23 00:15:46 +00:00
if ( cont & FTECONTENTS_LAVA )
cont = Q1CONTENTS_LAVA ;
else if ( cont & FTECONTENTS_SLIME )
cont = Q1CONTENTS_SLIME ;
else if ( cont & FTECONTENTS_WATER )
cont = Q1CONTENTS_WATER ;
else
cont = Q1CONTENTS_EMPTY ;
2005-03-28 00:11:59 +00:00
if ( ! ent - > v - > watertype )
2004-08-23 00:15:46 +00:00
{ // just spawned here
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = cont ;
ent - > v - > waterlevel = 1 ;
2004-08-23 00:15:46 +00:00
return ;
}
2006-02-17 19:54:47 +00:00
2012-07-05 19:42:36 +00:00
if ( ent - > v - > watertype ! = cont & & w - > Event_ContentsTransition ( w , ent , ent - > v - > watertype , cont ) )
{
ent - > v - > watertype = cont ;
ent - > v - > waterlevel = 1 ;
}
else if ( cont < = Q1CONTENTS_WATER )
2004-08-23 00:15:46 +00:00
{
2010-12-18 17:02:47 +00:00
if ( ent - > v - > watertype = = Q1CONTENTS_EMPTY & & * sv_sound_watersplash . string )
2004-08-23 00:15:46 +00:00
{ // just crossed into water
2011-09-03 03:49:43 +00:00
w - > Event_Sound ( ent , 0 , sv_sound_watersplash . string , 255 , 1 , 0 ) ;
2006-02-17 19:54:47 +00:00
}
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = cont ;
ent - > v - > waterlevel = 1 ;
2004-08-23 00:15:46 +00:00
}
else
{
2010-12-18 17:02:47 +00:00
if ( ent - > v - > watertype ! = Q1CONTENTS_EMPTY & & * sv_sound_watersplash . string )
2004-08-23 00:15:46 +00:00
{ // just crossed into open
2011-09-03 03:49:43 +00:00
w - > Event_Sound ( ent , 0 , sv_sound_watersplash . string , 255 , 1 , 0 ) ;
2006-02-17 19:54:47 +00:00
}
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = Q1CONTENTS_EMPTY ;
ent - > v - > waterlevel = cont ;
2004-08-23 00:15:46 +00:00
}
}
/*
= = = = = = = = = = = = =
SV_Physics_Toss
Toss , bounce , and fly movement . When onground , do nothing .
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_Physics_Toss ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
trace_t trace ;
vec3_t move ;
float backoff ;
2005-05-15 18:49:04 +00:00
vec3_t temporg ;
2011-10-29 19:01:33 +00:00
int fl ;
2012-02-17 01:12:37 +00:00
const float * gravitydir ;
2005-05-15 18:49:04 +00:00
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , ent ) ;
2004-08-23 00:15:46 +00:00
// regular thinking
2011-09-03 03:49:43 +00:00
if ( ! WPhys_RunThink ( w , ent ) )
2004-08-23 00:15:46 +00:00
return ;
2012-02-17 01:12:37 +00:00
if ( ent - > xv - > gravitydir [ 2 ] | | ent - > xv - > gravitydir [ 1 ] | | ent - > xv - > gravitydir [ 0 ] )
gravitydir = ent - > xv - > gravitydir ;
else
gravitydir = standardgravity ;
2004-08-23 00:15:46 +00:00
// if onground, return without moving
2005-03-28 00:11:59 +00:00
if ( ( ( int ) ent - > v - > flags & FL_ONGROUND ) )
2006-02-17 19:54:47 +00:00
{
2012-02-17 01:12:37 +00:00
if ( - DotProduct ( gravitydir , ent - > v - > velocity ) > = ( 1.0f / 32.0f ) )
2006-02-17 19:54:47 +00:00
ent - > v - > flags = ( int ) ent - > v - > flags & ~ FL_ONGROUND ;
2006-02-17 19:59:43 +00:00
else
2006-02-17 19:54:47 +00:00
{
if ( sv_gameplayfix_noairborncorpse . value )
{
2011-09-03 03:49:43 +00:00
wedict_t * onent ;
onent = PROG_TO_WEDICT ( w - > progs , ent - > v - > groundentity ) ;
2006-02-17 19:54:47 +00:00
if ( ! onent - > isfree )
return ; //don't drop if our fround is still valid
}
else
return ; //don't drop, even if the item we were on was removed (certain dm maps do this for q3 style stuff).
}
}
2004-08-23 00:15:46 +00:00
// add gravity
2005-03-28 00:11:59 +00:00
if ( ent - > v - > movetype ! = MOVETYPE_FLY
& & ent - > v - > movetype ! = MOVETYPE_FLYMISSILE
& & ent - > v - > movetype ! = MOVETYPE_BOUNCEMISSILE
2010-08-11 23:55:35 +00:00
& & ent - > v - > movetype ! = MOVETYPE_H2SWIM )
2012-02-17 01:12:37 +00:00
WPhys_AddGravity ( w , ent , gravitydir , 1.0 ) ;
2004-08-23 00:15:46 +00:00
// move angles
2005-03-28 00:11:59 +00:00
VectorMA ( ent - > v - > angles , host_frametime , ent - > v - > avelocity , ent - > v - > angles ) ;
2004-08-23 00:15:46 +00:00
// move origin
2005-03-28 00:11:59 +00:00
VectorScale ( ent - > v - > velocity , host_frametime , move ) ;
2012-02-12 05:18:31 +00:00
if ( ! DotProduct ( move , move ) )
return ;
2005-05-15 18:49:04 +00:00
VectorCopy ( ent - > v - > origin , temporg ) ;
2009-11-04 21:16:50 +00:00
2011-10-29 19:01:33 +00:00
fl = 0 ;
# ifndef CLIENTONLY
/*doesn't affect csqc, as it has no lagged ents registered anywhere*/
if ( sv_antilag . ival = = 2 )
fl | = MOVE_LAGGED ;
# endif
trace = WPhys_PushEntity ( w , ent , move , fl ) ;
2005-07-16 00:53:08 +00:00
2005-05-15 18:49:04 +00:00
if ( trace . allsolid )
2012-02-12 05:18:31 +00:00
{
2005-05-15 18:49:04 +00:00
trace . fraction = 0 ;
2012-02-12 05:18:31 +00:00
2012-02-17 01:12:37 +00:00
# pragma warningmsg("The following line might help boost framerates a lot in rmq, not sure if they violate expected behaviour in other mods though - check that they're safe.")
VectorNegate ( gravitydir , trace . plane . normal ) ;
2012-02-12 05:18:31 +00:00
}
2004-08-23 00:15:46 +00:00
if ( trace . fraction = = 1 )
return ;
if ( ent - > isfree )
return ;
VectorCopy ( trace . endpos , move ) ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( ent - > v - > movetype = = MOVETYPE_BOUNCE )
2004-08-23 00:15:46 +00:00
backoff = 1.5 ;
2005-03-28 00:11:59 +00:00
else if ( ent - > v - > movetype = = MOVETYPE_BOUNCEMISSILE )
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
{
// if (progstype == PROG_H2 && ent->v->solid == SOLID_PHASEH2 && ((int)((wedict_t*)trace.ent)->v->flags & (FL_MONSTER|FL_CLIENT)))
// backoff = 0;
// else
backoff = 2 ;
}
2004-08-23 00:15:46 +00:00
else
backoff = 1 ;
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
if ( backoff )
ClipVelocity ( ent - > v - > velocity , trace . plane . normal , ent - > v - > velocity , backoff ) ;
2004-08-23 00:15:46 +00:00
// stop if on ground
2012-02-17 01:12:37 +00:00
if ( ( - DotProduct ( gravitydir , trace . plane . normal ) > 0.7 ) & & ( ent - > v - > movetype ! = MOVETYPE_BOUNCEMISSILE ) )
2006-02-17 19:54:47 +00:00
{
2012-02-17 01:12:37 +00:00
if ( - DotProduct ( gravitydir , ent - > v - > velocity ) < 60 | | ent - > v - > movetype ! = MOVETYPE_BOUNCE )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
ent - > v - > flags = ( int ) ent - > v - > flags | FL_ONGROUND ;
2011-09-03 03:49:43 +00:00
ent - > v - > groundentity = EDICT_TO_PROG ( w - > progs , trace . ent ) ;
2006-05-29 04:50:24 +00:00
VectorClear ( ent - > v - > velocity ) ;
VectorClear ( ent - > v - > avelocity ) ;
2004-08-23 00:15:46 +00:00
}
}
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// check for in water
2011-09-03 03:49:43 +00:00
WPhys_CheckWaterTransition ( w , ent ) ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
STEPPING MOVEMENT
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
*/
/*
= = = = = = = = = = = = =
SV_Physics_Step
Monsters freefall when they don ' t have a ground entity , otherwise
all movement is done with discrete steps .
This is also used for objects that have become still on the ground , but
will fall if the floor is pulled out from under them .
FIXME : is this true ?
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_Physics_Step ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
qboolean hitsound ;
2010-08-16 02:03:02 +00:00
qboolean freefall ;
int fl = ent - > v - > flags ;
2012-02-17 01:12:37 +00:00
const float * gravitydir ;
if ( ent - > xv - > gravitydir [ 2 ] | | ent - > xv - > gravitydir [ 1 ] | | ent - > xv - > gravitydir [ 0 ] )
gravitydir = ent - > xv - > gravitydir ;
else
gravitydir = standardgravity ;
2004-08-23 00:15:46 +00:00
2012-02-17 01:12:37 +00:00
if ( - DotProduct ( gravitydir , ent - > v - > velocity ) > = ( 1.0 / 32.0 ) & & ( fl & FL_ONGROUND ) )
2010-08-16 02:03:02 +00:00
{
fl & = ~ FL_ONGROUND ;
ent - > v - > flags = fl ;
}
2005-05-26 12:55:34 +00:00
2004-08-23 00:15:46 +00:00
// frefall if not onground
2010-08-16 02:03:02 +00:00
if ( fl & ( FL_ONGROUND | FL_FLY ) )
freefall = false ;
else
freefall = true ;
if ( fl & FL_SWIM )
2010-12-18 17:02:47 +00:00
freefall = ent - > v - > waterlevel < = 0 ;
2010-08-16 02:03:02 +00:00
if ( freefall )
2004-08-23 00:15:46 +00:00
{
2012-02-17 01:12:37 +00:00
hitsound = - DotProduct ( gravitydir , ent - > v - > velocity ) < movevars . gravity * - 0.1 ;
2004-08-23 00:15:46 +00:00
2012-02-17 01:12:37 +00:00
WPhys_AddGravity ( w , ent , gravitydir , 1.0 ) ;
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , ent ) ;
2012-02-17 01:12:37 +00:00
WPhys_FlyMove ( w , ent , gravitydir , host_frametime , NULL ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ent , true ) ;
2004-08-23 00:15:46 +00:00
2005-03-28 00:11:59 +00:00
if ( ( int ) ent - > v - > flags & FL_ONGROUND ) // just hit ground
2004-08-23 00:15:46 +00:00
{
2012-07-05 19:42:36 +00:00
if ( hitsound & & * sv_sound_land . string )
2004-10-13 06:35:27 +00:00
{
2011-09-03 03:49:43 +00:00
w - > Event_Sound ( ent , 0 , sv_sound_land . string , 255 , 1 , 0 ) ;
2004-10-13 06:35:27 +00:00
}
2004-08-23 00:15:46 +00:00
}
}
// regular thinking
2011-09-03 03:49:43 +00:00
WPhys_RunThink ( w , ent ) ;
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
WPhys_CheckWaterTransition ( w , ent ) ;
2004-08-23 00:15:46 +00:00
}
//============================================================================
2011-10-29 19:01:33 +00:00
# ifndef CLIENTONLY
2004-08-23 00:15:46 +00:00
void SV_ProgStartFrame ( void )
{
// let the progs know that a new frame has started
2009-11-04 21:16:50 +00:00
pr_global_struct - > self = EDICT_TO_PROG ( svprogfuncs , sv . world . edicts ) ;
pr_global_struct - > other = EDICT_TO_PROG ( svprogfuncs , sv . world . edicts ) ;
pr_global_struct - > time = sv . world . physicstime ;
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
if ( svs . gametype = = GT_Q1QVM )
Q1QVM_StartFrame ( ) ;
else
# endif
2011-12-05 15:23:40 +00:00
{
if ( pr_global_ptrs - > StartFrame )
PR_ExecuteProgram ( svprogfuncs , * pr_global_ptrs - > StartFrame ) ;
}
2004-08-23 00:15:46 +00:00
}
2011-10-29 19:01:33 +00:00
# endif
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = =
SV_CheckStuck
This is a big hack to try and fix the rare case of getting stuck in the world
clipping hull .
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_CheckStuck ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
int i , j ;
int z ;
vec3_t org ;
//return;
2011-09-03 03:49:43 +00:00
if ( ! World_TestEntityPosition ( w , ent ) )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , ent - > v - > oldorigin ) ;
2004-08-23 00:15:46 +00:00
return ;
}
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , org ) ;
VectorCopy ( ent - > v - > oldorigin , ent - > v - > origin ) ;
2011-09-03 03:49:43 +00:00
if ( ! World_TestEntityPosition ( w , ent ) )
2004-08-23 00:15:46 +00:00
{
Con_DPrintf ( " Unstuck. \n " ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ent , true ) ;
2004-08-23 00:15:46 +00:00
return ;
}
2006-02-17 19:54:47 +00:00
2007-06-20 00:02:54 +00:00
for ( z = 0 ; z < movevars . stepheight ; z + + )
2004-08-23 00:15:46 +00:00
for ( i = - 1 ; i < = 1 ; i + + )
for ( j = - 1 ; j < = 1 ; j + + )
{
2005-03-28 00:11:59 +00:00
ent - > v - > origin [ 0 ] = org [ 0 ] + i ;
ent - > v - > origin [ 1 ] = org [ 1 ] + j ;
ent - > v - > origin [ 2 ] = org [ 2 ] + z ;
2011-09-03 03:49:43 +00:00
if ( ! World_TestEntityPosition ( w , ent ) )
2004-08-23 00:15:46 +00:00
{
Con_DPrintf ( " Unstuck. \n " ) ;
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ent , true ) ;
2004-08-23 00:15:46 +00:00
return ;
}
}
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
VectorCopy ( org , ent - > v - > origin ) ;
2004-08-23 00:15:46 +00:00
Con_DPrintf ( " player is stuck. \n " ) ;
}
/*
= = = = = = = = = = = = =
SV_CheckWater
= = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static qboolean WPhys_CheckWater ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
vec3_t point ;
int cont ;
2005-03-28 00:11:59 +00:00
point [ 0 ] = ent - > v - > origin [ 0 ] ;
point [ 1 ] = ent - > v - > origin [ 1 ] ;
2006-02-17 19:54:47 +00:00
point [ 2 ] = ent - > v - > origin [ 2 ] + ent - > v - > mins [ 2 ] + 1 ;
2004-08-23 00:15:46 +00:00
2005-03-28 00:11:59 +00:00
ent - > v - > waterlevel = 0 ;
ent - > v - > watertype = Q1CONTENTS_EMPTY ;
2011-09-03 03:49:43 +00:00
cont = World_PointContents ( w , point ) ;
2004-08-23 00:15:46 +00:00
if ( cont & FTECONTENTS_FLUID )
{
if ( cont & FTECONTENTS_LAVA )
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = Q1CONTENTS_LAVA ;
2004-08-23 00:15:46 +00:00
else if ( cont & FTECONTENTS_SLIME )
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = Q1CONTENTS_SLIME ;
2004-08-23 00:15:46 +00:00
else if ( cont & FTECONTENTS_WATER )
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = Q1CONTENTS_WATER ;
2006-02-17 19:54:47 +00:00
else
2005-03-28 00:11:59 +00:00
ent - > v - > watertype = Q1CONTENTS_SKY ;
ent - > v - > waterlevel = 1 ;
point [ 2 ] = ent - > v - > origin [ 2 ] + ( ent - > v - > mins [ 2 ] + ent - > v - > maxs [ 2 ] ) * 0.5 ;
2011-09-03 03:49:43 +00:00
cont = World_PointContents ( w , point ) ;
2004-08-23 00:15:46 +00:00
if ( cont & FTECONTENTS_FLUID )
{
2005-03-28 00:11:59 +00:00
ent - > v - > waterlevel = 2 ;
point [ 2 ] = ent - > v - > origin [ 2 ] + ent - > v - > view_ofs [ 2 ] ;
2011-09-03 03:49:43 +00:00
cont = World_PointContents ( w , point ) ;
2004-08-23 00:15:46 +00:00
if ( cont & FTECONTENTS_FLUID )
2005-03-28 00:11:59 +00:00
ent - > v - > waterlevel = 3 ;
2004-08-23 00:15:46 +00:00
}
}
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
return ent - > v - > waterlevel > 1 ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = =
SV_WallFriction
= = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
static void WPhys_WallFriction ( wedict_t * ent , trace_t * trace )
2004-08-23 00:15:46 +00:00
{
vec3_t forward , right , up ;
float d , i ;
vec3_t into , side ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
AngleVectors ( ent - > v - > v_angle , forward , right , up ) ;
2004-08-23 00:15:46 +00:00
d = DotProduct ( trace - > plane . normal , forward ) ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
d + = 0.5 ;
if ( d > = 0 | | IS_NAN ( d ) )
return ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// cut the tangential velocity
2005-03-28 00:11:59 +00:00
i = DotProduct ( trace - > plane . normal , ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
VectorScale ( trace - > plane . normal , i , into ) ;
2005-03-28 00:11:59 +00:00
VectorSubtract ( ent - > v - > velocity , into , side ) ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ 0 ] = side [ 0 ] * ( 1 + d ) ;
ent - > v - > velocity [ 1 ] = side [ 1 ] * ( 1 + d ) ;
2004-08-23 00:15:46 +00:00
}
2011-05-15 13:23:13 +00:00
// warning: <20> SV_TryUnstick<63> defined but not used
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = = = = =
SV_TryUnstick
Player has come to a dead stop , possibly due to the problem with limited
float precision at some angle joins in the BSP hull .
Try fixing by pushing one pixel in each direction .
This is a hack , but in the interest of good gameplay . . .
= = = = = = = = = = = = = = = = = = = = = =
2011-05-15 13:23:13 +00:00
2010-07-11 10:53:13 +00:00
static int SV_TryUnstick ( edict_t * ent , vec3_t oldvel )
2004-08-23 00:15:46 +00:00
{
int i ;
vec3_t oldorg ;
vec3_t dir ;
int clip ;
trace_t steptrace ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , oldorg ) ;
2006-05-29 04:50:24 +00:00
VectorClear ( dir ) ;
2004-08-23 00:15:46 +00:00
for ( i = 0 ; i < 8 ; i + + )
{
// try pushing a little in an axial direction
switch ( i )
{
case 0 : dir [ 0 ] = 2 ; dir [ 1 ] = 0 ; break ;
case 1 : dir [ 0 ] = 0 ; dir [ 1 ] = 2 ; break ;
case 2 : dir [ 0 ] = - 2 ; dir [ 1 ] = 0 ; break ;
case 3 : dir [ 0 ] = 0 ; dir [ 1 ] = - 2 ; break ;
case 4 : dir [ 0 ] = 2 ; dir [ 1 ] = 2 ; break ;
case 5 : dir [ 0 ] = - 2 ; dir [ 1 ] = 2 ; break ;
case 6 : dir [ 0 ] = 2 ; dir [ 1 ] = - 2 ; break ;
case 7 : dir [ 0 ] = - 2 ; dir [ 1 ] = - 2 ; break ;
}
2006-02-17 19:54:47 +00:00
2009-11-04 21:16:50 +00:00
SV_PushEntity ( ent , dir , MOVE_NORMAL ) ;
2004-08-23 00:15:46 +00:00
// retry the original move
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ 0 ] = oldvel [ 0 ] ;
ent - > v - > velocity [ 1 ] = oldvel [ 1 ] ;
ent - > v - > velocity [ 2 ] = 0 ;
2004-08-23 00:15:46 +00:00
clip = SV_FlyMove ( ent , 0.1 , & steptrace ) ;
2005-03-28 00:11:59 +00:00
if ( fabs ( oldorg [ 1 ] - ent - > v - > origin [ 1 ] ) > 4
| | fabs ( oldorg [ 0 ] - ent - > v - > origin [ 0 ] ) > 4 )
2004-08-23 00:15:46 +00:00
{
//Con_DPrintf ("unstuck!\n");
return clip ;
}
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// go back to the original pos and try again
2005-03-28 00:11:59 +00:00
VectorCopy ( oldorg , ent - > v - > origin ) ;
2004-08-23 00:15:46 +00:00
}
2006-02-17 19:54:47 +00:00
2006-05-29 04:50:24 +00:00
VectorClear ( ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
return 7 ; // still not moving
}
2011-05-15 13:23:13 +00:00
*/
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = = = = =
SV_WalkMove
Only used by players
= = = = = = = = = = = = = = = = = = = = = =
*/
2005-05-26 12:55:34 +00:00
#if 0
2004-08-23 00:15:46 +00:00
# define SMSTEPSIZE 4
2010-07-11 10:53:13 +00:00
static void SV_WalkMove ( edict_t * ent )
2004-08-23 00:15:46 +00:00
{
vec3_t upmove , downmove ;
vec3_t oldorg , oldvel ;
vec3_t nosteporg , nostepvel ;
int clip ;
int oldonground ;
trace_t steptrace , downtrace ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
//
// do a regular slide move unless it looks like you ran into a step
//
2005-03-28 00:11:59 +00:00
oldonground = ( int ) ent - > v - > flags & FL_ONGROUND ;
ent - > v - > flags = ( int ) ent - > v - > flags & ~ FL_ONGROUND ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , oldorg ) ;
VectorCopy ( ent - > v - > velocity , oldvel ) ;
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
clip = SV_FlyMove ( ent , host_frametime , & steptrace ) ;
if ( ! ( clip & 2 ) )
return ; // move didn't block on a step
2005-03-28 00:11:59 +00:00
if ( ! oldonground & & ent - > v - > waterlevel = = 0 )
2004-08-23 00:15:46 +00:00
return ; // don't stair up while jumping
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( ent - > v - > movetype ! = MOVETYPE_WALK )
2004-08-23 00:15:46 +00:00
return ; // gibbed by a trigger
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// if (sv_nostep.value)
// return;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( ( int ) ent - > v - > flags & FL_WATERJUMP )
2004-08-23 00:15:46 +00:00
return ;
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , nosteporg ) ;
VectorCopy ( ent - > v - > velocity , nostepvel ) ;
2004-08-23 00:15:46 +00:00
//
// try moving up and forward to go up a step
//
2005-03-28 00:11:59 +00:00
VectorCopy ( oldorg , ent - > v - > origin ) ; // back to start pos
2004-08-23 00:15:46 +00:00
VectorCopy ( vec3_origin , upmove ) ;
VectorCopy ( vec3_origin , downmove ) ;
2007-06-20 00:02:54 +00:00
upmove [ 2 ] = movevars . stepheight ;
downmove [ 2 ] = - movevars . stepheight + oldvel [ 2 ] * host_frametime ;
2004-08-23 00:15:46 +00:00
// move up
SV_PushEntity ( ent , upmove ) ; // FIXME: don't link?
// move forward
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ 0 ] = oldvel [ 0 ] ;
ent - > v - > velocity [ 1 ] = oldvel [ 1 ] ;
ent - > v - > velocity [ 2 ] = 0 ;
2004-08-23 00:15:46 +00:00
clip = SV_FlyMove ( ent , host_frametime , & steptrace ) ;
// check for stuckness, possibly due to the limited precision of floats
// in the clipping hulls
if ( clip )
{
2005-03-28 00:11:59 +00:00
if ( fabs ( oldorg [ 1 ] - ent - > v - > origin [ 1 ] ) < 0.03125
& & fabs ( oldorg [ 0 ] - ent - > v - > origin [ 0 ] ) < 0.03125 )
2004-08-23 00:15:46 +00:00
{ // stepping up didn't make any progress
clip = SV_TryUnstick ( ent , oldvel ) ;
2004-09-22 15:29:33 +00:00
// Con_Printf("Try unstick fwd\n");
2004-08-23 00:15:46 +00:00
}
}
2006-02-17 19:54:47 +00:00
2004-08-23 00:15:46 +00:00
// extra friction based on view angle
if ( clip & 2 )
{
vec3_t lastpos , lastvel , lastdown ;
2004-09-22 15:29:33 +00:00
// Con_Printf("couldn't do it\n");
2004-08-23 00:15:46 +00:00
//retry with a smaller step (allows entering smaller areas with a step of 4)
VectorCopy ( downmove , lastdown ) ;
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , lastpos ) ;
VectorCopy ( ent - > v - > velocity , lastvel ) ;
2004-08-23 00:15:46 +00:00
//
// try moving up and forward to go up a step
//
2005-03-28 00:11:59 +00:00
VectorCopy ( oldorg , ent - > v - > origin ) ; // back to start pos
2004-08-23 00:15:46 +00:00
VectorCopy ( vec3_origin , upmove ) ;
VectorCopy ( vec3_origin , downmove ) ;
upmove [ 2 ] = SMSTEPSIZE ;
downmove [ 2 ] = - SMSTEPSIZE + oldvel [ 2 ] * host_frametime ;
// move up
SV_PushEntity ( ent , upmove ) ; // FIXME: don't link?
// move forward
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ 0 ] = oldvel [ 0 ] ;
ent - > v - > velocity [ 1 ] = oldvel [ 1 ] ;
ent - > v - > velocity [ 2 ] = 0 ;
2004-08-23 00:15:46 +00:00
clip = SV_FlyMove ( ent , host_frametime , & steptrace ) ;
// check for stuckness, possibly due to the limited precision of floats
// in the clipping hulls
if ( clip )
{
2005-03-28 00:11:59 +00:00
if ( fabs ( oldorg [ 1 ] - ent - > v - > origin [ 1 ] ) < 0.03125
& & fabs ( oldorg [ 0 ] - ent - > v - > origin [ 0 ] ) < 0.03125 )
2004-08-23 00:15:46 +00:00
{ // stepping up didn't make any progress
clip = SV_TryUnstick ( ent , oldvel ) ;
2004-09-22 15:29:33 +00:00
// Con_Printf("Try unstick up\n");
2004-08-23 00:15:46 +00:00
}
}
2005-03-28 00:11:59 +00:00
if ( fabs ( oldorg [ 1 ] - ent - > v - > origin [ 1 ] ) + fabs ( oldorg [ 0 ] - ent - > v - > origin [ 0 ] ) < fabs ( oldorg [ 1 ] - lastpos [ 1 ] ) + fabs ( oldorg [ 1 ] - lastpos [ 1 ] ) )
2004-08-23 00:15:46 +00:00
{ // stepping up didn't make any progress
//go back
VectorCopy ( lastdown , downmove ) ;
2005-03-28 00:11:59 +00:00
VectorCopy ( lastpos , ent - > v - > origin ) ;
VectorCopy ( lastvel , ent - > v - > velocity ) ;
2004-08-23 00:15:46 +00:00
SV_WallFriction ( ent , & steptrace ) ;
2004-09-22 15:29:33 +00:00
// Con_Printf("wall friction\n");
2004-08-23 00:15:46 +00:00
}
else if ( clip & 2 )
2004-09-22 15:29:33 +00:00
{
2004-08-23 00:15:46 +00:00
SV_WallFriction ( ent , & steptrace ) ;
2004-09-22 15:29:33 +00:00
// Con_Printf("wall friction 2\n");
}
2004-08-23 00:15:46 +00:00
}
// move down
downtrace = SV_PushEntity ( ent , downmove ) ; // FIXME: don't link?
if ( downtrace . plane . normal [ 2 ] > 0.7 )
{
2005-03-28 00:11:59 +00:00
if ( ent - > v - > solid = = SOLID_BSP )
2004-08-23 00:15:46 +00:00
{
2005-03-28 00:11:59 +00:00
ent - > v - > flags = ( int ) ent - > v - > flags | FL_ONGROUND ;
ent - > v - > groundentity = EDICT_TO_PROG ( svprogfuncs , downtrace . ent ) ;
2004-08-23 00:15:46 +00:00
}
}
else
{
// if the push down didn't end up on good ground, use the move without
// the step up. This happens near wall / slope combinations, and can
2006-02-17 19:54:47 +00:00
// cause the player to hop up higher on a slope too steep to climb
2005-03-28 00:11:59 +00:00
VectorCopy ( nosteporg , ent - > v - > origin ) ;
VectorCopy ( nostepvel , ent - > v - > velocity ) ;
2004-09-22 15:29:33 +00:00
// Con_Printf("down not good\n");
2004-08-23 00:15:46 +00:00
}
}
2005-05-26 12:55:34 +00:00
# else
2004-11-19 17:43:55 +00:00
2005-06-14 04:52:10 +00:00
// 1/32 epsilon to keep floating point happy
# define DIST_EPSILON (0.03125)
2012-02-17 01:12:37 +00:00
static int WPhys_SetOnGround ( world_t * w , wedict_t * ent , const float * gravitydir )
2004-11-19 17:43:55 +00:00
{
vec3_t end ;
trace_t trace ;
2005-03-28 00:11:59 +00:00
if ( ( int ) ent - > v - > flags & FL_ONGROUND )
2004-11-19 17:43:55 +00:00
return 1 ;
2012-02-17 01:12:37 +00:00
VectorMA ( ent - > v - > origin , 1 , gravitydir , end ) ;
2011-09-03 03:49:43 +00:00
trace = World_Move ( w , ent - > v - > origin , ent - > v - > mins , ent - > v - > maxs , end , MOVE_NORMAL , ( wedict_t * ) ent ) ;
2012-02-17 01:12:37 +00:00
if ( trace . fraction < = DIST_EPSILON & & - DotProduct ( gravitydir , trace . plane . normal ) > = 0.7 )
2004-11-19 17:43:55 +00:00
{
2005-03-28 00:11:59 +00:00
ent - > v - > flags = ( int ) ent - > v - > flags | FL_ONGROUND ;
2011-09-03 03:49:43 +00:00
ent - > v - > groundentity = EDICT_TO_PROG ( w - > progs , trace . ent ) ;
2004-11-19 17:43:55 +00:00
return 1 ;
}
return 0 ;
}
2012-02-17 01:12:37 +00:00
static void WPhys_WalkMove ( world_t * w , wedict_t * ent , const float * gravitydir )
2004-11-19 17:43:55 +00:00
{
int clip , oldonground , originalmove_clip , originalmove_flags , originalmove_groundentity ;
vec3_t upmove , downmove , start_origin , start_velocity , originalmove_origin , originalmove_velocity ;
trace_t downtrace , steptrace ;
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , ent ) ;
2004-11-19 17:43:55 +00:00
// do a regular slide move unless it looks like you ran into a step
2005-03-28 00:11:59 +00:00
oldonground = ( int ) ent - > v - > flags & FL_ONGROUND ;
ent - > v - > flags = ( int ) ent - > v - > flags & ~ FL_ONGROUND ;
2004-11-19 17:43:55 +00:00
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , start_origin ) ;
VectorCopy ( ent - > v - > velocity , start_velocity ) ;
2004-11-19 17:43:55 +00:00
2012-02-17 01:12:37 +00:00
clip = WPhys_FlyMove ( w , ent , gravitydir , host_frametime , NULL ) ;
2004-11-19 17:43:55 +00:00
2012-02-17 01:12:37 +00:00
WPhys_SetOnGround ( w , ent , gravitydir ) ;
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , ent ) ;
2004-11-19 17:43:55 +00:00
2005-03-28 00:11:59 +00:00
VectorCopy ( ent - > v - > origin , originalmove_origin ) ;
VectorCopy ( ent - > v - > velocity , originalmove_velocity ) ;
2004-11-19 17:43:55 +00:00
originalmove_clip = clip ;
2005-03-28 00:11:59 +00:00
originalmove_flags = ( int ) ent - > v - > flags ;
originalmove_groundentity = ent - > v - > groundentity ;
2004-11-19 17:43:55 +00:00
2005-03-28 00:11:59 +00:00
if ( ( int ) ent - > v - > flags & FL_WATERJUMP )
2004-11-19 17:43:55 +00:00
return ;
// if (sv_nostep.value)
// return;
2006-02-17 19:54:47 +00:00
2004-11-19 17:43:55 +00:00
// if move didn't block on a step, return
if ( clip & 2 )
{
// if move was not trying to move into the step, return
if ( fabs ( start_velocity [ 0 ] ) < 0.03125 & & fabs ( start_velocity [ 1 ] ) < 0.03125 )
return ;
2006-02-17 19:54:47 +00:00
2005-03-28 00:11:59 +00:00
if ( ent - > v - > movetype ! = MOVETYPE_FLY )
2004-11-19 17:43:55 +00:00
{
// return if gibbed by a trigger
2005-03-28 00:11:59 +00:00
if ( ent - > v - > movetype ! = MOVETYPE_WALK )
2004-11-19 17:43:55 +00:00
return ;
2006-02-17 19:54:47 +00:00
2004-11-19 17:43:55 +00:00
// only step up while jumping if that is enabled
// if (!(sv_jumpstep.value && sv_gameplayfix_stepwhilejumping.value))
2005-03-28 00:11:59 +00:00
if ( ! oldonground & & ent - > v - > waterlevel = = 0 )
2004-11-19 17:43:55 +00:00
return ;
}
2006-02-17 19:54:47 +00:00
2004-11-19 17:43:55 +00:00
// try moving up and forward to go up a step
// back to start pos
2005-03-28 00:11:59 +00:00
VectorCopy ( start_origin , ent - > v - > origin ) ;
VectorCopy ( start_velocity , ent - > v - > velocity ) ;
2006-02-17 19:54:47 +00:00
2004-11-19 17:43:55 +00:00
// move up
2012-02-17 01:12:37 +00:00
VectorScale ( gravitydir , - movevars . stepheight , upmove ) ;
2004-11-19 17:43:55 +00:00
// FIXME: don't link?
2011-09-03 03:49:43 +00:00
WPhys_PushEntity ( w , ent , upmove , MOVE_NORMAL ) ;
2005-05-15 18:49:04 +00:00
2004-11-19 17:43:55 +00:00
// move forward
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ 2 ] = 0 ;
2012-02-17 01:12:37 +00:00
clip = WPhys_FlyMove ( w , ent , gravitydir , host_frametime , & steptrace ) ;
2005-03-28 00:11:59 +00:00
ent - > v - > velocity [ 2 ] + = start_velocity [ 2 ] ;
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , ent ) ;
2006-02-17 19:54:47 +00:00
2004-11-19 17:43:55 +00:00
// check for stuckness, possibly due to the limited precision of floats
// in the clipping hulls
if ( clip
2005-03-28 00:11:59 +00:00
& & fabs ( originalmove_origin [ 1 ] - ent - > v - > origin [ 1 ] ) < 0.03125
& & fabs ( originalmove_origin [ 0 ] - ent - > v - > origin [ 0 ] ) < 0.03125 )
2004-11-19 17:43:55 +00:00
{
// Con_Printf("wall\n");
// stepping up didn't make any progress, revert to original move
2005-03-28 00:11:59 +00:00
VectorCopy ( originalmove_origin , ent - > v - > origin ) ;
VectorCopy ( originalmove_velocity , ent - > v - > velocity ) ;
2004-11-19 17:43:55 +00:00
//clip = originalmove_clip;
2005-03-28 00:11:59 +00:00
ent - > v - > flags = originalmove_flags ;
2006-02-17 19:54:47 +00:00
ent - > v - > groundentity = originalmove_groundentity ;
2004-11-19 17:43:55 +00:00
// now try to unstick if needed
//clip = SV_TryUnstick (ent, oldvel);
return ;
}
//Con_Printf("step - ");
// extra friction based on view angle
if ( clip & 2 ) // && sv_wallfriction.value)
{
// Con_Printf("wall\n");
2011-09-03 03:49:43 +00:00
WPhys_WallFriction ( ent , & steptrace ) ;
2004-11-19 17:43:55 +00:00
}
}
2005-03-28 00:11:59 +00:00
else if ( /*!sv_gameplayfix_stepdown.integer || */ ! oldonground | | start_velocity [ 2 ] > 0 | | ( ( int ) ent - > v - > flags & FL_ONGROUND ) | | ent - > v - > waterlevel > = 2 )
2004-11-19 17:43:55 +00:00
return ;
// move down
2012-02-17 01:12:37 +00:00
VectorScale ( gravitydir , - ( - movevars . stepheight + start_velocity [ 2 ] * host_frametime ) , downmove ) ;
2004-11-19 17:43:55 +00:00
// FIXME: don't link?
2011-09-03 03:49:43 +00:00
downtrace = WPhys_PushEntity ( w , ent , downmove , MOVE_NORMAL ) ;
2004-11-19 17:43:55 +00:00
2012-02-17 01:12:37 +00:00
if ( downtrace . fraction < 1 & & - DotProduct ( gravitydir , downtrace . plane . normal ) > 0.7 )
2004-11-19 17:43:55 +00:00
{
// LordHavoc: disabled this check so you can walk on monsters/players
//if (ent->v->solid == SOLID_BSP)
{
//Con_Printf("onground\n");
2005-03-28 00:11:59 +00:00
ent - > v - > flags = ( int ) ent - > v - > flags | FL_ONGROUND ;
2011-09-03 03:49:43 +00:00
ent - > v - > groundentity = EDICT_TO_PROG ( w - > progs , downtrace . ent ) ;
2004-11-19 17:43:55 +00:00
}
}
else
{
//Con_Printf("slope\n");
// if the push down didn't end up on good ground, use the move without
// the step up. This happens near wall / slope combinations, and can
// cause the player to hop up higher on a slope too steep to climb
2005-03-28 00:11:59 +00:00
VectorCopy ( originalmove_origin , ent - > v - > origin ) ;
VectorCopy ( originalmove_velocity , ent - > v - > velocity ) ;
2004-11-19 17:43:55 +00:00
//clip = originalmove_clip;
2005-03-28 00:11:59 +00:00
ent - > v - > flags = originalmove_flags ;
2006-02-17 19:54:47 +00:00
ent - > v - > groundentity = originalmove_groundentity ;
2004-11-19 17:43:55 +00:00
}
2012-02-17 01:12:37 +00:00
WPhys_SetOnGround ( w , ent , gravitydir ) ;
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , ent ) ;
2004-11-19 17:43:55 +00:00
}
2005-05-26 12:55:34 +00:00
# endif
2004-08-23 00:15:46 +00:00
2012-01-17 07:57:46 +00:00
void WPhys_MoveChain ( world_t * w , wedict_t * ent , wedict_t * movechain , float * initial_origin , float * initial_angle )
2008-11-09 22:29:28 +00:00
{
qboolean callfunc ;
if ( ( callfunc = DotProduct ( ent - > v - > origin , initial_origin ) ) | | DotProduct ( ent - > v - > angles , initial_angle ) )
{
vec3_t moveang , moveorg ;
int i ;
2009-03-03 01:52:30 +00:00
VectorSubtract ( ent - > v - > angles , initial_angle , moveang ) ;
VectorSubtract ( ent - > v - > origin , initial_origin , moveorg ) ;
2008-11-09 22:29:28 +00:00
2011-09-03 03:49:43 +00:00
for ( i = 16 ; i & & movechain ! = w - > edicts & & ! movechain - > isfree ; i - - , movechain = PROG_TO_WEDICT ( w - > progs , movechain - > xv - > movechain ) )
2008-11-09 22:29:28 +00:00
{
if ( ( int ) movechain - > v - > flags & FL_MOVECHAIN_ANGLE )
VectorAdd ( movechain - > v - > angles , moveang , movechain - > v - > angles ) ;
VectorAdd ( movechain - > v - > origin , moveorg , movechain - > v - > origin ) ;
if ( movechain - > xv - > chainmoved & & callfunc )
{
2011-10-29 19:01:33 +00:00
* w - > g . self = EDICT_TO_PROG ( w - > progs , movechain ) ;
* w - > g . other = EDICT_TO_PROG ( w - > progs , ent ) ;
2008-11-09 22:29:28 +00:00
# ifdef VM_Q1
2011-10-29 19:01:33 +00:00
if ( svs . gametype = = GT_Q1QVM & & w = = & sv . world )
2008-11-09 22:29:28 +00:00
Q1QVM_ChainMoved ( ) ;
else
# endif
2011-09-03 03:49:43 +00:00
PR_ExecuteProgram ( w - > progs , movechain - > xv - > chainmoved ) ;
2008-11-09 22:29:28 +00:00
}
}
}
}
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = =
2005-06-22 17:10:13 +00:00
SV_RunEntity
2004-08-23 00:15:46 +00:00
= = = = = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
void WPhys_RunEntity ( world_t * w , wedict_t * ent )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
wedict_t * movechain ;
2011-05-15 13:23:13 +00:00
vec3_t initial_origin = { 0 } , initial_angle = { 0 } ; // warning: <20> initial_?[?]<5D> may be used uninitialized in this function
2012-02-17 01:12:37 +00:00
const float * gravitydir ;
2004-08-23 00:15:46 +00:00
2011-10-29 19:01:33 +00:00
# ifndef CLIENTONLY
edict_t * svent = ( edict_t * ) ent ;
2011-09-03 03:49:43 +00:00
if ( ent - > entnum > 0 & & ent - > entnum < = sv . allocated_client_slots & & w = = & sv . world )
2005-06-22 17:10:13 +00:00
{ //a client woo.
qboolean readyforjump = false ;
2004-08-23 00:15:46 +00:00
2005-06-22 17:10:13 +00:00
if ( svs . clients [ ent - > entnum - 1 ] . state < cs_spawned )
return ; // unconnected slot
2004-08-23 00:15:46 +00:00
2004-09-22 15:29:33 +00:00
2008-12-06 02:07:04 +00:00
if ( svs . clients [ ent - > entnum - 1 ] . protocol = = SCP_BAD )
2011-09-03 03:49:43 +00:00
svent - > v - > fixangle = 0 ; //bots never get fixangle cleared otherwise
2008-12-06 02:07:04 +00:00
2005-06-22 17:10:13 +00:00
host_client = & svs . clients [ ent - > entnum - 1 ] ;
SV_ClientThink ( ) ;
2004-08-23 00:15:46 +00:00
2005-06-22 17:10:13 +00:00
if ( progstype = = PROG_QW ) //detect if the mod should do a jump
2011-09-03 03:49:43 +00:00
if ( svent - > v - > button2 )
if ( ( int ) svent - > v - > flags & FL_JUMPRELEASED )
2005-06-22 17:10:13 +00:00
readyforjump = true ;
2004-08-23 00:15:46 +00:00
2005-06-22 17:10:13 +00:00
//
// call standard client pre-think
2006-02-17 19:54:47 +00:00
//
2009-11-04 21:16:50 +00:00
pr_global_struct - > time = sv . world . physicstime ;
2005-06-22 17:10:13 +00:00
pr_global_struct - > self = EDICT_TO_PROG ( svprogfuncs , ent ) ;
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
if ( svs . gametype = = GT_Q1QVM )
Q1QVM_PlayerPreThink ( ) ;
else
# endif
2011-12-05 15:23:40 +00:00
if ( pr_global_ptrs - > PlayerPreThink )
PR_ExecuteProgram ( svprogfuncs , * pr_global_ptrs - > PlayerPreThink ) ;
2006-02-17 19:54:47 +00:00
2005-06-22 17:10:13 +00:00
if ( readyforjump ) //qw progs can't jump for themselves...
{
2011-09-03 03:49:43 +00:00
if ( ! svent - > v - > button2 & & ! ( ( int ) ent - > v - > flags & FL_JUMPRELEASED ) & & ent - > v - > velocity [ 2 ] < = 0 )
svent - > v - > velocity [ 2 ] + = 270 ;
2005-06-22 17:10:13 +00:00
}
}
else
2011-10-29 19:01:33 +00:00
# endif
2005-06-22 17:10:13 +00:00
{
2011-10-29 19:01:33 +00:00
if ( ( unsigned int ) ent - > v - > lastruntime = = w - > framenum )
2004-08-23 00:15:46 +00:00
return ;
2011-10-29 19:01:33 +00:00
ent - > v - > lastruntime = w - > framenum ;
# ifndef CLIENTONLY
2011-09-03 03:49:43 +00:00
svent = NULL ;
2011-10-29 19:01:33 +00:00
# endif
2004-08-23 00:15:46 +00:00
}
2011-09-03 03:49:43 +00:00
movechain = PROG_TO_WEDICT ( w - > progs , ent - > xv - > movechain ) ;
if ( movechain ! = w - > edicts )
2004-08-23 00:15:46 +00:00
{
2005-06-22 17:10:13 +00:00
VectorCopy ( ent - > v - > origin , initial_origin ) ;
VectorCopy ( ent - > v - > angles , initial_angle ) ;
2004-08-23 00:15:46 +00:00
}
2005-03-28 00:11:59 +00:00
switch ( ( int ) ent - > v - > movetype )
2004-08-23 00:15:46 +00:00
{
case MOVETYPE_PUSH :
2011-09-03 03:49:43 +00:00
WPhys_Physics_Pusher ( w , ent ) ;
2004-08-23 00:15:46 +00:00
break ;
case MOVETYPE_NONE :
2011-09-03 03:49:43 +00:00
if ( ! WPhys_RunThink ( w , ent ) )
2005-06-22 17:10:13 +00:00
return ;
2004-08-23 00:15:46 +00:00
break ;
case MOVETYPE_NOCLIP :
2011-02-27 15:01:56 +00:00
case MOVETYPE_ANGLENOCLIP :
2011-09-03 03:49:43 +00:00
WPhys_Physics_Noclip ( w , ent ) ;
2004-08-23 00:15:46 +00:00
break ;
case MOVETYPE_STEP :
2010-08-11 23:55:35 +00:00
case MOVETYPE_H2PUSHPULL :
2011-09-03 03:49:43 +00:00
WPhys_Physics_Step ( w , ent ) ;
2004-08-23 00:15:46 +00:00
break ;
2004-10-10 06:32:29 +00:00
case MOVETYPE_FOLLOW :
2011-09-03 03:49:43 +00:00
WPhys_Physics_Follow ( w , ent ) ;
2004-10-10 06:32:29 +00:00
break ;
2010-08-16 02:03:02 +00:00
case MOVETYPE_FLY :
case MOVETYPE_H2SWIM :
2004-08-23 00:15:46 +00:00
case MOVETYPE_TOSS :
case MOVETYPE_BOUNCE :
case MOVETYPE_BOUNCEMISSILE :
case MOVETYPE_FLYMISSILE :
2011-09-03 03:49:43 +00:00
WPhys_Physics_Toss ( w , ent ) ;
2004-08-23 00:15:46 +00:00
break ;
case MOVETYPE_WALK :
2011-09-03 03:49:43 +00:00
if ( ! WPhys_RunThink ( w , ent ) )
2004-08-23 00:15:46 +00:00
return ;
2012-02-17 01:12:37 +00:00
if ( ent - > xv - > gravitydir [ 2 ] | | ent - > xv - > gravitydir [ 1 ] | | ent - > xv - > gravitydir [ 0 ] )
gravitydir = ent - > xv - > gravitydir ;
else
gravitydir = standardgravity ;
2011-09-03 03:49:43 +00:00
if ( ! WPhys_CheckWater ( w , ent ) & & ! ( ( int ) ent - > v - > flags & FL_WATERJUMP ) )
2012-02-17 01:12:37 +00:00
WPhys_AddGravity ( w , ent , gravitydir , ent - > xv - > gravity ) ;
2011-09-03 03:49:43 +00:00
WPhys_CheckStuck ( w , ent ) ;
2004-08-23 00:15:46 +00:00
2012-02-17 01:12:37 +00:00
WPhys_WalkMove ( w , ent , gravitydir ) ;
2004-08-23 00:15:46 +00:00
2011-10-29 19:01:33 +00:00
# ifndef CLIENTONLY
if ( ! ( ent - > entnum > 0 & & ent - > entnum < = sv . allocated_client_slots ) & & w = = & sv . world )
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ent , true ) ;
2011-10-29 19:01:33 +00:00
# endif
2005-05-26 12:55:34 +00:00
2004-08-23 00:15:46 +00:00
break ;
2009-11-04 21:16:50 +00:00
case MOVETYPE_PHYSICS :
2011-09-03 03:49:43 +00:00
if ( WPhys_RunThink ( w , ent ) )
World_LinkEdict ( w , ent , true ) ;
2012-09-30 05:52:03 +00:00
w - > ode . hasodeents = true ;
2009-11-04 21:16:50 +00:00
break ;
2004-08-23 00:15:46 +00:00
default :
2011-10-27 16:16:29 +00:00
// SV_Error ("SV_Physics: bad movetype %i on %s", (int)ent->v->movetype, PR_GetString(w->progs, ent->v->classname));
break ;
2004-08-23 00:15:46 +00:00
}
2011-09-03 03:49:43 +00:00
if ( movechain ! = w - > edicts )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
WPhys_MoveChain ( w , ent , movechain , initial_origin , initial_angle ) ;
2004-08-23 00:15:46 +00:00
}
2005-06-22 17:10:13 +00:00
2011-10-29 19:01:33 +00:00
# ifndef CLIENTONLY
2011-09-03 03:49:43 +00:00
if ( svent )
2005-06-22 17:10:13 +00:00
{
2011-09-03 03:49:43 +00:00
World_LinkEdict ( w , ( wedict_t * ) svent , true ) ;
2005-06-22 17:10:13 +00:00
2011-09-03 03:49:43 +00:00
pr_global_struct - > time = w - > physicstime ;
pr_global_struct - > self = EDICT_TO_PROG ( w - > progs , ent ) ;
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
if ( svs . gametype = = GT_Q1QVM )
Q1QVM_PostThink ( ) ;
else
# endif
{
2011-12-05 15:23:40 +00:00
if ( pr_global_ptrs - > PlayerPostThink )
PR_ExecuteProgram ( w - > progs , * pr_global_ptrs - > PlayerPostThink ) ;
2007-09-02 19:55:17 +00:00
}
2005-06-22 17:10:13 +00:00
}
2011-10-29 19:01:33 +00:00
# endif
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = =
SV_RunNewmis
= = = = = = = = = = = = = = = =
*/
2011-09-03 03:49:43 +00:00
void WPhys_RunNewmis ( world_t * w )
2004-08-23 00:15:46 +00:00
{
2011-09-03 03:49:43 +00:00
wedict_t * ent ;
2004-08-23 00:15:46 +00:00
2011-09-03 03:49:43 +00:00
if ( ! w - > g . newmis ) //newmis variable is not exported.
2004-08-23 00:15:46 +00:00
return ;
2011-10-29 19:01:33 +00:00
if ( ! sv_gameplayfix_multiplethinks . ival )
2004-08-23 00:15:46 +00:00
return ;
2011-09-03 03:49:43 +00:00
if ( ! * w - > g . newmis )
2004-08-23 00:15:46 +00:00
return ;
2011-09-03 03:49:43 +00:00
ent = PROG_TO_WEDICT ( w - > progs , * w - > g . newmis ) ;
2004-08-23 00:15:46 +00:00
host_frametime = 0.05 ;
2011-09-03 03:49:43 +00:00
* w - > g . newmis = 0 ;
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
WPhys_RunEntity ( w , ent ) ;
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
host_frametime = * w - > g . frametime ;
2004-08-23 00:15:46 +00:00
}
2011-09-03 03:49:43 +00:00
trace_t WPhys_Trace_Toss ( world_t * w , wedict_t * tossent , wedict_t * ignore )
2004-10-13 06:35:27 +00:00
{
int i ;
float gravity ;
vec3_t move , end ;
trace_t trace ;
vec3_t origin , velocity ;
// this has to fetch the field from the original edict, since our copy is truncated
2007-09-02 19:55:17 +00:00
gravity = tossent - > xv - > gravity ;
2004-10-13 06:35:27 +00:00
if ( ! gravity )
gravity = 1.0 ;
gravity * = sv_gravity . value * 0.05 ;
2005-03-28 00:11:59 +00:00
VectorCopy ( tossent - > v - > origin , origin ) ;
VectorCopy ( tossent - > v - > velocity , velocity ) ;
2004-10-13 06:35:27 +00:00
2011-09-03 03:49:43 +00:00
WPhys_CheckVelocity ( w , tossent ) ;
2004-10-13 06:35:27 +00:00
for ( i = 0 ; i < 200 ; i + + ) // LordHavoc: sanity check; never trace more than 10 seconds
{
velocity [ 2 ] - = gravity ;
VectorScale ( velocity , 0.05 , move ) ;
VectorAdd ( origin , move , end ) ;
2011-09-03 03:49:43 +00:00
trace = World_Move ( w , origin , tossent - > v - > mins , tossent - > v - > maxs , end , MOVE_NORMAL , tossent ) ;
2004-10-13 06:35:27 +00:00
VectorCopy ( trace . endpos , origin ) ;
if ( trace . fraction < 1 & & trace . ent & & trace . ent ! = ignore )
break ;
if ( Length ( velocity ) > sv_maxvelocity . value )
{
2011-09-03 03:49:43 +00:00
// Con_DPrintf("Slowing %s\n", PR_GetString(w->progs, tossent->v->classname));
2004-10-13 06:35:27 +00:00
VectorScale ( velocity , sv_maxvelocity . value / Length ( velocity ) , velocity ) ;
}
}
trace . fraction = 0 ; // not relevant
return trace ;
}
2011-09-03 03:49:43 +00:00
/*
Run an individual physics frame . This might be run multiple times in one frame if we ' re running slow , or not at all .
*/
void World_Physics_Frame ( world_t * w )
{
int i ;
qboolean retouch ;
wedict_t * ent ;
2011-10-29 19:01:33 +00:00
w - > framenum + + ;
2011-10-27 16:16:29 +00:00
i = * w - > g . physics_mode ;
if ( i = = 0 )
{
/*physics mode 0 = none*/
return ;
}
if ( i = = 1 )
{
/*physics mode 1 = thinks only*/
for ( i = 0 ; i < w - > num_edicts ; i + + )
{
ent = ( wedict_t * ) EDICT_NUM ( w - > progs , i ) ;
if ( ent - > isfree )
continue ;
WPhys_RunThink ( w , ent ) ;
}
return ;
}
/*physics mode 2 = normal movetypes*/
2011-09-03 03:49:43 +00:00
retouch = ( w - > g . force_retouch & & ( * w - > g . force_retouch > = 1 ) ) ;
//
// treat each object in turn
// even the world gets a chance to think
//
for ( i = 0 ; i < w - > num_edicts ; i + + )
{
ent = ( wedict_t * ) EDICT_NUM ( w - > progs , i ) ;
if ( ent - > isfree )
continue ;
if ( retouch )
World_LinkEdict ( w , ent , true ) ; // force retouch even for stationary
2011-10-29 19:01:33 +00:00
# ifndef CLIENTONLY
2011-09-03 03:49:43 +00:00
if ( i > 0 & & i < = sv . allocated_client_slots & & w = = & sv . world )
{
if ( ! svs . clients [ i - 1 ] . isindependant )
{
WPhys_RunEntity ( w , ent ) ;
WPhys_RunNewmis ( w ) ;
}
// else
// World_LinkEdict(w, (wedict_t*)ent, true);
continue ; // clients are run directly from packets
}
2011-10-29 19:01:33 +00:00
# endif
2011-09-03 03:49:43 +00:00
WPhys_RunEntity ( w , ent ) ;
WPhys_RunNewmis ( w ) ;
}
if ( retouch )
2011-10-27 16:16:29 +00:00
* w - > g . force_retouch - = 1 ;
2011-09-03 03:49:43 +00:00
}
2011-10-29 19:01:33 +00:00
# ifndef CLIENTONLY
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = =
SV_Physics
= = = = = = = = = = = = = = = =
*/
qboolean SV_Physics ( void )
{
int i ;
2009-11-04 21:16:50 +00:00
qboolean moved = false ;
2009-11-15 03:20:17 +00:00
int maxtics ;
2004-08-23 00:15:46 +00:00
2012-02-12 05:18:31 +00:00
//keep gravity tracking the cvar properly
movevars . gravity = sv_gravity . value ;
2005-03-07 08:58:26 +00:00
2009-03-03 01:52:30 +00:00
if ( svs . gametype ! = GT_PROGS & & svs . gametype ! = GT_Q1QVM & & svs . gametype ! = GT_HALFLIFE ) //make tics multiples of sv_maxtic (defaults to 0.1)
2004-08-23 00:15:46 +00:00
{
2009-11-04 21:16:50 +00:00
host_frametime = sv . time - sv . world . physicstime ;
2005-08-11 04:14:33 +00:00
if ( host_frametime < 0 )
{
if ( host_frametime < - 1 )
2009-11-04 21:16:50 +00:00
sv . world . physicstime = sv . time ;
2005-08-11 04:14:33 +00:00
host_frametime = 0 ;
}
2006-09-17 00:59:22 +00:00
if ( svs . gametype ! = GT_QUAKE3 )
2004-08-23 00:15:46 +00:00
if ( host_frametime < sv_maxtic . value & & realtime )
{
2005-08-11 04:14:33 +00:00
// sv.time+=host_frametime;
2009-11-04 21:16:50 +00:00
return false ; //don't bother with the whole server thing for a bit longer
2004-08-23 00:15:46 +00:00
}
if ( host_frametime > sv_maxtic . value )
host_frametime = sv_maxtic . value ;
2009-11-04 21:16:50 +00:00
sv . world . physicstime = sv . time ;
2004-08-23 00:15:46 +00:00
2005-03-07 08:58:26 +00:00
switch ( svs . gametype )
{
# ifdef Q2SERVER
case GT_QUAKE2 :
ge - > RunFrame ( ) ;
break ;
# endif
# ifdef Q3SERVER
case GT_QUAKE3 :
SVQ3_RunFrame ( ) ;
break ;
# endif
default :
break ;
}
2009-11-04 21:16:50 +00:00
return true ;
2004-08-23 00:15:46 +00:00
}
2005-03-07 08:58:26 +00:00
2009-03-03 01:52:30 +00:00
if ( svs . gametype ! = GT_HALFLIFE & & /*sv.botsonthemap &&*/ progstype = = PROG_QW )
2007-10-02 15:17:22 +00:00
{
2007-10-14 01:52:42 +00:00
//DP_SV_BOTCLIENT - make the bots move with qw physics.
2007-10-02 15:17:22 +00:00
//They only move when there arn't any players on the server, but they should move at the right kind of speed if there are... hopefully
//they might just be a bit lagged. they will at least be as smooth as other players are.
usercmd_t ucmd ;
static int old_bot_time ; //I hate using floats for timers.
2011-10-27 16:16:29 +00:00
int newbottime , ms ;
2007-10-02 15:17:22 +00:00
client_t * oldhost ;
2007-10-05 10:44:36 +00:00
edict_t * oldplayer ;
2007-10-02 15:25:26 +00:00
host_frametime = ( Sys_Milliseconds ( ) - old_bot_time ) / 1000.0f ;
2007-10-02 15:17:22 +00:00
if ( 1 | | host_frametime > = 1 / 72.0f )
{
memset ( & ucmd , 0 , sizeof ( ucmd ) ) ;
2011-10-27 16:16:29 +00:00
newbottime = Sys_Milliseconds ( ) ;
ms = newbottime - old_bot_time ;
old_bot_time = newbottime ;
2007-10-02 15:17:22 +00:00
for ( i = 1 ; i < = sv . allocated_client_slots ; i + + )
{
if ( svs . clients [ i - 1 ] . state & & svs . clients [ i - 1 ] . protocol = = SCP_BAD )
{ //then this is a bot
2007-10-05 10:44:36 +00:00
oldhost = host_client ;
oldplayer = sv_player ;
host_client = & svs . clients [ i - 1 ] ;
2011-10-27 16:16:29 +00:00
host_client - > isindependant = true ;
2007-10-05 10:44:36 +00:00
sv_player = host_client - > edict ;
2007-10-08 12:23:55 +00:00
SV_PreRunCmd ( ) ;
2007-10-05 10:44:36 +00:00
2007-10-14 20:32:21 +00:00
# ifdef SERVERONLY
2007-10-02 15:17:22 +00:00
ucmd . msec = host_frametime * 1000 ;
2007-10-14 20:32:21 +00:00
# else
// FIXME: Something very weird is going on here!
2011-10-27 16:16:29 +00:00
ucmd . msec = ms ;
2007-10-14 20:32:21 +00:00
# endif
2011-10-27 16:16:29 +00:00
ucmd . angles [ 0 ] = ( int ) ( sv_player - > v - > v_angle [ 0 ] * ( 65535 / 360.0f ) ) ;
ucmd . angles [ 1 ] = ( int ) ( sv_player - > v - > v_angle [ 1 ] * ( 65535 / 360.0f ) ) ;
ucmd . angles [ 2 ] = ( int ) ( sv_player - > v - > v_angle [ 2 ] * ( 65535 / 360.0f ) ) ;
2007-10-05 10:44:36 +00:00
ucmd . forwardmove = sv_player - > xv - > movement [ 0 ] ;
ucmd . sidemove = sv_player - > xv - > movement [ 1 ] ;
ucmd . upmove = sv_player - > xv - > movement [ 2 ] ;
ucmd . buttons = ( sv_player - > v - > button0 ? 1 : 0 ) | ( sv_player - > v - > button2 ? 2 : 0 ) ;
2007-10-02 15:17:22 +00:00
svs . clients [ i - 1 ] . lastcmd = ucmd ; //allow the other clients to predict this bot.
SV_RunCmd ( & ucmd , false ) ;
SV_PostRunCmd ( ) ;
2007-10-11 13:31:31 +00:00
2007-10-02 15:17:22 +00:00
host_client = oldhost ;
2007-10-05 10:44:36 +00:00
sv_player = oldplayer ;
2007-10-02 15:17:22 +00:00
}
}
old_bot_time = Sys_Milliseconds ( ) ;
}
}
2009-11-15 03:20:17 +00:00
maxtics = sv_limittics . ival ;
2004-08-23 00:15:46 +00:00
// don't bother running a frame if sys_ticrate seconds haven't passed
2009-03-03 01:52:30 +00:00
while ( 1 )
{
2009-11-04 21:16:50 +00:00
host_frametime = sv . time - sv . world . physicstime ;
2009-03-03 01:52:30 +00:00
if ( host_frametime < 0 )
{
2009-11-04 21:16:50 +00:00
sv . world . physicstime = sv . time ;
2009-03-03 01:52:30 +00:00
break ;
}
if ( host_frametime < = 0 | | host_frametime < sv_mintic . value )
break ;
2009-11-15 03:20:17 +00:00
if ( host_frametime > sv_maxtic . value )
2009-03-03 01:52:30 +00:00
{
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
if ( maxtics - - < = 0 )
2009-11-15 03:20:17 +00:00
{
//timewarp, as we're running too slowly
sv . world . physicstime = sv . time ;
break ;
}
2009-03-03 01:52:30 +00:00
host_frametime = sv_maxtic . value ;
}
2010-07-25 15:09:13 +00:00
if ( ! host_frametime )
continue ;
2009-11-15 03:20:17 +00:00
sv . world . physicstime + = host_frametime ;
2005-05-26 12:55:34 +00:00
2009-11-04 21:16:50 +00:00
moved = true ;
2009-03-03 01:52:30 +00:00
# ifdef HLSERVER
if ( svs . gametype = = GT_HALFLIFE )
{
SVHL_RunFrame ( ) ;
continue ;
}
# endif
2004-08-23 00:15:46 +00:00
2009-03-03 01:52:30 +00:00
pr_global_struct - > frametime = host_frametime ;
2004-08-23 00:15:46 +00:00
2009-03-03 01:52:30 +00:00
SV_ProgStartFrame ( ) ;
2004-08-23 00:15:46 +00:00
2010-12-18 17:02:47 +00:00
PRSV_RunThreads ( ) ;
2005-05-08 16:41:54 +00:00
2011-09-03 03:49:43 +00:00
# ifdef USEODE
World_ODE_Frame ( & sv . world , host_frametime , sv_gravity . value ) ;
# endif
2005-05-08 16:41:54 +00:00
2006-02-17 19:54:47 +00:00
2011-09-03 03:49:43 +00:00
World_Physics_Frame ( & sv . world ) ;
2004-08-23 00:15:46 +00:00
2007-09-02 19:55:17 +00:00
# ifdef VM_Q1
2009-03-03 01:52:30 +00:00
if ( svs . gametype = = GT_Q1QVM )
{
2009-11-04 21:16:50 +00:00
pr_global_struct - > self = EDICT_TO_PROG ( svprogfuncs , sv . world . edicts ) ;
pr_global_struct - > other = EDICT_TO_PROG ( svprogfuncs , sv . world . edicts ) ;
pr_global_struct - > time = sv . world . physicstime ;
2009-03-03 01:52:30 +00:00
Q1QVM_EndFrame ( ) ;
}
else
2007-09-02 19:55:17 +00:00
# endif
2009-03-03 01:52:30 +00:00
if ( EndFrameQC )
{
2009-11-04 21:16:50 +00:00
pr_global_struct - > self = EDICT_TO_PROG ( svprogfuncs , sv . world . edicts ) ;
pr_global_struct - > other = EDICT_TO_PROG ( svprogfuncs , sv . world . edicts ) ;
pr_global_struct - > time = sv . world . physicstime ;
2009-03-03 01:52:30 +00:00
PR_ExecuteProgram ( svprogfuncs , EndFrameQC ) ;
}
NPP_Flush ( ) ; //flush it just in case there was an error and we stopped preparsing. This is only really needed while debugging.
2004-08-23 00:15:46 +00:00
2009-03-03 01:52:30 +00:00
}
2009-11-04 21:16:50 +00:00
return moved ;
2004-08-23 00:15:46 +00:00
}
2011-10-29 19:01:33 +00:00
# endif
2004-08-23 00:15:46 +00:00
void SV_SetMoveVars ( void )
{
2006-02-17 19:54:47 +00:00
movevars . stopspeed = sv_stopspeed . value ;
movevars . maxspeed = sv_maxspeed . value ;
movevars . spectatormaxspeed = sv_spectatormaxspeed . value ;
movevars . accelerate = sv_accelerate . value ;
movevars . airaccelerate = sv_airaccelerate . value ;
movevars . wateraccelerate = sv_wateraccelerate . value ;
movevars . friction = sv_friction . value ;
movevars . waterfriction = sv_waterfriction . value ;
2004-08-23 00:15:46 +00:00
movevars . entgravity = 1.0 ;
2011-10-29 19:01:33 +00:00
if ( * sv_stepheight . string )
movevars . stepheight = sv_stepheight . value ;
2007-07-23 11:44:45 +00:00
else
movevars . stepheight = PM_DEFAULTSTEPHEIGHT ;
2004-08-23 00:15:46 +00:00
}
2004-12-09 23:47:43 +00:00
# endif