2020-04-30 19:26:36 +00:00
|
|
|
# Copyright (c) 2020 Matthew Maring (mattmaring)
|
2020-03-30 03:39:31 +00:00
|
|
|
|
|
|
|
var progCLBInput = func(key, i) {
|
2020-05-23 00:40:01 +00:00
|
|
|
var scratchpad = mcdu_scratchpad.scratchpads[i].scratchpad;
|
2020-03-30 21:11:32 +00:00
|
|
|
if (key == "L1") {
|
|
|
|
if (scratchpad == "CLR") {
|
2020-07-10 00:09:19 +00:00
|
|
|
fmgc.FMGCInternal.crzProg = fmgc.FMGCInternal.crzFl;
|
2020-07-10 21:15:37 +00:00
|
|
|
if (fmgc.FMGCInternal.phase == 5) {
|
2020-05-02 00:26:05 +00:00
|
|
|
setprop("/FMGC/status/phase", 3);
|
|
|
|
setprop("/FMGC/internal/activate-once", 0);
|
|
|
|
setprop("/FMGC/internal/activate-twice", 0);
|
|
|
|
setprop("/FMGC/internal/decel", 0);
|
2020-04-10 18:38:58 +00:00
|
|
|
}
|
2020-05-23 11:16:20 +00:00
|
|
|
mcdu_scratchpad.scratchpads[i].empty();
|
2020-03-30 21:11:32 +00:00
|
|
|
} else if (int(scratchpad) != nil) {
|
|
|
|
var crzs = size(scratchpad);
|
2020-07-10 19:28:17 +00:00
|
|
|
if (crzs >= 1 and crzs <= 3 and scratchpad > 0 and scratchpad <= 430 and fmgc.FMGCInternal.crzSet <= scratchpad * 100) {
|
2020-07-10 00:09:19 +00:00
|
|
|
fmgc.FMGCInternal.crzProg = scratchpad;
|
2020-05-23 11:16:20 +00:00
|
|
|
mcdu_scratchpad.scratchpads[i].empty();
|
2020-07-10 21:15:37 +00:00
|
|
|
if (fmgc.FMGCInternal.phase == 5) {
|
2020-05-02 00:26:05 +00:00
|
|
|
setprop("/FMGC/status/phase", 3);
|
|
|
|
setprop("/FMGC/internal/activate-once", 0);
|
|
|
|
setprop("/FMGC/internal/activate-twice", 0);
|
|
|
|
setprop("/FMGC/internal/decel", 0);
|
2020-04-10 18:38:58 +00:00
|
|
|
}
|
2020-03-30 21:11:32 +00:00
|
|
|
} else {
|
2020-05-23 11:16:20 +00:00
|
|
|
mcdu_message(i, "NOT ALLOWED");
|
2020-03-30 21:11:32 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-05-23 11:16:20 +00:00
|
|
|
mcdu_message(i, "NOT ALLOWED");
|
2020-03-30 21:11:32 +00:00
|
|
|
}
|
2020-03-30 03:39:31 +00:00
|
|
|
}
|
|
|
|
}
|