2018-03-20 20:24:44 +00:00
|
|
|
# Copyright 2018 Stuart Buchanan
|
|
|
|
# This file is part of FlightGear.
|
|
|
|
#
|
|
|
|
# Foobar is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# FlightGear is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with FlightGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
2018-04-06 18:52:18 +00:00
|
|
|
# WaypointEntry page. This is an overlay, sitting on whatever page the user
|
|
|
|
# is on already. Hence it is not called in the normal way, but instead
|
|
|
|
# explicitly called by Flightplan pages to insert a waypoint.
|
2018-03-20 20:24:44 +00:00
|
|
|
|
2018-04-06 18:52:18 +00:00
|
|
|
var WaypointEntry =
|
2018-03-20 20:24:44 +00:00
|
|
|
{
|
|
|
|
SHORTCUTS : [ "FPL", "NRST", "RECENT", "USER", "AIRWAY" ],
|
|
|
|
|
|
|
|
new : func (mfd, myCanvas, device, svg)
|
|
|
|
{
|
|
|
|
var obj = {
|
|
|
|
parents : [
|
2018-04-06 18:52:18 +00:00
|
|
|
WaypointEntry,
|
|
|
|
MFDPage.new(mfd, myCanvas, device, svg, "WaypointEntry", "")
|
2018-03-20 20:24:44 +00:00
|
|
|
],
|
|
|
|
symbols : {},
|
|
|
|
};
|
|
|
|
|
|
|
|
obj.crsrIdx = 0;
|
|
|
|
|
2018-04-06 18:52:18 +00:00
|
|
|
# Dynamic text elements in the SVG file. In the SVG these have an "WaypointEntry" prefix.
|
2018-03-20 20:24:44 +00:00
|
|
|
textelements = [
|
|
|
|
"Name",
|
|
|
|
"City",
|
|
|
|
"Region",
|
|
|
|
"LocationBRG",
|
|
|
|
"LocationDIS",
|
2018-04-06 18:52:18 +00:00
|
|
|
"LocationLat",
|
|
|
|
"LocationLon",
|
2018-03-20 20:24:44 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
obj.addTextElements(textelements);
|
|
|
|
|
|
|
|
obj._SVGGroup.setInt("z-index", 9);
|
|
|
|
|
|
|
|
# Data Entry information. Keyed from the name of the element, which must
|
|
|
|
# be one of the textelements above. Each data element maps to a set of
|
|
|
|
# text elements in the SVG of the form [PageName][TextElement]{0...n}, each
|
|
|
|
# representing a single character for data entry.
|
|
|
|
#
|
|
|
|
# .size is the number of characters of data entry
|
|
|
|
# .chars is the set of characters, used to scroll through using the small
|
|
|
|
# FMS knob.
|
|
|
|
obj.IDEntry = PFD.DataEntryElement.new(obj.pageName, svg, "ID", "", 4, "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789");
|
|
|
|
|
|
|
|
# The Shortcut window. This allows the user to scroll through a set of lists
|
|
|
|
# of waypoints.
|
2018-04-06 18:52:18 +00:00
|
|
|
obj.WaypointSubmenuGroup = obj._SVGGroup.getElementById("WaypointEntryWaypointSubmenuGroup");
|
|
|
|
assert(obj.WaypointSubmenuGroup != nil, "Unable to find WaypointEntryWaypointSubmenuGroup");
|
2018-03-20 20:24:44 +00:00
|
|
|
obj.WaypointSubmenuGroup.setVisible(0);
|
2018-04-06 18:52:18 +00:00
|
|
|
obj.WaypointSubmenuSelect = PFD.ScrollElement.new(obj.pageName, svg, "WaypointSubmenuSelect", WaypointEntry.SHORTCUTS);
|
2018-03-20 20:24:44 +00:00
|
|
|
obj.WaypointSubmenuScroll = PFD.GroupElement.new(obj.pageName, svg, [ "WaypointSubmenuScroll" ] , 4, "WaypointSubmenuScroll", 0, "WaypointSubmenuScrollTrough" , "WaypointSubmenuScrollThumb", 60);
|
|
|
|
|
2018-04-06 18:52:18 +00:00
|
|
|
# The Airport Chart - only displayed on the MFD variant (where thre's if there's a Map SVG element present)
|
2018-03-20 20:24:44 +00:00
|
|
|
if (obj.elementExists("Map")) {
|
2018-04-06 18:52:18 +00:00
|
|
|
obj.WaypointEntryChart = fg1000.NavMap.new(obj, obj.getElement("Map"), [860,440], "rect(-160px, 160px, 160px, -160px)", 0, 2, 1);
|
|
|
|
} else {
|
|
|
|
obj.WaypointEntryChart = nil;
|
2018-03-20 20:24:44 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 18:52:18 +00:00
|
|
|
obj.setController(fg1000.WaypointEntryController.new(obj, svg));
|
2018-03-20 20:24:44 +00:00
|
|
|
return obj;
|
|
|
|
},
|
|
|
|
|
2018-04-06 18:52:18 +00:00
|
|
|
displayDestination : func(destination) {
|
2018-03-20 20:24:44 +00:00
|
|
|
if (destination != nil) {
|
|
|
|
# Display a given location
|
2018-04-06 18:52:18 +00:00
|
|
|
if (me.WaypointEntryChart != nil) {
|
|
|
|
me.WaypointEntryChart.setVisible(1);
|
|
|
|
me.WaypointEntryChart.getController().setPosition(destination.lat,destination.lon);
|
2018-03-20 20:24:44 +00:00
|
|
|
}
|
|
|
|
me.setTextElement("Name", string.uc(destination.name));
|
2018-04-06 18:52:18 +00:00
|
|
|
me.setTextElement("City", "");
|
|
|
|
me.setTextElement("Region", "");
|
2018-03-20 20:24:44 +00:00
|
|
|
me.setTextElement("LocationBRG", "" ~ sprintf("%03d°", destination.course));
|
|
|
|
me.setTextElement("LocationDIS", sprintf("%d", destination.range_nm) ~ "nm");
|
2018-04-06 18:52:18 +00:00
|
|
|
me.setTextElementLat("LocationLat", destination.lat);
|
|
|
|
me.setTextElementLon("LocationLon", destination.lon);
|
2018-03-20 20:24:44 +00:00
|
|
|
me.IDEntry.setValue(destination.id);
|
|
|
|
} else {
|
2018-04-06 18:52:18 +00:00
|
|
|
if (me.WaypointEntryChart != nil) me.WaypointEntryChart.setVisible(0);
|
|
|
|
me.setTextElement("Name", "___");
|
|
|
|
me.setTextElement("City", "____________");
|
|
|
|
me.setTextElement("Region", "____________");
|
|
|
|
me.setTextElement("LocationBRG", "___°");
|
|
|
|
me.setTextElement("LocationDIS", "__._nm");
|
|
|
|
me.setTextElement("LocationLat", "_ __°__.__'");
|
|
|
|
me.setTextElement("LocationLon", "____°__.__'");
|
|
|
|
me.IDEntry.setValue("####");
|
2018-03-20 20:24:44 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
offdisplay : func() {
|
|
|
|
me._group.setVisible(0);
|
2018-04-06 18:52:18 +00:00
|
|
|
me.getElement("Group").setVisible(0);
|
2018-03-20 20:24:44 +00:00
|
|
|
me.getController().offdisplay();
|
|
|
|
},
|
|
|
|
ondisplay : func() {
|
|
|
|
me._group.setVisible(1);
|
2018-04-06 18:52:18 +00:00
|
|
|
me.getElement("Group").setVisible(1);
|
2018-03-20 20:24:44 +00:00
|
|
|
me.getController().ondisplay();
|
|
|
|
},
|
|
|
|
};
|