2023-06-29 04:10:08 -04:00
|
|
|
#include "racestate.h"
|
|
|
|
|
2023-10-23 07:16:21 -04:00
|
|
|
DECOMP_SIZE_ASSERT(RaceStateEntry, 0x06)
|
|
|
|
|
|
|
|
// TODO: Must be 0x2c but current structure is incorrect
|
|
|
|
// DECOMP_SIZE_ASSERT(RaceState, 0x2c)
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// OFFSET: LEGO1 0x10015f30 STUB
|
|
|
|
RaceState::RaceState()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2023-10-23 07:16:21 -04:00
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x10016280
|
2023-10-24 19:38:27 -04:00
|
|
|
RaceStateEntry* RaceState::GetState(MxU8 id)
|
2023-10-23 07:16:21 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
for (MxS16 i = 0;; i++) {
|
|
|
|
if (i >= 5)
|
|
|
|
return NULL;
|
|
|
|
if (m_state[i].m_id == id)
|
|
|
|
return m_state + i;
|
|
|
|
}
|
2023-10-25 14:51:59 -04:00
|
|
|
}
|