2023-06-29 04:10:08 -04:00
|
|
|
#ifndef TOWTRACKMISSIONSTATE_H
|
|
|
|
#define TOWTRACKMISSIONSTATE_H
|
|
|
|
|
|
|
|
#include "legostate.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d7fd8
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x28
|
2023-10-24 19:38:27 -04:00
|
|
|
class TowTrackMissionState : public LegoState {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
TowTrackMissionState();
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1004dfa0
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const // vtable+0x0c
|
|
|
|
{
|
2023-12-06 07:10:45 -05:00
|
|
|
// GLOBAL: LEGO1 0x100f00bc
|
2023-10-24 19:38:27 -04:00
|
|
|
return "TowTrackMissionState";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1004dfb0
|
2023-12-13 05:48:14 -05:00
|
|
|
inline virtual MxBool IsA(const char* p_name) const // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, TowTrackMissionState::ClassName()) || LegoState::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
inline MxU16 GetColor(MxU8 p_id)
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
switch (p_id) {
|
2023-10-24 19:38:27 -04:00
|
|
|
case 1:
|
|
|
|
return m_color1;
|
|
|
|
case 2:
|
|
|
|
return m_color2;
|
|
|
|
case 3:
|
|
|
|
return m_color3;
|
|
|
|
case 4:
|
|
|
|
return m_color4;
|
|
|
|
case 5:
|
|
|
|
return m_color5;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2023-10-23 07:16:21 -04:00
|
|
|
|
|
|
|
protected:
|
2023-12-13 05:48:14 -05:00
|
|
|
undefined m_unk0x8[0x14];
|
2023-10-24 19:38:27 -04:00
|
|
|
MxU16 m_color1;
|
|
|
|
MxU16 m_color2;
|
|
|
|
MxU16 m_color3;
|
|
|
|
MxU16 m_color4;
|
|
|
|
MxU16 m_color5;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TOWTRACKMISSIONSTATE_H
|