2019-10-14 16:48:35 +00:00
# A3XX Electronic Centralised Aircraft Monitoring System
# Copyright (c) 2019 Jonathan Redpath (legoboyvdlp)
var lines = [props.globals.getNode("/ECAM/msg/line1", 1), props.globals.getNode("/ECAM/msg/line2", 1), props.globals.getNode("/ECAM/msg/line3", 1), props.globals.getNode("/ECAM/msg/line4", 1), props.globals.getNode("/ECAM/msg/line5", 1), props.globals.getNode("/ECAM/msg/line6", 1), props.globals.getNode("/ECAM/msg/line7", 1), props.globals.getNode("/ECAM/msg/line8", 1)];
var linesCol = [props.globals.getNode("/ECAM/msg/linec1", 1), props.globals.getNode("/ECAM/msg/linec2", 1), props.globals.getNode("/ECAM/msg/linec3", 1), props.globals.getNode("/ECAM/msg/linec4", 1), props.globals.getNode("/ECAM/msg/linec5", 1), props.globals.getNode("/ECAM/msg/linec6", 1), props.globals.getNode("/ECAM/msg/linec7", 1), props.globals.getNode("/ECAM/msg/linec8", 1)];
var rightLines = [props.globals.getNode("/ECAM/rightmsg/line1", 1), props.globals.getNode("/ECAM/rightmsg/line2", 1), props.globals.getNode("/ECAM/rightmsg/line3", 1), props.globals.getNode("/ECAM/rightmsg/line4", 1), props.globals.getNode("/ECAM/rightmsg/line5", 1), props.globals.getNode("/ECAM/rightmsg/line6", 1), props.globals.getNode("/ECAM/rightmsg/line7", 1), props.globals.getNode("/ECAM/rightmsg/line8", 1)];
var rightLinesCol = [props.globals.getNode("/ECAM/rightmsg/linec1", 1), props.globals.getNode("/ECAM/rightmsg/linec2", 1), props.globals.getNode("/ECAM/rightmsg/linec3", 1), props.globals.getNode("/ECAM/rightmsg/linec4", 1), props.globals.getNode("/ECAM/rightmsg/linec5", 1), props.globals.getNode("/ECAM/rightmsg/linec6", 1), props.globals.getNode("/ECAM/rightmsg/linec7", 1), props.globals.getNode("/ECAM/rightmsg/linec8", 1)];
var statusLines = [props.globals.getNode("/ECAM/status/line1", 1), props.globals.getNode("/ECAM/status/line2", 1), props.globals.getNode("/ECAM/status/line3", 1), props.globals.getNode("/ECAM/status/line4", 1), props.globals.getNode("/ECAM/status/line5", 1), props.globals.getNode("/ECAM/status/line6", 1), props.globals.getNode("/ECAM/status/line7", 1), props.globals.getNode("/ECAM/status/line8", 1)];
var statusLinesCol = [props.globals.getNode("/ECAM/status/linec1", 1), props.globals.getNode("/ECAM/status/linec2", 1), props.globals.getNode("/ECAM/status/linec3", 1), props.globals.getNode("/ECAM/status/linec4", 1), props.globals.getNode("/ECAM/status/linec5", 1), props.globals.getNode("/ECAM/status/linec6", 1), props.globals.getNode("/ECAM/status/linec7", 1), props.globals.getNode("/ECAM/status/linec8", 1)];
var leftOverflow = props.globals.initNode("/ECAM/warnings/overflow-left", 0, "BOOL");
var rightOverflow = props.globals.initNode("/ECAM/warnings/overflow-right", 0, "BOOL");
var overflow = props.globals.initNode("/ECAM/warnings/overflow", 0, "BOOL");
var dc_ess = props.globals.getNode("/systems/electrical/bus/dc-ess", 1);
var lights = [props.globals.initNode("/ECAM/warnings/master-warning-light", 0, "BOOL"), props.globals.initNode("/ECAM/warnings/master-caution-light", 0, "BOOL")];
2019-11-02 14:52:06 +00:00
var aural = [props.globals.initNode("/sim/sound/warnings/crc", 0, "BOOL"), props.globals.initNode("/sim/sound/warnings/chime", 0, "BOOL"), props.globals.initNode("/sim/sound/warnings/cricket", 0, "BOOL")];
2019-10-14 16:48:35 +00:00
var warningFlash = props.globals.initNode("/ECAM/warnings/master-warning-flash", 0, "BOOL");
var lineIndex = 0;
var rightLineIndex = 0;
var statusIndex = 0;
var flash = 0;
var hasCleared = 0;
var statusFlag = 0;
var warning = {
2019-10-29 15:19:43 +00:00
new: func(msg,colour = "g",aural = 9,light = 9,hasSubmsg = 0,lastSubmsg = 0, sdPage = "nil", isMemo = 0) {
2019-10-14 16:48:35 +00:00
var t = {parents:[warning]};
t.msg = msg;
t.colour = colour;
t.aural = aural;
t.light = light;
t.hasSubmsg = hasSubmsg;
t.lastSubmsg = lastSubmsg;
t.active = 0;
t.noRepeat = 0;
t.noRepeat2 = 0;
t.clearFlag = 0;
t.sdPage = sdPage;
2019-10-29 15:19:43 +00:00
t.isMemo = isMemo;
2019-10-14 16:48:35 +00:00
t.hasCalled = 0;
2019-11-02 14:52:06 +00:00
t.wasActive = 0;
2019-10-14 16:48:35 +00:00
return t
},
write: func() {
if (me.active == 0) { return; }
2019-11-02 15:27:01 +00:00
me.wasActive = 1;
2019-10-14 16:48:35 +00:00
lineIndex = 0;
2020-01-01 21:30:13 +00:00
while (lineIndex <= 7 and lines[lineIndex].getValue() != "") {
2019-10-14 16:48:35 +00:00
lineIndex = lineIndex + 1; # go to next line until empty line
}
2020-01-01 21:30:13 +00:00
if (lineIndex == 8) {
2019-10-14 16:48:35 +00:00
leftOverflow.setBoolValue(1);
} elsif (leftOverflow.getBoolValue()) {
leftOverflow.setBoolValue(0);
}
2020-01-01 21:30:13 +00:00
if (lineIndex <= 7) {
if (lines[lineIndex].getValue() == "" and me.msg != "") { # at empty line. Also checks if message is not blank to allow for some warnings with no displayed msg, eg stall
lines[lineIndex].setValue(me.msg);
linesCol[lineIndex].setValue(me.colour);
}
2019-10-14 16:48:35 +00:00
}
},
warnlight: func() {
2019-11-02 16:20:08 +00:00
if (me.light > 1) { return; }
if (me.active == 0 and me.wasActive == 1) {
2019-11-02 14:52:06 +00:00
lights[me.light].setBoolValue(0);
me.wasActive = 0;
}
2019-11-02 16:20:08 +00:00
if (me.noRepeat == 1 or me.active == 0) { return; }
lights[me.light].setBoolValue(1);
me.noRepeat = 1;
2019-10-14 16:48:35 +00:00
},
sound: func() {
2019-11-02 16:20:08 +00:00
if (me.aural > 2) { return; }
if (me.active == 0 and me.wasActive == 1) {
2019-10-14 16:48:35 +00:00
aural[me.aural].setBoolValue(0);
2019-11-02 14:52:06 +00:00
me.wasActive = 0;
2019-10-14 16:48:35 +00:00
}
2019-11-02 16:20:08 +00:00
if (me.noRepeat2 == 1 or me.active == 0) { return; }
if (me.aural != 0) {
aural[me.aural].setBoolValue(0);
}
me.noRepeat2 = 1;
settimer(func() {
aural[me.aural].setBoolValue(1);
}, 0.15);
2019-10-14 16:48:35 +00:00
},
callPage: func() {
if (me.sdPage == "nil" or me.hasCalled == 1) { return; }
2019-11-19 18:18:44 +00:00
libraries.SystemDisplay.failCall(me.sdPage);
2019-10-14 16:48:35 +00:00
me.hasCalled = 1;
}
};
var memo = {
new: func(msg,colour = "g") {
var t = {parents:[memo]};
t.msg = msg;
t.colour = colour;
t.active = 0;
return t
},
write: func() {
if (me.active == 1) {
rightLineIndex = 0;
while (rightLines[rightLineIndex].getValue() != "" and rightLineIndex <= 7) {
rightLineIndex = rightLineIndex + 1; # go to next line until empty line
}
if (rightLineIndex > 7) {
rightOverflow.setBoolValue(1);
} elsif (rightOverflow.getBoolValue()) {
rightOverflow.setBoolValue(0);
}
if (rightLines[rightLineIndex].getValue() == "" and rightLineIndex <= 7) { # at empty line
rightLines[rightLineIndex].setValue(me.msg);
rightLinesCol[rightLineIndex].setValue(me.colour);
}
}
},
};
var status = {
new: func(msg,colour) {
var t = {parents:[status]};
t.msg = msg;
t.colour = colour;
t.active = 0;
return t
},
write: func() {
if (me.active == 1) {
statusIndex = 0;
while (statusLines[statusIndex].getValue() != "" and statusIndex <= 7) {
statusIndex = statusIndex + 1; # go to next line until empty line
}
if (statusLines[statusIndex].getValue() == "" and statusIndex <= 7) { # at empty line
statusLines[rightLineIndex].setValue(me.msg);
statusLinesCol[rightLineIndex].setValue(me.colour);
}
}
},
};
var ECAM_controller = {
2019-10-31 18:57:19 +00:00
_recallCounter: 0,
2019-11-06 19:09:42 +00:00
_noneActive: 0,
2019-10-14 16:48:35 +00:00
init: func() {
ECAMloopTimer.start();
me.reset();
},
loop: func() {
if ((systems.ELEC.Bus.acEss.getValue() >= 110 or systems.ELEC.Bus.ac2.getValue() >= 110) and !getprop("/systems/acconfig/acconfig-running")) {
2019-10-29 15:19:43 +00:00
# update FWC phases
phaseLoop();
# check active messages
2019-10-14 16:48:35 +00:00
messages_priority_3();
messages_priority_2();
messages_priority_1();
messages_priority_0();
2019-10-29 15:19:43 +00:00
messages_config_memo();
2019-10-14 16:48:35 +00:00
messages_memo();
messages_right_memo();
} else {
foreach (var w; warnings.vector) {
w.active = 0;
}
shutUpYou();
}
# clear display momentarily
for(var n = 0; n <= 7; n += 1) {
lines[n].setValue("");
}
for(var n = 0; n <= 7; n += 1) {
rightLines[n].setValue("");
}
# write to ECAM
var counter = 0;
2019-11-01 10:59:18 +00:00
if (!getprop("/systems/acconfig/autoconfig-running")) {
foreach (var w; warnings.vector) {
if (counter >= 9) { break; }
if (w.active == 1) {
w.write();
w.warnlight();
w.sound();
counter += 1;
2019-11-02 16:20:08 +00:00
} elsif (w.wasActive == 1) {
w.warnlight();
w.sound();
2019-11-01 10:59:18 +00:00
}
2019-10-14 16:48:35 +00:00
}
}
2019-10-29 15:19:43 +00:00
if (lines[0].getValue() == "" and flash == 0) { # disable left memos if a warning exists. Warnings are processed first, so this stops leftmemos if line1 is not empty
foreach (var c; configmemos.vector) {
c.write();
}
}
2019-10-14 16:48:35 +00:00
if (lines[0].getValue() == "" and flash == 0) { # disable left memos if a warning exists. Warnings are processed first, so this stops leftmemos if line1 is not empty
foreach (var l; leftmemos.vector) {
l.write();
}
}
foreach (var sL; specialLines.vector) {
sL.write();
}
foreach (var sF; secondaryFailures.vector) {
sF.write();
}
foreach (var m; memos.vector) {
m.write();
}
if (leftOverflow.getBoolValue() == 1 or leftOverflow.getBoolValue() == 1) {
overflow.setBoolValue(1);
} elsif (leftOverflow.getBoolValue() == 0 and leftOverflow.getBoolValue() == 0) {
overflow.setBoolValue(0);
}
},
reset: func() {
foreach (var w; warnings.vector) {
if (w.active == 1) {
w.active = 0;
}
}
2019-10-29 15:19:43 +00:00
foreach (var l; configmemos.vector) {
if (l.active == 1) {
l.active = 0;
}
}
2019-10-14 16:48:35 +00:00
foreach (var l; leftmemos.vector) {
if (l.active == 1) {
l.active = 0;
}
}
foreach (var sL; specialLines.vector) {
if (sL.active == 1) {
sL.active = 0;
}
}
foreach (var sF; secondaryFailures.vector) {
if (sF.active == 1) {
sF.active = 0;
}
}
foreach (var m; memos.vector) {
if (m.active == 1) {
m.active = 0;
}
}
},
clear: func() {
hasCleared = 0;
counter = 0;
if (leftOverflow.getBoolValue()) {
foreach (var w; warnings.vector) {
if (counter >= 8) { break; }
2019-10-29 15:19:43 +00:00
if (w.active == 1 and w.clearFlag != 1 and w.isMemo != 1) {
2019-10-14 16:48:35 +00:00
counter += 1;
if (w.hasSubmsg == 1) { continue; }
w.clearFlag = 1;
hasCleared = 1;
statusFlag = 1;
2019-11-19 18:04:01 +00:00
libraries.ECAMControlPanel.lightOff("clr");
2019-10-14 16:48:35 +00:00
}
}
} else {
foreach (var w; warnings.vector) {
2019-10-29 15:19:43 +00:00
if (w.active == 1 and w.clearFlag != 1 and w.hasSubmsg == 1 and w.isMemo != 1) {
2019-10-14 16:48:35 +00:00
w.clearFlag = 1;
hasCleared = 1;
statusFlag = 1;
2019-11-19 18:04:01 +00:00
libraries.ECAMControlPanel.lightOff("clr");
2019-10-14 16:48:35 +00:00
break;
}
}
}
2020-01-01 21:30:13 +00:00
if (statusFlag == 1 and lines[0].getValue() == "") {
2019-11-19 18:04:01 +00:00
libraries.SystemDisplay.manCall("sts");
2019-10-14 16:48:35 +00:00
statusFlag = 0;
}
},
recall: func() {
2019-11-06 19:09:42 +00:00
me._noneActive = 1;
2019-10-31 18:57:19 +00:00
me._recallCounter = 0;
2019-10-14 16:48:35 +00:00
foreach (var w; warnings.vector) {
if (w.clearFlag == 1) {
w.noRepeat = 0;
w.clearFlag = 0;
2019-10-31 18:57:19 +00:00
me._recallCounter += 1;
2019-10-14 16:48:35 +00:00
}
2019-11-06 19:09:42 +00:00
if (w.active == 1) {
me._noneActive = 0;
}
2019-10-14 16:48:35 +00:00
}
2019-10-31 18:57:19 +00:00
2019-11-06 19:09:42 +00:00
if (me._recallCounter == 0 and me._noneActive) {
2019-10-31 18:57:19 +00:00
FWC.Btn.recallStsNormal.setValue(1);
settimer(func() {
if (FWC.Btn.recallStsNormal.getValue() == 1) { # catch unexpected error, trying something new here
FWC.Btn.recallStsNormal.setValue(0);
} else {
die("Exception in ECAM-controller.nas, line 316");
}
}, 0.1);
}
2019-10-14 16:48:35 +00:00
},
warningReset: func(warning) {
2019-12-28 15:53:17 +00:00
if (warning.aural != 9 and warning.active == 1) {
aural[warning.aural].setBoolValue(0);
}
2019-10-14 16:48:35 +00:00
warning.active = 0;
warning.noRepeat = 0;
warning.noRepeat2 = 0;
2020-01-01 21:49:44 +00:00
# don't set .wasActive to 0, warnlight / sound funcs do that
2019-10-14 16:48:35 +00:00
},
};
setlistener("/systems/electrical/bus/dc-ess", func {
if (dc_ess.getValue() < 25) {
ECAM_controller.reset();
}
}, 0, 0);
var ECAMloopTimer = maketimer(0.15, func {
ECAM_controller.loop();
});
# Flash Master Warning Light
var shutUpYou = func() {
lights[0].setBoolValue(0);
}
var warnTimer = maketimer(0.25, func {
if (!lights[0].getBoolValue()) {
warnTimer.stop();
warningFlash.setBoolValue(0);
} else if (!warningFlash.getBoolValue()) {
warningFlash.setBoolValue(1);
} else {
warningFlash.setBoolValue(0);
}
});
setlistener("/ECAM/warnings/master-warning-light", func {
if (lights[0].getBoolValue()) {
warningFlash.setBoolValue(0);
warnTimer.start();
} else {
warnTimer.stop();
warningFlash.setBoolValue(0);
}
}, 0, 0);