re3-mirror/src/control/OnscreenTimer.cpp

166 lines
4.1 KiB
C++
Raw Normal View History

#include "common.h"
2020-04-17 14:31:11 +01:00
#include "DMAudio.h"
#include "Hud.h"
#include "Replay.h"
#include "Timer.h"
#include "Script.h"
#include "OnscreenTimer.h"
2020-10-10 12:23:17 +01:00
#include "Camera.h"
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::Init()
{
m_bDisabled = false;
2020-10-10 12:23:17 +01:00
for(uint32 i = 0; i < NUMONSCREENCOUNTERS; i++) {
m_sCounters[i].m_nCounterOffset = 0;
2021-07-02 08:22:34 +01:00
for(uint32 j = 0; j < ARRAY_SIZE(m_sCounters[0].m_aCounterText); j++)
m_sCounters[i].m_aCounterText[j] = '\0';
2020-10-10 12:23:17 +01:00
m_sCounters[i].m_nType = COUNTER_DISPLAY_NUMBER;
m_sCounters[i].m_bCounterProcessed = false;
}
for(uint32 i = 0; i < NUMONSCREENCLOCKS; i++) {
m_sClocks[i].m_nClockOffset = 0;
2021-07-02 08:22:34 +01:00
for(uint32 j = 0; j < ARRAY_SIZE(m_sClocks[0].m_aClockText); j++)
m_sClocks[i].m_aClockText[j] = '\0';
2020-10-10 12:23:17 +01:00
m_sClocks[i].m_bClockProcessed = false;
m_sClocks[i].m_bClockGoingDown = true;
}
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::Process()
{
if(!CReplay::IsPlayingBack() && !m_bDisabled)
for(uint32 i = 0; i < NUMONSCREENCLOCKS; i++)
2020-10-10 12:23:17 +01:00
m_sClocks[i].Process();
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::ProcessForDisplay()
{
if(CHud::m_Wants_To_Draw_Hud) {
m_bProcessed = false;
2020-10-10 12:23:17 +01:00
for(uint32 i = 0; i < NUMONSCREENCLOCKS; i++) {
m_sClocks[i].m_bClockProcessed = false;
if (m_sClocks[i].m_nClockOffset != 0) {
m_sClocks[i].ProcessForDisplayClock();
m_sClocks[i].m_bClockProcessed = true;
m_bProcessed = true;
}
}
for(uint32 i = 0; i < NUMONSCREENCOUNTERS; i++) {
m_sCounters[i].m_bCounterProcessed = false;
if (m_sCounters[i].m_nCounterOffset != 0) {
m_sCounters[i].ProcessForDisplayCounter();
m_sCounters[i].m_bCounterProcessed = true;
m_bProcessed = true;
}
}
}
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::ClearCounter(uint32 offset)
{
2020-10-10 12:23:17 +01:00
for(uint32 i = 0; i < NUMONSCREENCOUNTERS; i++) {
if(offset == m_sCounters[i].m_nCounterOffset) {
m_sCounters[i].m_nCounterOffset = 0;
2021-07-02 08:22:34 +01:00
m_sCounters[i].m_aCounterText[0] = '\0';
2020-10-10 12:23:17 +01:00
m_sCounters[i].m_nType = COUNTER_DISPLAY_NUMBER;
2021-07-02 08:22:34 +01:00
m_sCounters[i].m_bCounterProcessed = false;
}
}
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::ClearClock(uint32 offset)
{
for(uint32 i = 0; i < NUMONSCREENCLOCKS; i++)
2020-10-10 12:23:17 +01:00
if(offset == m_sClocks[i].m_nClockOffset) {
m_sClocks[i].m_nClockOffset = 0;
2021-07-02 08:22:34 +01:00
m_sClocks[i].m_aClockText[0] = '\0';
m_sClocks[i].m_bClockProcessed = false;
2020-10-10 12:23:17 +01:00
m_sClocks[i].m_bClockGoingDown = true;
}
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::AddCounter(uint32 offset, uint16 type, char* text, uint16 pos)
{
2020-10-10 12:23:17 +01:00
if (m_sCounters[pos].m_aCounterText[0] != '\0')
2020-05-20 18:40:04 +01:00
return;
2020-10-10 12:23:17 +01:00
m_sCounters[pos].m_nCounterOffset = offset;
2021-07-02 08:22:34 +01:00
if(text)
strncpy(m_sCounters[pos].m_aCounterText, text, ARRAY_SIZE(m_sCounters[0].m_aCounterText));
2021-07-02 08:22:34 +01:00
else
m_sCounters[pos].m_aCounterText[0] = '\0';
2020-10-10 12:23:17 +01:00
m_sCounters[pos].m_nType = type;
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimer::AddClock(uint32 offset, char* text, bool bGoingDown)
{
for(uint32 i = 0; i < NUMONSCREENCLOCKS; i++) {
2020-10-10 12:23:17 +01:00
if(m_sClocks[i].m_nClockOffset == 0) {
2021-07-02 08:22:34 +01:00
m_sClocks[i].m_nClockOffset = offset;
m_sClocks[i].m_bClockGoingDown = bGoingDown;
if(text)
strncpy(m_sClocks[i].m_aClockText, text, ARRAY_SIZE(m_sClocks[0].m_aClockText));
else
m_sClocks[i].m_aClockText[0] = '\0';
break;
}
}
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimerEntry::Process()
{
if(m_nClockOffset == 0)
return;
2020-10-10 12:23:17 +01:00
int32* timerPtr = CTheScripts::GetPointerToScriptVariable(m_nClockOffset);
2020-02-23 10:12:44 +00:00
int32 oldTime = *timerPtr;
2020-10-10 12:23:17 +01:00
if (m_bClockGoingDown) {
2020-05-20 18:40:04 +01:00
int32 newTime = oldTime - int32(CTimer::GetTimeStepInMilliseconds());
2020-10-10 12:23:17 +01:00
*timerPtr = newTime;
2020-05-20 18:40:04 +01:00
if (newTime < 0) {
*timerPtr = 0;
2020-10-10 12:23:17 +01:00
m_bClockProcessed = 0;
m_nClockOffset = 0;
m_aClockText[0] = 0;
2020-05-20 18:40:04 +01:00
}
else {
int32 oldTimeSeconds = oldTime / 1000;
2020-10-10 12:23:17 +01:00
if (oldTimeSeconds < 12 && newTime / 1000 != oldTimeSeconds && !TheCamera.m_WideScreenOn) {
2020-05-20 18:40:04 +01:00
DMAudio.PlayFrontEndSound(SOUND_CLOCK_TICK, newTime / 1000);
}
}
}
2020-05-20 18:40:04 +01:00
else
*timerPtr = oldTime + int32(CTimer::GetTimeStepInMilliseconds());
}
2021-07-02 08:22:34 +01:00
void
COnscreenTimerEntry::ProcessForDisplayClock()
{
2020-10-10 12:23:17 +01:00
uint32 time = *CTheScripts::GetPointerToScriptVariable(m_nClockOffset);
sprintf(m_aClockBuffer, "%02d:%02d", time / 1000 / 60 % 100,
time / 1000 % 60);
}
2021-07-02 08:22:34 +01:00
void
COnscreenCounterEntry::ProcessForDisplayCounter()
{
2020-02-23 10:12:44 +00:00
uint32 counter = *CTheScripts::GetPointerToScriptVariable(m_nCounterOffset);
2020-10-10 12:23:17 +01:00
sprintf(m_aCounterBuffer, "%d", counter);
}