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-12-06 07:10:45 -05:00
|
|
|
// STUB: LEGO1 0x10015f30
|
2023-06-29 04:10:08 -04:00
|
|
|
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
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10016280
|
2023-12-13 05:48:14 -05:00
|
|
|
RaceStateEntry* RaceState::GetState(MxU8 p_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;
|
2023-12-13 05:48:14 -05:00
|
|
|
if (m_state[i].m_id == p_id)
|
2023-10-24 19:38:27 -04:00
|
|
|
return m_state + i;
|
|
|
|
}
|
2023-10-25 14:51:59 -04:00
|
|
|
}
|