2023-06-29 04:10:08 -04:00
|
|
|
#ifndef INFOCENTERSTATE_H
|
|
|
|
#define INFOCENTERSTATE_H
|
|
|
|
|
2023-10-12 12:18:24 -04:00
|
|
|
#include "decomp.h"
|
2024-02-10 11:51:56 -05:00
|
|
|
#include "legogamestate.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "legostate.h"
|
2024-01-19 09:38:06 -05:00
|
|
|
#include "mxstillpresenter.h"
|
2023-10-12 12:18:24 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d93a8
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x94
|
2023-10-24 19:38:27 -04:00
|
|
|
class InfocenterState : public LegoState {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
InfocenterState();
|
2024-02-01 15:42:10 -05:00
|
|
|
~InfocenterState() override;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10071840
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f04dc
|
2023-10-24 19:38:27 -04:00
|
|
|
return "InfocenterState";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10071850
|
2024-02-01 15:42:10 -05:00
|
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, InfocenterState::ClassName()) || LegoState::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-10-12 12:18:24 -04:00
|
|
|
|
2024-01-18 20:24:15 -05:00
|
|
|
// FUNCTION: LEGO1 0x10071830
|
2024-02-01 15:42:10 -05:00
|
|
|
MxBool VTable0x14() override { return FALSE; } // vtable+0x14
|
2024-01-18 20:24:15 -05:00
|
|
|
|
2024-02-11 10:44:55 -05:00
|
|
|
inline MxS16 GetMaxNameLength() { return _countof(m_letters); }
|
|
|
|
inline MxStillPresenter* GetNameLetter(MxS32 p_index) { return m_letters[p_index]; }
|
2024-03-19 10:15:24 -04:00
|
|
|
inline void SetNameLetter(MxS32 p_index, MxStillPresenter* p_letter) { m_letters[p_index] = p_letter; }
|
2024-02-11 10:44:55 -05:00
|
|
|
inline MxBool HasRegistered() { return m_letters[0] != NULL; }
|
2024-02-10 11:51:56 -05:00
|
|
|
inline Playlist& GetExitDialogueAct1() { return m_exitDialogueAct1; }
|
|
|
|
inline Playlist& GetExitDialogueAct23() { return m_exitDialogueAct23; }
|
|
|
|
inline Playlist& GetReturnDialogue(LegoGameState::Act p_act) { return m_returnDialogue[p_act]; }
|
|
|
|
inline Playlist& GetLeaveDialogue(LegoGameState::Act p_act) { return m_leaveDialogue[p_act]; }
|
|
|
|
inline Playlist& GetBricksterDialogue() { return m_bricksterDialogue; }
|
2024-01-17 11:53:53 -05:00
|
|
|
inline MxU32 GetUnknown0x74() { return m_unk0x74; }
|
|
|
|
|
|
|
|
inline void SetUnknown0x74(MxU32 p_unk0x74) { m_unk0x74 = p_unk0x74; }
|
2023-10-12 12:18:24 -04:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x10071900
|
|
|
|
// InfocenterState::`scalar deleting destructor'
|
|
|
|
|
2023-10-12 12:18:24 -04:00
|
|
|
private:
|
2024-02-11 10:44:55 -05:00
|
|
|
Playlist m_exitDialogueAct1; // 0x08
|
|
|
|
Playlist m_exitDialogueAct23; // 0x14
|
|
|
|
Playlist m_returnDialogue[3]; // 0x20
|
|
|
|
Playlist m_leaveDialogue[3]; // 0x44
|
|
|
|
Playlist m_bricksterDialogue; // 0x68
|
|
|
|
MxU32 m_unk0x74; // 0x74
|
|
|
|
MxStillPresenter* m_letters[7]; // 0x78
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INFOCENTERSTATE_H
|