diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2019-06-07 22:31:03 +0200 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2019-06-12 01:23:49 +0200 |
commit | ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f (patch) | |
tree | 366f56253d34262c47a5ac002ea5ed4d05aa7783 /src/User.h | |
parent | Add GetTranslatedName to CZone (diff) | |
download | re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.tar re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.tar.gz re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.tar.bz2 re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.tar.lz re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.tar.xz re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.tar.zst re3-ecd70a5f17e0aa4f6b0052c01a2170f01b125c5f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/User.h | 46 |
1 files changed, 45 insertions, 1 deletions
@@ -1,11 +1,55 @@ #pragma once +#include "common.h" + +class COnscreenTimerEntry +{ +public: + uint32 m_nTimerOffset; + uint32 m_nCounterOffset; + uint8 m_aTimerText[10]; + uint8 m_aCounterText[10]; + 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"); + +class CTheScripts{ +public: + static char *ScriptSpace;//[163840] +}; + class COnscreenTimer { public: - void ProcessForDisplay(void); + COnscreenTimerEntry m_sEntries[1]; + bool m_bProcessed; + bool m_bDisabled; + char field_119[2]; + + int 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 CPlaceName { }; |