zkv1000 / Nasal / maps / route.nas /
Newer Older
391 lines | 14.578kb
adds route display on map
Sébastien MARQUE authored on 2017-05-11
1
# The following is largely inspired from the Extra500 Avidyne Entegra 9 
2
# https://gitlab.com/extra500/extra500.git
3
# Many thanks to authors: Dirk Dittmann and Eric van den Berg
4
var RouteItemClass = {
5
    new : func (canvasGroup, index) {
6
        var m = {parents:[RouteItemClass]};
7
        m.index = index;
8
        m.group = canvasGroup.createChild('group', 'Waypoint-' ~ index).setVisible(0);
9
        
10
        m.can = {
11
            Waypoint : m.group.createChild('path','icon-' ~ index)
12
                .setStrokeLineWidth(3)
13
                .setScale(1)
14
                .setColor(1,1,1)
15
                .setColorFill(1,1,1)
16
                .moveTo(-20, 0)
17
                .lineTo(-5, 5)
18
                .lineTo(0, 20)
19
                .lineTo(5, 5)
20
                .lineTo(20, 0)
21
                .lineTo(5, -5)
22
                .lineTo(0, -20)
23
                .lineTo(-5, -5)
24
                .close(),
25
            Label : m.group.createChild('text', 'wptLabel-' ~ index)
26
                .setFont('LiberationFonts/LiberationMono-Bold.ttf')
27
                .setTranslation(25,-25)
28
                .setFontSize(20, 1)
29
                .setColor(1,1,1)
30
                .setColorFill(1,1,1),
31
            track : canvasGroup.createChild('path','track-' ~ index)
32
                .setStrokeLineWidth(3)
33
                .setScale(1)
34
                .setColor(1,1,1)
35
                .setVisible(1),
36
        };
37
        return m;
38
    },
39
    setVisible : func (v) {
40
        me.group.setVisible(v);
41
        me.can.track.setVisible(v);
42
    },
43
    draw : func (wpt) {
44
        me.can.Label.setText(wpt[0].name);
45
        me.setColor(1,1,1);
46
        me.group.setGeoPosition(wpt[0].lat, wpt[0].lon);
47
        me.group.setVisible(1);
48
    },
49
    drawTrack : func (wpt) {
50
        var cmds = [];
51
        var coords = [];
52
        var cmd = canvas.Path.VG_MOVE_TO;
53
        me.can.track.setVisible(1);
54
        
55
        foreach (var pt; wpt) {
56
            append(coords, 'N' ~ pt.lat);
57
            append(coords, 'E' ~ pt.lon);
58
            append(cmds, cmd);
59
            cmd = canvas.Path.VG_LINE_TO;
60
        }
61
        me.can.track.setDataGeo(cmds, coords);
62
    },
63
    setColor : func (color) {
64
        me.can.Label.setColor(color).setColorFill(color);
65
        me.can.Waypoint.setColor(color).setColorFill(color);
66
    },
67
    del : func {
deletes route on display on ...
Sébastien MARQUE authored on 2017-05-20
68
        me.can.track.del();
adds route display on map
Sébastien MARQUE authored on 2017-05-11
69
        me.group.del();
70
        me = nil;
71
    },
72
};
73

            
74
var FMSIcon = {
75
    new : func (canvasGroup, text) {
76
        var m = {parents:[ FMSIcon ]};
77
        m.group = canvasGroup.createChild('group', 'FMS-' ~ text).setVisible(0);   
78
        m.can = {
79
            icon : m.group.createChild('path','FMS-icon' ~ text)
80
                .setStrokeLineWidth(3)
81
                .setScale(1)
82
                .setColor(0,1,0)
83
                .setColorFill(0,1,0)
84
                .moveTo(-15, 0)
85
                .lineTo(0, 15)
86
                .lineTo(15, 0)
87
                .lineTo(0, -15)
88
                .close(),
89
            label : m.group.createChild('text', 'FMS-label-' ~ text)
90
                .setFont('LiberationFonts/LiberationMono-Bold.ttf')
91
                .setTranslation(20,12)
92
                .setFontSize(32, 1)
93
                .setColor(0,1,0)
94
                .setColorFill(0,1,0)
95
                .setText(text),
96
        };
97
        return m;
98
    },
99
    setVisible : func (v)
100
        me.group.setVisible(v),
101
    setGeoPosition : func (lat, lon)
102
        me.group.setGeoPosition(lat, lon),
103
};
104

            
105
var FMSIconRTA = {
106
    new : func (canvasGroup, text) {
107
        var m = {parents:[FMSIconRTA]};
108
        m.group = canvasGroup.createChild('group', 'FMS-' ~ text).setVisible(0);   
109
        m.can = {
110
            icon : m.group.createChild('path','FMS-icon' ~ text)
111
                .setStrokeLineWidth(3)
112
                .setScale(1)
113
                .setColor(0,1,0)
114
                .setColorFill(0,1,0)
115
                .moveTo(-15, 0)
116
                .lineTo(0, 15)
117
                .lineTo(15, 0)
118
                .lineTo(0, -15)
119
                .close(),
120
            label : m.group.createChild('text', 'FMS-label-' ~ text)
121
                .setFont('LiberationFonts/LiberationMono-Bold.ttf')
122
                .setTranslation(-80,12)
123
                .setFontSize(32, 1)
124
                .setColor(0,1,0)
125
                .setColorFill(0,1,0)
126
                .setText(text),
127
        };
128
        return m;
129
    },
130
    setVisible : func (v)
131
        me.group.setVisible(v),
132
    setGeoPosition : func (lat, lon)
133
        me.group.setGeoPosition(lat, lon),
134
};
135

            
136
var MapRoute = {
137
    new : func (device, group) {
138
        var m = {parents:[ MapRoute ]}; 
139
        m.item       = [];
140
        m.itemIndex  = 0;
141
        m.visibility = 0;
142
        m.device = device;
143
        m.group = group.createChild('map', 'route map')
144
            .setTranslation(
145
                m.device.role == 'MFD' ? (m.device.data.mapview[0] + m.device.data.mapclip.left)/2 : 120,
146
                m.device.role == 'MFD' ? 400 : 600)
147
            .setVisible(m.visibility);
148
        m.group._node
149
            .getNode('range', 1).setDoubleValue(m.device.data['range-factor']);
150
        m.group._node
151
            .getNode('ref-lat', 1).setDoubleValue(data.lat);
152
        m.group._node
153
            .getNode('ref-lon', 1).setDoubleValue(data.lon);
154

            
155
        m.groupTrack = m.group.createChild('group', 'Track')
156
            .setVisible(1);
157
        m.groupOBS   = m.group.createChild('group', 'OBS')
158
            .setVisible(0);
159
        m.groupFMS   = m.group.createChild('group', 'FMS')
160
            .setVisible(1);
161
        
162
        m.can = {
163
            track : m.group.createChild('path', 'track')
164
                .setStrokeLineWidth(3)
165
                .setScale(1)
166
                .setColor(1,1,1),
167
            currentLeg : m.groupFMS.createChild('path', 'currentLeg')
168
                .setStrokeLineWidth(5)
169
                .setScale(1)
170
                .setColor(1,0,1),
171
            nextLeg : m.groupFMS.createChild('path', 'nextLeg')
172
                .setStrokeLineWidth(5)
173
                .setScale(1)
174
                .setStrokeDashArray([25,25])
175
                .setColor(1,0,1),
176
            obsCourse : m.groupOBS.createChild('path', 'obsCourse')
177
                .setStrokeLineWidth(5)
178
                .setScale(1)
179
                .setColor(1,0,1),
180
        };
181
        
182
        m.TOD = FMSIcon.new(m.groupFMS, 'TOD');
183
        m.TOC = FMSIcon.new(m.groupFMS, 'TOC');
184
        m.RTA = FMSIconRTA.new(m.groupFMS, 'RTA');
185
        
186
        m.track = {
187
            cmds  : [],
188
            coords: [],
189
        };
190
        m.currentLeg = {
191
            cmds: [ canvas.Path.VG_MOVE_TO, canvas.Path.VG_LINE_TO ],
192
            coords: [0, 0, 0, 0],
193
            index : -1,
194
        };
195
        m.nextLeg = {
196
            cmds: [ canvas.Path.VG_MOVE_TO, canvas.Path.VG_LINE_TO ],
197
            coords: [0, 0, 0, 0],
198
            index : -1,
199
        };
200
        
201
        m.mapOptions = {
202
            orientation : 0,
203
        };
204
        
205
        m.obsMode = 0;
206
        m.obsCourse = 0;
207
        m.obsWaypoint = RouteItemClass.new(m.groupOBS, 'obs_wp');
208
        m.obsCourseData = {
209
            cmds: [ canvas.Path.VG_MOVE_TO, canvas.Path.VG_LINE_TO ],
210
            coords: [0, 0, 0, 0]};
211

            
212
        m.flightPlan = [];
213
        m.currentWpIndex = getprop('/autopilot/route-manager/current-wp');
214
        
improve the selection of dis...
Sébastien MARQUE authored on 2017-12-30
215
        if (m.device.role == 'PFD')
216
            m.device.softkeys.colored.INSETROUTE = 1;
217
        if (m.device.role == 'MFD')
218
            m.device.softkeys.colored.MAPROUTE = 1;
219

            
adds route display on map
Sébastien MARQUE authored on 2017-05-11
220
        return m;
221
    },
poweroff improved
Sébastien MARQUE authored on 2020-05-16
222
    off: func {
223
        me.setVisible(0);
224
        me.group.setVisible(0);
225
        me.group.removeAllChildren();
226
    },
adds route display on map
Sébastien MARQUE authored on 2017-05-11
227
    update: func {
228
        me.visibility != 0 or return;
229
        me.group._node
230
            .getNode('range', 1).setDoubleValue(me.device.data['range-factor']);
231
        me.group._node.getNode('ref-lat', 1).setDoubleValue(data.lat);
232
        me.group._node.getNode('ref-lon', 1).setDoubleValue(data.lon);
233
    },
234
    setVisible : func (v) {
235
        if (me.visibility != v) {
236
            me.visibility = v;
237
            me.group.setVisible(v);
238
        }
239
    },
240
    updateOrientation : func (value) {
241
        me.mapOptions.orientation = value;
242
        me.can.obsCourse.setRotation((me.obsCourse - me.mapOptions.orientation) * D2R);
243
    },
244
    onFlightPlanChange : func {
245
        for (var i = size(me.item) - 1; i >= 0; i -= 1) {
246
            me.item[i].del();
247
            pop(me.item);
248
        }
249
        me.itemIndex = 0;
250
        me.flightPlan = [];
251
        var route = props.globals.getNode('/autopilot/route-manager/route');
252
        var planSize = getprop('/autopilot/route-manager/route/num');
253
        for (var i=0; i < planSize - 1; i+=1) {
254
            var wp0  = route.getNode('wp[' ~   i   ~ ']');
255
            var wp1  = route.getNode('wp[' ~ (i+1) ~ ']');
256
            append(me.flightPlan, [
257
                {
258
                    lat : wp0.getNode('latitude-deg').getValue(),
259
                    lon : wp0.getNode('longitude-deg').getValue(),
260
                    name: wp0.getNode('id').getValue(),
261
                },
262
                {
263
                    lat : wp1.getNode('latitude-deg').getValue(),
264
                    lon : wp1.getNode('longitude-deg').getValue(),
265
                    name: wp1.getNode('id').getValue(),
266
                }
267
            ]);
268
            append(me.item, RouteItemClass.new(me.groupTrack, i));
269
        }
270
        me.setVisible(me.device.map.visibility);
271
        me.drawWaypoints();
272
    },
273
    onCurrentWaypointChange : func (n) {
274
        me.currentWpIndex = n.getValue();
275
        me.currentLeg.index = me.currentWpIndex - 1;
276
        me.nextLeg.index = me.currentWpIndex;
277
        if (me.currentWpIndex == 0) {
278
            n.setIntValue(1);
279
            me.currentWpIndex = 1;
280
        }
281
        me.drawLegs();
282
    },
283
    drawWaypoints : func {
284
        me.visibility != 0 or return;
285
        var cmd = canvas.Path.VG_MOVE_TO;
286

            
287
        for (var i=0; i < size(me.flightPlan); i+=1) {
288
#            me.item[me.itemIndex].draw(me.flightPlan[i]);
289
            me.item[me.itemIndex].drawTrack(me.flightPlan[i]);
290
            me.itemIndex +=1;
291
        }
292
        me.groupTrack.setVisible(me.visibility and (me.obsMode == 0));
293
    },
294
    drawLegs : func {
295
        me.visibility != 0 or return;
296
        if (me.currentLeg.index >= 0 and me.currentLeg.index < size(me.flightPlan)) {
297
            var cmd = canvas.Path.VG_MOVE_TO;
298
            me.currentLeg.coords = [];
299
            me.currentLeg.cmds = [];
300
            foreach (var pt; me.flightPlan[me.currentLeg.index]) {
301
                append(me.currentLeg.coords, 'N' ~ pt.lat);
302
                append(me.currentLeg.coords, 'E' ~ pt.lon);
303
                append(me.currentLeg.cmds, cmd);
304
                cmd = canvas.Path.VG_LINE_TO;
305
            }
306
            me.can.currentLeg.setDataGeo(me.currentLeg.cmds, me.currentLeg.coords);
307
            me.can.currentLeg.setVisible(1);
308
        }
309
        else
310
            me.can.currentLeg.setVisible(0);
311
        
312
        if (me.nextLeg.index >= 1 and me.nextLeg.index < size(me.flightPlan)) {
313
            var cmd = canvas.Path.VG_MOVE_TO;
314
            me.nextLeg.coords = [];
315
            me.nextLeg.cmds = [];
316
            foreach (var pt; me.flightPlan[me.nextLeg.index]) {
317
                append(me.nextLeg.coords,'N' ~ pt.lat);
318
                append(me.nextLeg.coords,'E' ~ pt.lon);
319
                append(me.nextLeg.cmds,cmd);
320
                cmd = canvas.Path.VG_LINE_TO;
321
            }
322
            me.can.nextLeg.setDataGeo(me.nextLeg.cmds, me.nextLeg.coords);
323
            me.can.nextLeg.setVisible(1);
324
        }
325
        else
326
            me.can.nextLeg.setVisible(0);
327
    },
328
#    _onVisibilityChange : func {
329
#        me.group.setVisible(me.visibility and (me.obsMode == 0));
330
#        me.groupTrack.setVisible(me.visibility and (me.obsMode == 0));
331
#        me.groupFMS.setVisible(me.visibility and (me.obsMode == 0));
332
#        me.groupOBS.setVisible(me.visibility and (me.obsMode == 1));
333
#        me.TOD.setVisible(fms._dynamicPoint.TOD.visible and me.visibility);
334
#        me.TOC.setVisible(fms._dynamicPoint.TOC.visible and me.visibility);
335
#        me.RTA.setVisible(fms._dynamicPoint.RTA.visible and me.visibility);
336
#    },
337
#    _onFplReadyChange : func (n) {
338
#        me.TOD.setVisible(fms._dynamicPoint.TOD.visible and me.visibility);
339
#        me.TOC.setVisible(fms._dynamicPoint.TOC.visible and me.visibility);
340
#        me.RTA.setVisible(fms._dynamicPoint.RTA.visible and me.visibility);
341
#    },
342
#    _onFplUpdatedChange : func (n) {
343
#        if (fms._dynamicPoint.TOD.visible)
344
#            me.TOD.setGeoPosition(fms._dynamicPoint.TOD.position.lat, fms._dynamicPoint.TOD.position.lon);
345
#        if (fms._dynamicPoint.TOC.visible)
346
#            me.TOC.setGeoPosition(fms._dynamicPoint.TOC.position.lat, fms._dynamicPoint.TOC.position.lon);
347
#        if (fms._dynamicPoint.RTA.visible)
348
#            me.RTA.setGeoPosition(fms._dynamicPoint.RTA.position.lat, fms._dynamicPoint.RTA.position.lon);  
349
#        
350
#        me.TOD.setVisible(fms._dynamicPoint.TOD.visible and me.visibility);
351
#        me.TOC.setVisible(fms._dynamicPoint.TOC.visible and me.visibility);
352
#        me.RTA.setVisible(fms._dynamicPoint.RTA.visible and me.visibility);
353
#    },
354
#    _onObsModeChange : func (n) {
355
#        me.obsMode = n.getValue();
356
#        
357
#        if (me.obsMode==1) {
358
#            var wp = {
359
#                wp_lat : getprop('/instrumentation/gps[0]/scratch/latitude-deg'),
360
#                wp_lon : getprop('/instrumentation/gps[0]/scratch/longitude-deg'),
361
#                wp_name : getprop('/instrumentation/gps[0]/scratch/ident'),
362
#            };
363
#            var acLat = getprop('/position/latitude-deg');
364
#            var acLon = getprop('/position/longitude-deg');
365
#            
366
#            me.groupOBS.setGeoPosition(wp.wp_lat, wp.wp_lon);
367
#            
368
#            me.obsCourseData.coords = [
369
#                0,
370
#                0,
371
#                0,
372
#                5000,
373
#            ];
374
#            
375
#            me.obsWaypoint._can.Label.setText(wp.wp_name);
376
#            me.obsWaypoint.setColor(1,0,1);
377
#            me.obsWaypoint._group.setVisible(1);
378
#            
379
#            me.can.obsCourse.setData(me.obsCourseData.cmds,me.obsCourseData.coords);
380
#        }
381
#        
382
#        me.groupTrack.setVisible(me.visibility and (me.obsMode == 0));
383
#        me.groupFMS.setVisible(me.visibility and (me.obsMode == 0));
384
#        me.groupOBS.setVisible(me.visibility and (me.obsMode == 1));
385
#    },
386
#    _onObsCourseChange : func (n) {
387
#        me.obsCourse = n.getValue();
388
#        me.can.obsCourse.setRotation((me.obsCourse - me.mapOptions.orientation) * global.CONST.DEG2RAD);
389
#    },
390
};
391