Searched refs:pusher (Results 1 – 3 of 3) sorted by relevance
/external/quake/quake/src/WinQuake/ |
D | sv_phys.cpp | 439 void SV_PushMove (edict_t *pusher, float movetime) in SV_PushMove() argument 449 if (!pusher->u.v.velocity[0] && !pusher->u.v.velocity[1] && !pusher->u.v.velocity[2]) in SV_PushMove() 451 pusher->u.v.ltime += movetime; in SV_PushMove() 457 move[i] = pusher->u.v.velocity[i] * movetime; in SV_PushMove() 458 mins[i] = pusher->u.v.absmin[i] + move[i]; in SV_PushMove() 459 maxs[i] = pusher->u.v.absmax[i] + move[i]; in SV_PushMove() 462 VectorCopy (pusher->u.v.origin, pushorig); in SV_PushMove() 466 VectorAdd (pusher->u.v.origin, move, pusher->u.v.origin); in SV_PushMove() 467 pusher->u.v.ltime += movetime; in SV_PushMove() 468 SV_LinkEdict (pusher, false); in SV_PushMove() [all …]
|
D | WinQuake.ncb | 1244 …SV_Physics_TossSV_PushEntitytrace_tvec3_t pushSV_PushRotateedict_t *pusherfloat movetimeSV_…
|
/external/quake/quake/src/QW/server/ |
D | sv_phys.c | 428 qboolean SV_Push (edict_t *pusher, vec3_t move) in SV_Push() argument 440 mins[i] = pusher->v.absmin[i] + move[i]; in SV_Push() 441 maxs[i] = pusher->v.absmax[i] + move[i]; in SV_Push() 444 VectorCopy (pusher->v.origin, pushorig); in SV_Push() 448 VectorAdd (pusher->v.origin, move, pusher->v.origin); in SV_Push() 449 SV_LinkEdict (pusher, false); in SV_Push() 463 pusher->v.solid = SOLID_NOT; in SV_Push() 465 pusher->v.solid = SOLID_BSP; in SV_Push() 471 && PROG_TO_EDICT(check->v.groundentity) == pusher) ) in SV_Push() 522 VectorCopy (pushorig, pusher->v.origin); in SV_Push() [all …]
|