diff options
author | aap <aap@papnet.eu> | 2019-06-24 23:11:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 23:11:56 +0200 |
commit | f07f411629b686338df10fdce217b2d258f38c92 (patch) | |
tree | cd07798b2daf33ea3a152e54cd18809da2cc9b2f /src/control/PedPlacement.cpp | |
parent | replaced some ctors; made PreRender call game function (diff) | |
parent | CPed, CVehicle, mostly entering/exiting car (diff) | |
download | re3-f07f411629b686338df10fdce217b2d258f38c92.tar re3-f07f411629b686338df10fdce217b2d258f38c92.tar.gz re3-f07f411629b686338df10fdce217b2d258f38c92.tar.bz2 re3-f07f411629b686338df10fdce217b2d258f38c92.tar.lz re3-f07f411629b686338df10fdce217b2d258f38c92.tar.xz re3-f07f411629b686338df10fdce217b2d258f38c92.tar.zst re3-f07f411629b686338df10fdce217b2d258f38c92.zip |
Diffstat (limited to 'src/control/PedPlacement.cpp')
-rw-r--r-- | src/control/PedPlacement.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/control/PedPlacement.cpp b/src/control/PedPlacement.cpp new file mode 100644 index 00000000..de4cdae1 --- /dev/null +++ b/src/control/PedPlacement.cpp @@ -0,0 +1,40 @@ +#include "common.h" +#include "patcher.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 + ); + + if (CWorld::ProcessVerticalLine(vec, startZ, foundCol, foundEnt, true, false, false, false, true, false, false)) + foundColZ = foundCol.point.z; + + // Adjust coords and do a second test + vec.x += 0.1f; + vec.y += 0.1f; + + if (CWorld::ProcessVerticalLine(vec, startZ, foundCol, foundEnt, true, false, false, false, true, false, false)) + foundColZ2 = foundCol.point.z; + + zForPed = max(foundColZ, foundColZ2); + + if (zForPed > -99.0f) + pos->z = 1.04f + zForPed; +} + +STARTPATCHES + InjectHook(0x4EE340, &CPedPlacement::FindZCoorForPed, PATCH_JUMP); +ENDPATCHES |