2019-06-14 12:33:08 +00:00
|
|
|
#pragma once
|
2019-06-16 18:39:48 +00:00
|
|
|
#include "common.h"
|
2019-07-03 16:34:42 +00:00
|
|
|
#include "AnimBlendClumpData.h"
|
2019-06-14 12:33:08 +00:00
|
|
|
|
|
|
|
struct LimbOrientation
|
|
|
|
{
|
2020-05-15 17:41:44 +00:00
|
|
|
float yaw;
|
|
|
|
float pitch;
|
2019-06-14 12:33:08 +00:00
|
|
|
};
|
|
|
|
|
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 {
|
2020-03-02 00:03:39 +00:00
|
|
|
GUN_POINTED_SUCCESSFULLY = 1, // set but unused
|
|
|
|
LOOKAROUND_HEAD_ONLY = 2,
|
2019-08-22 22:44:38 +00:00
|
|
|
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-10-26 11:13:00 +00:00
|
|
|
static LimbMovementInfo ms_torsoInfo;
|
|
|
|
static LimbMovementInfo ms_headInfo;
|
|
|
|
static LimbMovementInfo ms_headRestoreInfo;
|
|
|
|
static LimbMovementInfo ms_upperArmInfo;
|
|
|
|
static LimbMovementInfo ms_lowerArmInfo;
|
2019-07-20 21:29:58 +00:00
|
|
|
|
2019-06-30 21:50:40 +00:00
|
|
|
CPedIK(CPed *ped);
|
2020-05-15 17:41:44 +00:00
|
|
|
bool PointGunInDirection(float targetYaw, float targetPitch);
|
|
|
|
bool PointGunInDirectionUsingArm(float targetYaw, float targetPitch);
|
2020-01-28 23:53:58 +00:00
|
|
|
bool PointGunAtPosition(CVector const& position);
|
2020-05-23 13:53:20 +00:00
|
|
|
void GetComponentPosition(RwV3d &pos, uint32 node);
|
2019-07-03 16:34:42 +00:00
|
|
|
void RotateTorso(AnimBlendFrameData* animBlend, LimbOrientation* limb, bool changeRoll);
|
2020-04-09 14:35:24 +00:00
|
|
|
void ExtractYawAndPitchLocal(RwMatrix *mat, float *yaw, float *pitch);
|
2020-04-23 20:25:18 +00:00
|
|
|
void ExtractYawAndPitchLocalSkinned(AnimBlendFrameData *node, float *yaw, float *pitch);
|
2020-04-09 14:35:24 +00:00
|
|
|
void ExtractYawAndPitchWorld(RwMatrix *mat, float *yaw, float *pitch);
|
2020-05-15 17:41:44 +00:00
|
|
|
LimbMoveStatus MoveLimb(LimbOrientation &limb, float targetYaw, float targetPitch, LimbMovementInfo &moveInfo);
|
2019-07-20 21:29:58 +00:00
|
|
|
bool RestoreGunPosn(void);
|
2020-05-15 17:41:44 +00:00
|
|
|
bool LookInDirection(float targetYaw, float targetPitch);
|
2019-08-22 22:44:38 +00:00
|
|
|
bool LookAtPosition(CVector const& pos);
|
2019-09-03 16:53:04 +00:00
|
|
|
bool RestoreLookAt(void);
|
2019-06-14 12:33:08 +00:00
|
|
|
};
|
2020-05-10 13:54:37 +00:00
|
|
|
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(CPedIK, 0x28);
|