isle-portable/LEGO1/mxtimer.cpp

42 lines
992 B
C++
Raw Normal View History

#include "mxtimer.h"
#include <windows.h>
2023-06-18 23:56:55 -04:00
// 0x10101414
long MxTimer::s_LastTimeCalculated = 0;
2023-06-18 23:56:55 -04:00
// 0x10101418
long MxTimer::s_LastTimeTimerStarted = 0;
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae060
MxTimer::MxTimer()
{
2023-06-13 20:26:24 -04:00
this->m_isRunning = MX_FALSE;
MxTimer::s_LastTimeCalculated = timeGetTime();
this->m_startTime = MxTimer::s_LastTimeCalculated;
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae160
void MxTimer::Start()
{
2023-06-13 20:26:24 -04:00
this->m_isRunning = MX_TRUE;
MxTimer::s_LastTimeTimerStarted = timeGetTime();
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae180
void MxTimer::Stop()
{
long elapsed = this->GetRealTime();
long startTime = elapsed - MxTimer::s_LastTimeTimerStarted;
2023-06-13 20:26:24 -04:00
this->m_isRunning = MX_FALSE;
// this feels very stupid but it's what the assembly does
this->m_startTime = this->m_startTime + startTime - 5;
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae140
long MxTimer::GetRealTime()
{
MxTimer::s_LastTimeCalculated = timeGetTime();
return MxTimer::s_LastTimeCalculated - this->m_startTime;
}