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>
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
#ifndef MOTOCYCLE_H
|
|
#define MOTOCYCLE_H
|
|
|
|
#include "decomp.h"
|
|
#include "islepathactor.h"
|
|
|
|
// VTABLE: LEGO1 0x100d7090
|
|
// SIZE 0x16c
|
|
class Motocycle : public IslePathActor {
|
|
public:
|
|
Motocycle();
|
|
|
|
// FUNCTION: LEGO1 0x10035840
|
|
inline const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x100f38e8
|
|
return "Motorcycle";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10035850
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, Motocycle::ClassName()) || IslePathActor::IsA(p_name);
|
|
}
|
|
|
|
MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
|
|
void VTable0x70(float p_float) override; // vtable+0x70
|
|
MxLong HandleClick() override; // vtable+0xcc
|
|
MxLong HandleControl(LegoControlManagerEvent& p_param) override; // vtable+0xd4
|
|
MxLong HandleNotification19(MxType19NotificationParam&) override; // vtable+0xdc
|
|
void Exit() override; // vtable+0xe4
|
|
|
|
void FUN_10035e10();
|
|
|
|
// SYNTHETIC: LEGO1 0x100359d0
|
|
// Motocycle::`scalar deleting destructor'
|
|
|
|
private:
|
|
undefined m_unk0x160[4];
|
|
MxFloat m_unk0x164;
|
|
undefined m_unk0x168[4];
|
|
};
|
|
|
|
#endif // MOTOCYCLE_H
|