2012-03-23 11:05:17 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-03-23 11:05:17 +01:00
|
|
|
OpenAL support based on work by:
|
|
|
|
Copyright (C) 2011 Sebastian 'Bahamada' Rühl
|
|
|
|
Copyright (C) 2011 Cyriaque 'Cisoun' Skrapits <cysoun@gmail.com>
|
|
|
|
Copyright (C) 2011 Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2012-03-23 11:05:17 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-03-23 11:05:17 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-03-23 11:05:17 +01:00
|
|
|
with this program; ifnot, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sound_openal.h"
|
|
|
|
|
2012-03-24 22:16:09 +01:00
|
|
|
#if defined(_WIN32)
|
2012-03-23 11:05:17 +01:00
|
|
|
#include <al.h>
|
|
|
|
#include <alc.h>
|
2012-03-24 22:16:09 +01:00
|
|
|
//#include <alext.h>
|
2012-03-23 11:05:17 +01:00
|
|
|
#elif defined(__APPLE__)
|
2020-09-09 19:12:03 +02:00
|
|
|
#define OPENAL_DEPRECATED
|
2012-03-23 11:05:17 +01:00
|
|
|
#include <OpenAL/al.h>
|
|
|
|
#include <OpenAL/alc.h>
|
2012-07-25 15:56:09 +02:00
|
|
|
//#include <OpenAL/alext.h>
|
2012-03-23 11:05:17 +01:00
|
|
|
#else
|
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
|
|
|
#include <AL/alext.h>
|
|
|
|
#endif
|
2017-09-23 09:38:22 +02:00
|
|
|
#include <cmath>
|
2012-03-23 11:05:17 +01:00
|
|
|
#include <vorbis/vorbisfile.h>
|
2017-08-19 14:25:35 +02:00
|
|
|
#include <cassert>
|
2012-03-23 11:05:17 +01:00
|
|
|
#include "log.h"
|
2012-06-17 01:40:36 +02:00
|
|
|
#include "util/numeric.h" // myrand()
|
|
|
|
#include "porting.h"
|
2012-06-17 00:29:13 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <fstream>
|
2017-06-04 21:00:04 +02:00
|
|
|
#include <unordered_map>
|
2018-03-23 15:31:43 +01:00
|
|
|
#include <unordered_set>
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
#define BUFFER_SIZE 30000
|
|
|
|
|
2018-03-23 15:31:43 +01:00
|
|
|
std::shared_ptr<SoundManagerSingleton> g_sound_manager_singleton;
|
|
|
|
|
|
|
|
typedef std::unique_ptr<ALCdevice, void (*)(ALCdevice *p)> unique_ptr_alcdevice;
|
|
|
|
typedef std::unique_ptr<ALCcontext, void(*)(ALCcontext *p)> unique_ptr_alccontext;
|
|
|
|
|
|
|
|
static void delete_alcdevice(ALCdevice *p)
|
|
|
|
{
|
|
|
|
if (p)
|
|
|
|
alcCloseDevice(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void delete_alccontext(ALCcontext *p)
|
|
|
|
{
|
|
|
|
if (p) {
|
|
|
|
alcMakeContextCurrent(nullptr);
|
|
|
|
alcDestroyContext(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-23 11:05:17 +01:00
|
|
|
static const char *alErrorString(ALenum err)
|
|
|
|
{
|
|
|
|
switch (err) {
|
|
|
|
case AL_NO_ERROR:
|
|
|
|
return "no error";
|
|
|
|
case AL_INVALID_NAME:
|
|
|
|
return "invalid name";
|
|
|
|
case AL_INVALID_ENUM:
|
|
|
|
return "invalid enum";
|
|
|
|
case AL_INVALID_VALUE:
|
|
|
|
return "invalid value";
|
|
|
|
case AL_INVALID_OPERATION:
|
|
|
|
return "invalid operation";
|
|
|
|
case AL_OUT_OF_MEMORY:
|
|
|
|
return "out of memory";
|
|
|
|
default:
|
|
|
|
return "<unknown OpenAL error>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
static ALenum warn_if_error(ALenum err, const char *desc)
|
|
|
|
{
|
|
|
|
if(err == AL_NO_ERROR)
|
|
|
|
return err;
|
2015-10-14 07:26:03 +02:00
|
|
|
warningstream<<desc<<": "<<alErrorString(err)<<std::endl;
|
2012-03-23 14:29:30 +01:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2012-03-23 11:05:17 +01:00
|
|
|
void f3_set(ALfloat *f3, v3f v)
|
|
|
|
{
|
|
|
|
f3[0] = v.X;
|
|
|
|
f3[1] = v.Y;
|
|
|
|
f3[2] = v.Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SoundBuffer
|
|
|
|
{
|
2012-03-23 14:29:30 +01:00
|
|
|
ALenum format;
|
|
|
|
ALsizei freq;
|
|
|
|
ALuint buffer_id;
|
2012-03-23 11:05:17 +01:00
|
|
|
std::vector<char> buffer;
|
|
|
|
};
|
|
|
|
|
2015-11-14 03:00:52 +01:00
|
|
|
SoundBuffer *load_opened_ogg_file(OggVorbis_File *oggFile,
|
|
|
|
const std::string &filename_for_logging)
|
2012-03-23 11:05:17 +01:00
|
|
|
{
|
|
|
|
int endian = 0; // 0 for Little-Endian, 1 for Big-Endian
|
|
|
|
int bitStream;
|
|
|
|
long bytes;
|
|
|
|
char array[BUFFER_SIZE]; // Local fixed size array
|
|
|
|
vorbis_info *pInfo;
|
|
|
|
|
|
|
|
SoundBuffer *snd = new SoundBuffer;
|
|
|
|
|
|
|
|
// Get some information about the OGG file
|
2015-11-14 03:00:52 +01:00
|
|
|
pInfo = ov_info(oggFile, -1);
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
// Check the number of channels... always use 16-bit samples
|
|
|
|
if(pInfo->channels == 1)
|
|
|
|
snd->format = AL_FORMAT_MONO16;
|
|
|
|
else
|
|
|
|
snd->format = AL_FORMAT_STEREO16;
|
|
|
|
|
|
|
|
// The frequency of the sampling rate
|
|
|
|
snd->freq = pInfo->rate;
|
|
|
|
|
|
|
|
// Keep reading until all is read
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Read up to a buffer's worth of decoded sound data
|
2015-11-14 03:00:52 +01:00
|
|
|
bytes = ov_read(oggFile, array, BUFFER_SIZE, endian, 2, 1, &bitStream);
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
if(bytes < 0)
|
|
|
|
{
|
2015-11-14 03:00:52 +01:00
|
|
|
ov_clear(oggFile);
|
|
|
|
infostream << "Audio: Error decoding "
|
|
|
|
<< filename_for_logging << std::endl;
|
2016-07-28 09:56:22 +02:00
|
|
|
delete snd;
|
2018-03-23 15:31:43 +01:00
|
|
|
return nullptr;
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Append to end of buffer
|
|
|
|
snd->buffer.insert(snd->buffer.end(), array, array + bytes);
|
|
|
|
} while (bytes > 0);
|
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
alGenBuffers(1, &snd->buffer_id);
|
|
|
|
alBufferData(snd->buffer_id, snd->format,
|
2012-03-23 11:05:17 +01:00
|
|
|
&(snd->buffer[0]), snd->buffer.size(),
|
|
|
|
snd->freq);
|
|
|
|
|
|
|
|
ALenum error = alGetError();
|
|
|
|
|
|
|
|
if(error != AL_NO_ERROR){
|
2018-03-23 15:31:43 +01:00
|
|
|
infostream << "Audio: OpenAL error: " << alErrorString(error)
|
|
|
|
<< "preparing sound buffer" << std::endl;
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
|
|
|
|
2020-04-08 20:13:23 +02:00
|
|
|
//infostream << "Audio file "
|
|
|
|
// << filename_for_logging << " loaded" << std::endl;
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
// Clean up!
|
2015-11-14 03:00:52 +01:00
|
|
|
ov_clear(oggFile);
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
return snd;
|
|
|
|
}
|
|
|
|
|
2015-11-14 03:00:52 +01:00
|
|
|
SoundBuffer *load_ogg_from_file(const std::string &path)
|
|
|
|
{
|
|
|
|
OggVorbis_File oggFile;
|
|
|
|
|
|
|
|
// Try opening the given file.
|
|
|
|
// This requires libvorbis >= 1.3.2, as
|
|
|
|
// previous versions expect a non-const char *
|
|
|
|
if (ov_fopen(path.c_str(), &oggFile) != 0) {
|
|
|
|
infostream << "Audio: Error opening " << path
|
|
|
|
<< " for decoding" << std::endl;
|
2018-03-23 15:31:43 +01:00
|
|
|
return nullptr;
|
2015-11-14 03:00:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return load_opened_ogg_file(&oggFile, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BufferSource {
|
|
|
|
const char *buf;
|
|
|
|
size_t cur_offset;
|
|
|
|
size_t len;
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t buffer_sound_read_func(void *ptr, size_t size, size_t nmemb, void *datasource)
|
|
|
|
{
|
|
|
|
BufferSource *s = (BufferSource *)datasource;
|
|
|
|
size_t copied_size = MYMIN(s->len - s->cur_offset, size);
|
|
|
|
memcpy(ptr, s->buf + s->cur_offset, copied_size);
|
|
|
|
s->cur_offset += copied_size;
|
|
|
|
return copied_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int buffer_sound_seek_func(void *datasource, ogg_int64_t offset, int whence)
|
|
|
|
{
|
|
|
|
BufferSource *s = (BufferSource *)datasource;
|
|
|
|
if (whence == SEEK_SET) {
|
|
|
|
if (offset < 0 || (size_t)MYMAX(offset, 0) >= s->len) {
|
|
|
|
// offset out of bounds
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
s->cur_offset = offset;
|
|
|
|
return 0;
|
|
|
|
} else if (whence == SEEK_CUR) {
|
|
|
|
if ((size_t)MYMIN(-offset, 0) > s->cur_offset
|
|
|
|
|| s->cur_offset + offset > s->len) {
|
|
|
|
// offset out of bounds
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
s->cur_offset += offset;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// invalid whence param (SEEK_END doesn't have to be supported)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
long BufferSourceell_func(void *datasource)
|
|
|
|
{
|
|
|
|
BufferSource *s = (BufferSource *)datasource;
|
|
|
|
return s->cur_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ov_callbacks g_buffer_ov_callbacks = {
|
|
|
|
&buffer_sound_read_func,
|
|
|
|
&buffer_sound_seek_func,
|
2018-03-23 15:31:43 +01:00
|
|
|
nullptr,
|
2015-11-14 03:00:52 +01:00
|
|
|
&BufferSourceell_func
|
|
|
|
};
|
|
|
|
|
|
|
|
SoundBuffer *load_ogg_from_buffer(const std::string &buf, const std::string &id_for_log)
|
|
|
|
{
|
|
|
|
OggVorbis_File oggFile;
|
|
|
|
|
|
|
|
BufferSource s;
|
|
|
|
s.buf = buf.c_str();
|
|
|
|
s.cur_offset = 0;
|
|
|
|
s.len = buf.size();
|
|
|
|
|
2018-03-23 15:31:43 +01:00
|
|
|
if (ov_open_callbacks(&s, &oggFile, nullptr, 0, g_buffer_ov_callbacks) != 0) {
|
2015-11-14 03:00:52 +01:00
|
|
|
infostream << "Audio: Error opening " << id_for_log
|
|
|
|
<< " for decoding" << std::endl;
|
2018-03-23 15:31:43 +01:00
|
|
|
return nullptr;
|
2015-11-14 03:00:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return load_opened_ogg_file(&oggFile, id_for_log);
|
|
|
|
}
|
|
|
|
|
2012-03-23 11:05:17 +01:00
|
|
|
struct PlayingSound
|
|
|
|
{
|
2012-03-23 14:29:30 +01:00
|
|
|
ALuint source_id;
|
|
|
|
bool loop;
|
2012-03-23 11:05:17 +01:00
|
|
|
};
|
|
|
|
|
2018-03-23 15:31:43 +01:00
|
|
|
class SoundManagerSingleton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
unique_ptr_alcdevice m_device;
|
|
|
|
unique_ptr_alccontext m_context;
|
|
|
|
public:
|
|
|
|
SoundManagerSingleton() :
|
|
|
|
m_device(nullptr, delete_alcdevice),
|
|
|
|
m_context(nullptr, delete_alccontext)
|
|
|
|
{
|
2020-05-05 08:38:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool init()
|
|
|
|
{
|
|
|
|
if (!(m_device = unique_ptr_alcdevice(alcOpenDevice(nullptr), delete_alcdevice))) {
|
|
|
|
errorstream << "Audio: Global Initialization: Failed to open device" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-23 15:31:43 +01:00
|
|
|
|
|
|
|
if (!(m_context = unique_ptr_alccontext(
|
|
|
|
alcCreateContext(m_device.get(), nullptr), delete_alccontext))) {
|
2020-05-05 08:38:18 +02:00
|
|
|
errorstream << "Audio: Global Initialization: Failed to create context" << std::endl;
|
|
|
|
return false;
|
2018-03-23 15:31:43 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 08:38:18 +02:00
|
|
|
if (!alcMakeContextCurrent(m_context.get())) {
|
|
|
|
errorstream << "Audio: Global Initialization: Failed to make current context" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-23 15:31:43 +01:00
|
|
|
|
|
|
|
alDistanceModel(AL_INVERSE_DISTANCE_CLAMPED);
|
|
|
|
|
2020-05-05 08:38:18 +02:00
|
|
|
if (alGetError() != AL_NO_ERROR) {
|
|
|
|
errorstream << "Audio: Global Initialization: OpenAL Error " << alGetError() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-23 15:31:43 +01:00
|
|
|
|
|
|
|
infostream << "Audio: Global Initialized: OpenAL " << alGetString(AL_VERSION)
|
|
|
|
<< ", using " << alcGetString(m_device.get(), ALC_DEVICE_SPECIFIER)
|
|
|
|
<< std::endl;
|
2020-05-05 08:38:18 +02:00
|
|
|
|
|
|
|
return true;
|
2018-03-23 15:31:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~SoundManagerSingleton()
|
|
|
|
{
|
|
|
|
infostream << "Audio: Global Deinitialized." << std::endl;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-23 11:05:17 +01:00
|
|
|
class OpenALSoundManager: public ISoundManager
|
|
|
|
{
|
|
|
|
private:
|
2012-03-23 14:29:30 +01:00
|
|
|
OnDemandSoundFetcher *m_fetcher;
|
2012-03-23 11:05:17 +01:00
|
|
|
ALCdevice *m_device;
|
|
|
|
ALCcontext *m_context;
|
2022-07-09 22:32:24 +02:00
|
|
|
u16 m_last_used_id = 0; // only access within getFreeId() !
|
2017-06-04 21:00:04 +02:00
|
|
|
std::unordered_map<std::string, std::vector<SoundBuffer*>> m_buffers;
|
|
|
|
std::unordered_map<int, PlayingSound*> m_sounds_playing;
|
2016-07-10 07:08:26 +02:00
|
|
|
struct FadeState {
|
2017-08-20 13:30:50 +02:00
|
|
|
FadeState() = default;
|
|
|
|
|
2016-07-10 07:08:26 +02:00
|
|
|
FadeState(float step, float current_gain, float target_gain):
|
|
|
|
step(step),
|
|
|
|
current_gain(current_gain),
|
|
|
|
target_gain(target_gain) {}
|
|
|
|
float step;
|
|
|
|
float current_gain;
|
|
|
|
float target_gain;
|
|
|
|
};
|
|
|
|
|
2017-06-04 21:00:04 +02:00
|
|
|
std::unordered_map<int, FadeState> m_sounds_fading;
|
2012-03-23 11:05:17 +01:00
|
|
|
public:
|
2018-03-23 15:31:43 +01:00
|
|
|
OpenALSoundManager(SoundManagerSingleton *smg, OnDemandSoundFetcher *fetcher):
|
2012-03-23 14:29:30 +01:00
|
|
|
m_fetcher(fetcher),
|
2018-03-23 15:31:43 +01:00
|
|
|
m_device(smg->m_device.get()),
|
2022-07-09 22:32:24 +02:00
|
|
|
m_context(smg->m_context.get())
|
2012-03-23 11:05:17 +01:00
|
|
|
{
|
2018-03-23 15:31:43 +01:00
|
|
|
infostream << "Audio: Initialized: OpenAL " << std::endl;
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~OpenALSoundManager()
|
|
|
|
{
|
2018-03-23 15:31:43 +01:00
|
|
|
infostream << "Audio: Deinitializing..." << std::endl;
|
|
|
|
|
|
|
|
std::unordered_set<int> source_del_list;
|
|
|
|
|
|
|
|
for (const auto &sp : m_sounds_playing)
|
2018-03-24 16:05:26 +01:00
|
|
|
source_del_list.insert(sp.first);
|
2018-03-23 15:31:43 +01:00
|
|
|
|
|
|
|
for (const auto &id : source_del_list)
|
|
|
|
deleteSound(id);
|
2013-04-07 21:17:26 +02:00
|
|
|
|
2017-08-20 13:30:50 +02:00
|
|
|
for (auto &buffer : m_buffers) {
|
2017-08-20 19:37:29 +02:00
|
|
|
for (SoundBuffer *sb : buffer.second) {
|
2021-08-03 20:26:00 +02:00
|
|
|
alDeleteBuffers(1, &sb->buffer_id);
|
|
|
|
|
|
|
|
ALenum error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
|
|
|
warningstream << "Audio: Failed to free stream for "
|
|
|
|
<< buffer.first << ": " << alErrorString(error) << std::endl;
|
|
|
|
}
|
|
|
|
|
2017-08-20 19:37:29 +02:00
|
|
|
delete sb;
|
2013-04-07 21:17:26 +02:00
|
|
|
}
|
2017-08-20 13:30:50 +02:00
|
|
|
buffer.second.clear();
|
2013-04-07 21:17:26 +02:00
|
|
|
}
|
|
|
|
m_buffers.clear();
|
2018-03-23 15:31:43 +01:00
|
|
|
|
|
|
|
infostream << "Audio: Deinitialized." << std::endl;
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
2015-11-14 03:00:52 +01:00
|
|
|
|
2022-07-09 22:32:24 +02:00
|
|
|
u16 getFreeId()
|
|
|
|
{
|
|
|
|
u16 startid = m_last_used_id;
|
|
|
|
while (!isFreeId(++m_last_used_id)) {
|
|
|
|
if (m_last_used_id == startid)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_last_used_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool isFreeId(int id) const
|
|
|
|
{
|
|
|
|
return id > 0 && m_sounds_playing.find(id) == m_sounds_playing.end();
|
|
|
|
}
|
|
|
|
|
2016-07-10 07:08:26 +02:00
|
|
|
void step(float dtime)
|
|
|
|
{
|
|
|
|
doFades(dtime);
|
|
|
|
}
|
|
|
|
|
2012-03-23 11:05:17 +01:00
|
|
|
void addBuffer(const std::string &name, SoundBuffer *buf)
|
|
|
|
{
|
2017-06-04 21:00:04 +02:00
|
|
|
std::unordered_map<std::string, std::vector<SoundBuffer*>>::iterator i =
|
2012-03-23 11:05:17 +01:00
|
|
|
m_buffers.find(name);
|
|
|
|
if(i != m_buffers.end()){
|
|
|
|
i->second.push_back(buf);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::vector<SoundBuffer*> bufs;
|
|
|
|
bufs.push_back(buf);
|
2022-09-06 12:21:09 +02:00
|
|
|
m_buffers[name] = std::move(bufs);
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SoundBuffer* getBuffer(const std::string &name)
|
|
|
|
{
|
2017-06-04 21:00:04 +02:00
|
|
|
std::unordered_map<std::string, std::vector<SoundBuffer*>>::iterator i =
|
2012-03-23 11:05:17 +01:00
|
|
|
m_buffers.find(name);
|
|
|
|
if(i == m_buffers.end())
|
2018-03-23 15:31:43 +01:00
|
|
|
return nullptr;
|
2012-03-23 11:05:17 +01:00
|
|
|
std::vector<SoundBuffer*> &bufs = i->second;
|
|
|
|
int j = myrand() % bufs.size();
|
|
|
|
return bufs[j];
|
|
|
|
}
|
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
PlayingSound* createPlayingSound(SoundBuffer *buf, bool loop,
|
2017-06-11 13:58:26 +02:00
|
|
|
float volume, float pitch)
|
2012-03-23 11:05:17 +01:00
|
|
|
{
|
2018-03-23 15:31:43 +01:00
|
|
|
infostream << "OpenALSoundManager: Creating playing sound" << std::endl;
|
2012-03-23 14:29:30 +01:00
|
|
|
assert(buf);
|
|
|
|
PlayingSound *sound = new PlayingSound;
|
|
|
|
assert(sound);
|
|
|
|
warn_if_error(alGetError(), "before createPlayingSound");
|
|
|
|
alGenSources(1, &sound->source_id);
|
|
|
|
alSourcei(sound->source_id, AL_BUFFER, buf->buffer_id);
|
|
|
|
alSourcei(sound->source_id, AL_SOURCE_RELATIVE, true);
|
|
|
|
alSource3f(sound->source_id, AL_POSITION, 0, 0, 0);
|
|
|
|
alSource3f(sound->source_id, AL_VELOCITY, 0, 0, 0);
|
|
|
|
alSourcei(sound->source_id, AL_LOOPING, loop ? AL_TRUE : AL_FALSE);
|
2017-09-27 23:03:41 +02:00
|
|
|
volume = std::fmax(0.0f, volume);
|
2012-03-23 14:29:30 +01:00
|
|
|
alSourcef(sound->source_id, AL_GAIN, volume);
|
2017-06-11 13:58:26 +02:00
|
|
|
alSourcef(sound->source_id, AL_PITCH, pitch);
|
2012-03-23 14:29:30 +01:00
|
|
|
alSourcePlay(sound->source_id);
|
|
|
|
warn_if_error(alGetError(), "createPlayingSound");
|
|
|
|
return sound;
|
|
|
|
}
|
|
|
|
|
|
|
|
PlayingSound* createPlayingSoundAt(SoundBuffer *buf, bool loop,
|
2017-06-11 13:58:26 +02:00
|
|
|
float volume, v3f pos, float pitch)
|
2012-03-23 14:29:30 +01:00
|
|
|
{
|
2018-03-23 15:31:43 +01:00
|
|
|
infostream << "OpenALSoundManager: Creating positional playing sound"
|
|
|
|
<< std::endl;
|
2012-03-23 14:29:30 +01:00
|
|
|
assert(buf);
|
|
|
|
PlayingSound *sound = new PlayingSound;
|
2022-07-09 22:32:24 +02:00
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
warn_if_error(alGetError(), "before createPlayingSoundAt");
|
|
|
|
alGenSources(1, &sound->source_id);
|
|
|
|
alSourcei(sound->source_id, AL_BUFFER, buf->buffer_id);
|
|
|
|
alSourcei(sound->source_id, AL_SOURCE_RELATIVE, false);
|
|
|
|
alSource3f(sound->source_id, AL_POSITION, pos.X, pos.Y, pos.Z);
|
|
|
|
alSource3f(sound->source_id, AL_VELOCITY, 0, 0, 0);
|
2017-09-23 09:38:22 +02:00
|
|
|
// Use alDistanceModel(AL_INVERSE_DISTANCE_CLAMPED) and set reference
|
|
|
|
// distance to clamp gain at <1 node distance, to avoid excessive
|
|
|
|
// volume when closer
|
|
|
|
alSourcef(sound->source_id, AL_REFERENCE_DISTANCE, 10.0f);
|
2012-03-23 14:29:30 +01:00
|
|
|
alSourcei(sound->source_id, AL_LOOPING, loop ? AL_TRUE : AL_FALSE);
|
2017-09-23 09:38:22 +02:00
|
|
|
// Multiply by 3 to compensate for reducing AL_REFERENCE_DISTANCE from
|
|
|
|
// the previous value of 30 to the new value of 10
|
2017-09-27 23:03:41 +02:00
|
|
|
volume = std::fmax(0.0f, volume * 3.0f);
|
2012-03-23 14:29:30 +01:00
|
|
|
alSourcef(sound->source_id, AL_GAIN, volume);
|
2017-06-11 13:58:26 +02:00
|
|
|
alSourcef(sound->source_id, AL_PITCH, pitch);
|
2012-03-23 14:29:30 +01:00
|
|
|
alSourcePlay(sound->source_id);
|
|
|
|
warn_if_error(alGetError(), "createPlayingSoundAt");
|
|
|
|
return sound;
|
|
|
|
}
|
|
|
|
|
2017-06-11 13:58:26 +02:00
|
|
|
int playSoundRaw(SoundBuffer *buf, bool loop, float volume, float pitch)
|
2012-03-23 14:29:30 +01:00
|
|
|
{
|
|
|
|
assert(buf);
|
2017-06-11 13:58:26 +02:00
|
|
|
PlayingSound *sound = createPlayingSound(buf, loop, volume, pitch);
|
2022-07-09 22:32:24 +02:00
|
|
|
if (!sound)
|
2012-03-23 14:29:30 +01:00
|
|
|
return -1;
|
|
|
|
|
2022-07-09 22:32:24 +02:00
|
|
|
int handle = getFreeId();
|
|
|
|
m_sounds_playing[handle] = sound;
|
|
|
|
return handle;
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
2015-11-14 03:00:52 +01:00
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
void deleteSound(int id)
|
|
|
|
{
|
2022-07-09 22:32:24 +02:00
|
|
|
auto i = m_sounds_playing.find(id);
|
2012-03-23 14:29:30 +01:00
|
|
|
if(i == m_sounds_playing.end())
|
|
|
|
return;
|
|
|
|
PlayingSound *sound = i->second;
|
2015-11-14 03:00:52 +01:00
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
alDeleteSources(1, &sound->source_id);
|
|
|
|
|
|
|
|
delete sound;
|
|
|
|
m_sounds_playing.erase(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If buffer does not exist, consult the fetcher */
|
2014-02-27 21:12:59 +01:00
|
|
|
SoundBuffer* getFetchBuffer(const std::string &name)
|
2012-03-23 11:05:17 +01:00
|
|
|
{
|
2012-03-23 14:29:30 +01:00
|
|
|
SoundBuffer *buf = getBuffer(name);
|
|
|
|
if(buf)
|
|
|
|
return buf;
|
|
|
|
if(!m_fetcher)
|
2018-03-23 15:31:43 +01:00
|
|
|
return nullptr;
|
2012-03-23 14:29:30 +01:00
|
|
|
std::set<std::string> paths;
|
2012-03-25 13:47:51 +02:00
|
|
|
std::set<std::string> datas;
|
2012-03-23 14:29:30 +01:00
|
|
|
m_fetcher->fetchSounds(name, paths, datas);
|
2017-08-20 13:30:50 +02:00
|
|
|
for (const std::string &path : paths) {
|
|
|
|
loadSoundFile(name, path);
|
2012-03-23 14:29:30 +01:00
|
|
|
}
|
2017-08-20 13:30:50 +02:00
|
|
|
for (const std::string &data : datas) {
|
|
|
|
loadSoundData(name, data);
|
2012-03-23 14:29:30 +01:00
|
|
|
}
|
|
|
|
return getBuffer(name);
|
|
|
|
}
|
2015-11-14 03:00:52 +01:00
|
|
|
|
2012-03-23 14:29:30 +01:00
|
|
|
// Remove stopped sounds
|
|
|
|
void maintain()
|
|
|
|
{
|
2020-04-08 20:13:23 +02:00
|
|
|
if (!m_sounds_playing.empty()) {
|
|
|
|
verbosestream << "OpenALSoundManager::maintain(): "
|
|
|
|
<< m_sounds_playing.size() <<" playing sounds, "
|
|
|
|
<< m_buffers.size() <<" sound names loaded"<<std::endl;
|
|
|
|
}
|
2018-03-23 15:31:43 +01:00
|
|
|
std::unordered_set<int> del_list;
|
|
|
|
for (const auto &sp : m_sounds_playing) {
|
2017-08-20 13:30:50 +02:00
|
|
|
int id = sp.first;
|
|
|
|
PlayingSound *sound = sp.second;
|
2012-03-23 14:29:30 +01:00
|
|
|
// If not playing, remove it
|
|
|
|
{
|
|
|
|
ALint state;
|
|
|
|
alGetSourcei(sound->source_id, AL_SOURCE_STATE, &state);
|
|
|
|
if(state != AL_PLAYING){
|
|
|
|
del_list.insert(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-12 15:55:40 +01:00
|
|
|
if(!del_list.empty())
|
2012-03-23 14:29:30 +01:00
|
|
|
verbosestream<<"OpenALSoundManager::maintain(): deleting "
|
|
|
|
<<del_list.size()<<" playing sounds"<<std::endl;
|
2017-08-20 13:30:50 +02:00
|
|
|
for (int i : del_list) {
|
|
|
|
deleteSound(i);
|
2012-03-23 14:29:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Interface */
|
|
|
|
|
2012-03-25 13:47:51 +02:00
|
|
|
bool loadSoundFile(const std::string &name,
|
|
|
|
const std::string &filepath)
|
|
|
|
{
|
2015-11-14 03:00:52 +01:00
|
|
|
SoundBuffer *buf = load_ogg_from_file(filepath);
|
|
|
|
if (buf)
|
2012-03-25 13:47:51 +02:00
|
|
|
addBuffer(name, buf);
|
2020-04-08 20:13:23 +02:00
|
|
|
return !!buf;
|
2012-03-25 13:47:51 +02:00
|
|
|
}
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2012-03-25 13:47:51 +02:00
|
|
|
bool loadSoundData(const std::string &name,
|
|
|
|
const std::string &filedata)
|
|
|
|
{
|
2015-11-14 03:00:52 +01:00
|
|
|
SoundBuffer *buf = load_ogg_from_buffer(filedata, name);
|
|
|
|
if (buf)
|
|
|
|
addBuffer(name, buf);
|
2020-04-08 20:13:23 +02:00
|
|
|
return !!buf;
|
2012-03-25 13:47:51 +02:00
|
|
|
}
|
|
|
|
|
2018-03-24 15:45:25 +01:00
|
|
|
void updateListener(const v3f &pos, const v3f &vel, const v3f &at, const v3f &up)
|
2012-03-23 14:29:30 +01:00
|
|
|
{
|
|
|
|
alListener3f(AL_POSITION, pos.X, pos.Y, pos.Z);
|
|
|
|
alListener3f(AL_VELOCITY, vel.X, vel.Y, vel.Z);
|
|
|
|
ALfloat f[6];
|
|
|
|
f3_set(f, at);
|
2012-04-05 23:39:37 +02:00
|
|
|
f3_set(f+3, -up);
|
2012-03-23 14:29:30 +01:00
|
|
|
alListenerfv(AL_ORIENTATION, f);
|
|
|
|
warn_if_error(alGetError(), "updateListener");
|
|
|
|
}
|
2015-11-14 03:00:52 +01:00
|
|
|
|
2012-04-06 14:30:36 +02:00
|
|
|
void setListenerGain(float gain)
|
|
|
|
{
|
|
|
|
alListenerf(AL_GAIN, gain);
|
|
|
|
}
|
2012-03-23 14:29:30 +01:00
|
|
|
|
2022-07-09 22:32:24 +02:00
|
|
|
int playSound(const SimpleSoundSpec &spec)
|
2012-03-23 14:29:30 +01:00
|
|
|
{
|
|
|
|
maintain();
|
2022-07-09 22:32:24 +02:00
|
|
|
if (spec.name.empty())
|
2012-03-24 02:28:08 +01:00
|
|
|
return 0;
|
2022-07-09 22:32:24 +02:00
|
|
|
SoundBuffer *buf = getFetchBuffer(spec.name);
|
2012-03-23 14:29:30 +01:00
|
|
|
if(!buf){
|
2022-07-09 22:32:24 +02:00
|
|
|
infostream << "OpenALSoundManager: \"" << spec.name << "\" not found."
|
2018-03-23 15:31:43 +01:00
|
|
|
<< std::endl;
|
2012-03-23 14:29:30 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2022-07-09 22:32:24 +02:00
|
|
|
|
2016-07-10 07:08:26 +02:00
|
|
|
int handle = -1;
|
2022-07-09 22:32:24 +02:00
|
|
|
if (spec.fade > 0) {
|
|
|
|
handle = playSoundRaw(buf, spec.loop, 0.0f, spec.pitch);
|
|
|
|
fadeSound(handle, spec.fade, spec.gain);
|
2016-07-10 07:08:26 +02:00
|
|
|
} else {
|
2022-07-09 22:32:24 +02:00
|
|
|
handle = playSoundRaw(buf, spec.loop, spec.gain, spec.pitch);
|
2016-07-10 07:08:26 +02:00
|
|
|
}
|
|
|
|
return handle;
|
2012-03-23 14:29:30 +01:00
|
|
|
}
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2022-07-09 22:32:24 +02:00
|
|
|
int playSoundAt(const SimpleSoundSpec &spec, const v3f &pos)
|
2012-03-23 14:29:30 +01:00
|
|
|
{
|
|
|
|
maintain();
|
2022-07-09 22:32:24 +02:00
|
|
|
if (spec.name.empty())
|
2012-03-24 02:28:08 +01:00
|
|
|
return 0;
|
2022-07-09 22:32:24 +02:00
|
|
|
SoundBuffer *buf = getFetchBuffer(spec.name);
|
|
|
|
if (!buf) {
|
|
|
|
infostream << "OpenALSoundManager: \"" << spec.name << "\" not found."
|
2018-03-23 15:31:43 +01:00
|
|
|
<< std::endl;
|
2012-03-23 14:29:30 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2022-07-09 22:32:24 +02:00
|
|
|
|
|
|
|
PlayingSound *sound = createPlayingSoundAt(buf, spec.loop, spec.gain, pos, spec.pitch);
|
|
|
|
if (!sound)
|
|
|
|
return -1;
|
|
|
|
int handle = getFreeId();
|
|
|
|
m_sounds_playing[handle] = sound;
|
|
|
|
return handle;
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2012-03-23 11:05:17 +01:00
|
|
|
void stopSound(int sound)
|
|
|
|
{
|
2012-03-23 14:29:30 +01:00
|
|
|
maintain();
|
|
|
|
deleteSound(sound);
|
2012-03-23 11:05:17 +01:00
|
|
|
}
|
2016-07-10 07:08:26 +02:00
|
|
|
|
|
|
|
void fadeSound(int soundid, float step, float gain)
|
|
|
|
{
|
2020-08-19 19:26:37 +02:00
|
|
|
// Ignore the command if step isn't valid.
|
2022-07-09 22:32:24 +02:00
|
|
|
if (step == 0 || soundid < 0)
|
2020-08-19 19:26:37 +02:00
|
|
|
return;
|
2022-07-09 22:32:24 +02:00
|
|
|
|
2020-08-19 19:26:37 +02:00
|
|
|
float current_gain = getSoundGain(soundid);
|
|
|
|
step = gain - current_gain > 0 ? abs(step) : -abs(step);
|
|
|
|
if (m_sounds_fading.find(soundid) != m_sounds_fading.end()) {
|
|
|
|
auto current_fade = m_sounds_fading[soundid];
|
|
|
|
// Do not replace the fade if it's equivalent.
|
|
|
|
if (current_fade.target_gain == gain && current_fade.step == step)
|
|
|
|
return;
|
|
|
|
m_sounds_fading.erase(soundid);
|
|
|
|
}
|
|
|
|
gain = rangelim(gain, 0, 1);
|
|
|
|
m_sounds_fading[soundid] = FadeState(step, current_gain, gain);
|
2016-07-10 07:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void doFades(float dtime)
|
|
|
|
{
|
2020-08-19 19:26:37 +02:00
|
|
|
for (auto i = m_sounds_fading.begin(); i != m_sounds_fading.end();) {
|
|
|
|
FadeState& fade = i->second;
|
|
|
|
assert(fade.step != 0);
|
|
|
|
fade.current_gain += (fade.step * dtime);
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2020-08-19 19:26:37 +02:00
|
|
|
if (fade.step < 0.f)
|
|
|
|
fade.current_gain = std::max(fade.current_gain, fade.target_gain);
|
2016-07-10 07:08:26 +02:00
|
|
|
else
|
2020-08-19 19:26:37 +02:00
|
|
|
fade.current_gain = std::min(fade.current_gain, fade.target_gain);
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2020-08-19 19:26:37 +02:00
|
|
|
if (fade.current_gain <= 0.f)
|
|
|
|
stopSound(i->first);
|
|
|
|
else
|
|
|
|
updateSoundGain(i->first, fade.current_gain);
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2020-08-19 19:26:37 +02:00
|
|
|
// The increment must happen during the erase call, or else it'll segfault.
|
|
|
|
if (fade.current_gain == fade.target_gain)
|
2016-07-10 07:08:26 +02:00
|
|
|
m_sounds_fading.erase(i++);
|
2020-08-19 19:26:37 +02:00
|
|
|
else
|
|
|
|
i++;
|
2016-07-10 07:08:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-24 18:01:26 +01:00
|
|
|
bool soundExists(int sound)
|
|
|
|
{
|
|
|
|
maintain();
|
|
|
|
return (m_sounds_playing.count(sound) != 0);
|
|
|
|
}
|
2016-07-10 07:08:26 +02:00
|
|
|
|
2012-03-24 18:01:26 +01:00
|
|
|
void updateSoundPosition(int id, v3f pos)
|
|
|
|
{
|
2018-03-24 15:45:25 +01:00
|
|
|
auto i = m_sounds_playing.find(id);
|
2016-10-05 00:13:10 +02:00
|
|
|
if (i == m_sounds_playing.end())
|
2012-03-24 18:01:26 +01:00
|
|
|
return;
|
|
|
|
PlayingSound *sound = i->second;
|
|
|
|
|
|
|
|
alSourcei(sound->source_id, AL_SOURCE_RELATIVE, false);
|
|
|
|
alSource3f(sound->source_id, AL_POSITION, pos.X, pos.Y, pos.Z);
|
2021-03-23 01:02:49 +01:00
|
|
|
alSource3f(sound->source_id, AL_VELOCITY, 0.0f, 0.0f, 0.0f);
|
|
|
|
alSourcef(sound->source_id, AL_REFERENCE_DISTANCE, 10.0f);
|
2012-03-24 18:01:26 +01:00
|
|
|
}
|
2016-07-10 07:08:26 +02:00
|
|
|
|
|
|
|
bool updateSoundGain(int id, float gain)
|
|
|
|
{
|
2018-03-24 15:45:25 +01:00
|
|
|
auto i = m_sounds_playing.find(id);
|
2016-07-10 07:08:26 +02:00
|
|
|
if (i == m_sounds_playing.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
PlayingSound *sound = i->second;
|
|
|
|
alSourcef(sound->source_id, AL_GAIN, gain);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
float getSoundGain(int id)
|
|
|
|
{
|
2018-03-24 15:45:25 +01:00
|
|
|
auto i = m_sounds_playing.find(id);
|
2016-07-10 07:08:26 +02:00
|
|
|
if (i == m_sounds_playing.end())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
PlayingSound *sound = i->second;
|
|
|
|
ALfloat gain;
|
|
|
|
alGetSourcef(sound->source_id, AL_GAIN, &gain);
|
|
|
|
return gain;
|
|
|
|
}
|
2012-03-23 11:05:17 +01:00
|
|
|
};
|
|
|
|
|
2018-03-23 15:31:43 +01:00
|
|
|
std::shared_ptr<SoundManagerSingleton> createSoundManagerSingleton()
|
2012-03-23 11:05:17 +01:00
|
|
|
{
|
2020-05-05 08:38:18 +02:00
|
|
|
auto smg = std::make_shared<SoundManagerSingleton>();
|
|
|
|
if (!smg->init()) {
|
|
|
|
smg.reset();
|
|
|
|
}
|
|
|
|
return smg;
|
2018-03-23 15:31:43 +01:00
|
|
|
}
|
2012-03-23 11:05:17 +01:00
|
|
|
|
2018-03-23 15:31:43 +01:00
|
|
|
ISoundManager *createOpenALSoundManager(SoundManagerSingleton *smg, OnDemandSoundFetcher *fetcher)
|
|
|
|
{
|
|
|
|
return new OpenALSoundManager(smg, fetcher);
|
|
|
|
};
|