2019-06-14 12:33:08 +00:00
|
|
|
#pragma once
|
2019-06-16 18:39:48 +00:00
|
|
|
#include "common.h"
|
2019-06-20 11:22:44 +00:00
|
|
|
#include "PedModelInfo.h"
|
2019-07-03 16:34:42 +00:00
|
|
|
#include "AnimBlendClumpData.h"
|
2019-06-14 12:33:08 +00:00
|
|
|
|
|
|
|
struct LimbOrientation
|
|
|
|
{
|
|
|
|
float phi;
|
|
|
|
float theta;
|
|
|
|
};
|
|
|
|
|
2019-07-20 21:29:58 +00:00
|
|
|
struct LimbMovementInfo {
|
|
|
|
float maxYaw;
|
|
|
|
float minYaw;
|
|
|
|
float yawD;
|
|
|
|
float maxPitch;
|
|
|
|
float minPitch;
|
|
|
|
float pitchD;
|
|
|
|
};
|
|
|
|
|
2019-08-22 22:44:38 +00:00
|
|
|
enum LimbMoveStatus {
|
|
|
|
ANGLES_SET_TO_MAX, // because given angles were unreachable
|
|
|
|
ONE_ANGLE_COULDNT_BE_SET_EXACTLY, // because it can't be reached in a jiffy
|
|
|
|
ANGLES_SET_EXACTLY
|
|
|
|
};
|
|
|
|
|
2019-06-14 12:33:08 +00:00
|
|
|
class CPed;
|
|
|
|
|
|
|
|
class CPedIK
|
|
|
|
{
|
|
|
|
public:
|
2019-06-16 21:12:14 +00:00
|
|
|
enum {
|
2019-06-20 11:22:44 +00:00
|
|
|
FLAG_1 = 1,
|
2019-08-22 22:44:38 +00:00
|
|
|
LOOKING = 2,
|
|
|
|
AIMS_WITH_ARM = 4,
|
2019-06-16 21:12:14 +00:00
|
|
|
};
|
|
|
|
|
2019-06-20 11:22:44 +00:00
|
|
|
CPed *m_ped;
|
2019-06-14 12:33:08 +00:00
|
|
|
LimbOrientation m_headOrient;
|
|
|
|
LimbOrientation m_torsoOrient;
|
|
|
|
LimbOrientation m_upperArmOrient;
|
|
|
|
LimbOrientation m_lowerArmOrient;
|
|
|
|
int32 m_flags;
|
|
|
|
|
2019-07-20 21:29:58 +00:00
|
|
|
static LimbMovementInfo &ms_torsoInfo;
|
2019-08-22 22:44:38 +00:00
|
|
|
static LimbMovementInfo &ms_headInfo;
|
2019-07-20 21:29:58 +00:00
|
|
|
|
2019-06-30 21:50:40 +00:00
|
|
|
CPedIK(CPed *ped);
|
2019-06-14 12:33:08 +00:00
|
|
|
bool PointGunInDirection(float phi, float theta);
|
2019-06-20 11:22:44 +00:00
|
|
|
bool PointGunAtPosition(CVector *position);
|
|
|
|
void GetComponentPosition(RwV3d *pos, PedNode node);
|
|
|
|
static RwMatrix *GetWorldMatrix(RwFrame *source, RwMatrix *destination);
|
2019-07-03 16:34:42 +00:00
|
|
|
void RotateTorso(AnimBlendFrameData* animBlend, LimbOrientation* limb, bool changeRoll);
|
|
|
|
void ExtractYawAndPitchLocal(RwMatrixTag*, float*, float*);
|
|
|
|
void ExtractYawAndPitchWorld(RwMatrixTag*, float*, float*);
|
2019-08-22 22:44:38 +00:00
|
|
|
LimbMoveStatus MoveLimb(LimbOrientation &a1, float a2, float a3, LimbMovementInfo &a4);
|
2019-07-20 21:29:58 +00:00
|
|
|
bool RestoreGunPosn(void);
|
2019-08-22 22:44:38 +00:00
|
|
|
bool LookInDirection(float phi, float theta);
|
|
|
|
bool LookAtPosition(CVector const& pos);
|
2019-09-03 16:53:04 +00:00
|
|
|
bool RestoreLookAt(void);
|
2019-06-14 12:33:08 +00:00
|
|
|
};
|
|
|
|
static_assert(sizeof(CPedIK) == 0x28, "CPedIK: error");
|