2020-03-09 18:00:22 +00:00
|
|
|
var vertRev = {
|
2020-01-23 14:14:48 +00:00
|
|
|
title: [nil, nil, nil],
|
|
|
|
subtitle: [nil, nil],
|
|
|
|
fontMatrix: [[0, 0, 0, 0, 0, 0],[0, 0, 0, 0, 0, 0]],
|
|
|
|
arrowsMatrix: [[0, 0, 0, 0, 0, 0],[0, 0, 0, 0, 0, 0]],
|
|
|
|
arrowsColour: [["ack", "ack", "ack", "ack", "ack", "ack"],["ack", "ack", "ack", "ack", "ack", "ack"]],
|
|
|
|
L1: [nil, nil, "ack"], # content, title, colour
|
|
|
|
L2: [nil, nil, "ack"],
|
|
|
|
L3: [nil, nil, "ack"],
|
|
|
|
L4: [nil, nil, "ack"],
|
|
|
|
L5: [nil, nil, "ack"],
|
|
|
|
L6: [nil, nil, "ack"],
|
|
|
|
R1: [nil, nil, "ack"],
|
|
|
|
R2: [nil, nil, "ack"],
|
|
|
|
R3: [nil, nil, "ack"],
|
|
|
|
R4: [nil, nil, "ack"],
|
|
|
|
R5: [nil, nil, "ack"],
|
|
|
|
R6: [nil, nil, "ack"],
|
|
|
|
depAirport: nil,
|
|
|
|
arrAirport: nil,
|
|
|
|
index: nil,
|
|
|
|
computer: nil,
|
2020-06-13 02:12:28 +00:00
|
|
|
new: func(type, id, index, computer, wp, plan) {
|
2020-03-09 18:00:22 +00:00
|
|
|
var vr = {parents:[vertRev]};
|
|
|
|
vr.type = type; # 0 = origin 1 = destination 2 = wpt not ppos 3 = ppos 4 = cruise wpt 5 = climb wpt (3 + 4 not needed yet)
|
|
|
|
vr.id = id;
|
|
|
|
vr.index = index;
|
|
|
|
vr.computer = computer;
|
2020-06-13 02:12:28 +00:00
|
|
|
vr.wp = wp;
|
|
|
|
vr.plan = plan;
|
2020-03-09 18:00:22 +00:00
|
|
|
vr._setupPageWithData();
|
|
|
|
vr._checkTmpy();
|
|
|
|
return vr;
|
2020-01-23 14:14:48 +00:00
|
|
|
},
|
|
|
|
del: func() {
|
|
|
|
return nil;
|
|
|
|
},
|
|
|
|
_checkTmpy: func() {
|
|
|
|
if (fmgc.flightPlanController.temporaryFlag[me.computer]) {
|
|
|
|
me.L6 = [" F-PLN", " TMPY", "yel"];
|
|
|
|
me.arrowsColour[0][5] = "yel";
|
|
|
|
canvas_mcdu.pageSwitch[me.computer].setBoolValue(0);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_setupPageWithData: func() {
|
2020-03-09 18:00:22 +00:00
|
|
|
if (me.type == 3) {
|
2020-01-23 14:14:48 +00:00
|
|
|
me.title = ["VERT REV", " AT ", "PPOS"];
|
2020-03-25 21:10:07 +00:00
|
|
|
me.L1 = ["", " EFOB ---.-", "wht"];
|
|
|
|
me.R1 = ["", "EXTRA ---.- ", "wht"];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.L2 = ["250/10000", " CLB SPD LIM", "mag"];
|
2020-03-09 18:00:22 +00:00
|
|
|
me.L4 = [" CONSTANT MACH", nil, "wht"];
|
|
|
|
me.L5 = [" WIND DATA", nil, "wht"];
|
2020-01-23 14:14:48 +00:00
|
|
|
me.L6 = [" RETURN", nil, "wht"];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.R2 = ["RTA ", nil, "wht"];
|
2020-05-17 13:03:50 +00:00
|
|
|
me.arrowsMatrix = [[0, 0, 0, 1, 1, 1], [0, 1, 0, 0, 0, 0]];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.arrowsColour = [["ack", "ack", "ack", "wht", "wht", "wht"], ["ack", "wht", "ack", "ack", "wht", "wht"]];
|
2020-03-09 18:00:22 +00:00
|
|
|
me.fontMatrix = [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]];
|
2020-06-15 15:32:29 +00:00
|
|
|
} elsif (me.type == 2) {
|
2020-03-09 18:00:22 +00:00
|
|
|
me.title = ["VERT REV", " AT ", me.id];
|
2020-03-25 21:10:07 +00:00
|
|
|
me.L1 = ["", " EFOB ---.-", "wht"];
|
|
|
|
me.R1 = ["", "EXTRA ---.- ", "wht"];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.L2 = ["250/10000", " CLB SPD LIM", "mag"];
|
2020-03-09 18:00:22 +00:00
|
|
|
me.L3 = [" [ ]", " SPD CSTR", "blu"];
|
|
|
|
me.L4 = [" CONSTANT MACH", nil, "wht"];
|
|
|
|
me.L5 = [" WIND DATA", nil, "wht"];
|
2020-05-18 16:11:42 +00:00
|
|
|
me.L6 = [" CLB", nil, "amb"];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.R2 = ["RTA ", nil, "wht"];
|
2020-03-09 18:00:22 +00:00
|
|
|
me.R3 = ["[ ] ", "ALT CSTR ", "blu"];
|
2020-05-18 16:11:42 +00:00
|
|
|
me.R6 = ["DES ", nil, "amb"];
|
2020-05-18 16:14:11 +00:00
|
|
|
# When the system does vertical planning, L6 should be RETURN and R6 not used if the MCDU knows the waypoint is during climb or descent.
|
|
|
|
# The CLB or DES prompts should only be shown for a vertical revision in the cruise phase.
|
|
|
|
# For now we fake it and allow the user to press either, which both act like RETURN.
|
|
|
|
# When CLB/DES are shown, a small "OR" should be shown between them.
|
|
|
|
# The 'arrows' for CLB/DES should actually be asterisks.
|
2020-05-18 16:11:42 +00:00
|
|
|
me.arrowsMatrix = [[0, 0, 0, 1, 1, 1], [0, 1, 0, 0, 0, 1]];
|
2020-05-18 16:19:22 +00:00
|
|
|
me.arrowsColour = [["ack", "ack", "ack", "wht", "wht", "amb"], ["ack", "wht", "ack", "ack", "wht", "amb"]];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.fontMatrix = [[0, 0, 1, 0, 0, 0], [0, 0, 1, 0, 0, 0]];
|
2020-01-23 14:14:48 +00:00
|
|
|
} else {
|
|
|
|
me.title = ["VERT REV", " AT ", me.id];
|
|
|
|
|
|
|
|
if (me.type == 0) {
|
2020-04-23 13:01:13 +00:00
|
|
|
if (size(me.id) > 4) {
|
|
|
|
me.arrAirport = findAirportsByICAO(left(me.id, 4));
|
|
|
|
} else {
|
|
|
|
me.arrAirport = findAirportsByICAO(me.id);
|
|
|
|
}
|
|
|
|
me.L1 = ["", " EFOB ---.-", "wht"];
|
|
|
|
me.R1 = ["", "EXTRA ---.- ", "wht"];
|
|
|
|
me.L2 = ["250/10000", " CLB SPD LIM", "mag"];
|
|
|
|
me.L4 = [" CONSTANT MACH", nil, "wht"];
|
|
|
|
me.L5 = [" WIND DATA", nil, "wht"];
|
|
|
|
me.L6 = [" RETURN", nil, "wht"];
|
|
|
|
me.R2 = ["RTA ", nil, "wht"];
|
2020-05-17 13:03:50 +00:00
|
|
|
me.arrowsMatrix = [[0, 0, 0, 1, 1, 1], [0, 1, 0, 0, 0, 0]];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.arrowsColour = [["ack", "ack", "ack", "wht", "wht", "wht"], ["ack", "wht", "ack", "ack", "wht", "wht"]];
|
|
|
|
me.fontMatrix = [[0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0]];
|
2020-01-23 14:14:48 +00:00
|
|
|
} elsif (me.type == 1) {
|
|
|
|
if (size(me.id) > 4) {
|
|
|
|
me.arrAirport = findAirportsByICAO(left(me.id, 4));
|
|
|
|
} else {
|
|
|
|
me.arrAirport = findAirportsByICAO(me.id);
|
|
|
|
}
|
2020-03-25 21:10:07 +00:00
|
|
|
me.L1 = ["", " EFOB ---.-", "wht"];
|
|
|
|
me.R1 = ["", "EXTRA ---.- ", "wht"];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.L2 = ["250/10000", " DES SPD LIM", "mag"];
|
2020-03-09 18:00:22 +00:00
|
|
|
me.L4 = [" CONSTANT MACH", nil, "wht"];
|
|
|
|
me.L5 = [" WIND DATA", nil, "wht"];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.L6 = [" RETURN", nil, "wht"];
|
|
|
|
me.R2 = ["RTA ", nil, "wht"];
|
|
|
|
me.R3 = ["3000", "G/S INTCP", "grn"];
|
2020-05-17 13:03:50 +00:00
|
|
|
me.arrowsMatrix = [[0, 0, 0, 1, 1, 1], [0, 1, 0, 0, 0, 0]];
|
2020-04-23 13:01:13 +00:00
|
|
|
me.arrowsColour = [["ack", "ack", "ack", "wht", "wht", "wht"], ["ack", "wht", "ack", "ack", "wht", "wht"]];
|
|
|
|
me.fontMatrix = [[0, 0, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0]];
|
2020-01-23 14:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-23 13:01:13 +00:00
|
|
|
me.updateR5();
|
2020-01-23 14:14:48 +00:00
|
|
|
},
|
|
|
|
makeTmpy: func() {
|
|
|
|
if (!fmgc.flightPlanController.temporaryFlag[me.computer]) {
|
2020-03-28 15:53:50 +00:00
|
|
|
if (!dirToFlag) {
|
|
|
|
fmgc.flightPlanController.createTemporaryFlightPlan(me.computer);
|
|
|
|
} else {
|
2020-05-23 11:16:20 +00:00
|
|
|
mcdu_message(me.computer, "DIR TO IN PROGRESS");
|
2020-03-28 15:53:50 +00:00
|
|
|
}
|
2020-01-23 14:14:48 +00:00
|
|
|
me._checkTmpy();
|
|
|
|
}
|
|
|
|
},
|
2020-04-23 13:01:13 +00:00
|
|
|
updateR5: func() {
|
2020-07-10 21:15:37 +00:00
|
|
|
if (fmgc.FMGCInternal.crzSet and (fmgc.FMGCInternal.phase < 4 or fmgc.FMGCInternal.phase == 7)) {
|
2020-04-23 13:01:13 +00:00
|
|
|
me.R5 = ["STEP ALTS ", nil, "wht"];
|
2020-04-23 19:45:31 +00:00
|
|
|
me.arrowsMatrix[1][4] = 1;
|
2020-04-23 13:01:13 +00:00
|
|
|
} else {
|
|
|
|
me.R5 = [nil, nil, "ack"];
|
2020-04-23 19:45:31 +00:00
|
|
|
me.arrowsMatrix[1][4] = 0;
|
2020-04-23 13:01:13 +00:00
|
|
|
}
|
|
|
|
},
|
2020-06-13 02:12:28 +00:00
|
|
|
pushButtonLeft: func(index) {
|
|
|
|
if (index == 5) {
|
2020-06-14 11:02:45 +00:00
|
|
|
#print("role: ", me.wp.wp_role, ", type: ", me.wp.wp_type);
|
2020-06-13 02:12:28 +00:00
|
|
|
if (me.wp.wp_role == "sid") {
|
|
|
|
if (canvas_mcdu.myCLBWIND[me.computer] == nil) {
|
|
|
|
canvas_mcdu.myCLBWIND[me.computer] = windCLBPage.new(me.computer);
|
|
|
|
} else {
|
|
|
|
canvas_mcdu.myCLBWIND[me.computer].reload();
|
|
|
|
}
|
|
|
|
fmgc.windController.accessPage[me.computer] = "VERTREV";
|
|
|
|
setprop("MCDU[" ~ me.computer ~ "]/page", "WINDCLB");
|
|
|
|
} else if (me.wp.wp_role == "star" or me.wp.wp_role == "approach" or me.wp.wp_role == "missed") {
|
|
|
|
if (canvas_mcdu.myDESWIND[me.computer] == nil) {
|
|
|
|
canvas_mcdu.myDESWIND[me.computer] = windDESPage.new(me.computer);
|
|
|
|
} else {
|
|
|
|
canvas_mcdu.myDESWIND[me.computer].reload();
|
|
|
|
}
|
|
|
|
fmgc.windController.accessPage[me.computer] = "VERTREV";
|
|
|
|
setprop("MCDU[" ~ me.computer ~ "]/page", "WINDDES");
|
|
|
|
} else if (me.wp.wp_role == nil and me.wp.wp_type == "navaid") {
|
2020-07-30 11:54:02 +00:00
|
|
|
cur_location = 0;
|
|
|
|
for (i = 0; i < size(fmgc.windController.nav_indicies[me.plan]); i += 1) {
|
|
|
|
if (fmgc.windController.nav_indicies[me.plan][i] == me.index) {
|
|
|
|
cur_location = i;
|
2020-06-13 02:12:28 +00:00
|
|
|
}
|
2020-07-30 11:54:02 +00:00
|
|
|
}
|
|
|
|
if (canvas_mcdu.myCRZWIND[me.computer] == nil) {
|
2020-06-13 02:12:28 +00:00
|
|
|
canvas_mcdu.myCRZWIND[me.computer] = windCRZPage.new(me.computer, me.wp, cur_location);
|
|
|
|
} else {
|
2020-07-30 11:54:02 +00:00
|
|
|
canvas_mcdu.myCRZWIND[me.computer].waypoint = me.wp;
|
|
|
|
canvas_mcdu.myCRZWIND[me.computer].cur_location = cur_location;
|
2020-06-13 02:12:28 +00:00
|
|
|
canvas_mcdu.myCRZWIND[me.computer].reload();
|
|
|
|
}
|
|
|
|
fmgc.windController.accessPage[me.computer] = "VERTREV";
|
|
|
|
setprop("MCDU[" ~ me.computer ~ "]/page", "WINDCRZ");
|
|
|
|
} else {
|
|
|
|
if (canvas_mcdu.myCRZWIND[me.computer] == nil) {
|
|
|
|
canvas_mcdu.myCRZWIND[me.computer] = windCRZPage.new(me.computer, nil, 0);
|
|
|
|
} else {
|
|
|
|
canvas_mcdu.myCRZWIND[me.computer].reload();
|
|
|
|
}
|
|
|
|
fmgc.windController.accessPage[me.computer] = "VERTREV";
|
|
|
|
setprop("MCDU[" ~ me.computer ~ "]/page", "WINDCRZ");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mcdu_message(me.computer, "NOT ALLOWED");
|
|
|
|
}
|
|
|
|
},
|
2020-04-23 13:01:13 +00:00
|
|
|
};
|
|
|
|
|
2020-07-10 00:09:19 +00:00
|
|
|
var updateCrzLvlCallback = func () {
|
2020-04-23 13:01:13 +00:00
|
|
|
if (canvas_mcdu.myVertRev[0] != nil) {
|
|
|
|
canvas_mcdu.myVertRev[0].updateR5();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (canvas_mcdu.myVertRev[1] != nil) {
|
|
|
|
canvas_mcdu.myVertRev[1].updateR5();
|
|
|
|
}
|
2020-07-10 00:09:19 +00:00
|
|
|
};
|
2020-04-23 13:01:13 +00:00
|
|
|
|
2020-07-10 21:15:37 +00:00
|
|
|
var updatePhaseCallback = func() {
|
2020-04-23 13:01:13 +00:00
|
|
|
if (canvas_mcdu.myVertRev[0] != nil) {
|
|
|
|
canvas_mcdu.myVertRev[0].updateR5();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (canvas_mcdu.myVertRev[1] != nil) {
|
|
|
|
canvas_mcdu.myVertRev[1].updateR5();
|
|
|
|
}
|
2020-07-10 21:15:37 +00:00
|
|
|
};
|