113 lines
3.8 KiB
Text
113 lines
3.8 KiB
Text
|
# A3XX Buttons
|
||
|
# Joshua Davidson (it0uchpods)
|
||
|
|
||
|
# Resets buttons to the default values
|
||
|
var variousReset = func {
|
||
|
setprop("/modes/cpt-du-xfr", 0);
|
||
|
setprop("/modes/fo-du-xfr", 0);
|
||
|
setprop("/controls/fadec/n1mode1", 0);
|
||
|
setprop("/controls/fadec/n1mode2", 0);
|
||
|
setprop("/instrumentation/mk-viii/serviceable", 1);
|
||
|
setprop("/instrumentation/mk-viii/inputs/discretes/terr-inhibit", 0);
|
||
|
setprop("/instrumentation/mk-viii/inputs/discretes/gpws-inhibit", 0);
|
||
|
setprop("/instrumentation/mk-viii/inputs/discretes/glideslope-cancel", 0);
|
||
|
setprop("/instrumentation/mk-viii/inputs/discretes/momentary-flap-override", 0);
|
||
|
setprop("/instrumentation/mk-viii/inputs/discretes/momentary-flap3-override", 0);
|
||
|
}
|
||
|
|
||
|
var mcpSPDKnbPull = func {
|
||
|
setprop("/it-autoflight/input/spd-managed", 0);
|
||
|
fmgc.ManagedSPD.stop();
|
||
|
var ias = getprop("/instrumentation/airspeed-indicator/indicated-speed-kt");
|
||
|
var mach = getprop("/instrumentation/airspeed-indicator/indicated-mach");
|
||
|
if (getprop("/it-autoflight/input/kts-mach") == 0) {
|
||
|
if (ias >= 100 and ias <= 360) {
|
||
|
setprop("/it-autoflight/input/spd-kts", math.round(ias, 1));
|
||
|
} else if (ias < 100) {
|
||
|
setprop("/it-autoflight/input/spd-kts", 100);
|
||
|
} else if (ias > 360) {
|
||
|
setprop("/it-autoflight/input/spd-kts", 360);
|
||
|
}
|
||
|
} else if (getprop("/it-autoflight/input/kts-mach") == 1) {
|
||
|
if (mach >= 0.50 and mach <= 0.95) {
|
||
|
setprop("/it-autoflight/input/spd-kts", math.round(mach, 0.001));
|
||
|
} else if (mach < 0.50) {
|
||
|
setprop("/it-autoflight/input/spd-kts", 0.50);
|
||
|
} else if (mach > 0.95) {
|
||
|
setprop("/it-autoflight/input/spd-kts", 0.95);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var mcpSPDKnbPush = func {
|
||
|
if (getprop("/FMGC/internal/cruise-lvl-set") == 1 and getprop("/FMGC/internal/cost-index-set") == 1) {
|
||
|
setprop("/it-autoflight/input/spd-managed", 1);
|
||
|
fmgc.ManagedSPD.start();
|
||
|
} else {
|
||
|
gui.popupTip("Please make sure you have set a cruise altitude and cost index in the MCDU.");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var mcpHDGKnbPull = func {
|
||
|
var latmode = getprop("/it-autoflight/output/lat");
|
||
|
var showhdg = getprop("/it-autoflight/custom/show-hdg");
|
||
|
if (latmode == 0 or showhdg == 0) {
|
||
|
setprop("/it-autoflight/input/lat", 3);
|
||
|
setprop("/it-autoflight/custom/show-hdg", 1);
|
||
|
} else {
|
||
|
setprop("/it-autoflight/input/lat", 0);
|
||
|
setprop("/it-autoflight/custom/show-hdg", 1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var mcpHDGKnbPush = func {
|
||
|
setprop("/it-autoflight/input/lat", 1);
|
||
|
}
|
||
|
|
||
|
var hdgInput = func {
|
||
|
var latmode = getprop("/it-autoflight/output/lat");
|
||
|
if (latmode != 0) {
|
||
|
setprop("/it-autoflight/custom/show-hdg", 1);
|
||
|
var hdgnow = getprop("/it-autoflight/input/hdg");
|
||
|
settimer(func {
|
||
|
var hdgnew = getprop("/it-autoflight/input/hdg");
|
||
|
var showhdg = getprop("/it-autoflight/custom/show-hdg");
|
||
|
if (hdgnow == hdgnew and latmode != 5 and showhdg == 1) {
|
||
|
settimer(func {
|
||
|
setprop("/it-autoflight/custom/show-hdg", 0);
|
||
|
}, 10);
|
||
|
}
|
||
|
}, 2);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var toggleSTD = func {
|
||
|
var Std = getprop("/modes/altimeter/std");
|
||
|
if (Std == 1) {
|
||
|
var oldqnh = getprop("/modes/altimeter/oldqnh");
|
||
|
setprop("/instrumentation/altimeter/setting-inhg", oldqnh);
|
||
|
setprop("/modes/altimeter/std", 0);
|
||
|
} else if (Std == 0) {
|
||
|
var qnh = getprop("/instrumentation/altimeter/setting-inhg");
|
||
|
setprop("/modes/altimeter/oldqnh", qnh);
|
||
|
setprop("/instrumentation/altimeter/setting-inhg", 29.92);
|
||
|
setprop("/modes/altimeter/std", 1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var increaseManVS = func {
|
||
|
var manvs = getprop("/systems/pressurization/outflowpos-man");
|
||
|
var auto = getprop("/systems/pressurization/auto");
|
||
|
if (manvs <= 1 and manvs >= 0 and !auto) {
|
||
|
setprop("/systems/pressurization/outflowpos-man", manvs + 0.001);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var decreaseManVS = func {
|
||
|
var manvs = getprop("/systems/pressurization/outflowpos-man");
|
||
|
var auto = getprop("/systems/pressurization/auto");
|
||
|
if (manvs <= 1 and manvs >= 0 and !auto) {
|
||
|
setprop("/systems/pressurization/outflowpos-man", manvs - 0.001);
|
||
|
}
|
||
|
}
|