summaryrefslogtreecommitdiffstats
path: root/src/peds/Ped.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2020-07-04 14:31:28 +0200
committereray orçunus <erayorcunus@gmail.com>2020-07-04 14:31:28 +0200
commit716740f918baef80be00ce2bd0b2dcfdd7d13a09 (patch)
tree70e982ab020ed6535f5e4b7e8524629246edbab9 /src/peds/Ped.h
parentfixed typo (diff)
downloadre3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar
re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.gz
re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.bz2
re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.lz
re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.xz
re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.zst
re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.zip
Diffstat (limited to 'src/peds/Ped.h')
-rw-r--r--src/peds/Ped.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/peds/Ped.h b/src/peds/Ped.h
index 457036d3..d5062ee1 100644
--- a/src/peds/Ped.h
+++ b/src/peds/Ped.h
@@ -459,9 +459,7 @@ public:
//uint32 b156_4
uint32 b156_8 : 1;
uint32 bIsPlayerFriend : 1;
-#ifdef VC_PED_PORTS
uint32 bHeadStuckInCollision : 1;
-#endif
uint32 bDeadPedInFrontOfCar : 1;
uint32 bStayInCarOnJack : 1;
@@ -469,8 +467,8 @@ public:
uint32 bDoomAim : 1;
uint32 bCanBeShotInVehicle : 1;
//uint32 b157_8
- //uint32 b157_10
- //uint32 b157_20
+ uint32 b157_10 : 1;
+ uint32 bPushedAlongByCar : 1;
uint32 b157_40 : 1;
uint32 bIgnoreThreatsBehindObjects : 1;
@@ -480,7 +478,7 @@ public:
//uint32 b158_8
uint32 b158_10 : 1;
uint32 bBoughtIceCream : 1;
- //uint32 b158_40
+ uint32 b158_40 : 1;
//uint32 b158_80
// our own flags
@@ -631,8 +629,8 @@ public:
uint32 m_threatFlags;
uint32 m_threatCheck;
uint32 m_lastThreatCheck;
- uint32 m_sayType;
- uint32 m_sayTimer;
+ uint32 m_delayedSoundID;
+ uint32 m_delayedSoundTimer;
uint32 m_lastSoundStart;
uint32 m_soundStart;
uint16 m_lastQueuedSound;
@@ -664,6 +662,7 @@ public:
void AimGun(void);
void KillPedWithCar(CVehicle *veh, float impulse);
void Say(uint16 audio);
+ void Say(uint16 audio, int32 time);
void SetLookFlag(CEntity* target, bool keepTryingToLook, bool cancelPrevious = false);
void SetLookFlag(float direction, bool keepTryingToLook, bool cancelPrevious = false);
void SetLookTimer(int time);