1
0
Fork 0
fgdata/Aircraft/Instruments-3d/FG1000/Nasal/MFDPages/NearestIntersections/NearestIntersections.nas

159 lines
4.5 KiB
Text
Raw Normal View History

# NearestIntersections
var NearestIntersections =
{
new : func (mfd, myCanvas, device, svg)
{
var obj = {
parents : [
NearestIntersections,
MFDPage.new(mfd, myCanvas, device, svg, "NearestIntersections", "NRST - NEAREST INTERSECTIONS")
],
};
obj.setController(fg1000.NearestIntersectionsController.new(obj, svg));
2018-01-31 22:47:35 +00:00
# Dynamic elements. There is a single dynamic element containing the list of
# the 25 nearest intersections.
obj.select = PFD.GroupElement.new(
obj.pageName,
svg,
[ "Arrow", "ID", "CRS", "DST"],
11,
"Arrow",
1,
"ScrollTrough",
"ScrollThumb",
250 - 116
);
# Other dynamic text elements
obj.addTextElements(["Lat", "Lon", "VORID", "VORFreq", "VORCRS", "VORDST"]);
obj.topMenu(device, obj, nil);
return obj;
},
2018-01-31 22:47:35 +00:00
# Indicate which group is selected by colour of the softkeys
display_toggle : func(device, svg, mi, group) {
var bg_name = sprintf("SoftKey%d-bg",mi.menu_id);
if (me.getController().getSelectedGroup() == group) {
device.svg.getElementById(bg_name).setColorFill(0.5,0.5,0.5);
svg.setColor(0.0,0.0,0.0);
} else {
device.svg.getElementById(bg_name).setColorFill(0.0,0.0,0.0);
svg.setColor(1.0,1.0,1.0);
}
svg.setText(mi.title);
svg.setVisible(1); # display function
},
2018-02-01 22:28:39 +00:00
showCRSR : func() {
me.select.showCRSR();
},
hideCRSR : func() {
me.select.hideCRSR();
},
offdisplay : func() {
2018-01-31 22:47:35 +00:00
# The Nearest... pages use the underlying navigation map.
me.mfd.NavigationMap.offdisplayPartial();
# Reset the menu colours. Shouldn't have to do this here, but
# there's not currently an obvious other location to do so.
2018-01-31 22:47:35 +00:00
me.resetMenuColors();
me.getController().offdisplay();
},
ondisplay : func() {
me.getController().ondisplay();
2018-01-31 22:47:35 +00:00
# The Nearest... pages use the underlying navigation map.
me.mfd.NavigationMap.ondisplayPartial();
me.mfd.setPageTitle(me.title);
},
2018-01-31 22:47:35 +00:00
updateNavData : func(navdata) {
if ((navdata == nil) or (size(navdata) == 0)) return;
var navDataList = [];
for (var i = 0; i < size(navdata); i = i + 1) {
var nav = navdata[i];
var crsAndDst = courseAndDistance(nav);
# Display the course and distance in NM .
# 248 is the extended ASCII code for the degree symbol
var crs = sprintf("%i%c", crsAndDst[0], 248);
var dst = sprintf("%.1fnm", crsAndDst[1]);
# Convert into something we can pass straight to the UIGroup.
append(navDataList, {
Arrow : nav.id,
ID: nav.id,
CRS: crs,
DST: dst,
});
}
me.select.setValues(navDataList);
if (size(navDataList) > 0) {
me.updateNavDataItem(navdata[0]);
} else {
me.setTextElement("Lat", "NONE WITHIN 200NM");
me.setTextElement("VORID", "");
me.setTextElement("VORFreq", "");
me.setTextElement("VORCRS", "");
me.setTextElement("VORDST", "");
}
},
updateNavDataItem : func(nav) {
if (nav == nil) return;
if (nav.lat < 0.0) {
me.setTextElement("Lat", sprintf("S %.4f", -nav.lat));
} else {
me.setTextElement("Lat", sprintf("N %.4f", nav.lat));
}
if (nav.lon < 0.0) {
me.setTextElement("Lon", sprintf("W%3.4f", -nav.lon));
} else {
me.setTextElement("Lon", sprintf("E%3.4f", nav.lon));
}
# Determine the nearest VOR, and the bearing and distance TO the VOR,
var vordata = me.getController().getNearestNavData("vor");
if ((vordata != nil ) and (size(vordata) > 0)) {
var crsAndDst = courseAndDistance(nav, vordata[0]);
var crs = sprintf("%i%c", crsAndDst[0], 248);
var dst = sprintf("%.1fnm", crsAndDst[1]);
me.setTextElement("VORID", vordata[0].id);
me.setTextElement("VORFreq", sprintf("%.2f", vordata[0].frequency / 100.0));
me.setTextElement("VORCRS", crs);
me.setTextElement("VORDST", dst);
} else {
me.setTextElement("VORID", "");
me.setTextElement("VORFreq", "");
me.setTextElement("VORCRS", "");
me.setTextElement("VORDST", "");
}
# Display the DTO line to the airport
me.mfd.NavigationMap.getController().setDTOLineTarget(nav.lat, nav.lon);
},
topMenu : func(device, pg, menuitem) {
pg.clearMenu();
pg.resetMenuColors();
2018-02-01 22:28:39 +00:00
pg.addMenuItem(0, "ENGINE", pg.mfd.EIS, pg.mfd.EIS.engineMenu);
pg.addMenuItem(2, "MAP", pg.mfd.NavigationMap, pg.mfd.NavigationMap.mapMenu);
2018-01-31 22:47:35 +00:00
device.updateMenus();
},
};