2019-06-14 12:33:08 +00:00
|
|
|
#pragma once
|
2019-06-16 18:39:48 +00:00
|
|
|
#include "common.h"
|
2019-06-14 12:33:08 +00:00
|
|
|
|
|
|
|
struct LimbOrientation
|
|
|
|
{
|
|
|
|
float phi;
|
|
|
|
float theta;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CPed;
|
|
|
|
|
|
|
|
class CPedIK
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CPed* m_ped;
|
|
|
|
LimbOrientation m_headOrient;
|
|
|
|
LimbOrientation m_torsoOrient;
|
|
|
|
LimbOrientation m_upperArmOrient;
|
|
|
|
LimbOrientation m_lowerArmOrient;
|
|
|
|
int32 m_flags;
|
|
|
|
|
|
|
|
void GetComponentPosition(RwV3d* pos, int id);
|
|
|
|
bool PointGunInDirection(float phi, float theta);
|
|
|
|
bool PointGunAtPosition(CVector* position);
|
|
|
|
};
|
|
|
|
static_assert(sizeof(CPedIK) == 0x28, "CPedIK: error");
|