mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
bc5ca621a4
* Add ncc tool * Add symlink * Fixes * Try this * Try this * Try this * Try this * Add include path * Update style * Update style * Add more rules * Fix style * Update styles * Fix name parameter * Fix MxParam p * Fix m_unk0x pattern * Allow 4 digits for relative hex * Add missing offset * Fix some parameters * Fix some vtables * Fix more vtables * Update rules, fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * Fix last issue * Update readme * Update readme * Update CONTRIBUTING.md * Fix annotations * Rename * Update CONTRIBUTING.md * Update README.md
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#ifndef MXMUSICMANAGER_H
|
|
#define MXMUSICMANAGER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxaudiomanager.h"
|
|
|
|
// VTABLE: LEGO1 0x100dc930
|
|
// SIZE 0x58
|
|
class MxMusicManager : public MxAudioManager {
|
|
public:
|
|
MxMusicManager();
|
|
virtual ~MxMusicManager() override;
|
|
|
|
virtual void Destroy() override; // vtable+18
|
|
virtual void SetVolume(MxS32 p_volume) override; // vtable+2c
|
|
virtual MxResult Create(MxU32 p_frequencyMS, MxBool p_createThread); // vtable+30
|
|
|
|
inline MxBool GetMIDIInitialized() { return m_midiInitialized; }
|
|
|
|
void DeinitializeMIDI();
|
|
undefined4 FUN_100c09c0(MxU8* p_data, MxS32 p_loopCount);
|
|
void SetMultiplier(MxS32 p_multiplier);
|
|
|
|
private:
|
|
void Destroy(MxBool p_fromDestructor);
|
|
|
|
MxS32 CalculateVolume(MxS32 p_volume);
|
|
void SetMIDIVolume();
|
|
|
|
HMIDISTRM m_midiStreamH; // 0x30
|
|
MxBool m_midiInitialized; // 0x34
|
|
undefined4 m_unk0x38; // 0x38
|
|
undefined4 m_unk0x3c; // 0x3c
|
|
undefined4 m_unk0x40; // 0x40
|
|
undefined4 m_unk0x44; // 0x44
|
|
undefined4 m_unk0x48; // 0x48
|
|
MIDIHDR* m_midiHdrP; // 0x4c
|
|
MxS32 m_multiplier; // 0x50
|
|
DWORD m_midiVolume; // 0x54
|
|
|
|
protected:
|
|
void Init();
|
|
void InitData();
|
|
};
|
|
|
|
#endif // MXMUSICMANAGER_H
|