-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBgSound.cpp
44 lines (38 loc) · 959 Bytes
/
BgSound.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Effect.cpp
// StarPlane
//
// Created by shaoleibo on 15-3-1.
//
//
#include "BgSound.h"
#include "SimpleAudioEngine.h"
#include "MusicManager.h"
#include "ConfigManager.h"
USING_NS_CC;
using namespace CocosDenshion;
bool BgSound::init()
{
CCString* strMusic = ConfigManager::GetInstance()->getCHStringConfig()->objectForKey("bg_music");
char* str = (char*)malloc(100);
std::strcpy(str,strMusic->getCString());
m_fileName = str;
m_type = BG_SOUND;
return true;
}
bool BgSound::play()
{
SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
if (!SimpleAudioEngine::sharedEngine()->isBackgroundMusicPlaying())
SimpleAudioEngine::sharedEngine()->playBackgroundMusic(m_fileName, true);
return true;
}
bool BgSound::stop()
{
SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
return true;
}
BgSound::~BgSound()
{
SimpleAudioEngine::sharedEngine()->unloadEffect( m_fileName );
}