1
0
Fork 0

Added support for <condition> elements under <enable> elements.

The old <prop> and <value> elements are still supported but ignored, if a <condition> element exists.
Also for the DigitalFilter
This commit is contained in:
torsten 2009-02-28 20:19:39 +00:00 committed by Tim Moore
parent 3f0e9b0161
commit 78e45727d0

View file

@ -827,13 +827,16 @@ FGDigitalFilter::FGDigitalFilter(SGPropertyNode *node):
} else if ( cname == "debug" ) { } else if ( cname == "debug" ) {
debug = child->getBoolValue(); debug = child->getBoolValue();
} else if ( cname == "enable" ) { } else if ( cname == "enable" ) {
SGPropertyNode *prop = child->getChild( "prop" ); _condition = getCondition( child );
if ( prop != NULL ) { if( _condition == NULL ) {
enable_prop = fgGetNode( prop->getStringValue(), true ); SGPropertyNode *prop = child->getChild( "prop" );
} if ( prop != NULL ) {
SGPropertyNode *val = child->getChild( "value" ); enable_prop = fgGetNode( prop->getStringValue(), true );
if ( val != NULL ) { }
enable_value = val->getStringValue(); SGPropertyNode *val = child->getChild( "value" );
if ( val != NULL ) {
enable_value = val->getStringValue();
}
} }
SGPropertyNode *pass = child->getChild( "honor-passive" ); SGPropertyNode *pass = child->getChild( "honor-passive" );
if ( pass != NULL ) { if ( pass != NULL ) {
@ -887,11 +890,11 @@ FGDigitalFilter::FGDigitalFilter(SGPropertyNode *node):
void FGDigitalFilter::update(double dt) void FGDigitalFilter::update(double dt)
{ {
if ( (input_prop != NULL && if ( input_prop != NULL && (
enable_prop != NULL && ( _condition != NULL && _condition->test() ) ||
( enable_prop != NULL &&
enable_prop->getStringValue() == enable_value) || enable_prop->getStringValue() == enable_value) ||
(enable_prop == NULL && (enable_prop == NULL && _condition == NULL ) ) ) {
input_prop != NULL) ) {
input.push_front(input_prop->getDoubleValue()); input.push_front(input_prop->getDoubleValue());
input.resize(samples + 1, 0.0); input.resize(samples + 1, 0.0);