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>
|
2012-10-01 10:10:34 +01:00
|
|
|
#include <Main/globals.hxx>
|
2009-10-07 20:56:24 +00:00
|
|
|
|
2003-05-06 23:54:17 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2011-07-30 10:47:28 +01:00
|
|
|
#include <simgear/props/props_io.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
|
|
|
|
2012-10-01 10:10:34 +01:00
|
|
|
FGFX::FGFX ( const std::string &refname, SGPropertyNode *props ) :
|
2011-12-03 14:40:48 +01:00
|
|
|
_props( props )
|
2001-10-28 16:27:16 +00:00
|
|
|
{
|
2011-12-03 14:40:48 +01:00
|
|
|
if (!props) {
|
2011-12-03 15:29:04 +01:00
|
|
|
_is_aimodel = false;
|
2011-12-03 14:40:48 +01:00
|
|
|
_props = globals->get_props();
|
|
|
|
_enabled = fgGetNode("/sim/sound/effects/enabled", true);
|
|
|
|
_volume = fgGetNode("/sim/sound/effects/volume", true);
|
|
|
|
} else {
|
2011-12-03 15:29:04 +01:00
|
|
|
_is_aimodel = true;
|
2011-12-03 14:40:48 +01:00
|
|
|
_enabled = _props->getNode("/sim/sound/aimodels/enabled", true);
|
|
|
|
_enabled->setBoolValue(fgGetBool("/sim/sound/effects/enabled"));
|
|
|
|
_volume = _props->getNode("/sim/sound/aimodels/volume", true);
|
|
|
|
_volume->setFloatValue(fgGetFloat("/sim/sound/effects/volume"));
|
|
|
|
}
|
2011-11-20 15:03:48 +01:00
|
|
|
|
|
|
|
_avionics_enabled = _props->getNode("sim/sound/avionics/enabled", true);
|
|
|
|
_avionics_volume = _props->getNode("sim/sound/avionics/volume", true);
|
|
|
|
_avionics_ext = _props->getNode("sim/sound/avionics/external-view", true);
|
|
|
|
_internal = _props->getNode("sim/current-view/internal", true);
|
|
|
|
|
2012-11-27 00:02:28 +01:00
|
|
|
_smgr = globals->get_soundmgr();
|
|
|
|
if (!_smgr) {
|
2012-10-01 10:10:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-27 00:02:28 +01:00
|
|
|
_refname = refname;
|
|
|
|
_smgr->add(this, refname);
|
2011-11-20 15:31:58 +01:00
|
|
|
|
2012-03-22 23:53:18 +01:00
|
|
|
if (!_is_aimodel)
|
|
|
|
{
|
|
|
|
_avionics = _smgr->find("avionics", true);
|
|
|
|
_avionics->tie_to_listener();
|
|
|
|
}
|
2001-10-28 16:27:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-27 00:02:28 +01:00
|
|
|
void FGFX::unbind()
|
|
|
|
{
|
|
|
|
if (_smgr)
|
|
|
|
{
|
|
|
|
_smgr->remove(_refname);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
{
|
2012-10-01 10:10:34 +01:00
|
|
|
if (!_smgr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-20 15:03:48 +01:00
|
|
|
SGPropertyNode *node = _props->getNode("sim/sound", true);
|
2002-02-27 15:13:58 +00:00
|
|
|
|
2012-09-30 19:40:08 +01:00
|
|
|
std::string path_str = node->getStringValue("path");
|
2008-01-17 08:28:43 +00:00
|
|
|
if (path_str.empty()) {
|
2011-11-25 13:39:10 +01:00
|
|
|
SG_LOG(SG_SOUND, SG_ALERT, "No path in sim/sound/path");
|
2008-01-17 08:28:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-07-18 13:21:30 +01:00
|
|
|
|
|
|
|
SGPath path = globals->resolve_aircraft_path(path_str);
|
2011-12-11 13:04:10 +01:00
|
|
|
if (path.isNull())
|
|
|
|
{
|
|
|
|
SG_LOG(SG_SOUND, SG_ALERT,
|
|
|
|
"File not found: '" << path_str);
|
|
|
|
return;
|
|
|
|
}
|
2011-08-12 00:09:26 +02:00
|
|
|
SG_LOG(SG_SOUND, SG_INFO, "Reading sound " << node->getName()
|
2008-01-17 08:28:43 +00:00
|
|
|
<< " from " << path.str());
|
|
|
|
|
|
|
|
SGPropertyNode root;
|
|
|
|
try {
|
|
|
|
readProperties(path.str(), &root);
|
|
|
|
} catch (const sg_exception &) {
|
2011-08-12 00:09:26 +02:00
|
|
|
SG_LOG(SG_SOUND, SG_ALERT,
|
2008-01-17 08:28:43 +00:00
|
|
|
"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");
|
2011-12-12 10:49:09 +01:00
|
|
|
if(node) {
|
2008-01-17 08:28:43 +00:00
|
|
|
for (int i = 0; i < node->nChildren(); ++i) {
|
2011-12-03 15:29:04 +01:00
|
|
|
SGXmlSound *soundfx = new SGXmlSound();
|
2008-01-17 08:28:43 +00:00
|
|
|
|
|
|
|
try {
|
2011-12-03 15:29:04 +01:00
|
|
|
soundfx->init( _props, node->getChild(i), this, _avionics,
|
|
|
|
path.dir() );
|
|
|
|
_sound.push_back( soundfx );
|
2008-12-12 07:35:39 +00:00
|
|
|
} catch ( sg_exception &e ) {
|
2011-08-12 00:09:26 +02:00
|
|
|
SG_LOG(SG_SOUND, SG_ALERT, e.getFormattedMessage());
|
2011-12-03 15:29:04 +01:00
|
|
|
delete soundfx;
|
2008-01-17 08:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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()
|
|
|
|
{
|
2011-03-19 14:51:39 +01:00
|
|
|
for ( unsigned int i = 0; i < _sound.size(); i++ ) {
|
|
|
|
delete _sound[i];
|
|
|
|
}
|
2009-10-04 13:52:53 +00:00
|
|
|
_sound.clear();
|
|
|
|
init();
|
2012-11-27 00:02:28 +01:00
|
|
|
}
|
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
|
|
|
{
|
2012-10-01 10:10:34 +01:00
|
|
|
if (!_smgr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-03-22 23:36:39 +01:00
|
|
|
if ( _enabled->getBoolValue() ) {
|
2012-03-31 11:45:28 +02:00
|
|
|
if ( _avionics_enabled->getBoolValue())
|
2012-03-22 23:36:39 +01:00
|
|
|
{
|
2012-03-31 11:45:28 +02:00
|
|
|
if (_avionics_ext->getBoolValue() || _internal->getBoolValue()) {
|
|
|
|
// avionics sound is enabled
|
|
|
|
_avionics->resume(); // no-op if already in resumed state
|
|
|
|
_avionics->set_volume( _avionics_volume->getFloatValue() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_avionics->suspend();
|
2012-03-22 23:36:39 +01:00
|
|
|
}
|
2009-12-02 09:34:06 +00:00
|
|
|
|
|
|
|
set_volume( _volume->getDoubleValue() );
|
|
|
|
resume();
|
2009-10-19 10:41:17 +00:00
|
|
|
|
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-12-02 09:34:06 +00:00
|
|
|
else
|
|
|
|
suspend();
|
2009-09-19 18:57:04 +00:00
|
|
|
}
|
|
|
|
|
2001-10-28 16:27:16 +00:00
|
|
|
// end of fg_fx.cxx
|