summaryrefslogtreecommitdiffstats
path: root/src/core/Wanted.cpp
blob: ece68e6458a87b91c20576f921f4aa90df32a70d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
	};
}