2023-06-29 04:10:08 -04:00
|
|
|
#ifndef INFOCENTER_H
|
|
|
|
#define INFOCENTER_H
|
|
|
|
|
|
|
|
#include "legoworld.h"
|
2024-01-17 11:53:53 -05:00
|
|
|
#include "radio.h"
|
|
|
|
|
|
|
|
class InfocenterState;
|
|
|
|
|
|
|
|
// SIZE 0x18
|
|
|
|
struct InfocenterUnkDataEntry {
|
|
|
|
// FUNCTION: LEGO1 0x1006ec80
|
|
|
|
InfocenterUnkDataEntry() {}
|
|
|
|
|
|
|
|
undefined m_pad[0x18];
|
|
|
|
};
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d9338
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x1d8
|
2023-10-24 19:38:27 -04:00
|
|
|
class Infocenter : public LegoWorld {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2024-01-17 11:56:41 -05:00
|
|
|
enum Cutscene {
|
2024-01-17 11:53:53 -05:00
|
|
|
e_noIntro = -1,
|
|
|
|
e_legoMovie,
|
|
|
|
e_mindscapeMovie,
|
|
|
|
e_introMovie,
|
|
|
|
e_outroMovie,
|
|
|
|
e_badEndMovie,
|
|
|
|
e_goodEndMovie
|
|
|
|
};
|
|
|
|
|
|
|
|
enum InfomainScript {
|
|
|
|
c_noInfomain = -1,
|
|
|
|
c_welcomeDialogue = 500,
|
|
|
|
c_randomDialogue1 = 502,
|
|
|
|
c_letsGetStarted = 504,
|
|
|
|
c_returnBack = 514,
|
|
|
|
c_exitConfirmation = 522,
|
|
|
|
c_goodEndingDialogue = 539,
|
|
|
|
c_badEndingDialogue = 540,
|
|
|
|
c_pepperCharacterSelect = 541,
|
|
|
|
c_mamaCharacterSelect = 542,
|
|
|
|
c_papaCharacterSelect = 543,
|
|
|
|
c_officierCharacterSelect = 544,
|
|
|
|
c_loraCharacterSelect = 545,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum SndAmimScript {
|
|
|
|
c_bookWig = 400
|
|
|
|
};
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
Infocenter();
|
|
|
|
virtual ~Infocenter() override;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
virtual MxLong Notify(MxParam& p_param) override; // vtable+0x4
|
|
|
|
virtual MxResult Tickle() override; // vtable+0x8
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006eb40
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f04ec
|
2023-10-24 19:38:27 -04:00
|
|
|
return "Infocenter";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1006eb50
|
2023-12-13 05:48:14 -05:00
|
|
|
inline virtual 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, Infocenter::ClassName()) || LegoWorld::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-12-29 13:04:18 -05:00
|
|
|
|
2024-01-13 15:00:11 -05:00
|
|
|
virtual MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
|
2024-01-12 17:27:07 -05:00
|
|
|
virtual void VTable0x50() override; // vtable+0x50
|
2023-12-29 13:04:18 -05:00
|
|
|
virtual MxBool VTable0x5c() override; // vtable+0x5c
|
|
|
|
virtual MxBool VTable0x64() override; // vtable+0x64
|
|
|
|
virtual void VTable0x68(MxBool p_add) override; // vtable+0x68
|
2024-01-17 11:53:53 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
void InitializeBitmaps();
|
|
|
|
|
|
|
|
MxLong HandleKeyPress(MxS8 p_key);
|
|
|
|
MxU8 HandleMouseMove(MxS32 p_x, MxS32 p_y);
|
|
|
|
MxU8 HandleButtonUp(MxS32 p_x, MxS32 p_y);
|
|
|
|
MxU8 HandleNotification17(MxParam&);
|
|
|
|
MxLong HandleEndAction(MxParam& p_param);
|
|
|
|
MxLong HandleNotification0(MxParam&);
|
|
|
|
|
|
|
|
void FUN_10070dc0(MxBool);
|
|
|
|
void FUN_10070e90();
|
|
|
|
|
2024-01-17 11:56:41 -05:00
|
|
|
void PlayCutscene(Cutscene p_entityId, MxBool p_scale);
|
2024-01-17 11:53:53 -05:00
|
|
|
void StopCutscene();
|
|
|
|
|
|
|
|
void StartCredits();
|
|
|
|
void StopCredits();
|
|
|
|
|
|
|
|
void PlayDialogue(InfomainScript p_objectId);
|
|
|
|
void StopCurrentDialogue();
|
|
|
|
|
|
|
|
void PlayBookAnimation();
|
|
|
|
void StopBookAnimation();
|
|
|
|
|
|
|
|
InfomainScript m_currentInfomainScript; // 0xf8
|
|
|
|
MxS16 m_unk0xfc; // 0xfc
|
|
|
|
InfocenterState* m_infocenterState; // 0x100
|
|
|
|
undefined4 m_unk0x104; // 0x104
|
2024-01-17 11:56:41 -05:00
|
|
|
Cutscene m_currentCutscene; // 0x108
|
2024-01-17 11:53:53 -05:00
|
|
|
Radio m_radio; // 0x10c
|
|
|
|
undefined4 m_unk0x11c; // 0x11c
|
|
|
|
InfocenterUnkDataEntry m_entries[7]; // 0x120
|
|
|
|
MxS16 m_unk0x1c8; // 0x1c8
|
|
|
|
undefined4 m_unk0x1cc; // 0x1cc
|
|
|
|
MxU16 m_unk0x1d0; // 0x1d0
|
|
|
|
MxU16 m_unk0x1d2; // 0x1d2
|
|
|
|
MxU16 m_unk0x1d4; // 0x1d4
|
|
|
|
MxU16 m_unk0x1d6; // 0x1d6
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INFOCENTER_H
|