re3/src/peds/PedIK.h

66 lines
1.8 KiB
C
Raw Normal View History

#pragma once
#include "common.h"
#include "AnimBlendClumpData.h"
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
};
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
};
CPed *m_ped;
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
CPedIK(CPed *ped);
bool PointGunInDirection(float phi, float theta);
2020-01-28 23:53:58 +00:00
bool PointGunInDirectionUsingArm(float phi, float theta);
bool PointGunAtPosition(CVector const& position);
2020-03-28 14:47:52 +00:00
void GetComponentPosition(RwV3d *pos, uint32 node);
static RwMatrix *GetWorldMatrix(RwFrame *source, RwMatrix *destination);
void RotateTorso(AnimBlendFrameData* animBlend, LimbOrientation* limb, bool changeRoll);
2020-01-28 23:53:58 +00:00
void ExtractYawAndPitchLocal(RwMatrixTag *mat, float *yaw, float *pitch);
void ExtractYawAndPitchWorld(RwMatrixTag *mat, float *yaw, float *pitch);
LimbMoveStatus MoveLimb(LimbOrientation &limb, float approxPhi, float approxTheta, LimbMovementInfo &moveInfo);
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);
};
static_assert(sizeof(CPedIK) == 0x28, "CPedIK: error");