2014-09-03 18:19:21 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2014-09-30 01:07:11 +08:00
|
|
|
|
|
|
|
#include "platform/CCPlatformConfig.h"
|
2014-09-22 15:38:12 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC
|
2014-09-30 01:07:11 +08:00
|
|
|
|
2014-09-03 18:19:21 +08:00
|
|
|
#include "AudioEngine-inl.h"
|
|
|
|
|
|
|
|
#import <OpenAL/alc.h>
|
2015-02-11 15:34:08 +08:00
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
|
|
|
|
#include "audio/include/AudioEngine.h"
|
2014-09-03 18:19:21 +08:00
|
|
|
#include "platform/CCFileUtils.h"
|
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "base/CCScheduler.h"
|
|
|
|
#include "base/ccUtils.h"
|
|
|
|
|
|
|
|
using namespace cocos2d;
|
2014-09-16 10:22:25 +08:00
|
|
|
using namespace cocos2d::experimental;
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
static ALCdevice *s_ALDevice = nullptr;
|
|
|
|
static ALCcontext *s_ALContext = nullptr;
|
|
|
|
|
2015-02-11 15:34:08 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS
|
|
|
|
@interface AudioEngineSessionHandler : NSObject
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
-(id) init;
|
|
|
|
-(void)handleInterruption:(NSNotification*)notification;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation AudioEngineSessionHandler
|
|
|
|
|
2015-04-04 06:57:47 +08:00
|
|
|
void AudioEngineInterruptionListenerCallback(void* user_data, UInt32 interruption_state)
|
|
|
|
{
|
|
|
|
if (kAudioSessionBeginInterruption == interruption_state)
|
|
|
|
{
|
|
|
|
alcMakeContextCurrent(nullptr);
|
|
|
|
}
|
|
|
|
else if (kAudioSessionEndInterruption == interruption_state)
|
|
|
|
{
|
|
|
|
OSStatus result = AudioSessionSetActive(true);
|
|
|
|
if (result) NSLog(@"Error setting audio session active! %d\n", result);
|
|
|
|
|
|
|
|
alcMakeContextCurrent(s_ALContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-11 15:34:08 +08:00
|
|
|
-(id) init
|
|
|
|
{
|
2015-05-28 11:49:27 +08:00
|
|
|
if (self = [super init])
|
2015-02-11 15:34:08 +08:00
|
|
|
{
|
2015-04-04 06:57:47 +08:00
|
|
|
if ([[[UIDevice currentDevice] systemVersion] intValue] > 5) {
|
2015-02-11 15:34:08 +08:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleInterruption:) name:AVAudioSessionInterruptionNotification object:[AVAudioSession sharedInstance]];
|
2015-05-29 21:41:54 +08:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleInterruption:) name:UIApplicationDidBecomeActiveNotification object:[AVAudioSession sharedInstance]];
|
2015-04-04 06:57:47 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
AudioSessionInitialize(NULL, NULL, AudioEngineInterruptionListenerCallback, self);
|
|
|
|
}
|
2015-02-11 15:34:08 +08:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void)handleInterruption:(NSNotification*)notification
|
|
|
|
{
|
2015-05-29 21:41:54 +08:00
|
|
|
static bool resumeOnBecomingActive = false;
|
|
|
|
|
2015-02-11 15:34:08 +08:00
|
|
|
if ([notification.name isEqualToString:AVAudioSessionInterruptionNotification]) {
|
|
|
|
NSInteger reason = [[[notification userInfo] objectForKey:AVAudioSessionInterruptionTypeKey] integerValue];
|
|
|
|
if (reason == AVAudioSessionInterruptionTypeBegan) {
|
|
|
|
alcMakeContextCurrent(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reason == AVAudioSessionInterruptionTypeEnded) {
|
2015-05-29 21:41:54 +08:00
|
|
|
if ([UIApplication sharedApplication].applicationState == UIApplicationStateActive) {
|
|
|
|
NSError *error = nil;
|
|
|
|
[[AVAudioSession sharedInstance] setActive:YES error:&error];
|
|
|
|
alcMakeContextCurrent(s_ALContext);
|
|
|
|
} else {
|
|
|
|
resumeOnBecomingActive = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([notification.name isEqualToString:UIApplicationDidBecomeActiveNotification] && resumeOnBecomingActive) {
|
|
|
|
resumeOnBecomingActive = false;
|
|
|
|
NSError *error = nil;
|
|
|
|
BOOL success = [[AVAudioSession sharedInstance]
|
|
|
|
setCategory: AVAudioSessionCategoryAmbient
|
|
|
|
error: &error];
|
|
|
|
if (!success) {
|
|
|
|
printf("Fail to set audio session.\n");
|
|
|
|
return;
|
2015-02-11 15:34:08 +08:00
|
|
|
}
|
2015-05-29 21:41:54 +08:00
|
|
|
[[AVAudioSession sharedInstance] setActive:YES error:&error];
|
|
|
|
alcMakeContextCurrent(s_ALContext);
|
2015-02-11 15:34:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) dealloc
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self name:AVAudioSessionInterruptionNotification object:nil];
|
2015-05-29 21:41:54 +08:00
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationDidBecomeActiveNotification object:nil];
|
2015-02-11 15:34:08 +08:00
|
|
|
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
static id s_AudioEngineSessionHandler = nullptr;
|
|
|
|
#endif
|
|
|
|
|
2014-09-05 14:34:30 +08:00
|
|
|
AudioEngineImpl::AudioEngineImpl()
|
2015-07-09 14:31:03 +08:00
|
|
|
: _lazyInitLoop(true)
|
2014-11-15 05:07:34 +08:00
|
|
|
, _currentAudioID(0)
|
2014-09-03 18:19:21 +08:00
|
|
|
{
|
2015-02-11 15:34:08 +08:00
|
|
|
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioEngineImpl::~AudioEngineImpl()
|
|
|
|
{
|
|
|
|
if (s_ALContext) {
|
2014-09-10 17:12:46 +08:00
|
|
|
alDeleteSources(MAX_AUDIOINSTANCES, _alSources);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
_audioCaches.clear();
|
|
|
|
|
2014-09-22 15:38:12 +08:00
|
|
|
alcMakeContextCurrent(nullptr);
|
2014-09-03 18:19:21 +08:00
|
|
|
alcDestroyContext(s_ALContext);
|
|
|
|
}
|
|
|
|
if (s_ALDevice) {
|
|
|
|
alcCloseDevice(s_ALDevice);
|
|
|
|
}
|
2015-07-09 14:31:03 +08:00
|
|
|
|
2015-02-11 15:34:08 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS
|
|
|
|
[s_AudioEngineSessionHandler release];
|
|
|
|
#endif
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioEngineImpl::init()
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
do{
|
2015-02-11 15:34:08 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS
|
|
|
|
s_AudioEngineSessionHandler = [[AudioEngineSessionHandler alloc] init];
|
|
|
|
#endif
|
|
|
|
|
2014-09-03 18:19:21 +08:00
|
|
|
s_ALDevice = alcOpenDevice(nullptr);
|
|
|
|
|
|
|
|
if (s_ALDevice) {
|
|
|
|
s_ALContext = alcCreateContext(s_ALDevice, nullptr);
|
|
|
|
alcMakeContextCurrent(s_ALContext);
|
|
|
|
|
2014-09-10 17:12:46 +08:00
|
|
|
alGenSources(MAX_AUDIOINSTANCES, _alSources);
|
2015-05-28 11:49:27 +08:00
|
|
|
auto alError = alGetError();
|
2014-09-03 18:19:21 +08:00
|
|
|
if(alError != AL_NO_ERROR)
|
|
|
|
{
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s:generating sources fail! error = %x\n", __PRETTY_FUNCTION__, alError);
|
2014-09-03 18:19:21 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-09-10 17:12:46 +08:00
|
|
|
for (int i = 0; i < MAX_AUDIOINSTANCES; ++i) {
|
2014-09-03 18:19:21 +08:00
|
|
|
_alSourceUsed[_alSources[i]] = false;
|
|
|
|
}
|
2015-08-11 11:40:36 +08:00
|
|
|
_scheduler = Director::getInstance()->getScheduler();
|
2014-09-03 18:19:21 +08:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
}while (false);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-07-28 15:27:07 +08:00
|
|
|
AudioCache* AudioEngineImpl::preload(const std::string& filePath, std::function<void(bool)> callback)
|
2015-07-08 18:04:43 +08:00
|
|
|
{
|
|
|
|
AudioCache* audioCache = nullptr;
|
|
|
|
|
|
|
|
auto it = _audioCaches.find(filePath);
|
|
|
|
if (it == _audioCaches.end()) {
|
|
|
|
audioCache = &_audioCaches[filePath];
|
|
|
|
audioCache->_fileFullPath = FileUtils::getInstance()->fullPathForFilename(filePath);
|
|
|
|
|
2015-07-09 14:31:03 +08:00
|
|
|
AudioEngine::addTask(std::bind(&AudioCache::readDataTask, audioCache));
|
2015-07-08 18:04:43 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
audioCache = &it->second;
|
|
|
|
}
|
|
|
|
|
2015-07-28 15:27:07 +08:00
|
|
|
if(audioCache && callback)
|
|
|
|
{
|
|
|
|
audioCache->addLoadCallback(callback);
|
|
|
|
}
|
2015-07-08 18:04:43 +08:00
|
|
|
return audioCache;
|
|
|
|
}
|
|
|
|
|
2014-09-05 14:34:30 +08:00
|
|
|
int AudioEngineImpl::play2d(const std::string &filePath ,bool loop ,float volume)
|
2014-09-03 18:19:21 +08:00
|
|
|
{
|
|
|
|
if (s_ALDevice == nullptr) {
|
2015-01-01 08:51:45 +08:00
|
|
|
return AudioEngine::INVALID_AUDIO_ID;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool sourceFlag = false;
|
|
|
|
ALuint alSource = 0;
|
2014-09-10 17:12:46 +08:00
|
|
|
for (int i = 0; i < MAX_AUDIOINSTANCES; ++i) {
|
2014-09-03 18:19:21 +08:00
|
|
|
alSource = _alSources[i];
|
|
|
|
|
|
|
|
if ( !_alSourceUsed[alSource]) {
|
|
|
|
sourceFlag = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!sourceFlag){
|
2015-01-01 08:51:45 +08:00
|
|
|
return AudioEngine::INVALID_AUDIO_ID;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = new (std::nothrow) AudioPlayer;
|
|
|
|
if (player == nullptr) {
|
2015-07-08 18:04:43 +08:00
|
|
|
return AudioEngine::INVALID_AUDIO_ID;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
player->_alSource = alSource;
|
|
|
|
player->_loop = loop;
|
|
|
|
player->_volume = volume;
|
2015-08-11 11:40:36 +08:00
|
|
|
|
|
|
|
auto audioCache = preload(filePath, nullptr);
|
|
|
|
if (audioCache == nullptr) {
|
|
|
|
delete player;
|
|
|
|
return AudioEngine::INVALID_AUDIO_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
_threadMutex.lock();
|
|
|
|
_audioPlayers[_currentAudioID] = player;
|
|
|
|
_threadMutex.unlock();
|
|
|
|
|
2015-07-28 15:27:07 +08:00
|
|
|
audioCache->addPlayCallback(std::bind(&AudioEngineImpl::_play2d,this,audioCache,_currentAudioID));
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
_alSourceUsed[alSource] = true;
|
|
|
|
|
|
|
|
if (_lazyInitLoop) {
|
|
|
|
_lazyInitLoop = false;
|
2015-08-11 11:40:36 +08:00
|
|
|
_scheduler->schedule(CC_SCHEDULE_SELECTOR(AudioEngineImpl::update), this, 0.05f, false);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
2014-09-10 17:12:46 +08:00
|
|
|
return _currentAudioID++;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::_play2d(AudioCache *cache, int audioID)
|
|
|
|
{
|
|
|
|
if(cache->_alBufferReady){
|
2015-08-11 11:40:36 +08:00
|
|
|
_threadMutex.lock();
|
2014-09-03 18:19:21 +08:00
|
|
|
auto playerIt = _audioPlayers.find(audioID);
|
2015-08-11 11:40:36 +08:00
|
|
|
if (playerIt != _audioPlayers.end() && playerIt->second->play2d(cache)) {
|
|
|
|
_scheduler->performFunctionInCocosThread([audioID](){
|
|
|
|
if (AudioEngine::_audioIDInfoMap.find(audioID) != AudioEngine::_audioIDInfoMap.end()) {
|
|
|
|
AudioEngine::_audioIDInfoMap[audioID].state = AudioEngine::AudioState::PLAYING;
|
|
|
|
}
|
|
|
|
});
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
_threadMutex.unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::setVolume(int audioID,float volume)
|
|
|
|
{
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = _audioPlayers[audioID];
|
|
|
|
player->_volume = volume;
|
2014-09-03 18:19:21 +08:00
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
if (player->_ready) {
|
|
|
|
alSourcef(_audioPlayers[audioID]->_alSource, AL_GAIN, volume);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
auto error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s: audio id = %d, error = %x\n", __PRETTY_FUNCTION__,audioID,error);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::setLoop(int audioID, bool loop)
|
|
|
|
{
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = _audioPlayers[audioID];
|
2014-09-03 18:19:21 +08:00
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
if (player->_ready) {
|
|
|
|
if (player->_streamingSource) {
|
|
|
|
player->setLoop(loop);
|
2014-09-03 18:19:21 +08:00
|
|
|
} else {
|
|
|
|
if (loop) {
|
2015-08-11 11:40:36 +08:00
|
|
|
alSourcei(player->_alSource, AL_LOOPING, AL_TRUE);
|
2014-09-03 18:19:21 +08:00
|
|
|
} else {
|
2015-08-11 11:40:36 +08:00
|
|
|
alSourcei(player->_alSource, AL_LOOPING, AL_FALSE);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
auto error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s: audio id = %d, error = %x\n", __PRETTY_FUNCTION__,audioID,error);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-08-11 11:40:36 +08:00
|
|
|
player->_loop = loop;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioEngineImpl::pause(int audioID)
|
|
|
|
{
|
|
|
|
bool ret = true;
|
2015-08-11 11:40:36 +08:00
|
|
|
alSourcePause(_audioPlayers[audioID]->_alSource);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
auto error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
|
|
|
ret = false;
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s: audio id = %d, error = %x\n", __PRETTY_FUNCTION__,audioID,error);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioEngineImpl::resume(int audioID)
|
|
|
|
{
|
|
|
|
bool ret = true;
|
2015-08-11 11:40:36 +08:00
|
|
|
alSourcePlay(_audioPlayers[audioID]->_alSource);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
auto error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
|
|
|
ret = false;
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s: audio id = %d, error = %x\n", __PRETTY_FUNCTION__,audioID,error);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
void AudioEngineImpl::stop(int audioID)
|
2014-09-03 18:19:21 +08:00
|
|
|
{
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = _audioPlayers[audioID];
|
|
|
|
player->destroy();
|
|
|
|
_alSourceUsed[player->_alSource] = false;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::stopAll()
|
|
|
|
{
|
2015-08-11 11:40:36 +08:00
|
|
|
for(auto&& player : _audioPlayers)
|
|
|
|
{
|
|
|
|
player.second->destroy();
|
|
|
|
}
|
2014-09-10 17:12:46 +08:00
|
|
|
for(int index = 0; index < MAX_AUDIOINSTANCES; ++index)
|
2014-09-03 18:19:21 +08:00
|
|
|
{
|
|
|
|
_alSourceUsed[_alSources[index]] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioEngineImpl::getDuration(int audioID)
|
|
|
|
{
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = _audioPlayers[audioID];
|
|
|
|
if(player->_ready){
|
|
|
|
return player->_audioCache->_duration;
|
2014-09-03 18:19:21 +08:00
|
|
|
} else {
|
|
|
|
return AudioEngine::TIME_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioEngineImpl::getCurrentTime(int audioID)
|
|
|
|
{
|
|
|
|
float ret = 0.0f;
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = _audioPlayers[audioID];
|
|
|
|
if(player->_ready){
|
|
|
|
if (player->_streamingSource) {
|
|
|
|
ret = player->getTime();
|
2014-09-03 18:19:21 +08:00
|
|
|
} else {
|
2015-08-11 11:40:36 +08:00
|
|
|
alGetSourcef(player->_alSource, AL_SEC_OFFSET, &ret);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
auto error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
|
|
|
printf("%s, audio id:%d,error code:%x", __PRETTY_FUNCTION__,audioID,error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioEngineImpl::setCurrentTime(int audioID, float time)
|
|
|
|
{
|
|
|
|
bool ret = false;
|
2015-08-11 11:40:36 +08:00
|
|
|
auto player = _audioPlayers[audioID];
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
do {
|
2015-08-11 11:40:36 +08:00
|
|
|
if (!player->_ready) {
|
2014-09-03 18:19:21 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
if (player->_streamingSource) {
|
|
|
|
ret = player->setTime(time);
|
2014-09-03 18:19:21 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
2015-08-11 11:40:36 +08:00
|
|
|
if (player->_audioCache->_bytesOfRead != player->_audioCache->_dataSize &&
|
|
|
|
(time * player->_audioCache->_sampleRate * player->_audioCache->_bytesPerFrame) > player->_audioCache->_bytesOfRead) {
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s: audio id = %d\n", __PRETTY_FUNCTION__,audioID);
|
2014-09-03 18:19:21 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
alSourcef(player->_alSource, AL_SEC_OFFSET, time);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
auto error = alGetError();
|
|
|
|
if (error != AL_NO_ERROR) {
|
2014-09-11 10:53:01 +08:00
|
|
|
printf("%s: audio id = %d, error = %x\n", __PRETTY_FUNCTION__,audioID,error);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::setFinishCallback(int audioID, const std::function<void (int, const std::string &)> &callback)
|
|
|
|
{
|
2015-08-11 11:40:36 +08:00
|
|
|
_audioPlayers[audioID]->_finishCallbak = callback;
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::update(float dt)
|
|
|
|
{
|
|
|
|
ALint sourceState;
|
|
|
|
int audioID;
|
2015-08-11 11:40:36 +08:00
|
|
|
AudioPlayer* player;
|
2014-09-03 18:19:21 +08:00
|
|
|
|
|
|
|
for (auto it = _audioPlayers.begin(); it != _audioPlayers.end(); ) {
|
|
|
|
audioID = it->first;
|
2015-08-11 11:40:36 +08:00
|
|
|
player = it->second;
|
|
|
|
alGetSourcei(player->_alSource, AL_SOURCE_STATE, &sourceState);
|
2014-09-03 18:19:21 +08:00
|
|
|
|
2015-08-11 11:40:36 +08:00
|
|
|
if(player->_removeByAudioEngine)
|
|
|
|
{
|
|
|
|
AudioEngine::remove(audioID);
|
|
|
|
_threadMutex.lock();
|
|
|
|
it = _audioPlayers.erase(it);
|
|
|
|
_threadMutex.unlock();
|
|
|
|
delete player;
|
|
|
|
}
|
|
|
|
else if (player->_ready && sourceState == AL_STOPPED) {
|
|
|
|
_alSourceUsed[player->_alSource] = false;
|
|
|
|
if (player->_finishCallbak) {
|
2014-09-22 15:38:12 +08:00
|
|
|
auto& audioInfo = AudioEngine::_audioIDInfoMap[audioID];
|
2015-08-11 11:40:36 +08:00
|
|
|
player->_finishCallbak(audioID, *audioInfo.filePath);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
2014-09-05 14:34:30 +08:00
|
|
|
AudioEngine::remove(audioID);
|
2015-08-11 11:40:36 +08:00
|
|
|
delete player;
|
|
|
|
_threadMutex.lock();
|
2014-09-03 18:19:21 +08:00
|
|
|
it = _audioPlayers.erase(it);
|
2015-08-11 11:40:36 +08:00
|
|
|
_threadMutex.unlock();
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
2014-09-10 17:12:46 +08:00
|
|
|
|
|
|
|
if(_audioPlayers.empty()){
|
|
|
|
_lazyInitLoop = true;
|
2015-08-11 11:40:36 +08:00
|
|
|
_scheduler->unschedule(CC_SCHEDULE_SELECTOR(AudioEngineImpl::update), this);
|
2014-09-10 17:12:46 +08:00
|
|
|
}
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::uncache(const std::string &filePath)
|
|
|
|
{
|
2014-09-29 10:15:41 +08:00
|
|
|
_audioCaches.erase(filePath);
|
2014-09-03 18:19:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioEngineImpl::uncacheAll()
|
|
|
|
{
|
|
|
|
_audioCaches.clear();
|
|
|
|
}
|
2014-09-22 15:38:12 +08:00
|
|
|
|
|
|
|
#endif
|