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>
88 lines
2.1 KiB
C++
88 lines
2.1 KiB
C++
#ifndef JUKEBOX_H
|
|
#define JUKEBOX_H
|
|
|
|
#include "decomp.h"
|
|
#include "legogamestate.h"
|
|
#include "legostate.h"
|
|
#include "legoworld.h"
|
|
|
|
class LegoControlManagerEvent;
|
|
|
|
// VTABLE: LEGO1 0x100d4a90
|
|
// SIZE 0x10
|
|
class JukeBoxState : public LegoState {
|
|
public:
|
|
enum Music {
|
|
e_pasquell = 0,
|
|
e_right,
|
|
e_decal,
|
|
e_wallis,
|
|
e_nelson,
|
|
e_torpedos
|
|
};
|
|
|
|
// FUNCTION: LEGO1 0x1000f310
|
|
inline const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x100f02bc
|
|
return "JukeBoxState";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1000f320
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, JukeBoxState::ClassName()) || LegoState::IsA(p_name);
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1000f300
|
|
MxBool IsSerializable() override { return FALSE; } // vtable+0x14
|
|
|
|
// SYNTHETIC: LEGO1 0x1000f3d0
|
|
// JukeBoxState::`scalar deleting destructor'
|
|
|
|
Music m_music; // 0x08
|
|
MxU32 m_active; // 0x0c
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d8958
|
|
// SIZE 0x104
|
|
class JukeBox : public LegoWorld {
|
|
public:
|
|
JukeBox();
|
|
~JukeBox() override;
|
|
|
|
MxLong Notify(MxParam& p_param) override; // vtable+0x04
|
|
MxResult Tickle() override; // vtable+0x08
|
|
|
|
// FUNCTION: LEGO1 0x1005d6f0
|
|
inline const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x100f02cc
|
|
return "JukeBox";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1005d700
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, JukeBox::ClassName()) || LegoWorld::IsA(p_name);
|
|
}
|
|
|
|
MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
|
|
void ReadyWorld() override; // vtable+0x50
|
|
MxBool VTable0x5c() override; // vtable+0x5c
|
|
MxBool Escape() override; // vtable+0x64
|
|
void Enable(MxBool p_enable) override; // vtable+0x68
|
|
|
|
// SYNTHETIC: LEGO1 0x1005d810
|
|
// JukeBox::`scalar deleting destructor'
|
|
|
|
private:
|
|
MxBool HandleControl(LegoControlManagerEvent& p_param);
|
|
|
|
LegoGameState::Area m_destLocation; // 0xf8
|
|
JukeBoxState* m_state; // 0xfc
|
|
undefined2 m_unk0x100; // 0x100
|
|
};
|
|
|
|
#endif // JUKEBOX_H
|