isle-portable/LEGO1/mxtimer.cpp

43 lines
945 B
C++
Raw Normal View History

2023-06-23 12:17:41 -04:00
#include "mxtimer.h"
#include <windows.h>
2023-06-23 12:17:41 -04:00
// 0x10101414
MxLong MxTimer::s_LastTimeCalculated = 0;
2023-06-23 12:17:41 -04:00
// 0x10101418
MxLong MxTimer::s_LastTimeTimerStarted = 0;
2023-06-23 12:17:41 -04:00
// OFFSET: LEGO1 0x100ae060
MxTimer::MxTimer()
{
2023-10-24 19:38:27 -04:00
this->m_isRunning = FALSE;
m_startTime = timeGetTime();
// yeah this is somehow what the asm is
s_LastTimeCalculated = m_startTime;
2023-06-23 12:17:41 -04:00
}
// OFFSET: LEGO1 0x100ae140
MxLong MxTimer::GetRealTime()
{
MxTimer::s_LastTimeCalculated = timeGetTime();
return MxTimer::s_LastTimeCalculated - this->m_startTime;
}
2023-06-23 12:17:41 -04:00
// OFFSET: LEGO1 0x100ae160
void MxTimer::Start()
{
2023-10-24 19:38:27 -04:00
s_LastTimeTimerStarted = this->GetRealTime();
this->m_isRunning = TRUE;
2023-06-23 12:17:41 -04:00
}
// OFFSET: LEGO1 0x100ae180
void MxTimer::Stop()
{
2023-10-24 19:38:27 -04:00
MxLong elapsed = this->GetRealTime();
MxLong startTime = elapsed - MxTimer::s_LastTimeTimerStarted;
this->m_isRunning = FALSE;
// this feels very stupid but it's what the assembly does
this->m_startTime = this->m_startTime + startTime - 5;
2023-06-23 12:17:41 -04:00
}