-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSound.cpp
113 lines (94 loc) · 1.87 KB
/
Sound.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include "Sound.h"
#include "Settings.h"
Sound *gSound = 0;
Sound::Sound()
{
mEngine = irrklang::createIrrKlangDevice();
mMusic = NULL;
mMusicSource = "none";
// should read from a text file
mMusicMuted = false;
mEffectsMuted = false;
// load the settings
mSettings = new Settings("config.txt");
if(mSettings->musicMuted())
mMusicMuted = true;
else if(!mSettings->musicMuted())
mMusicMuted = false;
if(mSettings->effectsMuted())
mEffectsMuted = true;
else if(!mSettings->effectsMuted())
mEffectsMuted = false;
mVolume = mSettings->musicVolume();
}
Sound::~Sound()
{
if(mMusic != NULL) {
mMusic->stop();
mMusic->drop();
}
mEngine->removeAllSoundSources();
mEngine->drop();
delete mSettings;
}
irrklang::ISound* Sound::playMusic(std::string source, bool loop, bool track)
{
irrklang::ISound *music;
if(!mMusicMuted)
{
if(mMusicSource != source)
{
if(mMusic != NULL) {
mMusic->stop();
mMusic->drop();
mMusic = NULL;
}
mMusicSource = source;
mMusic = mEngine->play2D(mMusicSource.c_str(), loop, true, true);
mMusic->setVolume(mVolume);
mMusic->setIsPaused(false);
}
}
return NULL;
}
irrklang::ISound* Sound::playEffect(std::string source)
{
//irrklang::ISound *effect;
if(!mEffectsMuted) {
irrklang::ISound* soundEffect = mEngine->play2D(source.c_str(), false, false, false);
}
return NULL;
}
void Sound::muteMusic(bool mute)
{
if(mute && mMusic != NULL) {
mMusic->stop();
mMusic->drop();
mMusic = NULL;
mMusicSource = "none";
}
mMusicMuted = mute;
}
void Sound::muteEffects(bool mute)
{
mEffectsMuted = mute;
}
bool Sound::getMusicMuted(void)
{
return mMusicMuted;
}
bool Sound::getEffectsMuted(void)
{
return mEffectsMuted;
}
void Sound::stopMusic(bool stop)
{
if(stop)
mMusic->stop();
}
void Sound::setVolume(float volume)
{
mVolume = volume;
if(mMusic != NULL)
mMusic->setVolume(mVolume);
}