zkv1000 / Nasal / maps / route.nas /
Newer Older
386 lines | 14.459kb
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
    },
222
    update: func {
223
        me.visibility != 0 or return;
224
        me.group._node
225
            .getNode('range', 1).setDoubleValue(me.device.data['range-factor']);
226
        me.group._node.getNode('ref-lat', 1).setDoubleValue(data.lat);
227
        me.group._node.getNode('ref-lon', 1).setDoubleValue(data.lon);
228
    },
229
    setVisible : func (v) {
230
        if (me.visibility != v) {
231
            me.visibility = v;
232
            me.group.setVisible(v);
233
        }
234
    },
235
    updateOrientation : func (value) {
236
        me.mapOptions.orientation = value;
237
        me.can.obsCourse.setRotation((me.obsCourse - me.mapOptions.orientation) * D2R);
238
    },
239
    onFlightPlanChange : func {
240
        for (var i = size(me.item) - 1; i >= 0; i -= 1) {
241
            me.item[i].del();
242
            pop(me.item);
243
        }
244
        me.itemIndex = 0;
245
        me.flightPlan = [];
246
        var route = props.globals.getNode('/autopilot/route-manager/route');
247
        var planSize = getprop('/autopilot/route-manager/route/num');
248
        for (var i=0; i < planSize - 1; i+=1) {
249
            var wp0  = route.getNode('wp[' ~   i   ~ ']');
250
            var wp1  = route.getNode('wp[' ~ (i+1) ~ ']');
251
            append(me.flightPlan, [
252
                {
253
                    lat : wp0.getNode('latitude-deg').getValue(),
254
                    lon : wp0.getNode('longitude-deg').getValue(),
255
                    name: wp0.getNode('id').getValue(),
256
                },
257
                {
258
                    lat : wp1.getNode('latitude-deg').getValue(),
259
                    lon : wp1.getNode('longitude-deg').getValue(),
260
                    name: wp1.getNode('id').getValue(),
261
                }
262
            ]);
263
            append(me.item, RouteItemClass.new(me.groupTrack, i));
264
        }
265
        me.setVisible(me.device.map.visibility);
266
        me.drawWaypoints();
267
    },
268
    onCurrentWaypointChange : func (n) {
269
        me.currentWpIndex = n.getValue();
270
        me.currentLeg.index = me.currentWpIndex - 1;
271
        me.nextLeg.index = me.currentWpIndex;
272
        if (me.currentWpIndex == 0) {
273
            n.setIntValue(1);
274
            me.currentWpIndex = 1;
275
        }
276
        me.drawLegs();
277
    },
278
    drawWaypoints : func {
279
        me.visibility != 0 or return;
280
        var cmd = canvas.Path.VG_MOVE_TO;
281

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