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-06-14 12:33:08 +00:00
|
|
|
|
|
|
|
struct LimbOrientation
|
|
|
|
{
|
|
|
|
float phi;
|
|
|
|
float theta;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CPed;
|
|
|
|
|
|
|
|
class CPedIK
|
|
|
|
{
|
|
|
|
public:
|
2019-06-16 21:12:14 +00:00
|
|
|
// TODO
|
|
|
|
enum {
|
2019-06-20 11:22:44 +00:00
|
|
|
FLAG_1 = 1,
|
|
|
|
FLAG_2 = 2, // related to looking somewhere
|
|
|
|
FLAG_4 = 4, // aims with arm
|
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-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-06-14 12:33:08 +00:00
|
|
|
};
|
|
|
|
static_assert(sizeof(CPedIK) == 0x28, "CPedIK: error");
|