2023-06-29 04:10:08 -04:00
|
|
|
#ifndef HISTORYBOOK_H
|
|
|
|
#define HISTORYBOOK_H
|
|
|
|
|
2024-02-17 14:04:48 -05:00
|
|
|
#include "decomp.h"
|
|
|
|
#include "legogamestate.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "legoworld.h"
|
2024-05-03 12:19:12 -04:00
|
|
|
|
|
|
|
class MxStillPresenter;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100da328
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x3e4
|
2023-10-24 19:38:27 -04:00
|
|
|
class HistoryBook : public LegoWorld {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
HistoryBook();
|
2024-02-01 15:42:10 -05:00
|
|
|
~HistoryBook() override; // vtable+0x00
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
MxLong Notify(MxParam& p_param) override; // vtable+0x04
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10082390
|
2024-07-04 19:06:32 -04:00
|
|
|
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 0x100f04bc
|
2023-10-24 19:38:27 -04:00
|
|
|
return "HistoryBook";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100823a0
|
2024-07-04 19:06:32 -04:00
|
|
|
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, HistoryBook::ClassName()) || LegoWorld::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2024-01-18 08:34:14 -05:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
|
|
|
|
void ReadyWorld() override; // vtable+0x50
|
2024-05-24 20:41:57 -04:00
|
|
|
MxBool Escape() override; // vtable+0x64
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100824b0
|
|
|
|
// HistoryBook::`scalar deleting destructor'
|
2024-02-17 14:04:48 -05:00
|
|
|
|
|
|
|
private:
|
2024-03-13 13:17:20 -04:00
|
|
|
LegoGameState::Area m_destLocation; // 0xf8
|
|
|
|
MxStillPresenter* m_alphabet[26]; // 0xfc
|
|
|
|
MxStillPresenter* m_names[20][7]; // 0x164
|
|
|
|
MxStillPresenter* m_scores[20]; // 0x394
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HISTORYBOOK_H
|