2019-05-19 15:28:10 -04:00
|
|
|
#include "common.h"
|
|
|
|
#include "patcher.h"
|
|
|
|
#include "Pools.h"
|
2019-06-16 14:39:48 -04:00
|
|
|
#include "Particle.h"
|
|
|
|
#include "Stats.h"
|
|
|
|
#include "World.h"
|
2019-06-16 17:12:14 -04:00
|
|
|
#include "DMaudio.h"
|
|
|
|
#include "Ped.h"
|
2019-06-17 05:48:42 -04:00
|
|
|
#include "PedType.h"
|
|
|
|
#include "General.h"
|
2019-05-19 15:28:10 -04:00
|
|
|
|
2019-06-16 18:16:38 -04:00
|
|
|
bool &CPed::bNastyLimbsCheat = *(bool*)0x95CD44;
|
|
|
|
bool &CPed::bPedCheat2 = *(bool*)0x95CD5A;
|
|
|
|
bool &CPed::bPedCheat3 = *(bool*)0x95CD59;
|
2019-06-15 11:53:25 -04:00
|
|
|
|
2019-06-02 11:13:56 -04:00
|
|
|
void *CPed::operator new(size_t sz) { return CPools::GetPedPool()->New(); }
|
|
|
|
void CPed::operator delete(void *p, size_t sz) { CPools::GetPedPool()->Delete((CPed*)p); }
|
2019-05-19 15:28:10 -04:00
|
|
|
|
|
|
|
WRAPPER void CPed::KillPedWithCar(CVehicle *veh, float impulse) { EAXJMP(0x4EC430); }
|
2019-06-16 17:12:14 -04:00
|
|
|
WRAPPER void CPed::Say(uint16 audio) { EAXJMP(0x4E5A10); }
|
2019-06-15 11:53:25 -04:00
|
|
|
WRAPPER void CPed::SetDie(AnimationId anim, float arg1, float arg2) { EAXJMP(0x4D37D0); }
|
2019-06-16 17:12:14 -04:00
|
|
|
WRAPPER void CPed::SpawnFlyingComponent(int, int8) { EAXJMP(0x4EB060); }
|
2019-05-28 02:39:36 -04:00
|
|
|
|
|
|
|
static char ObjectiveText[34][28] = {
|
|
|
|
"No Obj",
|
|
|
|
"Wait on Foot",
|
|
|
|
"Flee on Foot Till Safe",
|
|
|
|
"Guard Spot",
|
|
|
|
"Guard Area",
|
|
|
|
"Wait in Car",
|
|
|
|
"Wait in Car then Getout",
|
|
|
|
"Kill Char on Foot",
|
|
|
|
"Kill Char Any Means",
|
|
|
|
"Flee Char on Foot Till Safe",
|
|
|
|
"Flee Char on Foot Always",
|
|
|
|
"GoTo Char on Foot",
|
|
|
|
"Follow Char in Formation",
|
|
|
|
"Leave Car",
|
|
|
|
"Enter Car as Passenger",
|
|
|
|
"Enter Car as Driver",
|
|
|
|
"Follow Car in Car",
|
|
|
|
"Fire at Obj from Vehicle",
|
|
|
|
"Destroy Obj",
|
|
|
|
"Destroy Car",
|
|
|
|
"GoTo Area Any Means",
|
|
|
|
"GoTo Area on Foot",
|
|
|
|
"Run to Area",
|
|
|
|
"GoTo Area in Car",
|
|
|
|
"Follow Car on Foot Woffset",
|
|
|
|
"Guard Attack",
|
|
|
|
"Set Leader",
|
|
|
|
"Follow Route",
|
|
|
|
"Solicit",
|
|
|
|
"Take Taxi",
|
|
|
|
"Catch Train",
|
|
|
|
"Buy IceCream",
|
|
|
|
"Steal Any Car",
|
|
|
|
"Mug Char",
|
|
|
|
};
|
|
|
|
|
|
|
|
static char StateText[56][18] = {
|
|
|
|
"None", // 1
|
|
|
|
"Idle",
|
|
|
|
"Look Entity",
|
|
|
|
"Look Heading",
|
|
|
|
"Wander Range",
|
|
|
|
"Wander Path",
|
|
|
|
"Seek Pos",
|
|
|
|
"Seek Entity",
|
|
|
|
"Flee Pos",
|
|
|
|
"Flee Entity",
|
|
|
|
"Pursue",
|
|
|
|
"Follow Path",
|
|
|
|
"Sniper Mode",
|
|
|
|
"Rocket Mode",
|
|
|
|
"Dummy",
|
|
|
|
"Pause",
|
|
|
|
"Attack",
|
|
|
|
"Fight",
|
|
|
|
"Face Phone",
|
|
|
|
"Make Call",
|
|
|
|
"Chat",
|
|
|
|
"Mug",
|
|
|
|
"AimGun",
|
|
|
|
"AI Control",
|
|
|
|
"Seek Car",
|
|
|
|
"Seek InBoat",
|
|
|
|
"Follow Route",
|
|
|
|
"C.P.R.",
|
|
|
|
"Solicit",
|
|
|
|
"Buy IceCream",
|
|
|
|
"Investigate",
|
|
|
|
"Step away",
|
|
|
|
"STATES_NO_AI",
|
|
|
|
"On Fire",
|
|
|
|
"Jump",
|
|
|
|
"Fall",
|
|
|
|
"GetUp",
|
|
|
|
"Stagger",
|
|
|
|
"Dive away",
|
|
|
|
"STATES_NO_ST",
|
|
|
|
"Enter Train",
|
|
|
|
"Exit Train",
|
|
|
|
"Arrest Plyr",
|
|
|
|
"Driving",
|
|
|
|
"Passenger",
|
|
|
|
"Taxi Passngr",
|
|
|
|
"Open Door",
|
|
|
|
"Die",
|
|
|
|
"Dead",
|
|
|
|
"CarJack",
|
|
|
|
"Drag fm Car",
|
|
|
|
"Enter Car",
|
|
|
|
"Steal Car",
|
|
|
|
"Exit Car",
|
|
|
|
"Hands Up",
|
|
|
|
"Arrested",
|
|
|
|
};
|
|
|
|
|
|
|
|
static char PersonalityTypeText[32][18] = {
|
|
|
|
"Player",
|
|
|
|
"Cop",
|
|
|
|
"Medic",
|
|
|
|
"Fireman",
|
|
|
|
"Gang 1",
|
|
|
|
"Gang 2",
|
|
|
|
"Gang 3",
|
|
|
|
"Gang 4",
|
|
|
|
"Gang 5",
|
|
|
|
"Gang 6",
|
|
|
|
"Gang 7",
|
|
|
|
"Street Guy",
|
|
|
|
"Suit Guy",
|
|
|
|
"Sensible Guy",
|
|
|
|
"Geek Guy",
|
|
|
|
"Old Guy",
|
|
|
|
"Tough Guy",
|
|
|
|
"Street Girl",
|
|
|
|
"Suit Girl",
|
|
|
|
"Sensible Girl",
|
|
|
|
"Geek Girl",
|
|
|
|
"Old Girl",
|
|
|
|
"Tough Girl",
|
|
|
|
"Tramp",
|
|
|
|
"Tourist",
|
|
|
|
"Prostitute",
|
|
|
|
"Criminal",
|
|
|
|
"Busker",
|
|
|
|
"Taxi Driver",
|
|
|
|
"Psycho",
|
|
|
|
"Steward",
|
|
|
|
"Sports Fan",
|
|
|
|
};
|
|
|
|
|
|
|
|
static char WaitStateText[21][16] = {
|
|
|
|
"No Wait",
|
|
|
|
"Traffic Lights",
|
|
|
|
"Pause CrossRoad",
|
|
|
|
"Look CrossRoad",
|
|
|
|
"Look Ped",
|
|
|
|
"Look Shop",
|
|
|
|
"Look Accident",
|
|
|
|
"FaceOff Gang",
|
|
|
|
"Double Back",
|
|
|
|
"Hit Wall",
|
|
|
|
"Turn 180deg",
|
|
|
|
"Surprised",
|
|
|
|
"Ped Stuck",
|
|
|
|
"Look About",
|
|
|
|
"Play Duck",
|
|
|
|
"Play Cower",
|
|
|
|
"Play Taxi",
|
|
|
|
"Play HandsUp",
|
|
|
|
"Play HandsCower",
|
|
|
|
"Play Chat",
|
|
|
|
"Finish Flee",
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
CPed::UseGroundColModel(void)
|
|
|
|
{
|
|
|
|
return m_nPedState == PED_FALL ||
|
|
|
|
m_nPedState == PED_DIVE_AWAY ||
|
|
|
|
m_nPedState == PED_DIE ||
|
|
|
|
m_nPedState == PED_DEAD;
|
|
|
|
}
|
2019-06-14 08:33:08 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
CPed::AddWeaponModel(int id)
|
|
|
|
{
|
|
|
|
RpAtomic* atm;
|
|
|
|
|
|
|
|
if (id != -1) {
|
|
|
|
atm = (RpAtomic*)CModelInfo::GetModelInfo(id)->CreateInstance();
|
|
|
|
RwFrameDestroy(RpAtomicGetFrame(atm));
|
2019-06-15 11:53:25 -04:00
|
|
|
RpAtomicSetFrame(atm, GetNodeFrame(PED_HANDR));
|
2019-06-14 08:33:08 -04:00
|
|
|
RpClumpAddAtomic((RpClump*)m_rwObject, atm);
|
|
|
|
m_wepModelID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPed::AimGun()
|
|
|
|
{
|
|
|
|
RwV3d pos;
|
|
|
|
CVector vector;
|
|
|
|
|
|
|
|
if (m_pSeekTarget) {
|
|
|
|
if (m_pSeekTarget->m_status == STATUS_PHYSICS) {
|
|
|
|
m_pSeekTarget->m_pedIK.GetComponentPosition(&pos, 1);
|
|
|
|
vector.x = pos.x;
|
|
|
|
vector.y = pos.y;
|
|
|
|
vector.z = pos.z;
|
|
|
|
} else {
|
2019-06-16 14:39:48 -04:00
|
|
|
vector = *(m_pSeekTarget->GetPosition());
|
2019-06-14 08:33:08 -04:00
|
|
|
}
|
2019-06-16 14:39:48 -04:00
|
|
|
CPed::Say(SOUND_PED_ATTACK);
|
2019-06-14 08:33:08 -04:00
|
|
|
|
2019-06-15 11:53:25 -04:00
|
|
|
m_ped_flagB2 = m_pedIK.PointGunAtPosition(&vector);
|
2019-06-14 08:33:08 -04:00
|
|
|
if (m_pPedFight != m_pSeekTarget) {
|
|
|
|
CPed::SetLookFlag(m_pSeekTarget, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (CPed::IsPlayer()) {
|
2019-06-16 14:39:48 -04:00
|
|
|
m_ped_flagB2 = m_pedIK.PointGunInDirection(m_fLookDirection, ((CPlayerPed*)this)->m_fFPSMoveHeading);
|
2019-06-14 08:33:08 -04:00
|
|
|
} else {
|
2019-06-16 14:39:48 -04:00
|
|
|
m_ped_flagB2 = m_pedIK.PointGunInDirection(m_fLookDirection, 0.0f);
|
2019-06-14 08:33:08 -04:00
|
|
|
}
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPed::ApplyHeadShot(eWeaponType weaponType, CVector pos, bool evenOnPlayer)
|
|
|
|
{
|
|
|
|
CVector pos2 = CVector(
|
|
|
|
pos.x,
|
|
|
|
pos.y,
|
2019-06-16 14:39:48 -04:00
|
|
|
pos.z + 0.1f
|
2019-06-15 11:53:25 -04:00
|
|
|
);
|
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
if (!CPed::IsPlayer() || evenOnPlayer) {
|
2019-06-15 11:53:25 -04:00
|
|
|
++CStats::HeadShots;
|
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
// BUG: This condition will always return true.
|
2019-06-15 11:53:25 -04:00
|
|
|
if (m_nPedState != PED_PASSENGER || m_nPedState != PED_TAXI_PASSENGER) {
|
2019-06-16 14:39:48 -04:00
|
|
|
CPed::SetDie(ANIM_KO_SHOT_FRONT1, 4.0f, 0.0f);
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
m_ped_flagC20 = 1;
|
|
|
|
m_nPedStateTimer = CTimer::GetTimeInMilliseconds() + 150;
|
|
|
|
|
|
|
|
CParticle::AddParticle(PARTICLE_TEST, pos2,
|
2019-06-16 17:12:14 -04:00
|
|
|
CVector(0.0f, 0.0f, 0.0f), nil, 0.2f, 0, 0, 0, 0);
|
2019-06-15 11:53:25 -04:00
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
if (CEntity::GetIsOnScreen()) {
|
|
|
|
for(int i=0; i < 32; i++) {
|
2019-06-15 11:53:25 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD_SMALL,
|
2019-06-16 17:12:14 -04:00
|
|
|
pos2, CVector(0.0f, 0.0f, 0.03f),
|
|
|
|
nil, 0.0f, 0, 0, 0, 0);
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
for (int i = 0; i < 16; i++) {
|
2019-06-15 11:53:25 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_DEBRIS2,
|
2019-06-16 17:12:14 -04:00
|
|
|
pos2,
|
|
|
|
CVector(0.0f, 0.0f, 0.01f),
|
|
|
|
nil, 0.0f, 0, 0, 0, 0);
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-06-16 17:12:14 -04:00
|
|
|
CPed::RemoveBodyPart(PedNode nodeId, int8 unk)
|
2019-06-15 11:53:25 -04:00
|
|
|
{
|
|
|
|
RwFrame *frame;
|
|
|
|
RwFrame *fp;
|
|
|
|
RwV3d zero;
|
|
|
|
|
|
|
|
frame = GetNodeFrame(nodeId);
|
2019-06-16 14:39:48 -04:00
|
|
|
if (frame) {
|
|
|
|
if (CGame::nastyGame) {
|
2019-06-15 11:53:25 -04:00
|
|
|
if (nodeId != PED_HEAD)
|
2019-06-16 17:12:14 -04:00
|
|
|
CPed::SpawnFlyingComponent(nodeId, unk);
|
2019-06-15 11:53:25 -04:00
|
|
|
|
|
|
|
RecurseFrameChildrenVisibilityCB(frame, 0);
|
2019-06-16 14:39:48 -04:00
|
|
|
zero.x = 0.0f;
|
|
|
|
zero.z = 0.0f;
|
|
|
|
zero.y = 0.0f;
|
2019-06-15 11:53:25 -04:00
|
|
|
for (fp = RwFrameGetParent(frame); fp; fp = RwFrameGetParent(frame))
|
|
|
|
RwV3dTransformPoints(&zero, &zero, 1, &fp->modelling);
|
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
if (CEntity::GetIsOnScreen()) {
|
2019-06-15 11:53:25 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_TEST, zero,
|
2019-06-16 17:12:14 -04:00
|
|
|
CVector(0.0f, 0.0f, 0.0f),
|
|
|
|
nil, 0.2f, 0, 0, 0, 0);
|
2019-06-15 11:53:25 -04:00
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
for (int i = 0; i < 16; i++) {
|
2019-06-15 11:53:25 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD_SMALL,
|
|
|
|
zero,
|
2019-06-16 17:12:14 -04:00
|
|
|
CVector(0.0f, 0.0f, 0.03f),
|
|
|
|
nil, 0.0f, 0, 0, 0, 0);
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
m_ped_flagC20 = 1;
|
|
|
|
m_bodyPartBleeding = nodeId;
|
|
|
|
}
|
2019-06-16 14:39:48 -04:00
|
|
|
} else {
|
2019-06-15 11:53:25 -04:00
|
|
|
printf("Trying to remove ped component");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RwObject*
|
|
|
|
CPed::SetPedAtomicVisibilityCB(RwObject *object, void *data)
|
|
|
|
{
|
2019-06-16 17:12:14 -04:00
|
|
|
if (data == 0)
|
2019-06-16 14:39:48 -04:00
|
|
|
RpAtomicSetFlags(object, 0);
|
2019-06-16 17:12:14 -04:00
|
|
|
return object;
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
RwFrame*
|
|
|
|
CPed::RecurseFrameChildrenVisibilityCB(RwFrame *frame, void *data)
|
|
|
|
{
|
|
|
|
RwFrameForAllObjects(frame, SetPedAtomicVisibilityCB, data);
|
|
|
|
RwFrameForAllChildren(frame, RecurseFrameChildrenVisibilityCB, 0);
|
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPed::SetLookFlag(CPed *to, bool set)
|
|
|
|
{
|
2019-06-16 14:39:48 -04:00
|
|
|
if (m_lookTimer < CTimer::GetTimeInMilliseconds()) {
|
2019-06-15 11:53:25 -04:00
|
|
|
m_ped_flagA10 = 1;
|
|
|
|
m_ped_flagA40 = 0;
|
|
|
|
m_pPedFight = to;
|
|
|
|
m_pPedFight->RegisterReference((CEntity**)&m_pPedFight);
|
2019-06-16 14:39:48 -04:00
|
|
|
m_fLookDirection = 999999.0f;
|
2019-06-15 11:53:25 -04:00
|
|
|
m_lookTimer = 0;
|
|
|
|
m_ped_flagA20_look = set;
|
|
|
|
if (m_nPedState != PED_DRIVING) {
|
2019-06-18 08:34:27 -04:00
|
|
|
m_pedIK.m_flags &= ~CPedIK::FLAG_2;
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
2019-06-14 08:33:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-15 11:53:25 -04:00
|
|
|
void
|
|
|
|
CPed::SetLookFlag(float angle, bool set)
|
|
|
|
{
|
2019-06-16 14:39:48 -04:00
|
|
|
if (m_lookTimer < CTimer::GetTimeInMilliseconds()) {
|
2019-06-15 11:53:25 -04:00
|
|
|
m_ped_flagA10 = 1;
|
|
|
|
m_ped_flagA40 = 0;
|
|
|
|
m_pPedFight = 0;
|
|
|
|
m_fLookDirection = angle;
|
|
|
|
m_lookTimer = 0;
|
|
|
|
m_ped_flagA20_look = set;
|
|
|
|
if (m_nPedState != PED_DRIVING) {
|
2019-06-18 08:34:27 -04:00
|
|
|
m_pedIK.m_flags &= ~CPedIK::FLAG_2;
|
2019-06-15 11:53:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-16 14:39:48 -04:00
|
|
|
void
|
|
|
|
CPed::SetLookTimer(int time)
|
|
|
|
{
|
|
|
|
if (CTimer::GetTimeInMilliseconds() > m_lookTimer) {
|
|
|
|
m_lookTimer = CTimer::GetTimeInMilliseconds() + time;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CPed::OurPedCanSeeThisOne(CEntity* who)
|
|
|
|
{
|
|
|
|
float distance;
|
|
|
|
CColPoint colpoint;
|
|
|
|
CEntity* ent;
|
|
|
|
CVector ourPos;
|
|
|
|
CVector itsPos;
|
|
|
|
|
|
|
|
ourPos = this->GetPosition();
|
|
|
|
itsPos = who->GetPosition();
|
|
|
|
|
2019-06-18 08:34:27 -04:00
|
|
|
CVector2D posDiff(
|
|
|
|
itsPos.x - ourPos.x,
|
|
|
|
itsPos.y - ourPos.y
|
|
|
|
);
|
2019-06-16 14:39:48 -04:00
|
|
|
|
2019-06-18 08:34:27 -04:00
|
|
|
if ((posDiff.y * this->GetForward().y) + (posDiff.x * this->GetForward().x) < 0.0f)
|
2019-06-16 14:39:48 -04:00
|
|
|
return 0;
|
|
|
|
|
2019-06-18 08:34:27 -04:00
|
|
|
distance = posDiff.Magnitude();
|
2019-06-16 14:39:48 -04:00
|
|
|
|
|
|
|
if (distance < 40.0f)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ourPos.z += 1.0f;
|
2019-06-16 17:12:14 -04:00
|
|
|
return !CWorld::ProcessLineOfSight(ourPos, itsPos, colpoint, ent, 1, 0, 0, 0, 0, 0, 0);
|
2019-06-16 14:39:48 -04:00
|
|
|
}
|
2019-06-15 11:53:25 -04:00
|
|
|
|
2019-06-17 05:48:42 -04:00
|
|
|
void
|
|
|
|
CPed::Avoid(void) {
|
|
|
|
int8 temper;
|
|
|
|
int moveState;
|
|
|
|
CPed* nearestPed;
|
2019-06-18 08:34:27 -04:00
|
|
|
float rate;
|
|
|
|
float distance;
|
2019-06-17 05:48:42 -04:00
|
|
|
|
|
|
|
temper = m_pedStats->m_temper;
|
|
|
|
if ((temper <= m_pedStats->m_fear || temper <= 50) && CTimer::GetTimeInMilliseconds() > m_nPedStateTimer) {
|
|
|
|
moveState = m_nMoveState;
|
|
|
|
|
|
|
|
if (moveState != PEDMOVE_NONE && moveState != PEDMOVE_STILL) {
|
|
|
|
nearestPed = m_nearPeds[0];
|
|
|
|
|
|
|
|
if (nearestPed) {
|
|
|
|
if (nearestPed->m_nPedState != PED_DEAD && nearestPed != m_pSeekTarget && nearestPed != m_field_16C
|
|
|
|
&& (CPedType::ms_apPedType[nearestPed->m_nPedType]->m_Type.IntValue
|
|
|
|
& CPedType::ms_apPedType[this->m_nPedType]->m_Avoid.IntValue)) {
|
|
|
|
|
2019-06-18 08:34:27 -04:00
|
|
|
CVector2D pedAngleRatio(
|
|
|
|
cos(RADTODEG(m_fRotationCur) / RADTODEG(1)),
|
|
|
|
-sin(RADTODEG(m_fRotationCur) / RADTODEG(1))
|
|
|
|
);
|
2019-06-17 05:48:42 -04:00
|
|
|
|
|
|
|
// sin^2 + cos^2 must always return 1, and it does return... so what's the point?
|
2019-06-18 08:34:27 -04:00
|
|
|
rate = 1.0f / pedAngleRatio.Magnitude();
|
2019-06-17 05:48:42 -04:00
|
|
|
|
|
|
|
// Further codes checks whether the distance between us and ped will be equal or below 1.0, if we walk up to him by 1.25 meters.
|
|
|
|
// If so, we want to avoid it, so we turn our body 45 degree and look to somewhere else.
|
2019-06-18 08:34:27 -04:00
|
|
|
CVector2D walkedUpToPed(
|
|
|
|
nearestPed->GetPosition().x - (1.25 * (pedAngleRatio.y * rate) + GetPosition().x),
|
|
|
|
nearestPed->GetPosition().y - (1.25 * (pedAngleRatio.x * rate) + GetPosition().y)
|
|
|
|
);
|
|
|
|
|
|
|
|
distance = walkedUpToPed.Magnitude();
|
|
|
|
|
|
|
|
if (distance <= 1.0f && CPed::OurPedCanSeeThisOne((CEntity*)nearestPed)) {
|
2019-06-17 05:48:42 -04:00
|
|
|
m_nPedStateTimer = CTimer::GetTimeInMilliseconds()
|
|
|
|
+ 500 + (m_randomSeed + 3 * CTimer::GetFrameCounter())
|
|
|
|
% 1000 / 5;
|
|
|
|
|
|
|
|
m_fRotationDest += DEGTORAD(45.0f);
|
|
|
|
if (!m_ped_flagA10) {
|
|
|
|
CPed::SetLookFlag(nearestPed, 0);
|
|
|
|
CPed::SetLookTimer(CGeneral::GetRandomNumberInRange(0, 300) + 500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-14 08:33:08 -04:00
|
|
|
STARTPATCHES
|
|
|
|
InjectHook(0x4CF8F0, &CPed::AddWeaponModel, PATCH_JUMP);
|
|
|
|
InjectHook(0x4C6AA0, &CPed::AimGun, PATCH_JUMP);
|
2019-06-15 11:53:25 -04:00
|
|
|
InjectHook(0x4EB470, &CPed::ApplyHeadShot, PATCH_JUMP);
|
|
|
|
InjectHook(0x4EAEE0, &CPed::RemoveBodyPart, PATCH_JUMP);
|
|
|
|
InjectHook(0x4C6460, (void (CPed::*)(CPed*, bool)) &CPed::SetLookFlag, PATCH_JUMP);
|
|
|
|
InjectHook(0x4C63E0, (void (CPed::*)(float, bool)) &CPed::SetLookFlag, PATCH_JUMP);
|
2019-06-16 14:39:48 -04:00
|
|
|
InjectHook(0x4D12E0, &CPed::SetLookTimer, PATCH_JUMP);
|
|
|
|
InjectHook(0x4C5700, &CPed::OurPedCanSeeThisOne, PATCH_JUMP);
|
2019-06-17 05:48:42 -04:00
|
|
|
InjectHook(0x4D2BB0, &CPed::Avoid, PATCH_JUMP);
|
2019-06-16 15:44:05 -04:00
|
|
|
ENDPATCHES
|