2020-04-30 15:26:36 -04:00
# Copyright (c) 2020 Matthew Maring (mattmaring)
2020-03-29 23:39:31 -04:00
2020-03-30 17:11:32 -04:00
var altSet = props.globals.getNode("it-autoflight/input/alt", 1);
2020-03-29 23:39:31 -04:00
var progTOInput = func(key, i) {
2020-05-23 01:40:01 +01:00
var scratchpad = mcdu_scratchpad.scratchpads[i].scratchpad;
2020-03-30 17:11:32 -04:00
if (key == "L1") {
if (scratchpad == "CLR") {
2020-05-01 20:26:05 -04:00
setprop("/FMGC/internal/cruise-fl-prog", getprop("/FMGC/internal/cruise-fl"));
2020-05-23 12:16:20 +01:00
mcdu_scratchpad.scratchpads[i].empty();
2020-03-30 17:11:32 -04:00
} else if (int(scratchpad) != nil) {
var crzs = size(scratchpad);
2020-05-01 20:26:05 -04:00
if (crzs >= 1 and crzs <= 3 and scratchpad > 0 and scratchpad <= 430 and altSet.getValue() <= scratchpad * 100 and getprop("/FMGC/internal/cruise-lvl-set")) {
setprop("/FMGC/internal/cruise-fl-prog", scratchpad);
2020-05-23 12:16:20 +01:00
mcdu_scratchpad.scratchpads[i].empty();
2020-03-30 17:11:32 -04:00
} else {
2020-05-23 12:16:20 +01:00
mcdu_message(i, "NOT ALLOWED");
2020-03-30 17:11:32 -04:00
}
} else {
2020-05-23 12:16:20 +01:00
mcdu_message(i, "NOT ALLOWED");
2020-03-30 17:11:32 -04:00
}
2020-03-29 23:39:31 -04:00
}
}