Home
last modified time | relevance | path

Searched refs:pusher (Results 1 – 3 of 3) sorted by relevance

/external/quake/quake/src/WinQuake/
Dsv_phys.cpp439 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 …]
DWinQuake.ncb1244 …SV_Physics_Toss�SV_PushEntity�trace_t�vec3_t push�SV_PushRotate�edict_t *pusher�float movetime�SV_…
/external/quake/quake/src/QW/server/
Dsv_phys.c428 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 …]