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.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-08-14 05:14:35 +00:00
|
|
|
#include <thread>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-04-13 23:15:23 +00:00
|
|
|
#include "Common/Event.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/HW/AudioInterface.h"
|
|
|
|
#include "Core/HW/SystemTimers.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2020-04-29 11:07:51 +00:00
|
|
|
#include <al.h>
|
|
|
|
#include <alc.h>
|
|
|
|
#include <alext.h>
|
2010-06-01 22:23:16 +00:00
|
|
|
|
2017-06-17 10:43:37 +00:00
|
|
|
// OpenAL requires a minimum of two buffers, three or more recommended
|
|
|
|
#define OAL_BUFFERS 3
|
|
|
|
#define OAL_MAX_FRAMES 4096
|
2014-02-17 04:51:41 +00:00
|
|
|
#define STEREO_CHANNELS 2
|
|
|
|
#define SURROUND_CHANNELS 6 // number of channels in surround mode
|
|
|
|
#define SIZE_SHORT 2
|
2016-10-27 20:47:13 +00:00
|
|
|
#define SIZE_INT32 4
|
2014-02-17 04:51:41 +00:00
|
|
|
#define SIZE_FLOAT 4 // size of a float in bytes
|
|
|
|
#define FRAME_STEREO_SHORT STEREO_CHANNELS* SIZE_SHORT
|
|
|
|
#define FRAME_SURROUND_FLOAT SURROUND_CHANNELS* SIZE_FLOAT
|
2015-09-11 14:57:34 +00:00
|
|
|
#define FRAME_SURROUND_SHORT SURROUND_CHANNELS* SIZE_SHORT
|
2016-10-27 20:47:13 +00:00
|
|
|
#define FRAME_SURROUND_INT32 SURROUND_CHANNELS* SIZE_INT32
|
2017-06-26 06:52:51 +00:00
|
|
|
#endif // _WIN32
|
2016-10-27 20:47:13 +00:00
|
|
|
|
2017-03-30 20:52:38 +00:00
|
|
|
// From AL_EXT_float32
|
|
|
|
#ifndef AL_FORMAT_STEREO_FLOAT32
|
|
|
|
#define AL_FORMAT_STEREO_FLOAT32 0x10011
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// From AL_EXT_MCFORMATS
|
|
|
|
#ifndef AL_FORMAT_51CHN16
|
|
|
|
#define AL_FORMAT_51CHN16 0x120B
|
|
|
|
#endif
|
|
|
|
#ifndef AL_FORMAT_51CHN32
|
|
|
|
#define AL_FORMAT_51CHN32 0x120C
|
|
|
|
#endif
|
|
|
|
|
2016-10-27 20:47:13 +00:00
|
|
|
// Only X-Fi on Windows supports the alext AL_FORMAT_STEREO32 alext for now,
|
|
|
|
// but it is not documented or in "OpenAL/include/al.h".
|
2017-03-30 20:52:38 +00:00
|
|
|
#ifndef AL_FORMAT_STEREO32
|
2016-10-27 20:47:13 +00:00
|
|
|
#define AL_FORMAT_STEREO32 0x1203
|
2009-07-06 02:10:26 +00:00
|
|
|
#endif
|
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class OpenALStream final : public SoundStream
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2017-06-26 06:52:51 +00:00
|
|
|
#ifdef _WIN32
|
2009-07-06 02:10:26 +00:00
|
|
|
public:
|
2017-06-17 20:16:32 +00:00
|
|
|
OpenALStream() : m_source(0) {}
|
2017-10-21 23:23:40 +00:00
|
|
|
~OpenALStream() override;
|
|
|
|
bool Init() override;
|
2015-05-24 10:02:30 +00:00
|
|
|
void SoundLoop() override;
|
|
|
|
void SetVolume(int volume) override;
|
2017-10-21 23:23:40 +00:00
|
|
|
bool SetRunning(bool running) override;
|
2015-05-24 10:02:30 +00:00
|
|
|
void Update() override;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2017-06-26 06:47:15 +00:00
|
|
|
static bool isValid();
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
private:
|
2017-06-17 20:16:32 +00:00
|
|
|
std::thread m_thread;
|
2016-08-05 14:04:39 +00:00
|
|
|
Common::Flag m_run_thread;
|
2015-05-10 03:48:22 +00:00
|
|
|
|
2017-06-17 20:16:32 +00:00
|
|
|
Common::Event m_sound_sync_event;
|
2013-01-09 11:57:32 +00:00
|
|
|
|
2017-06-17 20:16:32 +00:00
|
|
|
std::vector<short> m_realtime_buffer;
|
|
|
|
std::array<ALuint, OAL_BUFFERS> m_buffers;
|
|
|
|
ALuint m_source;
|
|
|
|
ALfloat m_volume;
|
2013-01-12 13:05:30 +00:00
|
|
|
|
2017-06-26 06:52:51 +00:00
|
|
|
#endif // _WIN32
|
2009-07-06 02:10:26 +00:00
|
|
|
};
|