2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "AudioCommon.h"
|
2011-02-11 18:59:42 +00:00
|
|
|
#include "FileUtil.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
#include "Mixer.h"
|
2010-11-02 00:16:49 +00:00
|
|
|
#include "NullSoundStream.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
#include "DSoundStream.h"
|
2010-11-10 08:28:26 +00:00
|
|
|
#include "XAudio2Stream.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
#include "AOSoundStream.h"
|
2009-09-09 21:26:33 +00:00
|
|
|
#include "AlsaSoundStream.h"
|
2009-09-24 21:35:06 +00:00
|
|
|
#include "CoreAudioSoundStream.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
#include "OpenALStream.h"
|
2009-10-15 17:28:23 +00:00
|
|
|
#include "PulseAudioStream.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
namespace AudioCommon
|
|
|
|
{
|
2011-01-28 18:39:30 +00:00
|
|
|
SoundStream *InitSoundStream(CMixer *mixer, void *hWnd)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
std::string backend = ac_Config.sBackend;
|
2009-12-22 07:26:30 +00:00
|
|
|
if (backend == BACKEND_OPENAL && OpenALStream::isValid())
|
|
|
|
soundStream = new OpenALStream(mixer);
|
2011-01-18 00:04:29 +00:00
|
|
|
else if (backend == BACKEND_NULLSOUND && NullSound::isValid())
|
2011-01-28 18:39:30 +00:00
|
|
|
soundStream = new NullSound(mixer, hWnd);
|
2009-12-22 07:26:30 +00:00
|
|
|
else if (backend == BACKEND_DIRECTSOUND && DSound::isValid())
|
2011-01-28 18:39:30 +00:00
|
|
|
soundStream = new DSound(mixer, hWnd);
|
2011-01-18 00:04:29 +00:00
|
|
|
else if (backend == BACKEND_XAUDIO2 && XAudio2::isValid())
|
2010-11-10 08:28:26 +00:00
|
|
|
soundStream = new XAudio2(mixer);
|
2009-12-22 07:26:30 +00:00
|
|
|
else if (backend == BACKEND_AOSOUND && AOSound::isValid())
|
2009-09-30 06:49:08 +00:00
|
|
|
soundStream = new AOSound(mixer);
|
2009-12-22 07:26:30 +00:00
|
|
|
else if (backend == BACKEND_ALSA && AlsaSound::isValid())
|
2009-09-30 06:49:08 +00:00
|
|
|
soundStream = new AlsaSound(mixer);
|
2009-12-22 07:26:30 +00:00
|
|
|
else if (backend == BACKEND_COREAUDIO && CoreAudioSound::isValid())
|
|
|
|
soundStream = new CoreAudioSound(mixer);
|
|
|
|
else if (backend == BACKEND_PULSEAUDIO && PulseAudio::isValid())
|
2009-10-15 17:28:23 +00:00
|
|
|
soundStream = new PulseAudio(mixer);
|
2009-09-09 21:26:33 +00:00
|
|
|
|
|
|
|
if (soundStream != NULL)
|
|
|
|
{
|
2009-07-06 02:10:26 +00:00
|
|
|
ac_Config.Update();
|
2009-09-09 21:26:33 +00:00
|
|
|
if (soundStream->Start())
|
|
|
|
{
|
2011-02-11 18:59:42 +00:00
|
|
|
if (ac_Config.m_DumpAudio) {
|
|
|
|
char audio_file_name[255];
|
|
|
|
snprintf(audio_file_name, 255, "%saudiodump.wav", File::GetUserPath(D_DUMPAUDIO_IDX));
|
2011-02-11 21:30:53 +00:00
|
|
|
File::CreateFullPath(audio_file_name);
|
2011-02-11 18:59:42 +00:00
|
|
|
mixer->StartLogAudio(audio_file_name);
|
|
|
|
//soundStream->StartLogAudio(audio_file_name);
|
|
|
|
}
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
return soundStream;
|
|
|
|
}
|
2011-01-13 02:05:58 +00:00
|
|
|
PanicAlertT("Could not initialize backend %s.", backend.c_str());
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2011-01-13 02:05:58 +00:00
|
|
|
PanicAlertT("Sound backend %s is not valid.", backend.c_str());
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
delete soundStream;
|
2010-01-20 14:35:48 +00:00
|
|
|
soundStream = NULL;
|
2009-07-06 02:10:26 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShutdownSoundStream()
|
|
|
|
{
|
2009-12-22 07:26:30 +00:00
|
|
|
INFO_LOG(DSPHLE, "Shutting down sound stream");
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
if (soundStream)
|
|
|
|
{
|
|
|
|
soundStream->Stop();
|
2011-02-11 18:59:42 +00:00
|
|
|
if (ac_Config.m_DumpAudio)
|
|
|
|
soundStream->GetMixer()->StopLogAudio();
|
|
|
|
//soundStream->StopLogAudio();
|
2009-07-06 02:10:26 +00:00
|
|
|
delete soundStream;
|
|
|
|
soundStream = NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-02 18:21:20 +00:00
|
|
|
INFO_LOG(DSPHLE, "Done shutting down sound stream");
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> GetSoundBackends()
|
|
|
|
{
|
|
|
|
std::vector<std::string> backends;
|
|
|
|
|
2010-11-02 00:16:49 +00:00
|
|
|
if (NullSound::isValid())
|
|
|
|
backends.push_back(BACKEND_NULLSOUND);
|
2009-09-30 06:49:08 +00:00
|
|
|
if (DSound::isValid())
|
|
|
|
backends.push_back(BACKEND_DIRECTSOUND);
|
2010-11-10 08:28:26 +00:00
|
|
|
if (XAudio2::isValid())
|
|
|
|
backends.push_back(BACKEND_XAUDIO2);
|
2009-09-30 06:49:08 +00:00
|
|
|
if (OpenALStream::isValid())
|
|
|
|
backends.push_back(BACKEND_OPENAL);
|
2009-12-22 07:26:30 +00:00
|
|
|
if (AOSound::isValid())
|
|
|
|
backends.push_back(BACKEND_AOSOUND);
|
2009-09-30 06:49:08 +00:00
|
|
|
if (AlsaSound::isValid())
|
|
|
|
backends.push_back(BACKEND_ALSA);
|
2009-12-22 07:26:30 +00:00
|
|
|
if (CoreAudioSound::isValid())
|
|
|
|
backends.push_back(BACKEND_COREAUDIO);
|
2009-10-15 17:28:23 +00:00
|
|
|
if (PulseAudio::isValid())
|
|
|
|
backends.push_back(BACKEND_PULSEAUDIO);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
return backends;
|
|
|
|
}
|
2010-03-24 11:22:33 +00:00
|
|
|
|
|
|
|
bool UseJIT() {
|
|
|
|
return ac_Config.m_EnableJIT;
|
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|