]> git.mxchange.org Git - flightgear.git/blob - src/Sound/soundmanager.hxx
Flight-history men usage cap.
[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 update(double dt);
43     void reinit(void);
44
45     void activate(bool State);
46     void update_device_list();
47
48 private:
49     bool stationaryView() const;
50   
51     bool _is_initialized, _enabled;
52     SGPropertyNode_ptr _sound_working, _sound_enabled, _volume, _device_name;
53     SGPropertyNode_ptr _currentView;
54     SGPropertyNode_ptr _viewPosLon, _viewPosLat, _viewPosElev;
55     SGPropertyNode_ptr _velocityNorthFPS, _velocityEastFPS, _velocityDownFPS;
56     SGPropertyNode_ptr _viewXoffset, _viewYoffset, _viewZoffset;
57     Listener* _listener;
58 };
59 #else
60 #include "Main/fg_props.hxx"
61
62 // provide a dummy sound class
63 class FGSoundManager : public SGSubsystem
64 {
65 public:
66     FGSoundManager() { fgSetBool("/sim/sound/working", false);}
67     ~FGSoundManager() {}
68
69     void update(double dt) {}
70 };
71
72 #endif // ENABLE_AUDIO_SUPPORT
73
74 #endif // __FG_SOUNDMGR_HXX