Connect to the electrical system.
This commit is contained in:
parent
2a73201ca8
commit
cd9c38e0b4
2 changed files with 61 additions and 65 deletions
|
@ -40,6 +40,7 @@ FGKT_70::FGKT_70() :
|
|||
lon_node(fgGetNode("/position/longitude-deg", true)),
|
||||
lat_node(fgGetNode("/position/latitude-deg", true)),
|
||||
alt_node(fgGetNode("/position/altitude-ft", true)),
|
||||
bus_power(fgGetNode("/systems/electrical/outputs/transponder", true)),
|
||||
r_flash_time(0.0),
|
||||
ident_mode(false),
|
||||
ident_btn(false),
|
||||
|
@ -138,12 +139,16 @@ void FGKT_70::unbind () {
|
|||
|
||||
// Update the various nav values based on position and valid tuned in navs
|
||||
void FGKT_70::update( double dt ) {
|
||||
// double acft_lon = lon_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
|
||||
// double acft_lat = lat_node->getDoubleValue() * SGD_DEGREES_TO_RADIANS;
|
||||
// double acft_elev = alt_node->getDoubleValue() * SG_FEET_TO_METER;
|
||||
// Point3D aircraft = sgGeodToCart( Point3D( acft_lon, acft_lat,
|
||||
// acft_elev ) );
|
||||
// start with all annunciators off (reply ann is handled
|
||||
// separately) and then turn on the ones we want
|
||||
fl_ann = false;
|
||||
alt_ann = false;
|
||||
gnd_ann = false;
|
||||
on_ann = false;
|
||||
sby_ann = false;
|
||||
reply_ann = false;
|
||||
|
||||
if ( has_power() ) {
|
||||
// sanity checks
|
||||
if ( digit1 < 0 ) { digit1 = 0; }
|
||||
if ( digit1 > 7 ) { digit1 = 7; }
|
||||
|
@ -158,9 +163,9 @@ void FGKT_70::update( double dt ) {
|
|||
|
||||
// flight level computation
|
||||
|
||||
// FIXME!!!! This needs to be computed relative to 29.92 inHg, but
|
||||
// for the moment, until I figure out how to do that, I'll just
|
||||
// use true altitude.
|
||||
// FIXME!!!! This needs to be computed relative to 29.92 inHg,
|
||||
// but for the moment, until I figure out how to do that, I'll
|
||||
// just use true altitude.
|
||||
flight_level = (int)( (alt_node->getDoubleValue() + 50.0) / 100.0);
|
||||
|
||||
// ident button
|
||||
|
@ -174,23 +179,13 @@ void FGKT_70::update( double dt ) {
|
|||
ident_mode = false;
|
||||
}
|
||||
|
||||
// start with all annunciators off (reply ann is handled
|
||||
// separately) and then turn on the ones we want
|
||||
fl_ann = false;
|
||||
alt_ann = false;
|
||||
gnd_ann = false;
|
||||
on_ann = false;
|
||||
sby_ann = false;
|
||||
|
||||
if ( ident_mode ) {
|
||||
reply_ann = true;
|
||||
} else {
|
||||
reply_ann = false;
|
||||
}
|
||||
|
||||
if ( func_knob == 0 ) {
|
||||
// leave everything off
|
||||
} else if ( func_knob == 1 ) {
|
||||
if ( func_knob == 1 ) {
|
||||
sby_ann = true;
|
||||
} else if ( func_knob == 2 ) {
|
||||
fl_ann = true;
|
||||
|
@ -208,5 +203,5 @@ void FGKT_70::update( double dt ) {
|
|||
fl_ann = true;
|
||||
alt_ann = true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,6 +43,7 @@ class FGKT_70 : public FGSubsystem
|
|||
SGPropertyNode *lon_node;
|
||||
SGPropertyNode *lat_node;
|
||||
SGPropertyNode *alt_node;
|
||||
SGPropertyNode *bus_power;
|
||||
|
||||
// internal values
|
||||
double r_flash_time;
|
||||
|
@ -81,9 +82,9 @@ public:
|
|||
void search () { /* empty placeholder */ }
|
||||
|
||||
// internal values
|
||||
|
||||
// modes
|
||||
// inline int get_stby_mode() const { return stby_mode; }
|
||||
inline bool has_power() const {
|
||||
return (func_knob > 0) && (bus_power->getDoubleValue() > 1.0);
|
||||
}
|
||||
|
||||
// input and buttons
|
||||
inline bool get_ident_btn() const { return ident_btn; }
|
||||
|
|
Loading…
Reference in a new issue