2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2014-08-13 23:14:35 -06:00
|
|
|
#include <thread>
|
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-04-13 17:15:23 -06:00
|
|
|
#include "Common/Event.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/HW/AudioInterface.h"
|
|
|
|
#include "Core/HW/SystemTimers.h"
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2009-03-30 14:25:36 -06:00
|
|
|
#ifdef _WIN32
|
2020-04-29 05:07:51 -06:00
|
|
|
#include <al.h>
|
|
|
|
#include <alc.h>
|
|
|
|
#include <alext.h>
|
2010-06-01 16:23:16 -06:00
|
|
|
|
2017-06-17 04:43:37 -06:00
|
|
|
// OpenAL requires a minimum of two buffers, three or more recommended
|
|
|
|
#define OAL_BUFFERS 3
|
|
|
|
#define OAL_MAX_FRAMES 4096
|
2013-06-09 01:43:27 -06:00
|
|
|
#define STEREO_CHANNELS 2
|
|
|
|
#define SURROUND_CHANNELS 6 // number of channels in surround mode
|
|
|
|
#define SIZE_SHORT 2
|
2016-10-27 14:47:13 -06:00
|
|
|
#define SIZE_INT32 4
|
2013-06-09 01:43:27 -06: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 08:57:34 -06:00
|
|
|
#define FRAME_SURROUND_SHORT SURROUND_CHANNELS* SIZE_SHORT
|
2016-10-27 14:47:13 -06:00
|
|
|
#define FRAME_SURROUND_INT32 SURROUND_CHANNELS* SIZE_INT32
|
2017-06-26 00:52:51 -06:00
|
|
|
#endif // _WIN32
|
2016-10-27 14:47:13 -06:00
|
|
|
|
2017-03-30 14:52:38 -06: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 14:47:13 -06: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 14:52:38 -06:00
|
|
|
#ifndef AL_FORMAT_STEREO32
|
2016-10-27 14:47:13 -06:00
|
|
|
#define AL_FORMAT_STEREO32 0x1203
|
2009-03-30 11:24:55 -06:00
|
|
|
#endif
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2014-03-18 08:37:45 -06:00
|
|
|
class OpenALStream final : public SoundStream
|
2009-03-27 09:24:22 -06:00
|
|
|
{
|
2017-06-26 00:52:51 -06:00
|
|
|
#ifdef _WIN32
|
2009-03-27 09:24:22 -06:00
|
|
|
public:
|
2021-09-03 22:43:19 -06:00
|
|
|
OpenALStream() = default;
|
2017-10-21 17:23:40 -06:00
|
|
|
~OpenALStream() override;
|
|
|
|
bool Init() override;
|
2015-05-24 04:02:30 -06:00
|
|
|
void SetVolume(int volume) override;
|
2017-10-21 17:23:40 -06:00
|
|
|
bool SetRunning(bool running) override;
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2021-08-07 17:23:58 -06:00
|
|
|
static bool IsValid();
|
2017-06-26 00:47:15 -06:00
|
|
|
|
2009-03-27 09:24:22 -06:00
|
|
|
private:
|
2021-08-07 15:15:45 -06:00
|
|
|
void SoundLoop();
|
|
|
|
|
2017-06-17 14:16:32 -06:00
|
|
|
std::thread m_thread;
|
2016-08-05 08:04:39 -06:00
|
|
|
Common::Flag m_run_thread;
|
2015-05-09 21:48:22 -06:00
|
|
|
|
2017-06-17 14:16:32 -06:00
|
|
|
std::vector<short> m_realtime_buffer;
|
2021-09-03 22:43:19 -06:00
|
|
|
std::array<ALuint, OAL_BUFFERS> m_buffers{};
|
|
|
|
ALuint m_source = 0;
|
|
|
|
ALfloat m_volume = 1;
|
2013-01-12 06:05:30 -07:00
|
|
|
|
2017-06-26 00:52:51 -06:00
|
|
|
#endif // _WIN32
|
2009-03-27 09:24:22 -06:00
|
|
|
};
|