#include "mag_compass.hxx"
-
MagCompass::MagCompass ( SGPropertyNode *node )
- : _error_deg(0.0),
- _rate_degps(0.0),
+ : _rate_degps(0.0),
_name(node->getStringValue("name", "magnetic-compass")),
_num(node->getIntValue("number", 0))
{
+ SGPropertyNode_ptr n = node->getNode( "deviation", false );
+ if( n ) {
+ SGPropertyNode_ptr deviation_table_node = n->getNode( "table", false );
+ if( NULL != deviation_table_node ) {
+ _deviation_table = new SGInterpTable( deviation_table_node );
+ } else {
+ std::string deviation_node_name = n->getStringValue();
+ if( false == deviation_node_name.empty() )
+ _deviation_node = fgGetNode( deviation_node_name, true );
+ }
+ }
}
MagCompass::~MagCompass ()
SGPropertyNode *node = fgGetNode(branch.c_str(), _num, true );
_serviceable_node = node->getChild("serviceable", 0, true);
+ _pitch_offset_node = node->getChild("pitch-offset-deg", 0, true);
_roll_node = fgGetNode("/orientation/roll-deg", true);
_pitch_node = fgGetNode("/orientation/pitch-deg", true);
_heading_node = fgGetNode("/orientation/heading-magnetic-deg", true);
void
MagCompass::reinit ()
{
- _error_deg = 0.0;
_rate_degps = 0.0;
}
double phi = _roll_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
// pitch angle (radians)
- double theta = _pitch_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
+ double theta = _pitch_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS
+ + _pitch_offset_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
// magnetic heading (radians)
double psi = _heading_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
// This is the value that the compass
// is *trying* to display.
double target_deg = atan2(a, b) * SGD_RADIANS_TO_DEGREES;
+
+ if( _deviation_node ) {
+ target_deg -= _deviation_node->getDoubleValue();
+ } else if( _deviation_table ) {
+ target_deg -= _deviation_table->interpolate( SGMiscd::normalizePeriodic( 0.0, 360.0, target_deg ) );
+ }
+
double old_deg = _out_node->getDoubleValue();
while ((target_deg - old_deg) > 180.0)
#include <simgear/props/props.hxx>
#include <simgear/structure/subsystem_mgr.hxx>
+#include <simgear/math/interpolater.hxx>
/**
* Input properties:
*
* /instrumentation/"name"/serviceable
+ * /instrumentation/"name"/pitch-offset-deg
+ * /instrumentation/"name"/max-pitch-deg
+ * /instrumentation/"name"/max-roll-deg
* /orientation/roll-deg
* /orientation/pitch-deg
* /orientation/heading-magnetic-deg
private:
- double _error_deg;
double _rate_degps;
std::string _name;
int _num;
+ SGSharedPtr<SGInterpTable> _deviation_table;
+ SGPropertyNode_ptr _deviation_node;
SGPropertyNode_ptr _serviceable_node;
+ SGPropertyNode_ptr _pitch_offset_node;
SGPropertyNode_ptr _roll_node;
SGPropertyNode_ptr _pitch_node;
SGPropertyNode_ptr _heading_node;