2019-05-30 15:24:47 -04:00
|
|
|
#pragma once
|
2019-06-14 19:34:19 -04:00
|
|
|
#include "Sprite2d.h"
|
2019-05-30 15:24:47 -04:00
|
|
|
|
2019-06-16 20:10:55 -04:00
|
|
|
enum eItems
|
|
|
|
{
|
2019-06-19 20:31:03 -04:00
|
|
|
ITEM_NONE = -1,
|
2019-06-16 20:10:55 -04:00
|
|
|
ITEM_ARMOUR = 3,
|
|
|
|
ITEM_HEALTH = 4,
|
|
|
|
ITEM_RADAR = 8
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eSprites
|
|
|
|
{
|
2019-06-14 19:34:19 -04:00
|
|
|
HUD_FIST,
|
|
|
|
HUD_BAT,
|
|
|
|
HUD_PISTOL,
|
|
|
|
HUD_UZI,
|
|
|
|
HUD_SHOTGUN,
|
|
|
|
HUD_AK47,
|
|
|
|
HUD_M16,
|
|
|
|
HUD_SNIPER,
|
|
|
|
HUD_ROCKET,
|
|
|
|
HUD_FLAME,
|
|
|
|
HUD_MOLOTOV,
|
|
|
|
HUD_GRENADE,
|
|
|
|
HUD_DETONATOR,
|
|
|
|
HUD_RADARDISC = 15,
|
|
|
|
HUD_PAGER = 16,
|
|
|
|
HUD_SITESNIPER = 20,
|
2020-04-10 11:06:49 -04:00
|
|
|
HUD_SITEM16,
|
|
|
|
HUD_SITEROCKET,
|
|
|
|
NUM_HUD_SPRITES,
|
2019-06-14 19:34:19 -04:00
|
|
|
};
|
|
|
|
|
2019-06-16 20:10:55 -04:00
|
|
|
class CHud
|
|
|
|
{
|
2019-05-30 15:24:47 -04:00
|
|
|
public:
|
2020-04-10 11:06:49 -04:00
|
|
|
static CSprite2d Sprites[NUM_HUD_SPRITES];
|
|
|
|
static wchar m_HelpMessage[256];
|
|
|
|
static wchar m_LastHelpMessage[256];
|
|
|
|
static uint32 m_HelpMessageState;
|
|
|
|
static uint32 m_HelpMessageTimer;
|
|
|
|
static int32 m_HelpMessageFadeTimer;
|
|
|
|
static wchar m_HelpMessageToPrint[256];
|
2019-06-16 18:16:38 -04:00
|
|
|
static float &m_HelpMessageDisplayTime;
|
2020-04-10 11:06:49 -04:00
|
|
|
static float m_fHelpMessageTime;
|
|
|
|
static bool m_HelpMessageQuick;
|
|
|
|
static uint32 m_ZoneState;
|
2019-06-14 19:34:19 -04:00
|
|
|
static int32 m_ZoneFadeTimer;
|
2020-04-10 11:06:49 -04:00
|
|
|
static uint32 m_ZoneNameTimer;
|
|
|
|
static wchar *m_pZoneName;
|
2019-06-28 07:28:42 -04:00
|
|
|
static wchar *m_pLastZoneName;
|
2019-06-16 20:10:55 -04:00
|
|
|
static wchar *m_ZoneToPrint;
|
2020-04-10 11:06:49 -04:00
|
|
|
static wchar *m_VehicleName;
|
2019-06-28 07:28:42 -04:00
|
|
|
static wchar *m_pLastVehicleName;
|
|
|
|
static wchar *m_pVehicleNameToPrint;
|
2020-04-10 11:06:49 -04:00
|
|
|
static uint32 m_VehicleState;
|
2019-06-14 19:34:19 -04:00
|
|
|
static int32 m_VehicleFadeTimer;
|
2020-04-10 11:06:49 -04:00
|
|
|
static uint32 m_VehicleNameTimer;
|
|
|
|
static wchar m_Message[256];
|
|
|
|
static wchar m_PagerMessage[256];
|
|
|
|
static bool m_Wants_To_Draw_Hud;
|
|
|
|
static bool m_Wants_To_Draw_3dMarkers;
|
|
|
|
static wchar m_BigMessage[6][128];
|
|
|
|
static int16 m_ItemToFlash;
|
2019-06-28 07:28:42 -04:00
|
|
|
|
|
|
|
// These aren't really in CHud
|
2019-06-24 20:34:29 -04:00
|
|
|
static float BigMessageInUse[6];
|
|
|
|
static float BigMessageAlpha[6];
|
|
|
|
static float BigMessageX[6];
|
2020-04-10 11:06:49 -04:00
|
|
|
static float OddJob2OffTimer;
|
|
|
|
static bool CounterOnLastFrame;
|
|
|
|
static float OddJob2XOffset;
|
|
|
|
static uint16 CounterFlashTimer;
|
|
|
|
static uint16 OddJob2Timer;
|
|
|
|
static bool TimerOnLastFrame;
|
|
|
|
static int16 OddJob2On;
|
|
|
|
static uint16 TimerFlashTimer;
|
|
|
|
static int16 PagerSoundPlayed;
|
|
|
|
static int32 SpriteBrightness;
|
|
|
|
static float PagerXOffset;
|
|
|
|
static int16 PagerTimer;
|
|
|
|
static int16 PagerOn;
|
2019-06-14 19:34:19 -04:00
|
|
|
|
|
|
|
public:
|
2019-06-27 03:47:03 -04:00
|
|
|
static void Draw();
|
|
|
|
static void DrawAfterFade();
|
|
|
|
static void GetRidOfAllHudMessages();
|
2019-06-14 19:34:19 -04:00
|
|
|
static void Initialise();
|
|
|
|
static void ReInitialise();
|
2019-06-27 03:47:03 -04:00
|
|
|
static void SetBigMessage(wchar *message, int16 style);
|
2019-06-16 20:10:55 -04:00
|
|
|
static void SetHelpMessage(wchar *message, bool quick);
|
|
|
|
static void SetMessage(wchar *message);
|
|
|
|
static void SetPagerMessage(wchar *message);
|
2019-06-27 03:47:03 -04:00
|
|
|
static void SetVehicleName(wchar *name);
|
|
|
|
static void SetZoneName(wchar *name);
|
|
|
|
static void Shutdown();
|
2019-06-16 20:10:55 -04:00
|
|
|
};
|