summaryrefslogtreecommitdiffstats
path: root/src/entities/PedIK.h
blob: 266372c469c1f3bb1c1a57b593608ef5632a0dc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once
#include "common.h"

struct LimbOrientation
{
	float phi;
	float theta;
};

class CPed;

class CPedIK
{
public:
	// TODO
	enum {
		FLAG_1,
		FLAG_2,
		FLAG_4,	// aims with arm
	};

	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");