re3/src/peds/PedPlacement.cpp

52 lines
1.1 KiB
C++
Raw Normal View History

#include "common.h"
2020-04-17 13:31:11 +00:00
2020-03-28 14:47:52 +00:00
#include "Ped.h"
#include "PedPlacement.h"
#include "World.h"
void
CPedPlacement::FindZCoorForPed(CVector* pos)
{
float zForPed;
float startZ = pos->z - 100.0f;
float foundColZ = -100.0f;
float foundColZ2 = -100.0f;
CColPoint foundCol;
CEntity* foundEnt;
CVector vec(
pos->x,
pos->y,
pos->z + 1.0f
);
2019-06-30 10:53:39 +00:00
if (CWorld::ProcessVerticalLine(vec, startZ, foundCol, foundEnt, true, false, false, false, true, false, nil))
foundColZ = foundCol.point.z;
// Adjust coords and do a second test
vec.x += 0.1f;
vec.y += 0.1f;
2019-06-30 10:53:39 +00:00
if (CWorld::ProcessVerticalLine(vec, startZ, foundCol, foundEnt, true, false, false, false, true, false, nil))
foundColZ2 = foundCol.point.z;
2020-04-19 16:34:08 +00:00
zForPed = Max(foundColZ, foundColZ2);
if (zForPed > -99.0f)
2020-03-07 19:22:43 +00:00
pos->z = FEET_OFFSET + zForPed;
}
CEntity*
2020-05-05 01:45:18 +00:00
CPedPlacement::IsPositionClearOfCars(Const CVector *pos)
{
2019-07-31 15:54:18 +00:00
return CWorld::TestSphereAgainstWorld(*pos, 0.25f, nil, true, true, false, false, false, false);
}
2020-02-17 23:56:13 +00:00
bool
CPedPlacement::IsPositionClearForPed(CVector* pos)
{
int16 count;
CWorld::FindObjectsKindaColliding(*pos, 0.75f, true, &count, 2, nil, false, true, true, false, false);
return count == 0;
}