summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-05-08 22:29:43 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-05-08 22:29:43 +0200
commit7e753c259680a13c656bdc6c86d99a4891616474 (patch)
tree7cc9674c62784eba25109dee499bd73056a4e62f /src/core
parentfix (diff)
downloadre3-7e753c259680a13c656bdc6c86d99a4891616474.tar
re3-7e753c259680a13c656bdc6c86d99a4891616474.tar.gz
re3-7e753c259680a13c656bdc6c86d99a4891616474.tar.bz2
re3-7e753c259680a13c656bdc6c86d99a4891616474.tar.lz
re3-7e753c259680a13c656bdc6c86d99a4891616474.tar.xz
re3-7e753c259680a13c656bdc6c86d99a4891616474.tar.zst
re3-7e753c259680a13c656bdc6c86d99a4891616474.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Streaming.cpp9
-rw-r--r--src/core/Wanted.cpp6
-rw-r--r--src/core/Wanted.h1
3 files changed, 16 insertions, 0 deletions
diff --git a/src/core/Streaming.cpp b/src/core/Streaming.cpp
index c7bd961c..6b5d795b 100644
--- a/src/core/Streaming.cpp
+++ b/src/core/Streaming.cpp
@@ -1292,6 +1292,15 @@ CStreaming::StreamVehiclesAndPeds(void)
else
SetModelIsDeletable(MI_CHOPPER);
+ if (FindPlayerPed()->m_pWanted->AreMiamiViceRequired()) {
+ //TODO(MIAMI): miami vice peds
+ RequestModel(MI_VICECHEE, STREAMFLAGS_DONT_REMOVE);
+ }
+ else {
+ SetModelIsDeletable(MI_VICECHEE);
+ //TODO(MIAMI): miami vice peds
+ }
+
if(timeBeforeNextLoad >= 0)
timeBeforeNextLoad--;
else if(ms_numVehiclesLoaded <= desiredNumVehiclesLoaded){
diff --git a/src/core/Wanted.cpp b/src/core/Wanted.cpp
index 7508c9f4..ff82edad 100644
--- a/src/core/Wanted.cpp
+++ b/src/core/Wanted.cpp
@@ -40,6 +40,12 @@ CWanted::Initialise()
}
bool
+CWanted::AreMiamiViceRequired()
+{
+ return m_nWantedLevel >= 3;
+}
+
+bool
CWanted::AreSwatRequired()
{
return m_nWantedLevel == 4 || m_bSwatRequired;
diff --git a/src/core/Wanted.h b/src/core/Wanted.h
index e3e407b0..0e0e70c3 100644
--- a/src/core/Wanted.h
+++ b/src/core/Wanted.h
@@ -31,6 +31,7 @@ public:
public:
void Initialise();
+ bool AreMiamiViceRequired();
bool AreSwatRequired();
bool AreFbiRequired();
bool AreArmyRequired();