2002-01-18 22:38:47 +00:00
|
|
|
// fg_fx.cxx -- Sound effect management class implementation
|
2001-10-28 16:27:16 +00:00
|
|
|
//
|
|
|
|
// Started by David Megginson, October 2001
|
|
|
|
// (Reuses some code from main.cxx, probably by Curtis Olson)
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2001 Curtis L. Olson - http://www.flightgear.org/~curt
|
2001-10-28 16:27:16 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2001-10-28 16:27:16 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
2002-03-27 13:00:57 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning (disable: 4786)
|
|
|
|
#endif
|
|
|
|
|
2006-01-10 15:23:10 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2009-09-19 08:03:17 +00:00
|
|
|
#include "fg_fx.hxx"
|
|
|
|
|
2009-10-07 20:56:24 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
|
|
|
|
2003-05-06 23:54:17 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2009-10-07 20:56:24 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2009-09-19 08:03:17 +00:00
|
|
|
#include <simgear/sound/soundmgr_openal.hxx>
|
2009-10-04 13:52:53 +00:00
|
|
|
#include <simgear/sound/xmlsound.hxx>
|
2002-02-27 15:13:58 +00:00
|
|
|
|
2009-10-04 13:52:53 +00:00
|
|
|
FGFX::FGFX ( SGSoundMgr *smgr, const string &refname ) :
|
2009-10-19 10:41:17 +00:00
|
|
|
last_pause( false ),
|
2006-01-10 15:06:17 +00:00
|
|
|
last_volume( 0.0 ),
|
|
|
|
_pause( fgGetNode("/sim/sound/pause") ),
|
|
|
|
_volume( fgGetNode("/sim/sound/volume") )
|
2001-10-28 16:27:16 +00:00
|
|
|
{
|
2009-10-04 13:52:53 +00:00
|
|
|
SGSampleGroup::_smgr = smgr;
|
2009-10-11 13:40:12 +00:00
|
|
|
SGSampleGroup::_refname = refname;
|
2009-10-04 13:52:53 +00:00
|
|
|
SGSampleGroup::_smgr->add(this, refname);
|
2009-11-09 10:28:59 +00:00
|
|
|
_avionics = _smgr->find("avionics", true);
|
2009-11-19 15:28:37 +00:00
|
|
|
_avionics->tie_to_listener();
|
2001-10-28 16:27:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 13:52:53 +00:00
|
|
|
|
2001-10-28 16:27:16 +00:00
|
|
|
FGFX::~FGFX ()
|
|
|
|
{
|
2009-10-07 20:56:24 +00:00
|
|
|
for (unsigned int i = 0; i < _sound.size(); i++ ) {
|
2006-01-09 02:21:04 +00:00
|
|
|
delete _sound[i];
|
|
|
|
}
|
|
|
|
_sound.clear();
|
2001-10-28 16:27:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 13:52:53 +00:00
|
|
|
|
2001-10-28 16:27:16 +00:00
|
|
|
void
|
2002-02-27 15:13:58 +00:00
|
|
|
FGFX::init()
|
2001-10-28 16:27:16 +00:00
|
|
|
{
|
2008-01-17 08:28:43 +00:00
|
|
|
SGPropertyNode *node = fgGetNode("/sim/sound", true);
|
2002-02-27 15:13:58 +00:00
|
|
|
|
2008-01-17 08:28:43 +00:00
|
|
|
string path_str = node->getStringValue("path");
|
|
|
|
SGPath path( globals->get_fg_root() );
|
|
|
|
if (path_str.empty()) {
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "No path in /sim/sound/path");
|
|
|
|
return;
|
|
|
|
}
|
2003-05-09 18:44:33 +00:00
|
|
|
|
2008-01-17 08:28:43 +00:00
|
|
|
path.append(path_str.c_str());
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Reading sound " << node->getName()
|
|
|
|
<< " from " << path.str());
|
|
|
|
|
|
|
|
SGPropertyNode root;
|
|
|
|
try {
|
|
|
|
readProperties(path.str(), &root);
|
|
|
|
} catch (const sg_exception &) {
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
|
|
|
"Error reading file '" << path.str() << '\'');
|
|
|
|
return;
|
|
|
|
}
|
2002-02-27 15:13:58 +00:00
|
|
|
|
2008-01-17 08:28:43 +00:00
|
|
|
node = root.getNode("fx");
|
|
|
|
if(node) {
|
|
|
|
for (int i = 0; i < node->nChildren(); ++i) {
|
|
|
|
SGXmlSound *sound = new SGXmlSound();
|
|
|
|
|
|
|
|
try {
|
2009-10-04 13:52:53 +00:00
|
|
|
sound->init(globals->get_props(), node->getChild(i), this,
|
2009-11-09 10:28:59 +00:00
|
|
|
_avionics, globals->get_fg_root());
|
2008-01-17 08:28:43 +00:00
|
|
|
|
|
|
|
_sound.push_back(sound);
|
2008-12-12 07:35:39 +00:00
|
|
|
} catch ( sg_exception &e ) {
|
2008-01-17 08:28:43 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, e.getFormattedMessage());
|
|
|
|
delete sound;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-10-28 16:27:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 13:52:53 +00:00
|
|
|
|
2003-03-30 12:49:05 +00:00
|
|
|
void
|
|
|
|
FGFX::reinit()
|
|
|
|
{
|
2009-10-04 13:52:53 +00:00
|
|
|
_sound.clear();
|
|
|
|
init();
|
2003-03-30 12:49:05 +00:00
|
|
|
};
|
|
|
|
|
2001-10-28 16:27:16 +00:00
|
|
|
|
|
|
|
void
|
2002-05-11 16:28:50 +00:00
|
|
|
FGFX::update (double dt)
|
2001-10-28 16:27:16 +00:00
|
|
|
{
|
2009-10-04 13:52:53 +00:00
|
|
|
bool new_pause = _pause->getBoolValue();
|
|
|
|
if ( new_pause != last_pause ) {
|
|
|
|
if ( new_pause ) {
|
|
|
|
suspend();
|
2004-05-14 15:51:43 +00:00
|
|
|
} else {
|
2009-10-04 13:52:53 +00:00
|
|
|
resume();
|
2004-05-14 15:51:43 +00:00
|
|
|
}
|
2009-10-04 13:52:53 +00:00
|
|
|
last_pause = new_pause;
|
2004-05-14 15:51:43 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 13:52:53 +00:00
|
|
|
if ( !new_pause ) {
|
2009-10-19 10:41:17 +00:00
|
|
|
double volume = _volume->getDoubleValue();
|
|
|
|
if ( volume != last_volume ) {
|
|
|
|
set_volume( volume );
|
|
|
|
last_volume = volume;
|
|
|
|
}
|
|
|
|
|
2004-05-14 15:51:43 +00:00
|
|
|
// update sound effects if not paused
|
|
|
|
for ( unsigned int i = 0; i < _sound.size(); i++ ) {
|
2002-10-03 21:21:44 +00:00
|
|
|
_sound[i]->update(dt);
|
2004-05-14 15:51:43 +00:00
|
|
|
}
|
2001-11-06 22:32:26 +00:00
|
|
|
|
2009-10-19 10:41:17 +00:00
|
|
|
SGSampleGroup::update(dt);
|
|
|
|
}
|
2009-09-19 18:57:04 +00:00
|
|
|
}
|
|
|
|
|
2001-10-28 16:27:16 +00:00
|
|
|
// end of fg_fx.cxx
|