-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSound.h
39 lines (29 loc) · 797 Bytes
/
Sound.h
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
#ifndef SOUND_H
#define SOUND_H
#include <string>
#include "C:\Program Files (x86)\irrKlang-1.3.0\include\irrKlang.h"
#pragma comment(lib, "C:\\Program Files (x86)\\irrKlang-1.3.0\\lib\\Win32-visualStudio\\irrKlang.lib") // link with irrKlang.dll
class Settings;
class Sound
{
public:
Sound();
~Sound();
irrklang::ISound* playMusic(std::string source, bool loop, bool track);
irrklang::ISound* playEffect(std::string source);
void stopMusic(bool stop);
void muteMusic(bool mute);
void muteEffects(bool mute);
bool getMusicMuted(void);
bool getEffectsMuted(void);
void setVolume(float volume);
private:
bool mMusicMuted;
bool mEffectsMuted;
float mVolume;
irrklang::ISoundEngine* mEngine;
irrklang::ISound* mMusic;
std::string mMusicSource;
Settings *mSettings;
};
#endif