_mapScaleIndex = 7; // I think that the above is more accurate for no-flightplan default, but this is more sane for initial testing!
_mapScaleAuto = true;
+ // Configuration. Eventually this may be user-achivable in order that settings can be persistent between sessions.
+ _suaAlertEnabled = false;
+ _altAlertEnabled = false;
+
// Mega-hack - hardwire airport town and state names for the FG base area since we don't have any data for these at the moment
// TODO - do this better one day!
_airportTowns["KSFO"] = "San Francisco";
// Sometimes the datapages can be used to review a waypoint whilst the user makes a decision,
// and we need to remember why.
bool _dtoReview; // Set true when we a reviewing a waypoint for DTO operation.
+
+ // Configuration settings that the user can set via. the KLN89 SET pages.
+ bool _suaAlertEnabled; // Alert user to potential SUA entry
+ bool _altAlertEnabled; // Alert user to min safe alt violation
};
#endif // _KLN89_HXX
// Configuration Initialisation
// Should this be in kln89.cxx ?
_turnAnticipationEnabled = false;
- _suaAlertEnabled = false;
- _altAlertEnabled = false;
_time = new SGTime;
// Configuration that affects flightplan operation
bool _turnAnticipationEnabled;
-
- // Configuration that affects general operation
- bool _suaAlertEnabled; // Alert user to potential SUA entry
- bool _altAlertEnabled; // Alert user to min safe alt violation
// Magvar stuff. Might get some of this stuff (such as time) from FG in future.
SGTime* _time;