summaryrefslogtreecommitdiffstats
path: root/src/Wanted.cpp
diff options
context:
space:
mode:
author_AG <gennariarmando@outlook.com>2019-06-26 23:31:12 +0200
committer_AG <gennariarmando@outlook.com>2019-06-26 23:32:08 +0200
commit69ac8bcd7acb44a9c6dbd06680e7d90935363467 (patch)
tree3227fc531c31d469d9da06bae350177d01fd2890 /src/Wanted.cpp
parentbla (diff)
downloadre3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.tar
re3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.tar.gz
re3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.tar.bz2
re3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.tar.lz
re3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.tar.xz
re3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.tar.zst
re3-69ac8bcd7acb44a9c6dbd06680e7d90935363467.zip
Diffstat (limited to '')
-rw-r--r--src/Wanted.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/Wanted.cpp b/src/Wanted.cpp
index 36bc4f03..ece68e64 100644
--- a/src/Wanted.cpp
+++ b/src/Wanted.cpp
@@ -1,3 +1,36 @@
#include "common.h"
#include "patcher.h"
#include "Wanted.h"
+
+bool CWanted::AreSwatRequired()
+{
+ return m_nWantedLevel >= 4;
+}
+
+bool CWanted::AreFbiRequired()
+{
+ return m_nWantedLevel >= 5;
+}
+
+bool CWanted::AreArmyRequired()
+{
+ return m_nWantedLevel >= 6;
+}
+
+int CWanted::NumOfHelisRequired()
+{
+ if (m_IsIgnoredByCops)
+ return 0;
+
+ // Return value is number of helicopters, no need to name them.
+ switch (m_nWantedLevel) {
+ case WANTEDLEVEL_3:
+ case WANTEDLEVEL_4:
+ return 1;
+ case WANTEDLEVEL_5:
+ case WANTEDLEVEL_6:
+ return 2;
+ default:
+ return 0;
+ };
+} \ No newline at end of file