2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
// This audio backend uses XAudio2 via XAUDIO2_DLL
|
|
|
|
// It works on Windows 8+, where it is included as an OS component.
|
|
|
|
// This backend is always compiled, but only available if running on Win8+
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
#pragma once
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2011-03-15 23:09:12 +00:00
|
|
|
#include <memory>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-04-13 23:15:23 +00:00
|
|
|
#include "Common/Event.h"
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
#ifdef _WIN32
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2017-01-23 07:08:45 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
struct StreamingVoiceContext;
|
|
|
|
struct IXAudio2;
|
|
|
|
struct IXAudio2MasteringVoice;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class XAudio2 final : public SoundStream
|
2010-11-14 23:56:26 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
class Releaser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template <typename R>
|
|
|
|
void operator()(R* ptr)
|
|
|
|
{
|
|
|
|
ptr->Release();
|
|
|
|
}
|
|
|
|
};
|
2011-03-15 23:09:12 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<IXAudio2, Releaser> m_xaudio2;
|
|
|
|
std::unique_ptr<StreamingVoiceContext> m_voice_context;
|
|
|
|
IXAudio2MasteringVoice* m_mastering_voice;
|
2011-03-15 23:09:12 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
Common::Event m_sound_sync_event;
|
|
|
|
float m_volume;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
const bool m_cleanup_com;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static HMODULE m_xaudio2_dll;
|
|
|
|
static void* PXAudio2Create;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static bool InitLibrary();
|
2013-10-19 09:27:57 +00:00
|
|
|
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
XAudio2();
|
|
|
|
virtual ~XAudio2();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
bool Start() override;
|
|
|
|
void Stop() override;
|
2011-03-15 23:09:12 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Clear(bool mute) override;
|
|
|
|
void SetVolume(int volume) override;
|
2011-03-15 23:09:12 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static bool isValid() { return InitLibrary(); }
|
2010-11-14 23:56:26 +00:00
|
|
|
#endif
|
|
|
|
};
|