metaforce/Runtime/MP1/CAudioStateWin.cpp

38 lines
1.0 KiB
C++
Raw Normal View History

2016-09-14 05:45:46 +00:00
#include "CAudioStateWin.hpp"
#include "Audio/CSfxManager.hpp"
2016-09-14 05:45:46 +00:00
#include "CArchitectureMessage.hpp"
#include "CArchitectureQueue.hpp"
#include "GameGlobalObjects.hpp"
#include "CGameState.hpp"
#include "MP1.hpp"
2016-09-14 05:45:46 +00:00
namespace urde
{
namespace MP1
{
2016-09-14 05:45:46 +00:00
CIOWin::EMessageReturn CAudioStateWin::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue)
{
CMain* m = static_cast<CMain*>(g_Main);
2016-09-14 05:45:46 +00:00
const EArchMsgType msgType = msg.GetType();
if (msgType == EArchMsgType::SetGameState)
{
2017-01-23 07:22:17 +00:00
CSfxManager::KillAll(CSfxManager::ESfxChannels::Game);
CSfxManager::TurnOnChannel(CSfxManager::ESfxChannels::Game);
2016-09-14 05:45:46 +00:00
}
else if (msgType == EArchMsgType::QuitGameplay)
{
2016-09-17 06:40:45 +00:00
if (g_GameState->GetWorldTransitionManager()->GetTransType() == CWorldTransManager::ETransType::Disabled ||
m->GetFlowState() != EFlowState::Zero)
2016-09-14 05:45:46 +00:00
{
2017-01-23 07:22:17 +00:00
CSfxManager::SetChannel(CSfxManager::ESfxChannels::Default);
CSfxManager::KillAll(CSfxManager::ESfxChannels::Game);
2016-09-14 05:45:46 +00:00
}
}
return EMessageReturn::Normal;
}
}
}