2017-12-10 22:15:21 +00:00
|
|
|
# AirportInfo Controller
|
|
|
|
var AirportInfoController =
|
|
|
|
{
|
|
|
|
# Vertical ranges, and labels.
|
|
|
|
# Unlike some other map displays, we keep the range constant at 4nm an change
|
|
|
|
# the ScreenRange to zoom in. Otherwise as we zoom in, the center of the
|
|
|
|
# runways moves out of the range of the display and they are not drawn.
|
|
|
|
# Ranges are scaled to the display height with range 1 displaying 4nm vertically.
|
|
|
|
# 2000nm = 12,152,000ft.
|
|
|
|
RANGES : [{range: 4/500/6076.12, label: "500ft"},
|
|
|
|
{range: 4/750/6076.12, label: "750ft"},
|
|
|
|
{range: 4/1000/6076.12, label: "1000ft"},
|
|
|
|
{range: 4/1500/6076.12, label: "1500ft"},
|
|
|
|
{range: 4/2000/6076.12, label: "2000ft"},
|
|
|
|
{range: 8, label: "0.5nm"},
|
|
|
|
{range: 5.33, label: "0.75nm"},
|
|
|
|
{range: 4, label: "1nm"},
|
|
|
|
{range: 2, label: "2nm"},
|
|
|
|
{range: 1.33, label: "3nm"},
|
|
|
|
{range: 1, label: "4nm"},
|
|
|
|
{range: 0.66, label: "6nm"},
|
|
|
|
{range: 0.5, label: "8nm"},
|
|
|
|
{range: 0.4, label: "10nm"} ],
|
|
|
|
|
|
|
|
new : func (page, svg)
|
|
|
|
{
|
2018-01-08 21:39:39 +00:00
|
|
|
var obj = { parents : [ AirportInfoController, MFDPageController.new(page)] };
|
2017-12-10 22:15:21 +00:00
|
|
|
obj.airport = "";
|
|
|
|
obj.runway = "";
|
2017-12-27 19:51:54 +00:00
|
|
|
obj.runwayIdx = -1;
|
2017-12-10 22:15:21 +00:00
|
|
|
obj.info = nil;
|
|
|
|
obj.page = page;
|
2017-12-27 19:51:54 +00:00
|
|
|
obj.crsrToggle = 0;
|
2017-12-10 22:15:21 +00:00
|
|
|
obj.current_zoom = 7;
|
|
|
|
|
|
|
|
# Initial airport is our current location.
|
|
|
|
var current_apt = airportinfo("airport");
|
|
|
|
obj.setAirport(current_apt.id);
|
|
|
|
obj.setZoom(7);
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
},
|
|
|
|
setAirport : func(id)
|
|
|
|
{
|
|
|
|
if (id == me.airport) return;
|
2017-12-27 19:51:54 +00:00
|
|
|
var apt = airportinfo(id);
|
|
|
|
|
|
|
|
if (apt != nil) {
|
|
|
|
me.airport = id;
|
|
|
|
me.info= airportinfo(id);
|
|
|
|
}
|
2017-12-10 22:15:21 +00:00
|
|
|
|
2017-12-27 19:51:54 +00:00
|
|
|
# Reset airport display. We do this irrespective of whether the id
|
|
|
|
# is valid, as it allows us to clear any bad user input from the ID field
|
|
|
|
me.page.displayAirport(me.info);
|
2017-12-10 22:15:21 +00:00
|
|
|
},
|
2017-12-27 19:51:54 +00:00
|
|
|
setRunway : func(runwayID)
|
2017-12-10 22:15:21 +00:00
|
|
|
{
|
2017-12-27 19:51:54 +00:00
|
|
|
me.page.displayRunway(me.info.runways[runwayID]);
|
2017-12-10 22:15:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
# Control functions for Input
|
|
|
|
zoomIn : func() {
|
|
|
|
me.setZoom(me.current_zoom -1);
|
|
|
|
},
|
|
|
|
zoomOut : func() {
|
|
|
|
me.setZoom(me.current_zoom +1);
|
|
|
|
},
|
2018-01-08 21:39:39 +00:00
|
|
|
handleRange : func(val)
|
2017-12-10 22:15:21 +00:00
|
|
|
{
|
|
|
|
var incr_or_decr = (val > 0) ? 1 : -1;
|
|
|
|
me.setZoom(me.current_zoom + incr_or_decr);
|
|
|
|
},
|
|
|
|
setZoom : func(zoom) {
|
|
|
|
if ((zoom < 0) or (zoom > (size(me.RANGES) - 1))) return;
|
|
|
|
me.current_zoom = zoom;
|
|
|
|
me.page.setZoom(me.RANGES[zoom].range * fg1000.MAP_PARTIAL.HEIGHT, me.RANGES[zoom].label);
|
|
|
|
},
|
|
|
|
handleCRSR : func() {
|
2017-12-27 19:51:54 +00:00
|
|
|
me.crsrToggle = (! me.crsrToggle);
|
|
|
|
if (me.crsrToggle) {
|
|
|
|
me.page.showCRSR();
|
2017-12-10 22:15:21 +00:00
|
|
|
} else {
|
2017-12-27 19:51:54 +00:00
|
|
|
me.page.hideCRSR();
|
2017-12-10 22:15:21 +00:00
|
|
|
}
|
|
|
|
return emesary.Transmitter.ReceiptStatus_Finished;
|
|
|
|
},
|
|
|
|
handleFMSInner : func(value) {
|
2017-12-27 19:51:54 +00:00
|
|
|
if (me.crsrToggle == 1) {
|
|
|
|
var select = me.page.incrSmall(value);
|
|
|
|
if ((select.name == "AirportInfoRunway") and (select.value != nil)) {
|
|
|
|
# Selection values are of the form "06L-12R". We need to set the
|
|
|
|
# runway to the left half.
|
|
|
|
var idx = find("-", select.value);
|
|
|
|
if (idx != -1) {
|
|
|
|
var rwy = substr(select.value, 0, idx);
|
|
|
|
me.setRunway(rwy);
|
|
|
|
}
|
2017-12-10 22:15:21 +00:00
|
|
|
}
|
2017-12-27 19:51:54 +00:00
|
|
|
|
2017-12-10 22:15:21 +00:00
|
|
|
return emesary.Transmitter.ReceiptStatus_Finished;
|
|
|
|
} else {
|
2018-01-13 18:53:06 +00:00
|
|
|
return me.page.mfd.SurroundController.handleFMSInner(value);
|
2017-12-10 22:15:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
handleFMSOuter : func(value) {
|
2017-12-27 19:51:54 +00:00
|
|
|
if (me.crsrToggle == 1) {
|
|
|
|
me.page.moveCRSR(value);
|
2017-12-10 22:15:21 +00:00
|
|
|
return emesary.Transmitter.ReceiptStatus_Finished;
|
|
|
|
} else {
|
2018-01-13 18:53:06 +00:00
|
|
|
return me.page.mfd.SurroundController.handleFMSOuter(value);
|
2017-12-10 22:15:21 +00:00
|
|
|
}
|
|
|
|
},
|
2017-12-27 19:51:54 +00:00
|
|
|
handleEnter : func(value) {
|
|
|
|
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);
|
|
|
|
|
|
|
|
return emesary.Transmitter.ReceiptStatus_Finished;
|
|
|
|
} else {
|
|
|
|
return emesary.Transmitter.ReceiptStatus_NotProcessed;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
handleClear : func(value) {
|
|
|
|
if (me.crsrToggle == 1) {
|
|
|
|
# Cancel any data entry
|
|
|
|
me.page.handleClear();
|
|
|
|
} else {
|
|
|
|
return emesary.Transmitter.ReceiptStatus_NotProcessed;
|
|
|
|
}
|
|
|
|
},
|
2017-12-10 22:15:21 +00:00
|
|
|
|
|
|
|
# Reset controller if required when the page is displayed or hidden
|
|
|
|
ondisplay : func() {
|
|
|
|
me.RegisterWithEmesary();
|
|
|
|
},
|
|
|
|
offdisplay : func() {
|
|
|
|
me.DeRegisterWithEmesary();
|
|
|
|
},
|
|
|
|
};
|