NAV disponible (hors CDI)
|
1 |
var setListeners = func { |
2 |
setlistener('/instrumentation/nav/nav-id', |
|
correction listeners
|
3 |
func (n) { |
4 |
var val = n.getValue(); |
|
creates flightdeck hash to p...
|
5 |
foreach (var c; keys(flightdeck)) |
removes unecessary listeners
|
6 |
flightdeck[c].display.updateNAV({'nav-id': 1, val: val}); |
NAV disponible (hors CDI)
|
7 |
}, 1, 2); |
8 |
setlistener('/instrumentation/nav[1]/nav-id', |
|
correction listeners
|
9 |
func (n) { |
10 |
var val = n.getValue(); |
|
creates flightdeck hash to p...
|
11 |
foreach (var c; keys(flightdeck)) |
removes unecessary listeners
|
12 |
flightdeck[c].display.updateNAV({'nav-id': 2, val: val}); |
NAV disponible (hors CDI)
|
13 |
}, 1, 2); |
removes unecessary listeners
|
14 |
# keep this listener as long as the code is to heavy to be modified in multiple places |
adds OAT, TAS, GSPD, WindDat...
|
15 |
setlistener('/instrumentation/zkv1000/afcs/selected-alt-ft', |
16 |
func (n) { |
|
17 |
var val = n.getValue(); |
|
creates flightdeck hash to p...
|
18 |
if (val != nil) |
19 |
foreach (var c; keys(flightdeck)) |
|
removes unecessary listeners
|
20 |
if (flightdeck[c].role == 'PFD') { |
creates flightdeck hash to p...
|
21 |
if (! flightdeck[c].display.screenElements['SelectedALT'].getVisible()) { |
22 |
flightdeck[c].display.screenElements['SelectedALT'].show(); |
|
23 |
flightdeck[c].display.screenElements['SelectedALT-text'].show(); |
|
24 |
flightdeck[c].display.screenElements['SelectedALT-symbol'].show(); |
|
25 |
flightdeck[c].display.screenElements['SelectedALT-bug'].show(); |
|
26 |
flightdeck[c].display.screenElements['SelectedALT-bg'].show(); |
|
27 |
} |
|
28 |
flightdeck[c].display.updateSelectedALT(); |
|
29 |
} |
|
adds OAT, TAS, GSPD, WindDat...
|
30 |
}, 0, 2); |
adds transponder
|
31 |
setlistener('/gear/gear/wow', |
creates flightdeck hash to p...
|
32 |
func foreach (var c; keys(flightdeck)) |
removes unecessary listeners
|
33 |
if (flightdeck[c].role == 'PFD') |
creates flightdeck hash to p...
|
34 |
flightdeck[c].display.updateXPDR(), |
adds transponder
|
35 |
0, 0); |
adds BARO settings
|
36 |
setlistener('/instrumentation/altimeter/setting-inhg', |
creates flightdeck hash to p...
|
37 |
func foreach (var c; keys(flightdeck)) |
removes unecessary listeners
|
38 |
if (flightdeck[c].role == 'PFD') |
creates flightdeck hash to p...
|
39 |
flightdeck[c].display.updateBARO(), 0, 2); |
NAV disponible (hors CDI)
|
40 |
} |
41 | ||
commit initial
|
42 |
var deviceClass = { |
improves role/name variables...
|
43 |
new: func (name) { |
commit initial
|
44 |
var m = { parents: [ deviceClass ] }; |
improves role/name variables...
|
45 |
m.name = name; |
46 |
m.role = substr(name, 0, 3); |
|
47 |
m.node = zkv.getNode(name, 1); |
|
add V-speeds bugs
|
48 |
m.data = {}; |
first attempt to centralize ...
|
49 |
m.timers = {}; |
put Vspeeds in common data s...
|
50 |
foreach (var v; ['Vx', 'Vy', 'Vr', 'Vglide']) |
add V-speeds bugs
|
51 |
m.data[v ~ '-visible'] = 1; |
configurable display size, v...
|
52 |
foreach (var v; ['screen-object', 'screen-view', 'screen-size']) |
53 |
m.data[v] = getprop('/instrumentation/zkv1000/' ~ name ~ '/' ~ v); |
|
improves role/name variables...
|
54 |
m.display = displayClass.new(m); |
55 |
m.display.showInitProgress(m.name); |
|
56 |
m.softkeys = softkeysClass.new(m); |
|
57 |
m.buttons = buttonsClass.new(m); |
|
XPDR settings via knob or so...
|
58 |
m.knobs = knobsClass.new(m); |
commit initial
|
59 |
m.display.loadsvg(); |
AI disponible
|
60 |
m.display.loadGroup({ |
61 |
hide : [ |
|
commit initial
|
62 |
'Failures', |
63 |
'SoftKeysTexts', |
|
64 |
'PFD-Widgets', |
|
65 |
'COMM', |
|
66 |
'XPDR-TIME', |
|
67 |
'NAV', |
|
68 |
'FlightInstruments', |
|
69 |
'VDI', |
|
70 |
'OMI', |
|
AI disponible
|
71 |
], |
72 |
clip : 'PitchScale', |
|
73 |
}); |
|
TMR/REF window
|
74 |
m.windows = pageClass.new(m); |
improves role/name variables...
|
75 |
zkv.getNode(m.name ~ '-init').setIntValue(0); |
76 |
setprop('/instrumentation/zkv1000/' ~ m.name ~ '/status', 1); |
|
77 |
msg(m.name ~ ' switched on!'); |
|
commit initial
|
78 |
return m; |
79 |
}, |
|
80 |
}; |
|
81 | ||
PFD+MFD allumés ensemble
|
82 |
var powerOn = func { |
global timers started at pow...
|
83 |
foreach (var freq; keys(data.timers)) |
84 |
data.timers[freq].start(); |
|
85 | ||
improves role/name variables...
|
86 |
foreach (var name; keys(flightdeck)) |
87 |
if (zkv.getNode(name) != nil) |
|
new var organistaion (and fi...
|
88 |
# thread.newthread(func { |
improves role/name variables...
|
89 |
flightdeck[name] = deviceClass.new(name); |
new var organistaion (and fi...
|
90 |
# }); |
correction listeners
|
91 |
settimer(setListeners, 5); |
commit initial
|
92 |
} |