1 // component.hxx - Base class for autopilot components
3 // Written by Torsten Dreyer
4 // Based heavily on work created by Curtis Olson, started January 2004.
6 // Copyright (C) 2004 Curtis L. Olson - http://www.flightgear.org/~curt
7 // Copyright (C) 2010 Torsten Dreyer - Torsten (at) t3r (dot) de
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // General Public License for more details.
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #ifndef __COMPONENT_HXX
24 #define __COMPONENT_HXX 1
30 #include <simgear/structure/subsystem_mgr.hxx>
31 #include <simgear/props/propsfwd.hxx>
33 namespace FGXMLAutopilot {
36 * @brief Base class for other autopilot components
38 class Component : public SGSubsystem {
42 SGSharedPtr<const SGCondition> _condition;
43 SGPropertyNode_ptr _enable_prop;
44 std::string * _enable_value;
50 virtual bool configure( const std::string & nodeName, SGPropertyNode_ptr configNode );
54 * @brief the implementation of the update() method of the SGSubsystem
56 virtual void update( double dt );
59 * @brief pure virtual function to be implemented by the derived classes. Gets called from
60 * the update method if it's not disabled with the firstTime parameter set to true if this
61 * is the first call after being enabled
62 * @param firstTime set to true if this is the first update call since this component has
63 been enabled. Set to false for every subsequent call.
64 * @param dt the elapsed time since the last call
66 virtual void update( bool firstTime, double dt ) = 0;
69 * @brief overideable method being called from the update() method if this component
70 * is disabled. It's a noop by default.
72 virtual void disabled( double dt ) {}
75 * @brief debug flag, true if this component should generate some useful output
82 * @brief a (historic) flag signalling the derived class that it should compute it's internal
83 * state but shall not set the output properties if /autopilot/locks/passive-mode is true.
90 * @brief A constructor for an empty Component.
95 * virtual destructor to clean up resources
100 * @brief configure this component from a property node. Iterates through all nodes found
101 * as childs under configNode and calls configure of the derived class for each child.
102 * @param configNode the property node containing the configuration
104 bool configure( SGPropertyNode_ptr configNode );
107 * @brief getter for the name property
108 * @return the name of the component
110 inline const std::string& get_name() const { return _name; }
113 * @brief setter for the name property
114 * @param name the name of the component
116 inline void set_name( const std::string & name ) { _name = name; }
119 * @brief check if this component is enabled as configured in the
120 * <enable> section
121 * @return true if the enable-condition is true.
123 * If a <condition> is defined, this condition is evaluated,
124 * <prop> and <value> tags are ignored.
126 * If a <prop> is defined and no <value> is defined, the property
127 * named in the <prop><prop> tags is evaluated as boolean.
129 * If a <prop> is defined and a <value> is defined, the property named
130 * in <prop></prop> is compared (as a string) to the value defined in
131 * <value></value>
133 * Returns true, if neither <condition> nor <prop> exists
135 bool isPropertyEnabled();
140 #endif // COMPONENT_HXX