]> git.mxchange.org Git - flightgear.git/blob - src/Sound/soundmanager.hxx
httpd: update mongoose and websockets
[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 #include <memory>
24 #include <simgear/props/props.hxx>
25 #include <simgear/structure/subsystem_mgr.hxx>
26 #include <simgear/sound/soundmgr_openal.hxx>
27
28 class SGSoundMgr;
29 class Listener;
30
31 #ifdef ENABLE_AUDIO_SUPPORT
32 class FGSoundManager : public SGSoundMgr
33 {
34 public:
35     FGSoundManager();
36     virtual ~FGSoundManager();
37
38     void init(void);
39     virtual void shutdown();
40     void update(double dt);
41     void reinit(void);
42
43     void activate(bool State);
44     void update_device_list();
45
46 private:
47     bool stationaryView() const;
48   
49     bool _is_initialized, _enabled;
50     SGPropertyNode_ptr _sound_working, _sound_enabled, _volume, _device_name;
51     SGPropertyNode_ptr _currentView;
52     SGPropertyNode_ptr _viewPosLon, _viewPosLat, _viewPosElev;
53     SGPropertyNode_ptr _velocityNorthFPS, _velocityEastFPS, _velocityDownFPS;
54     SGPropertyNode_ptr _viewXoffset, _viewYoffset, _viewZoffset;
55     std::auto_ptr<Listener> _listener;
56 };
57 #else
58 #include "Main/fg_props.hxx"
59
60 // provide a dummy sound class
61 class FGSoundManager : public SGSubsystem
62 {
63 public:
64     FGSoundManager() { fgSetBool("/sim/sound/working", false);}
65     ~FGSoundManager() {}
66
67     void update(double dt) {}
68 };
69
70 #endif // ENABLE_AUDIO_SUPPORT
71
72 #endif // __FG_SOUNDMGR_HXX