2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
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
|
|
|
|
2009-03-30 20:25:36 +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
|
2013-06-09 07:43:27 +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
|
2013-06-09 07:43:27 +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-03-30 17:24:55 +00:00
|
|
|
#endif
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class OpenALStream final : public SoundStream
|
2009-03-27 15:24:22 +00:00
|
|
|
{
|
2017-06-26 06:52:51 +00:00
|
|
|
#ifdef _WIN32
|
2009-03-27 15:24:22 +00:00
|
|
|
public:
|
2021-09-04 04:43:19 +00:00
|
|
|
OpenALStream() = default;
|
2017-10-21 23:23:40 +00:00
|
|
|
~OpenALStream() override;
|
|
|
|
bool Init() override;
|
2015-05-24 10:02:30 +00:00
|
|
|
void SetVolume(int volume) override;
|
2017-10-21 23:23:40 +00:00
|
|
|
bool SetRunning(bool running) override;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2021-08-07 23:23:58 +00:00
|
|
|
static bool IsValid();
|
2017-06-26 06:47:15 +00:00
|
|
|
|
2009-03-27 15:24:22 +00:00
|
|
|
private:
|
2021-08-07 21:15:45 +00:00
|
|
|
void SoundLoop();
|
|
|
|
|
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
|
|
|
std::vector<short> m_realtime_buffer;
|
2021-09-04 04:43:19 +00:00
|
|
|
std::array<ALuint, OAL_BUFFERS> m_buffers{};
|
|
|
|
ALuint m_source = 0;
|
|
|
|
ALfloat m_volume = 1;
|
2013-01-12 13:05:30 +00:00
|
|
|
|
2017-06-26 06:52:51 +00:00
|
|
|
#endif // _WIN32
|
2009-03-27 15:24:22 +00:00
|
|
|
};
|