zkv1000 / zkv1000.nas /
Newer Older
237 lines | 9.5kb
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,
change way of time display
Sébastien MARQUE authored on 2020-06-12
40
    time : '23:59:59',
adds flight plan catalog loa...
Sébastien MARQUE authored on 2020-06-08
41
    fpSize : 0,
add TCAS
Sébastien MARQUE authored on 2017-12-21
42
    tcas: [],
traffic alert and display
Sébastien MARQUE authored on 2020-06-08
43
    tcas_level: 0,
creates settings management
Sébastien MARQUE authored on 2020-05-16
44
    settings: {
45
        units: {
46
            pressure: 'inhg',
47
            altitude: 'ft',
48
            speed: 'knots',
49
            distance: 'nm',
50
            vertical: 'fpm',
51
        },
adds time display setting
Sébastien MARQUE authored on 2020-06-11
52
        time: {
53
            label: 'GMT',
54
            actual: '  GMT >',
55
        },
creates settings management
Sébastien MARQUE authored on 2020-05-16
56
    },
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
57
    timers : {
58
        '20Hz': maketimer (
59
            0.05,
60
            func {
61
                data.roll = getprop('/orientation/roll-deg');
62
                data.pitch = getprop('orientation/pitch-deg');
63
                data.vsi = getprop('/instrumentation/vertical-speed-indicator/indicated-speed-fpm');
64
                data.ias = getprop('/velocities/airspeed-kt');
65
                data.alt = getprop('/instrumentation/altimeter/indicated-altitude-ft');
66
                data.hdg = getprop('/orientation/heading-deg');
adds AOA display
Sébastien MARQUE authored on 2017-04-15
67
                data.aoa = getprop('/orientation/alpha-deg');
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
68
            }
69
        ),
70
        '1Hz': maketimer (
71
            1,
72
            func {
73
                data.wow = getprop('/gear/gear/wow');
put lat/lon in global data s...
Sébastien MARQUE authored on 2017-04-12
74
                data.lat = getprop('/position/latitude-deg');
75
                data.lon = getprop('/position/longitude-deg');
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
76
            }
77
        ),
78
    },
listeners stored in data str...
Sébastien MARQUE authored on 2017-05-06
79
    listeners : {},
