mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
* Refactor JukeBox, add enum for music (#988) * Refactor JukeBox, add enum for music * add BETA annotation * Fix BETA annotation * Fix BETA annotation * Fix * Consolidate state and building entity classes (#989) * Match LegoCacheSoundManager::FindSoundByKey (#991) * Match LegoCacheSoundManager::FindSoundByKey * Remove space * Implement/match LegoActor::Mute (#992) * Add more annotations to ISLE (#990) * Minor improvements in ISLE.EXE * Add more annotations * Fix * Comment out * Fix lint * Add enum for actor IDs (#993) * Implement/match LegoEntity::ClickAnimation (#994) * Implement/match LegoEntity::VTable0x38 * Update names * Implement/match LegoEntity::SwitchSound / SwitchMove / SwitchColor / SwitchMood (#995) * Implement/match LegoEntity::SwitchSound * Name * Name * Implement/match LegoEntity::SwitchMove * Mood * Implement/match LegoCharacterManager::SwitchColor (#996) * Implement/match IslePathActor::Exit (#997) * Implement/match IslePathActor::Exit * Name * Name * Partially fix vector interface * Revert "Partially fix vector interface" This reverts commit 6e7a1e2b08fd82012b28be3054eeff65428eb4d1. * Revert "Revert "Partially fix vector interface"" This reverts commit e3860e3c9fa1f8937b702d6c81d6e3bb4dadecc6. * Fix * Remove some COMPAT_MODE * Implement/match Ambulance::Notify (#998) * Update isleapp.cpp * Streamline MxVideoParamFlags (#999) * Streamline MxVideoParamFlags * Remove this-> from MxOmniCreateFlags --------- Co-authored-by: MS <disinvite@users.noreply.github.com>
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
#ifndef LEGOCARBUILDPRESENTER_H
|
|
#define LEGOCARBUILDPRESENTER_H
|
|
|
|
#include "anim/legoanim.h"
|
|
#include "legoanimpresenter.h"
|
|
|
|
// VTABLE: LEGO1 0x100d99e0
|
|
// SIZE 0x150
|
|
class LegoCarBuildAnimPresenter : public LegoAnimPresenter {
|
|
public:
|
|
LegoCarBuildAnimPresenter();
|
|
~LegoCarBuildAnimPresenter() override; // vtable+0x00
|
|
|
|
// FUNCTION: BETA10 0x10073290
|
|
static const char* HandlerClassName()
|
|
{
|
|
// STRING: LEGO1 0x100f05ec
|
|
return "LegoCarBuildAnimPresenter";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10078510
|
|
// FUNCTION: BETA10 0x10073260
|
|
inline const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
return HandlerClassName();
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10078520
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, LegoCarBuildAnimPresenter::ClassName()) || LegoAnimPresenter::IsA(p_name);
|
|
}
|
|
|
|
void ReadyTickle() override; // vtable+0x18
|
|
void StreamingTickle() override; // vtable+0x20
|
|
void RepeatingTickle() override; // vtable+0x24
|
|
void EndAction() override; // vtable+0x40
|
|
void PutFrame() override; // vtable+0x6c
|
|
|
|
// SYNTHETIC: LEGO1 0x10078660
|
|
// LegoCarBuildAnimPresenter::`scalar deleting destructor'
|
|
|
|
private:
|
|
undefined2 m_unk0xbc; // 0xbc
|
|
undefined2 m_unk0xbe; // 0xbe
|
|
undefined2 m_unk0xc0; // 0xc0
|
|
undefined4 m_unk0xc4; // 0xc4
|
|
LegoAnim m_unk0xc8; // 0xc8
|
|
MxMatrix m_unk0xe0; // 0xe0
|
|
undefined4 m_unk0x128; // 0x128
|
|
undefined4 m_unk0x12c; // 0x12c
|
|
undefined4 m_unk0x130; // 0x130
|
|
undefined4 m_unk0x134; // 0x134
|
|
undefined4 m_unk0x138; // 0x138
|
|
undefined4 m_unk0x13c; // 0x13c
|
|
undefined4 m_unk0x140; // 0x140
|
|
MxS32 m_unk0x144; // 0x144
|
|
MxS32 m_unk0x148; // 0x148
|
|
undefined4 m_unk0x14c; // 0x14c
|
|
};
|
|
|
|
#endif // LEGOCARBUILDPRESENTER_H
|