zkv1000 / zkv1000.nas /
Newer Older
211 lines | 8.712kb
commit initial
Sébastien MARQUE authored on 2017-03-07
1
# Nasal files to be loaded at start
2
# the order could be important as some files need other one to be loaded first
3
files_to_load = [
4
    'lib.nas',     # some useful functions, should stay first loaded
Correction swap NAV tuning
Sébastien MARQUE authored on 2017-03-12
5
    'radios.nas',  # all about radios COMM, NAV, XPDR
commit initial
Sébastien MARQUE authored on 2017-03-07
6
    'knobs.nas',   # handles knobs
7
    'buttons.nas', # handles knobs and buttons
8
    'softkeys.nas',# handles softkeys and menus items
adds route display on map
Sébastien MARQUE authored on 2017-05-11
9
    'maps/route.nas',
separates maps code
Sébastien MARQUE authored on 2017-05-11
10
    'maps/navaids.nas',
11
    'maps/tiles.nas',
add TCAS
Sébastien MARQUE authored on 2017-12-21
12
    'maps/tcas.nas',
adds Map on MFD
Sébastien MARQUE authored on 2017-03-20
13
    'map.nas',     # moves the maps
commit initial
Sébastien MARQUE authored on 2017-03-07
14
    'display.nas',
add window management
Sébastien MARQUE authored on 2017-03-28
15
    'menu.nas',    # manage windows
commit initial
Sébastien MARQUE authored on 2017-03-07
16
    'core.nas',    # the scheduler and switch on button
adds AFCS
Sébastien MARQUE authored on 2020-05-06
17
    'afcs.nas',    # Automatic Flight Control System
commit initial
Sébastien MARQUE authored on 2017-03-07
18
];
19
#    'routes.nas',  # manages flightplans and routes
20
#    'display.nas', # display messages and popups
21
#    'infos.nas',   # get informations from environment
22
#    'alerts.nas',  # in flight tests
23
#    'mud.nas',     # displays simple embedded GUI (Multi-Use Display)
24

            
adds the avaibility to have ...
Sébastien MARQUE authored on 2017-04-07
25
var flightdeck = {};
26

            
adds AFCS
Sébastien MARQUE authored on 2020-05-06
27
var autopilot = {};
28

            
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
29
var data = { # set of data common to all devices
30
    roll : 0,
31
    pitch : 0,
32
    vsi : 0,
33
    ias : 0,
34
    alt : 0,
35
    hdg : 0,
36
    wow : 1,
put lat/lon in global data s...
Sébastien MARQUE authored on 2017-04-12
37
    lat : 0,
38
    lon : 0,
adds AOA display
Sébastien MARQUE authored on 2017-04-15
39
    aoa : 0,
add TCAS
Sébastien MARQUE authored on 2017-12-21
40
    tcas: [],
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
41
    timers : {
42
        '20Hz': maketimer (
43
            0.05,
44
            func {
45
                data.roll = getprop('/orientation/roll-deg');
46
                data.pitch = getprop('orientation/pitch-deg');
47
                data.vsi = getprop('/instrumentation/vertical-speed-indicator/indicated-speed-fpm');
48
                data.ias = getprop('/velocities/airspeed-kt');
49
                data.alt = getprop('/instrumentation/altimeter/indicated-altitude-ft');
50
                data.hdg = getprop('/orientation/heading-deg');
adds AOA display
Sébastien MARQUE authored on 2017-04-15
51
                data.aoa = getprop('/orientation/alpha-deg');
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
52
            }
53
        ),
54
        '1Hz': maketimer (
55
            1,
56
            func {
57
                data.wow = getprop('/gear/gear/wow');
put lat/lon in global data s...
Sébastien MARQUE authored on 2017-04-12
58
                data.lat = getprop('/position/latitude-deg');
59
                data.lon = getprop('/position/longitude-deg');
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
60
            }
61
        ),
62
    },
listeners stored in data str...
Sébastien MARQUE authored on 2017-05-06
63
    listeners : {},
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
64
};
65

            
fix setlistener on tied prop...
Sébastien MARQUE authored on 2020-04-27
66
var zkv = cdi = radios = alerts = infos = cursors = afcs = eis = misc = nil;
commit initial
Sébastien MARQUE authored on 2017-03-07
67

            
68
var init_props = func {
69
    zkv = props.globals.getNode('/instrumentation/zkv1000',1);
adds the avaibility to have ...
Sébastien MARQUE authored on 2017-04-07
70
    foreach (var d; zkv.getChildren())
71
        if (d.getNode('status') != nil)
72
            flightdeck[d.getName()] = nil;
commit initial
Sébastien MARQUE authored on 2017-03-07
73
    zkv.getNode('emission',1).setDoubleValue(0.5);
74
    zkv.getNode('body-emission',1).setDoubleValue(0.0);
75
    zkv.getNode('body-texture',1).setValue('');
add brightness and lights co...
Sébastien MARQUE authored on 2020-04-27
76
    zkv.getNode('display-brightness-norm',1).setDoubleValue(0.5);
77
    zkv.getNode('lightmap',1).setIntValue(0);
commit initial
Sébastien MARQUE authored on 2017-03-07
78

            
79
    radios = zkv.getNode('radios', 1);
80
    radios.getNode('nav1-selected',1).setIntValue(0);
81
    radios.getNode('nav1-standby',1).setIntValue(0);
82
    radios.getNode('nav2-selected',1).setIntValue(0);
83
    radios.getNode('nav2-standby',1).setIntValue(0);
84
    radios.getNode('nav-tune',1).setIntValue(0);
85
    radios.getNode('nav-freq-mhz',1).alias('/instrumentation/nav/frequencies/standby-mhz');
86
    radios.getNode('comm1-selected',1).setIntValue(1);
87
    radios.getNode('comm2-selected',1).setIntValue(0);
88
    radios.getNode('comm-tune',1).setIntValue(0);
89
    radios.getNode('comm-freq-mhz',1).alias('/instrumentation/comm/frequencies/standby-mhz');
90
    radios.getNode('xpdr-mode',1).setValue('GND');
adds BRG1/2 animation
Sébastien MARQUE authored on 2017-03-16
91
    radios.getNode('brg1-source',1).setValue('OFF');
92
    radios.getNode('brg2-source',1).setValue('OFF');
commit initial
Sébastien MARQUE authored on 2017-03-07
93

            
adds CDI
Sébastien MARQUE authored on 2017-03-18
94
    cdi = zkv.getNode('cdi', 1);
95
    cdi.getNode('source', 1).setValue('OFF');
96
    cdi.getNode('no-flag', 1).setBoolValue(0);
97
    cdi.getNode('FROM-flag', 1).alias('no-flag');
98
    cdi.getNode('TO-flag', 1).alias('no-flag');
99
    cdi.getNode('course', 1);
100
    cdi.getNode('course-deflection', 1);
101
    cdi.getNode('radial', 1);
102
    cdi.getNode('in-range', 1);
103

            
commit initial
Sébastien MARQUE authored on 2017-03-07
104
    alerts = zkv.getNode('alerts',1);
105
    alerts.getNode('traffic-proximity',1).setIntValue(0);
106
    alerts.getNode('marker-beacon', 1).setIntValue(0);
107
    alerts.getNode('warning', 1).setBoolValue(0);
108
    alerts.getNode('alert', 1).setBoolValue(0);
109
    alerts.getNode('message', 1).setValue('');
put Vspeeds in common data s...
Sébastien MARQUE authored on 2017-04-11
110
    foreach (var v; ['Vx', 'Vy', 'Vr', 'Vglide', 'Vne']) {
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
111
        var speed = alerts.getValue(v);
put Vspeeds in common data s...
Sébastien MARQUE authored on 2017-04-11
112
        data[v] = speed != nil ? speed : 9999;
113
    }
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
114
    var aoa = alerts.getValue('stall-aoa');
adds AOA display
Sébastien MARQUE authored on 2017-04-15
115
    data['stall-aoa'] = (aoa == nil or aoa == 0) ? 9999 : aoa;
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
116
    aoa = alerts.getValue('approach-aoa');
nicer AOA display
Sébastien MARQUE authored on 2017-04-16
117
    if (aoa != nil)
118
        data['approach-aoa'] = aoa;
commit initial
Sébastien MARQUE authored on 2017-03-07
119

            
120
    afcs = zkv.getNode('afcs',1);
121
    afcs.getNode('fd-bars-visible',1).setBoolValue(0);
122
    afcs.getNode('alt-bug-visible',1).setBoolValue(0);
123
    afcs.getNode('heading-bug-deg',1).setDoubleValue(getprop('/orientation/heading-magnetic-deg'));
124
    afcs.getNode('target-pitch-deg',1).setDoubleValue(0.0);
adds OAT, TAS, GSPD, WindDat...
Sébastien MARQUE authored on 2017-03-15
125
    afcs.getNode('selected-alt-ft',1).setIntValue(2000);
commit initial
Sébastien MARQUE authored on 2017-03-07
126
    afcs.getNode('selected-alt-ft-diff',1).setDoubleValue(0.0);
127
    afcs.getNode('selected-ias-kt-diff',1).setDoubleValue(0.0);
128
    afcs.getNode('vertical-speed-fpm',1).setDoubleValue(0.0);
129
    afcs.getNode('roll-armed', 1).setBoolValue(0);
130
    afcs.getNode('pitch-armed', 1).setBoolValue(0);
131
    afcs.getNode('roll-armed-mode-text',1).setValue('');
132
    afcs.getNode('roll-active-mode-text',1).setValue('');
133
    afcs.getNode('roll-armed-mode',1).setIntValue(0);
134
    afcs.getNode('roll-active-mode',1).setIntValue(0);
135
    afcs.getNode('roll-active-mode-blink',1).setBoolValue(0);
136
    afcs.getNode('pit-armed-mode-text',1).setValue('');
137
    afcs.getNode('pit-active-mode-text',1).setValue('');
138
    afcs.getNode('pit-armed-mode',1).setIntValue(0);
139
    afcs.getNode('pit-active-mode',1).setIntValue(0);
140
    afcs.getNode('pit-active-mode-blink',1).setBoolValue(0);
141
    afcs.getNode('route',1);
142

            
fix setlistener on tied prop...
Sébastien MARQUE authored on 2020-04-27
143
    misc = zkv.getNode('misc',1);
144
    misc.getNode('alt-setting-inhg',1).setDoubleValue(getprop('/instrumentation/altimeter/setting-inhg'));
145

            
animation texts EIS + power ...
Sébastien MARQUE authored on 2017-03-19
146
    eis = zkv.getNode('eis',1);
147
    eis.getNode('fuel-qty-at-start', 1).setValue(
148
        getprop('/consumables/fuel/tank/level-gal_us')
149
      + getprop('/consumables/fuel/tank/level-gal_us'));
150

            
moves some map infos in data...
Sébastien MARQUE authored on 2017-04-11
151
    var tiles_defaults = {
152
        # see https://www.wikimedia.org/wiki/Maps
153
        server: 'maps.wikimedia.org',
154
        type:   'osm-intl',
155
        apikey: '',
add options for online tiles
Sébastien MARQUE authored on 2017-05-14
156
        format: 'png',
157
        template: 'https://{server}/{type}/{z}/{x}/{y}.{format}{apikey}',
moves some map infos in data...
Sébastien MARQUE authored on 2017-04-11
158
    };
159
    foreach (var v; keys(tiles_defaults)) {
160
        var val = getprop('/sim/online-tiles-' ~ v);
161
        data['tiles-' ~ v] = val != nil ? val : tiles_defaults[v];
162
    }
adds Map on MFD
Sébastien MARQUE authored on 2017-03-20
163

            
commit initial
Sébastien MARQUE authored on 2017-03-07
164
    props.globals.getNode('/instrumentation/transponder/id-code',1).setIntValue(1200);
165
    props.globals.getNode('/instrumentation/transponder/serviceable',1).setBoolValue(1);
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
166
    props.globals.getNode('/autopilot/settings/heading-bug-deg', 1).alias(afcs.getNode('heading-bug-deg').getPath());
commit initial
Sébastien MARQUE authored on 2017-03-07
167
    props.globals.getNode('/autopilot/settings/target-altitude-ft',1).setDoubleValue(0.0);
168
    props.globals.getNode('/autopilot/settings/target-speed-kt',1).setDoubleValue(0.0);
169
    props.globals.getNode('/autopilot/settings/vertical-speed-fpm',1).setDoubleValue(0.0);
170
    props.globals.getNode('/autopilot/internal/target-pitch-deg',1).setDoubleValue(0.0);
171
    props.globals.getNode('/autopilot/internal/flc-altitude-pitch-deg',1).setDoubleValue(0.0);
172
    props.globals.getNode('/autopilot/internal/flc-airspeed-pitch-deg',1).setDoubleValue(0.0);
173
    props.globals.getNode('/autopilot/internal/target-roll-deg',1).setDoubleValue(0.0);
174
    props.globals.getNode('/autopilot/locks/pitch',1).setValue('');
175
    props.globals.getNode('/autopilot/locks/roll',1).setValue('');
176
    props.globals.getNode('/autopilot/locks/passive-mode', 1).setIntValue(1);
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
177

            
allows zkv1000 to be install...
Sébastien MARQUE authored on 2017-05-11
178
    data.zkv1000_reldir = io.dirname(getprop('/nasal/zkv1000/file'));
179
    data.zkv1000_dir = string.normpath(
180
            io.dirname(getprop('/sim/aircraft-dir'))
181
            ~ '/'
182
            ~ string.replace(data.zkv1000_reldir, split('/', data.zkv1000_reldir)[0], '')
183
        ) ~ '/';
commit initial
Sébastien MARQUE authored on 2017-03-07
184
}
185

            
186
var load_nasal = func {
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
187
    var nasal_dir = data.zkv1000_dir ~ 'Nasal/';
commit initial
Sébastien MARQUE authored on 2017-03-07
188
    for (var i = 0; i < size(files_to_load); i += 1)
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
189
        io.load_nasal(nasal_dir ~ files_to_load[i], 'zkv1000');
commit initial
Sébastien MARQUE authored on 2017-03-07
190
    files_to_load = nil;
191
}
192

            
193
var load_multikey = func {
194
    fgcommand('loadxml', props.Node.new({
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
195
        'filename': data.zkv1000_dir ~ 'Systems/multikey.xml',
commit initial
Sébastien MARQUE authored on 2017-03-07
196
        'targetnode': '/input/keyboard/'
197
    }));
198
    multikey.init();
199
}
200

            
201
var zkv1000_init = func {
init listener needed only on...
Sébastien MARQUE authored on 2017-03-13
202
    removelistener(init);
commit initial
Sébastien MARQUE authored on 2017-03-07
203
    init_props();
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
204
    load_multikey();
adds AOA display
Sébastien MARQUE authored on 2017-04-15
205
    load_nasal();
commit initial
Sébastien MARQUE authored on 2017-03-07
206
    print('zkv1000 loaded');
add autopwer
Sébastien MARQUE authored on 2020-05-07
207
    if (zkv.getValue('auto-power'))
208
        data.listeners.autopower = setlistener(zkv.getPath() ~ '/serviceable', zkv1000.powerOn, 0, 0);
commit initial
Sébastien MARQUE authored on 2017-03-07
209
}
210

            
init listener needed only on...
Sébastien MARQUE authored on 2017-03-13
211
var init = setlistener('/sim/signals/fdm-initialized', zkv1000_init, 0, 0);