mirror of https://github.com/axmolengine/axmol.git
206 lines
5.2 KiB
C++
206 lines
5.2 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2013 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 "CCComAudio.h"
|
|
#include "SimpleAudioEngine.h"
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
CCComAudio::CCComAudio(void)
|
|
{
|
|
m_strName = "Audio";
|
|
}
|
|
|
|
CCComAudio::~CCComAudio(void)
|
|
{
|
|
|
|
}
|
|
|
|
bool CCComAudio::init()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void CCComAudio::onEnter()
|
|
{
|
|
}
|
|
|
|
void CCComAudio::onExit()
|
|
{
|
|
stopBackgroundMusic(true);
|
|
stopAllEffects();
|
|
}
|
|
|
|
bool CCComAudio::isEnabled() const
|
|
{
|
|
return m_bEnabled;
|
|
}
|
|
|
|
void CCComAudio::setEnabled(bool b)
|
|
{
|
|
m_bEnabled = b;
|
|
}
|
|
|
|
CCComAudio* CCComAudio::create(void)
|
|
{
|
|
CCComAudio * pRet = new CCComAudio();
|
|
if (pRet && pRet->init())
|
|
{
|
|
pRet->autorelease();
|
|
}
|
|
else
|
|
{
|
|
CC_SAFE_DELETE(pRet);
|
|
}
|
|
return pRet;
|
|
}
|
|
|
|
void CCComAudio::end()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::end();
|
|
}
|
|
|
|
void CCComAudio::preloadBackgroundMusic(const char* pszFilePath)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->preloadBackgroundMusic(pszFilePath);
|
|
}
|
|
|
|
void CCComAudio::playBackgroundMusic(const char* pszFilePath, bool bLoop)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->playBackgroundMusic(pszFilePath, bLoop);
|
|
}
|
|
|
|
void CCComAudio::playBackgroundMusic(const char* pszFilePath)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->playBackgroundMusic(pszFilePath);
|
|
}
|
|
|
|
void CCComAudio::stopBackgroundMusic(bool bReleaseData)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->stopBackgroundMusic(bReleaseData);
|
|
}
|
|
|
|
void CCComAudio::stopBackgroundMusic()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->stopBackgroundMusic();
|
|
}
|
|
|
|
void CCComAudio::pauseBackgroundMusic()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
|
}
|
|
|
|
void CCComAudio::resumeBackgroundMusic()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
|
}
|
|
|
|
void CCComAudio::rewindBackgroundMusic()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->rewindBackgroundMusic();
|
|
}
|
|
|
|
bool CCComAudio::willPlayBackgroundMusic()
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->willPlayBackgroundMusic();
|
|
}
|
|
|
|
bool CCComAudio::isBackgroundMusicPlaying()
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->isBackgroundMusicPlaying();
|
|
}
|
|
|
|
float CCComAudio::getBackgroundMusicVolume()
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->getBackgroundMusicVolume();
|
|
}
|
|
|
|
void CCComAudio::setBackgroundMusicVolume(float volume)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->setBackgroundMusicVolume(volume);
|
|
}
|
|
|
|
float CCComAudio::getEffectsVolume()
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->getEffectsVolume();
|
|
}
|
|
|
|
void CCComAudio::setEffectsVolume(float volume)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->setEffectsVolume(volume);
|
|
}
|
|
|
|
unsigned int CCComAudio::playEffect(const char* pszFilePath, bool bLoop)
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->playEffect(pszFilePath, bLoop);
|
|
}
|
|
|
|
unsigned int CCComAudio::playEffect(const char* pszFilePath)
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->playEffect(pszFilePath);
|
|
}
|
|
|
|
void CCComAudio::pauseEffect(unsigned int nSoundId)
|
|
{
|
|
return CocosDenshion::SimpleAudioEngine::sharedEngine()->pauseEffect(nSoundId);
|
|
}
|
|
|
|
void CCComAudio::pauseAllEffects()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->pauseAllEffects();
|
|
}
|
|
|
|
void CCComAudio::resumeEffect(unsigned int nSoundId)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->resumeEffect(nSoundId);
|
|
}
|
|
|
|
void CCComAudio::resumeAllEffects()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->resumeAllEffects();
|
|
}
|
|
|
|
void CCComAudio::stopEffect(unsigned int nSoundId)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->stopEffect(nSoundId);
|
|
}
|
|
|
|
void CCComAudio::stopAllEffects()
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->stopAllEffects();
|
|
}
|
|
|
|
void CCComAudio::preloadEffect(const char* pszFilePath)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->preloadEffect(pszFilePath);
|
|
}
|
|
|
|
void CCComAudio::unloadEffect(const char *pszFilePath)
|
|
{
|
|
CocosDenshion::SimpleAudioEngine::sharedEngine()->unloadEffect(pszFilePath);
|
|
}
|
|
|
|
|
|
NS_CC_EXT_END
|