2019-06-14 08:33:08 -04:00
|
|
|
#include "common.h"
|
|
|
|
#include "patcher.h"
|
2019-06-20 07:22:44 -04:00
|
|
|
#include "PedIK.h"
|
2019-06-14 08:33:08 -04:00
|
|
|
#include "Ped.h"
|
|
|
|
|
|
|
|
WRAPPER bool CPedIK::PointGunInDirection(float phi, float theta) { EAXJMP(0x4ED9B0); }
|
2019-06-20 07:22:44 -04:00
|
|
|
WRAPPER bool CPedIK::PointGunAtPosition(CVector *position) { EAXJMP(0x4ED920); }
|
|
|
|
|
2019-06-30 17:50:40 -04:00
|
|
|
CPedIK::CPedIK(CPed *ped)
|
|
|
|
{
|
|
|
|
m_ped = ped;
|
|
|
|
m_flags = 0;
|
|
|
|
m_headOrient.phi = 0.0f;
|
|
|
|
m_headOrient.theta = 0.0f;
|
|
|
|
m_torsoOrient.phi = 0.0f;
|
|
|
|
m_torsoOrient.theta = 0.0f;
|
|
|
|
m_upperArmOrient.phi = 0.0f;
|
|
|
|
m_upperArmOrient.theta = 0.0f;
|
|
|
|
m_lowerArmOrient.phi = 0.0f;
|
|
|
|
m_lowerArmOrient.theta = 0.0f;
|
|
|
|
}
|
|
|
|
|
2019-06-20 07:22:44 -04:00
|
|
|
void
|
|
|
|
CPedIK::GetComponentPosition(RwV3d *pos, PedNode node)
|
|
|
|
{
|
|
|
|
RwFrame *f;
|
|
|
|
RwMatrix *mat;
|
|
|
|
|
|
|
|
f = m_ped->GetNodeFrame(node);
|
2019-07-01 15:46:44 -04:00
|
|
|
mat = RwFrameGetMatrix(f);
|
2019-06-20 07:22:44 -04:00
|
|
|
*pos = mat->pos;
|
|
|
|
|
|
|
|
for (f = RwFrameGetParent(f); f; f = RwFrameGetParent(f))
|
2019-07-01 15:46:44 -04:00
|
|
|
RwV3dTransformPoints(pos, pos, 1, RwFrameGetMatrix(f));
|
2019-06-20 07:22:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
RwMatrix*
|
|
|
|
CPedIK::GetWorldMatrix(RwFrame *source, RwMatrix *destination)
|
|
|
|
{
|
|
|
|
RwFrame *i;
|
|
|
|
|
2019-07-01 15:46:44 -04:00
|
|
|
*destination = *RwFrameGetMatrix(source);
|
2019-06-20 07:22:44 -04:00
|
|
|
|
|
|
|
for (i = RwFrameGetParent(source); i; i = RwFrameGetParent(i))
|
2019-07-01 15:46:44 -04:00
|
|
|
RwMatrixTransform(destination, RwFrameGetMatrix(i), rwCOMBINEPOSTCONCAT);
|
2019-06-20 07:22:44 -04:00
|
|
|
|
|
|
|
return destination;
|
|
|
|
}
|
|
|
|
|
|
|
|
STARTPATCHES
|
|
|
|
InjectHook(0x4ED0F0, &CPedIK::GetComponentPosition, PATCH_JUMP);
|
|
|
|
InjectHook(0x4ED060, &CPedIK::GetWorldMatrix, PATCH_JUMP);
|
|
|
|
ENDPATCHES
|