2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** audio.cpp
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
|
|
**
|
|
|
|
** mkxp is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** mkxp 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
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "audio.h"
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
#include "sharedstate.h"
|
2013-09-01 14:27:21 +00:00
|
|
|
#include "util.h"
|
|
|
|
#include "intrulist.h"
|
|
|
|
#include "filesystem.h"
|
|
|
|
#include "exception.h"
|
2013-11-30 11:00:11 +00:00
|
|
|
#include "al-util.h"
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QHash>
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
#include <SDL_audio.h>
|
|
|
|
#include <SDL_thread.h>
|
|
|
|
#include <SDL_endian.h>
|
|
|
|
#include <SDL_timer.h>
|
|
|
|
#include <SDL_sound.h>
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
#ifdef RGSS2
|
|
|
|
#include <vorbis/vorbisfile.h>
|
|
|
|
#endif
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
#include <alc.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
#define AUDIO_SLEEP 10
|
|
|
|
#define SE_SOURCES 6
|
|
|
|
#define SE_CACHE_MEM (10*1024*1024) // 10 MB
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static uint8_t formatSampleSize(int sdlFormat)
|
|
|
|
{
|
|
|
|
switch (sdlFormat)
|
|
|
|
{
|
|
|
|
case AUDIO_U8 :
|
|
|
|
case AUDIO_S8 :
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case AUDIO_U16LSB :
|
|
|
|
case AUDIO_U16MSB :
|
|
|
|
case AUDIO_S16LSB :
|
|
|
|
case AUDIO_S16MSB :
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case AUDIO_F32 :
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
default:
|
|
|
|
qDebug() << "Unhandled sample format";
|
|
|
|
Q_ASSERT(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static ALenum chooseALFormat(int sampleSize, int channelCount)
|
|
|
|
{
|
|
|
|
switch (sampleSize)
|
|
|
|
{
|
|
|
|
case 1 :
|
|
|
|
switch (channelCount)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
case 1 : return AL_FORMAT_MONO8;
|
|
|
|
case 2 : return AL_FORMAT_STEREO8;
|
|
|
|
default: Q_ASSERT(0);
|
|
|
|
}
|
|
|
|
case 2 :
|
|
|
|
switch (channelCount)
|
|
|
|
{
|
|
|
|
case 1 : return AL_FORMAT_MONO16;
|
|
|
|
case 2 : return AL_FORMAT_STEREO16;
|
|
|
|
default : Q_ASSERT(0);
|
|
|
|
}
|
|
|
|
case 4 :
|
|
|
|
switch (channelCount)
|
|
|
|
{
|
|
|
|
case 1 : return AL_FORMAT_MONO_FLOAT32;
|
|
|
|
case 2 : return AL_FORMAT_STEREO_FLOAT32;
|
|
|
|
default : Q_ASSERT(0);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
2013-11-30 11:00:11 +00:00
|
|
|
default : Q_ASSERT(0);
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static const int streamBufSize = 32768;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
struct SoundBuffer
|
|
|
|
{
|
2013-12-04 13:49:35 +00:00
|
|
|
/* Uniquely identifies this or equal buffer */
|
|
|
|
QByteArray key;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Buffer::ID alBuffer;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Link into the buffer cache priority list */
|
|
|
|
IntruListLink<SoundBuffer> link;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Buffer byte count */
|
|
|
|
uint32_t bytes;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Reference count */
|
|
|
|
uint8_t refCount;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
SoundBuffer()
|
|
|
|
: link(this),
|
|
|
|
refCount(1)
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
|
|
|
alBuffer = AL::Buffer::gen();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
~SoundBuffer()
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Buffer::del(alBuffer);
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static SoundBuffer *ref(SoundBuffer *buffer)
|
|
|
|
{
|
|
|
|
++buffer->refCount;
|
|
|
|
|
|
|
|
return buffer;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static void deref(SoundBuffer *buffer)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
if (--buffer->refCount == 0)
|
|
|
|
delete buffer;
|
|
|
|
}
|
|
|
|
};
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
struct SoundEmitter
|
|
|
|
{
|
|
|
|
IntruList<SoundBuffer> buffers;
|
2013-12-04 13:49:35 +00:00
|
|
|
QHash<QByteArray, SoundBuffer*> bufferHash;
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
/* Byte count sum of all cached / playing buffers */
|
|
|
|
uint32_t bufferBytes;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Source::ID alSrcs[SE_SOURCES];
|
|
|
|
SoundBuffer *atchBufs[SE_SOURCES];
|
|
|
|
/* Index of next source to be used */
|
|
|
|
int srcIndex;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
SoundEmitter()
|
|
|
|
: bufferBytes(0),
|
|
|
|
srcIndex(0)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < SE_SOURCES; ++i)
|
|
|
|
{
|
|
|
|
alSrcs[i] = AL::Source::gen();
|
|
|
|
atchBufs[i] = 0;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
~SoundEmitter()
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
for (int i = 0; i < SE_SOURCES; ++i)
|
|
|
|
{
|
|
|
|
AL::Source::stop(alSrcs[i]);
|
|
|
|
AL::Source::del(alSrcs[i]);
|
|
|
|
|
|
|
|
if (atchBufs[i])
|
|
|
|
SoundBuffer::deref(atchBufs[i]);
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
QHash<QByteArray, SoundBuffer*>::iterator iter;
|
2013-11-30 11:00:11 +00:00
|
|
|
for (iter = bufferHash.begin(); iter != bufferHash.end(); ++iter)
|
|
|
|
delete iter.value();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
void play(const QByteArray &filename,
|
|
|
|
int volume,
|
|
|
|
int pitch)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
float _volume = clamp<int>(volume, 0, 100) / 100.f;
|
2013-12-04 13:49:35 +00:00
|
|
|
float _pitch = clamp<int>(pitch, 50, 150) / 100.f;
|
2013-11-30 11:00:11 +00:00
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
SoundBuffer *buffer = allocateBuffer(filename);
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
int soundIndex = srcIndex++;
|
|
|
|
if (srcIndex > SE_SOURCES-1)
|
|
|
|
srcIndex = 0;
|
|
|
|
|
|
|
|
AL::Source::ID src = alSrcs[soundIndex];
|
|
|
|
AL::Source::stop(src);
|
|
|
|
AL::Source::detachBuffer(src);
|
|
|
|
|
|
|
|
SoundBuffer *old = atchBufs[soundIndex];
|
|
|
|
|
|
|
|
if (old)
|
|
|
|
SoundBuffer::deref(old);
|
|
|
|
|
|
|
|
atchBufs[soundIndex] = SoundBuffer::ref(buffer);
|
|
|
|
|
|
|
|
AL::Source::attachBuffer(src, buffer->alBuffer);
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
AL::Source::setVolume(src, _volume);
|
|
|
|
AL::Source::setPitch(src, _pitch);
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
AL::Source::play(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
void stop()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < SE_SOURCES; i++)
|
|
|
|
AL::Source::stop(alSrcs[i]);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-12-04 13:49:35 +00:00
|
|
|
SoundBuffer *allocateBuffer(const QByteArray &filename)
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
2013-12-04 13:49:35 +00:00
|
|
|
SoundBuffer *buffer = bufferHash.value(filename, 0);
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
|
|
|
/* Buffer still in cashe.
|
|
|
|
* Move to front of priority list */
|
|
|
|
buffers.remove(buffer->link);
|
|
|
|
buffers.append(buffer->link);
|
|
|
|
|
|
|
|
return buffer;
|
2013-09-04 15:53:12 +00:00
|
|
|
}
|
2013-11-30 11:00:11 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Buffer not in cashe, needs to be loaded */
|
|
|
|
SDL_RWops dataSource;
|
|
|
|
const char *extension;
|
|
|
|
|
|
|
|
shState->fileSystem().openRead(dataSource, filename.constData(),
|
|
|
|
FileSystem::Audio, false, &extension);
|
|
|
|
|
|
|
|
Sound_Sample *sampleHandle = Sound_NewSample(&dataSource, extension, 0, streamBufSize);
|
|
|
|
|
|
|
|
if (!sampleHandle)
|
|
|
|
{
|
|
|
|
SDL_RWclose(&dataSource);
|
|
|
|
throw Exception(Exception::SDLError, "SDL_sound: %s", Sound_GetError());
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t decBytes = Sound_DecodeAll(sampleHandle);
|
|
|
|
uint8_t sampleSize = formatSampleSize(sampleHandle->actual.format);
|
|
|
|
uint32_t sampleCount = decBytes / sampleSize;
|
|
|
|
|
|
|
|
buffer = new SoundBuffer;
|
2013-12-04 13:49:35 +00:00
|
|
|
buffer->key = filename;
|
|
|
|
buffer->bytes = sampleSize * sampleCount;
|
2013-11-30 11:00:11 +00:00
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
ALenum alFormat = chooseALFormat(sampleSize, sampleHandle->actual.channels);
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
AL::Buffer::uploadData(buffer->alBuffer, alFormat, sampleHandle->buffer,
|
|
|
|
buffer->bytes, sampleHandle->actual.rate);
|
2013-12-04 13:49:35 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
Sound_FreeSample(sampleHandle);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
uint32_t wouldBeBytes = bufferBytes + buffer->bytes;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* If memory limit is reached, delete lowest priority buffer
|
|
|
|
* until there is room or no buffers left */
|
|
|
|
while (wouldBeBytes > SE_CACHE_MEM && !buffers.isEmpty())
|
|
|
|
{
|
|
|
|
SoundBuffer *last = buffers.tail();
|
|
|
|
bufferHash.remove(last->key);
|
|
|
|
buffers.remove(last->link);
|
|
|
|
|
|
|
|
wouldBeBytes -= last->bytes;
|
|
|
|
|
|
|
|
SoundBuffer::deref(last);
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
bufferHash.insert(filename, buffer);
|
2013-11-30 11:00:11 +00:00
|
|
|
buffers.prepend(buffer->link);
|
2013-09-04 15:53:12 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
bufferBytes = wouldBeBytes;
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
2013-11-30 11:00:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const int streamBufs = 3;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
struct ALDataSource
|
|
|
|
{
|
|
|
|
enum Status
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
NoError,
|
|
|
|
EndOfStream,
|
|
|
|
WrapAround,
|
|
|
|
Error
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual ~ALDataSource() {}
|
|
|
|
|
|
|
|
/* Read/process next chunk of data, and attach it
|
|
|
|
* to provided AL buffer */
|
|
|
|
virtual Status fillBuffer(AL::Buffer::ID alBuffer) = 0;
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
virtual int sampleRate() = 0;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
virtual void seekToOffset(float seconds) = 0;
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
/* Seek back to start */
|
|
|
|
virtual void reset() = 0;
|
2013-12-02 20:40:05 +00:00
|
|
|
|
|
|
|
/* The frame count right after wrap around */
|
|
|
|
virtual uint32_t loopStartFrames() = 0;
|
2013-11-30 11:00:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SDLSoundSource : ALDataSource
|
|
|
|
{
|
|
|
|
Sound_Sample *sample;
|
2013-12-02 20:40:05 +00:00
|
|
|
SDL_RWops &srcOps;
|
2013-11-30 11:00:11 +00:00
|
|
|
uint8_t sampleSize;
|
|
|
|
bool looped;
|
|
|
|
|
|
|
|
ALenum alFormat;
|
|
|
|
ALsizei alFreq;
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
SDLSoundSource(SDL_RWops &ops,
|
|
|
|
const char *extension,
|
2013-11-30 11:00:11 +00:00
|
|
|
uint32_t maxBufSize,
|
2013-12-04 13:49:35 +00:00
|
|
|
bool looped)
|
2013-12-02 20:40:05 +00:00
|
|
|
: srcOps(ops),
|
|
|
|
looped(looped)
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
2013-12-02 20:40:05 +00:00
|
|
|
sample = Sound_NewSample(&srcOps, extension, 0, maxBufSize);
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
if (!sample)
|
|
|
|
{
|
|
|
|
SDL_RWclose(&ops);
|
|
|
|
throw Exception(Exception::SDLError, "SDL_sound: %s", Sound_GetError());
|
|
|
|
}
|
|
|
|
|
|
|
|
sampleSize = formatSampleSize(sample->actual.format);
|
|
|
|
|
|
|
|
alFormat = chooseALFormat(sampleSize, sample->actual.channels);
|
|
|
|
alFreq = sample->actual.rate;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
~SDLSoundSource()
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
Sound_FreeSample(sample);
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
Status fillBuffer(AL::Buffer::ID alBuffer)
|
|
|
|
{
|
|
|
|
uint32_t decoded = Sound_Decode(sample);
|
|
|
|
|
|
|
|
if (sample->flags & SOUND_SAMPLEFLAG_EAGAIN)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Try to decode one more time on EAGAIN */
|
|
|
|
decoded = Sound_Decode(sample);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Give up */
|
|
|
|
if (sample->flags & SOUND_SAMPLEFLAG_EAGAIN)
|
|
|
|
return ALDataSource::Error;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (sample->flags & SOUND_SAMPLEFLAG_ERROR)
|
|
|
|
return ALDataSource::Error;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Buffer::uploadData(alBuffer, alFormat, sample->buffer, decoded, alFreq);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (sample->flags & SOUND_SAMPLEFLAG_EOF)
|
|
|
|
{
|
|
|
|
if (looped)
|
|
|
|
{
|
|
|
|
Sound_Rewind(sample);
|
|
|
|
return ALDataSource::WrapAround;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ALDataSource::EndOfStream;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
return ALDataSource::NoError;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
int sampleRate()
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
2013-12-02 20:40:05 +00:00
|
|
|
return sample->actual.rate;
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
void seekToOffset(float seconds)
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
2013-12-02 20:40:05 +00:00
|
|
|
Sound_Seek(sample, static_cast<uint32_t>(seconds * 1000));
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
Sound_Rewind(sample);
|
|
|
|
}
|
2013-12-02 20:40:05 +00:00
|
|
|
|
|
|
|
uint32_t loopStartFrames()
|
|
|
|
{
|
|
|
|
/* Loops from the beginning of the file */
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
#ifdef RGSS2
|
|
|
|
static size_t vfRead(void *ptr, size_t size, size_t nmemb, void *ops)
|
|
|
|
{
|
|
|
|
return SDL_RWread(static_cast<SDL_RWops*>(ops), ptr, size, nmemb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vfSeek(void *ops, ogg_int64_t offset, int whence)
|
|
|
|
{
|
|
|
|
return SDL_RWseek(static_cast<SDL_RWops*>(ops), offset, whence);
|
|
|
|
}
|
|
|
|
|
|
|
|
static long vfTell(void *ops)
|
|
|
|
{
|
|
|
|
return SDL_RWtell(static_cast<SDL_RWops*>(ops));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ov_callbacks OvCallbacks =
|
|
|
|
{
|
|
|
|
vfRead,
|
|
|
|
vfSeek,
|
|
|
|
0,
|
|
|
|
vfTell
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct VorbisSource : ALDataSource
|
|
|
|
{
|
|
|
|
SDL_RWops &src;
|
|
|
|
|
|
|
|
OggVorbis_File vf;
|
|
|
|
|
|
|
|
uint32_t currentFrame;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32_t start;
|
|
|
|
uint32_t length;
|
|
|
|
uint32_t end;
|
|
|
|
bool valid;
|
|
|
|
bool requested;
|
|
|
|
} loop;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int channels;
|
|
|
|
int rate;
|
|
|
|
int frameSize;
|
|
|
|
ALenum alFormat;
|
|
|
|
} info;
|
|
|
|
|
|
|
|
std::vector<int16_t> sampleBuf;
|
|
|
|
|
|
|
|
VorbisSource(SDL_RWops &ops,
|
|
|
|
bool looped)
|
|
|
|
: src(ops),
|
|
|
|
currentFrame(0)
|
|
|
|
{
|
|
|
|
int error = ov_open_callbacks(&src, &vf, 0, 0, OvCallbacks);
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
SDL_RWclose(&src);
|
|
|
|
throw Exception(Exception::MKXPError,
|
|
|
|
"Vorbisfile: Cannot read ogg file");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract bitstream info */
|
|
|
|
info.channels = vf.vi->channels;
|
|
|
|
info.rate = vf.vi->rate;
|
|
|
|
|
|
|
|
if (info.channels > 2)
|
|
|
|
{
|
|
|
|
ov_clear(&vf);
|
|
|
|
SDL_RWclose(&src);
|
|
|
|
throw Exception(Exception::MKXPError,
|
|
|
|
"Cannot handle audio with more than 2 channels");
|
|
|
|
}
|
|
|
|
|
|
|
|
info.alFormat = chooseALFormat(sizeof(int16_t), info.channels);
|
|
|
|
info.frameSize = sizeof(int16_t) * info.channels;
|
|
|
|
|
|
|
|
sampleBuf.resize(streamBufSize);
|
|
|
|
|
|
|
|
loop.requested = looped;
|
|
|
|
loop.valid = false;
|
|
|
|
loop.start = loop.length = 0;
|
|
|
|
|
|
|
|
if (!loop.requested)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Try to extract loop info */
|
|
|
|
for (int i = 0; i < vf.vc->comments; ++i)
|
|
|
|
{
|
|
|
|
char *comment = vf.vc->user_comments[i];
|
|
|
|
char *sep = strstr(comment, "=");
|
|
|
|
|
|
|
|
/* No '=' found */
|
|
|
|
if (!sep)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Empty value */
|
|
|
|
if (!*(sep+1))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*sep = '\0';
|
|
|
|
|
|
|
|
if (!strcmp(comment, "LOOPSTART"))
|
|
|
|
loop.start = strtol(sep+1, 0, 10);
|
|
|
|
|
|
|
|
if (!strcmp(comment, "LOOPLENGTH"))
|
|
|
|
loop.length = strtol(sep+1, 0, 10);
|
|
|
|
|
|
|
|
*sep = '=';
|
|
|
|
}
|
|
|
|
|
|
|
|
loop.end = loop.start + loop.length;
|
|
|
|
loop.valid = (loop.start && loop.length);
|
|
|
|
}
|
|
|
|
|
|
|
|
~VorbisSource()
|
|
|
|
{
|
|
|
|
ov_clear(&vf);
|
|
|
|
SDL_RWclose(&src);
|
|
|
|
}
|
|
|
|
|
|
|
|
int sampleRate()
|
|
|
|
{
|
|
|
|
return info.rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void seekToOffset(float seconds)
|
|
|
|
{
|
|
|
|
ov_time_seek(&vf, seconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
Status fillBuffer(AL::Buffer::ID alBuffer)
|
|
|
|
{
|
|
|
|
void *bufPtr = sampleBuf.data();
|
|
|
|
int availBuf = sampleBuf.size();
|
|
|
|
int bufUsed = 0;
|
|
|
|
|
|
|
|
int canRead = availBuf;
|
|
|
|
|
|
|
|
Status retStatus = ALDataSource::NoError;
|
|
|
|
|
|
|
|
if (loop.valid)
|
|
|
|
{
|
|
|
|
int tilLoopEnd = loop.end * info.frameSize;
|
|
|
|
|
|
|
|
canRead = std::min(availBuf, tilLoopEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (canRead > 16)
|
|
|
|
{
|
|
|
|
long res = ov_read(&vf, static_cast<char*>(bufPtr),
|
|
|
|
canRead, 0, sizeof(int16_t), 1, 0);
|
|
|
|
|
|
|
|
if (res < 0)
|
|
|
|
{
|
|
|
|
/* Read error */
|
|
|
|
retStatus = ALDataSource::Error;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res == 0)
|
|
|
|
{
|
|
|
|
/* EOF */
|
|
|
|
if (loop.requested)
|
|
|
|
{
|
|
|
|
retStatus = ALDataSource::WrapAround;
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retStatus = ALDataSource::EndOfStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bufUsed += (res / sizeof(int16_t));
|
|
|
|
bufPtr = &sampleBuf[bufUsed];
|
|
|
|
currentFrame += (res / info.frameSize);
|
|
|
|
|
|
|
|
if (loop.valid && currentFrame >= loop.end)
|
|
|
|
{
|
|
|
|
/* Determine how many frames we're
|
|
|
|
* over the loop end */
|
|
|
|
int discardFrames = currentFrame - loop.end;
|
|
|
|
bufUsed -= discardFrames * info.channels;
|
|
|
|
|
|
|
|
retStatus = ALDataSource::WrapAround;
|
|
|
|
|
|
|
|
/* Seek to loop start */
|
|
|
|
currentFrame = loop.start;
|
|
|
|
if (ov_pcm_seek(&vf, currentFrame) != 0)
|
|
|
|
retStatus = ALDataSource::Error;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
canRead -= res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retStatus != ALDataSource::Error)
|
|
|
|
AL::Buffer::uploadData(alBuffer, info.alFormat, sampleBuf.data(),
|
|
|
|
bufUsed*sizeof(int16_t), info.rate);
|
|
|
|
|
|
|
|
return retStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
ov_raw_seek(&vf, 0);
|
|
|
|
currentFrame = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t loopStartFrames()
|
|
|
|
{
|
|
|
|
if (loop.valid)
|
|
|
|
return loop.start;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* State-machine like audio playback stream.
|
|
|
|
* This class is NOT thread safe */
|
|
|
|
struct ALStream
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
enum State
|
|
|
|
{
|
|
|
|
Closed,
|
|
|
|
Stopped,
|
|
|
|
Playing,
|
|
|
|
Paused
|
|
|
|
};
|
|
|
|
|
|
|
|
bool looped;
|
|
|
|
State state;
|
|
|
|
|
|
|
|
ALDataSource *source;
|
|
|
|
SDL_Thread *thread;
|
|
|
|
|
|
|
|
SDL_mutex *pauseMut;
|
|
|
|
bool preemptPause;
|
|
|
|
|
|
|
|
/* When this flag isn't set and alSrc is
|
|
|
|
* in 'STOPPED' state, stream isn't over
|
|
|
|
* (it just hasn't started yet) */
|
|
|
|
bool streamInited;
|
|
|
|
bool sourceExhausted;
|
|
|
|
|
|
|
|
bool threadTermReq;
|
|
|
|
|
|
|
|
bool needsRewind;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Source::ID alSrc;
|
|
|
|
AL::Buffer::ID alBuf[streamBufs];
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
uint64_t procFrames;
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Buffer::ID lastBuf;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
SDL_RWops srcOps;
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
struct
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
ALenum format;
|
|
|
|
ALsizei freq;
|
|
|
|
} stream;
|
|
|
|
|
|
|
|
enum LoopMode
|
|
|
|
{
|
|
|
|
Looped,
|
|
|
|
NotLooped
|
|
|
|
};
|
|
|
|
|
|
|
|
ALStream(LoopMode loopMode)
|
|
|
|
: looped(loopMode == Looped),
|
|
|
|
state(Closed),
|
|
|
|
source(0),
|
|
|
|
thread(0),
|
|
|
|
preemptPause(false),
|
|
|
|
streamInited(false),
|
|
|
|
needsRewind(false)
|
|
|
|
{
|
|
|
|
alSrc = AL::Source::gen();
|
|
|
|
|
|
|
|
AL::Source::setVolume(alSrc, 1.0);
|
|
|
|
AL::Source::setPitch(alSrc, 1.0);
|
|
|
|
AL::Source::detachBuffer(alSrc);
|
|
|
|
|
|
|
|
for (int i = 0; i < streamBufs; ++i)
|
|
|
|
alBuf[i] = AL::Buffer::gen();
|
|
|
|
|
|
|
|
pauseMut = SDL_CreateMutex();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
~ALStream()
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
close();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
clearALQueue();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Source::del(alSrc);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
for (int i = 0; i < streamBufs; ++i)
|
|
|
|
AL::Buffer::del(alBuf[i]);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
SDL_DestroyMutex(pauseMut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void close()
|
|
|
|
{
|
|
|
|
checkStopped();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case Playing:
|
|
|
|
case Paused:
|
|
|
|
stopStream();
|
|
|
|
case Stopped:
|
|
|
|
closeSource();
|
|
|
|
state = Closed;
|
|
|
|
case Closed:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
void open(const std::string &filename)
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
|
|
|
checkStopped();
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case Playing:
|
|
|
|
case Paused:
|
|
|
|
stopStream();
|
|
|
|
case Stopped:
|
|
|
|
closeSource();
|
|
|
|
case Closed:
|
2013-12-04 13:49:35 +00:00
|
|
|
openSource(filename);
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
state = Stopped;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void stop()
|
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
checkStopped();
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case Closed:
|
|
|
|
case Stopped:
|
|
|
|
return;
|
|
|
|
case Playing:
|
|
|
|
case Paused:
|
|
|
|
stopStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
state = Stopped;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
void play()
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
checkStopped();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
switch (state)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
case Closed:
|
|
|
|
case Playing:
|
|
|
|
return;
|
|
|
|
case Stopped:
|
|
|
|
startStream();
|
|
|
|
break;
|
|
|
|
case Paused :
|
|
|
|
resumeStream();
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
state = Playing;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
void pause()
|
|
|
|
{
|
|
|
|
checkStopped();
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case Closed:
|
|
|
|
case Stopped:
|
|
|
|
case Paused:
|
|
|
|
return;
|
|
|
|
case Playing:
|
|
|
|
pauseStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
state = Paused;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setOffset(float value)
|
|
|
|
{
|
|
|
|
if (state == Closed)
|
|
|
|
return;
|
|
|
|
// XXX needs more work. protect source with mutex
|
|
|
|
source->seekToOffset(value);
|
|
|
|
needsRewind = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setVolume(float value)
|
|
|
|
{
|
|
|
|
AL::Source::setVolume(alSrc, value);
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
void setPitch(float value)
|
|
|
|
{
|
|
|
|
AL::Source::setPitch(alSrc, value);
|
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
State queryState()
|
|
|
|
{
|
|
|
|
checkStopped();
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
float queryOffset()
|
|
|
|
{
|
|
|
|
if (state == Closed)
|
|
|
|
return 0;
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
float procOffset = static_cast<float>(procFrames) / source->sampleRate();
|
2013-11-30 11:00:11 +00:00
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
return procOffset + AL::Source::getSecOffset(alSrc);
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void closeSource()
|
|
|
|
{
|
|
|
|
delete source;
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
void openSource(const std::string &filename)
|
2013-11-30 11:00:11 +00:00
|
|
|
{
|
2013-12-02 20:40:05 +00:00
|
|
|
const char *ext;
|
|
|
|
shState->fileSystem().openRead(srcOps, filename.c_str(), FileSystem::Audio, false, &ext);
|
|
|
|
|
|
|
|
#ifdef RGSS2
|
|
|
|
/* Try to read ogg file signature */
|
|
|
|
char sig[5];
|
|
|
|
memset(sig, '\0', sizeof(sig));
|
|
|
|
SDL_RWread(&srcOps, sig, 1, 4);
|
|
|
|
SDL_RWseek(&srcOps, 0, RW_SEEK_SET);
|
|
|
|
|
|
|
|
if (!strcmp(sig, "OggS"))
|
|
|
|
source = new VorbisSource(srcOps, looped);
|
|
|
|
else
|
|
|
|
source = new SDLSoundSource(srcOps, ext, streamBufSize, looped);
|
|
|
|
#else
|
|
|
|
source = new SDLSoundSource(srcOps, ext, streamBufSize, looped);
|
|
|
|
#endif
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
needsRewind = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void stopStream()
|
|
|
|
{
|
|
|
|
threadTermReq = true;
|
|
|
|
|
|
|
|
AL::Source::stop(alSrc);
|
|
|
|
|
|
|
|
if (thread)
|
|
|
|
{
|
|
|
|
SDL_WaitThread(thread, 0);
|
|
|
|
thread = 0;
|
|
|
|
needsRewind = true;
|
|
|
|
}
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
procFrames = 0;
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void startStream()
|
|
|
|
{
|
|
|
|
clearALQueue();
|
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
procFrames = 0;
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
preemptPause = false;
|
|
|
|
streamInited = false;
|
|
|
|
sourceExhausted = false;
|
|
|
|
threadTermReq = false;
|
|
|
|
thread = SDL_CreateThread(streamDataFun, "al_stream", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pauseStream()
|
|
|
|
{
|
|
|
|
SDL_LockMutex(pauseMut);
|
|
|
|
|
|
|
|
if (AL::Source::getState(alSrc) != AL_PLAYING)
|
|
|
|
preemptPause = true;
|
2013-09-01 14:27:21 +00:00
|
|
|
else
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Source::pause(alSrc);
|
|
|
|
|
|
|
|
SDL_UnlockMutex(pauseMut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void resumeStream()
|
|
|
|
{
|
|
|
|
SDL_LockMutex(pauseMut);
|
|
|
|
|
|
|
|
if (preemptPause)
|
|
|
|
preemptPause = false;
|
|
|
|
else
|
|
|
|
AL::Source::play(alSrc);
|
|
|
|
|
|
|
|
SDL_UnlockMutex(pauseMut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void checkStopped()
|
|
|
|
{
|
|
|
|
/* This only concerns the scenario where
|
|
|
|
* state is still 'Playing', but the stream
|
|
|
|
* has already ended on its own (EOF, Error) */
|
|
|
|
if (state != Playing)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If streaming thread hasn't queued up
|
|
|
|
* buffers yet there's not point in querying
|
|
|
|
* the AL source */
|
|
|
|
if (!streamInited)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If alSrc isn't playing, but we haven't
|
|
|
|
* exhausted the data source yet, we're just
|
|
|
|
* having a buffer underrun */
|
|
|
|
if (!sourceExhausted)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (AL::Source::getState(alSrc) == AL_PLAYING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
stopStream();
|
|
|
|
state = Stopped;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clearALQueue()
|
|
|
|
{
|
|
|
|
/* Unqueue all buffers */
|
|
|
|
ALint queuedBufs = AL::Source::getProcBufferCount(alSrc);
|
|
|
|
|
|
|
|
while (queuedBufs--)
|
|
|
|
AL::Source::unqueueBuffer(alSrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* thread func */
|
|
|
|
void streamData()
|
|
|
|
{
|
|
|
|
/* Fill up queue */
|
|
|
|
bool firstBuffer = true;
|
|
|
|
ALDataSource::Status status;
|
|
|
|
|
|
|
|
if (needsRewind)
|
|
|
|
source->reset();
|
|
|
|
|
|
|
|
for (int i = 0; i < streamBufs; ++i)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Buffer::ID buf = alBuf[i];
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
status = source->fillBuffer(buf);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (status == ALDataSource::Error)
|
|
|
|
return;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AL::Source::queueBuffer(alSrc, buf);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (firstBuffer)
|
|
|
|
{
|
|
|
|
resumeStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
firstBuffer = false;
|
|
|
|
streamInited = true;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (threadTermReq)
|
|
|
|
return;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (status == ALDataSource::EndOfStream)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
sourceExhausted = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Wait for buffers to be consumed, then
|
|
|
|
* refill and queue them up again */
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
ALint procBufs = AL::Source::getProcBufferCount(alSrc);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
while (procBufs--)
|
|
|
|
{
|
|
|
|
if (threadTermReq)
|
|
|
|
break;
|
|
|
|
|
|
|
|
AL::Buffer::ID buf = AL::Source::unqueueBuffer(alSrc);
|
|
|
|
|
|
|
|
if (buf == lastBuf)
|
|
|
|
{
|
|
|
|
/* Reset the processed sample count so
|
|
|
|
* querying the playback offset returns 0.0 again */
|
2013-12-02 20:40:05 +00:00
|
|
|
procFrames = source->loopStartFrames();
|
2013-11-30 11:00:11 +00:00
|
|
|
lastBuf = AL::Buffer::ID(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-02 20:40:05 +00:00
|
|
|
/* Add the frame count contained in this
|
2013-11-30 11:00:11 +00:00
|
|
|
* buffer to the total count */
|
|
|
|
ALint bits = AL::Buffer::getBits(buf);
|
|
|
|
ALint size = AL::Buffer::getSize(buf);
|
2013-12-02 20:40:05 +00:00
|
|
|
ALint chan = AL::Buffer::getChannels(buf);
|
2013-11-30 11:00:11 +00:00
|
|
|
|
2013-12-02 20:40:05 +00:00
|
|
|
procFrames += ((size / (bits / 8)) / chan);
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sourceExhausted)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
status = source->fillBuffer(buf);
|
|
|
|
|
|
|
|
if (status == ALDataSource::Error)
|
|
|
|
{
|
|
|
|
sourceExhausted = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AL::Source::queueBuffer(alSrc, buf);
|
|
|
|
|
|
|
|
/* In case of buffer underrun,
|
|
|
|
* start playing again */
|
|
|
|
if (AL::Source::getState(alSrc) == AL_STOPPED)
|
|
|
|
AL::Source::play(alSrc);
|
|
|
|
|
|
|
|
/* If this was the last buffer before the data
|
|
|
|
* source loop wrapped around again, mark it as
|
|
|
|
* such so we can catch it and reset the processed
|
|
|
|
* sample count once it gets unqueued */
|
|
|
|
if (status == ALDataSource::WrapAround)
|
|
|
|
lastBuf = buf;
|
|
|
|
|
|
|
|
if (status == ALDataSource::EndOfStream)
|
|
|
|
sourceExhausted = true;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (threadTermReq)
|
|
|
|
break;
|
|
|
|
|
|
|
|
SDL_Delay(AUDIO_SLEEP);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
static int streamDataFun(void *_self)
|
|
|
|
{
|
|
|
|
ALStream &self = *static_cast<ALStream*>(_self);
|
|
|
|
self.streamData();
|
|
|
|
return 0;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
struct AudioStream
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
std::string filename;
|
|
|
|
float volume;
|
|
|
|
float pitch;
|
|
|
|
} current;
|
|
|
|
|
|
|
|
/* Volume set with 'play()' */
|
|
|
|
float baseVolume;
|
|
|
|
|
|
|
|
/* Volume set by external threads,
|
|
|
|
* such as for fade-in/out.
|
|
|
|
* Multiplied with intVolume for final
|
|
|
|
* playback volume */
|
|
|
|
float fadeVolume;
|
|
|
|
float extVolume;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
bool extPaused;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
ALStream stream;
|
|
|
|
SDL_mutex *streamMut;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
struct
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Fade is in progress */
|
|
|
|
bool active;
|
|
|
|
|
|
|
|
/* Request fade thread to finish and
|
|
|
|
* cleanup (like it normally would) */
|
|
|
|
bool reqFini;
|
|
|
|
|
|
|
|
/* Request fade thread to terminate
|
|
|
|
* immediately */
|
|
|
|
bool reqTerm;
|
|
|
|
|
|
|
|
SDL_Thread *thread;
|
|
|
|
|
|
|
|
/* Amount of reduced absolute volume
|
|
|
|
* per ms of fade time */
|
|
|
|
float msStep;
|
|
|
|
|
|
|
|
/* Ticks at start of fade */
|
|
|
|
uint32_t startTicks;
|
|
|
|
} fade;
|
|
|
|
|
|
|
|
AudioStream(ALStream::LoopMode loopMode)
|
|
|
|
: baseVolume(1.0),
|
|
|
|
fadeVolume(1.0),
|
|
|
|
extVolume(1.0),
|
|
|
|
extPaused(false),
|
|
|
|
stream(loopMode)
|
|
|
|
{
|
|
|
|
current.volume = 1.0;
|
|
|
|
current.pitch = 1.0;
|
|
|
|
|
|
|
|
fade.active = false;
|
|
|
|
fade.thread = 0;
|
|
|
|
|
|
|
|
streamMut = SDL_CreateMutex();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
~AudioStream()
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
if (fade.thread)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
fade.reqTerm = true;
|
|
|
|
SDL_WaitThread(fade.thread, 0);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
lockStream();
|
|
|
|
|
|
|
|
stream.stop();
|
|
|
|
stream.close();
|
|
|
|
|
|
|
|
unlockStream();
|
|
|
|
|
|
|
|
SDL_DestroyMutex(streamMut);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
void play(const std::string &filename,
|
|
|
|
int volume,
|
|
|
|
int pitch)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
finiFadeInt();
|
|
|
|
|
|
|
|
lockStream();
|
|
|
|
|
|
|
|
float _volume = clamp<int>(volume, 0, 100) / 100.f;
|
|
|
|
float _pitch = clamp<int>(pitch, 50, 150) / 100.f;
|
|
|
|
|
|
|
|
ALStream::State sState = stream.queryState();
|
|
|
|
|
|
|
|
/* If all parameters match the current ones and we're
|
|
|
|
* still playing, there's nothing to do */
|
|
|
|
if (filename == current.filename
|
|
|
|
&& _volume == current.volume
|
|
|
|
&& _pitch == current.pitch
|
|
|
|
&& (sState == ALStream::Playing || sState == ALStream::Paused))
|
|
|
|
{
|
|
|
|
unlockStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
return;
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If all parameters except volume match the current ones,
|
|
|
|
* we update the volume and continue streaming */
|
|
|
|
if (filename == current.filename
|
|
|
|
&& _pitch == current.pitch
|
|
|
|
&& (sState == ALStream::Playing || sState == ALStream::Paused))
|
|
|
|
{
|
|
|
|
setBaseVolume(_volume);
|
|
|
|
current.volume = _volume;
|
|
|
|
unlockStream();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:49:35 +00:00
|
|
|
/* Requested audio file is different from current one */
|
|
|
|
bool diffFile = (filename != current.filename);
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
switch (sState)
|
|
|
|
{
|
|
|
|
case ALStream::Paused :
|
|
|
|
case ALStream::Playing :
|
|
|
|
stream.stop();
|
|
|
|
case ALStream::Stopped :
|
2013-12-04 13:49:35 +00:00
|
|
|
if (diffFile)
|
|
|
|
stream.close();
|
2013-11-30 11:00:11 +00:00
|
|
|
case ALStream::Closed :
|
2013-12-04 13:49:35 +00:00
|
|
|
if (diffFile)
|
|
|
|
stream.open(filename);
|
2013-11-30 11:00:11 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
setBaseVolume(_volume);
|
2013-12-04 13:49:35 +00:00
|
|
|
stream.setPitch(_pitch);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
current.filename = filename;
|
|
|
|
current.volume = _volume;
|
|
|
|
current.pitch = _pitch;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (!extPaused)
|
|
|
|
stream.play();
|
|
|
|
|
|
|
|
unlockStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
void stop()
|
|
|
|
{
|
|
|
|
finiFadeInt();
|
|
|
|
|
|
|
|
lockStream();
|
|
|
|
|
|
|
|
stream.stop();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
unlockStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
void fadeOut(int duration)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
lockStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
ALStream::State sState = stream.queryState();
|
|
|
|
|
|
|
|
if (fade.active)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
unlockStream();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sState == ALStream::Paused)
|
|
|
|
{
|
|
|
|
stream.stop();
|
|
|
|
unlockStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sState != ALStream::Playing)
|
|
|
|
{
|
|
|
|
unlockStream();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fade.thread)
|
|
|
|
{
|
|
|
|
fade.reqFini = true;
|
|
|
|
SDL_WaitThread(fade.thread, 0);
|
|
|
|
fade.thread = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fade.active = true;
|
|
|
|
fade.msStep = (1.0) / duration;
|
|
|
|
fade.reqFini = false;
|
|
|
|
fade.reqTerm = false;
|
|
|
|
fade.startTicks = SDL_GetTicks();
|
|
|
|
|
|
|
|
fade.thread = SDL_CreateThread(fadeThreadFun, "audio_fade", this);
|
|
|
|
|
|
|
|
unlockStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Any access to this classes 'stream' member,
|
|
|
|
* whether state query or modification, must be
|
|
|
|
* protected by a 'lock'/'unlock' pair */
|
|
|
|
void lockStream()
|
|
|
|
{
|
|
|
|
SDL_LockMutex(streamMut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unlockStream()
|
|
|
|
{
|
|
|
|
SDL_UnlockMutex(streamMut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setFadeVolume(float value)
|
|
|
|
{
|
|
|
|
fadeVolume = value;
|
|
|
|
updateVolume();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setExtVolume1(float value)
|
|
|
|
{
|
|
|
|
extVolume = value;
|
|
|
|
updateVolume();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void finiFadeInt()
|
|
|
|
{
|
|
|
|
if (!fade.thread)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fade.reqFini = true;
|
|
|
|
SDL_WaitThread(fade.thread, 0);
|
|
|
|
fade.thread = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void updateVolume()
|
|
|
|
{
|
|
|
|
stream.setVolume(baseVolume * fadeVolume * extVolume);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setBaseVolume(float value)
|
|
|
|
{
|
|
|
|
baseVolume = value;
|
|
|
|
updateVolume();
|
|
|
|
}
|
|
|
|
|
|
|
|
void fadeThread()
|
|
|
|
{
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
/* Just immediately terminate on request */
|
|
|
|
if (fade.reqTerm)
|
|
|
|
break;
|
|
|
|
|
|
|
|
lockStream();
|
|
|
|
|
|
|
|
uint32_t curDur = SDL_GetTicks() - fade.startTicks;
|
|
|
|
float resVol = 1.0 - (curDur*fade.msStep);
|
|
|
|
|
|
|
|
ALStream::State state = stream.queryState();
|
|
|
|
|
|
|
|
if (state != ALStream::Playing
|
|
|
|
|| resVol < 0
|
|
|
|
|| fade.reqFini)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
if (state != ALStream::Paused)
|
|
|
|
stream.stop();
|
|
|
|
|
|
|
|
setFadeVolume(1.0);
|
|
|
|
unlockStream();
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
setFadeVolume(resVol);
|
|
|
|
|
|
|
|
unlockStream();
|
|
|
|
|
|
|
|
SDL_Delay(AUDIO_SLEEP);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
fade.active = false;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static int fadeThreadFun(void *self)
|
|
|
|
{
|
|
|
|
static_cast<AudioStream*>(self)->fadeThread();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AudioPrivate
|
|
|
|
{
|
|
|
|
AudioStream bgm;
|
|
|
|
AudioStream bgs;
|
|
|
|
AudioStream me;
|
|
|
|
|
|
|
|
SoundEmitter se;
|
|
|
|
|
|
|
|
/* The 'MeWatch' is responsible for detecting
|
|
|
|
* a playing ME, quickly fading out the BGM and
|
|
|
|
* keeping it paused/stopped while the ME plays,
|
|
|
|
* and unpausing/fading the BGM back in again
|
|
|
|
* afterwards */
|
|
|
|
enum MeWatchState
|
|
|
|
{
|
|
|
|
MeNotPlaying,
|
|
|
|
BgmFadingOut,
|
|
|
|
MePlaying,
|
|
|
|
BgmFadingIn
|
|
|
|
};
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
SDL_Thread *thread;
|
|
|
|
bool active;
|
|
|
|
bool termReq;
|
|
|
|
MeWatchState state;
|
|
|
|
} meWatch;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
AudioPrivate()
|
|
|
|
: bgm(ALStream::Looped),
|
|
|
|
bgs(ALStream::Looped),
|
|
|
|
me(ALStream::NotLooped)
|
|
|
|
{
|
|
|
|
meWatch.active = false;
|
|
|
|
meWatch.termReq = false;
|
|
|
|
meWatch.state = MeNotPlaying;
|
|
|
|
meWatch.thread = SDL_CreateThread(meWatchFun, "audio_mewatch", this);
|
|
|
|
}
|
|
|
|
|
|
|
|
~AudioPrivate()
|
|
|
|
{
|
|
|
|
meWatch.termReq = true;
|
|
|
|
SDL_WaitThread(meWatch.thread, 0);
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
void meWatchFunInt()
|
|
|
|
{
|
|
|
|
const float fadeOutStep = 1.f / (200 / AUDIO_SLEEP);
|
|
|
|
const float fadeInStep = 1.f / (1000 / AUDIO_SLEEP);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
while (true)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
if (meWatch.termReq)
|
2013-09-01 14:27:21 +00:00
|
|
|
return;
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
switch (meWatch.state)
|
|
|
|
{
|
|
|
|
case MeNotPlaying:
|
|
|
|
{
|
|
|
|
me.lockStream();
|
|
|
|
|
|
|
|
if (me.stream.queryState() == ALStream::Playing)
|
|
|
|
{
|
|
|
|
/* ME playing detected. -> FadeOutBGM */
|
|
|
|
bgm.extPaused = true;
|
|
|
|
meWatch.state = BgmFadingOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
me.unlockStream();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
case BgmFadingOut :
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
me.lockStream();
|
|
|
|
|
|
|
|
if (me.stream.queryState() != ALStream::Playing)
|
|
|
|
{
|
|
|
|
/* ME has ended while fading OUT BGM. -> FadeInBGM */
|
|
|
|
me.unlockStream();
|
|
|
|
meWatch.state = BgmFadingIn;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bgm.lockStream();
|
|
|
|
|
|
|
|
float vol = bgm.extVolume;
|
|
|
|
vol -= fadeOutStep;
|
|
|
|
|
|
|
|
if (vol < 0 || bgm.stream.queryState() != ALStream::Playing)
|
|
|
|
{
|
|
|
|
/* Either BGM has fully faded out, or stopped midway. -> MePlaying */
|
|
|
|
bgm.setExtVolume1(0);
|
|
|
|
bgm.stream.pause();
|
|
|
|
meWatch.state = MePlaying;
|
|
|
|
bgm.unlockStream();
|
|
|
|
me.unlockStream();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bgm.setExtVolume1(vol);
|
|
|
|
bgm.unlockStream();
|
|
|
|
me.unlockStream();
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
case MePlaying :
|
|
|
|
{
|
|
|
|
me.lockStream();
|
|
|
|
|
|
|
|
if (me.stream.queryState() != ALStream::Playing)
|
|
|
|
{
|
|
|
|
/* ME has ended */
|
|
|
|
bgm.lockStream();
|
|
|
|
|
|
|
|
bgm.extPaused = false;
|
|
|
|
|
|
|
|
ALStream::State sState = bgm.stream.queryState();
|
|
|
|
|
|
|
|
if (sState == ALStream::Paused)
|
|
|
|
{
|
|
|
|
/* BGM is paused. -> FadeInBGM */
|
|
|
|
bgm.stream.play();
|
|
|
|
meWatch.state = BgmFadingIn;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* BGM is stopped. -> MeNotPlaying */
|
|
|
|
bgm.setExtVolume1(1.0);
|
|
|
|
meWatch.state = MeNotPlaying;
|
|
|
|
}
|
|
|
|
|
|
|
|
bgm.unlockStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
me.unlockStream();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BgmFadingIn :
|
|
|
|
{
|
|
|
|
bgm.lockStream();
|
|
|
|
|
|
|
|
if (bgm.stream.queryState() == ALStream::Stopped)
|
|
|
|
{
|
|
|
|
/* BGM stopped midway fade in. -> MeNotPlaying */
|
|
|
|
bgm.setExtVolume1(1.0);
|
|
|
|
meWatch.state = MeNotPlaying;
|
|
|
|
bgm.unlockStream();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
me.lockStream();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (me.stream.queryState() == ALStream::Playing)
|
|
|
|
{
|
|
|
|
/* ME started playing midway BGM fade in. -> FadeOutBGM */
|
|
|
|
bgm.extPaused = true;
|
|
|
|
meWatch.state = BgmFadingOut;
|
|
|
|
me.unlockStream();
|
|
|
|
bgm.unlockStream();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
float vol = bgm.extVolume;
|
|
|
|
vol += fadeInStep;
|
|
|
|
|
|
|
|
if (vol >= 1)
|
|
|
|
{
|
|
|
|
/* BGM fully faded in. -> MeNotPlaying */
|
|
|
|
vol = 1.0;
|
|
|
|
meWatch.state = MeNotPlaying;
|
|
|
|
}
|
|
|
|
|
|
|
|
bgm.setExtVolume1(vol);
|
|
|
|
|
|
|
|
me.unlockStream();
|
|
|
|
bgm.unlockStream();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Delay(AUDIO_SLEEP);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
2013-11-30 11:00:11 +00:00
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
static int meWatchFun(void *self)
|
|
|
|
{
|
|
|
|
static_cast<AudioPrivate*>(self)->meWatchFunInt();
|
|
|
|
|
|
|
|
return 0;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Audio::Audio()
|
|
|
|
: p(new AudioPrivate)
|
2013-11-30 11:00:11 +00:00
|
|
|
{}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
void Audio::bgmPlay(const char *filename,
|
|
|
|
int volume,
|
|
|
|
int pitch)
|
|
|
|
{
|
|
|
|
p->bgm.play(filename, volume, pitch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::bgmStop()
|
|
|
|
{
|
|
|
|
p->bgm.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::bgmFade(int time)
|
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
p->bgm.fadeOut(time);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Audio::bgsPlay(const char *filename,
|
|
|
|
int volume,
|
|
|
|
int pitch)
|
|
|
|
{
|
|
|
|
p->bgs.play(filename, volume, pitch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::bgsStop()
|
|
|
|
{
|
|
|
|
p->bgs.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::bgsFade(int time)
|
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
p->bgs.fadeOut(time);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Audio::mePlay(const char *filename,
|
|
|
|
int volume,
|
|
|
|
int pitch)
|
|
|
|
{
|
|
|
|
p->me.play(filename, volume, pitch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::meStop()
|
|
|
|
{
|
|
|
|
p->me.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::meFade(int time)
|
|
|
|
{
|
2013-11-30 11:00:11 +00:00
|
|
|
p->me.fadeOut(time);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Audio::sePlay(const char *filename,
|
|
|
|
int volume,
|
|
|
|
int pitch)
|
|
|
|
{
|
|
|
|
p->se.play(filename, volume, pitch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Audio::seStop()
|
|
|
|
{
|
|
|
|
p->se.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
Audio::~Audio() { delete p; }
|