]> git.mxchange.org Git - flightgear.git/blob - src/Sound/fg_fx.cxx
Allow for a different property root location besides '/'
[flightgear.git] / src / Sound / fg_fx.cxx
1 // fg_fx.cxx -- Sound effect management class implementation
2 //
3 // Started by David Megginson, October 2001
4 // (Reuses some code from main.cxx, probably by Curtis Olson)
5 //
6 // Copyright (C) 2001  Curtis L. Olson - http://www.flightgear.org/~curt
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22 // $Id$
23
24 #ifdef _MSC_VER
25 #pragma warning (disable: 4786)
26 #endif
27
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif
31
32 #include "fg_fx.hxx"
33
34 #include <Main/fg_props.hxx>
35
36 #include <simgear/props/props.hxx>
37 #include <simgear/props/props_io.hxx>
38 #include <simgear/misc/sg_path.hxx>
39 #include <simgear/sound/soundmgr_openal.hxx>
40 #include <simgear/sound/xmlsound.hxx>
41
42 FGFX::FGFX ( SGSoundMgr *smgr, const string &refname, SGPropertyNode *props ) :
43     _props( props ),
44     _enabled( fgGetNode("/sim/sound/effects/enabled", true) ),
45     _volume( fgGetNode("/sim/sound/effects/volume", true) )
46 {
47     if (!props) _props = globals->get_props();
48
49     _avionics_enabled = _props->getNode("sim/sound/avionics/enabled", true);
50     _avionics_volume = _props->getNode("sim/sound/avionics/volume", true);
51     _avionics_ext = _props->getNode("sim/sound/avionics/external-view", true);
52     _internal = _props->getNode("sim/current-view/internal", true);
53
54     SGSampleGroup::_smgr = smgr;
55     SGSampleGroup::_refname = refname;
56     SGSampleGroup::_smgr->add(this, refname);
57     _avionics = _smgr->find("avionics", true);
58     _avionics->tie_to_listener();
59 }
60
61
62 FGFX::~FGFX ()
63 {
64     for (unsigned int i = 0; i < _sound.size(); i++ ) {
65         delete _sound[i];
66     }
67     _sound.clear();
68 }
69
70
71 void
72 FGFX::init()
73 {
74     SGPropertyNode *node = _props->getNode("sim/sound", true);
75
76     string path_str = node->getStringValue("path");
77     if (path_str.empty()) {
78         SG_LOG(SG_SOUND, SG_ALERT, "No path in /sim/sound/path");
79         return;
80     }
81     
82     SGPath path = globals->resolve_aircraft_path(path_str);
83     SG_LOG(SG_SOUND, SG_INFO, "Reading sound " << node->getName()
84            << " from " << path.str());
85
86     SGPropertyNode root;
87     try {
88         readProperties(path.str(), &root);
89     } catch (const sg_exception &) {
90         SG_LOG(SG_SOUND, SG_ALERT,
91                "Error reading file '" << path.str() << '\'');
92         return;
93     }
94
95     node = root.getNode("fx");
96     if(node) {
97         for (int i = 0; i < node->nChildren(); ++i) {
98             SGXmlSound *sound = new SGXmlSound();
99   
100             try {
101                 sound->init(globals->get_props(), node->getChild(i), this,
102                             _avionics, path.dir());
103   
104                 _sound.push_back(sound);
105             } catch ( sg_exception &e ) {
106                 SG_LOG(SG_SOUND, SG_ALERT, e.getFormattedMessage());
107                 delete sound;
108             }
109         }
110     }
111 }
112
113
114 void
115 FGFX::reinit()
116 {
117     for ( unsigned int i = 0; i < _sound.size(); i++ ) {
118         delete _sound[i];
119     }
120     _sound.clear();
121     init();
122 };
123
124
125 void
126 FGFX::update (double dt)
127 {
128     bool active = _avionics_ext->getBoolValue() ||
129                   _internal->getBoolValue();
130
131     if ( active && _avionics_enabled->getBoolValue() ) {
132         _avionics->resume(); // no-op if already in resumed state
133     } else
134         _avionics->suspend();
135     _avionics->set_volume( _avionics_volume->getFloatValue() );
136
137     if ( _enabled->getBoolValue() ) {
138         set_volume( _volume->getDoubleValue() );
139         resume();
140
141         // update sound effects if not paused
142         for ( unsigned int i = 0; i < _sound.size(); i++ ) {
143             _sound[i]->update(dt);
144         }
145
146         SGSampleGroup::update(dt);
147     }
148     else
149         suspend();
150 }
151
152 // end of fg_fx.cxx