2019-05-30 19:24:47 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-07 20:31:03 +00:00
|
|
|
class COnscreenTimerEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
uint32 m_nTimerOffset;
|
|
|
|
uint32 m_nCounterOffset;
|
2019-06-12 11:46:02 +00:00
|
|
|
char m_aTimerText[10];
|
|
|
|
char m_aCounterText[10];
|
2019-06-07 20:31:03 +00:00
|
|
|
uint16 m_nType;
|
|
|
|
char m_bCounterBuffer[42];
|
|
|
|
char m_bTimerBuffer[42];
|
|
|
|
bool m_bTimerProcessed;
|
|
|
|
bool m_bCounterProcessed;
|
|
|
|
|
|
|
|
void Process();
|
|
|
|
bool ProcessForDisplay();
|
|
|
|
|
|
|
|
int ProcessForDisplayTimer();
|
|
|
|
int ProcessForDisplayCounter();
|
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(COnscreenTimerEntry) == 0x74, "COnscreenTimerEntry: error");
|
|
|
|
|
2019-05-30 19:24:47 +00:00
|
|
|
class COnscreenTimer
|
|
|
|
{
|
|
|
|
public:
|
2019-06-12 09:08:56 +00:00
|
|
|
COnscreenTimerEntry m_sEntries[NUMONSCREENTIMERENTRIES];
|
2019-06-07 20:31:03 +00:00
|
|
|
bool m_bProcessed;
|
|
|
|
bool m_bDisabled;
|
|
|
|
|
2019-06-12 11:46:02 +00:00
|
|
|
void Init();
|
2019-06-07 20:31:03 +00:00
|
|
|
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);
|
2019-05-30 19:24:47 +00:00
|
|
|
};
|
|
|
|
|
2019-06-07 20:31:03 +00:00
|
|
|
static_assert(sizeof(COnscreenTimer) == 0x78, "COnscreenTimer: error");
|
|
|
|
|
2019-05-30 19:24:47 +00:00
|
|
|
class CPlaceName
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class CCurrentVehicle
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class CPager
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class CUserDisplay
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static CPlaceName &PlaceName;
|
|
|
|
static COnscreenTimer &OnscnTimer;
|
|
|
|
static CPager &Pager;
|
|
|
|
static CCurrentVehicle &CurrentVehicle;
|
|
|
|
};
|