From b4c73ac4fc61ad2ce49b2b58454ba9c2edf79fcf Mon Sep 17 00:00:00 2001 From: merspieler Date: Fri, 28 Sep 2018 21:34:54 +0200 Subject: [PATCH] Added a few ECAM MEMOs Signed-off-by: merspieler --- Nasal/ECAM-controller.nas | 80 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 75 insertions(+), 5 deletions(-) diff --git a/Nasal/ECAM-controller.nas b/Nasal/ECAM-controller.nas index 68629fbe..691d4bf4 100644 --- a/Nasal/ECAM-controller.nas +++ b/Nasal/ECAM-controller.nas @@ -163,13 +163,43 @@ var memos = std.Vector.new([ var to_inhibit = memo.new(msg: "T.O. INHIBIT", active: 0, colour: "m"), var ldg_inhibit = memo.new(msg: "LDG INHIBIT", active: 0, colour: "m"), var spd_brk = memo.new(msg: "SPEED BRK", active: 0, colour: "g"), -var emer_gen = memo.new(msg: "EMER GEN", active: 0, colour: "g"), -var rat = memo.new(msg: "RAT OUT", active: 0, colour: "g"), var park_brk = memo.new(msg: "PARK BRK", active: 0, colour: "g"), -var ram_air = memo.new(msg: "RAM AIR ON", active: 0, colour: "g"), var ptu = memo.new(msg: "HYD PTU", active: 0, colour: "g"), +var rat = memo.new(msg: "RAT OUT", active: 0, colour: "g"), +var emer_gen = memo.new(msg: "EMER GEN", active: 0, colour: "g"), +var ram_air = memo.new(msg: "RAM AIR ON", active: 0, colour: "g"), +var nw_strg_disc = memo.new(msg: "NW STRG DISC", active: 0, colour: "g"), # Not yet implemented +var ignition = memo.new(msg: "IGNITION", active: 0, colour: "g"), +var cabin_ready = memo.new(msg: "CABIN READY", active: 0, colour: "g"), # Not yet implemented +var pred_ws_off = memo.new(msg: "PRED W/S OFF", active: 0, colour: "g"), # Not yet implemented +var terr_stby = memo.new(msg: "TERR STBY", active: 0, colour: "g"), # Not yet implemented +var tcas_stby = memo.new(msg: "TCAS STBY", active: 0, colour: "g"), # Not yet implemented +var acars_call = memo.new(msg: "ACARS CALL", active: 0, colour: "g"), # Not yet implemented +var company_call = memo.new(msg: "COMPANY CALL", active: 0, colour: "g"), # Not yet implemented +var satcom_alert = memo.new(msg: "SATCOM ALERT", active: 0, colour: "g"), # Not yet implemented +var acars_msg = memo.new(msg: "ACARS MSG", active: 0, colour: "g"), # Not yet implemented +var company_msg = memo.new(msg: "COMPANY MSG", active: 0, colour: "g"), # Not yet implemented var eng_aice = memo.new(msg: "ENG A.ICE", active: 0, colour: "g"), var wing_aice = memo.new(msg: "WING A.ICE", active: 0, colour: "g"), +var ice_not_det = memo.new(msg: "ICE NOT DET", active: 0, colour: "g"), # Not yet implemented +var hi_alt = memo.new(msg: "HI ALT", active: 0, colour: "g"), # Not yet implemented +var apu_avail = memo.new(msg: "APU AVAIL", active: 0, colour: "g"), +var apu_bleed = memo.new(msg: "APU BLEED", active: 0, colour: "g"), # Not yet implemented +var ldg_lt = memo.new(msg: "LDG LT", active: 0, colour: "g"), +var brk_fan = memo.new(msg: "BRK FAN", active: 0, colour: "g"), # Not yet implemented +var audio3_xfrd = memo.new(msg: "AUDIO 3 XFRD", active: 0, colour: "g"), # Not yet implemented +var switchg_pnl = memo.new(msg: "SWITCHG PNL", active: 0, colour: "g"), # Not yet implemented +var gpws_flap3 = memo.new(msg: "GPWS FLAP 3", active: 0, colour: "g"), # Not yet implemented +var hf_data_ovrd = memo.new(msg: "HF DATA OVRD", active: 0, colour: "g"), # Not yet implemented +var hf_voice = memo.new(msg: "HF VOICE", active: 0, colour: "g"), # Not yet implemented +var acars_stby = memo.new(msg: "ACARS STBY", active: 0, colour: "g"), # Not yet implemented +var vhf3_voice = memo.new(msg: "VHF3 VOICE", active: 0, colour: "g"), +var auto_brk_lo = memo.new(msg: "AUTO BRK LO", active: 0, colour: "g"), +var auto_brk_med = memo.new(msg: "AUTO BRK MED", active: 0, colour: "g"), +var auto_brk_max = memo.new(msg: "AUTO BRK MAX", active: 0, colour: "g"), +var auto_brk_off = memo.new(msg: "AUTO BRK OFF", active: 0, colour: "g"), # Not yet implemented +var man_ldg_elev = memo.new(msg: "MAN LDG ELEV", active: 0, colour: "g"), # Not yet implemented +var ctr_tk_feedg = memo.new(msg: "CTR TK FEEDG", active: 0, colour: "g"), # Not yet implemented var fuelx = memo.new(msg: "FUEL X FEED", active: 0, colour: "g") ]); @@ -316,7 +346,25 @@ var messages_right_memo = func { } else { ram_air.active = 0; } - + + if (getprop("/controls/engines/engine[0]/igniter-a") == 1 or getprop("/controls/engines/engine[0]/igniter-b") == 1 or getprop("/controls/engines/engine[1]/igniter-a") == 1 or getprop("/controls/engines/engine[1]/igniter-b") == 1) { + ignition.active = 1; + } else { + ignition.active = 0; + } + + if (apu_bleed.active == 0 and getprop("/systems/apu/rpm") >= 95) { + apu_avail.active = 1; + } else { + apu_avail.active = 0; + } + + if (getprop("/controls/lighting/landing-lights[1]") > 0 or getprop("/controls/lighting/landing-lights[2]") > 0) { + ldg_lt.active = 1; + } else { + ldg_lt.active = 0; + } + if (getprop("/controls/switches/leng") == 1 or getprop("/controls/switches/reng") == 1 or getprop("/systems/electrical/bus/dc1") == 0 or getprop("/systems/electrical/bus/dc2") == 0) { eng_aice.active = 1; } else { @@ -328,6 +376,28 @@ var messages_right_memo = func { } else { wing_aice.active = 0; } + if (getprop("/instrumentation/comm[2]/frequencies/selected-mhz") != 0) { + vhf3_voice.active = 1; + } else { + vhf3_voice.active = 0; + } + if (getprop("/controls/autobrake/mode") == 1) { + auto_brk_lo.active = 1; + } else { + auto_brk_lo.active = 0; + } + + if (getprop("/controls/autobrake/mode") == 2) { + auto_brk_med.active = 1; + } else { + auto_brk_med.active = 0; + } + + if (getprop("/controls/autobrake/mode") == 3) { + auto_brk_max.active = 1; + } else { + auto_brk_max.active = 0; + } if (getprop("/systems/fuel/x-feed") == 1 and getprop("controls/fuel/x-feed") == 1) { fuelx.active = 1; @@ -382,4 +452,4 @@ var ECAM_controller = { m.write(); } }, -}; \ No newline at end of file +};