mirror of https://github.com/axmolengine/axmol.git
Added support to play more than one sound fx at once
This commit is contained in:
parent
0a7a000c2d
commit
269efd0b74
|
@ -0,0 +1,281 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2010 cocos2d-x.org
|
||||
Copyright (c) 2011 Giovanni Zito
|
||||
|
||||
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 "SimpleAudioEngine.h"
|
||||
#include "s3e.h"
|
||||
#include "IwUtil.h"
|
||||
|
||||
#include <string>
|
||||
#include <map>
|
||||
|
||||
using namespace std ;
|
||||
|
||||
#define GEOM_ONE_FP8 0x100 // volume is in .8 fixed point format
|
||||
|
||||
namespace CocosDenshion
|
||||
{
|
||||
class SoundFx {
|
||||
public:
|
||||
SoundFx() : data(0), size(0) {}
|
||||
SoundFx(void* pData, int32 nSize) : data((int16*)pData), size(nSize) {}
|
||||
|
||||
int16* data ;
|
||||
int32 size ;
|
||||
};
|
||||
|
||||
static int16* g_AudioBuffer = 0;
|
||||
static int32 g_AudioFileSize = 0;
|
||||
// static int g_SoundChannel = 0;
|
||||
// static bool g_SoundIsPlaying = false;
|
||||
// static s3eBool g_MP3Support = S3E_FALSE;
|
||||
|
||||
|
||||
typedef map<string,SoundFx> SoundFxMap ;
|
||||
static SoundFxMap* g_pSoundFxMap = 0 ;
|
||||
|
||||
static SimpleAudioEngine *s_pEngine = 0 ;
|
||||
|
||||
SimpleAudioEngine::SimpleAudioEngine()
|
||||
{
|
||||
g_pSoundFxMap = new SoundFxMap() ;
|
||||
}
|
||||
|
||||
SimpleAudioEngine::~SimpleAudioEngine()
|
||||
{
|
||||
}
|
||||
|
||||
SimpleAudioEngine* SimpleAudioEngine::sharedEngine()
|
||||
{
|
||||
if (! s_pEngine) {
|
||||
s_pEngine = new SimpleAudioEngine();
|
||||
}
|
||||
|
||||
return s_pEngine;
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::end()
|
||||
{
|
||||
s3eAudioStop();
|
||||
|
||||
if( g_AudioBuffer) {
|
||||
free(g_AudioBuffer);
|
||||
g_AudioBuffer = 0 ;
|
||||
}
|
||||
|
||||
if(s_pEngine) {
|
||||
s_pEngine->stopAllEffects() ;
|
||||
delete s_pEngine;
|
||||
s_pEngine=0;
|
||||
}
|
||||
|
||||
for( SoundFxMap::iterator it = g_pSoundFxMap->begin(); it!=g_pSoundFxMap->end(); it++ ) {
|
||||
if( it->second.data != 0 ) free( it->second.data ) ;
|
||||
}
|
||||
if( g_pSoundFxMap ) {
|
||||
delete g_pSoundFxMap ;
|
||||
g_pSoundFxMap = 0 ;
|
||||
}
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::setResource(const char* pszZipFileName)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::preloadBackgroundMusic(const char* pszFilePath)
|
||||
{
|
||||
s3eFile *fileHandle = s3eFileOpen(pszFilePath, "rb");
|
||||
|
||||
IwAssertMsg(GAME, fileHandle, ("Open file %s Failed. s3eFileError Code : %i", pszFilePath, s3eFileGetError()));
|
||||
|
||||
g_AudioFileSize = s3eFileGetSize(fileHandle);
|
||||
g_AudioBuffer = (int16*)malloc(g_AudioFileSize);
|
||||
memset(g_AudioBuffer, 0, g_AudioFileSize);
|
||||
s3eFileRead(g_AudioBuffer, g_AudioFileSize, 1, fileHandle);
|
||||
s3eFileClose(fileHandle);
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::playBackgroundMusic(const char* pszFilePath, bool bLoop)
|
||||
{
|
||||
s3eResult result;
|
||||
|
||||
result = s3eAudioPlayFromBuffer(g_AudioBuffer, g_AudioFileSize, bLoop ? 0 : 1);
|
||||
|
||||
if ( result == S3E_RESULT_ERROR)
|
||||
{
|
||||
if (bLoop)
|
||||
{
|
||||
result = s3eAudioPlay(pszFilePath, 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = s3eAudioPlay(pszFilePath, 1);
|
||||
}
|
||||
}
|
||||
|
||||
if ( result == S3E_RESULT_ERROR)
|
||||
{
|
||||
IwAssert(GAME, ("Play music %s Failed. Error Code : %s", pszFilePath, s3eAudioGetErrorString()));
|
||||
}
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::stopBackgroundMusic(bool bReleaseData)
|
||||
{
|
||||
s3eAudioStop();
|
||||
|
||||
if (bReleaseData)
|
||||
{
|
||||
free(g_AudioBuffer);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::pauseBackgroundMusic()
|
||||
{
|
||||
s3eAudioPause();
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::resumeBackgroundMusic()
|
||||
{
|
||||
s3eAudioResume();
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::rewindBackgroundMusic()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool SimpleAudioEngine::willPlayBackgroundMusic()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool SimpleAudioEngine::isBackgroundMusicPlaying()
|
||||
{
|
||||
return s3eAudioIsPlaying();
|
||||
}
|
||||
|
||||
float SimpleAudioEngine::getBackgroundMusicVolume()
|
||||
{
|
||||
|
||||
return s3eAudioGetInt(S3E_AUDIO_VOLUME) / (float)GEOM_ONE_FP8;
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::setBackgroundMusicVolume(float volume)
|
||||
{
|
||||
s3eAudioSetInt(S3E_AUDIO_VOLUME, (int32)(volume * (float)GEOM_ONE_FP8));
|
||||
}
|
||||
|
||||
float SimpleAudioEngine::getEffectsVolume()
|
||||
{
|
||||
return s3eSoundGetInt(S3E_SOUND_VOLUME) / (float)GEOM_ONE_FP8;
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::setEffectsVolume(float volume)
|
||||
{
|
||||
s3eSoundSetInt(S3E_SOUND_VOLUME, (int32)(volume * (float)GEOM_ONE_FP8));
|
||||
}
|
||||
|
||||
unsigned int SimpleAudioEngine::playEffect(const char* pszFilePath, bool bLoop)
|
||||
{
|
||||
SoundFxMap::iterator it = g_pSoundFxMap->find(pszFilePath) ;
|
||||
|
||||
int16* buff = 0 ;
|
||||
if( it==g_pSoundFxMap->end() ) {
|
||||
preloadEffect(pszFilePath) ;
|
||||
}
|
||||
buff = (*g_pSoundFxMap)[pszFilePath].data ;
|
||||
|
||||
int channel = s3eSoundGetFreeChannel();
|
||||
|
||||
s3eSoundChannelPlay(channel, buff, (*g_pSoundFxMap)[pszFilePath].size/2, (bLoop ? 0 : 1), 0);
|
||||
|
||||
if (s3eSoundGetError()!= S3E_SOUND_ERR_NONE) {
|
||||
IwAssertMsg(GAME, false, ("Play sound %s Failed. Error Code : %s", pszFilePath, s3eSoundGetErrorString()));
|
||||
}
|
||||
|
||||
return channel;
|
||||
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::stopEffect(unsigned int nSoundId)
|
||||
{
|
||||
s3eSoundChannelStop(nSoundId);
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::preloadEffect(const char* pszFilePath)
|
||||
{
|
||||
SoundFxMap::iterator it = g_pSoundFxMap->find(pszFilePath) ;
|
||||
if( it==g_pSoundFxMap->end() ) {
|
||||
s3eFile *fileHandle = s3eFileOpen(pszFilePath, "rb");
|
||||
|
||||
IwAssertMsg(GAME, fileHandle, ("Open file %s Failed. s3eFileError Code : %i", pszFilePath, s3eFileGetError()));
|
||||
|
||||
int32 fileSize = s3eFileGetSize(fileHandle);
|
||||
int16* buff = (int16*)malloc(fileSize);
|
||||
|
||||
(*g_pSoundFxMap)[pszFilePath] = SoundFx(buff,fileSize) ;
|
||||
memset(buff, 0, fileSize);
|
||||
s3eFileRead(buff, fileSize, 1, fileHandle);
|
||||
s3eFileClose(fileHandle);
|
||||
}
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::unloadEffect(const char* pszFilePath)
|
||||
{
|
||||
// effect must not be playing!
|
||||
|
||||
SoundFxMap::iterator it = g_pSoundFxMap->find(pszFilePath) ;
|
||||
if( it != g_pSoundFxMap->end() ) {
|
||||
free(it->second.data) ;
|
||||
g_pSoundFxMap->erase(it) ;
|
||||
}
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::pauseEffect(unsigned int nSoundId)
|
||||
{
|
||||
s3eSoundChannelPause (nSoundId);
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::pauseAllEffects()
|
||||
{
|
||||
s3eSoundPauseAllChannels ();
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::resumeEffect(unsigned int nSoundId)
|
||||
{
|
||||
s3eSoundChannelResume (nSoundId);
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::resumeAllEffects()
|
||||
{
|
||||
s3eSoundResumeAllChannels ();
|
||||
}
|
||||
|
||||
void SimpleAudioEngine::stopAllEffects()
|
||||
{
|
||||
s3eSoundStopAllChannels ();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue