d558b52cb6
Split the former single-file-implementation in xmlauto.?xx into multiple files and use some OO techniques. Started with documentation to be used with doxygen.
109 lines
3.1 KiB
C++
109 lines
3.1 KiB
C++
// digitalcomponent.cxx - Base class for digital autopilot components
|
|
//
|
|
// Written by Torsten Dreyer
|
|
// Based heavily on work created by Curtis Olson, started January 2004.
|
|
//
|
|
// Copyright (C) 2004 Curtis L. Olson - http://www.flightgear.org/~curt
|
|
// Copyright (C) 2010 Torsten Dreyer - Torsten (at) t3r (dot) de
|
|
//
|
|
// 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
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
|
|
#include "digitalcomponent.hxx"
|
|
#include <Main/fg_props.hxx>
|
|
|
|
using namespace FGXMLAutopilot;
|
|
|
|
DigitalComponent::DigitalComponent() :
|
|
_inverted(false)
|
|
{
|
|
}
|
|
|
|
bool DigitalComponent::InputMap::get_value( const std::string & name ) const
|
|
{
|
|
// can't use map::operator[] here since it's not const
|
|
const_iterator __i = lower_bound( name );
|
|
if (__i == end() || key_comp()(name, (*__i).first))
|
|
return false; // does not exist, return false
|
|
|
|
return (*__i).second->test();
|
|
}
|
|
|
|
/*
|
|
<input>
|
|
<name>Foo</name>
|
|
<condition>
|
|
<and>...</and>
|
|
</condition>
|
|
</input>
|
|
<output>
|
|
<name>Bar</name>
|
|
<property>/foo/bar</property>
|
|
<inverted>true</inverted>
|
|
</output>
|
|
<output>/some/property</output>
|
|
*/
|
|
bool DigitalComponent::configure( const std::string & nodeName, SGPropertyNode_ptr configNode )
|
|
{
|
|
if( Component::configure( nodeName, configNode ) )
|
|
return true;
|
|
|
|
if (nodeName == "input") {
|
|
SGPropertyNode_ptr nameNode = configNode->getNode("name");
|
|
string name;
|
|
if( nameNode != NULL ) {
|
|
name = nameNode->getStringValue();
|
|
} else {
|
|
std::ostringstream buf;
|
|
buf << "Input" << _input.size();
|
|
name = buf.str();
|
|
}
|
|
_input[name] = sgReadCondition( fgGetNode("/"), configNode );
|
|
return true;
|
|
}
|
|
|
|
if (nodeName == "output") {
|
|
SGPropertyNode_ptr n = configNode->getNode("name");
|
|
string name;
|
|
if( n != NULL ) {
|
|
name = n->getStringValue();
|
|
} else {
|
|
std::ostringstream buf;
|
|
buf << "Output" << _output.size();
|
|
name = buf.str();
|
|
}
|
|
|
|
DigitalOutput_ptr o = new DigitalOutput();
|
|
_output[name] = o;
|
|
|
|
if( (n = configNode->getNode("inverted")) != NULL )
|
|
o->setInverted( n->getBoolValue() );
|
|
|
|
if( (n = configNode->getNode("property")) != NULL )
|
|
o->setProperty( fgGetNode( n->getStringValue(), true ) );
|
|
|
|
if( configNode->nChildren() == 0 )
|
|
o->setProperty( fgGetNode( configNode->getStringValue(), true ) );
|
|
|
|
return true;
|
|
}
|
|
|
|
if (nodeName == "inverted") {
|
|
_inverted = configNode->getBoolValue();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|