re3-mirror/src/core/Wanted.h

59 lines
1.6 KiB
C
Raw Permalink Normal View History

2019-06-15 00:34:19 +01:00
#pragma once
2019-07-12 17:01:22 +01:00
2020-04-19 17:34:08 +01:00
#include "Crime.h"
2019-07-12 17:01:22 +01:00
class CEntity;
class CCopPed;
2019-06-26 22:31:12 +01:00
class CWanted
{
2019-06-15 00:34:19 +01:00
public:
int32 m_nChaos;
int32 m_nLastUpdateTime;
2019-10-17 15:28:24 +01:00
uint32 m_nLastWantedLevelChange;
2019-06-16 23:16:38 +01:00
float m_fCrimeSensitivity;
2019-07-04 21:31:21 +01:00
uint8 m_CurrentCops;
uint8 m_MaxCops;
uint8 m_MaximumLawEnforcerVehicles;
2019-07-12 17:01:22 +01:00
uint8 m_CopsBeatingSuspect;
2019-07-04 21:31:21 +01:00
int16 m_RoadblockDensity;
2019-07-12 17:01:22 +01:00
uint8 m_bIgnoredByCops : 1;
uint8 m_bIgnoredByEveryone : 1;
uint8 m_bSwatRequired : 1;
uint8 m_bFbiRequired : 1;
uint8 m_bArmyRequired : 1;
2019-06-15 00:34:19 +01:00
int32 m_nWantedLevel;
2019-07-12 17:01:22 +01:00
CCrimeBeingQd m_aCrimes[16];
2019-06-15 00:34:19 +01:00
CCopPed *m_pCops[10];
2019-07-12 17:01:22 +01:00
2020-04-17 06:54:14 +01:00
static int32 MaximumWantedLevel;
static int32 nMaximumWantedLevel;
2019-06-26 22:31:12 +01:00
public:
2019-07-12 17:01:22 +01:00
void Initialise();
2019-06-26 22:31:12 +01:00
bool AreSwatRequired();
bool AreFbiRequired();
bool AreArmyRequired();
2019-07-12 17:01:22 +01:00
int32 NumOfHelisRequired();
2019-07-04 21:31:21 +01:00
void SetWantedLevel(int32);
2019-07-09 17:50:35 +01:00
void SetWantedLevelNoDrop(int32 level);
2021-01-21 23:19:44 +00:00
int32 GetWantedLevel() { return m_nWantedLevel; }
2019-07-12 17:01:22 +01:00
void RegisterCrime(eCrimeType type, const CVector &coors, uint32 id, bool policeDoesntCare);
void RegisterCrime_Immediately(eCrimeType type, const CVector &coors, uint32 id, bool policeDoesntCare);
2019-07-04 21:31:21 +01:00
void ClearQdCrimes();
2019-07-12 17:01:22 +01:00
bool AddCrimeToQ(eCrimeType type, int32 id, const CVector &pos, bool reported, bool policeDoesntCare);
void ReportCrimeNow(eCrimeType type, const CVector &coors, bool policeDoesntCare);
2019-07-04 21:31:21 +01:00
void UpdateWantedLevel();
2019-10-07 22:29:30 +01:00
void Reset();
2020-03-29 16:26:23 +01:00
void ResetPolicePursuit();
void UpdateCrimesQ();
2020-02-12 23:33:21 +00:00
void Update();
2019-07-12 17:01:22 +01:00
2019-08-03 23:31:00 +01:00
bool IsIgnored(void) { return m_bIgnoredByCops || m_bIgnoredByEveryone; }
2019-07-12 17:01:22 +01:00
static int32 WorkOutPolicePresence(CVector posn, float radius);
static void SetMaximumWantedLevel(int32 level);
2019-06-15 00:34:19 +01:00
};
VALIDATE_SIZE(CWanted, 0x204);