mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-17 02:24:08 +00:00
CUserDisplay, CPlaceName, CCurrentVehicle
This commit is contained in:
parent
c8c9413ef5
commit
d89d5f0d9a
4 changed files with 335 additions and 187 deletions
|
@ -1,55 +1,31 @@
|
|||
#pragma once
|
||||
|
||||
#include "Pager.h"
|
||||
#include "OnscreenTimer.h"
|
||||
|
||||
class COnscreenTimerEntry
|
||||
{
|
||||
public:
|
||||
uint32 m_nTimerOffset;
|
||||
uint32 m_nCounterOffset;
|
||||
char m_aTimerText[10];
|
||||
char m_aCounterText[10];
|
||||
uint16 m_nType;
|
||||
char m_bCounterBuffer[42];
|
||||
char m_bTimerBuffer[42];
|
||||
bool m_bTimerProcessed;
|
||||
bool m_bCounterProcessed;
|
||||
|
||||
void Process();
|
||||
bool ProcessForDisplay();
|
||||
|
||||
void ProcessForDisplayClock();
|
||||
void ProcessForDisplayCounter();
|
||||
};
|
||||
|
||||
static_assert(sizeof(COnscreenTimerEntry) == 0x74, "COnscreenTimerEntry: error");
|
||||
|
||||
class COnscreenTimer
|
||||
{
|
||||
public:
|
||||
COnscreenTimerEntry m_sEntries[NUMONSCREENTIMERENTRIES];
|
||||
bool m_bProcessed;
|
||||
bool m_bDisabled;
|
||||
|
||||
void Init();
|
||||
void Process();
|
||||
void ProcessForDisplay();
|
||||
|
||||
void ClearCounter(uint32 offset);
|
||||
void ClearClock(uint32 offset);
|
||||
|
||||
void AddCounter(uint32 offset, uint16 type, char* text);
|
||||
void AddClock(uint32 offset, char* text);
|
||||
};
|
||||
|
||||
static_assert(sizeof(COnscreenTimer) == 0x78, "COnscreenTimer: error");
|
||||
class CZone;
|
||||
class CVehicle;
|
||||
|
||||
class CPlaceName
|
||||
{
|
||||
CZone *m_pZone;
|
||||
CZone *m_pZone2;
|
||||
int16 m_nAdditionalTimer;
|
||||
public:
|
||||
CPlaceName();
|
||||
void Init();
|
||||
void Process();
|
||||
void Display();
|
||||
};
|
||||
|
||||
class CCurrentVehicle
|
||||
{
|
||||
CVehicle *m_pCurrentVehicle;
|
||||
public:
|
||||
CCurrentVehicle();
|
||||
void Init();
|
||||
void Process();
|
||||
void Display();
|
||||
};
|
||||
|
||||
class CUserDisplay
|
||||
|
@ -60,5 +36,6 @@ public:
|
|||
static CPager &Pager;
|
||||
static CCurrentVehicle &CurrentVehicle;
|
||||
|
||||
static void Process(void);
|
||||
static void Init();
|
||||
static void Process();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue