2019-06-14 14:33:08 +02:00
|
|
|
#pragma once
|
2019-06-16 20:39:48 +02:00
|
|
|
#include "common.h"
|
2019-06-20 13:22:44 +02:00
|
|
|
#include "PedModelInfo.h"
|
2019-06-14 14:33:08 +02:00
|
|
|
|
|
|
|
struct LimbOrientation
|
|
|
|
{
|
|
|
|
float phi;
|
|
|
|
float theta;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CPed;
|
|
|
|
|
|
|
|
class CPedIK
|
|
|
|
{
|
|
|
|
public:
|
2019-06-16 23:12:14 +02:00
|
|
|
// TODO
|
|
|
|
enum {
|
2019-06-20 13:22:44 +02:00
|
|
|
FLAG_1 = 1,
|
|
|
|
FLAG_2 = 2, // related to looking somewhere
|
|
|
|
FLAG_4 = 4, // aims with arm
|
2019-06-16 23:12:14 +02:00
|
|
|
};
|
|
|
|
|
2019-06-20 13:22:44 +02:00
|
|
|
CPed *m_ped;
|
2019-06-14 14:33:08 +02:00
|
|
|
LimbOrientation m_headOrient;
|
|
|
|
LimbOrientation m_torsoOrient;
|
|
|
|
LimbOrientation m_upperArmOrient;
|
|
|
|
LimbOrientation m_lowerArmOrient;
|
|
|
|
int32 m_flags;
|
|
|
|
|
|
|
|
bool PointGunInDirection(float phi, float theta);
|
2019-06-20 13:22:44 +02:00
|
|
|
bool PointGunAtPosition(CVector *position);
|
|
|
|
void GetComponentPosition(RwV3d *pos, PedNode node);
|
|
|
|
static RwMatrix *GetWorldMatrix(RwFrame *source, RwMatrix *destination);
|
2019-06-14 14:33:08 +02:00
|
|
|
};
|
|
|
|
static_assert(sizeof(CPedIK) == 0x28, "CPedIK: error");
|