X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Fattitude_indicator.cxx;h=1555c2c74eeddc49dda9b2656043e8c89544b711;hb=f620af29cdc18ab7924055092e8f75cbe37aae2c;hp=a6cdfba2628a0e66192f4c1e90c9afefcc12455c;hpb=d5d38ebe8cdaf2fcc5b6472d1a829686c4b53a02;p=flightgear.git diff --git a/src/Instrumentation/attitude_indicator.cxx b/src/Instrumentation/attitude_indicator.cxx index a6cdfba26..1555c2c74 100644 --- a/src/Instrumentation/attitude_indicator.cxx +++ b/src/Instrumentation/attitude_indicator.cxx @@ -6,6 +6,12 @@ // TODO: // - better spin-up +#include + +#include STL_IOSTREAM +#include STL_STRING +#include + #include // fabs() #include "attitude_indicator.hxx" @@ -13,6 +19,32 @@ #include
+AttitudeIndicator::AttitudeIndicator ( SGPropertyNode *node ) + : + name("attitude-indicator"), + num(0), + vacuum_system("/systems/vacuum") +{ + int i; + for ( i = 0; i < node->nChildren(); ++i ) { + SGPropertyNode *child = node->getChild(i); + string cname = child->getName(); + string cval = child->getStringValue(); + if ( cname == "name" ) { + name = cval; + } else if ( cname == "number" ) { + num = (int) child->getDoubleValue(); + } else if ( cname == "vacuum-system" ) { + vacuum_system = cval; + } else { + SG_LOG( SG_INSTR, SG_WARN, "Error in attitude-indicator config logic" ); + if ( name.length() ) { + SG_LOG( SG_INSTR, SG_WARN, "Section = " << name ); + } + } + } +} + AttitudeIndicator::AttitudeIndicator () { } @@ -24,46 +56,49 @@ AttitudeIndicator::~AttitudeIndicator () void AttitudeIndicator::init () { - // TODO: allow index of pump and AI - // to be configured. + string branch; + branch = "/instrumentation/" + name; + vacuum_system += "/suction-inhg"; + + SGPropertyNode *node = fgGetNode(branch.c_str(), num, true ); + _pitch_in_node = fgGetNode("/orientation/pitch-deg", true); _roll_in_node = fgGetNode("/orientation/roll-deg", true); - _suction_node = fgGetNode("/systems/vacuum[0]/suction-inhg", true); - _tumble_flag_node = - fgGetNode("/instrumentation/attitude-indicator/config/tumble-flag", - true); - _caged_node = - fgGetNode("/instrumentation/attitude-indicator/caged-flag", true); - _tumble_node = - fgGetNode("/instrumentation/attitude-indicator/tumble-norm", true); - _pitch_int_node = - fgGetNode("/instrumentation/attitude-indicator/internal-pitch-deg", - true); - _roll_int_node = - fgGetNode("/instrumentation/attitude-indicator/internal-roll-deg", - true); - _pitch_out_node = - fgGetNode("/instrumentation/attitude-indicator/indicated-pitch-deg", - true); - _roll_out_node = - fgGetNode("/instrumentation/attitude-indicator/indicated-roll-deg", - true); + _suction_node = fgGetNode(vacuum_system.c_str(), true); + SGPropertyNode *cnode = node->getChild("config", 0, true); + _tumble_flag_node = cnode->getChild("tumble-flag", 0, true); + _caged_node = node->getChild("caged-flag", 0, true); + _tumble_node = node->getChild("tumble-norm", 0, true); + _pitch_int_node = node->getChild("internal-pitch-deg", 0, true); + _roll_int_node = node->getChild("internal-roll-deg", 0, true); + _pitch_out_node = node->getChild("indicated-pitch-deg", 0, true); + _roll_out_node = node->getChild("indicated-roll-deg", 0, true); } void AttitudeIndicator::bind () { - fgTie("/instrumentation/attitude-indicator/serviceable", + std::ostringstream temp; + string branch; + temp << num; + branch = "/instrumentation/" + name + "[" + temp.str() + "]"; + + fgTie((branch + "/serviceable").c_str(), &_gyro, &Gyro::is_serviceable, &Gyro::set_serviceable); - fgTie("/instrumentation/attitude-indicator/spin", + fgTie((branch + "/spin").c_str(), &_gyro, &Gyro::get_spin_norm, &Gyro::set_spin_norm); } void AttitudeIndicator::unbind () { - fgUntie("/instrumentation/attitude-indicator/serviceable"); - fgUntie("/instrumentation/attitude-indicator/spin"); + std::ostringstream temp; + string branch; + temp << num; + branch = "/instrumentation/" + name + "[" + temp.str() + "]"; + + fgUntie((branch + "/serviceable").c_str()); + fgUntie((branch + "/spin").c_str()); } void