]> git.mxchange.org Git - flightgear.git/blob - src/Sound/fg_fx.cxx
d7b58e54390dcac6ab90a1a8e6336bb60ce7dc83
[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    string path_str = node->getStringValue("path");
55    SGPath path( globals->get_fg_root() );
56    if (path_str.empty()) {
57       SG_LOG(SG_GENERAL, SG_ALERT, "Incorrect path in configuration file.");
58       return;
59    }
60
61    path.append(path_str.c_str());
62    SG_LOG(SG_GENERAL, SG_INFO, "Reading Instrument " << node->getName()
63           << " from " << path.str());
64
65    SGPropertyNode root;
66    try {
67       readProperties(path.str(), &root);
68    } catch (const sg_exception &e) {
69       SG_LOG(SG_GENERAL, SG_ALERT,
70        "Incorrect path specified in configuration file");
71       return;
72    }
73
74    node = root.getNode("fx");
75    for (i = 0; i < node->nChildren(); i++) {
76       FGSound * sound;
77       sound = new FGSound(node->getChild(i));
78       _sound.push_back(sound);
79    }
80
81    for (i = 0; i < (int)_sound.size(); i++ ) {
82       _sound[i]->init();
83    }
84 }
85
86 void
87 FGFX::bind ()
88 {
89 }
90
91 void
92 FGFX::unbind ()
93 {
94 }
95
96 void
97 FGFX::update (int dt)
98 {
99    for (unsigned int i = 0; i < _sound.size(); i++ )
100       _sound[i]->update(dt);
101 }
102
103 // end of fg_fx.cxx