mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
bcb7bec68b
* Parser refactor: - Handling LIRBARY and STRING markers - Extracting global variable name for future comparison - Marking function static variables - More fluent error messages * String constants annotated with STRING * fix variable name * Should compare LIBRARY markers
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#ifndef LEGOWORLDPRESENTER_H
|
|
#define LEGOWORLDPRESENTER_H
|
|
|
|
#include "legoentitypresenter.h"
|
|
|
|
// VTABLE: LEGO1 0x100d8ee0
|
|
// SIZE 0x54
|
|
class LegoWorldPresenter : public LegoEntityPresenter {
|
|
public:
|
|
LegoWorldPresenter();
|
|
virtual ~LegoWorldPresenter() override; // vtable+0x0
|
|
|
|
__declspec(dllexport) static void configureLegoWorldPresenter(MxS32 p_legoWorldPresenterQuality);
|
|
|
|
// FUNCTION: LEGO1 0x10066630
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x100f0608
|
|
return "LegoWorldPresenter";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10066640
|
|
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, LegoWorldPresenter::ClassName()) || LegoEntityPresenter::IsA(p_name);
|
|
}
|
|
|
|
virtual void ReadyTickle() override; // vtable+0x18
|
|
virtual void StartingTickle() override; // vtable+0x1c
|
|
virtual void ParseExtra() override; // vtable+0x30
|
|
virtual MxResult StartAction(MxStreamController* p_controller, MxDSAction* p_action) override; // vtable+0x3c
|
|
virtual void VTable0x60(MxPresenter* p_presenter) override; // vtable+0x60
|
|
|
|
private:
|
|
undefined4 m_unk0x50;
|
|
};
|
|
|
|
#endif // LEGOWORLDPRESENTER_H
|