summaryrefslogtreecommitdiffstats
path: root/src/control/Darkel.h
blob: 14529c63d43ddffe6315c52175e1740548062ded (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#pragma once

#include "ModelIndices.h"
#include "WeaponType.h"

class CVehicle;
class CPed;

enum
{
	KILLFRENZY_NONE,
	KILLFRENZY_ONGOING,
	KILLFRENZY_PASSED,
	KILLFRENZY_FAILED,
};

class CDarkel
{
private:
	static int32 TimeLimit;
	static int32 PreviousTime;
	static int32 TimeOfFrenzyStart;
	static int32 WeaponType;
	static int32 AmmoInterruptedWeapon;
	static int32 KillsNeeded;
	static int8 InterruptedWeapon;
	static int8 bStandardSoundAndMessages;
	static int8 bNeedHeadShot;
	static int8 bProperKillFrenzy;
	static uint16 Status;
	static uint16 RegisteredKills[NUM_DEFAULT_MODELS];
	static int32 ModelToKill;
	static int32 ModelToKill2;
	static int32 ModelToKill3;
	static int32 ModelToKill4;
	static wchar *pStartMessage;

public:
	static uint8 CalcFade(uint32 time, uint32 min, uint32 max);
	static void DrawMessages(void);
	static bool FrenzyOnGoing();
	static void Init();
	static uint16 QueryModelsKilledByPlayer(int32 modelId);
	static uint16 ReadStatus();
	static void RegisterCarBlownUpByPlayer(CVehicle *vehicle);
	static void RegisterKillByPlayer(CPed *victim, eWeaponType weapontype, bool headshot = false);
	static void RegisterKillNotByPlayer(CPed* victim, eWeaponType weapontype);
	static void ResetModelsKilledByPlayer();
	static void ResetOnPlayerDeath();
	static void StartFrenzy(eWeaponType weaponType, int32 time, uint16 kill, int32 modelId0, wchar *text, int32 modelId2, int32 modelId3, int32 modelId4, bool standardSound, bool needHeadShot);
	static void Update();

};