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>
|
2021-02-20 20:06:27 +00:00
|
|
|
#include <Main/sentryIntegration.hxx>
|
2017-01-12 11:44:53 +01:00
|
|
|
#include <Sound/soundmanager.hxx>
|
2021-02-20 20:06:27 +00:00
|
|
|
#include <algorithm>
|
2009-10-07 20:56:24 +00:00
|
|
|
|
2021-02-20 20:06:27 +00:00
|
|
|
#include <simgear/debug/ErrorReportingCallback.hxx>
|
|
|
|
#include <simgear/misc/sg_path.hxx>
|
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-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);
|
|
|
|
|
2019-06-04 14:15:13 +01:00
|
|
|
_atc_enabled = _props->getNode("sim/sound/atc/enabled", true);
|
|
|
|
_atc_volume = _props->getNode("sim/sound/atc/volume", true);
|
|
|
|
_atc_ext = _props->getNode("sim/sound/atc/external-view", true);
|
|
|
|
|
2022-04-29 15:08:10 +02:00
|
|
|
_machwave_active = _props->getNode("sim/sound/machwave/active", true);
|
|
|
|
_machwave_volume = _props->getNode("sim/sound/machwave/offset-m", true);
|
|
|
|
|
2017-01-12 11:44:53 +01:00
|
|
|
_smgr = globals->get_subsystem<FGSoundManager>();
|
2012-11-27 00:02:28 +01:00
|
|
|
if (!_smgr) {
|
2012-10-01 10:10:34 +01:00
|
|
|
return;
|
|
|
|
}
|
2017-01-12 11:44:53 +01:00
|
|
|
_active = _smgr->is_active();
|
2012-10-01 10:10:34 +01:00
|
|
|
|
2012-11-27 00:02:28 +01:00
|
|
|
_refname = refname;
|
|
|
|
_smgr->add(this, refname);
|
2011-11-20 15:31:58 +01:00
|
|
|
|
2019-06-04 14:15:13 +01:00
|
|
|
if (!_is_aimodel) // only for the main aircraft
|
2012-03-22 23:53:18 +01:00
|
|
|
{
|
|
|
|
_avionics = _smgr->find("avionics", true);
|
|
|
|
_avionics->tie_to_listener();
|
2019-06-04 14:15:13 +01:00
|
|
|
|
|
|
|
_atc = _smgr->find("atc", true);
|
|
|
|
_atc->tie_to_listener();
|
2012-03-22 23:53:18 +01:00
|
|
|
}
|
2001-10-28 16:27:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-27 00:02:28 +01:00
|
|
|
void FGFX::unbind()
|
|
|
|
{
|
|
|
|
if (_smgr)
|
|
|
|
{
|
|
|
|
_smgr->remove(_refname);
|
|
|
|
}
|
2020-08-11 14:06:15 +01:00
|
|
|
|
|
|
|
// because SGXmlSound has an owning ref back to us, we need to
|
|
|
|
// clear these here, or we will never get destroyed
|
|
|
|
std::for_each(_sound.begin(), _sound.end(), [](const SGXmlSound* snd) { delete snd; });
|
|
|
|
_sound.clear();
|
2012-11-27 00:02:28 +01:00
|
|
|
}
|
2009-10-04 13:52:53 +00:00
|
|
|
|
2001-10-28 16:27:16 +00:00
|
|
|
FGFX::~FGFX ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
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())
|
|
|
|
{
|
2021-02-20 20:06:27 +00:00
|
|
|
simgear::reportFailure(simgear::LoadFailure::NotFound, simgear::ErrorCode::AudioFX,
|
|
|
|
"Failed to find FX XML file:" + path_str, sg_location{path_str});
|
2011-12-11 13:04:10 +01:00
|
|
|
SG_LOG(SG_SOUND, SG_ALERT,
|
|
|
|
"File not found: '" << path_str);
|
|
|
|
return;
|
|
|
|
}
|
2021-11-06 19:10:20 +01:00
|
|
|
SG_LOG(SG_SOUND, SG_INFO, "Reading sound " << node->getNameString()
|
2016-06-23 14:26:34 +01:00
|
|
|
<< " from " << path);
|
2008-01-17 08:28:43 +00:00
|
|
|
|
|
|
|
SGPropertyNode root;
|
|
|
|
try {
|
2016-06-23 14:26:34 +01:00
|
|
|
readProperties(path, &root);
|
2021-02-20 20:06:27 +00:00
|
|
|
} catch (const sg_exception& e) {
|
|
|
|
simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::AudioFX,
|
|
|
|
"Failure loading FX XML:" + e.getFormattedMessage(), e.getLocation());
|
2008-01-17 08:28:43 +00:00
|
|
|
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) {
|
2020-10-05 14:23:40 +01:00
|
|
|
std::unique_ptr<SGXmlSound> soundfx{new SGXmlSound};
|
2008-01-17 08:28:43 +00:00
|
|
|
|
|
|
|
try {
|
2020-10-05 14:23:40 +01:00
|
|
|
bool ok = soundfx->init( _props, node->getChild(i), this, _avionics,
|
2011-12-03 15:29:04 +01:00
|
|
|
path.dir() );
|
2020-10-05 14:23:40 +01:00
|
|
|
if (ok) {
|
|
|
|
// take the pointer out of the unique ptr so it's not deleted
|
|
|
|
_sound.push_back( soundfx.release() );
|
|
|
|
}
|
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());
|
2021-02-20 20:06:27 +00:00
|
|
|
simgear::reportFailure(simgear::LoadFailure::BadData, simgear::ErrorCode::AudioFX,
|
|
|
|
"Failure creating Audio FX:" + e.getFormattedMessage(), path);
|
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()
|
|
|
|
{
|
2021-01-23 12:01:47 +01:00
|
|
|
SGSampleGroup::stop();
|
2020-08-11 14:06:15 +01:00
|
|
|
std::for_each(_sound.begin(), _sound.end(), [](const SGXmlSound* snd) { delete snd; });
|
2009-10-04 13:52:53 +00:00
|
|
|
_sound.clear();
|
|
|
|
init();
|
2021-01-23 12:01:47 +01:00
|
|
|
SGSampleGroup::resume();
|
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;
|
|
|
|
}
|
2017-01-12 11:44:53 +01:00
|
|
|
|
|
|
|
if (!_active && _smgr->is_active())
|
|
|
|
{
|
|
|
|
_active = true;
|
|
|
|
for ( unsigned int i = 0; i < _sound.size(); i++ ) {
|
|
|
|
_sound[i]->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-01 10:10:34 +01:00
|
|
|
|
2012-03-22 23:36:39 +01:00
|
|
|
if ( _enabled->getBoolValue() ) {
|
2019-06-04 14:15:13 +01:00
|
|
|
if ( _avionics)
|
2012-03-22 23:36:39 +01:00
|
|
|
{
|
2019-06-04 14:15:13 +01:00
|
|
|
const bool e = _avionics_enabled->getBoolValue();
|
|
|
|
if (e && (_avionics_ext->getBoolValue() || _internal->getBoolValue())) {
|
2012-03-31 11:45:28 +02:00
|
|
|
// 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
|
|
|
}
|
2019-06-04 14:15:13 +01:00
|
|
|
|
|
|
|
if ( _atc)
|
|
|
|
{
|
|
|
|
const bool e = _atc_enabled->getBoolValue();
|
|
|
|
if (e && (_atc_ext->getBoolValue() || _internal->getBoolValue())) {
|
|
|
|
// ATC sound is enabled
|
|
|
|
_atc->resume(); // no-op if already in resumed state
|
|
|
|
_atc->set_volume( _atc_volume->getFloatValue() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
_atc->suspend();
|
|
|
|
}
|
2009-12-02 09:34:06 +00:00
|
|
|
|
2022-04-29 15:08:10 +02:00
|
|
|
_machwave_active->setBoolValue(_mInCone);
|
|
|
|
_machwave_volume->setFloatValue(_mOffset_m);
|
|
|
|
|
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
|