mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
9e686e2a87
* cmake+ci: run clang-tidy * Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def * Add initial .clang-tidy and fixes * fix file perms * Comment out DESCRIPTION * Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def * Looks like clang is allergic to the libs in the directx5 SDK * Update .clang-tidy * Fix typo in .clang-tidy * Attempt to generate an action error * Revert "Attempt to generate an action error" This reverts commit 96c4c65fedbc4102837f4bcbbb9ee83a7d14cba3. * cmake: test with -Wparentheses + optionally with -Werror * ci: -k0 is a Ninja argument * Use -Werror only for msys2 builds * cmake: only emit warnings for specific warnings * cmake: and don't do -Werror/-WX anymore * Fix warnings * Fix mingw warnings --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
#ifndef MXMUSICMANAGER_H
|
|
#define MXMUSICMANAGER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxaudiomanager.h"
|
|
|
|
#include <windows.h>
|
|
|
|
// VTABLE: LEGO1 0x100dc930
|
|
// SIZE 0x58
|
|
class MxMusicManager : public MxAudioManager {
|
|
public:
|
|
MxMusicManager();
|
|
~MxMusicManager() override;
|
|
|
|
void Destroy() override; // vtable+18
|
|
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; }
|
|
inline void GetMIDIVolume(DWORD& p_volume)
|
|
{
|
|
if (midiOutGetVolume((HMIDIOUT) m_midiStreamH, &p_volume)) {
|
|
p_volume = CalculateVolume(100);
|
|
}
|
|
}
|
|
|
|
MxResult ResetStream();
|
|
void ResetBuffer();
|
|
MxResult InitializeMIDI(MxU8* p_data, MxS32 p_loopCount);
|
|
void DeinitializeMIDI();
|
|
void SetMultiplier(MxS32 p_multiplier);
|
|
|
|
private:
|
|
void Destroy(MxBool p_fromDestructor);
|
|
|
|
MxS32 CalculateVolume(MxS32 p_volume);
|
|
void SetMIDIVolume();
|
|
|
|
static void CALLBACK MidiCallbackProc(HDRVR p_hdrvr, UINT p_uMsg, DWORD p_dwUser, DWORD p_dw1, DWORD p_dw2);
|
|
|
|
HMIDISTRM m_midiStreamH; // 0x30
|
|
MxBool m_midiInitialized; // 0x34
|
|
MxU32 m_bufferSize; // 0x38
|
|
MxU32 m_bufferCurrentSize; // 0x3c
|
|
MxU8* m_bufferOffset; // 0x40
|
|
MxU8* m_bufferCurrentOffset; // 0x44
|
|
MxU32 m_loopCount; // 0x48
|
|
MIDIHDR* m_midiHdrP; // 0x4c
|
|
MxS32 m_multiplier; // 0x50
|
|
DWORD m_midiVolume; // 0x54
|
|
|
|
// SYNTHETIC: LEGO1 0x100c0610
|
|
// MxMusicManager::`scalar deleting destructor'
|
|
|
|
protected:
|
|
void Init();
|
|
void InitData();
|
|
};
|
|
|
|
#endif // MXMUSICMANAGER_H
|