zkv1000 / zkv1000.nas /
Newer Older
134 lines | 6.464kb
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
9
    'display.nas',
10
    'core.nas',    # the scheduler and switch on button
11
];
Correction swap NAV tuning
Sébastien MARQUE authored on 2017-03-12
12
#    'menu.nas',    # manages menu entries andd perform some simple actions
commit initial
Sébastien MARQUE authored on 2017-03-07
13
#    'afcs.nas',    # Automatic Flight Control System
14
#    'routes.nas',  # manages flightplans and routes
15
#    'display.nas', # display messages and popups
16
#    'infos.nas',   # get informations from environment
17
#    'map.nas',     # moves the maps
18
#    'alerts.nas',  # in flight tests
19
#    'mud.nas',     # displays simple embedded GUI (Multi-Use Display)
20

            
21
var zkv = cdi = radios = alerts = infos = cursors = afcs = eis = nil;
22

            
23
var init_props = func {
24
    zkv = props.globals.getNode('/instrumentation/zkv1000',1);
25
    zkv.getNode('emission',1).setDoubleValue(0.5);
26
    zkv.getNode('body-emission',1).setDoubleValue(0.0);
27
    zkv.getNode('body-texture',1).setValue('');
28
    zkv.getNode('display-brightness-norm',1).setValue(0.5);
29

            
30
    radios = zkv.getNode('radios', 1);
31
    radios.getNode('nav1-selected',1).setIntValue(0);
32
    radios.getNode('nav1-standby',1).setIntValue(0);
33
    radios.getNode('nav2-selected',1).setIntValue(0);
34
    radios.getNode('nav2-standby',1).setIntValue(0);
35
    radios.getNode('nav-tune',1).setIntValue(0);
36
    radios.getNode('nav-freq-mhz',1).alias('/instrumentation/nav/frequencies/standby-mhz');
37
    radios.getNode('comm1-selected',1).setIntValue(1);
38
    radios.getNode('comm2-selected',1).setIntValue(0);
39
    radios.getNode('comm-tune',1).setIntValue(0);
40
    radios.getNode('comm-freq-mhz',1).alias('/instrumentation/comm/frequencies/standby-mhz');
41
    radios.getNode('xpdr-mode',1).setValue('GND');
adds BRG1/2 animation
Sébastien MARQUE authored on 2017-03-16
42
    radios.getNode('brg1-source',1).setValue('OFF');
43
    radios.getNode('brg2-source',1).setValue('OFF');
commit initial
Sébastien MARQUE authored on 2017-03-07
44

            
adds CDI
Sébastien MARQUE authored on 2017-03-18
45
    cdi = zkv.getNode('cdi', 1);
46
    cdi.getNode('source', 1).setValue('OFF');
47
    cdi.getNode('no-flag', 1).setBoolValue(0);
48
    cdi.getNode('FROM-flag', 1).alias('no-flag');
49
    cdi.getNode('TO-flag', 1).alias('no-flag');
50
    cdi.getNode('course', 1);
51
    cdi.getNode('course-deflection', 1);
52
    cdi.getNode('radial', 1);
53
    cdi.getNode('in-range', 1);
54

            
commit initial
Sébastien MARQUE authored on 2017-03-07
55
    alerts = zkv.getNode('alerts',1);
56
    alerts.getNode('traffic-proximity',1).setIntValue(0);
57
    alerts.getNode('marker-beacon', 1).setIntValue(0);
58
    alerts.getNode('warning', 1).setBoolValue(0);
59
    alerts.getNode('alert', 1).setBoolValue(0);
60
    alerts.getNode('message', 1).setValue('');
61

            
62
    afcs = zkv.getNode('afcs',1);
63
    afcs.getNode('fd-bars-visible',1).setBoolValue(0);
64
    afcs.getNode('alt-bug-visible',1).setBoolValue(0);
65
    afcs.getNode('heading-bug-deg',1).setDoubleValue(getprop('/orientation/heading-magnetic-deg'));
66
    afcs.getNode('target-pitch-deg',1).setDoubleValue(0.0);
adds OAT, TAS, GSPD, WindDat...
Sébastien MARQUE authored on 2017-03-15
67
    afcs.getNode('selected-alt-ft',1).setIntValue(2000);
commit initial
Sébastien MARQUE authored on 2017-03-07
68
    afcs.getNode('selected-alt-ft-diff',1).setDoubleValue(0.0);
69
    afcs.getNode('selected-ias-kt-diff',1).setDoubleValue(0.0);
70
    afcs.getNode('vertical-speed-fpm',1).setDoubleValue(0.0);
71
    afcs.getNode('roll-armed', 1).setBoolValue(0);
72
    afcs.getNode('pitch-armed', 1).setBoolValue(0);
73
    afcs.getNode('roll-armed-mode-text',1).setValue('');
74
    afcs.getNode('roll-active-mode-text',1).setValue('');
75
    afcs.getNode('roll-armed-mode',1).setIntValue(0);
76
    afcs.getNode('roll-active-mode',1).setIntValue(0);
77
    afcs.getNode('roll-active-mode-blink',1).setBoolValue(0);
78
    afcs.getNode('pit-armed-mode-text',1).setValue('');
79
    afcs.getNode('pit-active-mode-text',1).setValue('');
80
    afcs.getNode('pit-armed-mode',1).setIntValue(0);
81
    afcs.getNode('pit-active-mode',1).setIntValue(0);
82
    afcs.getNode('pit-active-mode-blink',1).setBoolValue(0);
83
    afcs.getNode('route',1);
84

            
85
    props.globals.getNode('/instrumentation/transponder/id-code',1).setIntValue(1200);
86
    props.globals.getNode('/instrumentation/transponder/serviceable',1).setBoolValue(1);
87
    props.globals.getNode('/autopilot/settings/heading-bug-deg', 1).alias('/instrumentation/zkv1000/afcs/heading-bug-deg');
88
    props.globals.getNode('/autopilot/settings/target-altitude-ft',1).setDoubleValue(0.0);
89
    props.globals.getNode('/autopilot/settings/target-speed-kt',1).setDoubleValue(0.0);
90
    props.globals.getNode('/autopilot/settings/vertical-speed-fpm',1).setDoubleValue(0.0);
91
    props.globals.getNode('/autopilot/internal/target-pitch-deg',1).setDoubleValue(0.0);
92
    props.globals.getNode('/autopilot/internal/flc-altitude-pitch-deg',1).setDoubleValue(0.0);
93
    props.globals.getNode('/autopilot/internal/flc-airspeed-pitch-deg',1).setDoubleValue(0.0);
94
    props.globals.getNode('/autopilot/internal/target-roll-deg',1).setDoubleValue(0.0);
95
    props.globals.getNode('/autopilot/locks/pitch',1).setValue('');
96
    props.globals.getNode('/autopilot/locks/roll',1).setValue('');
97
    props.globals.getNode('/autopilot/locks/passive-mode', 1).setIntValue(1);
98
}
99

            
100
var set_listeners = func {
101
#    setlistener('/instrumentation/nav[0]/radials/selected-deg', popup_course_info,  0, 0);
102
#    setlistener('/instrumentation/nav[1]/radials/selected-deg', popup_course_info,  0, 0);
103
#    setlistener('/instrumentation/zkv1000/afcs/heading-bug-deg',popup_hdg_info,     0, 0);
104
#    setlistener('/instrumentation/zkv1000/afcs/selected-alt-ft',popup_selected_alt, 0, 0);
105
#    setlistener('/instrumentation/zkv1000/radios/nav-tune',     setNavTune,         0, 0);
106
#    setlistener('/instrumentation/zkv1000/radios/comm-tune',    setCommTune,        0, 0);
107
}
108

            
109
var load_nasal = func {
110
    var zkv1000_dir = getprop('/sim/fg-aircraft') ~ '/Instruments-3d/zkv1000/Nasal/';
111
    for (var i = 0; i < size(files_to_load); i += 1)
112
        io.load_nasal(zkv1000_dir ~ files_to_load[i], 'zkv1000');
113
    files_to_load = nil;
114
}
115

            
116
var load_multikey = func {
117
    fgcommand('loadxml', props.Node.new({
118
        'filename': getprop('/sim/fg-aircraft') ~ '/Instruments-3d/zkv1000/Systems/multikey.xml',
119
        'targetnode': '/input/keyboard/'
120
    }));
121
    multikey.init();
122
}
123

            
124
var zkv1000_init = func {
init listener needed only on...
Sébastien MARQUE authored on 2017-03-13
125
    removelistener(init);
commit initial
Sébastien MARQUE authored on 2017-03-07
126
    load_multikey();
127
    load_nasal();
128
    init_props();
129
    set_listeners();
130
    print('zkv1000 loaded');
131
}
132

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