]> git.mxchange.org Git - flightgear.git/blob - src/Sound/soundmanager.hxx
244b7b162726a456361be0675f3d901ab43e011d
[flightgear.git] / src / Sound / soundmanager.hxx
1 // soundmanager.hxx -- Wraps the SimGear OpenAl sound manager class
2 //
3 // Copyright (C) 2001  Curtis L. Olson - http://www.flightgear.org/~curt
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 //
19
20 #ifndef __FG_SOUNDMGR_HXX
21 #define __FG_SOUNDMGR_HXX 1
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <simgear/props/props.hxx>
28 #include <simgear/structure/subsystem_mgr.hxx>
29 #include <simgear/sound/soundmgr_openal.hxx>
30
31 class SGSoundMgr;
32 class Listener;
33
34 #ifdef ENABLE_AUDIO_SUPPORT
35 class FGSoundManager : public SGSoundMgr
36 {
37 public:
38     FGSoundManager();
39     ~FGSoundManager();
40
41     void init(void);
42     void bind(void);
43     void update(double dt);
44
45     void runtime_init(void);
46     void activate(bool State);
47
48     static void setNewSoundDevice(const char *device);
49
50 private:
51     bool _is_initialized;
52     SGPropertyNode_ptr _sound_working, _sound_enabled, _volume;
53     Listener* _listener;
54 };
55 #else
56
57 // provide a dummy sound class
58 class FGSoundManager : public SGSubsystem
59 {
60 public:
61     FGSoundManager() {}
62     ~FGSoundManager() {}
63
64     void update(double dt) {}
65 };
66
67 #endif // ENABLE_AUDIO_SUPPORT
68
69 #endif // __FG_SOUNDMGR_HXX