axmol/CocosDenshion/linux/SimpleAudioEngineOpenAL.cpp

619 lines
16 KiB
C++
Raw Normal View History

2013-03-28 18:53:20 +08:00
/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include <map>
#include <string>
#include <stdio.h>
#include <unistd.h>
#include <AL/al.h>
#include <AL/alc.h>
#include <AL/alut.h>
#include <sys/stat.h>
#ifndef DISABLE_VORBIS
#include <vorbis/vorbisfile.h>
#endif
#include "SimpleAudioEngine.h"
#include "cocos2d.h"
USING_NS_CC;
using namespace std;
namespace CocosDenshion
{
struct soundData {
ALuint buffer;
ALuint source;
bool isLooped;
float pitch;
float pan;
float gain;
2013-03-28 18:53:20 +08:00
};
typedef map<string, soundData *> EffectsMap;
EffectsMap s_effects;
typedef enum {
PLAYING,
STOPPED,
PAUSED,
} playStatus;
static float s_volume = 1.0f;
static float s_effectVolume = 1.0f;
struct backgroundMusicData {
ALuint buffer;
ALuint source;
};
typedef map<string, backgroundMusicData *> BackgroundMusicsMap;
BackgroundMusicsMap s_backgroundMusics;
static ALuint s_backgroundSource = AL_NONE;
static SimpleAudioEngine *s_engine = 0;
static int checkALError(const char *funcName)
{
int err = alGetError();
if (err != AL_NO_ERROR)
{
switch (err)
{
case AL_INVALID_NAME:
fprintf(stderr, "AL_INVALID_NAME in %s\n", funcName);
break;
case AL_INVALID_ENUM:
fprintf(stderr, "AL_INVALID_ENUM in %s\n", funcName);
break;
case AL_INVALID_VALUE:
fprintf(stderr, "AL_INVALID_VALUE in %s\n", funcName);
break;
case AL_INVALID_OPERATION:
fprintf(stderr, "AL_INVALID_OPERATION in %s\n", funcName);
break;
case AL_OUT_OF_MEMORY:
fprintf(stderr, "AL_OUT_OF_MEMORY in %s\n", funcName);
break;
}
}
return err;
}
static void stopBackground(bool bReleaseData)
{
alSourceStop(s_backgroundSource);
if (bReleaseData)
{
for (BackgroundMusicsMap::iterator it = s_backgroundMusics.begin(); it != s_backgroundMusics.end(); ++it)
{
if (it->second->source == s_backgroundSource)
{
alDeleteBuffers(1, &it->second->buffer);
2013-03-29 16:32:50 +08:00
checkALError("stopBackground:alDeleteBuffers");
2013-03-28 18:53:20 +08:00
alDeleteSources(1, &it->second->source);
2013-03-29 16:32:50 +08:00
checkALError("stopBackground:alDeleteSources");
2013-03-28 18:53:20 +08:00
delete it->second;
s_backgroundMusics.erase(it);
break;
}
}
}
s_backgroundSource = AL_NONE;
}
static void setBackgroundVolume(float volume)
{
alSourcef(s_backgroundSource, AL_GAIN, volume);
}
SimpleAudioEngine::SimpleAudioEngine()
{
alutInit(0, 0);
2013-03-29 16:32:50 +08:00
checkALError("SimpleAudioEngine:alutInit");
2013-03-28 18:53:20 +08:00
}
SimpleAudioEngine::~SimpleAudioEngine()
{
alutExit();
}
SimpleAudioEngine* SimpleAudioEngine::sharedEngine()
{
if (!s_engine)
s_engine = new SimpleAudioEngine();
return s_engine;
}
void SimpleAudioEngine::end()
{
2013-03-29 16:32:50 +08:00
checkALError("end:init");
2013-03-28 18:53:20 +08:00
// clear all the sounds
EffectsMap::const_iterator end = s_effects.end();
for (EffectsMap::iterator it = s_effects.begin(); it != end; it++)
{
alSourceStop(it->second->source);
2013-03-29 16:32:50 +08:00
checkALError("end:alSourceStop");
2013-03-28 18:53:20 +08:00
alDeleteBuffers(1, &it->second->buffer);
2013-03-29 16:32:50 +08:00
checkALError("end:alDeleteBuffers");
2013-03-28 18:53:20 +08:00
alDeleteSources(1, &it->second->source);
2013-03-29 16:32:50 +08:00
checkALError("end:alDeleteSources");
2013-03-28 18:53:20 +08:00
delete it->second;
}
s_effects.clear();
// and the background too
stopBackground(true);
for (BackgroundMusicsMap::iterator it = s_backgroundMusics.begin(); it != s_backgroundMusics.end(); ++it)
{
alSourceStop(it->second->source);
2013-03-29 16:32:50 +08:00
checkALError("end:alSourceStop");
2013-03-28 18:53:20 +08:00
alDeleteBuffers(1, &it->second->buffer);
2013-03-29 16:32:50 +08:00
checkALError("end:alDeleteBuffers");
2013-03-28 18:53:20 +08:00
alDeleteSources(1, &it->second->source);
2013-03-29 16:32:50 +08:00
checkALError("end:alDeleteSources");
2013-03-28 18:53:20 +08:00
delete it->second;
}
s_backgroundMusics.clear();
}
#ifndef DISABLE_VORBIS
//
// OGG support
//
static bool isOGGFile(const char *pszFilePath)
{
FILE *file;
OggVorbis_File ogg_file;
int result;
file = fopen(pszFilePath, "rb");
result = ov_test(file, &ogg_file, 0, 0);
ov_clear(&ogg_file);
return (result == 0);
}
static ALuint createBufferFromOGG(const char *pszFilePath)
{
ALuint buffer;
OggVorbis_File ogg_file;
vorbis_info* info;
ALenum format;
int result;
int section;
unsigned int size = 0;
if (ov_fopen(pszFilePath, &ogg_file) < 0)
{
ov_clear(&ogg_file);
fprintf(stderr, "Could not open OGG file %s\n", pszFilePath);
return -1;
}
info = ov_info(&ogg_file, -1);
if (info->channels == 1)
format = AL_FORMAT_MONO16;
else
format = AL_FORMAT_STEREO16;
// size = #samples * #channels * 2 (for 16 bit)
unsigned int data_size = ov_pcm_total(&ogg_file, -1) * info->channels * 2;
char* data = new char[data_size];
while (size < data_size)
{
result = ov_read(&ogg_file, data + size, data_size - size, 0, 2, 1, &section);
if (result > 0)
{
size += result;
}
else if (result < 0)
{
delete [] data;
fprintf(stderr, "OGG file problem %s\n", pszFilePath);
return -1;
}
else
{
break;
}
}
if (size == 0)
{
delete [] data;
fprintf(stderr, "Unable to read OGG data\n");
return -1;
}
// clear al errors
2013-03-29 16:32:50 +08:00
checkALError("createBufferFromOGG:init");
2013-03-28 18:53:20 +08:00
// Load audio data into a buffer.
alGenBuffers(1, &buffer);
2013-03-29 16:32:50 +08:00
if (checkALError("createBufferFromOGG:alGenBuffers") != AL_NO_ERROR)
2013-03-28 18:53:20 +08:00
{
fprintf(stderr, "Couldn't generate a buffer for OGG file\n");
delete [] data;
return buffer;
}
alBufferData(buffer, format, data, data_size, info->rate);
2013-03-29 16:32:50 +08:00
checkALError("createBufferFromOGG:alBufferData");
2013-03-28 18:53:20 +08:00
delete [] data;
ov_clear(&ogg_file);
return buffer;
}
#endif
//
// background audio
//
void SimpleAudioEngine::preloadBackgroundMusic(const char* pszFilePath)
{
// Changing file path to full path
std::string fullPath = FileUtils::sharedFileUtils()->fullPathForFilename(pszFilePath);
2013-03-28 18:53:20 +08:00
BackgroundMusicsMap::const_iterator it = s_backgroundMusics.find(fullPath);
if (it == s_backgroundMusics.end())
{
ALuint buffer = AL_NONE;
#ifndef DISABLE_VORBIS
if (isOGGFile(fullPath.data()))
{
buffer = createBufferFromOGG(fullPath.data());
}
else
#endif
buffer = alutCreateBufferFromFile(fullPath.data());
2013-03-29 16:32:50 +08:00
checkALError("preloadBackgroundMusic:createBuffer");
2013-03-28 18:53:20 +08:00
if (buffer == AL_NONE)
{
fprintf(stderr, "Error loading file: '%s'\n", fullPath.data());
alDeleteBuffers(1, &buffer);
return;
}
ALuint source = AL_NONE;
alGenSources(1, &source);
2013-03-29 16:32:50 +08:00
checkALError("preloadBackgroundMusic:alGenSources");
2013-03-28 18:53:20 +08:00
alSourcei(source, AL_BUFFER, buffer);
2013-03-29 16:32:50 +08:00
checkALError("preloadBackgroundMusic:alSourcei");
2013-03-28 18:53:20 +08:00
backgroundMusicData* data = new backgroundMusicData();
data->buffer = buffer;
data->source = source;
s_backgroundMusics.insert(BackgroundMusicsMap::value_type(fullPath, data));
}
}
void SimpleAudioEngine::playBackgroundMusic(const char* pszFilePath, bool bLoop)
{
if (s_backgroundSource != AL_NONE)
stopBackgroundMusic(false);
// Changing file path to full path
std::string fullPath = FileUtils::sharedFileUtils()->fullPathForFilename(pszFilePath);
2013-03-28 18:53:20 +08:00
BackgroundMusicsMap::const_iterator it = s_backgroundMusics.find(fullPath);
if (it == s_backgroundMusics.end())
{
preloadBackgroundMusic(fullPath.c_str());
it = s_backgroundMusics.find(fullPath);
}
if (it != s_backgroundMusics.end())
{
s_backgroundSource = it->second->source;
alSourcei(s_backgroundSource, AL_LOOPING, bLoop ? AL_TRUE : AL_FALSE);
alSourcePlay(s_backgroundSource);
2013-03-29 16:32:50 +08:00
checkALError("playBackgroundMusic:alSourcePlay");
2013-03-28 18:53:20 +08:00
}
}
void SimpleAudioEngine::stopBackgroundMusic(bool bReleaseData)
{
stopBackground(bReleaseData);
}
void SimpleAudioEngine::pauseBackgroundMusic()
{
ALint state;
alGetSourcei(s_backgroundSource, AL_SOURCE_STATE, &state);
if (state == AL_PLAYING)
alSourcePause(s_backgroundSource);
2013-03-29 16:32:50 +08:00
checkALError("pauseBackgroundMusic:alSourcePause");
2013-03-28 18:53:20 +08:00
}
void SimpleAudioEngine::resumeBackgroundMusic()
{
ALint state;
alGetSourcei(s_backgroundSource, AL_SOURCE_STATE, &state);
if (state == AL_PAUSED)
alSourcePlay(s_backgroundSource);
2013-03-29 16:32:50 +08:00
checkALError("resumeBackgroundMusic:alSourcePlay");
2013-03-28 18:53:20 +08:00
}
void SimpleAudioEngine::rewindBackgroundMusic()
{
alSourceRewind(s_backgroundSource);
2013-03-29 16:32:50 +08:00
checkALError("rewindBackgroundMusic:alSourceRewind");
2013-03-28 18:53:20 +08:00
}
bool SimpleAudioEngine::willPlayBackgroundMusic()
{
return true;
}
bool SimpleAudioEngine::isBackgroundMusicPlaying()
{
ALint play_status;
alGetSourcei(s_backgroundSource, AL_SOURCE_STATE, &play_status);
return (play_status == AL_PLAYING);
}
float SimpleAudioEngine::getBackgroundMusicVolume()
{
return s_volume;
}
void SimpleAudioEngine::setBackgroundMusicVolume(float volume)
{
if (s_volume != volume && volume >= -0.0001 && volume <= 1.0001)
{
s_volume = volume;
setBackgroundVolume(volume);
}
}
//
// Effect audio (using OpenAL)
//
float SimpleAudioEngine::getEffectsVolume()
{
return s_effectVolume;
}
void SimpleAudioEngine::setEffectsVolume(float volume)
{
if (volume != s_effectVolume)
{
EffectsMap::const_iterator end = s_effects.end();
for (EffectsMap::const_iterator it = s_effects.begin(); it != end; it++)
{
alSourcef(it->second->source, AL_GAIN, volume);
}
s_effectVolume = volume;
}
}
unsigned int SimpleAudioEngine::playEffect(const char* pszFilePath, bool bLoop,
float pitch, float pan, float gain)
{
std::string fullPath = FileUtils::sharedFileUtils()->fullPathForFilename(pszFilePath);
2013-03-28 18:53:20 +08:00
EffectsMap::iterator iter = s_effects.find(fullPath);
if (iter == s_effects.end())
{
preloadEffect(fullPath.c_str());
// let's try again
iter = s_effects.find(fullPath);
if (iter == s_effects.end())
{
fprintf(stderr, "could not find play sound %s\n", fullPath.c_str());
return -1;
}
}
2013-03-29 16:32:50 +08:00
checkALError("playEffect:init");
soundData &d = *iter->second;
d.isLooped = bLoop;
d.pitch = pitch;
d.pan = pan;
d.gain = gain;
alSourcei(d.source, AL_LOOPING, d.isLooped ? AL_TRUE : AL_FALSE);
alSourcef(d.source, AL_GAIN, d.gain);
alSourcef(d.source, AL_PITCH, d.pitch);
float sourcePosAL[] = {d.pan, 0.0f, 0.0f};//Set position - just using left and right panning
alSourcefv(d.source, AL_POSITION, sourcePosAL);
alSourcePlay(d.source);
2013-03-29 16:32:50 +08:00
checkALError("playEffect:alSourcePlay");
2013-03-28 18:53:20 +08:00
return d.source;
}
2013-03-28 18:53:20 +08:00
void SimpleAudioEngine::stopEffect(unsigned int nSoundId)
{
alSourceStop(nSoundId);
2013-03-29 16:32:50 +08:00
checkALError("stopEffect:alSourceStop");
2013-03-28 18:53:20 +08:00
}
void SimpleAudioEngine::preloadEffect(const char* pszFilePath)
{
// Changing file path to full path
std::string fullPath = FileUtils::sharedFileUtils()->fullPathForFilename(pszFilePath);
2013-03-28 18:53:20 +08:00
EffectsMap::iterator iter = s_effects.find(fullPath);
// check if we have this already
if (iter == s_effects.end())
{
ALuint buffer;
ALuint source;
soundData *data = new soundData;
string path = fullPath;
2013-03-29 16:32:50 +08:00
checkALError("preloadEffect:init");
2013-03-28 18:53:20 +08:00
#ifndef DISABLE_VORBIS
if (isOGGFile(path.data()))
{
buffer = createBufferFromOGG(path.data());
}
else
#endif
{
buffer = alutCreateBufferFromFile(path.data());
2013-03-29 16:32:50 +08:00
checkALError("preloadEffect:createBufferFromFile");
2013-03-28 18:53:20 +08:00
}
if (buffer == AL_NONE)
{
fprintf(stderr, "Error loading file: '%s'\n", path.data());
alDeleteBuffers(1, &buffer);
return;
}
alGenSources(1, &source);
2013-03-29 16:32:50 +08:00
if (checkALError("preloadEffect:alGenSources") != AL_NO_ERROR)
2013-03-28 18:53:20 +08:00
{
alDeleteBuffers(1, &buffer);
return;
}
alSourcei(source, AL_BUFFER, buffer);
2013-03-29 16:32:50 +08:00
checkALError("preloadEffect:alSourcei");
2013-03-28 18:53:20 +08:00
data->isLooped = false;
data->buffer = buffer;
data->source = source;
s_effects.insert(EffectsMap::value_type(fullPath, data));
}
}
void SimpleAudioEngine::unloadEffect(const char* pszFilePath)
{
// Changing file path to full path
std::string fullPath = FileUtils::sharedFileUtils()->fullPathForFilename(pszFilePath);
2013-03-28 18:53:20 +08:00
EffectsMap::iterator iter = s_effects.find(fullPath);
if (iter != s_effects.end())
{
2013-03-29 16:32:50 +08:00
checkALError("unloadEffect:init");
2013-03-28 18:53:20 +08:00
alSourceStop(iter->second->source);
2013-03-29 16:32:50 +08:00
checkALError("unloadEffect:alSourceStop");
2013-03-28 18:53:20 +08:00
alDeleteSources(1, &iter->second->source);
2013-03-29 16:32:50 +08:00
checkALError("unloadEffect:DeletSources");
2013-03-28 18:53:20 +08:00
alDeleteBuffers(1, &iter->second->buffer);
2013-03-29 16:32:50 +08:00
checkALError("unloadEffect:alDeleteBuffers");
2013-03-28 18:53:20 +08:00
delete iter->second;
s_effects.erase(iter);
}
}
void SimpleAudioEngine::pauseEffect(unsigned int nSoundId)
{
ALint state;
alGetSourcei(nSoundId, AL_SOURCE_STATE, &state);
if (state == AL_PLAYING)
alSourcePause(nSoundId);
2013-03-29 16:32:50 +08:00
checkALError("pauseEffect:alSourcePause");
2013-03-28 18:53:20 +08:00
}
void SimpleAudioEngine::pauseAllEffects()
{
EffectsMap::iterator iter = s_effects.begin();
ALint state;
while (iter != s_effects.end())
{
alGetSourcei(iter->second->source, AL_SOURCE_STATE, &state);
if (state == AL_PLAYING)
alSourcePause(iter->second->source);
2013-03-29 16:32:50 +08:00
checkALError("pauseAllEffects:alSourcePause");
2013-03-28 18:53:20 +08:00
++iter;
}
}
void SimpleAudioEngine::resumeEffect(unsigned int nSoundId)
{
ALint state;
alGetSourcei(nSoundId, AL_SOURCE_STATE, &state);
if (state == AL_PAUSED)
alSourcePlay(nSoundId);
2013-03-29 16:32:50 +08:00
checkALError("resumeEffect:alSourcePlay");
2013-03-28 18:53:20 +08:00
}
void SimpleAudioEngine::resumeAllEffects()
{
EffectsMap::iterator iter = s_effects.begin();
ALint state;
while (iter != s_effects.end())
{
alGetSourcei(iter->second->source, AL_SOURCE_STATE, &state);
if (state == AL_PAUSED)
alSourcePlay(iter->second->source);
2013-03-29 16:32:50 +08:00
checkALError("resumeAllEffects:alSourcePlay");
2013-03-28 18:53:20 +08:00
++iter;
}
}
void SimpleAudioEngine::stopAllEffects()
{
EffectsMap::iterator iter = s_effects.begin();
if (iter != s_effects.end())
{
2013-03-29 16:32:50 +08:00
checkALError("stopAllEffects:init");
2013-03-28 18:53:20 +08:00
alSourceStop(iter->second->source);
2013-03-29 16:32:50 +08:00
checkALError("stopAllEffects:alSourceStop");
2013-03-28 18:53:20 +08:00
}
}
}