]> git.mxchange.org Git - flightgear.git/blob - src/Sound/fg_fx.cxx
*** empty log message ***
[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 - curt@flightgear.org
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., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23
24 #include <simgear/misc/props.hxx>
25 #include <simgear/misc/sg_path.hxx>
26 #include <simgear/debug/logstream.hxx>
27 #include <simgear/misc/exception.hxx>
28 #ifdef __BORLANDC__
29 #  define exception c_exception
30 #endif
31
32 #include <Main/fg_props.hxx>
33
34 #include "fg_fx.hxx"
35 #include "fg_sound.hxx"
36
37
38 FGFX::FGFX ()
39 {
40 }
41
42 FGFX::~FGFX ()
43 {
44    for (unsigned int i = 0; i < _sound.size(); i++ )
45       delete _sound[i];
46 }
47
48 void
49 FGFX::init()
50 {
51    const SGPropertyNode * node = fgGetNode("/sim/sound", true);
52    int i;
53
54    SGPath path( globals->get_fg_root() );
55    if (node->getStringValue("path") == "") {
56       SG_LOG(SG_GENERAL, SG_ALERT, "Incorect path in configuration file.");
57       return;
58    }
59
60    path.append(node->getStringValue("path"));
61    SG_LOG(SG_GENERAL, SG_INFO, "Reading Instrument " << node->getName()
62     << " from " << path.str());
63
64    SGPropertyNode root;
65    try {
66       readProperties(path.str(), &root);
67    } catch (const sg_exception &e) {
68       SG_LOG(SG_GENERAL, SG_ALERT,
69        "Incorrect path specified in configuration file");
70       return;
71    }
72
73    node = root.getNode("fx");
74    for (i = 0; i < node->nChildren(); i++) {
75       FGSound * sound;
76       sound = new FGSound(node->getChild(i));
77       _sound.push_back(sound);
78    }
79
80    for (i = 0; i < (int)_sound.size(); i++ ) {
81       _sound[i]->init();
82    }
83 }
84
85 void
86 FGFX::bind ()
87 {
88 }
89
90 void
91 FGFX::unbind ()
92 {
93 }
94
95 void
96 FGFX::update (int dt)
97 {
98    for (unsigned int i = 0; i < _sound.size(); i++ )
99       _sound[i]->update(dt);
100 }
101
102 // end of fg_fx.cxx