Last change
on this file since 3712 was
3512,
checked in by bensch, 20 years ago
|
orxonox/branches/soundEngine: modified, so it has some more c++ style
|
-
Property svn:executable set to
*
|
File size:
1.0 KB
|
Line | |
---|
1 | #ifndef SOUNDCONTROL_CLASS_H |
---|
2 | #define SOUNDCONTROL_CLASS_H |
---|
3 | |
---|
4 | #include "stdincl.h" |
---|
5 | #include <SDL/SDL_mixer.h> |
---|
6 | |
---|
7 | class SoundControl { |
---|
8 | public: |
---|
9 | ~SoundControl(); |
---|
10 | |
---|
11 | static SoundControl* getInstance(); |
---|
12 | |
---|
13 | void setNumberOfChannels(int number_of_channels); |
---|
14 | static void playMod(char* filename); |
---|
15 | static void playWav(char* filename); |
---|
16 | static void playOgg(char* filename); |
---|
17 | void volumeUp(); |
---|
18 | void volumeDown(); |
---|
19 | void trackRewind(); |
---|
20 | void forwardMusic(); |
---|
21 | void rewindMusic(); |
---|
22 | void pauseMusic(); |
---|
23 | void resumeMusic(); |
---|
24 | void fadeInMusic(int time); |
---|
25 | void fadeOutMusic(int time); |
---|
26 | static void musicDone(); |
---|
27 | |
---|
28 | static void handleKey(SDL_KeyboardEvent key); |
---|
29 | int main(int argc, char* argv[]); |
---|
30 | |
---|
31 | |
---|
32 | private: |
---|
33 | SoundControl(); |
---|
34 | void init(void); |
---|
35 | |
---|
36 | static SoundControl* singletonRef; |
---|
37 | |
---|
38 | bool isInit; |
---|
39 | |
---|
40 | public: |
---|
41 | |
---|
42 | Mix_Music* music; |
---|
43 | static SoundControl* sound; |
---|
44 | int bits; |
---|
45 | int volume; |
---|
46 | |
---|
47 | int track_number; |
---|
48 | int audio_rate; |
---|
49 | int audio_channels; |
---|
50 | int audio_buffers; |
---|
51 | int done; |
---|
52 | int sfx_channel1; |
---|
53 | int sfx_channel2; |
---|
54 | int finished; |
---|
55 | |
---|
56 | Uint16 audio_format; |
---|
57 | }; |
---|
58 | |
---|
59 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.