2019-05-30 21:24:47 +02:00
|
|
|
#pragma once
|
2020-04-17 19:30:57 +02:00
|
|
|
|
2019-10-06 23:39:25 +02:00
|
|
|
#include "ModelIndices.h"
|
2020-04-17 19:30:57 +02:00
|
|
|
#include "WeaponType.h"
|
2019-07-04 22:31:21 +02:00
|
|
|
|
2019-07-09 18:50:35 +02:00
|
|
|
class CVehicle;
|
|
|
|
class CPed;
|
|
|
|
|
2019-10-06 23:39:25 +02:00
|
|
|
enum
|
2019-07-04 22:31:21 +02:00
|
|
|
{
|
2019-07-07 09:13:04 +02:00
|
|
|
KILLFRENZY_NONE,
|
2019-07-04 22:31:21 +02:00
|
|
|
KILLFRENZY_ONGOING,
|
|
|
|
KILLFRENZY_PASSED,
|
|
|
|
KILLFRENZY_FAILED,
|
|
|
|
};
|
2019-05-30 21:24:47 +02:00
|
|
|
|
|
|
|
class CDarkel
|
|
|
|
{
|
2019-06-15 01:34:19 +02:00
|
|
|
private:
|
2020-04-16 21:19:56 +02:00
|
|
|
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;
|
2019-07-04 22:31:21 +02:00
|
|
|
static wchar *pStartMessage;
|
2019-06-15 01:34:19 +02:00
|
|
|
|
2019-05-30 21:24:47 +02:00
|
|
|
public:
|
2019-10-05 15:44:03 +02:00
|
|
|
static uint8 CalcFade(uint32 time, uint32 min, uint32 max);
|
2019-05-30 21:24:47 +02:00
|
|
|
static void DrawMessages(void);
|
2019-06-15 01:34:19 +02:00
|
|
|
static bool FrenzyOnGoing();
|
2019-07-04 22:31:21 +02:00
|
|
|
static void Init();
|
2019-10-05 15:44:03 +02:00
|
|
|
static uint16 QueryModelsKilledByPlayer(int32 modelId);
|
|
|
|
static uint16 ReadStatus();
|
2019-07-09 18:50:35 +02:00
|
|
|
static void RegisterCarBlownUpByPlayer(CVehicle *vehicle);
|
|
|
|
static void RegisterKillByPlayer(CPed *victim, eWeaponType weapontype, bool headshot = false);
|
2019-07-18 04:26:46 +02:00
|
|
|
static void RegisterKillNotByPlayer(CPed* victim, eWeaponType weapontype);
|
2019-07-04 22:31:21 +02:00
|
|
|
static void ResetModelsKilledByPlayer();
|
|
|
|
static void ResetOnPlayerDeath();
|
2019-10-05 15:44:03 +02:00
|
|
|
static void StartFrenzy(eWeaponType weaponType, int32 time, uint16 kill, int32 modelId0, wchar *text, int32 modelId2, int32 modelId3, int32 modelId4, bool standardSound, bool needHeadShot);
|
2019-07-04 22:31:21 +02:00
|
|
|
static void Update();
|
|
|
|
|
2019-05-30 21:24:47 +02:00
|
|
|
};
|