1
0
Fork 0
A320-family/Models/Instruments/MCDU/MCDU.nas

6153 lines
230 KiB
Text
Raw Normal View History

2020-04-30 19:26:36 +00:00
# A3XX mCDU by Joshua Davidson (Octal450), Jonathan Redpath, and Matthew Maring (mattmaring)
2022-01-11 02:17:41 +00:00
# Copyright (c) 2022 Josh Davidson (Octal450)
2020-04-30 19:26:36 +00:00
# Copyright (c) 2020 Matthew Maring (mattmaring)
2019-10-14 16:48:35 +00:00
var MCDU_1 = nil;
var MCDU_2 = nil;
var MCDU1_display = nil;
var MCDU2_display = nil;
2019-12-30 21:24:00 +00:00
var myLatRev = [nil, nil];
2020-03-09 18:00:22 +00:00
var myVertRev = [nil, nil];
2019-12-30 21:24:00 +00:00
var myDeparture = [nil, nil];
2020-01-11 13:30:08 +00:00
var myArrival = [nil, nil];
2020-01-05 20:21:28 +00:00
var myFpln = [nil, nil];
2020-03-26 20:40:49 +00:00
var myDirTo = [nil, nil];
2020-04-08 21:49:27 +00:00
var myHold = [nil, nil];
var myAirways = [nil, nil];
2020-01-11 13:30:08 +00:00
var myDuplicate = [nil, nil];
var myClosestAirport = [nil, nil];
2020-07-31 13:12:44 +00:00
var myReceivedMessage = [nil, nil];
2020-07-30 18:36:00 +00:00
var myReceivedMessages = [nil, nil];
2020-05-19 22:37:04 +00:00
var myPilotWP = [nil, nil];
2020-05-31 14:30:33 +00:00
var myWind = [nil, nil];
2020-05-31 14:05:44 +00:00
var myCLBWIND = [nil, nil];
2020-05-31 14:30:33 +00:00
var myCRZWIND = [nil, nil];
var myDESWIND = [nil, nil];
var myHISTWIND = [nil, nil];
2020-10-23 19:38:12 +00:00
var myAtis = [nil, nil];
2021-12-10 14:54:38 +00:00
var normal = 60;
var small = 46;
2019-10-14 16:48:35 +00:00
var page = "";
var fplnLineSize = 0;
var fplnl1 = "";
var fplnl1s = "";
var fplnl2 = "";
var fplnl2s = "";
var fplnl3 = "";
var fplnl3s = "";
var fplnl4 = "";
var fplnl4s = "";
var fplnl5 = "";
var fplnl5s = "";
var fplnl6 = "";
var fplnl6s = "";
setprop("/MCDUC/colors/wht/r", 1);
setprop("/MCDUC/colors/wht/g", 1);
setprop("/MCDUC/colors/wht/b", 1);
setprop("/MCDUC/colors/grn/r", 0.0509);
setprop("/MCDUC/colors/grn/g", 0.7529);
setprop("/MCDUC/colors/grn/b", 0.2941);
setprop("/MCDUC/colors/blu/r", 0.0901);
setprop("/MCDUC/colors/blu/g", 0.6039);
setprop("/MCDUC/colors/blu/b", 0.7176);
setprop("/MCDUC/colors/amb/r", 0.7333);
setprop("/MCDUC/colors/amb/g", 0.3803);
setprop("/MCDUC/colors/amb/b", 0.0000);
setprop("/MCDUC/colors/yel/r", 0.9333);
setprop("/MCDUC/colors/yel/g", 0.9333);
setprop("/MCDUC/colors/yel/b", 0.0000);
setprop("/MCDUC/colors/mag/r", 0.6902);
setprop("/MCDUC/colors/mag/g", 0.3333);
setprop("/MCDUC/colors/mag/b", 0.7541);
var WHITE = [1.0000,1.0000,1.0000];
var GREEN = [0.0509,0.7529,0.2941];
var BLUE = [0.0901,0.6039,0.7176];
var AMBER = [0.7333,0.3803,0.0000];
var YELLOW = [0.9333,0.9333,0.0000];
2020-03-09 18:00:22 +00:00
var MAGENTA = [0.6902,0.3333,0.7541];
2019-10-14 16:48:35 +00:00
# Fetch nodes:
var mcdu_keyboard_left = props.globals.getNode("/FMGC/keyboard-left", 0);
var mcdu_keyboard_right = props.globals.getNode("/FMGC/keyboard-right", 0);
2020-09-04 19:56:22 +00:00
var acconfig_weight_kgs = props.globals.getNode("/systems/acconfig/options/weight-kgs", 1);
var engRdy = props.globals.getNode("/engines/ready");
#ACCONFIG
var mcdu1_lgt = props.globals.getNode("/controls/lighting/DU/mcdu1", 1);
var mcdu2_lgt = props.globals.getNode("/controls/lighting/DU/mcdu2", 1);
var acType = props.globals.getNode("/options/model-number", 1);
var engType = props.globals.getNode("/options/engine-name", 1);
var idleFactor = props.globals.getNode("/options/company-options/idle-factor", 1);
var perfFactor = props.globals.getNode("/options/company-options/perf-factor", 1);
# INT-A
var ADIRSMCDUBTN = props.globals.getNode("/controls/adirs/mcducbtn", 1);
# IRSINIT variables
var align_set = props.globals.getNode("/FMGC/internal/align-set", 1);
# ROUTE SELECTION
# INT-B
# FUELPRED
var state1 = props.globals.getNode("/engines/engine[0]/state", 1);
var state2 = props.globals.getNode("/engines/engine[1]/state", 1);
# PERF
var altitude = props.globals.getNode("/instrumentation/altimeter/indicated-altitude-ft", 1);
# TO PERF
var clbReducFt = props.globals.getNode("/fdm/jsbsim/fadec/clbreduc-ft", 1);
var reducFt = props.globals.getNode("/FMGC/internal/accel-agl-ft", 1); # It's not AGL anymore
var thrAccSet = props.globals.getNode("/MCDUC/thracc-set", 1);
var flex = props.globals.getNode("/fdm/jsbsim/fadec/limit/flex-temp", 1);
var flexSet = props.globals.getNode("/fdm/jsbsim/fadec/limit/flex-active-cmd", 1);
var engOutAcc = props.globals.getNode("/FMGC/internal/eng-out-reduc", 1);
var engOutAccSet = props.globals.getNode("/MCDUC/reducacc-set", 1);
var managedSpeed = props.globals.getNode("/it-autoflight/input/spd-managed", 1);
# CLB PERF
var activate_once = props.globals.getNode("/FMGC/internal/activate-once", 1);
var activate_twice = props.globals.getNode("/FMGC/internal/activate-twice", 1);
# CRZ PERF
# DES PERF
# APPR PERF
var dest_qnh = props.globals.getNode("/FMGC/internal/dest-qnh", 1);
var dest_temp = props.globals.getNode("/FMGC/internal/dest-temp", 1);
var final = props.globals.getNode("/FMGC/internal/final", 1);
var radio = props.globals.getNode("/FMGC/internal/radio", 1);
var baro = props.globals.getNode("/FMGC/internal/baro", 1);
# GA PERF
# AOC - SENSORS
var gear0_wow = props.globals.getNode("/gear/gear[0]/wow", 1);
var doorL1_pos = props.globals.getNode("/sim/model/door-positions/doorl1/position-norm", 1); #FWD door
var doorR1_pos = props.globals.getNode("/sim/model/door-positions/doorr1/position-norm", 1); #FWD door
var doorL4_pos = props.globals.getNode("/sim/model/door-positions/doorl4/position-norm", 1); #AFT door
var doorR4_pos = props.globals.getNode("/sim/model/door-positions/doorr4/position-norm", 1); #AFT door
2019-10-14 16:48:35 +00:00
# Fetch nodes into vectors
var pageProp = [props.globals.getNode("/MCDU[0]/page", 1), props.globals.getNode("/MCDU[1]/page", 1)];
var active = [props.globals.getNode("/MCDU[0]/active", 1), props.globals.getNode("/MCDU[1]/active", 1)];
var activeAtsu = [props.globals.getNode("/MCDU[0]/atsu-active", 1), props.globals.getNode("/MCDU[1]/atsu-active", 1)];
props.globals.initNode("/MCDU[0]/active-system", "", "STRING");
props.globals.initNode("/MCDU[1]/active-system", "", "STRING");
2020-09-04 19:56:22 +00:00
# Conversion factor pounds to kilogram
2020-09-19 13:43:44 +00:00
var LBS2KGS = 0.4535924;
2019-10-14 16:48:35 +00:00
# Create Nodes:
var pageSwitch = [props.globals.initNode("/MCDU[0]/internal/switch", 0, "BOOL"), props.globals.initNode("/MCDU[1]/internal/switch", 0, "BOOL")];
2021-01-23 19:37:04 +00:00
# Page freeze on POSMON
var pageFreezed = [nil,nil];
var togglePageFreeze = func(i) {
if (pageFreezed[i] == nil) {
pageFreezed[i] = sprintf("%02d%02d", getprop("/sim/time/utc/hour"), getprop("/sim/time/utc/minute"));
} else {
pageFreezed[i] = nil;
}
}
2019-10-14 16:48:35 +00:00
var canvas_MCDU_base = {
init: func(canvas_group, file) {
var font_mapper = func(family, weight) {
return "HoneywellMCDU.ttf";
2019-10-14 16:48:35 +00:00
};
canvas.parsesvg(canvas_group, file, {"font-mapper": font_mapper});
var svg_keys = me.getKeys();
foreach(var key; svg_keys) {
me[key] = canvas_group.getElementById(key);
var svg_keys = me.getKeys();
foreach (var key; svg_keys) {
me[key] = canvas_group.getElementById(key);
var clip_el = canvas_group.getElementById(key ~ "_clip");
if (clip_el != nil) {
clip_el.setVisible(0);
var tran_rect = clip_el.getTransformedBounds();
var clip_rect = sprintf("rect(%d,%d, %d,%d)",
tran_rect[1], # 0 ys
tran_rect[2], # 1 xe
tran_rect[3], # 2 ye
tran_rect[0]); #3 xs
2020-03-28 20:40:02 +00:00
# coordinates are top,right,bottom,left (ys, xe, ye, xs) ref: l621 of simgear/canvas/CanvasElement.cxx
2019-10-14 16:48:35 +00:00
me[key].set("clip", clip_rect);
me[key].set("clip-frame", canvas.Element.PARENT);
}
}
}
me["Simple_L1S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L2S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L3S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L4S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L5S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L6S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C1S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C2S"].setFont("HoneywellMCDUSmall.ttf");
2022-01-18 16:05:27 +00:00
me["Simple_C3S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C4S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C5S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C6S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R1S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R2S"].setFont("HoneywellMCDUSmall.ttf");
2022-01-18 16:05:27 +00:00
me["Simple_R3S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R4S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R5S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R6S"].setFont("HoneywellMCDUSmall.ttf");
me["PERFTO_FE"].setColor(BLUE);
me["PERFTO_SE"].setColor(BLUE);
me["PERFTO_OE"].setColor(BLUE);
2019-10-14 16:48:35 +00:00
me["PERFAPPR_FE"].setColor(BLUE);
me["PERFAPPR_SE"].setColor(BLUE);
me["PERFAPPR_OE"].setColor(BLUE);
me["PERFGA_FE"].setColor(BLUE);
me["PERFGA_SE"].setColor(BLUE);
me["PERFGA_OE"].setColor(BLUE);
2019-10-14 16:48:35 +00:00
me.page = canvas_group;
2021-01-25 21:34:44 +00:00
me.updateretard = 0; # skip a few page update to save CPU
2019-10-14 16:48:35 +00:00
return me;
},
getKeys: func() {
2021-01-20 19:32:21 +00:00
return ["Simple","Simple_Center","Scratchpad","Simple_Title","Simple_Title2","Simple_PageNum","ArrowLeft","ArrowRight","Simple_L1","Simple_L2","Simple_L3","Simple_L4",
2020-04-12 22:44:02 +00:00
"Simple_L5","Simple_L6","Simple_L0S","Simple_L1S","Simple_L2S","Simple_L3S","Simple_L4S","Simple_L5S","Simple_L6S","Simple_L1_Arrow",
"Simple_L2_Arrow","Simple_L3_Arrow","Simple_L4_Arrow","Simple_L5_Arrow","Simple_L6_Arrow","Simple_R1","Simple_R2","Simple_R3","Simple_R4","Simple_R5",
"Simple_R6","Simple_R1S","Simple_R2S","Simple_R3S","Simple_R4S","Simple_R5S","Simple_R6S","Simple_R1_Arrow","Simple_R2_Arrow","Simple_R3_Arrow",
"Simple_R4_Arrow","Simple_R5_Arrow","Simple_R6_Arrow","Simple_C1","Simple_C2","Simple_C3","Simple_C3B","Simple_C4","Simple_C4B","Simple_C5","Simple_C6","Simple_C1S",
2020-04-12 22:44:02 +00:00
"Simple_C2S","Simple_C3S","Simple_C4S","Simple_C5S","Simple_C6S","INITA","INITA_CoRoute","INITA_FltNbr","INITA_CostIndex","INITA_CruiseFLTemp",
"INITA_FromTo","INITA_InitRequest","INITA_AlignIRS","INITB","INITB_ZFWCG","INITB_ZFW","INITB_ZFWCG_S","INITB_Block","FUELPRED","FUELPRED_ZFW",
"FUELPRED_ZFWCG","FUELPRED_ZFWCG_S","PROG","PROG_UPDATE","PERFTO","PERFTO_V1","PERFTO_VR","PERFTO_V2","PERFTO_FE","PERFTO_SE","PERFTO_OE","PERFAPPR",
2020-04-12 22:44:02 +00:00
"PERFAPPR_FE","PERFAPPR_SE","PERFAPPR_OE","PERFAPPR_LDG_3","PERFAPPR_LDG_F","PERFGA","PERFGA_FE","PERFGA_SE","PERFGA_OE","FPLN","FPLN_From",
"FPLN_TMPY_group","FPLN_FROM","FPLN_Callsign","departureTMPY", "arrowsDepArr","arrow1L","arrow2L","arrow3L","arrow4L","arrow5L","arrow1R","arrow2R",
2020-08-08 17:35:51 +00:00
"arrow3R","arrow4R","arrow5R","DIRTO_TMPY_group","IRSINIT","IRSINIT_1","IRSINIT_2","IRSINIT_star","NOTIFY","NOTIFY_FLTNBR","NOTIFY_AIRPORT","WEATHERREQSEND",
2020-10-24 13:07:15 +00:00
"WIND","WIND_CANCEL","WIND_INSERT_star","WIND_UPDOWN","MODEVHF3","PRINTPAGE","COMM-ADS","COCALL","COCALLTUNE","ATISSend1","ATISSend2","ATISSend3","ATISSend4",
"ATISArrows"];
2019-10-14 16:48:35 +00:00
},
update: func() {
if (systems.ELEC.Bus.ac1.getValue() >= 110 and mcdu1_lgt.getValue() > 0.01) {
2019-10-14 16:48:35 +00:00
MCDU_1.update();
2021-06-06 16:45:04 +00:00
pts.Instrumentation.Mcdu.mcdu1On.setBoolValue(1);
2019-10-14 16:48:35 +00:00
MCDU_1.page.show();
} else {
MCDU_1.page.hide();
2021-06-06 16:45:04 +00:00
pts.Instrumentation.Mcdu.mcdu1On.setBoolValue(0);
2019-10-14 16:48:35 +00:00
}
if (systems.ELEC.Bus.ac2.getValue() >= 110 and mcdu2_lgt.getValue() > 0.01) {
2019-10-14 16:48:35 +00:00
MCDU_2.update();
2021-06-06 16:45:04 +00:00
pts.Instrumentation.Mcdu.mcdu2On.setBoolValue(1);
2019-10-14 16:48:35 +00:00
MCDU_2.page.show();
} else {
MCDU_2.page.hide();
2021-06-06 16:45:04 +00:00
pts.Instrumentation.Mcdu.mcdu2On.setBoolValue(0);
2019-10-14 16:48:35 +00:00
}
},
2020-07-23 14:29:44 +00:00
defaultHide: func() {
me["Simple"].show();
me["Simple_Center"].hide();
2021-01-20 19:32:21 +00:00
me["Simple_Title2"].hide();
2020-07-23 14:29:44 +00:00
me["FPLN"].hide();
me["DIRTO_TMPY_group"].hide();
me["INITA"].hide();
me["IRSINIT"].hide();
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
2020-07-23 14:29:44 +00:00
me["PROG"].hide();
me["PERFTO"].hide();
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_Title"].show();
},
2020-07-30 18:36:00 +00:00
defaultHideWithCenter: func() {
me["Simple"].show();
me["Simple_Center"].show();
2021-01-20 19:32:21 +00:00
me["Simple_Title2"].hide();
2020-07-30 18:36:00 +00:00
me["FPLN"].hide();
me["DIRTO_TMPY_group"].hide();
me["INITA"].hide();
me["IRSINIT"].hide();
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
2020-07-30 18:36:00 +00:00
me["PROG"].hide();
me["PERFTO"].hide();
},
defaultPageNumbers: func() {
me["Simple_Title"].setColor(WHITE);
2020-07-30 18:36:00 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
},
showPageNumbers: func(pagno=0,pagcnt=0) {
if (pagno == 0) return me.defaultPageNumbers();
me["Simple_PageNum"].show();
me["Simple_PageNum"].setText((pagcnt>0) ? pagno ~ "/" ~ pagcnt : pagno);
me["ArrowLeft"].show();
me["ArrowRight"].show();
},
showPageNumbersOnly: func(pagno,pagcnt) {
me["Simple_PageNum"].show();
me["Simple_PageNum"].setText(sprintf("%9s",pagno ~ "/" ~ pagcnt));
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
},
2020-07-24 17:57:23 +00:00
hideAllArrows: func() {
2020-07-24 13:18:17 +00:00
me["Simple_L1_Arrow"].hide();
me["Simple_L2_Arrow"].hide();
me["Simple_L3_Arrow"].hide();
me["Simple_L4_Arrow"].hide();
me["Simple_L5_Arrow"].hide();
me["Simple_L6_Arrow"].hide();
me["Simple_R1_Arrow"].hide();
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].hide();
me["Simple_R4_Arrow"].hide();
me["Simple_R5_Arrow"].hide();
me["Simple_R6_Arrow"].hide();
},
2020-07-30 18:36:00 +00:00
hideAllArrowsButL6: func() {
me["Simple_L1_Arrow"].hide();
me["Simple_L2_Arrow"].hide();
me["Simple_L3_Arrow"].hide();
me["Simple_L4_Arrow"].hide();
me["Simple_L5_Arrow"].hide();
me["Simple_L6_Arrow"].show();
me["Simple_R1_Arrow"].hide();
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].hide();
me["Simple_R4_Arrow"].hide();
me["Simple_R5_Arrow"].hide();
me["Simple_R6_Arrow"].hide();
},
standardFontSize: func() {
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
2021-01-20 19:32:21 +00:00
me.fontSizeLeftS(small, small, small, small, small, small);
2020-07-30 18:36:00 +00:00
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
2021-01-20 19:32:21 +00:00
me.fontSizeRightS(small, small, small, small, small, small);
2021-01-28 18:57:20 +00:00
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeCenterS(small, small, small, small, small, small);
2020-07-30 18:36:00 +00:00
},
standardFontColour: func() {
me.colorLeft("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
},
2021-01-23 19:37:04 +00:00
getLatLogFormatted: func(rootpropname) {
var dms = getprop(rootpropname ~ "latitude-deg");
var degrees = int(dms);
var minutes = sprintf("%.1f",abs((dms - degrees) * 60));
var sign = degrees >= 0 ? "N" : "S";
var dms2 = getprop(rootpropname ~ "longitude-deg");
var degrees2 = int(dms2);
var minutes2 = sprintf("%.1f",abs((dms2 - degrees2) * 60));
var sign2 = degrees2 >= 0 ? "E" : "W";
return sprintf("%d%.1f%s/%07s%s",abs(degrees),minutes,sign,abs(degrees2) ~ minutes2,sign2);
},
2021-01-28 13:59:08 +00:00
getLatLogFormatted2: func(rootpropname) {
var dms = getprop(rootpropname ~ "latitude-deg");
var degrees = int(dms);
var minutes = sprintf("%.1f",abs((dms - degrees) * 60));
var sign = degrees >= 0 ? "N" : "S";
var dms2 = getprop(rootpropname ~ "longitude-deg");
var degrees2 = int(dms2);
var minutes2 = sprintf("%.1f",abs((dms2 - degrees2) * 60));
var sign2 = degrees2 >= 0 ? "E" : "W";
return sprintf("%d°%.1f%s/%03s°%.1f%s",abs(degrees),minutes,sign,abs(degrees2),minutes2,sign2);
2021-01-28 13:59:08 +00:00
},
2021-01-30 20:37:45 +00:00
getIRSStatus: func(a,b = 0) {
var irsstatus = "INVAL";
if (systems.ADIRS.ADIRunits[a].operative) {
if (systems.ADIRS.Operating.aligned[a].getValue()) {
irsstatus = (systems.ADIRS.ADIRunits[a].mode == 2) ? " ATT" : "NAV";
} else {
2021-01-30 20:37:45 +00:00
if (b) {
irsstatus = " ALIGN TTN" ~ sprintf("%2d",math.round(systems.ADIRS.ADIRunits[a]._alignTime) / 60);
2021-01-30 20:37:45 +00:00
} else {
irsstatus = " ALIGN";
2021-01-30 20:37:45 +00:00
}
}
}
return irsstatus;
},
2021-03-01 21:12:12 +00:00
standardColor: func() {
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
},
standardHideExcess: func() {
me["Simple_L0S"].hide();
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
},
2019-10-14 16:48:35 +00:00
updateCommon: func(i) {
page = pageProp[i].getValue();
if (page != "NOTIFICATION") {
me["NOTIFY"].hide();
me["NOTIFY_FLTNBR"].hide();
me["NOTIFY_AIRPORT"].hide();
}
2020-07-23 14:29:44 +00:00
if (page != "COMPANYCALL") {
me["COCALL"].hide();
me["COCALLTUNE"].hide();
}
2020-07-23 15:10:59 +00:00
if (page != "CONNECTSTATUS") {
me["COMM-ADS"].hide();
} else {
me["COMM-ADS"].show();
}
2020-07-24 16:14:48 +00:00
if (page != "VOICEDIRECTORY") {
me["MODEVHF3"].hide();
} else {
me["MODEVHF3"].show();
}
2020-07-30 18:36:00 +00:00
if (page != "WEATHERREQ") {
me["WEATHERREQSEND"].hide();
}
2020-07-24 16:14:48 +00:00
if (page != "COMMINIT" and page != "COMPANYCALL" and page != "VOICEDIRECTORY" and page != "DATAMODE" and page != "COMMSTATUS") {
2020-07-24 13:18:17 +00:00
me["PRINTPAGE"].hide();
} else {
me["PRINTPAGE"].show();
2020-07-24 16:14:48 +00:00
if (page == "DATAMODE" or page == "COMMINIT") {
me["PRINTPAGE"].setColor(BLUE);
} else {
me["PRINTPAGE"].setColor(WHITE);
}
2020-07-24 13:18:17 +00:00
}
2021-01-20 19:32:21 +00:00
if (!pageSwitch[i].getBoolValue()) me.defaultHide();
if (page != "ATIS") {
me["ATISSend1"].hide();
me["ATISSend2"].hide();
me["ATISSend3"].hide();
me["ATISSend4"].hide();
}
2020-10-24 13:07:15 +00:00
if (page != "ATISDETAIL") {
me["ATISArrows"].hide();
}
if (page == "STATUS") {
me["Simple_R5S"].setFont("HoneywellMCDU.ttf");
me["Simple_R5S"].setFontSize(normal);
} else {
me["Simple_R5S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R5S"].setFontSize(small);
}
if (page == "ARRIVAL") {
me["Simple_C4S"].setFont("HoneywellMCDU.ttf");
me["Simple_C5S"].setFont("HoneywellMCDU.ttf");
me["Simple_C6S"].setFont("HoneywellMCDU.ttf");
} else {
me["Simple_C4S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C5S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_C6S"].setFont("HoneywellMCDUSmall.ttf");
}
if (page == "RECEIVEDMSG" or page == "ATISDETAIL" or (page == "ARRIVAL" and myArrival[i] != nil)) {
if (page == "ARRIVAL") {
if (myArrival[i].activePage != 2) {
me["Simple_L2S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L3S"].setFont("HoneywellMCDU.ttf");
} else {
me["Simple_L2S"].setFont("HoneywellMCDU.ttf");
me["Simple_L3S"].setFont("HoneywellMCDUSmall.ttf");
}
} else if (page == "RECEIVEDMSG") {
2022-02-06 21:15:15 +00:00
me["Simple_L2S"].setFontSize(normal);
me["Simple_L3S"].setFontSize(normal);
me["Simple_L4S"].setFontSize(normal);
me["Simple_L5S"].setFontSize(normal);
me["Simple_L2S"].setFont("HoneywellMCDU.ttf");
me["Simple_L3S"].setFont("HoneywellMCDU.ttf");
me["Simple_L4S"].setFont("HoneywellMCDU.ttf");
me["Simple_L5S"].setFont("HoneywellMCDU.ttf");
} else if (page == "ATISDETAIL") {
2022-02-06 21:15:15 +00:00
me["Simple_L2S"].setFontSize(small);
me["Simple_L3S"].setFontSize(small);
me["Simple_L4S"].setFontSize(small);
me["Simple_L5S"].setFontSize(small);
me["Simple_L2S"].setFont("HoneywellMCDU.ttf");
me["Simple_L3S"].setFont("HoneywellMCDU.ttf");
me["Simple_L4S"].setFont("HoneywellMCDU.ttf");
me["Simple_L5S"].setFont("HoneywellMCDU.ttf");
2022-02-06 21:15:15 +00:00
}
} else {
me["Simple_L2S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L2S"].setFontSize(small);
me["Simple_L3S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L3S"].setFontSize(small);
me["Simple_L4S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L4S"].setFontSize(small);
me["Simple_L5S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_L5S"].setFontSize(small);
}
if (page == "IRSMON") {
me["Simple_R1S"].setFont("HoneywellMCDU.ttf");
me["Simple_R1S"].setFontSize(normal);
me["Simple_R2S"].setFont("HoneywellMCDU.ttf");
me["Simple_R2S"].setFontSize(normal);
me["Simple_R3S"].setFont("HoneywellMCDU.ttf");
me["Simple_R3S"].setFontSize(normal);
} else {
me["Simple_R1S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R1S"].setFontSize(small);
me["Simple_R2S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R2S"].setFontSize(small);
me["Simple_R3S"].setFont("HoneywellMCDUSmall.ttf");
me["Simple_R3S"].setFontSize(small);
}
if (page != "POSMON") {
me["Simple_Title"].setFontSize(normal);
me["Simple_Title2"].setFontSize(normal);
}
if (page == "F-PLNA" or page == "F-PLNB") {
if (!pageSwitch[i].getBoolValue()) {
2020-01-05 20:21:28 +00:00
me["Simple"].show();
me["Simple_Center"].show();
me["Simple_C1S"].setColor(WHITE);
me["FPLN"].show();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].hide();
me["INITA"].hide();
me["IRSINIT"].hide();
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
me["PERFTO"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-01-05 20:21:28 +00:00
me["Simple_Title"].hide();
me["Simple_PageNum"].hide();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-07-24 13:18:17 +00:00
me.hideAllArrows();
2022-01-18 16:05:27 +00:00
me.standardFontSize();
pageSwitch[i].setBoolValue(1);
}
if (myFpln[i] != nil) {
2020-07-10 00:09:19 +00:00
if (fmgc.FMGCInternal.flightNumSet) {
me["FPLN_Callsign"].setText(fmgc.FMGCInternal.flightNum);
me["FPLN_Callsign"].show();
} else {
me["FPLN_Callsign"].hide();
}
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myFpln[i]["L" ~ x], "Simple_L" ~ x);
}
me.colorLeft(myFpln[i].L1[2],myFpln[i].L2[2],myFpln[i].L3[2],myFpln[i].L4[2],myFpln[i].L5[2],myFpln[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myFpln[i]["C" ~ x], "Simple_C" ~ x);
}
me.colorCenter(myFpln[i].C1[2],myFpln[i].C2[2],myFpln[i].C3[2],myFpln[i].C4[2],myFpln[i].C5[2],myFpln[i].C6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myFpln[i]["R" ~ x], "Simple_R" ~ x);
}
me.colorRight(myFpln[i].R1[2],myFpln[i].R2[2],myFpln[i].R3[2],myFpln[i].R4[2],myFpln[i].R5[2],myFpln[i].R6[2]);
2020-03-19 18:39:30 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
2020-03-19 18:39:30 +00:00
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
if (myFpln[i].scroll == 0) {
me["FPLN_FROM"].show();
} else {
me["FPLN_FROM"].hide();
}
if (fmgc.flightPlanController.temporaryFlag[i]) {
me["Simple_L6"].hide();
me["Simple_C6"].hide();
me["Simple_R6"].hide();
me["Simple_L6S"].hide();
me["Simple_C6S"].hide();
me["Simple_R6S"].hide();
2020-03-29 15:55:30 +00:00
if (!mcdu.dirToFlag) {
me["FPLN_TMPY_group"].show();
me["DIRTO_TMPY_group"].hide();
} else {
me["DIRTO_TMPY_group"].show();
me["FPLN_TMPY_group"].hide();
}
} else {
me["FPLN_TMPY_group"].hide();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].hide();
me.dynamicPageFunc(myFpln[i].L6, "Simple_L6");
me.dynamicPageFunc(myFpln[i].C6, "Simple_C6");
me.dynamicPageFunc(myFpln[i].R6, "Simple_R6");
2020-01-05 20:21:28 +00:00
}
}
2020-04-12 22:44:02 +00:00
} else if (page == "MCDU") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("MCDU MENU");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-03-24 13:30:25 +00:00
showLeft(me,1, 1, 1, 1, -1, -1);
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, -1, -1);
showLeftArrow(me,1, 1, 1, 1, -1, -1);
showRight(me,-1, -1, -1, -1, -1, -1);
showRightS(me,-1, -1, -1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2019-10-14 16:48:35 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.standardFontColour();
me["Simple_L3"].setText(" AIDS");
me["Simple_L4"].setText(" CFDS");
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
if (active[i].getValue() == 0) {
me["Simple_L1"].setText(" FMGC");
me["Simple_L1"].setColor(WHITE);
me["Simple_L1_Arrow"].setColor(WHITE);
2020-04-12 22:44:02 +00:00
} else if (active[i].getValue() == 1) {
me["Simple_L1"].setText(" FMGC (SEL)");
me["Simple_L1"].setColor(BLUE);
me["Simple_L1_Arrow"].setColor(BLUE);
2020-04-12 22:44:02 +00:00
} else if (active[i].getValue() == 2) {
2019-10-14 16:48:35 +00:00
me["Simple_L1"].setText(" FMGC");
me["Simple_L1"].setColor(GREEN);
me["Simple_L1_Arrow"].setColor(GREEN);
2019-10-14 16:48:35 +00:00
}
if (activeAtsu[i].getValue() == 0) {
me["Simple_L2"].setText(" ATSU");
me["Simple_L2"].setColor(WHITE);
me["Simple_L2_Arrow"].setColor(WHITE);
} else if (activeAtsu[i].getValue() == 1) {
me["Simple_L2"].setText(" ATSU (SEL)");
me["Simple_L2"].setColor(BLUE);
me["Simple_L2_Arrow"].setColor(BLUE);
} else if (activeAtsu[i].getValue() == 2) {
me["Simple_L2"].setText(" ATSU");
me["Simple_L2"].setColor(GREEN);
me["Simple_L2_Arrow"].setColor(GREEN);
}
} else if (page == "ATSUDLINK") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
me["Simple_Title"].setText("ATSU DATALINK");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, -1, -1, -1, -1, -1);
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, -1, -1);
showLeftArrow(me,1, -1, -1, -1, -1, -1);
showRight(me,1, -1, -1, -1, -1, 1);
showRightS(me,-1, -1, -1, -1, -1, -1);
showRightArrow(me,1, -1, -1, -1, -1, 1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.standardFontColour();
me["Simple_L1"].setText(" ATC MENU");
me["Simple_R1"].setText("AOC MENU ");
me["Simple_R6"].setText("COMM MENU ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "AOCMENU") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("AOC MENU");
me.defaultPageNumbers();
showLeft(me,1, 1, 1, -1, 1, 1);
2020-07-30 18:36:00 +00:00
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, -1, 1);
showLeftArrow(me,1, 1, 1, -1, 1, 1);
showRight(me,1, 1, 1, 1, 1, -1);
showRightS(me,-1, -1, -1, -1, -1, -1);
showRightArrow(me,1, 1, 1, 1, 1, 1);
2020-07-30 18:36:00 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.standardFontSize();
me.standardFontColour();
me["Simple_R6"].setColor(BLUE);
me["Simple_R6_Arrow"].setColor(BLUE);
2020-07-30 18:36:00 +00:00
me["Simple_L1"].setText(" PREFLIGHT");
me["Simple_L2"].setText(" ENROUTE");
me["Simple_L3"].setText(" POSTFLIGHT");
me["Simple_L5"].setText(" SNAG");
me["Simple_L6S"].setText(" ATSU DLK");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1"].setText("FLT LOG ");
me["Simple_R2"].setText("WEATHER REQ ");
me["Simple_R3"].setText("RCVD MSGS ");
me["Simple_R4"].setText("REPORTS ");
me["Simple_R5"].setText("CONFIG ");
me["Simple_R6"].setText("MESSAGE ");
2020-07-30 18:36:00 +00:00
pageSwitch[i].setBoolValue(1);
}
if (mcdu.ReceivedMessagesDatabase.firstUnviewed() != -99) {
me["Simple_R6"].show();
me["Simple_R6_Arrow"].show();
} else {
me["Simple_R6"].hide();
me["Simple_R6_Arrow"].hide();
}
} else if (page == "FLTLOG") {
if (!pageSwitch[i].getBoolValue()) {
2021-01-20 19:32:21 +00:00
me.defaultHideWithCenter();
me["Simple_L0S"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
showLeft(me,1, 1, 1, 1, 1, -1);
showLeftS(me,1, -1, 1, 1, 1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
showCenter(me,-1, 1, 1, 1, 1, -1);
showCenterS(me,-1, 1, 1, 1, 1, -1);
showRight(me,1, 1, 1, 1, 1, -1);
showRightS(me,1, 1, 1, 1, 1, -1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.standardFontSize();
me.standardFontColour();
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("wht", "wht", "wht", "wht", "wht", "wht");
#me["PRINTPAGE"] - TODO missing asterisk at 5L - only useful when printing available
me["Simple_L1S"].setText(" FLT NUM-DATE");
me["Simple_R1S"].setText("ORIG-DEST ");
2021-03-02 17:53:46 +00:00
me["Simple_L1"].setFontSize(small);
me["Simple_R1"].setFontSize(small);
2021-03-02 17:53:46 +00:00
for (var x = 2; x <= 4; x = x + 1) {
me["Simple_L" ~ x].setFontSize(small);
me["Simple_C" ~ x].setFontSize(small);
me["Simple_R" ~ x].setFontSize(small);
}
me["Simple_L5"].setText(" PRINT");
me["Simple_L5"].setColor(BLUE);
me["Simple_R5"].setText("SENSORS ");
me["Simple_R5"].setColor(WHITE);
me["Simple_L4"].setText(" FLIGHT");
me["Simple_C4"].setText("--TIMES--");
me["Simple_R4"].setText("BLOCK ");
me["Simple_C2S"].setText("TIME");
me["Simple_R2S"].setText("FOB ");
me["Simple_L2"].setText( " OUT -");
me["Simple_L3S"].setText(" OFF -");
me["Simple_L3"].setText( " ON -");
me["Simple_L4S"].setText(" IN -");
me["Simple_C5"].setFontSize(small);
pageSwitch[i].setBoolValue(1);
}
var logid = 1; #mcdu.FlightLogDatabase.getPageSize(); - one page only - TODO: multi pages
if (logid == 0) logid = 1;
me.showPageNumbersOnly(1,1);
me["Simple_Title"].setText(sprintf("FLT LOG.%04d",logid));
me["Simple_C2"].setText( "--.--"); #TODO - missing ":" char on fontset
me["Simple_C3S"].setText("--.--");
me["Simple_C3"].setText( "--.--");
me["Simple_C4S"].setText("--.--");
me["Simple_R2"].setText( "---.- ");
me["Simple_R3S"].setText("---.- ");
me["Simple_R3"].setText( "---.- ");
me["Simple_R4S"].setText("---.- ");
me.colorCenter("wht", "grn", "grn", "wht", "wht", "wht");
me.colorRight("wht", "grn", "grn", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "grn", "wht");
me.colorCenterS("wht", "wht", "grn", "grn", "grn", "wht");
me.colorRightS("wht", "wht", "grn", "grn", "grn", "wht");
var rowsC = ["Simple_C2","Simple_C3S","Simple_C3","Simple_C4S"];
var rowsR = ["Simple_R2","Simple_R3S","Simple_R3","Simple_R4S"];
var logs = mcdu.FlightLogDatabase.getLogByPage(logid);
var len = size(logs);
var flgtime = 0;
var blktime = 0;
for ( var i = 0; i < len; i = i + 1 ) {
if (logs[i] != nil) { # only valid reports
var p = logs[i].state;
if (p == 4) p = 3; # RETURN-IN
me[rowsC[p]].setText(logs[i].time);
if (acconfig_weight_kgs.getValue() == 1) {
me[rowsR[p]].setText(sprintf("%3.1f ",logs[i].fob * LBS2KGS));
} else {
me[rowsR[p]].setText(sprintf("%3.1f ",logs[i].fob));
}
}
}
var logpage = mcdu.FlightLogDatabase.getPage(logid);
2021-01-20 19:32:21 +00:00
me["Simple_L1"].setText(sprintf("%8s- ",logpage.fltnum) ~ logpage.date);
me["Simple_R1"].setText(logpage.tofrom ~ " ");
me["Simple_L5S"].setText( " " ~ logpage.flttime );
me["Simple_C5S"].setText(sprintf("%02.0f", getprop("/sim/time/utc/hour")) ~ "." ~ sprintf("%02.0f", getprop("/sim/time/utc/minute")) ~ "." ~ sprintf("%02.0f", getprop("/sim/time/utc/second")));
me["Simple_R5S"].setText( logpage.blktime ~ " " );
var fltstate = logpage.fltstate;
if (fltstate == "") {
fltstate = (fmgc.FMGCInternal.toFromSet) ? "BEGIN" : "RESET"; #CHECKME - my best guess, only ready when plan inserted
#TODO Pushback detection -> WPUSH state???
}
me["Simple_C5"].setText(fltstate);
} else if (page == "SENSORS") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
2021-01-20 19:32:21 +00:00
me.standardFontSize();
me["Simple_Title"].setText("SENSORS ");
me.defaultPageNumbers();
me["Simple_L0S"].hide();
showLeft(me,1, 1, 1, 1, 1, 1);
showLeftS(me,1, 1, 1, 1, -1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
showRight(me,1, 1, 1, 1, -1, -1);
showRightS(me,1, 1, 1, 1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
#me["PRINTPAGE"] - TODO missing asterisk at 5L - only useful when printing available
me.standardFontSize();
me.standardFontColour();
me["Simple_L1"].setFontSize(small);
me["Simple_R1"].setFontSize(small);
me["Simple_L2"].setFontSize(small);
me["Simple_R2"].setFontSize(small);
me["Simple_L3"].setFontSize(small);
me["Simple_R3"].setFontSize(small);
me["Simple_L4"].setFontSize(small);
me["Simple_R4"].setFontSize(small);
me.colorRight("grn", "grn", "grn", "grn", "grn", "grn");
me.colorRightS("grn", "grn", "grn", "grn", "grn", "grn");
me["Simple_L1S"].setText(" PARK BRAKE");
me["Simple_L1"].setText( " NOSE STRUT");
me["Simple_L2S"].setText( " L FWD DOOR");
me["Simple_L2"].setText( " R FWD DOOR");
me["Simple_L3S"].setText( " L AFT DOOR");
me["Simple_L3"].setText( " R AFT DOOR");
me["Simple_L4S"].setText( " GND SPEED");
me["Simple_L4"].setText( " FOB");
me["Simple_L5"].setText(" PRINT");
me["Simple_L5"].setColor(BLUE);
me["Simple_L6"].setText(" RETURN");
pageSwitch[i].setBoolValue(1);
}
2021-11-02 21:32:24 +00:00
me["Simple_R1S"].setText(sprintf("%-10s",(pts.Controls.Gear.brakeParking.getValue() == 1) ? "SET" : "RELEASED"));
me["Simple_R1"].setText(sprintf("%-10s",(pts.Gear.wow[0].getValue() == 1) ? "GROUND" : "FLIGHT"));
me["Simple_R2S"].setText(sprintf("%-10s",(doorL1_pos.getValue() > 0.1) ? "OPEN" : "CLOSED"));
me["Simple_R2"].setText(sprintf("%-10s",(doorR1_pos.getValue() > 0.1) ? "OPEN" : "CLOSED"));
me["Simple_R3S"].setText(sprintf("%-10s",(doorL4_pos.getValue() > 0.1) ? "OPEN" : "CLOSED"));
me["Simple_R3"].setText(sprintf("%-10s",(doorR4_pos.getValue() > 0.1) ? "OPEN" : "CLOSED"));
me["Simple_R4S"].setText(sprintf("%-10s",sprintf("%03.3f",pts.Velocities.groundspeedKt.getValue())));
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_R4"].setText(sprintf("%-10s",sprintf("%03.1f",fmgc.FMGCInternal.fob * LBS2KGS)));
} else {
me["Simple_R4"].setText(sprintf("%-10s",sprintf("%03.1f",fmgc.FMGCInternal.fob)));
}
} else if (page == "AOCCONFIG") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHideWithCenter();
me["Simple_Title"].setText("AOC CONFIGURATION");
me.defaultPageNumbers();
showLeft(me,1, -1, -1, -1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, -1, -1, -1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, 1, 1, 1, 1, -1);
showCenterS(me,1, -1, 1, -1, 1, -1);
showRight(me,1, -1, -1, -1, -1, 1);
showRightS(me,1, -1, -1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.standardFontSize();
me.standardFontColour();
me["Simple_L1S"].setText("A/C REG");
me["Simple_L1"].setFontSize(small);
me["Simple_L1"].setColor(GREEN);
me["Simple_C1S"].setColor(GREEN);
me["Simple_R1"].setFontSize(small);
me["Simple_R1"].setColor(GREEN);
me["Simple_R1S"].setText("TYPE");
me["Simple_L6S"].setText(" RETURN TO");
me["Simple_L6"].setText(" AOC MENU");
me["Simple_C2"].setText("ATSU SW AND DB PN");
me["Simple_C3S"].setText("998.2459.501");
me["Simple_C3S"].setFontSize(small);
me["Simple_C3S"].setColor(GREEN);
me["Simple_C3"].setText("998.2460.501");
me["Simple_C3"].setFontSize(small);
me["Simple_C3"].setColor(GREEN);
me["Simple_C4"].setText("ATSU AOC ID");
me["Simple_C5S"].setText("AS2TOC1015010F1");
me["Simple_C5S"].setFontSize(small);
me["Simple_C5S"].setColor(GREEN);
me["Simple_C5"].setText("AS2TOC1012001F2");
me["Simple_C5"].setFontSize(small);
me["Simple_C5"].setColor(GREEN);
me["Simple_R6"].setText("PRINT ");
me["Simple_R6"].setColor(BLUE);
me["Simple_C1"].setFontSize(small);
me["Simple_C1"].setColor(GREEN);
2020-07-30 18:36:00 +00:00
pageSwitch[i].setBoolValue(1);
}
me["Simple_L1"].setText(getprop("/options/model-options/registration"));
me["Simple_C1S"].setText(sprintf("%02.0f", getprop("/sim/time/utc/hour")) ~ sprintf("%02.0f", getprop("/sim/time/utc/minute")));
me["Simple_C1"].setText(sprintf("%02.0f", getprop("/sim/time/utc/day")) ~ "/" ~ sprintf("%02.0f", getprop("/sim/time/utc/month")) ~ "/" ~ right(sprintf(getprop("/sim/time/utc/year")), 2));
me["Simple_R1S"].setText("TYPE");
me["Simple_R1"].setText(getprop("/MCDUC/type"));
2020-07-30 18:36:00 +00:00
} else if (page == "WEATHERREQ") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("WEATHER REQ");
me.defaultPageNumbers();
showLeft(me,1, -1, -1, -1, -1, 1);
2020-07-30 18:36:00 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, -1, -1, -1, -1, -1);
showLeftArrow(me,1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, -1, 1, -1);
showRightS(me,1, 1, 1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2020-07-30 18:36:00 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeft("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2020-07-30 18:36:00 +00:00
me.colorRight("blu", "blu", "blu", "wht", "blu", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
2020-07-30 18:36:00 +00:00
me["Simple_L1"].setText(" WEATHER TYPE");
me["Simple_L1S"].setText(" " ~ atsu.AOC.selectedType);
me["Simple_R1S"].setText("STA 1");
me["Simple_R2"].setText("[ ]");
me["Simple_R2S"].setText("STA 2");
me["Simple_R3"].setText("[ ]");
me["Simple_R3S"].setText("STA 3");
2020-07-30 18:36:00 +00:00
pageSwitch[i].setBoolValue(1);
}
if (atsu.AOC.station != nil) {
me["Simple_R1"].setText(atsu.AOC.station);
if (atsu.AOC.sent and !atsu.AOC.received) {
me["WEATHERREQSEND"].hide();
} else {
me["WEATHERREQSEND"].show();
}
if (atsu.AOC.sent) {
me["Simple_R5"].setText(atsu.AOC.sentTime ~ " SEND ");
} else {
me["Simple_R5"].setText("SEND ");
}
} else {
me["Simple_R5"].setText("SEND ");
me["Simple_R1"].setText("[ ]");
2020-07-30 18:36:00 +00:00
me["WEATHERREQSEND"].hide();
}
2020-07-30 20:03:25 +00:00
me._receivedTime = left(getprop("/sim/time/gmt-string"), 5);
me.receivedTime = split(":", me._receivedTime)[0] ~ "." ~ split(":", me._receivedTime)[1] ~ "Z";
me["Simple_L6"].setText(" RETURN " ~ me.receivedTime);
2020-07-30 18:36:00 +00:00
} else if (page == "WEATHERTYPE") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("WEATHER TYPE");
me.defaultPageNumbers();
showLeft(me,1, 1, 1, -1, -1, -1);
2020-07-30 18:36:00 +00:00
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, -1, -1);
showLeftArrow(me,1, 1, 1, -1, -1, -1);
showRight(me,1, 1, 1, -1, -1, -1);
showRightS(me,-1, -1, -1, -1, -1, -1);
showRightArrow(me,1, 1, 1, -1, -1, -1);
2020-07-30 18:36:00 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.standardFontSize();
me.standardFontColour();
me["Simple_L1"].setText(" HOURLY WX");
me["Simple_L2"].setText(" AREA FCST");
me["Simple_L3"].setText(" FLD CONDX");
me["Simple_R1"].setText("TERM FCST ");
me["Simple_R2"].setText("NOTAMS ");
me["Simple_R3"].setText("SEVERE WX ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "RECEIVEDMSGS") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 20:03:25 +00:00
me.defaultHide();
2020-07-30 18:36:00 +00:00
me["Simple_Title"].show();
me["arrowsDepArr"].hide();
me.hideAllArrowsButL6();
me["Simple_L0S"].hide();
2020-07-31 13:12:44 +00:00
me["Simple_L6S"].hide();
2020-07-30 18:36:00 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
showRight(me,-1, -1, -1, -1, -1, -1);
showRightS(me,-1, -1, -1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2020-07-30 20:03:25 +00:00
2020-07-30 18:36:00 +00:00
if (myReceivedMessages[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myReceivedMessages[i].title));
me["Simple_L6_Arrow"].setColor(getprop("/MCDUC/colors/" ~ myReceivedMessages[i].arrowsColour[0][5] ~ "/r"), getprop("/MCDUC/colors/" ~ myReceivedMessages[i].arrowsColour[0][5] ~ "/g"), getprop("/MCDUC/colors/" ~ myReceivedMessages[i].arrowsColour[0][5] ~ "/b"));
2020-07-30 20:03:25 +00:00
if (mcdu.ReceivedMessagesDatabase.getCountPages() > 1) {
2020-07-30 18:36:00 +00:00
me["Simple_PageNum"].show();
2020-07-30 20:03:25 +00:00
me["Simple_PageNum"].setText(myReceivedMessages[i].getPageNumStr());
2020-07-30 18:36:00 +00:00
} else {
me["Simple_PageNum"].hide();
}
2020-07-30 20:03:25 +00:00
me.dynamicPageArrowFunc(myReceivedMessages[i]);
2020-07-30 18:36:00 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myReceivedMessages[i]["L" ~ x], "Simple_L" ~ x);
}
2020-07-30 18:36:00 +00:00
me.colorLeft(myReceivedMessages[i].L1[2],myReceivedMessages[i].L2[2],myReceivedMessages[i].L3[2],myReceivedMessages[i].L4[2],myReceivedMessages[i].L5[2],myReceivedMessages[i].L6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2020-07-30 20:03:25 +00:00
if (myReceivedMessages[i] != nil) {
me._receivedTime = left(getprop("/sim/time/gmt-string"), 5);
me.receivedTime = split(":", me._receivedTime)[0] ~ "." ~ split(":", me._receivedTime)[1] ~ "Z";
me["Simple_L6"].setText(" RETURN " ~ me.receivedTime);
}
2020-07-31 13:12:44 +00:00
} else if (page == "RECEIVEDMSG") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHideWithCenter();
me["Simple_Title"].show();
me["arrowsDepArr"].hide();
me.hideAllArrowsButL6();
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
me["Simple_L0S"].hide();
me["Simple_L6S"].hide();
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
2020-07-31 13:12:44 +00:00
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeftS("grn", "wht", "wht", "wht", "wht", "wht");
me.colorCenterS("grn", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,1, -1, -1, -1, -1, -1);
showRight(me,-1, -1, -1, -1, -1, -1);
showRightS(me,1, -1, -1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2020-07-31 13:12:44 +00:00
if (myReceivedMessage[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myReceivedMessage[i].title));
me["Simple_L6_Arrow"].setColor(getprop("/MCDUC/colors/" ~ myReceivedMessage[i].arrowsColour[0][5] ~ "/r"), getprop("/MCDUC/colors/" ~ myReceivedMessage[i].arrowsColour[0][5] ~ "/g"), getprop("/MCDUC/colors/" ~ myReceivedMessage[i].arrowsColour[0][5] ~ "/b"));
me.dynamicPageArrowFunc(myReceivedMessage[i]);
if (myReceivedMessage[i].L1[0] != nil) {
me["Simple_L1"].setText(myReceivedMessage[i].L1[0]);
me["Simple_L1"].show();
} else { me["Simple_L1"].hide(); }
if (myReceivedMessage[i].L1[1] != nil) {
me["Simple_L1S"].setText(myReceivedMessage[i].L1[1]);
me["Simple_L1S"].show();
} else { me["Simple_L1S"].hide(); }
if (myReceivedMessage[i].L2[0] != nil) {
me["Simple_L2"].setText(myReceivedMessage[i].L2[0]);
me["Simple_L2"].show();
} else { me["Simple_L2"].hide(); }
if (myReceivedMessage[i].L2[1] != nil) {
me["Simple_L2S"].setText(myReceivedMessage[i].L2[1]);
me["Simple_L2S"].show();
} else { me["Simple_L2S"].hide(); }
if (myReceivedMessage[i].L3[0] != nil) {
me["Simple_L3"].setText(myReceivedMessage[i].L3[0]);
me["Simple_L3"].show();
} else { me["Simple_L3"].hide(); }
if (myReceivedMessage[i].L3[1] != nil) {
me["Simple_L3S"].setText(myReceivedMessage[i].L3[1]);
me["Simple_L3S"].show();
} else { me["Simple_L3S"].hide(); }
if (myReceivedMessage[i].L4[0] != nil) {
me["Simple_L4"].setText(myReceivedMessage[i].L4[0]);
me["Simple_L4"].show();
} else { me["Simple_L4"].hide(); }
if (myReceivedMessage[i].L4[1] != nil) {
me["Simple_L4S"].setText(myReceivedMessage[i].L4[1]);
me["Simple_L4S"].show();
} else { me["Simple_L4S"].hide(); }
if (myReceivedMessage[i].L5[0] != nil) {
me["Simple_L5"].setText(myReceivedMessage[i].L5[0]);
me["Simple_L5"].show();
} else { me["Simple_L5"].hide(); }
if (myReceivedMessage[i].L5[1] != nil) {
me["Simple_L5S"].setText(myReceivedMessage[i].L5[1]);
me["Simple_L5S"].show();
} else { me["Simple_L5S"].hide(); }
me["Simple_C1S"].setText(myReceivedMessage[i].C1[1]);
me["Simple_R1S"].setText(myReceivedMessage[i].R1[1]);
me.colorLeft(myReceivedMessage[i].L1[2],myReceivedMessage[i].L2[2],myReceivedMessage[i].L3[2],myReceivedMessage[i].L4[2],myReceivedMessage[i].L5[2],myReceivedMessage[i].L6[2]);
2022-01-31 13:35:45 +00:00
me["Simple_L6"].setText(" RETURN");
2020-07-31 13:12:44 +00:00
me["Simple_C1S"].setColor(GREEN);
}
pageSwitch[i].setBoolValue(1);
}
if (myReceivedMessage[i] != nil) {
me._receivedTime = left(getprop("/sim/time/gmt-string"), 5);
me.receivedTime = split(":", me._receivedTime)[0] ~ "." ~ split(":", me._receivedTime)[1] ~ "Z";
me["Simple_L6"].setText(" RETURN " ~ me.receivedTime);
}
} else if (page == "ATCMENU") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
me["Simple_Title"].setText("ATC MENU");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].setText("1/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
showLeft(me,1, 1, -1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, -1, 1);
showLeftArrow(me,1, 1, -1, 1, 1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,-1, -1, -1, -1, 1, -1);
showRightArrow(me,1, 1, 1, 1, 1, 1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.colorLeft("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "wht", "wht", "wht", "wht", "amb");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "amb");
me["Simple_L1"].setText(" LAT REQ");
me["Simple_L2"].setText(" WHEN CAN WE");
2020-07-23 14:29:44 +00:00
me["Simple_L4"].setText(" MSG RECORD");
me["Simple_L5"].setText(" NOTIFICATION");
me["Simple_L6S"].setText(" ATSU DLK");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1"].setText("VERT REQ ");
me["Simple_R2"].setText("OTHER ");
me["Simple_R3"].setText("TEXT ");
2020-11-29 16:58:38 +00:00
me["Simple_R4"].setText("REPORTS ");
me["Simple_R5"].setText("STATUS ");
me["Simple_R5S"].setText("CONNECTION ");
me["Simple_R6"].setText("EMERGENCY ");
pageSwitch[i].setBoolValue(1);
}
2021-03-01 21:12:12 +00:00
} else if (page == "LATREQ") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("ATC LAT REQ");
me.defaultPageNumbers();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, 1, -1, 1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,1, 1, 1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, 1, 1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
2021-03-01 21:12:12 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].show();
me["arrow1L"].hide();
me["arrow2L"].hide();
me["arrow3L"].hide();
me["arrow4L"].hide();
me["arrow5L"].hide();
me["arrow1R"].hide();
me["arrow2R"].hide();
me["arrow3R"].hide();
me["arrow4R"].show();
me["arrow4R"].setColor(BLUE);
me["arrow5R"].hide();
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "wht", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" DIR TO");
me["Simple_L2S"].setText(" SID");
me["Simple_L3S"].setText(" HEADING");
me["Simple_L1"].setText("[ ]");
me["Simple_L2"].setText("[ ]");
me["Simple_L3"].setText("[ ]°");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L5"].setText(" ERASE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1S"].setText("WX DEV UP TO ");
me["Simple_R2S"].setText("OFFSET/START AT ");
me["Simple_R3S"].setText("GROUND TRK ");
me["Simple_R1"].setText("[ ]");
me["Simple_R2"].setText("[ ]/[ ]");
me["Simple_R3"].setText("[ ]°");
me["Simple_R4S"].setText("WHEN CAN WE EXPECT ");
me["Simple_R4"].setText("BACK ON ROUTE ");
me["Simple_R5"].setText("ADD TEXT ");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("REQ DISPL ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "WHENCAN") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("WHEN CAN WE EXPECT");
me.defaultPageNumbers();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, -1, -1, 1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,-1, 1, -1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,-1, 1, 1, 1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
2021-03-01 21:12:12 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].show();
me["arrow1L"].show();
me["arrow1L"].setColor(BLUE);
2021-03-02 17:53:46 +00:00
for (var x = 2; x <= 5; x = x + 1) {
me["arrow" ~ x ~ "L"].hide();
}
2021-03-01 21:12:12 +00:00
me["arrow1R"].show();
me["arrow1R"].setColor(BLUE);
me["arrow2R"].hide();
me["arrow3R"].hide();
me["arrow4R"].show();
me["arrow4R"].setColor(BLUE);
me["arrow5R"].hide();
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "wht", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L2S"].setText(" CRZ CLB TO");
me["Simple_L1"].setText(" HIGHER ALT");
me["Simple_L2"].setText("[ ]");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L5"].setText(" ERASE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R2S"].setText("SPEED ");
me["Simple_R3S"].setText("SPEED / RANGE ");
me["Simple_R1"].setText("LOWER ALT ");
me["Simple_R2"].setText("[ ]");
me["Simple_R3"].setText("[ ]/[ ]");
me["Simple_R4S"].setText("WHEN CAN WE EXPECT ");
me["Simple_R4"].setText("BACK ON ROUTE ");
me["Simple_R5"].setText("ADD TEXT ");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("REQ DISPL ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "VERTREQ1") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("ATC VERT REQ ");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].setText("1/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, 1, -1, 1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,1, 1, 1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, -1, 1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
2021-03-01 21:12:12 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].show();
2021-03-02 17:53:46 +00:00
for (var x = 1; x <= 5; x = x + 1) {
if (x == 3) { continue; }
me["arrow" ~ x ~ "L"].hide();
me["arrow" ~ x ~ "R"].hide();
}
2021-03-01 21:12:12 +00:00
me["arrow3L"].show();
me["arrow3L"].setColor(BLUE);
me["arrow3R"].show();
me["arrow3R"].setColor(BLUE);
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "blu", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" CLB TO/START AT");
me["Simple_L2S"].setText(" DES TO/START AT");
me["Simple_L3S"].setText(" ..WHEN CAN WE EXPECT.. ");
me["Simple_L1"].setText("[ ]/[ ]");
me["Simple_L2"].setText("[ ]/[ ]");
me["Simple_L3"].setText(" HIGHER ALT");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L5"].setText(" ERASE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1S"].setText("ALT ");
me["Simple_R2S"].setText("SPD ");
me["Simple_R1"].setText("[ ]");
me["Simple_R2"].setText("[ ]");
me["Simple_R3"].setText("LOWER ALT ");
me["Simple_R4S"].setText("WHEN CAN SPD ");
me["Simple_R4"].setText("[ ]");
me["Simple_R5"].setText("ADD TEXT ");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("REQ DISPL ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "VERTREQ2") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("ATC VERT REQ ");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].setText("2/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, 1, -1, 1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,1, 1, 1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, -1, 1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
2021-03-01 21:12:12 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].show();
2021-03-02 17:53:46 +00:00
for (var x = 1; x <= 5; x = x + 1) {
if (x == 3) { continue; }
me["arrow" ~ x ~ "L"].hide();
if (x == 1) { continue; }
me["arrow" ~ x ~ "R"].hide();
}
2021-03-01 21:12:12 +00:00
me["arrow1R"].show();
me["arrow1R"].setColor(BLUE);
me["arrow3R"].show();
me["arrow3R"].setColor(BLUE);
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "blu", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" BLOCK ALT/START AT");
me["Simple_L2S"].setText(" CRZ CLB TO");
me["Simple_L3S"].setText(" ..WHEN CAN WE EXPECT.. ");
me["Simple_L1"].setText("[ ]/[ ]");
me["Simple_L2"].setText("[ ]");
me["Simple_L3"].setText(" HIGHER ALT");
me["Simple_L4S"].setText(" CRZ CLB TO");
me["Simple_L4"].setText("[ ]");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L5"].setText(" ERASE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1S"].setText("VMC ");
me["Simple_R2S"].setText("SPD RANGE ");
me["Simple_R1"].setText("DESCENT ");
me["Simple_R2"].setText("[ ]/[ ]");
me["Simple_R3"].setText("LOWER ALT ");
me["Simple_R4S"].setText("SPD RANGE ");
me["Simple_R4"].setText("[ ]/[ ]");
me["Simple_R5"].setText("ADD TEXT ");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("REQ DISPL ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "OTHERREQ") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("ATC OTHER REQ");
me.defaultPageNumbers();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, 1, -1, 1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,1, -1, -1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,-1, -1, -1, -1, 1, 1);
showRightS(me,-1, -1, -1, -1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
2021-03-01 21:12:12 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].show();
me["arrow1L"].show();
me["arrow1L"].setColor(BLUE);
me["arrow2L"].show();
me["arrow2L"].setColor(BLUE);
me["arrow3L"].show();
me["arrow3L"].setColor(BLUE);
me["arrow4L"].hide();
me["arrow5L"].hide();
2021-03-02 17:53:46 +00:00
for (var x = 1; x <= 5; x = x + 1) {
me["arrow" ~ x ~ "R"].hide();
}
2021-03-01 21:12:12 +00:00
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "wht", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" VOICE");
me["Simple_L1"].setText(" CONTACT----[ ]");
me["Simple_L2"].setText(" OWN SEPARATION & VMC");
me["Simple_L3"].setText(" CLEARANCE");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L5"].setText(" ERASE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R5"].setText("ADD TEXT ");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("REQ DISPL ");
pageSwitch[i].setBoolValue(1);
}
2020-11-29 16:58:38 +00:00
} else if (page == "MCDUTEXT") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHideWithCenter();
me["Simple_Title"].setText("TEXT");
me["Simple_Title"].setColor(WHITE);
2020-11-29 16:58:38 +00:00
me["Simple_PageNum"].setText("1/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
showLeft(me,1, 1, 1, 1, 1, 1);
2020-11-29 16:58:38 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, -1, 1, 1);
2021-08-09 19:34:47 +00:00
showLeftArrow(me,-1, -1, -1, -1, 1, 1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,-1, -1, -1, 1, -1, -1);
showRightS(me,1, 1, 1, -1, -1, 1);
showRight(me,1, 1, 1, -1, -1, 1);
showRightS(me,1, 1, 1, -1, -1, 1);
showRightArrow(me,1, 1, 1, -1, -1, 1);
2020-11-29 16:58:38 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2021-03-01 21:12:12 +00:00
me["arrowsDepArr"].show();
me["arrow1L"].show();
me["arrow1L"].setColor(BLUE);
me["arrow2L"].show();
me["arrow2L"].setColor(BLUE);
me["arrow3L"].show();
me["arrow3L"].setColor(BLUE);
me["arrow4L"].hide();
me["arrow5L"].hide();
me["arrow1R"].show();
me["arrow1R"].setColor(BLUE);
me["arrow2R"].show();
me["arrow2R"].setColor(BLUE);
me["arrow3R"].show();
me["arrow3R"].setColor(BLUE);
me["arrow4R"].hide();
me["arrow5R"].hide();
2020-11-29 16:58:38 +00:00
me.standardFontSize();
2021-03-01 21:12:12 +00:00
me.colorLeft("blu", "blu", "blu", "blu", "wht", "wht");
2020-11-29 16:58:38 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("blu", "blu", "blu", "wht", "wht", "wht");
2021-03-01 21:12:12 +00:00
me.colorRight("blu", "blu", "blu", "wht", "wht", "blu");
2020-11-29 16:58:38 +00:00
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("blu", "blu", "blu", "wht", "wht", "blu");
me["Simple_L1"].setText(" A/C PERFORM.");
me["Simple_L1S"].setText(" DUE TO");
me["Simple_L2"].setText(" WEATHER");
me["Simple_L2S"].setText(" DUE TO");
me["Simple_L3"].setText(" TURBULENCE");
me["Simple_L3S"].setText(" DUE TO");
me["Simple_R1"].setText("MEDICAL ");
me["Simple_R1S"].setText("DUE TO ");
me["Simple_R2"].setText("TECHNICAL ");
2021-03-01 21:12:12 +00:00
me["Simple_R2S"].setText("DUE TO ");
2020-11-29 16:58:38 +00:00
me["Simple_R3"].setText("DISCRETION ");
me["Simple_R3S"].setText("AT PILOTS ");
me["Simple_C4S"].setText("-------- FREE TEXT --------");
me["Simple_L4"].setText("[ ]");
me["Simple_L5"].setText(" ERASE");
2021-03-01 21:12:12 +00:00
me["Simple_L5S"].setText(" INPUTS");
2020-11-29 16:58:38 +00:00
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("TEXT DISPL ");
pageSwitch[i].setBoolValue(1);
}
if (atsu.freeTexts[i].selection == 0) {
pageSwitch[i].setBoolValue(0);
2021-03-01 21:12:12 +00:00
me["arrow1L"].hide();
2020-11-29 16:58:38 +00:00
me["Simple_L1"].setColor(BLUE);
me["Simple_L1S"].setColor(BLUE);
} elsif (atsu.freeTexts[i].selection == 1) {
pageSwitch[i].setBoolValue(0);
2021-03-01 21:12:12 +00:00
me["arrow2L"].hide();
2020-11-29 16:58:38 +00:00
me["Simple_L2"].setColor(BLUE);
me["Simple_L2S"].setColor(BLUE);
} elsif (atsu.freeTexts[i].selection == 2) {
pageSwitch[i].setBoolValue(0);
2021-03-01 21:12:12 +00:00
me["arrow3L"].hide();
2020-11-29 16:58:38 +00:00
me["Simple_L3"].setColor(BLUE);
me["Simple_L3S"].setColor(BLUE);
} elsif (atsu.freeTexts[i].selection == 3) {
pageSwitch[i].setBoolValue(0);
2021-03-01 21:12:12 +00:00
me["arrow1R"].hide();
2020-11-29 16:58:38 +00:00
me["Simple_R1"].setColor(BLUE);
me["Simple_R1S"].setColor(BLUE);
} elsif (atsu.freeTexts[i].selection == 4) {
2021-03-01 21:12:12 +00:00
me["arrow2R"].hide();
2020-11-29 16:58:38 +00:00
me["Simple_R2_Arrow"].hide();
me["Simple_R2"].setColor(BLUE);
me["Simple_R2S"].setColor(BLUE);
} elsif (atsu.freeTexts[i].selection == 5) {
2021-03-01 21:12:12 +00:00
me["arrow3R"].hide();
2020-11-29 16:58:38 +00:00
me["Simple_R3_Arrow"].hide();
me["Simple_R3"].setColor(BLUE);
me["Simple_R3S"].setColor(BLUE);
} elsif (atsu.freeTexts[i].selection == 9) {
pageSwitch[i].setBoolValue(0);
me["Simple_L5_Arrow"].hide();
}
2021-03-01 21:12:12 +00:00
} else if (page == "MCDUTEXT2") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHideWithCenter();
me["Simple_Title"].setText("TEXT");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].setText("2/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, 1, 1, 1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,-1, -1, -1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, 1, 1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,-1, -1, -1, 1, -1, -1);
showRightS(me,-1, -1, -1, -1, -1, 1);
showRight(me,-1, -1, -1, -1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
2021-03-01 21:12:12 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].hide();
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "blu", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("blu", "blu", "blu", "wht", "wht", "wht");
me.colorRight("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("blu", "blu", "blu", "wht", "wht", "blu");
2021-03-02 17:53:46 +00:00
for (var x = 1; x <= 4; x = x + 1) {
me["Simple_L" ~ x].setText("[ ]");
}
2021-03-01 21:12:12 +00:00
me["Simple_C4S"].hide();
me["Simple_L5"].setText(" ERASE");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("TEXT DISPL ");
pageSwitch[i].setBoolValue(1);
}
if (atsu.freeTexts[i].selection == 9) {
pageSwitch[i].setBoolValue(0);
me["Simple_L5_Arrow"].hide();
}
2021-03-02 17:53:46 +00:00
} else if (page == "EMERGREQ1") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("EMERGENCY");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].setText("1/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2021-08-09 19:34:47 +00:00
showLeft(me,1, 1, -1, 1, 1, 1);
2021-03-02 17:53:46 +00:00
me["Simple_L0S"].hide();
2021-08-09 19:34:47 +00:00
showLeftS(me,-1, -1, -1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, 1, 1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
2021-03-02 17:53:46 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me["arrowsDepArr"].show();
me["arrow1L"].show();
me["arrow1L"].setColor(AMBER);
me["arrow2L"].show();
me["arrow2L"].setColor(AMBER);
me["arrow3L"].hide();
me["arrow4L"].show();
me["arrow4L"].setColor(BLUE);
me["arrow5L"].hide();
for (var x = 1; x <= 5; x = x + 1) {
me["arrow" ~ x ~ "R"].hide();
}
me.standardFontSize();
me.colorLeft("amb", "amb", "ack", "blu", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "blu", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "blu", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1"].setText(" MAYDAY");
me["Simple_L2"].setText(" PANPAN");
me["Simple_L4S"].setText(" VOICE");
me["Simple_L4"].setText(" CONTACT");
me["Simple_L5S"].setText(" INPUTS");
me["Simple_L5"].setText(" ERASE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1"].setText("SET ON ");
me["Simple_R1S"].setText("EMERG ADS:OFF ");
me["Simple_R2S"].setText("DESCENDING TO ");
me["Simple_R2"].setText("[ ] ");
me["Simple_R3S"].setText("DIVERTING/VIA ");
me["Simple_R3"].setText("[ ]/[ ] ");
me["Simple_R4S"].setText("FREQ ");
me["Simple_R4"].setText("[ ] ");
me["Simple_R5"].setText("ADD TEXT ");
me["Simple_R6S"].setText("ATC ");
me["Simple_R6"].setText("REQ DISPL ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "ATCMENU2") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHideWithCenter();
me["Simple_Title"].setText("ATC MENU");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].setText("2/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
showLeft(me,1, 1, -1, -1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, -1, 1);
showLeftArrow(me,1, 1, -1, -1, -1, 1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,1, -1, -1, -1, -1, -1);
showRight(me,1, -1, -1, -1, -1, -1);
showRightS(me,-1, -1, -1, -1, -1, -1);
showRightArrow(me,1, -1, -1, -1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
2020-07-30 18:36:00 +00:00
me.standardFontColour();
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1"].setText(" DEPART REQ");
me["Simple_L2"].setText(" OCEANIC REQ");
me["Simple_C1S"].setText(" -------- ATS623 PAGE -------- ");
me["Simple_L6S"].setText(" ATSU DLK");
me["Simple_L6"].setText(" RETURN");
me["Simple_R1"].setText("ATIS ");
pageSwitch[i].setBoolValue(1);
}
2020-10-23 19:38:12 +00:00
} else if (page == "ATISDETAIL") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-10-23 19:38:12 +00:00
me.fontSizeLeft(small, small, small, small, normal, normal);
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeftS("grn", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("grn", "wht", "wht", "wht", "wht", "wht");
if (myAtis[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myAtis[i].title));
me.dynamicPageArrowFunc(myAtis[i]);
me.colorLeftArrow(myAtis[i].arrowsColour[0][0],myAtis[i].arrowsColour[0][1],myAtis[i].arrowsColour[0][2],myAtis[i].arrowsColour[0][3],myAtis[i].arrowsColour[0][4],myAtis[i].arrowsColour[0][5]);
me.colorRightArrow(myAtis[i].arrowsColour[1][0],myAtis[i].arrowsColour[1][1],myAtis[i].arrowsColour[1][2],myAtis[i].arrowsColour[1][3],myAtis[i].arrowsColour[1][4],myAtis[i].arrowsColour[1][5]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myAtis[i]["L" ~ x], "Simple_L" ~ x);
}
2020-10-23 19:38:12 +00:00
me.colorLeft(myAtis[i].L1[2],myAtis[i].L2[2],myAtis[i].L3[2],myAtis[i].L4[2],myAtis[i].L5[2],myAtis[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myAtis[i]["R" ~ x], "Simple_R" ~ x);
}
2020-10-23 19:38:12 +00:00
me.colorRight(myAtis[i].R1[2],myAtis[i].R2[2],myAtis[i].R3[2],myAtis[i].R4[2],myAtis[i].R5[2],myAtis[i].R6[2]);
}
2020-10-24 13:07:15 +00:00
if (myAtis[i].getNumPages() > 1) {
me["Simple_PageNum"].show();
me["ATISArrows"].show();
me["Simple_PageNum"].setText(myAtis[i].page ~ "/" ~ myAtis[i].getNumPages());
} else {
me["Simple_PageNum"].hide();
me["ATISArrows"].hide();
}
2020-10-23 19:38:12 +00:00
pageSwitch[i].setBoolValue(1);
}
} else if (page == "ATIS") {
if (!pageSwitch[i].getBoolValue()) {
2020-10-23 17:18:55 +00:00
me.defaultHideWithCenter();
me["Simple_Title"].setText("ATS623 ATIS MENU");
me["Simple_Title"].setColor(WHITE);
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
showLeft(me,1, 1, 1, 1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, -1, -1, -1, -1, 1);
showLeftArrow(me,1, 1, 1, -1, -1, 1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,-1, -1, -1, -1, -1, -1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, 1, 1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.standardFontSize();
me.colorLeft("blu", "blu", "blu", "blu", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2021-08-09 19:34:47 +00:00
me.colorCenter("grn", "grn", "grn", "grn", "wht", "wht");
2020-10-23 17:18:55 +00:00
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
2021-08-09 19:34:47 +00:00
me.colorRight("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" ARPT/TYPE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L4"].setText(" [ ]/[ ]");
me["Simple_L6"].setText(" RETURN");
2020-10-23 17:18:55 +00:00
me["Simple_C1"].setFontSize(small);
me["Simple_C2"].setFontSize(small);
me["Simple_C3"].setFontSize(small);
me["Simple_C4"].setFontSize(small);
me["Simple_R1S"].setText("REQ ");
me["Simple_R1"].setText("SEND ");
me["Simple_R2S"].setText("REQ ");
me["Simple_R2"].setText("SEND ");
me["Simple_R3S"].setText("REQ ");
me["Simple_R3"].setText("SEND ");
me["Simple_R4S"].setText("REQ ");
me["Simple_R4"].setText("SEND ");
me["Simple_R5S"].setText("AUTO ");
me["Simple_R5"].setText("UPDATE ");
me["Simple_R6S"].setText("PRINT MANUAL ");
me["Simple_R6"].setText("SET AUTO ");
pageSwitch[i].setBoolValue(1);
}
2021-03-02 17:53:46 +00:00
for (var x = 0; x <= 3; x = x + 1) {
if (atsu.ATISInstances[x].station != nil) {
me["Simple_L" ~ (x + 1)].setText(" " ~ atsu.ATISInstances[x].station ~ "/" ~ (atsu.ATISInstances[x].type == 0 ? "ARR" : "DEP"));
2021-08-09 19:37:23 +00:00
if (atsu.ATISInstances[x].received) {
me["Simple_L" ~ (x + 1) ~ "_Arrow"].show();
} else {
me["Simple_L" ~ (x + 1) ~ "_Arrow"].hide();
}
2021-03-02 17:53:46 +00:00
} else {
me["Simple_L" ~ (x + 1)].setText(" [ ]/[ ]");
me["Simple_L" ~ (x + 1) ~ "_Arrow"].hide();
}
if (atsu.ATISInstances[x].received) {
me["Simple_C" ~ (x + 1)].setText(" " ~ atsu.ATISInstances[x].receivedCode ~ " " ~ atsu.ATISInstances[x].receivedTime);
me["Simple_C" ~ (x + 1)].show();
} else {
me["Simple_C" ~ (x + 1)].hide();
}
if (atsu.ATISInstances[x].sent) {
me["ATISSend" ~ (x + 1)].hide();
} else {
me["ATISSend" ~ (x + 1)].show();
}
}
} else if (page == "NOTIFICATION") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_Title"].show();
me["Simple_Title"].setText("NOTIFICATION");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, -1, -1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, -1, -1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,-1, 1, -1, -1, -1, -1);
showCenterS(me,-1, -1, -1, -1, -1, -1);
showRight(me,-1, 1, -1, -1, -1, 1);
showRightS(me,-1, -1, -1, -1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(small, normal, normal, normal, normal, normal);
me.fontSizeCenter(normal, normal, normal, normal, small, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeft("grn", "blu", "grn", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("wht", "wht", "wht", "wht", "amb", "wht");
me.colorRight("wht", "blu", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" ATC FLT NBR");
me["Simple_L2S"].setText(" ATC CENTER");
2020-07-23 15:21:55 +00:00
me["Simple_C2"].setText("------------ ");
me["Simple_R2"].setText("NOTIFY ");
me["Simple_C5"].setText("NOTIFICATION UNAVAILABLE");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R6"].setText("STATUS ");
me["Simple_R6S"].setText("CONNECTION ");
if (fmgc.FMGCInternal.flightNumSet) {
me["NOTIFY_FLTNBR"].hide();
me["Simple_L1"].setText(fmgc.FMGCInternal.flightNum);
me["Simple_L1"].show();
me["Simple_C5"].hide();
} else {
me["Simple_L1"].hide();
me["NOTIFY_FLTNBR"].show();
me["Simple_C5"].show();
}
pageSwitch[i].setBoolValue(1);
}
if (atsu.notificationSystem.notifyAirport != nil) {
if (!atsu.notificationSystem.hasNotified) {
me["Simple_L2"].setText(atsu.notificationSystem.notifyAirport);
me["Simple_L2"].show();
me["NOTIFY_AIRPORT"].hide();
} else {
me["Simple_L2"].hide();
me["NOTIFY_AIRPORT"].show();
}
} else {
me["Simple_L2"].hide();
me["NOTIFY_AIRPORT"].show();
}
if (atsu.notificationSystem.hasNotified) {
me["NOTIFY"].hide();
me["Simple_L3"].setText(atsu.notificationSystem.notifyAirport);
me["Simple_L3"].show();
me["Simple_L3S"].setText(" ATC NOTIFIED");
me["Simple_L3S"].show();
} else {
me["NOTIFY"].show();
me["Simple_L3"].hide();
me["Simple_L3S"].hide();
}
2020-07-23 14:29:44 +00:00
} else if (page == "CONNECTSTATUS") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-07-23 14:29:44 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_Title"].show();
me["Simple_Title"].setText("CONNECTION STATUS");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-23 14:29:44 +00:00
showLeft(me,1, 1, -1, 1, -1, 1);
2020-07-23 14:29:44 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, 1, -1, -1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, -1, -1, -1, -1, -1);
showCenterS(me,-1, -1, -1, 1, -1, -1);
showRight(me,1, -1, 1, -1, 1, 1);
showRightS(me,-1, -1, 1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
2020-07-23 14:29:44 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeCenter(small, normal, small, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, small, normal);
me.colorLeft("grn", "wht", "wht", "blu", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText("ACTIVE ATC");
me["Simple_L2S"].setText("NEXT ATC");
me["Simple_L2"].setText("----");
2020-07-23 15:21:55 +00:00
me["Simple_C1"].setText("------------- ");
2020-07-23 14:29:44 +00:00
me["Simple_R3S"].setText("MAX UPLINK DELAY");
me["Simple_R3"].setText("NONE");
me["Simple_R5"].setText("ADS DETAIL");
me["Simple_L6S"].setText(" ATC MENU");
me["Simple_L6"].setText(" RETURN");
me["Simple_R6"].setText("NOTIFICATION ");
pageSwitch[i].setBoolValue(1);
}
if (canvas_dcdu.CPDLCstatusNode.getValue() == 2) {
me["Simple_R1"].setText("DISCONNECT ");
me["Simple_C1"].setText("---------- ");
} else {
me["Simple_R1"].setText("NOTIFIED ");
me["Simple_C1"].setText("------------ ");
}
2020-07-23 14:29:44 +00:00
if (atsu.notificationSystem.notifyAirport != nil) {
if (atsu.notificationSystem.hasNotified) {
me["Simple_L1"].setText(atsu.notificationSystem.notifyAirport);
me["Simple_C1"].show();
me["Simple_R1"].show();
2020-07-23 14:29:44 +00:00
} else {
me["Simple_L1"].setText("----");
me["Simple_C1"].hide();
me["Simple_R1"].hide();
}
} else {
me["Simple_L1"].setText("----");
me["Simple_C1"].hide();
me["Simple_R1"].hide();
}
if (atsu.ADS.state == 0) {
2020-07-23 15:21:55 +00:00
me["Simple_C4S"].setText("--------------ADS - OFF--------");
2020-07-23 14:29:44 +00:00
me["Simple_L4"].setText(" SET ARMED");
} elsif (atsu.ADS.state == 1) {
2020-07-23 15:21:55 +00:00
me["Simple_C4S"].setText("-------------ADS - ARMED-------");
2020-07-23 14:29:44 +00:00
me["Simple_L4"].setText(" SET OFF");
} elsif (atsu.ADS.state == 2) {
2020-07-23 15:21:55 +00:00
me["Simple_C4S"].setText("-----------ADS - CONNECTED-----");
2020-07-23 14:29:44 +00:00
me["Simple_L4"].setText(" SET OFF");
}
} else if (page == "COMMMENU") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("COMM MENU");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-23 14:29:44 +00:00
showLeft(me,1, 1, 1, -1, -1, 1);
2020-07-23 14:29:44 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, -1, -1, 1);
showLeftArrow(me,1, 1, 1, -1, -1, 1);
showRight(me,1, 1, -1, 1, -1, -1);
showRightS(me,1, 1, -1, -1, -1, -1);
showRightArrow(me,1, 1, -1, 1, -1, -1);
2020-07-23 14:29:44 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, small, normal);
2020-07-30 18:36:00 +00:00
me.standardFontColour();
2020-07-23 14:29:44 +00:00
me["Simple_L1S"].setText(" COMM");
me["Simple_L1"].setText(" INIT");
me["Simple_L2S"].setText(" VHF3");
me["Simple_L2"].setText(" DATA MODE");
me["Simple_L3S"].setText(" VHF3 VOICE");
me["Simple_L3"].setText(" DIRECTORY");
me["Simple_L6S"].setText(" RETURN TO");
me["Simple_L6"].setText(" ATSU DLK");
me["Simple_R1S"].setText("COMM ");
me["Simple_R1"].setText("STATUS ");
me["Simple_R2S"].setText("COMPANY ");
me["Simple_R2"].setText("CALL ");
me["Simple_R4"].setText("MAINTENANCE ");
pageSwitch[i].setBoolValue(1);
}
2020-07-24 13:18:17 +00:00
} else if (page == "VOICEDIRECTORY") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-07-24 13:18:17 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_Title"].show();
me["Simple_Title"].setText("VHF3 VOICE DIRECTORY");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-24 13:18:17 +00:00
showLeft(me,1, -1, -1, 1, -1, 1);
2020-07-24 13:18:17 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, -1, -1, 1, -1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,1, -1, -1, -1, -1, -1);
showRight(me,1, -1, -1, -1, 1, 1);
showRightS(me,1, -1, -1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2020-07-24 13:18:17 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2020-07-24 13:18:17 +00:00
me.colorLeft("blu", "wht", "wht", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenterS("grn", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" OPS");
me["Simple_L1"].setText(" 132.225");
me["Simple_L4S"].setText(" CO CALL");
me["Simple_L6S"].setText(" RETURN TO");
me["Simple_L6"].setText(" COMM MENU");
me["Simple_R1S"].setText("MAINT ");
me["Simple_R1"].setText("132.400 ");
me["Simple_R5S"].setText("MODE ");
me["Simple_R6S"].setText("PAGE ");
me["Simple_R6"].setText("PRINT ");
me["Simple_C1S"].setFontSize(normal);
pageSwitch[i].setBoolValue(1);
}
if (ecam.vhf3_voice.active) {
me["Simple_C1S"].setText("VOICE");
me["Simple_R5"].setText("DATA ");
} else {
me["Simple_C1S"].setText("DATA");
me["Simple_R5"].setText("VOICE ");
}
if (atsu.CompanyCall.frequency != 999.99) {
me["Simple_L4"].setText(" " ~ sprintf("%5.2f", atsu.CompanyCall.frequency));
} else {
me["Simple_L4"].setText(" ---.--");
}
2020-07-24 16:14:48 +00:00
} else if (page == "DATAMODE") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-07-24 16:14:48 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_Title"].show();
me["Simple_Title"].setText("VHF3 DATA MODE");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-24 16:14:48 +00:00
showLeft(me,1, 1, 1, -1, -1, 1);
2020-07-24 16:14:48 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, -1, -1, -1, -1, -1);
showLeftArrow(me,-1, 1, 1, -1, -1, 1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,1, -1, -1, -1, -1, -1);
showRight(me,1, 1, 1, -1, -1, 1);
showRightS(me,1, -1, -1, -1, -1, 1);
showRightArrow(me,-1, 1, 1, -1, -1, -1);
2020-07-24 16:14:48 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2020-07-24 16:14:48 +00:00
me.colorLeft("grn", "blu", "blu", "blu", "wht", "wht");
me.colorLeftS("wht", "blu", "blu", "blu", "wht", "wht");
2020-07-24 16:14:48 +00:00
me.colorLeftArrow("wht", "blu", "blu", "blu", "wht", "wht");
me.colorCenterS("grn", "wht", "wht", "wht", "wht", "wht");
me.colorRight("grn", "blu", "blu", "wht", "wht", "blu");
me.colorRightS("wht", "blu", "blu", "wht", "wht", "blu");
2020-07-24 16:14:48 +00:00
me.colorRightArrow("wht", "blu", "blu", "wht", "wht", "wht");
me["Simple_L1S"].setText(" ATIS");
me["Simple_C1S"].setText("ACTIVE SERVERS");
me["Simple_L2"].setText(" FAA");
me["Simple_L3"].setText(" VATSIM");
me["Simple_R1S"].setText("METAR ");
me["Simple_R2"].setText("NOAA ");
me["Simple_R3"].setText("VATSIM ");
2020-07-24 16:14:48 +00:00
me["Simple_L6S"].setText(" RETURN TO");
me["Simple_L6"].setText(" COMM MENU");
me["Simple_R6S"].setText("PAGE ");
me["Simple_R6"].setText("PRINT ");
pageSwitch[i].setBoolValue(1);
}
if (atsu.AOC.server.getValue() == "vatsim") {
me["Simple_R1"].setText("VATSIM ");
me["Simple_R2_Arrow"].show();
me["Simple_R3_Arrow"].hide();
} elsif (atsu.AOC.server.getValue() == "noaa") {
me["Simple_R1"].setText("NOAA ");
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].show();
}
if (atsu.ATIS.serverSel.getValue() == "vatsim") {
me["Simple_L1"].setText(" VATSIM");
me["Simple_L2_Arrow"].show();
me["Simple_L3_Arrow"].hide();
} elsif (atsu.ATIS.serverSel.getValue() == "faa") {
me["Simple_L1"].setText(" FAA");
me["Simple_L2_Arrow"].hide();
me["Simple_L3_Arrow"].show();
}
2020-07-23 14:29:44 +00:00
} else if (page == "COMMINIT") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("COMM INIT");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-23 14:29:44 +00:00
showLeft(me,-1, 1, 1, 1, -1, 1);
2020-07-23 14:29:44 +00:00
me["Simple_L0S"].hide();
showLeftS(me,-1, 1, 1, 1, -1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,-1, -1, 1, -1, -1, 1);
showRightS(me,-1, -1, 1, -1, -1, 1);
showRightArrow(me,-1, -1, 1, -1, -1, -1);
2020-07-23 14:29:44 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, small, normal);
me.colorLeft("wht", "blu", "blu", "blu", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2020-07-24 16:14:48 +00:00
me.colorRight("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "blu");
2020-07-23 14:29:44 +00:00
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L2S"].setText(" A/C REGISTR");
me["Simple_L2"].setText(getprop("/options/model-options/registration"));
me["Simple_L3S"].setText(" ACARS A/L ID");
me["Simple_L3"].setText(getprop("/options/model-options/two-letter"));
me["Simple_L4S"].setText(" STANDARD A/L ID");
me["Simple_L4"].setText(getprop("/options/model-options/three-letter"));
me["Simple_L6"].setText(" RETURN");
me["Simple_R3S"].setText("VHF3 ");
me["Simple_R3"].setText("SCAN SEL ");
me["Simple_R6S"].setText("PAGE ");
me["Simple_R6"].setText("PRINT ");
pageSwitch[i].setBoolValue(1);
}
} else if (page == "COMMSTATUS") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("COMM STATUS");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-23 14:29:44 +00:00
showLeft(me,1, 1, -1, 1, 1, 1);
2020-07-23 14:29:44 +00:00
me["Simple_L0S"].hide();
showLeftS(me,-1, 1, 1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, -1, 1, 1, 1);
showRightS(me,-1, 1, 1, 1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2020-07-23 14:29:44 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
me.fontSizeLeft(normal, small, normal, normal, small, normal);
me.fontSizeRight(normal, small, normal, small, small, normal);
me.colorLeft("wht", "grn", "grn", "wht", "grn", "wht");
me.colorLeftS("wht", "grn", "grn", "wht", "grn", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "grn", "wht", "grn", "grn", "wht");
me.colorRightS("wht", "grn", "grn", "wht", "grn", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1"].setText(" VHF3");
me["Simple_L2S"].setText(" OP");
me["Simple_L2"].setText(" COMM");
me["Simple_L4"].setText(" SATCOM");
me["Simple_L5"].setText(" COMM");
me["Simple_L6S"].setText(" RETURN TO");
me["Simple_L6"].setText(" COMM MENU");
me["Simple_R1"].setText("HF1 ");
me["Simple_R2S"].setText("OP ");
me["Simple_R2"].setText("COMM ");
me["Simple_R3S"].setText("VOICE ");
me["Simple_R4S"].setText("HF2 ");
me["Simple_R4S"].setFontSize(normal);
me["Simple_R4"].setText("OP ");
me["Simple_R5S"].setText("COMM ");
me["Simple_R5"].setText("VOICE ");
me["Simple_R6S"].setText("PAGE ");
me["Simple_R6"].setText("PRINT ");
pageSwitch[i].setBoolValue(1);
}
me["Simple_L3S"].setText(ecam.vhf3_voice.active == 1 ? " VOICE " : " DATA");
me["Simple_L5S"].setText(getprop("/options/model-options/wifi-aft") ? " OP" : " NOT INST");
me["Simple_L5"].setText(getprop("/options/model-options/wifi-aft") ? " COMM" : " DLK INOP");
} else if (page == "COMPANYCALL") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHide();
me["Simple_Title"].setText("COMPANY CALL");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2020-07-23 14:29:44 +00:00
showLeft(me,1, 1, -1, -1, -1, 1);
2020-07-23 14:29:44 +00:00
me["Simple_L0S"].hide();
showLeftS(me,1, 1, -1, -1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, -1, -1, -1, -1, 1);
showRightS(me,1, -1, -1, -1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2020-07-23 14:29:44 +00:00
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2022-01-15 22:35:33 +00:00
2020-07-23 14:29:44 +00:00
me.fontSizeLeft(normal, small, normal, normal, small, normal);
me.fontSizeRight(normal, small, normal, small, small, normal);
me.colorLeft("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText(" VHF3 TUNE");
me["Simple_L2S"].setText(" TEXT");
me["Simple_L6S"].setText(" RETURN TO");
me["Simple_L6"].setText(" COMM MENU");
me["Simple_R1S"].setText("CO CALL ");
me["Simple_R1"].setText("CLEAR ");
me["Simple_R6S"].setText("CALL ");
me["Simple_R6"].setText("PRINT ");
pageSwitch[i].setBoolValue(1);
}
if (atsu.CompanyCall.received) {
me["COCALL"].hide();
} else {
me["COCALL"].show();
}
if (atsu.CompanyCall.frequency != 999.99) {
if (atsu.CompanyCall.tuned) {
me["COCALLTUNE"].hide();
} else {
me["COCALLTUNE"].show();
}
} else {
me["COCALLTUNE"].hide();
}
2020-07-24 13:18:17 +00:00
if (atsu.CompanyCall.activeMsg != "") {
2020-07-23 14:29:44 +00:00
me["Simple_L2"].setText(sprintf("%s", atsu.CompanyCall.activeMsg));
me["Simple_L2"].show();
} else {
me["Simple_L2"].hide();
}
2020-07-24 13:18:17 +00:00
if (atsu.CompanyCall.frequency != 999.99) {
2020-07-23 14:29:44 +00:00
me["Simple_L1"].setText(" " ~ sprintf("%5.2f", atsu.CompanyCall.frequency));
} else {
me["Simple_L1"].setText(" ---.--");
}
2020-04-12 22:44:02 +00:00
} else if (page == "STATUS") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].hide();
me["FPLN"].hide();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].hide();
2019-10-14 16:48:35 +00:00
me["INITA"].hide();
me["IRSINIT"].hide();
2019-10-14 16:48:35 +00:00
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
2019-10-14 16:48:35 +00:00
me["PERFTO"].hide();
me["arrowsDepArr"].show();
me["arrow1L"].hide();
me["arrow2L"].hide();
me["arrow3L"].show();
me["arrow4L"].hide();
me["arrow5L"].hide();
me["arrow1R"].hide();
me["arrow2R"].hide();
me["arrow3R"].hide();
me["arrow4R"].hide();
me["arrow5R"].show();
me["arrow5R"].setColor(getprop("/MCDUC/colors/blu/r"),getprop("/MCDUC/colors/blu/g"),getprop("/MCDUC/colors/blu/b"));
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText(sprintf("%s", " " ~ acType.getValue()));
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2019-10-14 16:48:35 +00:00
showLeft(me,1, 1, 1, -1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, -1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
showRight(me,-1, 1, -1, 1, 1, 1);
showRightS(me,-1, -1, -1, 1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2019-10-14 16:48:35 +00:00
me.fontSizeLeft(normal, normal, small, normal, normal, small);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
2019-10-14 16:48:35 +00:00
me.colorLeft("grn", "blu", "blu", "wht", "blu", "grn");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "blu", "blu", "wht", "wht", "wht");
me.colorRight("wht", "grn", "wht", "grn", "blu", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "grn", "wht");
2019-10-14 16:48:35 +00:00
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
if (fmgc.FMGCInternal.phase == 0 or fmgc.FMGCInternal.phase == 7) { # only on preflight and done phases
me["Simple_L5S"].setText("CHG CODE");
me["Simple_L5S"].show();
me["Simple_L5"].setText("[ ]");
me["Simple_L5"].show();
2021-01-14 18:01:55 +00:00
} else {
me["Simple_L5"].hide();
}
2020-09-04 20:25:37 +00:00
me["Simple_L6"].setText(sprintf("%s/%s",idleFactor.getValue(),perfFactor.getValue()));
me["Simple_L1S"].setText(" ENG");
me["Simple_L2S"].setText(" ACTIVE NAV DATA BASE");
me["Simple_L3S"].setText(" SECOND NAV DATA BASE");
me["Simple_L6S"].setText("IDLE/PERF");
me["Simple_R6"].setText("STATUS/XLOAD ");
me["Simple_R6S"].setText("SOFTWARE ");
me["Simple_R4S"].setText("PILOT STORED ");
me["Simple_R4"].setText("00RTES 00RWYS ");
me["arrow3L"].setColor(BLUE);
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
me["Simple_L1"].setText(sprintf("%s", engType.getValue()));
me["Simple_L2"].setText(" " ~ fmgc.navDataBase.currentDate);
me["Simple_L3"].setText(" " ~ fmgc.navDataBase.standbyDate);
me["Simple_R2"].setText(fmgc.navDataBase.currentCode);
if (fmgc.WaypointDatabase.getCount() >= 1) {
me["Simple_R4"].show();
me["Simple_R5"].show();
me["Simple_R4S"].show();
me["Simple_R5S"].show();
me["arrow5R"].show();
me["Simple_R5S"].setText(sprintf("%02.0f", fmgc.WaypointDatabase.getCount()) ~ "WPTS 00NAVS ");
} else {
me["Simple_R4"].hide();
me["Simple_R5"].hide();
me["Simple_R4S"].hide();
me["Simple_R5S"].hide();
me["arrow5R"].hide();
}
2020-05-21 18:02:59 +00:00
if (fmgc.WaypointDatabase.confirm[i]) {
2020-05-18 23:09:09 +00:00
me["Simple_R5"].setText("CONFIRM DELETE ALL ");
me["Simple_R5"].setColor(getprop("/MCDUC/colors/amb/r"),getprop("/MCDUC/colors/amb/g"),getprop("/MCDUC/colors/amb/b"));
2020-05-19 12:04:33 +00:00
me["arrow5R"].setColor(getprop("/MCDUC/colors/amb/r"),getprop("/MCDUC/colors/amb/g"),getprop("/MCDUC/colors/amb/b"));
2020-05-18 23:09:09 +00:00
} else {
me["Simple_R5"].setText("DELETE ALL ");
me["Simple_R5"].setColor(getprop("/MCDUC/colors/blu/r"),getprop("/MCDUC/colors/blu/g"),getprop("/MCDUC/colors/blu/b"));
2020-05-19 12:04:33 +00:00
me["arrow5R"].setColor(getprop("/MCDUC/colors/blu/r"),getprop("/MCDUC/colors/blu/g"),getprop("/MCDUC/colors/blu/b"));
2020-05-18 23:09:09 +00:00
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 0 or fmgc.FMGCInternal.phase == 7) {
me["Simple_L5"].show();
me["Simple_L5S"].show();
} else {
me["Simple_L5"].hide();
me["Simple_L5S"].hide();
}
2020-04-12 22:44:02 +00:00
} else if (page == "DATA") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("DATA INDEX");
me["Simple_Title"].setColor(WHITE);
2019-10-14 16:48:35 +00:00
me["Simple_PageNum"].setText("1/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
showLeft(me,1, 1, 1, 1, -1, -1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, -1, 1, -1);
showLeftArrow(me,1, 1, 1, 1, 1, -1);
showRight(me,-1, -1, -1, -1, 1, 1);
showRightS(me,-1, -1, -1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, 1, 1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2019-10-14 16:48:35 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.standardFontColour();
# why is this needed?
me["Simple_L5"].show();
me["Simple_L1"].setText(" MONITOR");
me["Simple_L2"].setText(" MONITOR");
me["Simple_L3"].setText(" MONITOR");
me["Simple_L4"].setText(" A/C STATUS");
me["Simple_L5"].setText(" AIRPORTS");
me["Simple_L1S"].setText(" POSITION");
me["Simple_L2S"].setText(" IRS");
me["Simple_L3S"].setText(" GPS");
me["Simple_L5S"].setText(" CLOSEST");
me["Simple_R5"].setText("FUNCTION ");
me["Simple_R6"].setText("FUNCTION ");
me["Simple_R5S"].setText("PRINT ");
me["Simple_R6S"].setText("AOC ");
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "DATA2") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("DATA INDEX");
me["Simple_Title"].setColor(WHITE);
2019-10-14 16:48:35 +00:00
me["Simple_PageNum"].setText("2/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, 1, 1);
showLeftArrow(me,1, 1, 1, 1, 1, 1);
showRight(me,1, 1, 1, 1, -1, -1);
showRightS(me,1, 1, 1, 1, -1, -1);
showRightArrow(me,1, 1, 1, 1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2019-10-14 16:48:35 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.standardFontColour();
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
me["Simple_L1"].setText(" WAYPOINTS");
me["Simple_L2"].setText(" NAVAIDS");
me["Simple_L3"].setText(" RUNWAYS");
me["Simple_L4"].setText(" ROUTES");
me["Simple_L5"].setText(" WINDS");
me["Simple_L6"].setText(" WINDS");
me["Simple_L5S"].setText(" ACTIVE F-PLN");
me["Simple_L6S"].setText(" SEC F-PLN");
me["Simple_R1"].setText("WAYPOINTS ");
me["Simple_R2"].setText("NAVAIDS ");
me["Simple_R3"].setText("RUNWAYS ");
me["Simple_R4"].setText("ROUTES ");
me["Simple_R1S"].setText("PILOTS ");
me["Simple_R2S"].setText("PILOTS ");
me["Simple_R3S"].setText("PILOTS ");
me["Simple_R4S"].setText("PILOTS ");
2020-05-19 22:37:04 +00:00
} else if (page == "PILOTWP") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
2020-05-22 16:40:15 +00:00
me["Simple_PageNum"].show();
2020-05-19 22:37:04 +00:00
me["ArrowLeft"].show();
me["ArrowRight"].show();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-05-19 22:37:04 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2020-05-19 22:37:04 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
if (myPilotWP[i] != nil) {
2020-05-21 18:02:59 +00:00
me["Simple_PageNum"].setText(fmgc.WaypointDatabase.getNoOfIndex(myPilotWP[i].scroll) ~ "/" ~ (fmgc.WaypointDatabase.getCount()));
2020-05-19 22:37:04 +00:00
me["Simple_Title"].setText(sprintf("%s", myPilotWP[i].title ~ " "));
2020-07-24 13:18:17 +00:00
me.dynamicPageArrowFunc(myPilotWP[i]);
2020-05-19 22:37:04 +00:00
me.colorLeftArrow(myPilotWP[i].arrowsColour[0][0],myPilotWP[i].arrowsColour[0][1],myPilotWP[i].arrowsColour[0][2],myPilotWP[i].arrowsColour[0][3],myPilotWP[i].arrowsColour[0][4],myPilotWP[i].arrowsColour[0][5]);
me.colorRightArrow(myPilotWP[i].arrowsColour[1][0],myPilotWP[i].arrowsColour[1][1],myPilotWP[i].arrowsColour[1][2],myPilotWP[i].arrowsColour[1][3],myPilotWP[i].arrowsColour[1][4],myPilotWP[i].arrowsColour[1][5]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myPilotWP[i]["L" ~ x], "Simple_L" ~ x);
}
2020-05-19 22:37:04 +00:00
me.colorLeft(myPilotWP[i].L1[2],myPilotWP[i].L2[2],myPilotWP[i].L3[2],myPilotWP[i].L4[2],myPilotWP[i].L5[2],myPilotWP[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myPilotWP[i]["R" ~ x], "Simple_R" ~ x);
}
2020-05-19 22:37:04 +00:00
me.colorRight(myPilotWP[i].R1[2],myPilotWP[i].R2[2],myPilotWP[i].R3[2],myPilotWP[i].R4[2],myPilotWP[i].R5[2],myPilotWP[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "POSMON") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
2021-01-23 19:37:04 +00:00
me["Simple_Title2"].setColor(GREEN);
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2019-10-14 16:48:35 +00:00
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,-1, 1, 1, -1, 1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,-1, -1, -1, -1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,-1, -1, -1, -1, 1, -1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,-1, -1, -1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
2019-10-14 16:48:35 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.fontSizeLeft(small, small, small, small, small, normal);
2019-10-14 16:48:35 +00:00
me.colorLeft("wht", "wht", "wht", "wht", "grn", "blu");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "blu");
me.colorRight("grn", "grn", "grn", "grn", "grn", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
2021-01-23 19:37:04 +00:00
me["Simple_C5"].setColor(GREEN);
me["Simple_L5"].setFontSize(small);
2021-01-23 22:30:45 +00:00
me["Simple_C5"].setFontSize(small);
2021-01-23 19:37:04 +00:00
me["Simple_R5"].setFontSize(small);
pageFreezed[i] = nil;
2021-01-25 21:34:44 +00:00
me.updateretard = 0;
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
2021-01-25 21:34:44 +00:00
if (me.updateretard <= 0) {
if (pageFreezed[i] == nil) {
me["Simple_Title"].setText("POSITION MONITOR");
me["Simple_Title"].setFontSize(normal);
me["Simple_Title2"].setFontSize(normal);
2021-01-25 21:34:44 +00:00
me["Simple_Title2"].hide();
me["Simple_L6"].setText(" FREEZE");
me["Simple_L1"].setText("FMGC1");
me["Simple_L2"].setText("FMGC2");
me["Simple_L3"].setText("GPIRS");
me["Simple_L4"].setText("MIX IRS");
me["Simple_L5S"].setText(" IRS1");
me["Simple_R5S"].setText("IRS3 ");
me["Simple_R6S"].setText("SEL ");
2021-01-28 11:14:03 +00:00
me["Simple_R6"].setText("NAVAIDS ");
2021-01-25 21:34:44 +00:00
me["Simple_C5S"].setText("IRS2");
var latlog = me.getLatLogFormatted("/position/"); # current sim lat/log (formatted) cached for fast excecution
#TODO - IRS emulation
if (systems.ADIRS.Operating.aligned[0].getValue()) { # TODO real FMGC1 GPS data
me["Simple_R1"].setText(latlog);
me["Simple_R1"].setColor(GREEN);
me["Simple_L2S"].setText(sprintf(" %16s","3IRS/GPS"));
2021-01-25 21:34:44 +00:00
} else {
me["Simple_R1"].setText("----.--/-----.--");
me["Simple_R1"].setColor(WHITE);
me["Simple_L2S"].setText("");
}
if (systems.ADIRS.Operating.aligned[1].getValue()) { # TODO real FMGC2 GPS data
me["Simple_R2"].setText(latlog);
me["Simple_R2"].setColor(GREEN);
me["Simple_L3S"].setText(sprintf(" %16s","3IRS/GPS"));
2021-01-25 21:34:44 +00:00
} else {
me["Simple_R2"].setText("----.--/-----.--");
me["Simple_R2"].setColor(WHITE);
me["Simple_L3S"].setText("");
}
if (systems.ADIRS.Operating.aligned[0].getValue() or systems.ADIRS.Operating.aligned[1].getValue() or systems.ADIRS.Operating.aligned[2].getValue()) {
me["Simple_R3"].setText(latlog); # GPIRS
me["Simple_R3"].setColor(GREEN);
me["Simple_R4"].setText(latlog); # MIXIRS
me["Simple_R4"].setColor(GREEN);
} else {
me["Simple_R3"].setText("----.--/-----.--"); # GPIRS not available
me["Simple_R3"].setColor(WHITE);
me["Simple_R4"].setText("----.--/-----.--"); # MIXIRS not available
me["Simple_R4"].setColor(WHITE);
}
var Simple_row5 = ["Simple_L5","Simple_C5","Simple_R5"];
for ( var a=0; a<3; a+=1 ) {
if (systems.ADIRS.Operating.aligned[a].getValue()) {
me[Simple_row5[a]].setText(sprintf("%-8s",(systems.ADIRS.ADIRunits[a].mode == 2) ? "ATT" : "NAV 0.1"));
2021-01-25 21:34:44 +00:00
} else {
me[Simple_row5[a]].setText(sprintf("%-8s",me.getIRSStatus(a)));
}
}
2021-01-23 19:37:04 +00:00
} else {
2021-01-25 21:34:44 +00:00
me["Simple_Title"].setText("POSITION FROZEN AT ");
me["Simple_Title"].setFontSize(small);
2021-01-25 21:34:44 +00:00
me["Simple_Title2"].setText(sprintf("%23s ",pageFreezed[i]));
me["Simple_Title2"].show();
me["Simple_Title2"].setFontSize(small);
2021-01-25 21:34:44 +00:00
me["Simple_L6"].setText(" UNFREEZE");
}
2021-01-23 19:37:04 +00:00
}
2021-01-25 21:34:44 +00:00
if (me.updateretard < 0) me.updateretard = 2;
else me.updateretard -= 1;
} else if (page == "IRSMON") {
if (!pageSwitch[i].getBoolValue()) {
2021-01-28 11:14:03 +00:00
me.defaultHideWithCenter();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeLeftS(0, 0, 0, small, small, small);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.fontSizeRightS(small, small, small, small, small, small);
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeCenterS(small, small, small, small, small, small);
2022-01-15 22:35:33 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, 1, -1, -1, -1);
showLeftS(me,-1, 1, 1, 1, -1, -1);
showLeftArrow(me,1, 1, 1, -1, -1, -1);
showCenter(me,-1, -1, -1, -1, -1, -1);
showCenterS(me,-1, -1, -1, -1, -1, -1);
showRight(me,-1, -1, -1, -1, -1, -1);
showRightS(me,1, 1, 1, 1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_L0S"].hide();
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me.colorLeft("wht", "wht", "wht", "ack", "ack", "ack");
me.colorLeftS("ack", "grn", "grn", "grn", "ack", "ack");
2021-01-28 11:14:03 +00:00
me.colorCenter("wht", "grn", "grn", "grn", "ack", "ack");
me.colorRightS("amb", "grn", "grn", "grn", "ack", "ack");
me.colorLeftArrow("wht", "wht", "wht", "ack", "ack", "ack");
me["Simple_Title"].setText("IRS MONITOR");
me["Simple_L1"].setText(" IRS1");
me["Simple_L2"].setText(" IRS2");
me["Simple_L3"].setText(" IRS3");
2021-01-28 11:14:03 +00:00
me["Simple_C1"].setText("EXCESS MOTION");
me["Simple_C2"].setText("EXCESS MOTION");
me["Simple_C3"].setText("EXCESS MOTION");
me["Simple_C1"].setFontSize(small);
me["Simple_C2"].setFontSize(small);
me["Simple_C3"].setFontSize(small);
me["Simple_R1S"].setText("");
#TODO - Missing SET HDG on degraded operations
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
2021-01-23 20:59:34 +00:00
var rows = ["Simple_L2S","Simple_L3S","Simple_L4S"];
2021-01-28 11:14:03 +00:00
var center = ["Simple_C1","Simple_C2","Simple_C3"];
for (var a = 0; a<3; a+=1) {
me[rows[a]].setText(me.getIRSStatus(a,1));
2021-01-28 11:14:03 +00:00
if (systems.ADIRS.ADIRunits[a]._excessMotion) {
me[center[a]].show();
} else {
me[center[a]].hide();
}
}
if (fmgc.FMGCInternal.phase == 7) { # DONE phase
if (fmgc.FMGCInternal.arrApt != nil and fmgc.flightPlanController.flightplans[2].destination_runway != nil) {
me["Simple_R1S"].setText(sprintf("DRIFT AT %7s ",fmgc.FMGCInternal.arrApt ~ fmgc.flightPlanController.flightplans[2].destination_runway.id));
}
me["Simple_R2S"].setText(sprintf("DRIFT %2.1fNM/H ",0));
me["Simple_R3S"].setText(sprintf("DRIFT %2.1fNM/H ",0));
me["Simple_R4S"].setText(sprintf("DRIFT %2.1fNM/H ",0));
} else {
me["Simple_R1S"].setText("");
me["Simple_R2S"].setText("");
me["Simple_R3S"].setText("");
me["Simple_R4S"].setText("");
}
2021-01-28 13:59:08 +00:00
} else if (page == "GPSMON") {
if (!pageSwitch[i].getBoolValue()) {
me.defaultHideWithCenter();
me.standardFontSize();
me.defaultPageNumbers();
showLeft(me,1, 1, 1, 1, 1, 1);
showLeftS(me,1, 1, 1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
showCenter(me,-1, 1, 1, -1, 1, 1);
showCenterS(me,-1, 1, 1, -1, 1, 1);
showRight(me,-1, 1, 1, -1, 1, 1);
showRightS(me,-1, 1, 1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2021-01-28 13:59:08 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
me["Simple_L0S"].hide();
me["Simple_Title"].show();
me.colorLeft("grn", "grn", "grn", "grn", "grn", "grn");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("grn", "grn", "grn", "grn", "grn", "grn");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("grn", "grn", "grn", "grn", "grn", "grn");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_Title"].setText("GPS MONITOR");
me["Simple_L1S"].setText("GPS1 POSITION");
me["Simple_L2S"].setText("TTRK");
me["Simple_L3S"].setText("MERIT");
me["Simple_L3"].setText(sprintf("%s",int(((rand() * 50) - 25) + 50)) ~ "M");
2021-01-28 13:59:08 +00:00
me["Simple_L4S"].setText("GPS2 POSITION");
me["Simple_L5S"].setText("TTRK");
me["Simple_L6S"].setText("MERIT");
me["Simple_L6"].setText(sprintf("%s",int(((rand() * 50) - 25) + 50)) ~ "M");
2021-01-28 13:59:08 +00:00
me["Simple_C2S"].setText("UTC");
me["Simple_C3S"].setText("GPS ALT");
me["Simple_C5S"].setText("UTC");
me["Simple_C6S"].setText("GPS ALT");
me["Simple_R2S"].setText("GS");
me["Simple_R3S"].setText("MODE/SAT");
me["Simple_R3"].setText("NAV/" ~ sprintf("%s",int((rand() * 2) - 1) + 6) ~ " ");
2021-01-28 13:59:08 +00:00
me["Simple_R5S"].setText("GS");
me["Simple_R6S"].setText("MODE/SAT");
me["Simple_R6"].setText("NAV/" ~ sprintf("%s",int((rand() * 2) - 1) + 6) ~ " ");
2021-01-28 13:59:08 +00:00
pageSwitch[i].setBoolValue(1);
}
me["Simple_L1"].setText(me.getLatLogFormatted2("/position/"));
me["Simple_L2"].setText(sprintf("%-5.1f",pts.Instrumentation.GPS.trackMag.getValue() + magvar()));
me["Simple_L4"].setText(me.getLatLogFormatted2("/position/"));
me["Simple_L5"].setText(sprintf("%-5.1f",pts.Instrumentation.GPS.trackMag.getValue() + magvar()));
2021-01-31 13:38:14 +00:00
var gmt = string.replace(pts.Sim.Time.gmtString.getValue(),":",".");
me["Simple_C2"].setText(gmt);
me["Simple_C5"].setText(gmt);
2021-01-28 13:59:08 +00:00
me["Simple_C3"].setText(sprintf("%5.0f",pts.Instrumentation.GPS.altitude.getValue()));
me["Simple_C6"].setText(sprintf("%5.0f",pts.Instrumentation.GPS.altitude.getValue()));
me["Simple_R2"].setText(sprintf("%3.0f",pts.Instrumentation.GPS.gs.getValue()));
me["Simple_R5"].setText(sprintf("%3.0f",pts.Instrumentation.GPS.gs.getValue()));
2020-04-12 22:44:02 +00:00
} else if (page == "RADNAV") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-23 14:29:44 +00:00
me.defaultHide();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("RADIO NAV");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
2019-10-14 16:48:35 +00:00
showLeft(me,1, 1, 1, 1, 1, -1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, 1, 1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
2021-12-26 17:23:37 +00:00
showRight(me,1, 1, -1, -1, 1, -1);
showRightS(me,1, 1, -1, -1, 1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2019-10-14 16:48:35 +00:00
me.fontSizeLeft(0, 0, 0, 0, 0, normal);
me.fontSizeRight(0, 0, small, small, 0, normal);
me.colorLeft("blu", "blu", "blu", "blu", "blu", "blu");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "blu");
2019-10-14 16:48:35 +00:00
me.colorCenter("wht", "wht", "wht", "wht", "wht", "grn");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "blu", "blu", "blu", "blu");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "blu");
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
if (fmgc.FMGCInternal.VOR1.freqSet) {
2019-10-14 16:48:35 +00:00
me["Simple_L1"].setFontSize(normal);
} else {
me["Simple_L1"].setFontSize(small);
}
if (fmgc.FMGCInternal.VOR1.crsSet) {
2019-10-14 16:48:35 +00:00
me["Simple_L2"].setFontSize(normal);
} else {
me["Simple_L2"].setFontSize(small);
}
if (fmgc.FMGCInternal.ILS.freqSet) {
2019-10-14 16:48:35 +00:00
me["Simple_L3"].setFontSize(normal);
} else {
me["Simple_L3"].setFontSize(small);
}
if (fmgc.FMGCInternal.ILS.crsSet) {
2019-10-14 16:48:35 +00:00
me["Simple_L4"].setFontSize(normal);
} else {
me["Simple_L4"].setFontSize(small);
}
me["Simple_L6"].setText(" ADF1 BFO");
me["Simple_R6"].setText("ADF2 BFO ");
if (fmgc.FMGCInternal.ADF1.freqSet) {
2019-10-14 16:48:35 +00:00
me["Simple_L5"].setFontSize(normal);
me["Simple_L5"].setText(sprintf(" %s", fmgc.FMGCInternal.ADF1.mcdu));
me["Simple_L6"].show();
if (rmp.BFOActive[0].getValue()) {
# TODO - wrong arrow
me["Simple_L6_Arrow"].hide();
} else {
me["Simple_L6_Arrow"].show();
}
2019-10-14 16:48:35 +00:00
} else {
me["Simple_L5"].setFontSize(small);
me["Simple_L5"].setText("[ ]/[ .]");
me["Simple_L6"].hide();
me["Simple_L6_Arrow"].hide();
2019-10-14 16:48:35 +00:00
}
if (fmgc.FMGCInternal.VOR2.freqSet) {
2019-10-14 16:48:35 +00:00
me["Simple_R1"].setFontSize(normal);
} else {
me["Simple_R1"].setFontSize(small);
}
if (fmgc.FMGCInternal.VOR2.crsSet) {
2019-10-14 16:48:35 +00:00
me["Simple_R2"].setFontSize(normal);
} else {
me["Simple_R2"].setFontSize(small);
}
if (fmgc.FMGCInternal.ADF2.freqSet) {
2019-10-14 16:48:35 +00:00
me["Simple_R5"].setFontSize(normal);
me["Simple_R5"].setText(sprintf("%s ", fmgc.FMGCInternal.ADF2.mcdu));
me["Simple_R6"].show();
if (rmp.BFOActive[1].getValue()) {
# TODO - wrong arrow
me["Simple_R6_Arrow"].hide();
} else {
me["Simple_R6_Arrow"].show();
}
} else {
2019-10-14 16:48:35 +00:00
me["Simple_R5"].setFontSize(small);
me["Simple_R5"].setText("[ .]/[ ]");
me["Simple_R6"].hide();
me["Simple_R6_Arrow"].hide();
2019-10-14 16:48:35 +00:00
}
me["Simple_L1"].setText(" " ~ fmgc.FMGCInternal.VOR1.mcdu);
me["Simple_L2"].setText(sprintf("%03.0f", pts.Instrumentation.Nav.Radials.selectedDeg[2].getValue()));
me["Simple_L3"].setText(" " ~ fmgc.FMGCInternal.ILS.mcdu);
me["Simple_L4"].setText(sprintf("%03.0f", pts.Instrumentation.Nav.Radials.selectedDeg[0].getValue()));
2019-10-14 16:48:35 +00:00
me["Simple_L1S"].setText("VOR1/FREQ");
me["Simple_L2S"].setText("CRS");
me["Simple_L3S"].setText("ILS /FREQ");
me["Simple_L4S"].setText("CRS");
me["Simple_L5S"].setText("ADF1/FREQ");
me["Simple_R1"].setText(" " ~ fmgc.FMGCInternal.VOR2.mcdu);
me["Simple_R2"].setText(sprintf("%03.0f", pts.Instrumentation.Nav.Radials.selectedDeg[3].getValue()));
2019-10-14 16:48:35 +00:00
me["Simple_R1S"].setText("FREQ/VOR2");
me["Simple_R2S"].setText("CRS");
me["Simple_R5S"].setText("FREQ/ADF2");
if (rmp.rmpNav[0].getValue() or rmp.rmpNav[1].getValue()) {
me["Simple_L1"].hide();
me["Simple_L2"].hide();
me["Simple_L3"].hide();
me["Simple_L4"].hide();
me["Simple_L5"].hide();
me["Simple_R1"].hide();
me["Simple_R2"].hide();
me["Simple_R5"].hide();
} else {
me["Simple_L1"].show();
me["Simple_L2"].show();
me["Simple_L3"].show();
me["Simple_L4"].show();
me["Simple_L5"].show();
me["Simple_R1"].show();
me["Simple_R2"].show();
me["Simple_R5"].show();
}
2020-04-12 22:44:02 +00:00
} else if (page == "INITA") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].hide();
me["FPLN"].hide();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].hide();
2019-10-14 16:48:35 +00:00
me["INITA"].show();
me["IRSINIT"].hide();
2019-10-14 16:48:35 +00:00
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
2019-10-14 16:48:35 +00:00
me["PERFTO"].hide();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("INIT");
me["Simple_Title"].setColor(WHITE);
2019-10-14 16:48:35 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2019-10-14 16:48:35 +00:00
showLeft(me,0, 1, 0, -1, 0, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
showRight(me,0, 0, 1, 1, 1, 1);
showRightS(me,1, 0, -1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, 1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
2019-10-14 16:48:35 +00:00
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, 0);
2019-10-14 16:48:35 +00:00
me.colorLeft("blu", "wht", "blu", "blu", "ack", "ack");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "amb", "amb", "wht", "blu", "blu");
2019-10-14 16:48:35 +00:00
me.colorRightS("wht", "amb", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText("CO RTE");
me["Simple_L2S"].setText("ALTN/CO RTE");
me["Simple_L3S"].setText("FLT NBR");
me["Simple_L5S"].setText("COST INDEX");
me["Simple_L6S"].setText("CRZ FL/TEMP");
me["Simple_R1S"].setText("FROM/TO ");
me["Simple_R2S"].setText("INIT ");
me["Simple_R5S"].setText("TROPO");
me["Simple_R6S"].setText("GND TEMP");
me["Simple_R2"].setText("REQUEST ");
me["Simple_R3"].setText("IRS INIT ");
me["Simple_R4"].setText("WIND ");
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
2020-07-10 00:09:19 +00:00
if (fmgc.FMGCInternal.flightNumSet) {
2019-10-14 16:48:35 +00:00
me["INITA_FltNbr"].hide();
me["Simple_L3"].show();
} else {
me["INITA_FltNbr"].show();
me["Simple_L3"].hide();
}
2020-07-10 00:09:19 +00:00
2020-07-10 19:54:13 +00:00
if (!fmgc.FMGCInternal.toFromSet and !fmgc.FMGCInternal.costIndexSet) {
2019-10-14 16:48:35 +00:00
me["INITA_CostIndex"].hide();
me["Simple_L5"].setColor(WHITE);
2019-10-14 16:48:35 +00:00
me["Simple_L5"].show();
me["Simple_L5"].setText("---");
2020-07-10 19:54:13 +00:00
} else if (fmgc.FMGCInternal.costIndexSet) {
2019-10-14 16:48:35 +00:00
me["INITA_CostIndex"].hide();
me["Simple_L5"].setColor(BLUE);
2019-10-14 16:48:35 +00:00
me["Simple_L5"].show();
2020-07-10 19:54:13 +00:00
me["Simple_L5"].setText(sprintf("%s", fmgc.FMGCInternal.costIndex));
2019-10-14 16:48:35 +00:00
} else {
me["INITA_CostIndex"].show();
me["Simple_L5"].hide();
}
2020-07-10 19:28:17 +00:00
if (!fmgc.FMGCInternal.toFromSet and !fmgc.FMGCInternal.crzSet) {
2019-10-14 16:48:35 +00:00
me["INITA_CruiseFLTemp"].hide();
me["Simple_L6"].setColor(WHITE);
2021-12-10 14:54:38 +00:00
me["Simple_L6"].setText("-----/---°");
2020-07-10 00:09:19 +00:00
} else if (fmgc.FMGCInternal.crzSet and fmgc.FMGCInternal.crzTempSet) {
me["INITA_CruiseFLTemp"].hide();
me["Simple_L6"].setColor(BLUE);
me["Simple_L6"].setText(sprintf("%s", "FL" ~ fmgc.FMGCInternal.crzFl) ~ sprintf("/%+3.0f°", fmgc.FMGCInternal.crzTemp));
2020-07-10 00:09:19 +00:00
} else if (fmgc.FMGCInternal.crzSet) {
2019-10-14 16:48:35 +00:00
me["INITA_CruiseFLTemp"].hide();
me["Simple_L6"].setColor(BLUE);
2020-07-10 00:09:19 +00:00
fmgc.FMGCInternal.crzTemp = 15 - (2 * fmgc.FMGCInternal.crzFl / 10);
fmgc.FMGCInternal.crzTempSet = 1;
me["Simple_L6"].setText(sprintf("%s", "FL" ~ fmgc.FMGCInternal.crzFl) ~ sprintf("/%+3.0f°", fmgc.FMGCInternal.crzTemp));
2019-10-14 16:48:35 +00:00
} else {
me["INITA_CruiseFLTemp"].show();
me["Simple_L6"].setColor(AMBER);
2021-12-10 14:54:38 +00:00
me["Simple_L6"].setText(" °");
2019-10-14 16:48:35 +00:00
}
if (fmgc.FMGCInternal.coRouteSet) { # show coRoute when valid
me["INITA_CoRoute"].hide();
me["Simple_L1"].setText(fmgc.FMGCInternal.coRoute);
me["Simple_L1"].setColor(BLUE);
me["Simple_L1"].show();
} else {
me["Simple_L1"].hide();
me["INITA_CoRoute"].show();
me["Simple_L1"].setText("NONE");
}
2020-07-10 19:28:17 +00:00
if (fmgc.FMGCInternal.toFromSet) {
2019-10-14 16:48:35 +00:00
me["INITA_CoRoute"].hide();
me["INITA_FromTo"].hide();
me["Simple_L1"].show();
me["Simple_L2"].setColor(BLUE);
2020-07-10 19:28:17 +00:00
if (fmgc.FMGCInternal.altAirportSet) {
2020-07-10 00:25:25 +00:00
me["Simple_L2"].setText(fmgc.FMGCInternal.altAirport);
} else {
me["Simple_L2"].setText("NONE");
2020-03-28 20:40:02 +00:00
}
showRight(me,1, -1, 0, 0, 0, 0);
2019-10-14 16:48:35 +00:00
me["Simple_R2S"].hide();
me["INITA_InitRequest"].hide();
} else {
me["INITA_CoRoute"].show();
me["INITA_FromTo"].show();
me["Simple_L1"].hide();
me["Simple_L2"].setColor(WHITE);
me["Simple_L2"].setText("----/------");
showRight(me,-1, 1, 0, 0, 0, 0);
2019-10-14 16:48:35 +00:00
me["Simple_R2S"].show();
2020-08-01 14:04:54 +00:00
if (!Simbrief.SimbriefParser.inhibit) {
me["INITA_InitRequest"].show();
} else {
me["INITA_InitRequest"].hide();
}
2019-10-14 16:48:35 +00:00
}
if (ADIRSMCDUBTN.getValue() != 1) {
2019-10-14 16:48:35 +00:00
me["INITA_AlignIRS"].show();
2020-04-13 19:04:01 +00:00
me["Simple_R3"].setColor(AMBER);
showRightArrow(me,0, 0, -1, 0, 0, 0);
2019-10-14 16:48:35 +00:00
} else {
me["INITA_AlignIRS"].hide();
2020-04-13 19:04:01 +00:00
me["Simple_R3"].setColor(WHITE);
showRightArrow(me,0, 0, 1, 0, 0, 0);
2019-10-14 16:48:35 +00:00
}
2020-07-10 00:09:19 +00:00
if (fmgc.FMGCInternal.tropoSet) {
me["Simple_R5"].setFontSize(normal);
2019-10-14 16:48:35 +00:00
} else {
me["Simple_R5"].setFontSize(small);
}
if (fmgc.FMGCInternal.phase == 0) {
2020-07-10 00:25:25 +00:00
if (fmgc.FMGCInternal.gndTempSet) {
me["Simple_R6"].setText(sprintf("%.0f°", fmgc.FMGCInternal.gndTemp));
me["Simple_R6"].setFontSize(normal);
} else if (fmgc.FMGCInternal.toFromSet) {
fmgc.FMGCInternal.gndTemp = 15 - (2 * (fmgc.flightPlanController.flightplans[2].departure.elevation * 3.28084) / 1000);
me["Simple_R6"].setText(sprintf("%.0f°", fmgc.FMGCInternal.gndTemp));
me["Simple_R6"].setFontSize(small);
} else {
me["Simple_R6"].setText(sprintf("%.0f°", fmgc.FMGCInternal.gndTemp));
me["Simple_R6"].setFontSize(small);
}
} else {
me["Simple_R6"].setText("---");
me["Simple_R6"].setFontSize(small);
2019-10-14 16:48:35 +00:00
}
#me["Simple_L1"].setText("NONE"); # manage before (coRoute)
2020-07-10 00:09:19 +00:00
me["Simple_L3"].setText(sprintf("%s", fmgc.FMGCInternal.flightNum));
2020-07-10 19:28:17 +00:00
me["Simple_R1"].setText(sprintf("%s", fmgc.FMGCInternal.depApt ~ "/" ~ fmgc.FMGCInternal.arrApt));
2020-07-10 00:09:19 +00:00
me["Simple_R5"].setText(sprintf("%5.0f", fmgc.FMGCInternal.tropo));
2020-04-12 22:44:02 +00:00
} else if (page == "IRSINIT") {
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].show();
me["FPLN"].hide();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].hide();
me["INITA"].hide();
me["IRSINIT"].show();
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
me["PERFTO"].hide();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("IRS INIT");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, -1, -1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, -1, -1, -1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, -1, -1, -1, 1);
showRightS(me,1, 1, -1, -1, -1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, -1, 1, 1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, 1, 1, 1, 1, -1);
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.fontSizeCenter(normal, small, small, small, small, 0);
me.colorLeft("blu", "blu", "ack", "ack", "ack", "wht");
me.colorLeftS("wht", "wht", "ack", "ack", "ack", "ack");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("blu", "blu", "ack", "ack", "ack", "blu");
me.colorRightS("wht", "wht", "ack", "ack", "ack", "ack");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "blu");
me.colorCenter("grn", "ack", "grn", "grn", "grn", "grn");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
me["Simple_L1S"].setText("LAT");
me["Simple_L2S"].setText("LAT");
me["Simple_R1S"].setText("LONG");
me["Simple_R2S"].setText("LONG");
me["Simple_L6"].setText(" RETURN");
me["Simple_C1S"].setText("REFERENCE");
me["Simple_C2S"].setText("GPS POSITION");
pageSwitch[i].setBoolValue(1);
}
if (getprop("/FMGC/internal/align-ref-lat-edit")) {
me["IRSINIT_1"].show();
me["IRSINIT_2"].hide();
} else if (getprop("/FMGC/internal/align-ref-long-edit")) {
me["IRSINIT_1"].hide();
me["IRSINIT_2"].show();
} else {
me["IRSINIT_1"].hide();
me["IRSINIT_2"].hide();
}
2020-07-10 19:28:17 +00:00
if (fmgc.FMGCInternal.toFromSet) {
degrees = getprop("/FMGC/internal/align-ref-lat-degrees");
minutes = getprop("/FMGC/internal/align-ref-lat-minutes");
sign = getprop("/FMGC/internal/align-ref-lat-sign");
2022-01-27 13:08:24 +00:00
apt = airportinfo(fmgc.FMGCInternal.depApt);
degrees_lat = int(apt.lat);
minutes_lat = sprintf("%.1f",abs((apt.lat - degrees_lat) * 60));
sign_lat = degrees_lat >= 0 ? "N" : "S";
lat_same = degrees_lat == degrees and minutes_lat == minutes and sign_lat == sign;
me["Simple_L1"].setText(abs(sprintf("%.0f", degrees)) ~ "°" ~ sprintf("%.1f", minutes) ~ sign);
degrees = getprop("/FMGC/internal/align-ref-long-degrees");
minutes = getprop("/FMGC/internal/align-ref-long-minutes");
sign = getprop("/FMGC/internal/align-ref-long-sign");
degrees_long = int(apt.lon);
minutes_long = sprintf("%.1f",abs((apt.lon - degrees_long) * 60));
sign_long = degrees_long >= 0 ? "E" : "W";
long_same = degrees_long == degrees and minutes_long == minutes and sign_long == sign;
me["Simple_R1"].setText(abs(sprintf("%.0f", degrees)) ~ "°" ~ sprintf("%.1f", minutes) ~ sign);
if (lat_same and long_same) {
me["Simple_C1"].setText(getprop("/autopilot/route-manager/route/wp[0]/id"));
me["Simple_C1"].setColor(GREEN);
} else {
me["Simple_C1"].setText("----");
me["Simple_C1"].setColor(WHITE);
}
} else {
2020-03-28 20:40:02 +00:00
me["Simple_L1"].setText("-----.--");
me["Simple_R1"].setText("------.--");
me["Simple_C1"].setText("----");
me["Simple_C1"].setColor(WHITE);
}
dms = getprop("/position/latitude-deg");
2020-04-13 18:48:54 +00:00
degrees = int(dms);
minutes = sprintf("%.1f",abs((dms - degrees) * 60));
sign = degrees >= 0 ? "N" : "S";
dms2 = getprop("/position/longitude-deg");
2020-04-13 18:48:54 +00:00
degrees2 = int(dms2);
minutes2 = sprintf("%.1f",abs((dms2 - degrees2) * 60));
sign2 = degrees2 >= 0 ? "E" : "W";
# GPS POS
me["Simple_L2"].setText(abs(degrees) ~ "°" ~ minutes ~ sign);
2021-12-10 14:54:38 +00:00
me["Simple_R2"].setText(abs(degrees2) ~ "°" ~ minutes2 ~ " " ~ sign2);
# IRS POS
for (var ADR = 0; ADR < 3; ADR += 1) {
if (systems.ADIRS.ADIRunits[ADR].operative and getprop("/FMGC/internal/align" ~ (ADR + 1) ~ "-done")) {
me["Simple_C" ~ (ADR + 3)].setText(abs(degrees) ~ "°" ~ minutes ~ sign ~ "/" ~ abs(degrees2) ~ "°" ~ minutes2 ~ sign2);
me["Simple_C" ~ (ADR + 3)].setColor(GREEN);
} else {
me["Simple_C" ~ (ADR + 3)].setText("--°---.--/---°--.--");
me["Simple_C" ~ (ADR + 3)].setColor(WHITE);
}
if (systems.ADIRS.Operating.aligned[ADR].getValue()) {
if (systems.ADIRS.ADIRunits[ADR].mode == 2) {
me["Simple_C" ~ (ADR + 3) ~ "S"].setText("IRS" ~ (ADR + 1) ~ " IN ATT");
} else {
me["Simple_C" ~ (ADR + 3) ~ "S"].setText("IRS" ~ (ADR + 1) ~ " ALIGNED ON GPS");
}
} else {
me["Simple_C" ~ (ADR + 3) ~ "S"].setText("IRS" ~ (ADR + 1) ~ " ALIGNING ON GPS");
}
}
if (align_set.getValue() == 1) {
2020-03-28 20:40:02 +00:00
me["Simple_R6"].setText("CONFIRM ALIGN ");
me.colorRight("ack", "ack", "ack", "ack", "ack", "amb");
me["IRSINIT_star"].show();
showRightArrow(me,0, 0, 0, 0, 0, -1);
} else {
2020-03-28 20:40:02 +00:00
me["Simple_R6"].setText("ALIGN ON REF ");
me["IRSINIT_star"].hide();
showRightArrow(me,0, 0, 0, 0, 0, 1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "ROUTESELECTION") {
if (!pageSwitch[i].getBoolValue()) {
2021-01-20 19:32:21 +00:00
me.defaultHide();
me.standardFontSize();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("ROUTE SELECTION");
2021-01-20 19:32:21 +00:00
me.showPageNumbers(1,1);
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,-1, 1, 1, 1, 1, -1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,-1, 1, 1, 1, 1, 1);
showRightS(me,-1, 1, 1, 1, 1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2021-01-20 19:32:21 +00:00
me.fontSizeLeftS(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(0, small, small, small, small, normal);
me.fontSizeRightS(0, small, small, small, small, normal);
me.colorLeft("grn", "grn", "grn", "grn", "grn", "wht");
me.colorLeftS("grn", "grn", "grn", "grn", "grn", "wht");
me.colorRight("ack", "wht", "wht", "wht", "wht", "amb");
me.colorRightS("ack", "wht", "wht", "wht", "wht", "wht");
2021-01-20 20:25:37 +00:00
me["Simple_L1"].setText("NONE");
me["Simple_L6"].setText(" RETURN");
me["Simple_R6"].setText("INSERT ");
me["PRINTPAGE"].show();
me["PRINTPAGE"].setColor(AMBER);
var rows = ["2S","2","3S","3","4S","4","5S","5"];
me["Simple_L1"].setText("DUBLHR1");
var r = 0;
#for ( ; r < 8; r += 1) { # Example how formats rows with 4 cols
# me["Simple_L" ~ rows[r]].setText(sprintf("%11s %11s","SELKA","NUGRA"));
# me["Simple_R" ~ rows[r]].setText(sprintf("%-13s %-13s","UL975","UL975"));
#}
while (r<8) {
me["Simple_L" ~ rows[r]].setText("");
me["Simple_R" ~ rows[r]].setText("");
r+=1;
}
if (fmgc.FMGCInternal.toFromSet and !fmgc.FMGCInternal.altSelected) {
me["Simple_Title"].setText(sprintf("%s", fmgc.FMGCInternal.depApt ~ "/" ~ fmgc.FMGCInternal.arrApt));
} else if (!fmgc.FMGCInternal.toFromSet and fmgc.FMGCInternal.altAirport != "" and fmgc.FMGCInternal.altSelected) {
me["Simple_Title"].setText(sprintf("%s", fmgc.FMGCInternal.altAirport));
} else if (fmgc.FMGCInternal.toFromSet and fmgc.FMGCInternal.altAirport != "" and fmgc.FMGCInternal.altSelected) {
me["Simple_Title"].setText(sprintf("%s", fmgc.FMGCInternal.arrApt ~ "/" ~ fmgc.FMGCInternal.altAirport));
} else {
me["Simple_Title"].setText("ROUTE SELECTION");
}
pageSwitch[i].setBoolValue(1); # update on request only (left/right arrows)
2020-03-28 20:40:02 +00:00
}
2021-01-20 20:25:37 +00:00
2020-04-12 22:44:02 +00:00
} else if (page == "INITB") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].show();
2020-04-12 22:08:16 +00:00
me["FPLN"].hide();
me["DIRTO_TMPY_group"].hide();
2019-10-14 16:48:35 +00:00
me["INITA"].hide();
me["IRSINIT"].hide();
2019-10-14 16:48:35 +00:00
me["INITB"].show();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
2019-10-14 16:48:35 +00:00
me["PERFTO"].hide();
me["arrowsDepArr"].show();
me["arrow1L"].hide();
me["arrow2L"].hide();
me["arrow3L"].hide();
me["arrow4L"].hide();
me["arrow5L"].hide();
me["arrow1R"].hide();
me["arrow2R"].hide();
me["arrow4R"].hide();
me["arrow5R"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2019-10-14 16:48:35 +00:00
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
showCenter(me,1, -1, 1, 1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,-1, -1, -1, -1, -1, -1);
showRight(me,-1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, 1, 1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2019-10-14 16:48:35 +00:00
me.fontSizeLeft(small, small, small, small, small, small);
me.fontSizeCenter(normal, small, small, small, small, small);
me.fontSizeRight(normal, normal, normal, small, small, small);
me["Simple_C4B"].setFontSize(small);
2019-10-14 16:48:35 +00:00
me.colorLeft("blu", "wht", "wht", "wht", "wht", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("blu", "wht", "blu", "grn", "blu", "wht");
me["Simple_C4B"].setColor(GREEN);
me.colorRight("blu", "blu", "amb", "wht", "blu", "wht");
me.colorRightS("wht", "wht", "amb", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "amb", "wht", "wht", "wht");
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L1"].setText(sprintf("%2.1f", fmgc.FMGCInternal.taxiFuel * LBS2KGS));
} else {
me["Simple_L1"].setText(sprintf("%2.1f", fmgc.FMGCInternal.taxiFuel));
}
me["Simple_L1S"].setText("TAXI");
me["Simple_L2S"].setText("TRIP/TIME");
me["Simple_L3S"].setText("RTE RSV/%");
me["Simple_L4S"].setText("ALTN/TIME");
me["Simple_L5S"].setText("FINAL/TIME");
me["Simple_L6S"].setText("MIN DEST FOB");
me["Simple_R2S"].setText("BLOCK");
me["Simple_R4S"].setText("TOW/ LW");
me["Simple_R5S"].setText("TRIP WIND");
me["Simple_R5"].setText(fmgc.FMGCInternal.tripWind);
me["Simple_R6S"].setText("EXTRA/TIME");
me["Simple_Title"].setColor(WHITE);
if (!fmgc.FMGCInternal.fuelRequest) {
2020-03-28 20:40:02 +00:00
me["Simple_L2"].setText("---.-/----");
me["Simple_L3"].setText("---.-");
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
2020-03-28 20:40:02 +00:00
me["Simple_L4"].setText("---.-/----");
me["Simple_C4"].hide();
me["Simple_L5"].setText("---.-");
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
2020-03-28 20:40:02 +00:00
me["Simple_L6"].setText("---.-");
if (fmgc.FMGCInternal.blockSet) {
me["Simple_R2"].show();
me["INITB_Block"].hide();
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block * LBS2KGS));
} else {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block));
}
} else {
me["Simple_R2"].hide();
me["INITB_Block"].show();
}
if (fmgc.FMGCInternal.zfwSet) {
2020-05-18 16:35:42 +00:00
me["Simple_R3S"].show();
me["Simple_R3"].show();
me["Simple_R3S"].setText("FUEL");
me["Simple_R3"].setText("PLANNING ");
me["arrow3R"].show();
me["arrow3R"].setColor(AMBER);
2020-05-18 16:35:42 +00:00
} else {
me["Simple_R3S"].hide();
me["Simple_R3"].hide();
me["arrow3R"].hide();
2020-05-18 16:35:42 +00:00
}
me["Simple_C4B"].hide();
me["Simple_R4"].setText("---.-/---.-");
2020-03-28 20:40:02 +00:00
me["Simple_R6"].setText("---.-/----");
me["Simple_Title"].setText("INIT");
me["Simple_Title"].setColor(WHITE);
me.colorLeft("ack", "wht", "wht", "wht", "wht", "wht");
me.colorRight("ack", "blu", "amb", "wht", "ack", "wht");
me["Simple_R3S"].setColor(AMBER);
} else {
me["Simple_Title"].setText("INIT FUEL PREDICTION ");
if (fmgc.FMGCInternal.blockCalculating) {
me["Simple_L2"].setText("---.-/----");
me["Simple_L3"].setText("---.-");
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
me["Simple_L4"].setText("---.-/----");
me["Simple_C4"].hide();
me["Simple_L5"].setText("---.-");
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
me["Simple_L6"].setText("---.-");
me["Simple_R2"].show();
me["Simple_R2"].setText("---.-");
me["INITB_Block"].hide();
me["Simple_R3S"].show();
me["Simple_R3"].show();
me["Simple_R3S"].setText("FUEL");
me["Simple_R3"].setText("PLANNING ");
me["arrow3R"].hide();
me["Simple_C4B"].hide();
me["Simple_R4"].setText("---.-/---.-");
me["Simple_R6"].setText("---.-/----");
me.colorLeft("ack", "wht", "wht", "wht", "wht", "wht");
me.colorRight("ack", "wht", "grn", "wht", "ack", "wht");
me["Simple_R3S"].setColor(GREEN);
} else {
if (!fmgc.FMGCInternal.blockConfirmed) {
me["Simple_L2"].setText("---.-/----");
me["Simple_L3"].setText("---.-");
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
me["Simple_L4"].setText("---.-/----");
me["Simple_C4"].hide();
me["Simple_L5"].setText("---.-");
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
me["Simple_L6"].setText("---.-");
me["Simple_R2"].show();
me["INITB_Block"].hide();
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block * LBS2KGS));
} else {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block));
}
me["Simple_R3S"].show();
me["Simple_R3"].show();
me["Simple_R3S"].setText("BLOCK");
me["Simple_R3"].setText("CONFIRM ");
me["arrow3R"].show();
me["arrow3R"].setColor(AMBER);
me["Simple_C4B"].show();
if (num(fmgc.FMGCInternal.tow) >= 100.0) {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow * LBS2KGS));
} else {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow));
}
} else {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow * LBS2KGS));
} else {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow));
}
}
me["Simple_R4"].setText("---.-");
me["Simple_R6"].setText("---.-/----");
me.colorLeft("ack", "wht", "wht", "wht", "wht", "wht");
me.colorRight("ack", "blu", "amb", "wht", "ack", "wht");
me["Simple_R3S"].setColor(AMBER);
} else {
if (fmgc.FMGCInternal.fuelCalculating) {
me["Simple_L2"].setText("---.-/----");
me["Simple_L3"].setText("---.-");
if (fmgc.FMGCInternal.rteRsvSet) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (fmgc.FMGCInternal.rtePercentSet) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
me["Simple_L4"].setText("---.-/----");
me["Simple_C4"].hide();
me["Simple_L5"].setText("---.-");
if (fmgc.FMGCInternal.finalFuelSet and fmgc.FMGCInternal.finalTimeSet) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else if (fmgc.FMGCInternal.finalFuelSet) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else if (fmgc.FMGCInternal.finalTimeSet) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
me["Simple_L6"].setText("---.-");
me["Simple_R2"].show();
me["INITB_Block"].hide();
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block * LBS2KGS));
} else {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block));
}
me["Simple_R3S"].hide();
me["Simple_R3"].hide();
me["arrow3R"].hide();
me["Simple_C4B"].show();
if (num(fmgc.FMGCInternal.tow) >= 100.0) {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow * LBS2KGS));
} else {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow));
}
} else {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow * LBS2KGS));
} else {
me["Simple_C4B"].setText(sprintf(" %4.1f/", fmgc.FMGCInternal.tow));
}
}
me["Simple_R4"].setText("---.-");
me["Simple_R6"].setText("---.-/----");
me.colorLeft("ack", "wht", "wht", "wht", "wht", "wht");
me.colorRight("ack", "blu", "ack", "wht", "ack", "wht");
} else {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L2"].setText(sprintf("%.1f/" ~ fmgc.FMGCInternal.tripTime, fmgc.FMGCInternal.tripFuel * LBS2KGS));
} else {
me["Simple_L2"].setText(sprintf("%.1f/" ~ fmgc.FMGCInternal.tripTime, fmgc.FMGCInternal.tripFuel));
}
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L3"].setText(sprintf("%.1f", fmgc.FMGCInternal.rteRsv * LBS2KGS));
} else {
me["Simple_L3"].setText(sprintf("%.1f", fmgc.FMGCInternal.rteRsv));
}
if (fmgc.FMGCInternal.rteRsvSet) {
if (num(fmgc.FMGCInternal.rteRsv) > 9.9 and num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rteRsv) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
} else if (fmgc.FMGCInternal.rtePercentSet) {
if (num(fmgc.FMGCInternal.rteRsv) > 9.9 and num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rteRsv) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
} else {
if (num(fmgc.FMGCInternal.rteRsv) > 9.9 and num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rteRsv) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
}
2020-07-31 12:20:33 +00:00
if (fmgc.FMGCInternal.altAirportSet) {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L4"].setText(sprintf("%.1f", fmgc.FMGCInternal.altFuel * LBS2KGS));
} else {
me["Simple_L4"].setText(sprintf("%.1f", fmgc.FMGCInternal.altFuel));
}
2020-05-05 13:31:38 +00:00
me["Simple_L4"].setColor(BLUE);
me["Simple_C4"].show();
if (fmgc.FMGCInternal.altFuelSet) {
if (num(fmgc.FMGCInternal.altFuel) > 9.9) {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
2020-05-05 13:31:38 +00:00
} else {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
2020-05-05 13:31:38 +00:00
}
2020-05-02 13:30:12 +00:00
} else {
if (num(fmgc.FMGCInternal.altFuel) > 9.9) {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
2020-05-05 13:31:38 +00:00
} else {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
2020-05-05 13:31:38 +00:00
}
2020-05-02 13:30:12 +00:00
}
} else {
2020-05-05 13:31:38 +00:00
me["Simple_L4"].setText("---.-/----");
me["Simple_L4"].setColor(WHITE);
me["Simple_C4"].hide();
}
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L5"].setText(sprintf("%.1f", fmgc.FMGCInternal.finalFuel * LBS2KGS));
} else {
me["Simple_L5"].setText(sprintf("%.1f", fmgc.FMGCInternal.finalFuel));
}
if (fmgc.FMGCInternal.finalTimeSet and fmgc.FMGCInternal.finalFuelSet) {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
} else if (fmgc.FMGCInternal.finalTimeSet) {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
} else if (fmgc.FMGCInternal.finalFuelSet) {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
} else {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
}
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L6"].setText(sprintf("%.1f", fmgc.FMGCInternal.minDestFob * LBS2KGS));
} else {
me["Simple_L6"].setText(sprintf("%.1f", fmgc.FMGCInternal.minDestFob));
}
me["Simple_R2"].show();
me["INITB_Block"].hide();
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block * LBS2KGS));
} else {
me["Simple_R2"].setText(sprintf("%3.1f", fmgc.FMGCInternal.block));
}
me["Simple_R3S"].hide();
me["Simple_R3"].hide();
me["arrow3R"].hide();
me["Simple_C4B"].hide();
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_R4"].setText(sprintf("%4.1f/", fmgc.FMGCInternal.tow * LBS2KGS) ~ sprintf("%4.1f", fmgc.FMGCInternal.lw * LBS2KGS));
me["Simple_R6"].setText(sprintf("%.1f/" ~ fmgc.FMGCInternal.extraTime, fmgc.FMGCInternal.extraFuel * LBS2KGS));
} else {
me["Simple_R4"].setText(sprintf("%4.1f/", fmgc.FMGCInternal.tow) ~ sprintf("%4.1f", fmgc.FMGCInternal.lw));
me["Simple_R6"].setText(sprintf("%.1f/" ~ fmgc.FMGCInternal.extraTime, fmgc.FMGCInternal.extraFuel));
}
2020-05-05 13:31:38 +00:00
me.colorLeft("ack", "grn", "blu", "ack", "blu", "blu");
me.colorRight("ack", "blu", "ack", "grn", "ack", "grn");
}
}
}
}
2019-10-14 16:48:35 +00:00
me["Simple_R1S"].setText("ZFW/ZFWCG");
me["Simple_R1"].setText(sprintf("%3.1f", fmgc.FMGCInternal.zfwcg));
me["INITB_ZFWCG"].hide();
me["INITB_ZFWCG_S"].show();
me["Simple_R1"].show();
if (fmgc.FMGCInternal.zfwcgSet) {
me["Simple_R1"].setFontSize(normal);
2019-10-14 16:48:35 +00:00
} else {
me["Simple_R1"].setFontSize(small);
2019-10-14 16:48:35 +00:00
}
if (fmgc.FMGCInternal.zfwSet) {
if (fmgc.FMGCInternal.zfw < 100) {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C1"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw * LBS2KGS));
} else {
me["Simple_C1"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw));
}
} else {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C1"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw * LBS2KGS));
} else {
me["Simple_C1"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw));
}
}
me["Simple_C1"].show();
2019-10-14 16:48:35 +00:00
me["INITB_ZFW"].hide();
} else {
me["Simple_C1"].hide();
2019-10-14 16:48:35 +00:00
me["INITB_ZFW"].show();
}
if (fmgc.FMGCInternal.taxiFuelSet) {
me["Simple_L1"].setFontSize(normal);
} else {
me["Simple_L1"].setFontSize(small);
}
if (fmgc.FMGCInternal.rteRsvSet) {
me["Simple_L3"].setFontSize(normal);
me["Simple_C3"].setFontSize(small);
} else if (fmgc.FMGCInternal.rtePercentSet) {
me["Simple_L3"].setFontSize(small);
me["Simple_C3"].setFontSize(normal);
} else {
me["Simple_L3"].setFontSize(small);
me["Simple_C3"].setFontSize(small);
}
if (fmgc.FMGCInternal.altFuelSet and fmgc.FMGCInternal.crzSet) {
me["Simple_L4"].setFontSize(normal);
} else {
me["Simple_L4"].setFontSize(small);
}
if (fmgc.FMGCInternal.finalFuelSet and fmgc.FMGCInternal.finalTimeSet) {
me["Simple_L5"].setFontSize(normal);
me["Simple_C5"].setFontSize(normal);
} else if (fmgc.FMGCInternal.finalFuelSet) {
me["Simple_L5"].setFontSize(normal);
me["Simple_C5"].setFontSize(small);
} else if (fmgc.FMGCInternal.finalTimeSet) {
me["Simple_L5"].setFontSize(small);
me["Simple_C5"].setFontSize(normal);
} else {
me["Simple_L5"].setFontSize(small);
me["Simple_C5"].setFontSize(small);
}
if (fmgc.FMGCInternal.minDestFobSet) {
me["Simple_L6"].setFontSize(normal);
} else {
me["Simple_L6"].setFontSize(small);
}
2020-04-12 22:44:02 +00:00
} else if (page == "FUELPRED") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].show();
2020-04-12 22:08:16 +00:00
me["FPLN"].hide();
me["DIRTO_TMPY_group"].hide();
2019-10-14 16:48:35 +00:00
me["INITA"].hide();
me["IRSINIT"].hide();
2019-10-14 16:48:35 +00:00
me["INITB"].hide();
me["FUELPRED"].show();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
2019-10-14 16:48:35 +00:00
me["PERFTO"].hide();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("FUEL PRED");
me["Simple_Title"].setColor(WHITE);
2019-10-14 16:48:35 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].show();
me["ArrowRight"].show();
2019-10-14 16:48:35 +00:00
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, -1, 1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, -1);
showCenter(me,1, 1, 1, -1, 1, -1);
me["Simple_C3B"].show();
me["Simple_C4B"].hide();
showCenterS(me,1, -1, -1, -1, -1, -1);
showRight(me,1, 1, -1, 1, 1, 1);
showRightS(me,1, -1, 1, 1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
2019-10-14 16:48:35 +00:00
me.fontSizeLeft(normal, normal, small, small, small, small);
me.fontSizeCenter(small, small, normal, small, small, small);
2020-11-22 19:57:38 +00:00
me.fontSizeRight(small, small, normal, small, small, small);
me["Simple_C3B"].setFontSize(small);
2019-10-14 16:48:35 +00:00
me.colorLeft("grn", "grn", "wht", "wht", "wht", "wht");
2019-10-14 16:48:35 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2020-11-22 19:57:38 +00:00
me.colorCenter("wht", "wht", "blu", "grn", "blu", "wht");
me["Simple_C3B"].setColor(BLUE);
2019-10-14 16:48:35 +00:00
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
2020-11-22 19:57:38 +00:00
me.colorRight("wht", "wht", "blu", "wht", "wht", "wht");
2019-10-14 16:48:35 +00:00
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
pageSwitch[i].setBoolValue(1);
}
if (!engRdy.getBoolValue() or !fmgc.FMGCInternal.toFromSet) {
2020-11-22 19:57:38 +00:00
me["Simple_L1"].setText("NONE");
2019-10-14 16:48:35 +00:00
} else {
2020-07-10 19:28:17 +00:00
me["Simple_L1"].setText(fmgc.FMGCInternal.arrApt);
2019-10-14 16:48:35 +00:00
}
if (!engRdy.getBoolValue() or !fmgc.FMGCInternal.altAirportSet) {
2020-11-22 19:57:38 +00:00
me["Simple_L2"].setText("NONE");
2020-03-24 12:33:40 +00:00
} else {
2020-07-10 00:25:25 +00:00
me["Simple_L2"].setText(fmgc.FMGCInternal.altAirport);
2020-03-24 12:33:40 +00:00
}
2019-10-14 16:48:35 +00:00
me["Simple_L1S"].setText("AT");
me["Simple_L3S"].setText("RTE RSV/%");
2020-11-22 19:57:38 +00:00
me["Simple_L4S"].setText("ALTN /TIME");
2019-10-14 16:48:35 +00:00
me["Simple_L5S"].setText("FINAL/TIME");
me["Simple_L6S"].setText("MIN DEST FOB");
2019-10-14 16:48:35 +00:00
me["Simple_C1S"].setText("UTC");
me["Simple_C1"].setText("----");
me["Simple_C2"].setText("----");
2020-11-22 19:57:38 +00:00
me["Simple_R1"].setText("---.-");
me["Simple_R2"].setText("---.-");
2019-10-14 16:48:35 +00:00
me["Simple_R1S"].setText("EFOB");
2020-11-22 19:57:38 +00:00
me["Simple_R4S"].setText("FOB ");
me["Simple_R5S"].setText(" GW/ CG");
me["Simple_R6S"].setText("EXTRA/TIME");
if (!fmgc.FMGCInternal.fuelRequest or !fmgc.FMGCInternal.blockConfirmed or fmgc.FMGCInternal.fuelCalculating) {
me["Simple_L3"].setText("---.-");
if (fmgc.FMGCInternal.rteRsvSet) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (fmgc.FMGCInternal.rtePercentSet) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
2020-05-02 01:21:57 +00:00
me["Simple_L4"].setText("---.-/----");
me["Simple_C4"].hide();
me["Simple_L5"].setText("---.-");
if (fmgc.FMGCInternal.finalFuelSet or fmgc.FMGCInternal.finalTimeSet) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
2020-05-02 01:21:57 +00:00
me["Simple_L6"].setText("---.-");
2020-05-02 01:21:57 +00:00
me["Simple_R4"].setText("---.-/FF+FQ");
2020-11-22 19:57:38 +00:00
me["Simple_R5"].setText("---.-/ --.-");
2020-05-02 01:21:57 +00:00
me["Simple_R6"].setText("---.-/----");
me.colorLeft("ack", "ack", "wht", "wht", "wht", "wht");
me.colorRight("ack", "ack", "ack", "wht", "wht", "wht");
} else {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L3"].setText(sprintf("%.1f", fmgc.FMGCInternal.rteRsv * LBS2KGS));
} else {
me["Simple_L3"].setText(sprintf("%.1f", fmgc.FMGCInternal.rteRsv));
}
if (fmgc.FMGCInternal.rteRsvSet) {
if (num(fmgc.FMGCInternal.rteRsv) > 9.9 and num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rteRsv) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
} else if (fmgc.FMGCInternal.rtePercentSet) {
if (num(fmgc.FMGCInternal.rteRsv) > 9.9 and num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rteRsv) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
} else {
if (num(fmgc.FMGCInternal.rteRsv) > 9.9 and num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rteRsv) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else if (num(fmgc.FMGCInternal.rtePercent) > 9.9) {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
} else {
me["Simple_C3B"].setText(sprintf("/%.1f ", fmgc.FMGCInternal.rtePercent));
}
}
2020-07-31 12:20:33 +00:00
if (fmgc.FMGCInternal.altAirportSet) {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L4"].setText(sprintf("%.1f", fmgc.FMGCInternal.altFuel * LBS2KGS));
} else {
me["Simple_L4"].setText(sprintf("%.1f", fmgc.FMGCInternal.altFuel));
}
me["Simple_L4"].setColor(BLUE);
me["Simple_C4"].show();
if (fmgc.FMGCInternal.altFuelSet) {
if (num(fmgc.FMGCInternal.altFuel) > 9.9) {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
} else {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
}
} else {
if (num(fmgc.FMGCInternal.altFuel) > 9.9) {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
} else {
me["Simple_C4"].setText(sprintf("/%s ", fmgc.FMGCInternal.altTime));
}
}
} else {
me["Simple_L4"].setText("---.-/----");
me["Simple_L4"].setColor(WHITE);
me["Simple_C4"].hide();
}
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L5"].setText(sprintf("%.1f", fmgc.FMGCInternal.finalFuel * LBS2KGS));
} else {
me["Simple_L5"].setText(sprintf("%.1f", fmgc.FMGCInternal.finalFuel));
}
if (fmgc.FMGCInternal.finalTimeSet and fmgc.FMGCInternal.finalFuelSet) {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
} else if (fmgc.FMGCInternal.finalTimeSet) {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
} else if (fmgc.FMGCInternal.finalFuelSet) {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
} else {
if (num(fmgc.FMGCInternal.finalFuel) > 9.9) {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
} else {
me["Simple_C5"].setText(sprintf("/%s ", fmgc.FMGCInternal.finalTime));
}
}
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_L6"].setText(sprintf("%.1f", fmgc.FMGCInternal.minDestFob * LBS2KGS));
me["Simple_R4"].setText(sprintf("%4.1f/" ~ fmgc.FMGCInternal.fffqSensor, fmgc.FMGCInternal.fob * LBS2KGS));
me["Simple_R5"].setText(sprintf("%4.1f/", fmgc.FMGCInternal.fuelPredGw * LBS2KGS) ~ sprintf("%4.1f", fmgc.FMGCInternal.cg));
me["Simple_R6"].setText(sprintf("%4.1f/" ~ fmgc.FMGCInternal.extraTime, fmgc.FMGCInternal.extraFuel * LBS2KGS));
} else {
me["Simple_L6"].setText(sprintf("%.1f", fmgc.FMGCInternal.minDestFob));
me["Simple_R4"].setText(sprintf("%4.1f/" ~ fmgc.FMGCInternal.fffqSensor, fmgc.FMGCInternal.fob));
me["Simple_R5"].setText(sprintf("%4.1f/", fmgc.FMGCInternal.fuelPredGw) ~ sprintf("%4.1f", fmgc.FMGCInternal.cg));
me["Simple_R6"].setText(sprintf("%4.1f/" ~ fmgc.FMGCInternal.extraTime, fmgc.FMGCInternal.extraFuel));
}
2020-03-28 20:40:02 +00:00
me.colorLeft("ack", "ack", "blu", "ack", "blu", "blu");
2020-03-28 20:40:02 +00:00
me.colorRight("ack", "ack", "blu", "grn", "grn", "grn");
}
me["Simple_R3S"].setText("ZFW/ZFWCG");
me["Simple_R3"].setText(sprintf("%3.1f", fmgc.FMGCInternal.zfwcg));
me["Simple_R3"].show();
me["FUELPRED_ZFWCG"].hide();
me["FUELPRED_ZFWCG_S"].show();
if (fmgc.FMGCInternal.zfwcgSet) {
me["Simple_R3"].setFontSize(normal);
} else {
me["Simple_R3"].setFontSize(small);
}
if (fmgc.FMGCInternal.zfwSet) {
if (fmgc.FMGCInternal.zfw < 100) {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C3"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw * LBS2KGS));
} else {
me["Simple_C3"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw));
}
} else {
2020-09-04 19:56:22 +00:00
if (acconfig_weight_kgs.getValue() == 1) {
me["Simple_C3"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw * LBS2KGS));
} else {
me["Simple_C3"].setText(" " ~ sprintf("%3.1f", fmgc.FMGCInternal.zfw));
}
}
me["Simple_C3"].show();
me["FUELPRED_ZFW"].hide();
} else {
me["Simple_C3"].hide();
me["FUELPRED_ZFW"].show();
}
if (fmgc.FMGCInternal.rteRsvSet) {
2020-05-02 01:21:57 +00:00
me["Simple_L3"].setFontSize(normal);
me["Simple_C3B"].setFontSize(small);
} else if (fmgc.FMGCInternal.rtePercentSet) {
me["Simple_L3"].setFontSize(small);
me["Simple_C3B"].setFontSize(normal);
2020-05-02 01:21:57 +00:00
} else {
me["Simple_L3"].setFontSize(small);
me["Simple_C3B"].setFontSize(small);
2020-05-02 01:21:57 +00:00
}
if (fmgc.FMGCInternal.altFuelSet and fmgc.FMGCInternal.crzSet == 1) {
2020-05-02 01:21:57 +00:00
me["Simple_L4"].setFontSize(normal);
} else {
me["Simple_L4"].setFontSize(small);
}
if (fmgc.FMGCInternal.finalFuelSet and fmgc.FMGCInternal.finalTimeSet) {
me["Simple_L5"].setFontSize(normal);
me["Simple_C5"].setFontSize(normal);
} else if (fmgc.FMGCInternal.finalFuelSet) {
2020-05-02 01:21:57 +00:00
me["Simple_L5"].setFontSize(normal);
me["Simple_C5"].setFontSize(small);
} else if (fmgc.FMGCInternal.finalTimeSet) {
me["Simple_L5"].setFontSize(small);
me["Simple_C5"].setFontSize(normal);
2020-05-02 01:21:57 +00:00
} else {
me["Simple_L5"].setFontSize(small);
me["Simple_C5"].setFontSize(small);
2020-05-02 01:21:57 +00:00
}
if (fmgc.FMGCInternal.minDestFobSet) {
2020-05-02 01:21:57 +00:00
me["Simple_L6"].setFontSize(normal);
} else {
me["Simple_L6"].setFontSize(small);
}
} else if (page == "PROGPREF" or page == "PROGTO" or page == "PROGCLB" or page == "PROGCRZ" or page == "PROGDES" or page == "PROGAPPR" or page == "PROGDONE") {
2021-01-20 19:32:21 +00:00
if (fmgc.FMGCInternal.phase == 0) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGPREF");
page = "PROGPREF";
} else if (fmgc.FMGCInternal.phase == 1) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGTO");
2020-03-30 04:06:26 +00:00
page = "PROGTO";
2020-07-10 21:15:37 +00:00
} else if (fmgc.FMGCInternal.phase == 2) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGCLB");
2020-03-30 04:06:26 +00:00
page = "PROGCLB";
2020-07-10 21:15:37 +00:00
} else if (fmgc.FMGCInternal.phase == 3) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGCRZ");
2020-03-30 04:06:26 +00:00
page = "PROGCRZ";
} else if (fmgc.FMGCInternal.phase == 4) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGDES");
2020-03-30 04:06:26 +00:00
page = "PROGDES";
} else if (fmgc.FMGCInternal.phase == 5 or fmgc.FMGCInternal.phase == 6) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGAPPR");
page = "PROGAPPR";
} else if (fmgc.FMGCInternal.phase == 7) {
setprop("/MCDU[" ~ i ~ "]/page", "PROGDONE");
page = "PROGDONE";
}
2020-03-30 04:06:26 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].show();
2020-04-12 22:08:16 +00:00
me["FPLN"].hide();
me["DIRTO_TMPY_group"].hide();
me["INITA"].hide();
me["IRSINIT"].hide();
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].show();
me["PERFTO"].hide();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2021-01-20 19:32:21 +00:00
var colortext = ["",""];
if (page == "PROGPREF") {
colortext[0] = "PREFLIGHT";
} else if (page == "PROGTO") {
colortext[0] = "TAKE OFF";
} else if (page == "PROGCLB") {
colortext[0] = "CLIMB";
} else if (page == "PROGCRZ") {
colortext[0] = "CRUISE";
} else if (page == "PROGDES") {
colortext[0] = "DESCENT";
} else if (page == "PROGAPPR") {
colortext[0] = "APPROACH";
} else if (page == "PROGDONE") {
colortext[0] = "DONE";
}
colortext[1] = (fmgc.FMGCInternal.flightNumSet and page != "PROGDONE") ? fmgc.FMGCInternal.flightNum : ""; #CHECKME - condition useful?
me["Simple_Title"].setText(sprintf(" %-21s",colortext[0]));
me["Simple_Title2"].setText(sprintf("%12s %-11s","",colortext[1]));
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setColor((page != "PROGDONE") ? GREEN : WHITE);
2021-01-20 19:32:21 +00:00
me["Simple_Title2"].show();
me["Simple_Title2"].setColor(WHITE);
#me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, -1, 1, 1, 1, 1);
showLeftArrow(me,-1, 1, -1, -1, 1, -1);
showRight(me,1, -1, -1, 1, 1, 1);
showRightS(me,1, -1, -1, -1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
showCenter(me,1, -1, -1, 1, -1, 1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, -1, -1, -1, -1, 1);
me.fontSizeLeft(normal, normal, small, small, normal, small);
me.fontSizeLeftS(small, small, small, small, small, small);
me.fontSizeRight(normal, small, small, small, normal, small);
me.fontSizeRightS(small, small, small, small, small, small);
2021-01-22 23:19:21 +00:00
me.fontSizeCenter(small, normal, small, small, small, normal);
me.fontSizeCenterS(normal, small, small, small, small, small);
2021-01-20 19:32:21 +00:00
me["Simple_C1S"].setFontSize(small);
me.colorLeft("blu", "wht", "blu", "wht", "wht", "blu");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2021-01-22 23:19:21 +00:00
me.colorRight("mag", "wht", "blu", "blu", "grn", "grn");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
2021-01-22 23:19:21 +00:00
me.colorCenter("grn", "grn", "wht", "wht", "wht", "grn");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
if (page == "PROGCRZ") {
showLeftS(me,0, 0, -1, 0, 0, 0);
showCenterS(me,0, 0, 1, 0, 0, 0);
#showRight(me,0, 0, 1, 0, 0, 0); #Add when implement cruise phase
} else if (page == "PROGDES" or page == "PROGAPPR") {
showCenter(me,0, 1, 0, 0, 0, 0);
showRight(me,0, 1, 0, 0, 0, 0);
#me["Simple_C2"].setFontSize(normal);
2021-01-22 23:19:21 +00:00
#me["Simple_R2"].setFontSize(normal);
}
#else if (page == "PROGAPPR") { # A/C without GPS
# me["Simple_L5S"].setFontSize(small);
# me["Simple_L5S"].setColor(GREEN);
# me["Simple_L5"].setFontSize(small);
# me["Simple_L5"].setColor(GREEN);
# me["Simple_R5S"].setFontSize(small);
# me["Simple_R5S"].setColor(WHITE);
# me["Simple_R5S"].show();
# me["Simple_R5"].setFontSize(small);
# me["Simple_R5"].setColor(WHITE);
# showLeftArrow(me,-1, 1, -1, -1, -1, -1);
#}
pageSwitch[i].setBoolValue(1);
}
2020-07-10 00:09:19 +00:00
if (fmgc.FMGCInternal.crzSet and page != "PROGDES") {
if (getprop("/it-autoflight/input/alt") > fmgc.FMGCInternal.crzProg * 100) {
me["Simple_L1"].setText(sprintf("%s", "FL" ~ getprop("/it-autoflight/input/alt") / 100));
} else {
2020-07-10 00:09:19 +00:00
me["Simple_L1"].setText(sprintf("%s", "FL" ~ fmgc.FMGCInternal.crzProg));
}
} else {
me["Simple_L1"].setText("-----");
}
me["Simple_L2"].setText(" REPORT");
if (page == "PROGCRZ") {
me["Simple_L3"].setText(" -----.--/-----.--");
#me["Simple_R3"].setText("AGN *"); #Add when implement cruise phase
me["PROG_UPDATE"].hide();
} else {
me["PROG_UPDATE"].show();
me["Simple_L3"].setText(" [ ]");
}
me["Simple_L5"].setText(" GPS");
me["Simple_L6"].setText("----");
me["Simple_L1S"].setText(" CRZ");
me["Simple_L3S"].setText(" UPDATE AT");
me["Simple_L4S"].setText(" BRG /DIST");
me["Simple_L5S"].setText(" PREDICTIVE");
me["Simple_L6S"].setText("REQUIRED");
if (page != "PROGDONE") {
me["Simple_R1"].setText("FL398 ");
} else {
2021-01-25 21:34:44 +00:00
me["Simple_L1"].setText("_____");
me["Simple_R1"].setText("----- ");
me["Simple_L1"].setColor(AMBER);
me["Simple_C1"].setColor(WHITE);
me["Simple_R1"].setColor(WHITE);
me["Simple_R5"].hide();
}
if (page == "PROGDES" or page == "PROGAPPR") {
var vdev = 750; #CHECKME i dunno the meaning, but I found this value in the source
var vdev_sign = (vdev>=0) ? "+" : "-";
2021-01-22 23:19:21 +00:00
me["Simple_C2"].setText(sprintf("%17s%4d ",vdev_sign,abs(vdev)));
me["Simple_R2"].setText(sprintf("%30s","VDEV= FT "));
}
2021-01-28 18:57:20 +00:00
if (mcdu.bearingDistances[i].displayID != nil) {
me["Simple_R4"].setFontSize(normal);
me["Simple_R4"].setText(mcdu.bearingDistances[i].displayID);
} else {
me["Simple_R4"].setFontSize(small);
me["Simple_R4"].setText("[ ]");
}
if (mcdu.bearingDistances[i].selectedPoint != nil) {
me["Simple_L4"].setColor(GREEN);
me["Simple_L4"].setText(sprintf("%3.0f° /%4.1f",mcdu.bearingDistances[i].bearing,mcdu.bearingDistances[i].distance));
2021-01-28 18:57:20 +00:00
} else {
me["Simple_L4"].setColor(WHITE);
me["Simple_L4"].setText(" ---° /----.-");
2021-01-28 18:57:20 +00:00
}
me["Simple_R5"].setText("GPS PRIMARY");
me["Simple_R6"].setText("----");
me["Simple_R1S"].setText("REC MAX ");
me["Simple_R6S"].setText("ESTIMATED");
me["Simple_C1"].setText("-----");
me["Simple_C1S"].setText("OPT");
me["Simple_C3S"].setText("CONFIRM UPDATE AT");
2021-01-28 18:57:20 +00:00
me["Simple_C4"].setText(" TO");
me["Simple_C6S"].setText("ACCUR");
2021-01-26 22:32:13 +00:00
if (systems.ADIRS.Operating.aligned[0].getValue() or systems.ADIRS.Operating.aligned[1].getValue()) me["Simple_C6"].setText("HIGH");
else me["Simple_C6"].setText("LOW");
#if (page == "PROGAPPR") { # A/C without GPS
# me["Simple_L5"].setText(sprintf(" DIR DIST TO DEST=%6d",0));
# me["Simple_L5S"].setText(sprintf("REQD DIST TO LAND=%6d",0));
# me["Simple_R5"].setText("MN");
# me["Simple_R5S"].setText("MN");
#}
2020-04-12 22:44:02 +00:00
} else if (page == "PERFTO") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].show();
me["FPLN"].hide();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].hide();
2019-10-14 16:48:35 +00:00
me["INITA"].hide();
me["IRSINIT"].hide();
2019-10-14 16:48:35 +00:00
me["INITB"].hide();
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
me["PROG"].hide();
2019-10-14 16:48:35 +00:00
me["PERFTO"].show();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me["Simple_Title"].setText("TAKE OFF");
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,-1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, 1, 1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, 1, 1, -1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, 1, 1, -1, -1, -1);
2019-10-14 16:48:35 +00:00
me.fontSizeLeft(normal, normal, normal, normal, 0, normal);
me.fontSizeRight(normal, small, 0, 0, 0, normal);
me.fontSizeCenter(small, small, small, 0, 0, 0);
me.fontSizeCenterS(small, small, small, small, small, small);
2019-10-14 16:48:35 +00:00
me.colorLeft("blu", "blu", "blu", "blu", "blu", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2021-01-20 20:50:32 +00:00
me.colorRight("grn", "blu", "blu", "blu", "blu", "wht");
2019-10-14 16:48:35 +00:00
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("grn", "grn", "grn", "wht", "wht", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
2021-01-20 20:50:32 +00:00
me["Simple_Title"].setText("TAKE OFF");
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
me["Simple_L4"].setText(sprintf("%3.0f", fmgc.FMGCInternal.transAlt));
me["Simple_L5"].setText(" " ~ sprintf("%3.0f", clbReducFt.getValue()) ~ sprintf("/%3.0f", reducFt.getValue()));
me["Simple_L6"].setText(" TO DATA");
me["Simple_L1S"].setText(" V1");
me["Simple_L2S"].setText(" VR");
me["Simple_L3S"].setText(" V2");
me["Simple_L4S"].setText("TRANS ALT");
me["Simple_L5S"].setText("THR RED/ACC");
me["Simple_L6S"].setText(" UPLINK");
me["Simple_R2"].setText("[M][ ] ");
me["Simple_R5"].setText(sprintf("%3.0f", engOutAcc.getValue()));
me["Simple_R6"].setText("PHASE ");
me["Simple_R1S"].setText("RWY ");
me["Simple_R2S"].setText("TO SHIFT ");
me["Simple_R3S"].setText("FLAPS/THS");
me["Simple_R4S"].setText("FLEX TO TEMP");
me["Simple_R5S"].setText("ENG OUT ACC");
me["Simple_R6S"].setText("NEXT ");
2020-07-10 20:28:53 +00:00
if (fmgc.FMGCInternal.transAltSet) {
me["Simple_L4"].setFontSize(normal);
} else {
me["Simple_L4"].setFontSize(small);
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 0 or fmgc.FMGCInternal.phase == 7) {
me["Simple_L6_Arrow"].show();
me["Simple_L6"].show();
me["Simple_L6S"].show();
} else {
me["Simple_L6_Arrow"].hide();
me["Simple_L6"].hide();
me["Simple_L6S"].hide();
}
2021-01-28 11:14:03 +00:00
if (fmgc.FMGCInternal.phase == 1) { # GREEN title and not modifiable on TO phase
me["Simple_Title"].setColor(GREEN);
2021-01-20 20:50:32 +00:00
me.colorLeft("grn", "grn", "grn", "blu", "grn", "wht");
me.colorRight("grn", "blu", "grn", "grn", "grn", "wht");
2021-01-22 21:14:22 +00:00
} else {
me["Simple_Title"].setColor(WHITE);
2021-01-20 20:50:32 +00:00
me.colorLeft("blu", "blu", "blu", "blu", "blu", "wht");
me.colorRight("grn", "blu", "blu", "blu", "blu", "wht");
2020-03-28 20:40:02 +00:00
}
2020-04-20 02:32:06 +00:00
if (fmgc.flightPlanController.flightplans[2].departure_runway != nil) {
2021-01-20 20:50:32 +00:00
me["Simple_R1"].setText(fmgc.flightPlanController.flightplans[2].departure_runway.id ~ " ");
me["Simple_R1"].show();
2020-04-20 02:32:06 +00:00
} else {
2021-01-20 20:50:32 +00:00
me["Simple_R1"].hide();
2020-04-20 02:32:06 +00:00
}
2021-01-20 20:50:32 +00:00
2020-04-20 02:32:06 +00:00
2020-07-09 22:59:11 +00:00
if (fmgc.FMGCInternal.v1set) {
2019-10-14 16:48:35 +00:00
me["PERFTO_V1"].hide();
2020-07-09 22:59:11 +00:00
me["Simple_L1"].setText(sprintf("%3.0f", fmgc.FMGCInternal.v1));
2019-10-14 16:48:35 +00:00
me["Simple_L1"].show();
} else {
me["PERFTO_V1"].show();
me["Simple_L1"].hide();
}
2020-07-09 22:59:11 +00:00
if (fmgc.FMGCInternal.vrset) {
2019-10-14 16:48:35 +00:00
me["PERFTO_VR"].hide();
2020-07-09 22:59:11 +00:00
me["Simple_L2"].setText(sprintf("%3.0f", fmgc.FMGCInternal.vr));
2019-10-14 16:48:35 +00:00
me["Simple_L2"].show();
} else {
me["PERFTO_VR"].show();
me["Simple_L2"].hide();
}
2020-07-09 22:59:11 +00:00
if (fmgc.FMGCInternal.v2set) {
2019-10-14 16:48:35 +00:00
me["PERFTO_V2"].hide();
2020-07-09 22:59:11 +00:00
me["Simple_L3"].setText(sprintf("%3.0f", fmgc.FMGCInternal.v2));
2019-10-14 16:48:35 +00:00
me["Simple_L3"].show();
} else {
me["PERFTO_V2"].show();
me["Simple_L3"].hide();
}
2020-07-09 22:59:11 +00:00
2019-10-14 16:48:35 +00:00
if (thrAccSet.getValue() == 1) {
me["Simple_L5"].setFontSize(normal);
} else {
me["Simple_L5"].setFontSize(small);
}
2020-04-13 18:21:27 +00:00
if (fmgc.FMGCInternal.toFlapThsSet) {
me["Simple_R3"].setFontSize(normal);
if (fmgc.FMGCInternal.toThs) {
me["Simple_R3"].setText(sprintf("%s", fmgc.FMGCInternal.toFlap) ~ sprintf("/UP%2.1f", fmgc.FMGCInternal.toThs));
} else {
me["Simple_R3"].setText(sprintf("%s", fmgc.FMGCInternal.toFlap) ~ sprintf("/DN%2.1f", -1 * fmgc.FMGCInternal.toThs));
}
2019-10-14 16:48:35 +00:00
} else {
me["Simple_R3"].setFontSize(small);
me["Simple_R3"].setText("[ ]/[ ]");
2019-10-14 16:48:35 +00:00
}
if (flexSet.getValue() == 1) {
me["Simple_R4"].setFontSize(normal);
me["Simple_R4"].setText(sprintf("%3.0f°", flex.getValue()));
2019-10-14 16:48:35 +00:00
} else {
me["Simple_R4"].setFontSize(small);
me["Simple_R4"].setText("[ ]°");
2019-10-14 16:48:35 +00:00
}
if (engOutAccSet.getValue() == 1) {
me["Simple_R5"].setFontSize(normal);
} else {
me["Simple_R5"].setFontSize(small);
}
2020-08-01 20:44:10 +00:00
if ((fmgc.FMGCInternal.zfwSet and fmgc.FMGCInternal.blockSet) or fmgc.FMGCInternal.phase == 1) {
me["Simple_C1"].setText(sprintf("%3.0f", fmgc.FMGCInternal.flap2_to));
me["Simple_C2"].setText(sprintf("%3.0f", fmgc.FMGCInternal.slat_to));
me["Simple_C3"].setText(sprintf("%3.0f", fmgc.FMGCInternal.clean_to));
} else {
me["Simple_C1"].setText(" ---");
me["Simple_C2"].setText(" ---");
me["Simple_C3"].setText(" ---");
}
me["Simple_C1S"].setText("FLP RETR");
me["Simple_C2S"].setText("SLT RETR");
me["Simple_C3S"].setText(" CLEAN");
2020-04-12 22:44:02 +00:00
} else if (page == "PERFCLB") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("CLB");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, 1, 1);
showRight(me,-1, 1, 1, 1, -1, 1);
showRightS(me,-1, -1, 1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,-1, 1, 1, 1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,-1, -1, 1, -1, 1, -1);
me.fontSizeLeft(normal, normal, small, small, normal, normal);
me.fontSizeLeftS(0, 0, 0, 0, small, 0);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.fontSizeCenterS(small, small, small, small, small, small);
me.fontSizeCenter(normal, small, normal, normal, small, normal);
me.colorLeft("grn", "blu", "grn", "blu", "wht", "blu");
me.colorLeftS("wht", "wht", "wht", "wht", "grn", "blu");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "blu", "grn", "grn", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "grn", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("wht", "wht", "grn", "grn", "wht", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "grn", "wht");
pageSwitch[i].setBoolValue(1);
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 2) {
me["Simple_Title"].setColor(GREEN);
showLeft(me,0, 0, 0, 0, 1, 0);
showLeftS(me,0, 0, 0, 0, 1, 0);
showLeftArrow(me,0, 0, 0, 0, 1, 1);
showRight(me,0, 0, 0, 1, 0, 0);
showRightS(me,0, 0, 0, 0, 1, 0);
showCenterS(me,0, 0, 0, 0, 1, 0);
if (managedSpeed.getValue() == 1) {
showLeft(me,0, 0, 0, -1, 0, 0);
showLeftS(me,0, 0, 0, -1, 0, 0);
} else {
me["Simple_L4S"].setText(" SELECTED");
showLeft(me,0, 0, 0, 1, 0, 0);
showLeftS(me,0, 0, 0, 1, 0, 0);
}
if (activate_once.getValue() == 0 and activate_twice.getValue() == 0) {
me["Simple_L6S"].setText(" ACTIVATE");
me["Simple_L6"].setText(" APPR PHASE");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "blu");
2020-04-12 22:44:02 +00:00
} else if (activate_once.getValue() == 1 and activate_twice.getValue() == 0) {
me["Simple_L6S"].setText(" CONFIRM");
me["Simple_L6"].setText(" APPR PHASE");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "amb");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "amb");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "amb");
2020-07-10 21:15:37 +00:00
} else if (fmgc.FMGCInternal.phase == 5) {
me["Simple_L6S"].setText("");
me["Simple_L6"].setText("");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "blu");
showLeftArrow(me,0, 0, 0, 0, 0, -1);
} else {
setprop("/FMGC/internal/activate-once", 0);
setprop("/FMGC/internal/activate-twice", 0);
}
} else {
me["Simple_Title"].setColor(WHITE);
showLeft(me,0, 0, 0, 0, -1, 0);
showLeftS(me,0, 0, 0, 0, -1, 0);
showLeftArrow(me,0, 0, 0, 0, -1, 0);
showRight(me,0, 0, 0, -1, 0, 0);
showRightS(me,0, 0, 0, 0, -1, 0);
showCenterS(me,0, 0, 0, 0, -1, 0);
me.colorLeft("ack", "ack", "ack", "ack", "ack", "wht");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "wht");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "wht");
me["Simple_L4S"].setText(" PRESEL");
me["Simple_L6S"].setText(" PREV");
me["Simple_L6"].setText(" PHASE");
}
me["Simple_L1S"].setText("ACT MODE");
if (managedSpeed.getValue() == 1) {
me["Simple_L1"].setText("MANAGED");
me["Simple_L4"].setText(" [ ]");
} else {
me["Simple_L1"].setText("SELECTED");
if (fmgc.Input.ktsMach.getValue()) {
2020-07-09 01:12:02 +00:00
me["Simple_L4"].setText(sprintf(" %3.3f", getprop("/it-autoflight/input/mach")));
} else {
2020-07-09 01:12:02 +00:00
me["Simple_L4"].setText(sprintf(" %s", int(getprop("/it-autoflight/input/kts"))));
}
}
me["Simple_L2S"].setText(" CI");
2020-07-10 19:54:13 +00:00
if (fmgc.FMGCInternal.costIndexSet) {
me["Simple_L2"].setColor(BLUE);
2020-07-10 19:54:13 +00:00
me["Simple_L2"].setText(sprintf(" %s", fmgc.FMGCInternal.costIndex));
} else {
me["Simple_L2"].setColor(WHITE);
me["Simple_L2"].setText(" ---");
}
me["Simple_L3S"].setText(" MANAGED");
if (fmgc.Input.ktsMach.getValue()) {
me["Simple_L3"].setText(sprintf(" %3.3f", fmgc.FMGCInternal.mngSpd));
2020-04-12 18:39:23 +00:00
} else {
me["Simple_L3"].setText(sprintf(" %s", int(fmgc.FMGCInternal.mngSpd)));
2020-04-12 18:39:23 +00:00
}
me["Simple_L5S"].setText(" EXPEDITE");
me["Simple_L5"].setText(" T/O PHASE");
me["Simple_C2"].setText(" PRED TO");
me["Simple_R2"].setText(sprintf("FL%s", getprop("/it-autoflight/input/alt") / 100));
me["Simple_R3S"].setText("DIST");
me["Simple_R3"].setText("---");
me["Simple_R4"].setText("---");
me["Simple_R5S"].setText("---");
me["Simple_C3S"].setText("UTC");
me["Simple_C3"].setText("----");
me["Simple_C4"].setText("----");
me["Simple_C5S"].setText("----");
me["Simple_R6S"].setText("NEXT ");
me["Simple_R6"].setText("PHASE ");
2020-04-12 22:44:02 +00:00
} else if (page == "PERFCRZ") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("CRZ");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, 1, 1, -1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, 1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, -1, -1, -1, 1, 1);
showRightS(me,1, -1, -1, -1, 1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, -1, -1, -1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, -1, -1, -1, -1, -1);
me.fontSizeLeft(normal, normal, small, small, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, small, normal);
me.fontSizeCenterS(small, small, small, small, small, small);
me.fontSizeCenter(normal, small, normal, normal, small, normal);
me.colorLeft("grn", "blu", "grn", "blu", "wht", "blu");
me.colorLeftS("wht", "wht", "wht", "wht", "grn", "blu");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "blu", "grn", "grn", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("wht", "wht", "grn", "grn", "blu", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "grn", "wht");
pageSwitch[i].setBoolValue(1);
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 3) {
me["Simple_Title"].setColor(GREEN);
if (managedSpeed.getValue() == 1) {
showLeft(me,0, 0, 0, -1, 0, 0);
showLeftS(me,0, 0, 0, -1, 0, 0);
} else {
me["Simple_L4S"].setText(" SELECTED");
showLeft(me,0, 0, 0, 1, 0, 0);
showLeftS(me,0, 0, 0, 1, 0, 0);
}
if (activate_once.getValue() == 0 and activate_twice.getValue() == 0) {
me["Simple_L6S"].setText(" ACTIVATE");
me["Simple_L6"].setText(" APPR PHASE");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "blu");
2020-04-12 22:44:02 +00:00
} else if (activate_once.getValue() == 1 and activate_twice.getValue() == 0) {
me["Simple_L6S"].setText(" CONFIRM");
me["Simple_L6"].setText(" APPR PHASE");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "amb");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "amb");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "amb");
2020-07-10 21:15:37 +00:00
} else if (fmgc.FMGCInternal.phase == 5) {
me["Simple_L6S"].setText("");
me["Simple_L6"].setText("");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "blu");
showLeftArrow(me,0, 0, 0, 0, 0, -1);
} else {
setprop("/FMGC/internal/activate-once", 0);
setprop("/FMGC/internal/activate-twice", 0);
}
} else {
me["Simple_Title"].setColor(WHITE);
me.colorLeft("ack", "ack", "ack", "ack", "ack", "wht");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "wht");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "wht");
me["Simple_L4S"].setText(" PRESEL");
me["Simple_L6S"].setText(" PREV");
me["Simple_L6"].setText(" PHASE");
}
me["Simple_L1S"].setText("ACT MODE");
if (managedSpeed.getValue() == 1) {
me["Simple_L1"].setText("MANAGED");
me["Simple_L4"].setText(" [ ]");
} else {
me["Simple_L1"].setText("SELECTED");
if (fmgc.Input.ktsMach.getValue()) {
2020-07-09 01:12:02 +00:00
me["Simple_L4"].setText(sprintf(" %3.3f", getprop("/it-autoflight/input/mach")));
} else {
2020-07-09 01:12:02 +00:00
me["Simple_L4"].setText(sprintf(" %s", int(getprop("/it-autoflight/input/kts"))));
}
}
2020-07-10 19:54:13 +00:00
if (fmgc.FMGCInternal.costIndexSet) {
me["Simple_L2"].setColor(BLUE);
2020-07-10 19:54:13 +00:00
me["Simple_L2"].setText(sprintf(" %s", fmgc.FMGCInternal.costIndex));
} else {
me["Simple_L2"].setColor(WHITE);
me["Simple_L2"].setText(" ---");
}
me["Simple_L1S"].setText("ACT MODE");
me["Simple_L2S"].setText(" CI");
me["Simple_L3S"].setText(" MANAGED");
if (fmgc.Input.ktsMach.getValue()) {
me["Simple_L3"].setText(sprintf(" %3.3f", fmgc.FMGCInternal.mngSpd));
2020-04-12 18:39:23 +00:00
} else {
me["Simple_L3"].setText(sprintf(" %s", int(fmgc.FMGCInternal.mngSpd)));
2020-04-12 18:39:23 +00:00
}
me["Simple_R1S"].setText("DEST EFOB");
me["Simple_R1"].setText("---");
me["Simple_R5S"].setText("DES CABIN RATE");
me["Simple_C5"].setText(" -350");
me["Simple_R5"].setText("FT/MIN");
me["Simple_C1S"].setText("UTC");
me["Simple_C1"].setText("---");
me["Simple_R6S"].setText("NEXT ");
me["Simple_R6"].setText("PHASE ");
2020-04-12 22:44:02 +00:00
} else if (page == "PERFDES") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("DES");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,1, 1, 1, 1, -1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, -1, 1, -1, 1);
showRightS(me,1, -1, 1, -1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, 1, -1, 1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, -1, 1, -1, -1, -1);
me.fontSizeLeft(normal, normal, small, small, small, normal);
me.fontSizeLeftS(0, 0, 0, 0, small, 0);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.fontSizeCenterS(small, small, small, small, small, small);
me.fontSizeCenter(normal, small, normal, normal, small, normal);
me.colorLeft("grn", "blu", "grn", "blu", "grn", "blu");
me.colorLeftS("wht", "wht", "wht", "wht", "grn", "blu");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "blu", "grn", "grn", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "grn", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("wht", "wht", "grn", "grn", "grn", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "grn", "wht");
pageSwitch[i].setBoolValue(1);
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 4) {
me["Simple_Title"].setColor(GREEN);
showLeft(me,0, 0, 0, 0, 1, 0);
showRight(me,0, 1, 0, 1, 0, 0);
showRightS(me,0, 0, 1, 0, 0, 0);
showCenter(me,0, 1, 0, 1, 1, 0);
showCenterS(me,0, 0, 1, 0, 0, 0);
if (managedSpeed.getValue() == 1) {
showLeft(me,0, 0, 0, -1, 0, 0);
showLeftS(me,0, 0, 0, -1, 0, 0);
} else {
me["Simple_L4S"].setText(" SELECTED");
showLeft(me,0, 0, 0, 1, 0, 0);
showLeftS(me,0, 0, 0, 1, 0, 0);
}
if (activate_once.getValue() == 0 and activate_twice.getValue() == 0) {
me["Simple_L6S"].setText(" ACTIVATE");
me["Simple_L6"].setText(" APPR PHASE");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "blu");
2020-04-12 22:44:02 +00:00
} else if (activate_once.getValue() == 1 and activate_twice.getValue() == 0) {
me["Simple_L6S"].setText(" CONFIRM");
me["Simple_L6"].setText(" APPR PHASE");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "amb");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "amb");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "amb");
2020-07-10 21:15:37 +00:00
} else if (fmgc.FMGCInternal.phase == 5) {
me["Simple_L6S"].setText("");
me["Simple_L6"].setText("");
me.colorLeft("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "blu");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "blu");
showLeftArrow(me,0, 0, 0, 0, 0, -1);
} else {
setprop("/FMGC/internal/activate-once", 0);
setprop("/FMGC/internal/activate-twice", 0);
}
} else {
me["Simple_Title"].setColor(WHITE);
showLeft(me,0, 0, 0, 0, -1, 0);
showRight(me,0, -1, 0, -1, 0, 0);
showRightS(me,0, 0, -1, 0, 0, 0);
showCenter(me,0, -1, 0, -1, -1, 0);
showCenterS(me,0, 0, -1, 0, 0, 0);
me.colorLeft("ack", "ack", "ack", "ack", "ack", "wht");
me.colorLeftS("ack", "ack", "ack", "ack", "ack", "wht");
me.colorLeftArrow("ack", "ack", "ack", "ack", "ack", "wht");
me["Simple_L4S"].setText(" PRESEL");
me["Simple_L6S"].setText(" PREV");
me["Simple_L6"].setText(" PHASE");
}
me["Simple_L1S"].setText("ACT MODE");
if (managedSpeed.getValue() == 1) {
me["Simple_L1"].setText("MANAGED");
me["Simple_L4"].setText(" [ ]");
} else {
me["Simple_L1"].setText("SELECTED");
if (fmgc.Input.ktsMach.getValue()) {
2020-07-09 01:12:02 +00:00
me["Simple_L4"].setText(sprintf(" %3.3f", getprop("/it-autoflight/input/mach")));
} else {
2020-07-09 01:12:02 +00:00
me["Simple_L4"].setText(sprintf(" %3.0f", getprop("/it-autoflight/input/kts")));
}
}
2020-07-10 19:54:13 +00:00
if (fmgc.FMGCInternal.costIndexSet) {
me["Simple_L2"].setColor(BLUE);
2020-07-10 19:54:13 +00:00
me["Simple_L2"].setText(sprintf(" %2.0f", fmgc.FMGCInternal.costIndex));
} else {
me["Simple_L2"].setColor(WHITE);
me["Simple_L2"].setText(" ---");
}
me["Simple_L1S"].setText("ACT MODE");
me["Simple_L2S"].setText(" CI");
me["Simple_L3S"].setText(" MANAGED");
if (fmgc.Input.ktsMach.getValue()) {
me["Simple_L3"].setText(sprintf(" %3.3f", fmgc.FMGCInternal.mngSpd));
2020-04-12 18:39:23 +00:00
} else {
me["Simple_L3"].setText(sprintf(" %3.0f", fmgc.FMGCInternal.mngSpd));
2020-04-12 18:39:23 +00:00
}
me["Simple_L5"].setText(" EXPEDITE");
me["Simple_R1S"].setText("DEST EFOB");
me["Simple_R1"].setText("---");
me["Simple_C2"].setText(" PRED TO");
me["Simple_R2"].setText(sprintf("FL%3.0f", getprop("/it-autoflight/input/alt") / 100));
me["Simple_R3S"].setText("DIST");
me["Simple_R3"].setText("---");
me["Simple_R4"].setText("---");
me["Simple_R5S"].setText("---");
me["Simple_C1S"].setText("UTC");
me["Simple_C1"].setText("---");
me["Simple_C3S"].setText("UTC");
me["Simple_C3"].setText("----");
me["Simple_C4"].setText("----");
me["Simple_C5"].setText("----");
me["Simple_R6S"].setText("NEXT ");
me["Simple_R6"].setText("PHASE ");
2020-04-12 22:44:02 +00:00
} else if (page == "PERFAPPR") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].show();
me["PERFGA"].hide();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("APPR");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,1, 1, 1, 1, 1, 1);
me["Simple_L0S"].show();
showLeftS(me,1, 1, 1, 1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,1, 1, 1, 1, 1, 1);
showRightS(me,1, 1, 1, 1, -1, 1);
showRightArrow(me,-1, -1, -1, -1, -1, 1);
showCenter(me,1, 1, 1, -1, 1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, 1, 1, -1, 1, -1);
me.fontSizeLeft(small, small, small, small, small, normal);
2020-04-13 18:21:27 +00:00
me.fontSizeRight(normal, small, small, small, normal, normal);
me.fontSizeCenter(small, small, small, 0, small, 0);
me.fontSizeCenterS(small, small, small, small, small, small);
me.colorLeft("blu", "blu", "blu", "blu", "blu", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "blu", "blu", "blu", "blu", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("grn", "grn", "grn", "wht", "grn", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
pageSwitch[i].setBoolValue(1);
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 5) {
me["Simple_Title"].setColor(GREEN);
2020-03-28 20:40:02 +00:00
} else {
me["Simple_Title"].setColor(WHITE);
2020-03-28 20:40:02 +00:00
}
me["Simple_L0S"].setText("DEST");
2022-02-06 18:38:33 +00:00
me["Simple_L1S"].setText(" QNH");
if (dest_qnh.getValue() != -1) {
2020-03-28 20:40:02 +00:00
if (dest_qnh.getValue() < 100) {
me["Simple_L1"].setText(sprintf("%4.2f", dest_qnh.getValue()));
} else {
me["Simple_L1"].setText(sprintf("%4.0f", dest_qnh.getValue()));
}
} else {
2022-02-06 18:38:33 +00:00
me["Simple_L1"].setText("[ ]");
}
me["Simple_L2S"].setText("TEMP");
if (dest_temp.getValue() != -999) {
2021-12-10 14:54:38 +00:00
me["Simple_L2"].setText(sprintf("%3.0f°", dest_temp.getValue()));
} else {
me["Simple_L2"].setText("[ ]°");
}
me["Simple_L3S"].setText("MAG WIND");
2020-07-29 23:24:03 +00:00
if (fmgc.FMGCInternal.destMagSet and fmgc.FMGCInternal.destWindSet) {
2021-12-10 14:54:38 +00:00
me["Simple_L3"].setText(sprintf("%03.0f°", fmgc.FMGCInternal.destMag) ~ sprintf("/%.0f", fmgc.FMGCInternal.destWind));
} else {
2020-07-29 23:24:03 +00:00
if (myDESWIND[i] != nil and myDESWIND[i].returnGRND() != nil) {
var result = myDESWIND[i].returnGRND();
2021-12-10 14:54:38 +00:00
me["Simple_L3"].setText(sprintf("%03.0f°", result[0]) ~ sprintf("/%.0f", result[1]));
2020-07-29 23:24:03 +00:00
} else if (myDESWIND[math.abs(i-1)] != nil and myDESWIND[math.abs(i-1)].returnGRND() != nil) {
var result = myDESWIND[math.abs(i-1)].returnGRND();
2021-12-10 14:54:38 +00:00
me["Simple_L3"].setText(sprintf("%03.0f°", result[0]) ~ sprintf("/%.0f", result[1]));
2020-07-29 23:24:03 +00:00
} else {
me["Simple_L3"].setText("[ ]°/[ ]");
2020-07-29 23:24:03 +00:00
}
}
me["Simple_L4S"].setText("TRANS FL");
me["Simple_L4"].setText("FL" ~ sprintf("%2.0f", (fmgc.FMGCInternal.transAlt / 100)));
2020-07-10 20:28:53 +00:00
if (fmgc.FMGCInternal.transAltSet) {
me["Simple_L4"].setFontSize(normal);
} else {
me["Simple_L4"].setFontSize(small);
}
me["Simple_R1S"].setText("FINAL");
if (fmgc.flightPlanController.flightplans[2].destination_runway != nil) {
me["Simple_R1"].setText(sprintf("%s",fmgc.flightPlanController.flightplans[2].destination_runway.id));
2020-04-20 02:32:06 +00:00
me["Simple_R1"].setColor(GREEN);
2020-04-13 18:21:27 +00:00
} else {
me["Simple_R1"].setText("--- ");
2020-04-20 02:32:06 +00:00
me["Simple_R1"].setColor(WHITE);
2020-04-13 18:21:27 +00:00
}
2022-02-06 18:38:33 +00:00
me["Simple_R2S"].setText("BARO ");
if (getprop("/FMGC/internal/baro") != 99999) {
me["Simple_R2"].setText(sprintf("%.0f", getprop("/FMGC/internal/baro")));
2020-04-18 13:59:05 +00:00
me.fontSizeRight(0, normal, 0, 0, 0, 0);
} else {
2022-02-06 18:38:33 +00:00
me["Simple_R2"].setText("[ ]");
2020-04-18 13:59:05 +00:00
me.fontSizeRight(0, small, 0, 0, 0, 0);
}
2022-02-06 18:38:33 +00:00
me["Simple_R3S"].setText("RADIO ");
if (getprop("/FMGC/internal/radio") != 99999) {
me["Simple_R3"].setText(sprintf("%.0f", getprop("/FMGC/internal/radio")));
2020-04-18 13:59:05 +00:00
me.fontSizeRight(0, 0, normal, 0, 0, 0);
} else if (fmgc.FMGCInternal.radioNo) {
2020-04-18 13:59:05 +00:00
me["Simple_R3"].setText("NO");
me.fontSizeRight(0, 0, normal, 0, 0, 0);
} else {
2022-02-06 18:38:33 +00:00
me["Simple_R3"].setText("[ ]");
2020-04-18 13:59:05 +00:00
me.fontSizeRight(0, 0, small, 0, 0, 0);
}
2022-02-06 18:38:33 +00:00
me["Simple_R4S"].setText("LDG CONF ");
me["Simple_R4"].setText("CONF3 ");
me["Simple_R5"].setText("FULL ");
if (fmgc.FMGCInternal.ldgConfig3 == 1 and fmgc.FMGCInternal.ldgConfigFull == 0) {
2020-03-28 20:40:02 +00:00
me["PERFAPPR_LDG_3"].hide();
me["PERFAPPR_LDG_F"].show();
me.fontSizeRight(0, 0, 0, normal, small, 0);
} else {
2020-03-28 20:40:02 +00:00
me["PERFAPPR_LDG_3"].show();
me["PERFAPPR_LDG_F"].hide();
me.fontSizeRight(0, 0, 0, small, normal, 0);
}
me["Simple_L6S"].setText(" PREV");
me["Simple_L6"].setText(" PHASE");
me["Simple_R6S"].setText("NEXT ");
me["Simple_R6"].setText("PHASE ");
me["Simple_L5S"].setText(" VAPP");
2020-08-01 20:44:10 +00:00
if ((fmgc.FMGCInternal.zfwSet and fmgc.FMGCInternal.blockSet) or fmgc.FMGCInternal.phase == 5) {
me["Simple_C1"].setText(sprintf("%3.0f", fmgc.FMGCInternal.flap2_appr));
me["Simple_C2"].setText(sprintf("%3.0f", fmgc.FMGCInternal.slat_appr));
me["Simple_C3"].setText(sprintf("%3.0f", fmgc.FMGCInternal.clean_appr));
me["Simple_C5"].setText(sprintf("%3.0f", fmgc.FMGCInternal.vls_appr));
me["Simple_L5"].setText(sprintf("%3.0f", fmgc.FMGCInternal.vapp_appr));
if (fmgc.FMGCInternal.vappSpeedSet) {
me.fontSizeLeft(0, 0, 0, 0, normal, 0);
} else {
me.fontSizeLeft(0, 0, 0, 0, small, 0);
}
} else {
me["Simple_C1"].setText(" ---");
me["Simple_C2"].setText(" ---");
me["Simple_C3"].setText(" ---");
me["Simple_C5"].setText(" ---");
if (fmgc.FMGCInternal.vappSpeedSet) {
me["Simple_L5"].setText(sprintf("%3.0f", fmgc.FMGCInternal.vapp_appr));
2020-04-18 13:59:05 +00:00
me.fontSizeLeft(0, 0, 0, 0, normal, 0);
} else {
me["Simple_L5"].setText("[ ] ");
2020-04-18 13:59:05 +00:00
me.fontSizeLeft(0, 0, 0, 0, small, 0);
}
}
me["Simple_C1S"].setText("FLP RETR");
me["Simple_C2S"].setText("SLT RETR");
me["Simple_C3S"].setText(" CLEAN");
2022-02-09 16:30:46 +00:00
me["Simple_C5S"].setText("VLS");
2020-04-12 22:44:02 +00:00
} else if (page == "PERFGA") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].show();
2020-04-12 22:44:02 +00:00
me["Simple_Title"].show();
me["Simple_Title"].setText("GO AROUND");
2020-07-30 18:36:00 +00:00
me.defaultPageNumbers();
showLeft(me,-1, -1, -1, -1, 1, 1);
me["Simple_L0S"].hide();
showLeftS(me,-1, -1, -1, -1, 1, 1);
showLeftArrow(me,-1, -1, -1, -1, -1, 1);
showRight(me,-1, -1, -1, -1, 1, -1);
showRightS(me,-1, -1, -1, -1, 1, -1);
showRightArrow(me,-1, -1, -1, -1, -1, -1);
showCenter(me,1, 1, 1, -1, -1, -1);
me["Simple_C3B"].hide();
me["Simple_C4B"].hide();
showCenterS(me,1, 1, 1, -1, -1, -1);
me.fontSizeLeft(normal, normal, normal, normal, 0, normal);
me.fontSizeRight(normal, small, 0, 0, 0, normal);
me.fontSizeCenter(small, small, small, 0, 0, 0);
me.colorLeft("blu", "blu", "blu", "blu", "blu", "wht");
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRight("wht", "blu", "blu", "blu", "blu", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenter("grn", "grn", "grn", "wht", "wht", "wht");
me.colorCenterS("wht", "wht", "wht", "wht", "wht", "wht");
pageSwitch[i].setBoolValue(1);
}
2020-07-10 21:15:37 +00:00
if (fmgc.FMGCInternal.phase == 6) {
me["Simple_Title"].setColor(GREEN);
2020-03-28 20:40:02 +00:00
} else {
me["Simple_Title"].setColor(WHITE);
2020-03-28 20:40:02 +00:00
}
if (thrAccSet.getValue() == 1) {
me["Simple_L5"].setFontSize(normal);
} else {
me["Simple_L5"].setFontSize(small);
}
if (engOutAccSet.getValue() == 1) {
me["Simple_R5"].setFontSize(normal);
} else {
me["Simple_R5"].setFontSize(small);
}
2020-04-16 10:50:01 +00:00
me["Simple_L5"].setText(sprintf("%3.0f", clbReducFt.getValue()) ~ sprintf("/%3.0f", reducFt.getValue()));
me["Simple_L6"].setText(" PHASE");
me["Simple_L5S"].setText("THR RED/ACC");
me["Simple_L6S"].setText(" PREV");
me["Simple_R5"].setText(sprintf("%3.0f", engOutAcc.getValue()));
me["Simple_R5S"].setText("ENG OUT ACC");
2020-08-01 20:44:10 +00:00
if ((fmgc.FMGCInternal.zfwSet and fmgc.FMGCInternal.blockSet) or fmgc.FMGCInternal.phase == 6) {
me["Simple_C1"].setText(sprintf("%3.0f", fmgc.FMGCInternal.flap2_appr));
me["Simple_C2"].setText(sprintf("%3.0f", fmgc.FMGCInternal.slat_appr));
me["Simple_C3"].setText(sprintf("%3.0f", fmgc.FMGCInternal.clean_appr));
} else {
me["Simple_C1"].setText(" ---");
me["Simple_C2"].setText(" ---");
me["Simple_C3"].setText(" ---");
}
me["Simple_C1S"].setText("FLP RETR");
me["Simple_C2S"].setText("SLT RETR");
me["Simple_C3S"].setText(" CLEAN");
2020-05-31 14:30:33 +00:00
} else if (page == "WINDCLB" or page == "WINDCRZ" or page == "WINDDES" or page == "WINDHIST") {
2020-05-31 14:05:44 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-05-31 14:05:44 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
2020-08-08 17:35:51 +00:00
me["WIND"].show();
2020-05-31 14:05:44 +00:00
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-05-31 14:05:44 +00:00
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
2020-05-31 14:05:44 +00:00
2020-05-31 14:30:33 +00:00
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
2020-05-31 14:05:44 +00:00
2020-05-31 14:30:33 +00:00
if (page == "WINDCLB") {
myWind = myCLBWIND;
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "amb");
me.colorRightS("wht", "wht", "amb", "wht", "wht", "amb");
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
2020-05-31 14:30:33 +00:00
} else if (page == "WINDCRZ") {
myWind = myCRZWIND;
2020-05-31 16:55:32 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "amb");
me.colorRightS("wht", "amb", "wht", "wht", "wht", "amb");
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
2020-05-31 14:30:33 +00:00
} else if (page == "WINDDES") {
myWind = myDESWIND;
2020-05-31 17:12:43 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "amb");
me.colorRightS("wht", "wht", "amb", "wht", "wht", "amb");
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
2020-05-31 14:30:33 +00:00
} else if (page == "WINDHIST") {
myWind = myHISTWIND;
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.fontSizeCenter(small, small, small, small, small, normal);
2020-05-31 14:30:33 +00:00
}
2020-08-08 17:35:51 +00:00
if (page == "WINDHIST") {
if (fmgc.windController.hist_winds.wind1.set) {
2020-08-08 17:35:51 +00:00
me["WIND_INSERT_star"].show();
} else {
me["WIND_INSERT_star"].hide();
}
me["WIND_CANCEL"].hide();
} else {
if (fmgc.flightPlanController.temporaryFlag[i]) {
me["WIND_CANCEL"].show();
me["WIND_INSERT_star"].show();
} else {
me["WIND_CANCEL"].hide();
me["WIND_INSERT_star"].hide();
}
}
2020-05-31 14:30:33 +00:00
if (myWind[i] != nil) {
2020-05-31 16:55:32 +00:00
if (page == "WINDCRZ") {
me["Simple_Title"].setText(sprintf("%s", myWind[i].title[0] ~ myWind[i].title[1] ~ myWind[i].title[2]));
if (fmgc.flightPlanController.temporaryFlag[i]) {
if (size(fmgc.windController.nav_indicies[i]) > 1) {
me["WIND_UPDOWN"].show();
} else {
me["WIND_UPDOWN"].hide();
}
} else {
if (size(fmgc.windController.nav_indicies[2]) > 1) {
me["WIND_UPDOWN"].show();
} else {
me["WIND_UPDOWN"].hide();
}
}
2020-05-31 16:55:32 +00:00
} else {
me["Simple_Title"].setText(sprintf("%s", myWind[i].title));
me["WIND_UPDOWN"].hide();
2020-05-31 16:55:32 +00:00
}
me["Simple_Title"].setColor(getprop("/MCDUC/colors/" ~ myWind[i].titleColour ~ "/r"), getprop("/MCDUC/colors/" ~ myWind[i].titleColour ~ "/g"), getprop("/MCDUC/colors/" ~ myWind[i].titleColour ~ "/b"));
2020-05-31 14:05:44 +00:00
2020-07-24 13:18:17 +00:00
me.dynamicPageArrowFunc(myWind[i]);
2020-05-31 14:30:33 +00:00
me.colorLeftArrow(myWind[i].arrowsColour[0][0],myWind[i].arrowsColour[0][1],myWind[i].arrowsColour[0][2],myWind[i].arrowsColour[0][3],myWind[i].arrowsColour[0][4],myWind[i].arrowsColour[0][5]);
2020-05-31 14:05:44 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myWind[i]["L" ~ x], "Simple_L" ~ x);
}
2020-05-31 14:30:33 +00:00
me.colorLeft(myWind[i].L1[2],myWind[i].L2[2],myWind[i].L3[2],myWind[i].L4[2],myWind[i].L5[2],myWind[i].L6[2]);
2020-05-31 14:05:44 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myWind[i]["C" ~ x], "Simple_C" ~ x);
}
2020-05-31 14:30:33 +00:00
me.colorCenter(myWind[i].C1[2],myWind[i].C2[2],myWind[i].C3[2],myWind[i].C4[2],myWind[i].C5[2],myWind[i].C6[2]);
2020-05-31 14:05:44 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myWind[i]["R" ~ x], "Simple_R" ~ x);
}
2020-05-31 14:05:44 +00:00
2020-05-31 14:30:33 +00:00
me.colorRight(myWind[i].R1[2],myWind[i].R2[2],myWind[i].R3[2],myWind[i].R4[2],myWind[i].R5[2],myWind[i].R6[2]);
2020-05-31 14:05:44 +00:00
}
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "LATREV") {
2019-10-14 16:48:35 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].hide();
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
2019-10-14 16:48:35 +00:00
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
2019-12-30 21:24:00 +00:00
if (myLatRev[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myLatRev[i].title[0] ~ myLatRev[i].title[1] ~ myLatRev[i].title[2]));
me["Simple_Title"].setColor(getprop("/MCDUC/colors/" ~ myLatRev[i].titleColour ~ "/r"), getprop("/MCDUC/colors/" ~ myLatRev[i].titleColour ~ "/g"), getprop("/MCDUC/colors/" ~ myLatRev[i].titleColour ~ "/b"));
2019-12-30 21:24:00 +00:00
if (myLatRev[i].subtitle[0] != nil) {
me["Simple_Center"].show();
me["Simple_C1S"].setText(sprintf("%s", myLatRev[i].subtitle[0] ~ "/" ~ myLatRev[i].subtitle[1]));
me["Simple_C1S"].setColor(fmgc.flightPlanController.temporaryFlag[i] ? YELLOW : GREEN);
2019-12-30 21:24:00 +00:00
me["Simple_C1S"].show();
me["Simple_C1"].hide();
me["Simple_C2"].hide();
me["Simple_C3"].hide();
me["Simple_C4"].hide();
me["Simple_C5"].hide();
me["Simple_C6"].hide();
me["Simple_C2S"].hide();
me["Simple_C3S"].hide();
me["Simple_C4S"].hide();
me["Simple_C5S"].hide();
me["Simple_C6S"].hide();
} else {
me["Simple_Center"].hide();
}
2020-07-24 13:18:17 +00:00
me.dynamicPageArrowFunc(myLatRev[i]);
me.colorLeftArrow(myLatRev[i].arrowsColour[0][0],myLatRev[i].arrowsColour[0][1],myLatRev[i].arrowsColour[0][2],myLatRev[i].arrowsColour[0][3],myLatRev[i].arrowsColour[0][4],myLatRev[i].arrowsColour[0][5]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myLatRev[i]["L" ~ x], "Simple_L" ~ x);
}
2019-12-30 21:24:00 +00:00
me.colorLeft(myLatRev[i].L1[2],myLatRev[i].L2[2],myLatRev[i].L3[2],myLatRev[i].L4[2],myLatRev[i].L5[2],myLatRev[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myLatRev[i]["R" ~ x], "Simple_R" ~ x);
}
2019-12-30 21:24:00 +00:00
me.colorRight(myLatRev[i].R1[2],myLatRev[i].R2[2],myLatRev[i].R3[2],myLatRev[i].R4[2],myLatRev[i].R5[2],myLatRev[i].R6[2]);
}
2019-10-14 16:48:35 +00:00
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "VERTREV") {
2020-03-09 18:00:22 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-03-09 18:00:22 +00:00
me["arrowsDepArr"].hide();
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2020-03-09 18:00:22 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
if (myVertRev[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myVertRev[i].title[0] ~ myVertRev[i].title[1] ~ myVertRev[i].title[2]));
if (myVertRev[i].subtitle[0] != nil) {
me["Simple_Center"].show();
me["Simple_C1S"].setText(sprintf("%s", myVertRev[i].subtitle[0] ~ "/" ~ myVertRev[i].subtitle[1]));
me["Simple_C1S"].show();
2021-03-01 21:12:12 +00:00
for (var y = 1; y <= 6; y = y + 1) {
me["Simple_C" ~ y].hide();
}
for (var y = 2; y <= 6; y = y + 1) {
me["Simple_C" ~ y ~ "S"].hide();
}
2020-03-09 18:00:22 +00:00
} else {
me["Simple_Center"].hide();
}
2020-07-24 13:18:17 +00:00
me.dynamicPageArrowFunc(myVertRev[i]);
me.colorLeftArrow(myVertRev[i].arrowsColour[0][0],myVertRev[i].arrowsColour[0][1],myVertRev[i].arrowsColour[0][2],myVertRev[i].arrowsColour[0][3],myVertRev[i].arrowsColour[0][4],myVertRev[i].arrowsColour[0][5]);
me.colorRightArrow(myVertRev[i].arrowsColour[1][0],myVertRev[i].arrowsColour[1][1],myVertRev[i].arrowsColour[1][2],myVertRev[i].arrowsColour[1][3],myVertRev[i].arrowsColour[1][4],myVertRev[i].arrowsColour[1][5]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myVertRev[i]["L" ~ x], "Simple_L" ~ x);
}
2020-03-09 18:00:22 +00:00
me.colorLeft(myVertRev[i].L1[2],myVertRev[i].L2[2],myVertRev[i].L3[2],myVertRev[i].L4[2],myVertRev[i].L5[2],myVertRev[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myVertRev[i]["R" ~ x], "Simple_R" ~ x);
}
2020-03-09 18:00:22 +00:00
me.colorRight(myVertRev[i].R1[2],myVertRev[i].R2[2],myVertRev[i].R3[2],myVertRev[i].R4[2],myVertRev[i].R5[2],myVertRev[i].R6[2]);
}
if (myVertRev[i] != nil and (myVertRev[i].type == 1 and fmgc.FMGCInternal.desSpdLimSet) or (myVertRev[i].type != 1 and fmgc.FMGCInternal.clbSpdLimSet)) {
me["Simple_L2"].setFontSize(normal);
} else {
me["Simple_L2"].setFontSize(small);
}
2020-03-09 18:00:22 +00:00
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "DEPARTURE") {
2019-12-30 21:24:00 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2019-12-30 21:24:00 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
2019-12-30 21:24:00 +00:00
me["ArrowLeft"].show();
me["ArrowRight"].show();
2020-01-05 20:21:28 +00:00
me["arrowsDepArr"].show();
2020-07-30 18:36:00 +00:00
me.hideAllArrowsButL6();
2019-12-30 21:24:00 +00:00
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2019-12-30 21:24:00 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
if (myDeparture[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myDeparture[i].title[0] ~ myDeparture[i].title[1] ~ myDeparture[i].title[2]));
2020-07-25 00:21:38 +00:00
me.dynamicPageArrowFuncDepArr(myDeparture[i]);
2019-12-30 21:24:00 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDeparture[i]["L" ~ x], "Simple_L" ~ x);
}
2019-12-30 21:24:00 +00:00
me.colorLeft(myDeparture[i].L1[2],myDeparture[i].L2[2],myDeparture[i].L3[2],myDeparture[i].L4[2],myDeparture[i].L5[2],myDeparture[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDeparture[i]["C" ~ x], "Simple_C" ~ x);
}
2019-12-30 21:24:00 +00:00
me.colorCenter(myDeparture[i].C1[2],myDeparture[i].C2[2],myDeparture[i].C3[2],myDeparture[i].C4[2],myDeparture[i].C5[2],myDeparture[i].C6[2]);
2019-12-30 21:24:00 +00:00
me["Simple_C6"].hide();
me["Simple_C6S"].hide();
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDeparture[i]["R" ~ x], "Simple_R" ~ x);
}
2019-12-30 21:24:00 +00:00
me.colorRight(myDeparture[i].R1[2],myDeparture[i].R2[2],myDeparture[i].R3[2],myDeparture[i].R4[2],myDeparture[i].R5[2],myDeparture[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "DUPLICATENAMES") {
2020-01-11 13:30:08 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-01-11 13:30:08 +00:00
me["arrowsDepArr"].hide();
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2020-01-11 13:30:08 +00:00
2021-03-01 21:12:12 +00:00
me.standardColor();
2020-01-11 13:30:08 +00:00
if (myDuplicate[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myDuplicate[i].title));
2020-07-24 13:18:17 +00:00
me.dynamicPageArrowFunc(myDuplicate[i]);
2020-01-11 13:30:08 +00:00
me.colorLeftArrow(myDuplicate[i].arrowsColour[0][0],myDuplicate[i].arrowsColour[0][1],myDuplicate[i].arrowsColour[0][2],myDuplicate[i].arrowsColour[0][3],myDuplicate[i].arrowsColour[0][4],myDuplicate[i].arrowsColour[0][5]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDuplicate[i]["L" ~ x], "Simple_L" ~ x);
}
2020-01-11 13:30:08 +00:00
me.colorLeft(myDuplicate[i].L1[2],myDuplicate[i].L2[2],myDuplicate[i].L3[2],myDuplicate[i].L4[2],myDuplicate[i].L5[2],myDuplicate[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDuplicate[i]["C" ~ x], "Simple_C" ~ x);
}
2020-01-11 13:30:08 +00:00
me.colorCenter(myDuplicate[i].C1[2],myDuplicate[i].C2[2],myDuplicate[i].C3[2],myDuplicate[i].C4[2],myDuplicate[i].C5[2],myDuplicate[i].C6[2]);
me["Simple_C6"].hide();
me["Simple_C6S"].hide();
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDuplicate[i]["R" ~ x], "Simple_R" ~ x);
}
2020-01-11 13:30:08 +00:00
me.colorRight(myDuplicate[i].R1[2],myDuplicate[i].R2[2],myDuplicate[i].R3[2],myDuplicate[i].R4[2],myDuplicate[i].R5[2],myDuplicate[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "ARRIVAL") {
2020-01-16 17:08:14 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-01-16 17:08:14 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
me["arrowsDepArr"].show();
2020-07-30 18:36:00 +00:00
me.hideAllArrowsButL6();
2020-06-28 11:59:46 +00:00
me["arrow2L"].hide();
me["arrow2R"].hide();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
if (myArrival[i] != nil and myArrival[i].activePage != 2) {
me.fontSizeLeftS(small, small, normal, small, small, small);
} else {
me.fontSizeLeftS(small, normal, small, small, small, small);
}
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.fontSizeRightS(small, small, small, small, small, small);
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeCenterS(small, small, small, small, small, small);
2020-01-16 17:08:14 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorCenterS("wht", "wht", "wht", "blu", "blu", "blu");
2020-01-16 17:08:14 +00:00
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
if (myArrival[i].arrowsMatrix[0][1]) {
me["Simple_L2_Arrow"].setColor(getprop("/MCDUC/colors/" ~ myArrival[i].arrowsColour[0][1] ~ "/r"), getprop("/MCDUC/colors/" ~ myArrival[i].arrowsColour[0][1] ~ "/g"), getprop("/MCDUC/colors/" ~ myArrival[i].arrowsColour[0][1] ~ "/b"));
me["Simple_L2_Arrow"].show();
} else {
me["Simple_L2_Arrow"].hide();
}
2020-01-16 17:08:14 +00:00
if (myArrival[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myArrival[i].title[0] ~ myArrival[i].title[1] ~ myArrival[i].title[2]));
2020-07-25 00:21:38 +00:00
me.dynamicPageArrowFuncDepArr(myArrival[i]);
2020-01-16 17:08:14 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myArrival[i]["L" ~ x], "Simple_L" ~ x);
}
2020-01-16 17:08:14 +00:00
me.colorLeft(myArrival[i].L1[2],myArrival[i].L2[2],myArrival[i].L3[2],myArrival[i].L4[2],myArrival[i].L5[2],myArrival[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myArrival[i]["C" ~ x], "Simple_C" ~ x);
}
2020-01-16 17:08:14 +00:00
me.colorCenter(myArrival[i].C1[2],myArrival[i].C2[2],myArrival[i].C3[2],myArrival[i].C4[2],myArrival[i].C5[2],myArrival[i].C6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myArrival[i]["R" ~ x], "Simple_R" ~ x);
}
2020-01-16 17:08:14 +00:00
me.colorRight(myArrival[i].R1[2],myArrival[i].R2[2],myArrival[i].R3[2],myArrival[i].R4[2],myArrival[i].R5[2],myArrival[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "HOLD") {
2020-04-08 21:49:27 +00:00
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
2020-04-08 21:49:27 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2020-04-08 21:49:27 +00:00
me["arrowsDepArr"].show();
2020-07-30 18:36:00 +00:00
me.hideAllArrowsButL6();
2020-04-08 21:49:27 +00:00
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-04-08 21:49:27 +00:00
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeCenter(normal, normal, normal, small, normal, normal); # if updating watch out - this is needed
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
if (myHold[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myHold[i].title[0] ~ myHold[i].title[1] ~ myHold[i].title[2]));
me["Simple_Title"].setColor(getprop("/MCDUC/colors/" ~ myHold[i].titleColour ~ "/r"), getprop("/MCDUC/colors/" ~ myHold[i].titleColour ~ "/g"), getprop("/MCDUC/colors/" ~ myHold[i].titleColour ~ "/b"));
2020-04-08 21:49:27 +00:00
2020-07-25 00:21:38 +00:00
me.dynamicPageArrowFuncDepArr(myHold[i]);
2020-01-16 17:08:14 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myHold[i]["L" ~ x], "Simple_L" ~ x);
}
2020-01-16 17:08:14 +00:00
me.colorLeft(myHold[i].L1[2],myHold[i].L2[2],myHold[i].L3[2],myHold[i].L4[2],myHold[i].L5[2],myHold[i].L6[2]);
2020-01-16 17:08:14 +00:00
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myHold[i]["C" ~ x], "Simple_C" ~ x);
}
2020-01-16 17:08:14 +00:00
me.colorCenter(myHold[i].C1[2],myHold[i].C2[2],myHold[i].C3[2],myHold[i].C4[2],myHold[i].C5[2],myHold[i].C6[2]);
2020-01-16 17:08:14 +00:00
2020-05-22 23:47:43 +00:00
me["Simple_C6"].hide();
2020-01-16 17:08:14 +00:00
me["Simple_C6S"].hide();
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myHold[i]["R" ~ x], "Simple_R" ~ x);
}
2020-01-16 17:08:14 +00:00
2020-04-08 21:49:27 +00:00
me.colorRight(myHold[i].R1[2],myHold[i].R2[2],myHold[i].R3[2],myHold[i].R4[2],myHold[i].R5[2],myHold[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
} else if (page == "AIRWAYS") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
me["arrowsDepArr"].show();
2020-07-30 18:36:00 +00:00
me.hideAllArrowsButL6();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeCenter(normal, normal, normal, small, normal, normal); # if updating watch out - this is needed
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
if (myAirways[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myAirways[i].title[0] ~ myAirways[i].title[1] ~ myAirways[i].title[2]));
me["Simple_Title"].setColor(getprop("/MCDUC/colors/" ~ myAirways[i].titleColour ~ "/r"), getprop("/MCDUC/colors/" ~ myAirways[i].titleColour ~ "/g"), getprop("/MCDUC/colors/" ~ myAirways[i].titleColour ~ "/b"));
2020-07-25 00:21:38 +00:00
me.dynamicPageArrowFuncDepArr(myAirways[i]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myAirways[i]["L" ~ x], "Simple_L" ~ x);
}
me.colorLeft(myAirways[i].L1[2],myAirways[i].L2[2],myAirways[i].L3[2],myAirways[i].L4[2],myAirways[i].L5[2],myAirways[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myAirways[i]["C" ~ x], "Simple_C" ~ x);
}
me.colorCenter(myAirways[i].C1[2],myAirways[i].C2[2],myAirways[i].C3[2],myAirways[i].C4[2],myAirways[i].C5[2],myAirways[i].C6[2]);
me["Simple_C6"].hide();
me["Simple_C6S"].hide();
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myAirways[i]["R" ~ x], "Simple_R" ~ x);
}
me.colorRight(myAirways[i].R1[2],myAirways[i].R2[2],myAirways[i].R3[2],myAirways[i].R4[2],myAirways[i].R5[2],myAirways[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
} else if (page == "CLOSESTAIRPORT") {
if (!pageSwitch[i].getBoolValue()) {
2020-07-30 18:36:00 +00:00
me.defaultHideWithCenter();
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
me["arrowsDepArr"].hide();
me["Simple_L1_Arrow"].hide();
me["Simple_L2_Arrow"].hide();
me["Simple_L3_Arrow"].hide();
me["Simple_L4_Arrow"].hide();
me["Simple_L5_Arrow"].hide();
me["Simple_L6_Arrow"].show();
me["Simple_R1_Arrow"].hide();
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].hide();
me["Simple_R4_Arrow"].hide();
me["Simple_R5_Arrow"].hide();
me["Simple_R6_Arrow"].show();
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
me.fontSizeLeft(normal, normal, normal, normal, normal, normal);
me.fontSizeCenter(normal, normal, normal, normal, normal, normal);
me.fontSizeRight(normal, normal, normal, normal, normal, normal);
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
if (myClosestAirport[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myClosestAirport[i].title));
me["Simple_L6_Arrow"].setColor(getprop("/MCDUC/colors/" ~ myClosestAirport[i].arrowsColour[0][5] ~ "/r"), getprop("/MCDUC/colors/" ~ myClosestAirport[i].arrowsColour[0][5] ~ "/g"), getprop("/MCDUC/colors/" ~ myClosestAirport[i].arrowsColour[0][5] ~ "/b"));
me["Simple_R6_Arrow"].setColor(getprop("/MCDUC/colors/" ~ myClosestAirport[i].arrowsColour[1][5] ~ "/r"), getprop("/MCDUC/colors/" ~ myClosestAirport[i].arrowsColour[1][5] ~ "/g"), getprop("/MCDUC/colors/" ~ myClosestAirport[i].arrowsColour[1][5] ~ "/b"));
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myClosestAirport[i]["L" ~ x], "Simple_L" ~ x);
}
me.colorLeft(myClosestAirport[i].L1[2],myClosestAirport[i].L2[2],myClosestAirport[i].L3[2],myClosestAirport[i].L4[2],myClosestAirport[i].L5[2],myClosestAirport[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myClosestAirport[i]["C" ~ x], "Simple_C" ~ x);
}
me.colorCenter(myClosestAirport[i].C1[2],myClosestAirport[i].C2[2],myClosestAirport[i].C3[2],myClosestAirport[i].C4[2],myClosestAirport[i].C5[2],myClosestAirport[i].C6[2]);
me["Simple_C6"].hide();
me["Simple_C6S"].hide();
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myClosestAirport[i]["R" ~ x], "Simple_R" ~ x);
}
me.colorRight(myClosestAirport[i].R1[2],myClosestAirport[i].R2[2],myClosestAirport[i].R3[2],myClosestAirport[i].R4[2],myClosestAirport[i].R5[2],myClosestAirport[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2020-04-12 22:44:02 +00:00
} else if (page == "DIRTO") {
2020-03-26 20:40:49 +00:00
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].show();
me["Simple_Center"].hide();
me["FPLN"].hide();
2020-03-29 15:55:30 +00:00
me["DIRTO_TMPY_group"].show();
2020-03-26 20:40:49 +00:00
me["INITA"].hide();
me["IRSINIT"].hide();
2020-03-26 20:40:49 +00:00
me["INITB"].hide();
2020-04-12 22:08:16 +00:00
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
2020-04-12 22:08:16 +00:00
me["PROG"].hide();
2020-03-26 20:40:49 +00:00
me["PERFTO"].hide();
2020-03-29 15:55:30 +00:00
me["arrowsDepArr"].show();
2020-05-15 14:32:12 +00:00
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2020-03-26 20:40:49 +00:00
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["Simple_Title"].show();
2020-03-29 15:55:30 +00:00
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
2020-07-24 13:18:17 +00:00
me.hideAllArrows();
2020-03-26 20:40:49 +00:00
2021-03-01 21:12:12 +00:00
me.standardHideExcess();
2020-04-18 13:59:05 +00:00
2020-07-30 18:36:00 +00:00
me.standardFontSize();
2020-03-26 20:40:49 +00:00
me.colorLeftS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorRightS("wht", "wht", "wht", "wht", "wht", "wht");
me.colorLeftArrow("wht", "wht", "wht", "wht", "wht", "wht");
2020-03-26 20:40:49 +00:00
me.colorRightArrow("wht", "wht", "wht", "wht", "wht", "wht");
if (myDirTo[i] != nil) {
me["Simple_Title"].setText(sprintf("%s", myDirTo[i].title[0]));
me["Simple_Title"].setColor(getprop("/MCDUC/colors/" ~ myDirTo[i].titleColour ~ "/r"), getprop("/MCDUC/colors/" ~ myDirTo[i].titleColour ~ "/g"), getprop("/MCDUC/colors/" ~ myDirTo[i].titleColour ~ "/b"));
2020-03-28 20:06:55 +00:00
2020-07-25 00:21:38 +00:00
me.dynamicPageArrowFuncDepArr(myDirTo[i]);
2020-03-26 20:40:49 +00:00
2020-03-29 15:55:30 +00:00
if (fmgc.flightPlanController.temporaryFlag[i] and mcdu.dirToFlag) {
me["DIRTO_TMPY_group"].show();
} else {
me["DIRTO_TMPY_group"].hide();
}
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDirTo[i]["L" ~ x], "Simple_L" ~ x);
}
2020-03-26 20:40:49 +00:00
me.colorLeft(myDirTo[i].L1[2],myDirTo[i].L2[2],myDirTo[i].L3[2],myDirTo[i].L4[2],myDirTo[i].L5[2],myDirTo[i].L6[2]);
2021-03-01 21:12:12 +00:00
for (var x = 1; x < 7; x = x + 1) {
me.dynamicPageFunc(myDirTo[i]["R" ~ x], "Simple_R" ~ x);
}
2020-03-26 20:40:49 +00:00
me.colorRight(myDirTo[i].R1[2],myDirTo[i].R2[2],myDirTo[i].R3[2],myDirTo[i].R4[2],myDirTo[i].R5[2],myDirTo[i].R6[2]);
}
pageSwitch[i].setBoolValue(1);
}
2019-10-14 16:48:35 +00:00
} else {
if (!pageSwitch[i].getBoolValue()) {
me["Simple"].hide();
me["FPLN"].hide();
2020-04-12 22:08:16 +00:00
me["DIRTO_TMPY_group"].hide();
2019-10-14 16:48:35 +00:00
me["INITA"].hide();
me["IRSINIT"].hide();
2019-10-14 16:48:35 +00:00
me["INITB"].hide();
2020-04-12 22:08:16 +00:00
me["FUELPRED"].hide();
2020-08-08 17:35:51 +00:00
me["WIND"].hide();
2020-04-12 22:08:16 +00:00
me["PROG"].hide();
2019-10-14 16:48:35 +00:00
me["PERFTO"].hide();
2020-04-12 22:08:16 +00:00
me["arrowsDepArr"].hide();
me["PERFAPPR"].hide();
me["PERFGA"].hide();
2019-10-14 16:48:35 +00:00
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
pageSwitch[i].setBoolValue(1);
}
}
},
2020-03-09 18:00:22 +00:00
# ack = ignore, wht = white, grn = green, blu = blue, amb = amber, yel = yellow, mag = magenta
2019-10-14 16:48:35 +00:00
colorLeft: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_L1"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (b != "ack") {
me["Simple_L2"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (c != "ack") {
me["Simple_L3"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (d != "ack") {
me["Simple_L4"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (e != "ack") {
me["Simple_L5"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (f != "ack") {
me["Simple_L6"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2019-10-14 16:48:35 +00:00
}
},
colorLeftS: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_L1S"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (b != "ack") {
me["Simple_L2S"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (c != "ack") {
me["Simple_L3S"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (d != "ack") {
me["Simple_L4S"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2019-10-14 16:48:35 +00:00
}
2020-04-12 22:08:16 +00:00
if (e != "ack") {
me["Simple_L5S"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (f != "ack") {
me["Simple_L6S"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2020-04-12 22:08:16 +00:00
}
},
colorLeftArrow: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_L1_Arrow"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (b != "ack") {
me["Simple_L2_Arrow"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (c != "ack") {
me["Simple_L3_Arrow"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (d != "ack") {
me["Simple_L4_Arrow"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (e != "ack") {
me["Simple_L5_Arrow"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (f != "ack") {
me["Simple_L6_Arrow"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2020-04-12 22:08:16 +00:00
}
},
colorRight: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_R1"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (b != "ack") {
me["Simple_R2"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (c != "ack") {
me["Simple_R3"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (d != "ack") {
me["Simple_R4"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (e != "ack") {
me["Simple_R5"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (f != "ack") {
me["Simple_R6"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2020-04-12 22:08:16 +00:00
}
},
colorRightS: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_R1S"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2020-04-12 22:08:16 +00:00
}
if (b != "ack") {
me["Simple_R2S"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (c != "ack") {
me["Simple_R3S"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (d != "ack") {
me["Simple_R4S"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (e != "ack") {
me["Simple_R5S"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (f != "ack") {
me["Simple_R6S"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2019-10-14 16:48:35 +00:00
}
},
colorRightArrow: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_R1_Arrow"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (b != "ack") {
me["Simple_R2_Arrow"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (c != "ack") {
me["Simple_R3_Arrow"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (d != "ack") {
me["Simple_R4_Arrow"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (e != "ack") {
me["Simple_R5_Arrow"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (f != "ack") {
me["Simple_R6_Arrow"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2019-10-14 16:48:35 +00:00
}
},
colorCenter: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_C1"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (b != "ack") {
me["Simple_C2"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (c != "ack") {
me["Simple_C3"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (d != "ack") {
me["Simple_C4"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (e != "ack") {
me["Simple_C5"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (f != "ack") {
me["Simple_C6"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2019-10-14 16:48:35 +00:00
}
},
colorCenterS: func(a, b, c, d, e, f) {
if (a != "ack") {
me["Simple_C1S"].setColor(getprop("/MCDUC/colors/" ~ a ~ "/r"), getprop("/MCDUC/colors/" ~ a ~ "/g"), getprop("/MCDUC/colors/" ~ a ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (b != "ack") {
me["Simple_C2S"].setColor(getprop("/MCDUC/colors/" ~ b ~ "/r"), getprop("/MCDUC/colors/" ~ b ~ "/g"), getprop("/MCDUC/colors/" ~ b ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (c != "ack") {
me["Simple_C3S"].setColor(getprop("/MCDUC/colors/" ~ c ~ "/r"), getprop("/MCDUC/colors/" ~ c ~ "/g"), getprop("/MCDUC/colors/" ~ c ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (d != "ack") {
me["Simple_C4S"].setColor(getprop("/MCDUC/colors/" ~ d ~ "/r"), getprop("/MCDUC/colors/" ~ d ~ "/g"), getprop("/MCDUC/colors/" ~ d ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (e != "ack") {
me["Simple_C5S"].setColor(getprop("/MCDUC/colors/" ~ e ~ "/r"), getprop("/MCDUC/colors/" ~ e ~ "/g"), getprop("/MCDUC/colors/" ~ e ~ "/b"));
2019-10-14 16:48:35 +00:00
}
if (f != "ack") {
me["Simple_C6S"].setColor(getprop("/MCDUC/colors/" ~ f ~ "/r"), getprop("/MCDUC/colors/" ~ f ~ "/g"), getprop("/MCDUC/colors/" ~ f ~ "/b"));
2019-10-14 16:48:35 +00:00
}
},
fontSizeLeft: func (a, b, c, d, e, f) {
if (a != 0) {
me["Simple_L1"].setFontSize(a);
}
if (b != 0) {
2019-10-14 16:48:35 +00:00
me["Simple_L2"].setFontSize(b);
}
if (c != 0) {
2019-10-14 16:48:35 +00:00
me["Simple_L3"].setFontSize(c);
}
if (d != 0) {
2019-10-14 16:48:35 +00:00
me["Simple_L4"].setFontSize(d);
}
if (e != 0) {
2019-10-14 16:48:35 +00:00
me["Simple_L5"].setFontSize(e);
}
if (f != 0) {
2019-10-14 16:48:35 +00:00
me["Simple_L6"].setFontSize(f);
}
},
fontSizeLeftS: func (a, b, c, d, e, f) {
if (a != 0) {
me["Simple_L1S"].setFontSize(a);
}
if (b != 0) {
me["Simple_L2S"].setFontSize(b);
}
if (c != 0) {
me["Simple_L3S"].setFontSize(c);
}
if (d != 0) {
me["Simple_L4S"].setFontSize(d);
}
if (e != 0) {
me["Simple_L5S"].setFontSize(e);
}
if (f != 0) {
me["Simple_L6S"].setFontSize(f);
}
},
2019-10-14 16:48:35 +00:00
fontSizeRight: func (a, b, c, d, e, f) {
if (a != 0) {
me["Simple_R1"].setFontSize(a);
}
if (b != 0) {
me["Simple_R2"].setFontSize(b);
}
if (c != 0) {
me["Simple_R3"].setFontSize(c);
}
if (d != 0) {
me["Simple_R4"].setFontSize(d);
}
if (e != 0) {
me["Simple_R5"].setFontSize(e);
}
if (f != 0) {
me["Simple_R6"].setFontSize(f);
}
},
fontSizeRightS: func (a, b, c, d, e, f) {
if (a != 0) {
me["Simple_R1S"].setFontSize(a);
}
if (b != 0) {
me["Simple_R2S"].setFontSize(b);
}
if (c != 0) {
me["Simple_R3S"].setFontSize(c);
}
if (d != 0) {
me["Simple_R4S"].setFontSize(d);
}
if (e != 0) {
me["Simple_R5S"].setFontSize(e);
}
if (f != 0) {
me["Simple_R6S"].setFontSize(f);
}
},
2019-10-14 16:48:35 +00:00
fontSizeCenter: func (a, b, c, d, e, f) {
if (a != 0) {
me["Simple_C1"].setFontSize(a);
}
if (b != 0) {
me["Simple_C2"].setFontSize(b);
}
if (c != 0) {
me["Simple_C3"].setFontSize(c);
}
if (d != 0) {
me["Simple_C4"].setFontSize(d);
}
if (e != 0) {
me["Simple_C5"].setFontSize(e);
}
if (f != 0) {
me["Simple_C6"].setFontSize(f);
}
},
fontSizeCenterS: func (a, b, c, d, e, f) {
if (a != 0) {
me["Simple_C1S"].setFontSize(a);
}
if (b != 0) {
me["Simple_C2S"].setFontSize(b);
}
if (c != 0) {
me["Simple_C3S"].setFontSize(c);
}
if (d != 0) {
me["Simple_C4S"].setFontSize(d);
}
if (e != 0) {
me["Simple_C5S"].setFontSize(e);
}
if (f != 0) {
me["Simple_C6S"].setFontSize(f);
}
},
2020-05-22 16:36:22 +00:00
dynamicPageFunc: func (dynamic, string) {
2021-03-01 21:12:12 +00:00
if (dynamic == nil) {
me[string].hide();
me[string ~ "S"].hide();
return;
}
2020-05-22 16:36:22 +00:00
if (dynamic[0] == nil) {
me[string].hide();
me[string ~ "S"].hide();
} else {
if (dynamic[0] != "") {
me[string].show();
me[string].setText(dynamic[0]);
} else {
me[string].hide();
}
2020-05-22 16:36:22 +00:00
if (dynamic[1] != nil) {
me[string ~ "S"].show();
me[string ~ "S"].setText(dynamic[1]);
} else {
me[string ~ "S"].hide();
}
}
},
2020-07-24 13:18:17 +00:00
dynamicPageArrowFunc: func (dynamic) {
forindex (var matrixArrow; dynamic.arrowsMatrix) {
if (matrixArrow == 0) {
var sign = "L";
} else {
var sign = "R";
}
2020-07-24 18:01:27 +00:00
forindex (var item; dynamic.arrowsMatrix[matrixArrow]) {
if (dynamic.arrowsMatrix[matrixArrow][item] == 1) {
2020-07-24 13:18:17 +00:00
me["Simple_" ~ sign ~ (item + 1) ~ "_Arrow"].show();
} else {
me["Simple_" ~ sign ~ (item + 1) ~ "_Arrow"].hide();
}
}
}
},
2020-07-25 00:21:38 +00:00
dynamicPageArrowFuncDepArr: func (dynamic) {
forindex (var matrixArrow; dynamic.arrowsMatrix) {
if (matrixArrow == 0) {
var sign = "L";
} else {
var sign = "R";
}
forindex (var item; dynamic.arrowsMatrix[matrixArrow]) {
2020-07-25 10:27:08 +00:00
if (item == 5) { continue; }
2020-07-25 00:21:38 +00:00
if (dynamic.arrowsMatrix[matrixArrow][item] == 1) {
me["arrow" ~ (item + 1) ~ sign].show();
me["arrow" ~ (item + 1) ~ sign].setColor(getprop("/MCDUC/colors/" ~ dynamic.arrowsColour[matrixArrow][item] ~ "/r"), getprop("/MCDUC/colors/" ~ dynamic.arrowsColour[matrixArrow][item] ~ "/g"), getprop("/MCDUC/colors/" ~ dynamic.arrowsColour[matrixArrow][item] ~ "/b"));
} else {
me["arrow" ~ (item + 1) ~ sign].hide();
}
}
}
},
2020-05-23 00:40:01 +00:00
updateScratchpad: func(i) {
me["Scratchpad"].setText(sprintf("%s", mcdu_scratchpad.scratchpads[i].scratchpad));
2020-05-23 11:16:20 +00:00
var color_selected = mcdu_scratchpad.scratchpads[i].scratchpadColour;
if (color_selected == "grn") {
me["Scratchpad"].setColor(GREEN);
} else if (color_selected == "blu") {
me["Scratchpad"].setColor(BLUE);
} else if (color_selected == "amb") {
me["Scratchpad"].setColor(AMBER);
} else if (color_selected == "yel") {
me["Scratchpad"].setColor(YELLOW);
} else if (color_selected == "mag") {
me["Scratchpad"].setColor(MAGENTA);
} else {
me["Scratchpad"].setColor(WHITE);
}
2020-05-23 00:40:01 +00:00
},
2019-10-14 16:48:35 +00:00
};
2020-05-22 16:36:22 +00:00
2019-10-14 16:48:35 +00:00
var canvas_MCDU_1 = {
new: func(canvas_group, file) {
var m = {parents: [canvas_MCDU_1, canvas_MCDU_base]};
m.init(canvas_group, file);
return m;
},
update: func() {
me.updateCommon(0);
},
2020-05-23 00:40:01 +00:00
updateScratchpadCall: func() {
me.updateScratchpad(0);
},
2019-10-14 16:48:35 +00:00
};
var canvas_MCDU_2 = {
new: func(canvas_group, file) {
var m = {parents: [canvas_MCDU_2, canvas_MCDU_base]};
m.init(canvas_group, file);
return m;
},
update: func() {
me.updateCommon(1);
},
2020-05-23 00:40:01 +00:00
updateScratchpadCall: func() {
me.updateScratchpad(1);
},
2019-10-14 16:48:35 +00:00
};
2021-05-18 12:02:11 +00:00
setlistener("/sim/signals/fdm-initialized", func {
2019-10-14 16:48:35 +00:00
MCDU1_display = canvas.new({
"name": "MCDU1",
"size": [1024, 864],
"view": [1024, 864],
"mipmapping": 1
});
MCDU2_display = canvas.new({
"name": "MCDU2",
"size": [1024, 864],
"view": [1024, 864],
"mipmapping": 1
});
MCDU1_display.addPlacement({"node": "mcdu1.screen"});
MCDU2_display.addPlacement({"node": "mcdu2.screen"});
var group_MCDU1 = MCDU1_display.createGroup();
var group_MCDU2 = MCDU2_display.createGroup();
MCDU_1 = canvas_MCDU_1.new(group_MCDU1, "Aircraft/A320-family/Models/Instruments/MCDU/res/mcdu.svg");
MCDU_2 = canvas_MCDU_2.new(group_MCDU2, "Aircraft/A320-family/Models/Instruments/MCDU/res/mcdu.svg");
2020-05-23 00:40:01 +00:00
MCDU_1.updateScratchpadCall();
MCDU_2.updateScratchpadCall();
2019-10-14 16:48:35 +00:00
2020-05-23 11:16:20 +00:00
mcdu.mcdu_message(0, "SELECT DESIRED SYSTEM");
mcdu.mcdu_message(1, "SELECT DESIRED SYSTEM");
2019-10-14 16:48:35 +00:00
MCDU_update.start();
});
var MCDU_update = maketimer(0.125, func {
canvas_MCDU_base.update();
});
2019-10-14 16:48:35 +00:00
var showMCDU1 = func {
gui.showDialog("mcdu1");
}
var showMCDU2 = func {
gui.showDialog("mcdu2");
}
setlistener("/MCDU[0]/page", func {
pageSwitch[0].setBoolValue(0);
}, 0, 0);
setlistener("/MCDU[1]/page", func {
pageSwitch[1].setBoolValue(0);
2021-03-01 21:12:12 +00:00
}, 0, 0);