isle/LEGO1/mxmusicmanager.cpp

147 lines
2.7 KiB
C++
Raw Normal View History

#include "mxmusicmanager.h"
2023-10-24 19:38:27 -04:00
2023-10-06 09:00:00 -04:00
#include "mxomni.h"
2023-10-24 19:38:27 -04:00
#include "mxticklemanager.h"
2023-10-06 09:00:00 -04:00
#include <windows.h>
DECOMP_SIZE_ASSERT(MxMusicManager, 0x58);
2023-10-06 09:00:00 -04:00
// OFFSET: LEGO1 0x100c05a0
MxMusicManager::MxMusicManager()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
Init();
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c0630
MxMusicManager::~MxMusicManager()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
Destroy(TRUE);
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c0b20
void MxMusicManager::DeinitializeMIDI()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
m_criticalSection.Enter();
if (m_MIDIInitialized) {
m_MIDIInitialized = FALSE;
midiStreamStop(m_MIDIStreamH);
midiOutUnprepareHeader((HMIDIOUT) m_MIDIStreamH, m_MIDIHdrP, sizeof(MIDIHDR));
midiOutSetVolume((HMIDIOUT) m_MIDIStreamH, m_MIDIVolume);
midiStreamClose(m_MIDIStreamH);
delete m_MIDIHdrP;
InitData();
}
m_criticalSection.Leave();
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c0690
void MxMusicManager::Init()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
m_multiplier = 100;
InitData();
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c06a0
void MxMusicManager::InitData()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
m_MIDIStreamH = 0;
m_MIDIInitialized = FALSE;
m_unk38 = 0;
m_unk3c = 0;
m_unk40 = 0;
m_unk44 = 0;
m_unk48 = 0;
m_MIDIHdrP = NULL;
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c06c0
void MxMusicManager::Destroy(MxBool p_fromDestructor)
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
if (m_thread) {
m_thread->Terminate();
if (m_thread) {
delete m_thread;
}
}
else {
TickleManager()->UnregisterClient(this);
}
m_criticalSection.Enter();
DeinitializeMIDI();
Init();
m_criticalSection.Leave();
if (!p_fromDestructor) {
MxAudioManager::Destroy();
}
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c0930
void MxMusicManager::Destroy()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
Destroy(FALSE);
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c09a0
MxS32 MxMusicManager::CalculateVolume(MxS32 p_volume)
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
MxS32 result = (p_volume * 0xffff) / 100;
return (result << 0x10) | result;
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c07f0
void MxMusicManager::SetMIDIVolume()
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
MxS32 result = (m_volume * m_multiplier) / 0x64;
HMIDISTRM streamHandle = m_MIDIStreamH;
if (streamHandle) {
MxS32 volume = CalculateVolume(result);
midiOutSetVolume((HMIDIOUT) streamHandle, volume);
}
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c0940
void MxMusicManager::SetVolume(MxS32 p_volume)
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
MxAudioManager::SetVolume(p_volume);
m_criticalSection.Enter();
SetMIDIVolume();
m_criticalSection.Leave();
2023-10-06 09:00:00 -04:00
}
// OFFSET: LEGO1 0x100c0840
MxResult MxMusicManager::Create(MxU32 p_frequencyMS, MxBool p_createThread)
2023-10-06 09:00:00 -04:00
{
2023-10-24 19:38:27 -04:00
MxResult status = FAILURE;
MxBool locked = FALSE;
if (MxAudioManager::InitPresenters() == SUCCESS) {
if (p_createThread) {
m_criticalSection.Enter();
locked = TRUE;
m_thread = new MxTickleThread(this, p_frequencyMS);
if (!m_thread || m_thread->Start(0, 0) != SUCCESS)
goto done;
}
else
TickleManager()->RegisterClient(this, p_frequencyMS);
status = SUCCESS;
}
2023-10-06 09:00:00 -04:00
done:
2023-10-24 19:38:27 -04:00
if (status != SUCCESS)
Destroy();
2023-10-06 09:00:00 -04:00
2023-10-24 19:38:27 -04:00
if (locked)
m_criticalSection.Leave();
2023-10-06 09:00:00 -04:00
2023-10-24 19:38:27 -04:00
return status;
}