2010-10-18 15:07:55 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SIMPLE_AUDIO_ENGINE_H_
|
|
|
|
#define _SIMPLE_AUDIO_ENGINE_H_
|
|
|
|
|
|
|
|
#include "../Export.h"
|
|
|
|
|
2010-11-12 16:33:50 +08:00
|
|
|
/**
|
|
|
|
@struct T_SoundResInfo
|
|
|
|
@brief The data type of resource name and resource ID
|
|
|
|
*/
|
2010-10-21 10:21:24 +08:00
|
|
|
typedef struct _tResourceInfo
|
|
|
|
{
|
|
|
|
const char* FileName;
|
|
|
|
int nResID;
|
|
|
|
} T_SoundResInfo;
|
|
|
|
|
2010-10-18 15:07:55 +08:00
|
|
|
/*!***************************************************************************
|
|
|
|
@class SimpleAudioEngine
|
|
|
|
@brief offer a VERY simple interface to play background music & sound effect
|
|
|
|
*****************************************************************************/
|
|
|
|
class EXPORT_DLL SimpleAudioEngine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SimpleAudioEngine();
|
|
|
|
~SimpleAudioEngine();
|
|
|
|
|
2010-11-12 16:33:50 +08:00
|
|
|
/**
|
|
|
|
@brief Get the shared Engine object,it will new one when first time be called
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
static SimpleAudioEngine* getSharedEngine();
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Release the shared Engine object
|
|
|
|
*/
|
2010-11-11 11:18:58 +08:00
|
|
|
static void release();
|
2010-10-18 15:07:55 +08:00
|
|
|
|
2010-11-12 16:33:50 +08:00
|
|
|
/**
|
|
|
|
@brief set the sound ResInfo,it's only used on platform-uphone now
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void setSoundResInfo(const T_SoundResInfo ResInfo[], int nCount);
|
|
|
|
|
2010-11-12 16:33:50 +08:00
|
|
|
/**
|
|
|
|
@brief Set the resource entry,it's only used on platform-uphone now
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void setResourceEntry(const void* pResEntry);
|
|
|
|
|
2010-11-12 16:33:50 +08:00
|
|
|
/**
|
|
|
|
@brief Play background music
|
|
|
|
@param pszFilePath The path of the background music file,or the FileName of T_SoundResInfo
|
|
|
|
@param bLoop Whether the background music loop or not
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void playBackgroundMusic(const char* pszFilePath, bool bLoop = false);
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Stop playing background music
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void stopBackgroundMusic();
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Pause playing background music
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void pauseBackgroundMusic();
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Resume playing background music
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void resumeBackgroundMusic();
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Rewind playing background music
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void rewindBackgroundMusic();
|
|
|
|
|
|
|
|
bool willPlayBackgroundMusic();
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Whether the background music is playing
|
|
|
|
@return If is playing return true,or return false
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
bool isBackgroundMusicPlaying();
|
|
|
|
|
|
|
|
// properties
|
2010-10-21 14:44:02 +08:00
|
|
|
/**
|
|
|
|
@brief The volume of the background music max value is 100,the min value is 0
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
int GetBackgroundMusicVolume();
|
|
|
|
void SetBackgroundMusicVolume(int volume);
|
|
|
|
|
2010-10-21 14:44:02 +08:00
|
|
|
/**
|
|
|
|
@brief The volume of the effects max value is 100,the min value is 0
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
int GetEffectsVolume();
|
|
|
|
void SetEffectsVolume(int volume);
|
|
|
|
|
|
|
|
// for sound effects
|
2010-11-12 16:33:50 +08:00
|
|
|
/**
|
|
|
|
@brief Play sound effect
|
|
|
|
@param pszFilePath The path of the effect file,or the FileName of T_SoundResInfo
|
|
|
|
@return If play succeed return the effect sound ID,or return 0
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
int playEffect(const char* pszFilePath);
|
2010-11-12 16:33:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Stop playing sound effect
|
|
|
|
@param nSoundId The return value of function playEffect or preloadEffect
|
|
|
|
*/
|
2010-10-18 15:07:55 +08:00
|
|
|
void stopEffect(int nSoundId);
|
|
|
|
|
|
|
|
/*!***************************************************************************
|
|
|
|
@brief preload a compressed audio file
|
|
|
|
@details the compressed audio will be decode to wave, then write into an
|
|
|
|
internal buffer in SimpleaudioEngine
|
|
|
|
@param[in] pszFilePath the relative path to currently executing program
|
|
|
|
@return >0 preload success, return the SoundId
|
|
|
|
@return ==0 can't read the file, or unsupported audio format
|
|
|
|
*****************************************************************************/
|
|
|
|
int preloadEffect(const char* pszFilePath);
|
|
|
|
|
|
|
|
|
|
|
|
/*!***************************************************************************
|
|
|
|
@brief unload the preloaded effect from internal buffer
|
|
|
|
@param[in] nSoundId the sound id returned from preloadEffect
|
|
|
|
*****************************************************************************/
|
|
|
|
void unloadEffect(int nSoundId);
|
|
|
|
|
|
|
|
|
2010-10-22 09:39:14 +08:00
|
|
|
/*!***************************************************************************
|
|
|
|
@brief unload all preloaded effect from internal buffer
|
|
|
|
*****************************************************************************/
|
|
|
|
void unloadEffectAll();
|
|
|
|
|
|
|
|
|
2010-10-18 15:07:55 +08:00
|
|
|
/*!***************************************************************************
|
|
|
|
@brief play the preloaded effect
|
|
|
|
@param[in] nSoundId the sound id returned from preloadEffect
|
|
|
|
*****************************************************************************/
|
|
|
|
void playPreloadedEffect(int nSoundId);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _SIMPLE_AUDIO_ENGINE_H_
|