just moves data structure to...
Sébastien MARQUE authored on 2017-04-11
80
};
81

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

            
84
var init_props = func {
85
    zkv = props.globals.getNode('/instrumentation/zkv1000',1);
adds the avaibility to have ...
Sébastien MARQUE authored on 2017-04-07
86
    foreach (var d; zkv.getChildren())
87
        if (d.getNode('status') != nil)
88
            flightdeck[d.getName()] = nil;
commit initial
Sébastien MARQUE authored on 2017-03-07
89
    zkv.getNode('emission',1).setDoubleValue(0.5);
90
    zkv.getNode('body-emission',1).setDoubleValue(0.0);
91
    zkv.getNode('body-texture',1).setValue('');
add brightness and lights co...
Sébastien MARQUE authored on 2020-04-27
92
    zkv.getNode('display-brightness-norm',1).setDoubleValue(0.5);
93
    zkv.getNode('lightmap',1).setIntValue(0);
add possibility to resize th...
Sébastien MARQUE authored on 2020-05-09
94
    if (zkv.getNode('size-factor').getValue() == nil)
95
        zkv.getNode('size-factor',1).setDoubleValue(1.0);
adds flight plan catalog loa...
Sébastien MARQUE authored on 2020-06-08
96
    if (zkv.getValue('flightplans') != nil and io.stat(zkv.getValue('flightplans')) == "dir")
97
        data.flightplans = zkv.getValue('flightplans');
98
    else
99
        data.flightplans = getprop('/sim/fg-home') ~ '/Export';
commit initial
Sébastien MARQUE authored on 2017-03-07
100

            
101
    radios = zkv.getNode('radios', 1);
102
    radios.getNode('nav1-selected',1).setIntValue(0);
103
    radios.getNode('nav1-standby',1).setIntValue(0);
104
    radios.getNode('nav2-selected',1).setIntValue(0);
105
    radios.getNode('nav2-standby',1).setIntValue(0);
106
    radios.getNode('nav-tune',1).setIntValue(0);
107
    radios.getNode('nav-freq-mhz',1).alias('/instrumentation/nav/frequencies/standby-mhz');
108
    radios.getNode('comm1-selected',1).setIntValue(1);
109
    radios.getNode('comm2-selected',1).setIntValue(0);
110
    radios.getNode('comm-tune',1).setIntValue(0);
111
    radios.getNode('comm-freq-mhz',1).alias('/instrumentation/comm/frequencies/standby-mhz');
112
    radios.getNode('xpdr-mode',1).setValue('GND');
adds BRG1/2 animation
Sébastien MARQUE authored on 2017-03-16
113
    radios.getNode('brg1-source',1).setValue('OFF');
114
    radios.getNode('brg2-source',1).setValue('OFF');
commit initial
Sébastien MARQUE authored on 2017-03-07
115

            
adds CDI
Sébastien MARQUE authored on 2017-03-18
116
    cdi = zkv.getNode('cdi', 1);
117
    cdi.getNode('source', 1).setValue('OFF');
118
    cdi.getNode('no-flag', 1).setBoolValue(0);
119
    cdi.getNode('FROM-flag', 1).alias('no-flag');
120
    cdi.getNode('TO-flag', 1).alias('no-flag');
121
    cdi.getNode('course', 1);
122
    cdi.getNode('course-deflection', 1);
123
    cdi.getNode('radial', 1);
124
    cdi.getNode('in-range', 1);
125

            
commit initial
Sébastien MARQUE authored on 2017-03-07
126
    alerts = zkv.getNode('alerts',1);
127
    alerts.getNode('traffic-proximity',1).setIntValue(0);
128
    alerts.getNode('marker-beacon', 1).setIntValue(0);
129
    alerts.getNode('warning', 1).setBoolValue(0);
130
    alerts.getNode('alert', 1).setBoolValue(0);
131
    alerts.getNode('message', 1).setValue('');
put Vspeeds in common data s...
Sébastien MARQUE authored on 2017-04-11
132
    foreach (var v; ['Vx', 'Vy', 'Vr', 'Vglide', 'Vne']) {
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
133
        var speed = alerts.getValue(v);
put Vspeeds in common data s...
Sébastien MARQUE authored on 2017-04-11
134
        data[v] = speed != nil ? speed : 9999;
135
    }
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
136
    var aoa = alerts.getValue('stall-aoa');
adds AOA display
Sébastien MARQUE authored on 2017-04-15
137
    data['stall-aoa'] = (aoa == nil or aoa == 0) ? 9999 : aoa;
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
138
    aoa = alerts.getValue('approach-aoa');
nicer AOA display
Sébastien MARQUE authored on 2017-04-16
139
    if (aoa != nil)
140
        data['approach-aoa'] = aoa;
commit initial
Sébastien MARQUE authored on 2017-03-07
141

            
142
    afcs = zkv.getNode('afcs',1);
143
    afcs.getNode('fd-bars-visible',1).setBoolValue(0);
144
    afcs.getNode('alt-bug-visible',1).setBoolValue(0);
afcs improvements
Sébastien MARQUE authored on 2020-05-17
145
    afcs.getNode('heading-bug-deg',1).setDoubleValue(int(getprop('/orientation/heading-magnetic-deg')));
commit initial
Sébastien MARQUE authored on 2017-03-07
146
    afcs.getNode('target-pitch-deg',1).setDoubleValue(0.0);
adds OAT, TAS, GSPD, WindDat...
Sébastien MARQUE authored on 2017-03-15
147
    afcs.getNode('selected-alt-ft',1).setIntValue(2000);
commit initial
Sébastien MARQUE authored on 2017-03-07
148
    afcs.getNode('selected-alt-ft-diff',1).setDoubleValue(0.0);
149
    afcs.getNode('selected-ias-kt-diff',1).setDoubleValue(0.0);
150
    afcs.getNode('vertical-speed-fpm',1).setDoubleValue(0.0);
151
    afcs.getNode('roll-armed', 1).setBoolValue(0);
152
    afcs.getNode('pitch-armed', 1).setBoolValue(0);
153
    afcs.getNode('roll-armed-mode-text',1).setValue('');
154
    afcs.getNode('roll-active-mode-text',1).setValue('');
155
    afcs.getNode('roll-armed-mode',1).setIntValue(0);
156
    afcs.getNode('roll-active-mode',1).setIntValue(0);
157
    afcs.getNode('roll-active-mode-blink',1).setBoolValue(0);
158
    afcs.getNode('pit-armed-mode-text',1).setValue('');
159
    afcs.getNode('pit-active-mode-text',1).setValue('');
160
    afcs.getNode('pit-armed-mode',1).setIntValue(0);
161
    afcs.getNode('pit-active-mode',1).setIntValue(0);
162
    afcs.getNode('pit-active-mode-blink',1).setBoolValue(0);
163
    afcs.getNode('route',1);
164

            
adds flight plan catalog loa...
Sébastien MARQUE authored on 2020-06-08
165
    data.flightplans = getprop('/sim/fg-home') ~ '/Export';
166

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

            
animation texts EIS + power ...
Sébastien MARQUE authored on 2017-03-19
170
    eis = zkv.getNode('eis',1);
171
    eis.getNode('fuel-qty-at-start', 1).setValue(
172
        getprop('/consumables/fuel/tank/level-gal_us')
173
      + getprop('/consumables/fuel/tank/level-gal_us'));
174

            
moves some map infos in data...
Sébastien MARQUE authored on 2017-04-11
175
    var tiles_defaults = {
176
        # see https://www.wikimedia.org/wiki/Maps
177
        server: 'maps.wikimedia.org',
178
        type:   'osm-intl',
179
        apikey: '',
add options for online tiles
Sébastien MARQUE authored on 2017-05-14
180
        format: 'png',
181
        template: 'https://{server}/{type}/{z}/{x}/{y}.{format}{apikey}',
moves some map infos in data...
Sébastien MARQUE authored on 2017-04-11
182
    };
183
    foreach (var v; keys(tiles_defaults)) {
184
        var val = getprop('/sim/online-tiles-' ~ v);
185
        data['tiles-' ~ v] = val != nil ? val : tiles_defaults[v];
186
    }
adds Map on MFD
Sébastien MARQUE authored on 2017-03-20
187

            
commit initial
Sébastien MARQUE authored on 2017-03-07
188
    props.globals.getNode('/instrumentation/transponder/id-code',1).setIntValue(1200);
189
    props.globals.getNode('/instrumentation/transponder/serviceable',1).setBoolValue(1);
remove hardcoded properties ...
Sébastien MARQUE authored on 2020-04-27
190
    props.globals.getNode('/autopilot/settings/heading-bug-deg', 1).alias(afcs.getNode('heading-bug-deg').getPath());
afcs improvements
Sébastien MARQUE authored on 2020-05-17
191
    props.globals.getNode('/autopilot/settings/target-alt-ft',1).alias(afcs.getNode('selected-alt-ft').getPath());
commit initial
Sébastien MARQUE authored on 2017-03-07
192
    props.globals.getNode('/autopilot/settings/target-speed-kt',1).setDoubleValue(0.0);
193
    props.globals.getNode('/autopilot/settings/vertical-speed-fpm',1).setDoubleValue(0.0);
194
    props.globals.getNode('/autopilot/internal/target-pitch-deg',1).setDoubleValue(0.0);
195
    props.globals.getNode('/autopilot/internal/flc-altitude-pitch-deg',1).setDoubleValue(0.0);
196
    props.globals.getNode('/autopilot/internal/flc-airspeed-pitch-deg',1).setDoubleValue(0.0);
197
    props.globals.getNode('/autopilot/internal/target-roll-deg',1).setDoubleValue(0.0);
198
    props.globals.getNode('/autopilot/locks/pitch',1).setValue('');
199
    props.globals.getNode('/autopilot/locks/roll',1).setValue('');
200
    props.globals.getNode('/autopilot/locks/passive-mode', 1).setIntValue(1);
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
201

            
allows zkv1000 to be install...
Sébastien MARQUE authored on 2017-05-11
202
    data.zkv1000_reldir = io.dirname(getprop('/nasal/zkv1000/file'));
203
    data.zkv1000_dir = string.normpath(
204
            io.dirname(getprop('/sim/aircraft-dir'))
205
            ~ '/'
206
            ~ string.replace(data.zkv1000_reldir, split('/', data.zkv1000_reldir)[0], '')
207
        ) ~ '/';
commit initial
Sébastien MARQUE authored on 2017-03-07
208
}
209

            
210
var load_nasal = func {
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
211
    var nasal_dir = data.zkv1000_dir ~ 'Nasal/';
commit initial
Sébastien MARQUE authored on 2017-03-07
212
    for (var i = 0; i < size(files_to_load); i += 1)
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
213
        io.load_nasal(nasal_dir ~ files_to_load[i], 'zkv1000');
commit initial
Sébastien MARQUE authored on 2017-03-07
214
    files_to_load = nil;
215
}
216

            
217
var load_multikey = func {
218
    fgcommand('loadxml', props.Node.new({
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
219
        'filename': data.zkv1000_dir ~ 'Systems/multikey.xml',
commit initial
Sébastien MARQUE authored on 2017-03-07
220
        'targetnode': '/input/keyboard/'
221
    }));
222
    multikey.init();
223
}
224

            
225
var zkv1000_init = func {
init listener needed only on...
Sébastien MARQUE authored on 2017-03-13
226
    removelistener(init);
commit initial
Sébastien MARQUE authored on 2017-03-07
227
    init_props();
path and relpath to zkv1000 ...
Sébastien MARQUE authored on 2017-04-17
228
    load_multikey();
adds AOA display
Sébastien MARQUE authored on 2017-04-15
229
    load_nasal();
improve auto-power
Sébastien MARQUE authored on 2020-05-16
230
    msg('loaded');
231
    if (zkv.getValue('auto-power')) {
232
        var prop = zkv.getNode('serviceable',1).getPath();
233
        data.listeners[prop] = setlistener(prop, zkv1000.powerOn, 0, 0);
234
    }
commit initial
Sébastien MARQUE authored on 2017-03-07
235
}
236

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