2020-04-09 18:50:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
COUNTER_DISPLAY_NUMBER,
|
|
|
|
COUNTER_DISPLAY_BAR,
|
|
|
|
};
|
|
|
|
|
|
|
|
class COnscreenTimerEntry
|
|
|
|
{
|
|
|
|
public:
|
2020-10-10 11:23:17 +00:00
|
|
|
uint32 m_nClockOffset;
|
|
|
|
char m_aClockText[10];
|
|
|
|
char m_aClockBuffer[40];
|
|
|
|
bool m_bClockProcessed;
|
|
|
|
bool m_bClockGoingDown;
|
|
|
|
|
|
|
|
void Process();
|
|
|
|
void ProcessForDisplayClock();
|
|
|
|
};
|
|
|
|
|
|
|
|
VALIDATE_SIZE(COnscreenTimerEntry, 0x3C);
|
|
|
|
|
|
|
|
class COnscreenCounterEntry
|
|
|
|
{
|
|
|
|
public:
|
2020-04-09 18:50:24 +00:00
|
|
|
uint32 m_nCounterOffset;
|
|
|
|
char m_aCounterText[10];
|
|
|
|
uint16 m_nType;
|
2020-10-10 11:23:17 +00:00
|
|
|
char m_aCounterBuffer[40];
|
2020-04-09 18:50:24 +00:00
|
|
|
bool m_bCounterProcessed;
|
|
|
|
|
|
|
|
void ProcessForDisplayCounter();
|
|
|
|
};
|
|
|
|
|
2020-10-10 11:23:17 +00:00
|
|
|
VALIDATE_SIZE(COnscreenCounterEntry, 0x3C);
|
2020-04-09 18:50:24 +00:00
|
|
|
|
|
|
|
class COnscreenTimer
|
|
|
|
{
|
|
|
|
public:
|
2020-10-10 11:23:17 +00:00
|
|
|
COnscreenTimerEntry m_sClocks[NUMONSCREENCLOCKS];
|
|
|
|
COnscreenCounterEntry m_sCounters[NUMONSCREENCOUNTERS];
|
2020-04-09 18:50:24 +00:00
|
|
|
bool m_bProcessed;
|
|
|
|
bool m_bDisabled;
|
|
|
|
|
|
|
|
void Init();
|
|
|
|
void Process();
|
|
|
|
void ProcessForDisplay();
|
|
|
|
|
|
|
|
void ClearCounter(uint32 offset);
|
|
|
|
void ClearClock(uint32 offset);
|
|
|
|
|
2020-05-20 17:40:04 +00:00
|
|
|
void AddCounter(uint32 offset, uint16 type, char* text, uint16 pos);
|
|
|
|
void AddClock(uint32 offset, char* text, bool bGoingDown);
|
2020-04-09 18:50:24 +00:00
|
|
|
};
|
|
|
|
|
2020-10-10 11:23:17 +00:00
|
|
|
VALIDATE_SIZE(COnscreenTimer, 0xF4);
|