-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVoiceManager.cpp
60 lines (50 loc) · 1.29 KB
/
VoiceManager.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "VoiceManager.h"
#include "SimpleAudioEngine.h"
#include <cstdlib>
namespace dxco {
VoiceManager::VoiceManager(float voiceInterval) {
this->voiceInterval = voiceInterval;
this->dt = 0;
this->randomDt = 0;
}
void VoiceManager::update(float dt) {
this->dt += dt;
this->randomDt += dt;
if (this->randomDt > this->voiceInterval) {
this->randomDt = 0;
if (random() % 10 < 3 ) {
int i = random() % this->randomVoices.size();
this->doPlay(this->randomVoices[i]);
}
}
}
void VoiceManager::play(std::string sound, float probability) {
if (random() % 1000 < probability * 1000) {
this->doPlay(sound);
}
}
//play either sound
void VoiceManager::play(std::string sound1, std::string sound2, float probability) {
if (random() % 1000 < probability * 1000) {
if (random() % 2) {
this->doPlay(sound1);
} else {
this->doPlay(sound2);
}
}
}
void VoiceManager::loadRandom(std::string sound) {
this->randomVoices.push_back(sound);
}
void VoiceManager::doPlay(std::string sound) {
//check another voice isn't
if(this->dt > this->voiceInterval) {
CocosDenshion::SimpleAudioEngine::sharedEngine()->playEffect(sound.c_str());
this->dt = 0;
}
}
bool VoiceManager::isPlaying() {
//wild guess, less than a second means still playing
return this->dt < 1.2;
}
} /* namespace dxco */