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