diff options
author | erorcun <erayorcunus@gmail.com> | 2020-03-29 19:03:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 19:03:59 +0300 |
commit | 6704a62b32ac989121b9ba77838d9366051d1e61 (patch) | |
tree | 33289907884539caba07c67b26e0988c65f26a27 /src/core/World.cpp | |
parent | 0cbdca632fae35923d585cd791d8d8b84c93103e (diff) | |
parent | a3b519ea6420ea6fb7fbd35cd25fbc329fab5086 (diff) |
Merge pull request #369 from erorcun/erorcun
CShotInfo, CWanted done, Frontend fix
Diffstat (limited to 'src/core/World.cpp')
-rw-r--r-- | src/core/World.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/World.cpp b/src/core/World.cpp index 045a0bf3..fc3f6057 100644 --- a/src/core/World.cpp +++ b/src/core/World.cpp @@ -19,6 +19,7 @@ #include "Messages.h" #include "Replay.h" #include "Population.h" +#include "Fire.h" CColPoint *gaTempSphereColPoints = (CColPoint*)0x6E64C0; // [32] @@ -1053,6 +1054,19 @@ CWorld::ExtinguishAllCarFiresInArea(CVector point, float range) } void +CWorld::SetCarsOnFire(float x, float y, float z, float radius, CEntity *reason) +{ + int poolSize = CPools::GetVehiclePool()->GetSize(); + for (int poolIndex = poolSize - 1; poolIndex >= 0; poolIndex--) { + CVehicle *veh = CPools::GetVehiclePool()->GetSlot(poolIndex); + if (veh && veh->m_status != STATUS_WRECKED && !veh->m_pCarFire && !veh->bFireProof) { + if (Abs(veh->GetPosition().z - z) < 5.0f && Abs(veh->GetPosition().x - x) < radius && Abs(veh->GetPosition().y - y) < radius) + gFireManager.StartFire(veh, reason, 0.8f, true); + } + } +} + +void CWorld::Process(void) { if (!(CTimer::GetFrameCounter() & 63)) |