X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Fheading_indicator.cxx;h=2cbbb9f2469b31e9fbf2dd39e318d24a17d8d3fa;hb=19e716397136f25e11187bcc025d13eeaeac346c;hp=53046480a5e1826155730e6d2f358f56c923cfc4;hpb=70be1629e61d9b751a2f73df30b83bb1be6ca4fe;p=flightgear.git diff --git a/src/Instrumentation/heading_indicator.cxx b/src/Instrumentation/heading_indicator.cxx index 53046480a..2cbbb9f24 100644 --- a/src/Instrumentation/heading_indicator.cxx +++ b/src/Instrumentation/heading_indicator.cxx @@ -3,6 +3,10 @@ // // This file is in the Public Domain and comes with no warranty. +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include @@ -13,6 +17,7 @@ #include
#include
+#include HeadingIndicator::HeadingIndicator ( SGPropertyNode *node ) : @@ -29,11 +34,14 @@ HeadingIndicator::~HeadingIndicator () void HeadingIndicator::init () { - string branch; + std::string branch; branch = "/instrumentation/" + _name; SGPropertyNode *node = fgGetNode(branch.c_str(), _num, true ); - _offset_node = node->getChild("offset-deg", 0, true); + if( NULL == (_offset_node = node->getChild("offset-deg", 0, false)) ) { + _offset_node = node->getChild("offset-deg", 0, true); + _offset_node->setDoubleValue( -globals->get_mag()->get_magvar() * SGD_RADIANS_TO_DEGREES ); + } _heading_in_node = fgGetNode("/orientation/heading-deg", true); _suction_node = fgGetNode(_suction.c_str(), true); _heading_out_node = node->getChild("indicated-heading-deg", 0, true); @@ -47,7 +55,7 @@ void HeadingIndicator::bind () { std::ostringstream temp; - string branch; + std::string branch; temp << _num; branch = "/instrumentation/" + _name + "[" + temp.str() + "]"; @@ -61,7 +69,7 @@ void HeadingIndicator::unbind () { std::ostringstream temp; - string branch; + std::string branch; temp << _num; branch = "/instrumentation/" + _name + "[" + temp.str() + "]";