Set standby COM frequency from Airport pages
Support selecting a frequency from the Nearest Airport and Airport Information pages and pressing ENT. Nice.
This commit is contained in:
parent
cbb281759c
commit
d306e7ba10
3 changed files with 40 additions and 2 deletions
|
@ -115,7 +115,9 @@ var AirportInfoController =
|
|||
if (me.crsrToggle == 1) {
|
||||
var select = me.page.handleEnter();
|
||||
if (select.name == "AirportInfoID") me.setAirport(select.value);
|
||||
if (substr(select.name, 0, 15) == "AirportInfoFreq") print("Enter pressed on frequency " ~ select.value);
|
||||
if (substr(select.name, 0, 15) == "AirportInfoFreq") {
|
||||
me.page.mfd.SurroundController.setStandbyComFreq(select.value);
|
||||
}
|
||||
|
||||
return emesary.Transmitter.ReceiptStatus_Finished;
|
||||
} else {
|
||||
|
|
|
@ -155,16 +155,21 @@ var NearestAirportsController =
|
|||
var apt_id = me.page.getSelectedAirportID();
|
||||
var apt_info = airportinfo(apt_id);
|
||||
me.page.updateAirportData(apt_info);
|
||||
return emesary.Transmitter.ReceiptStatus_Finished;
|
||||
}
|
||||
|
||||
if (me._currentGroup == NearestAirportsController.UIGROUP.RNWY) {
|
||||
# No effect if runways are selected
|
||||
return emesary.Transmitter.ReceiptStatus_Finished;
|
||||
}
|
||||
|
||||
if (me._currentGroup == NearestAirportsController.UIGROUP.FREQ) {
|
||||
# TODO Select the current COM frequency.
|
||||
var freq = me.page.getSelectedFreq();
|
||||
if (freq != nil) print("NearestAirportController.handleEnter frequency selection " ~ freq);
|
||||
if (freq != nil) {
|
||||
me.page.mfd.SurroundController.setStandbyComFreq(freq);
|
||||
}
|
||||
return emesary.Transmitter.ReceiptStatus_Finished;
|
||||
}
|
||||
|
||||
if (me._currentGroup == NearestAirportsController.UIGROUP.APR) {
|
||||
|
|
|
@ -375,4 +375,35 @@ var SurroundController =
|
|||
me.transmitter = nil;
|
||||
},
|
||||
|
||||
# Used by other pages to set the current standby COM frequency by pressing ENT
|
||||
setStandbyComFreq : func(value) {
|
||||
var data={};
|
||||
|
||||
if (value > fg1000.MAX_COM_FREQ) return;
|
||||
if (value < fg1000.MIN_COM_FREQ) return;
|
||||
|
||||
if (me._comselected == 1) {
|
||||
data["Comm1StandbyFreq"] = value;
|
||||
} else {
|
||||
data["Comm2StandbyFreq"] = value;
|
||||
}
|
||||
|
||||
me.sendNavComDataNotification(data);
|
||||
},
|
||||
|
||||
# Used by other pages to set the current standby NAV frequency by pressing ENT
|
||||
setStandbyNavFreq : func(value) {
|
||||
var data={};
|
||||
|
||||
if (value > fg1000.MAX_NAV_FREQ) return;
|
||||
if (value < fg1000.MIN_NAV_FREQ) return;
|
||||
|
||||
if (me._navselected == 1) {
|
||||
data["Nav1StandbyFreq"] = value;
|
||||
} else {
|
||||
data["Nav2StandbyFreq"] = value;
|
||||
}
|
||||
|
||||
me.sendNavComDataNotification(data);
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue