summaryrefslogtreecommitdiffstats
path: root/src/peds/PlayerPed.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-08-02 14:02:02 +0200
committerGitHub <noreply@github.com>2019-08-02 14:02:02 +0200
commite30cfaf6871073ba56a5245d4d1b4da0eab784a3 (patch)
tree73434501fcd8b2167daf88c83c5a1e0f40671780 /src/peds/PlayerPed.h
parentimplemented CPlane (diff)
parentThe Peds (diff)
downloadre3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.tar
re3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.tar.gz
re3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.tar.bz2
re3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.tar.lz
re3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.tar.xz
re3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.tar.zst
re3-e30cfaf6871073ba56a5245d4d1b4da0eab784a3.zip
Diffstat (limited to '')
-rw-r--r--src/peds/PlayerPed.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/peds/PlayerPed.h b/src/peds/PlayerPed.h
index fa6d9d43..ecef9bef 100644
--- a/src/peds/PlayerPed.h
+++ b/src/peds/PlayerPed.h
@@ -12,14 +12,14 @@ public:
float m_fCurrentStamina;
float m_fMaxStamina;
float m_fStaminaProgress;
- bool m_bWeaponSlot;
+ uint8 m_nSelectedWepSlot;
bool m_bSpeedTimerFlag;
bool m_bShouldEvade;
int8 field_1367;
int32 m_nSpeedTimer;
int32 m_nShotDelay;
- float field_1376;
- int8 field_1380; // set if can't attack, why?
+ float field_1376; // m_fAttackButtonCounter?
+ int8 field_1380; // bHaveTargetSelected?
int8 field_1381;
int8 field_1382;
int8 field_1383;
@@ -34,19 +34,24 @@ public:
int8 field_1413;
int8 field_1414;
int8 field_1415;
- CVector field_1416[6];
- int32 field_1488[6];
+ CVector m_vecSafePos[6]; // safe places from the player, for example behind a tree
+ int32 field_1488[6]; // m_pPedAtSafePos?
float m_fWalkAngle;
float m_fFPSMoveHeading;
+ CPlayerPed();
~CPlayerPed();
void ReApplyMoveAnims(void);
- void ClearWeaponTarget();
+ void ClearWeaponTarget(void);
void SetWantedLevel(int32 level);
void SetWantedLevelNoDrop(int32 level);
void KeepAreaAroundPlayerClear(void);
void AnnoyPlayerPed(bool);
+ void MakeChangesForNewWeapon(int8);
+ void SetInitialState(void);
+ void SetMoveAnim(void);
+ void ProcessControl(void);
static void SetupPlayerPed(int32);
static void DeactivatePlayerPed(int32);