isle-portable/LEGO1/mxtimer.cpp

43 lines
994 B
C++
Raw Normal View History

#include "mxtimer.h"
#include "legoinc.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()
{
this->m_isRunning = MX_FALSE;
m_startTime = timeGetTime();
// yeah this is somehow what the asm is
s_LastTimeCalculated = m_startTime;
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae160
void MxTimer::Start()
{
s_LastTimeTimerStarted = this->GetRealTime();
2023-06-13 20:26:24 -04:00
this->m_isRunning = MX_TRUE;
}
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;
}