1 contributor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
files_to_load = [
'lib.nas',
'radios.nas',
'knobs.nas',
'buttons.nas',
'softkeys.nas',
'display.nas',
'core.nas',
];
var zkv = cdi = radios = alerts = infos = cursors = afcs = eis = nil;
var init_props = func {
zkv = props.globals.getNode('/instrumentation/zkv1000',1);
zkv.getNode('emission',1).setDoubleValue(0.5);
zkv.getNode('body-emission',1).setDoubleValue(0.0);
zkv.getNode('body-texture',1).setValue('');
zkv.getNode('display-brightness-norm',1).setValue(0.5);
radios = zkv.getNode('radios', 1);
radios.getNode('nav1-selected',1).setIntValue(0);
radios.getNode('nav1-standby',1).setIntValue(0);
radios.getNode('nav2-selected',1).setIntValue(0);
radios.getNode('nav2-standby',1).setIntValue(0);
radios.getNode('nav-tune',1).setIntValue(0);
radios.getNode('nav-freq-mhz',1).alias('/instrumentation/nav/frequencies/standby-mhz');
radios.getNode('comm1-selected',1).setIntValue(1);
radios.getNode('comm2-selected',1).setIntValue(0);
radios.getNode('comm-tune',1).setIntValue(0);
radios.getNode('comm-freq-mhz',1).alias('/instrumentation/comm/frequencies/standby-mhz');
radios.getNode('xpdr-mode',1).setValue('GND');
alerts = zkv.getNode('alerts',1);
alerts.getNode('traffic-proximity',1).setIntValue(0);
alerts.getNode('marker-beacon', 1).setIntValue(0);
alerts.getNode('warning', 1).setBoolValue(0);
alerts.getNode('alert', 1).setBoolValue(0);
alerts.getNode('message', 1).setValue('');
afcs = zkv.getNode('afcs',1);
afcs.getNode('fd-bars-visible',1).setBoolValue(0);
afcs.getNode('alt-bug-visible',1).setBoolValue(0);
afcs.getNode('heading-bug-deg',1).setDoubleValue(getprop('/orientation/heading-magnetic-deg'));
afcs.getNode('target-pitch-deg',1).setDoubleValue(0.0);
afcs.getNode('selected-alt-ft',1).setDoubleValue(0.0);
afcs.getNode('selected-alt-ft-diff',1).setDoubleValue(0.0);
afcs.getNode('selected-ias-kt-diff',1).setDoubleValue(0.0);
afcs.getNode('vertical-speed-fpm',1).setDoubleValue(0.0);
afcs.getNode('roll-armed', 1).setBoolValue(0);
afcs.getNode('pitch-armed', 1).setBoolValue(0);
afcs.getNode('roll-armed-mode-text',1).setValue('');
afcs.getNode('roll-active-mode-text',1).setValue('');
afcs.getNode('roll-armed-mode',1).setIntValue(0);
afcs.getNode('roll-active-mode',1).setIntValue(0);
afcs.getNode('roll-active-mode-blink',1).setBoolValue(0);
afcs.getNode('pit-armed-mode-text',1).setValue('');
afcs.getNode('pit-active-mode-text',1).setValue('');
afcs.getNode('pit-armed-mode',1).setIntValue(0);
afcs.getNode('pit-active-mode',1).setIntValue(0);
afcs.getNode('pit-active-mode-blink',1).setBoolValue(0);
afcs.getNode('route',1);
props.globals.getNode('/instrumentation/transponder/id-code',1).setIntValue(1200);
props.globals.getNode('/instrumentation/transponder/serviceable',1).setBoolValue(1);
props.globals.getNode('/autopilot/settings/heading-bug-deg', 1).alias('/instrumentation/zkv1000/afcs/heading-bug-deg');
props.globals.getNode('/autopilot/settings/target-altitude-ft',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/settings/target-speed-kt',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/settings/vertical-speed-fpm',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/internal/target-pitch-deg',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/internal/flc-altitude-pitch-deg',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/internal/flc-airspeed-pitch-deg',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/internal/target-roll-deg',1).setDoubleValue(0.0);
props.globals.getNode('/autopilot/locks/pitch',1).setValue('');
props.globals.getNode('/autopilot/locks/roll',1).setValue('');
props.globals.getNode('/autopilot/locks/passive-mode', 1).setIntValue(1);
}
var set_listeners = func {
}
var load_nasal = func {
var zkv1000_dir = getprop('/sim/fg-aircraft') ~ '/Instruments-3d/zkv1000/Nasal/';
for (var i = 0; i < size(files_to_load); i += 1)
io.load_nasal(zkv1000_dir ~ files_to_load[i], 'zkv1000');
files_to_load = nil;
}
var load_multikey = func {
fgcommand('loadxml', props.Node.new({
'filename': getprop('/sim/fg-aircraft') ~ '/Instruments-3d/zkv1000/Systems/multikey.xml',
'targetnode': '/input/keyboard/'
}));
multikey.init();
}
var zkv1000_init = func {
removelistener(init);
load_multikey();
load_nasal();
init_props();
set_listeners();
print('zkv1000 loaded');
}
var init = setlistener('/sim/signals/fdm-initialized', zkv1000_init, 0, 0);