Source canvas MapStructure.nas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
################################################################################
## MapStructure mapping/charting framework for Nasal/Canvas, by Philosopher
## See: http://wiki.flightgear.org/MapStructure
###############################################################################
#######
## Dev Notes:
##
## - consider adding two types of SymbolLayers (sub-classes): Static (fixed positions, navaids/fixes) Dynamic (frequently updated, TFC/WXR, regardless of aircraft position)
## - FLT should be managed by aircraftpos.controller probably (interestign corner case actually)
## - consider adding an Overlay, i.e. for things like compass rose, lat/lon coordinate grid, but also tiled map data fetched on line
## - consider patching svg.nas to allow elements to be styled via the options hash by rewriting attributes, could even support animations that way
## - style handling/defaults should be moved to symbol files probably
## - consider pre-populating layer environments via bind() by providing APIs and fields for sane defaults:
## - parents
## - __self__
## - del (managing all listeners and timers)
## - searchCmd -> filtering
##
## APIs to be wrapped for each layer:
## logprint(), die(), debug.bt(), benchmark()
var _MP_dbg_lvl = LOG_DEBUG;
#var _MP_dbg_lvl = DEV_ALERT;
var makedie = func(prefix) func(msg) globals.die(prefix~" "~msg);
var __die = makedie("MapStructure");
##
# Try to call a method on an object with no arguments. Should
# work for both ghosts and hashes; catches the error only when
# the method doesn't exist -- errors raised during the call
# are re-thrown.
#
var try_aux_method = func(obj, method_name) {
var name = "<test%"~id(caller(0)[0])~">";
call(compile("obj."~method_name~"()", name), nil, var err=[]); # try...
#debug.dump(err);
if (size(err)) # ... and either leave caght or rethrow
if (err[1] != name)
die(err[0]);
}
##
# Combine a specific hash with a default hash, e.g. for
# options/df_options and style/df_style in a SymbolLayer.
#
var default_hash = func(opt, df) {
if (opt != nil and typeof(opt)=='hash') {
if (df != nil and opt != df and !isa(opt, df)) {
if (contains(opt, "parents"))
opt.parents ~= [df];
else
opt.parents = [df];
}
return opt;
} else return df;
}
##
# to be used for prototyping, performance & stress testing (especially with multiple instance driven by AI traffic)
#
var MapStructure_selfTest = func() {
var temp = {};
temp.dlg = canvas.Window.new([600,400],"dialog");
temp.canvas = temp.dlg.createCanvas().setColorBackground(1,1,1,0.5);
temp.root = temp.canvas.createGroup();
var TestMap = temp.root.createChild("map");
TestMap.setController("Aircraft position");
TestMap.setRange(25); # TODO: implement zooming/panning via mouse/wheel here, for lack of buttons :-/
TestMap.setTranslation(
temp.canvas.get("view[0]")/2,
temp.canvas.get("view[1]")/2
);
var r = func(name,vis=1,zindex=nil) return caller(0)[0];
# TODO: we'll need some z-indexing here, right now it's just random
# TODO: use foreach/keys to show all layers in this case by traversing SymbolLayer.registry direclty ?
# maybe encode implicit z-indexing for each lcontroller ctor call ? - i.e. preferred above/below order ?
foreach(var type; [r('TFC',0),r('APT'),r('DME'),r('VOR'),r('NDB'),r('FIX',0),r('RTE'),r('WPT'),r('FLT'),r('WXR'),r('APS'), ] )
TestMap.addLayer(factory: canvas.SymbolLayer, type_arg: type.name,
visible: type.vis, priority: type.zindex,
);
foreach(var type; [ r('OSM'), r('OpenAIP'), r('STAMEN') ]) {
TestMap.addLayer(factory: canvas.OverlayLayer, type_arg: type.name,
visible: type.vis, priority: type.zindex,
style: Styles.get(type.name),
options: Options.get(type.name) );
}
}; # MapStructure_selfTest
##
# wrapper for each cached element: keeps the canvas and
# texture map coordinates for the corresponding raster image.
#
var CachedElement = {
new: func(canvas_path, name, source, size, offset) {
var m = {parents:[CachedElement] };
if (isa(canvas_path, canvas.Canvas)) {
canvas_path = canvas_path.getPath();
}
m.canvas_src = canvas_path;
m.name = name;
m.source = source;
m.size = size;
m.offset = offset;
return m;
},
render: func(group, trans0=0, trans1=0) {
# create a raster image child in the render target/group
var n = group.createChild("image", me.name)
.setFile(me.canvas_src)
.setSourceRect(me.source, 0)
.setSize(me.size)
.setTranslation(trans0,trans1);
n.createTransform().setTranslation(me.offset);
return n;
},
}; # of CachedElement
var SymbolCache = {
# We can draw symbols either with left/top, centered,
# or right/bottom alignment. Specify two in a vector
# to mix and match, e.g. left/centered would be
# [SymbolCache.DRAW_LEFT_TOP,SymbolCache.DRAW_CENTERED]
DRAW_LEFT_TOP: 0.0,
DRAW_CENTERED: 0.5,
DRAW_RIGHT_BOTTOM: 1.0,
new: func(dim...) {
var m = { parents:[SymbolCache] };
# to keep track of the next free caching spot (in px)
m.next_free = [0, 0];
# to store each type of symbol
m.dict = {};
if (size(dim) == 1 and typeof(dim[0]) == 'vector')
dim = dim[0];
# Two sizes: canvas and symbol
if (size(dim) == 2) {
var canvas_x = var canvas_y = dim[0];
var image_x = var image_y = dim[1];
# Two widths (canvas and symbol) and then height/width ratio
} else if (size(dim) == 3) {
var (canvas_x,image_x,ratio) = dim;
var canvas_y = canvas_x * ratio;
var image_y = image_x * ratio;
# Explicit canvas and symbol widths/heights
} else if (size(dim) == 4) {
var (canvas_x,canvas_y,image_x,image_y) = dim;
}
m.canvas_sz = [canvas_x, canvas_y];
m.image_sz = [image_x, image_y];
# allocate a canvas
m.canvas_texture = canvas.new( {
"name": "SymbolCache"~canvas_x~'x'~canvas_y,
"size": m.canvas_sz,
"view": m.canvas_sz,
"mipmapping": 1
});
m.canvas_texture.setColorBackground(0, 0, 0, 0); #rgba
# add a placement
m.canvas_texture.addPlacement( {"type": "ref"} );
m.path = m.canvas_texture.getPath();
m.root = m.canvas_texture.createGroup("entries");
# TODO: register a reset/re-init listener to optionally purge/rebuild the cache ?
return m;
},
##
# Add a cached symbol based on a drawing callback.
# @note this assumes that the object added by callback
# fits into the dimensions provided to the constructor,
# and any larger dimensionalities are liable to be cut off.
#
add: func(name, callback, draw_mode=0) {
if (typeof(draw_mode) == 'scalar')
var draw_mode0 = var draw_mode1 = draw_mode;
else var (draw_mode0,draw_mode1) = draw_mode;
# get canvas texture that we use as cache
# get next free spot in texture (column/row)
# run the draw callback and render into a new group
var gr = me.root.createChild("group",name);
# draw the symbol into the group
callback(gr);
gr.update(); # if we need sane output from getTransformedBounds()
#debug.dump ( gr.getTransformedBounds() );
gr.setTranslation( me.next_free[0] + me.image_sz[0]*draw_mode0,
me.next_free[1] + me.image_sz[1]*draw_mode1);
# get assumed the bounding box, i.e. coordinates for texture map
var coords = me.next_free~me.next_free;
foreach (var i; [0,1])
coords[i+1] += me.image_sz[i];
foreach (var i; [0,1])
coords[i*2+1] = me.canvas_sz[i] - coords[i*2+1];
# get the offset we used to position correctly in the bounds of the canvas
var offset = [-me.image_sz[0]*draw_mode0, -me.image_sz[1]*draw_mode1];
# update next free position in cache (column/row)
me.next_free[0] += me.image_sz[0];
if (me.next_free[0] >= me.canvas_sz[0])
{ me.next_free[0] = 0; me.next_free[1] += me.image_sz[1] }
if (me.next_free[1] >= me.canvas_sz[1])
__die("SymbolCache: ran out of space after adding '"~name~"'");
if (contains(me.dict, name)) print("MapStructure/SymbolCache Warning: Overwriting existing cache entry named:", name);
# store texture map coordinates in lookup map using the name as identifier
return me.dict[name] = CachedElement.new(
canvas_path: me.path,
name: name,
source: coords,
size:me.image_sz,
offset: offset,
);
}, # add()
get: func(name) {
return me.dict[name];
}, # get()
};
# Excerpt from gen module
var denied_symbols = [
"", "func", "if", "else", "var",
"elsif", "foreach", "for",
"forindex", "while", "nil",
"return", "break", "continue",
];
var issym = func(string) {
foreach (var d; denied_symbols)
if (string == d) return 0;
var sz = size(string);
var s = string[0];
if ((s < `a` or s > `z`) and
(s < `A` or s > `Z`) and
(s != `_`)) return 0;
for (var i=1; i<sz; i+=1)
if (((s=string[i]) != `_`) and
(s < `a` or s > `z`) and
(s < `A` or s > `Z`) and
(s < `0` or s > `9`)) return 0;
return 1;
};
var internsymbol = func(symbol) {
#assert("argument not a symbol", issym, symbol);
if (!issym(symbol)) die("argument not a symbol");
var get_interned = compile("""
keys({"~symbol~":})[0]
""");
return get_interned();
};
var tryintern = func(symbol) issym(symbol) ? internsymbol(symbol) : symbol;
# End excerpt
# Helpers for below
var unescape = func(s) string.replace(s~"", "'", "\\'");
var hashdup = func(_,rkeys=nil) {
var h={}; var k=rkeys!=nil?rkeys:members(_);
foreach (var k;k) h[tryintern(k)]=member(_,k); h
}
var opt_member = func(h,k) {
if (contains(h, k)) return h[k];
if (contains(h, "parents")) {
var _=h.parents;
for (var i=0;i<size(_);i+=1){
var v = opt_member(_[i], k);
if (v != nil) return v;
}
}
return nil;
}
var member = func(h,k) {
if (contains(h, k)) return h[k];
if (contains(h, "parents")) {
var _=h.parents;
for (var i=0;i<size(_);i+=1)
if (contains(_[i], k)) return _[i][k];
elsif (contains(_[i], "parents") and size(_[i].parents))
{_=h.parents~_[i+1:];i=0}
}
die("member not found: '"~unescape(k)~"'");
}
var _in = func(vec,k) { foreach (var _;vec) if(_==k)return 1; 0; }
var members = func(h,vec=nil) {
if (vec == nil) vec = [];
foreach (var k; keys(h))
if (k == "parents")
foreach (var p; h[k])
members(p,vec);
elsif (!_in(vec,k))
append(vec, k);
return vec;
}
var serialize = func(m,others=nil) {
var t = typeof(m);
if (t == 'scalar')
if (num(m) != nil)
return m~"";
else return "'" ~ unescape(m) ~ "'";
if (others == nil) others = {};
var i = id(m);
if (contains(others, i)) return "...";
others[i] = nil;
if (t == 'vector') {
var ret = "[";
foreach (var l; m) {
if (ret != "[") ret ~= ",";
ret ~= serialize(l,others);
}
return ret~"]";
} else die("type not supported for style serialization: '"~t~"'");
}
# Drawing functions have the form:
# func(group) { group.createChild(...).set<Option>(<option>); ... }
# The style is passed as (essentially) their local namespace/variables,
# while the group is a regular argument.
var call_draw = func(draw, style, arg=nil, relevant_keys=nil) {
return call(draw, arg, nil, hashdup(style,relevant_keys));
}
# Serialize a style into a string.
var style_string = func(style, relevant_keys=nil) {
if (relevant_keys == nil) relevant_keys = members(style);
relevant_keys = sort(relevant_keys, cmp);
var str = "";
foreach (var k; relevant_keys) {
var m = member(style,k);
if (m == nil) continue;
if (str) str ~= ";";
str ~= k ~ ":";
str ~= serialize(m);
}
return str;
}
##
# A class to mix styling and caching. Using the above helpers it
# serializes style hashes.
#
var StyleableCacheable = {
##
# Construct an object.
# @param name Prefix to use for entries in the cache
# @param draw_func Function for the cache that will draw the
# symbol onto a group using the style parameters.
# @param cache The #SymbolCache to use for these symbols.
# @param draw_mode See #SymbolCache
# @param relevant_keys A list of keys for the style used by the
# draw_func. Although it defaults to all
# available keys, it is highly recommended
# that it be specified.
#
new: func(name, draw_func, cache, draw_mode=0, relevant_keys=nil) {
return {
parents: [StyleableCacheable],
_name: name,
_draw_func: draw_func,
_cache: cache,
_draw_mode: draw_mode,
relevant_keys: relevant_keys,
};
},
# Note: configuration like active/inactive needs
# to also use the passed style hash, unless it is
# chosen not to cache symbols that are, e.g., active.
request: func(style) {
var s = style_string(style, me.relevant_keys);
#debug.dump(style, s);
var s1 = me._name~s;
var c = me._cache.get(s1);
if (c != nil) return c;
return me.draw(style,s1);
},
render: func(element, style) {
var c = me.request(style);
c.render(element);
},
draw: func(style,s1) {
var fn = func call_draw(me._draw_func, style, arg, me.relevant_keys);
me._cache.add(s1, fn, me._draw_mode);
},
};
##
# A base class for Symbols placed on a map.
#
# Note: for the derived objects, the element is stored as obj.element.
# This is also part of the object's parents vector, which allows
# callers to use obj.setVisible() et al. However, for code that
# manipulates the element's path (if it is a Canvas Path), it is best
# to use obj.element.addSegmentGeo() et al. for consistency.
#
var Symbol = {
# Static/singleton:
registry: {},
add: func(type, class)
me.registry[type] = class,
get: func(type)
if ((var class = me.registry[type]) == nil)
__die("Symbol.get():unknown type '"~type~"'");
else return class,
# Calls corresonding symbol constructor
# @param group #Canvas.Group to place this on.
# @param layer The #SymbolLayer this is a child of.
new: func(type, group, layer, arg...) {
var ret = call((var class = me.get(type)).new, [group, layer]~arg, class);
ret.element.set("symbol-type", type);
return ret;
},
# Private constructor:
_new: func(m) {
m.style = m.layer.style;
m.options = m.layer.options;
if (m.controller != nil) {
temp = m.controller.new(m,m.model);
if (temp != nil)
m.controller = temp;
}
else __die("Symbol._new(): default controller not found");
},
# Non-static:
df_controller: nil, # default controller -- Symbol.Controller by default, see below
# Update the drawing of this object (position and others).
update: func()
__die("Abstract Symbol.update(): not implemented for this symbol type!"),
draw: func() ,
del: func() {
if (me.controller != nil)
me.controller.del(me, me.model);
try_aux_method(me.model, "del");
},
# Add a text element with styling
newText: func(text=nil, color=nil) {
var t = me.element.createChild("text")
.setDrawMode( canvas.Text.TEXT )
.setText(text)
.setFont(me.layer.style.font)
.setFontSize(me.layer.style.font_size);
if (color != nil)
t.setColor(color);
return t;
},
# Helper method that can be used to create a formatted String using
# values extracted from the current model.
#
# SYNOPSIS:
#
# symbol.formattedString(format, model_property_names)
#
# Arguments:
# - format: string
# - model_property_names: a vector of strings representing the model
# property names to be used as arguments
#
# EXAMPLE:
#
# var label = waypoint.formattedString('Waypoint %s: lat %.4f, lng %.4f', [model.id, model.lat, model.lon]);
formattedString: func(frmt, model_props){
if(me.model == nil) return frmt;
var args = [];
foreach(var prop; model_props){
if(contains(me.model, prop)){
var val = me.model[prop];
var tp = typeof(val);
if(tp != 'scalar'){
val = '';
#logprint(LOG_WARN, "formattedString: invalid type for "~prop~" (" ~ tp ~ ")");
} else {
append(args, val);
}
}
}
return call(sprintf, [frmt] ~ args);
},
# Wrapper method for accessing options. It allows to pass a default value
# if the requested option is not defined.
#
# EXAMPLE:
# var ok = (contains(me.options, 'enabled') ? me.options.enabled : 0);
# var ok = me.getOption('enabled', 0);
getOption: func(name, default = nil){
var opt = me.options;
if(opt == nil)
opt = me.layer.options;
if(opt == nil) return default;
var val = opt_member(opt, name);
if(val == nil) return default;
return val;
},
# Wrapper method for accessing style. It allows to pass a default value
# if the requested style is not defined.
# It also automatically resolves style properties when they're defined as
# functions, by calling the corresponding function using the 'me' context
#
# EXAMPLE:
#
# me.style = {
# color: [1,1,1],
# line_color: func(){
# me.model.tuned ? [0,0,1] : [1,1,1]
# }
# }
# var color = me.getStyle('color'); # --> [1,1,1]
# me.model.tuned = 1;
# var line_color = me.getStyle('line_color'); # --> [0,0,1]
# var txt_color = me.getStyle('text_color', [1,1,1]); # --> [1,1,1]
getStyle: func(name, default = nil){
var st = me.style;
if(st == nil)
st = me.layer.style;
if(st == nil) return default;
var val = opt_member(st, name);
if(typeof(val) == 'func'){
val = (call(val,[],me));
}
if(val == nil) return default;
return val;
},
getLabelFromModel: func(default_val = nil){
if(me.model == nil) return default_val;
if(default_val == nil and contains(me.model, 'id'))
default_val = me.model.id;
var label_content = me.getOption('label_content');
if(label_content == nil) return default_val;
if(typeof(label_content) == 'scalar')
label_content = [label_content];
var format_s = me.getOption('label_format');
var label = '';
if(format_s == nil){
format_s = "%s";
}
return me.formattedString(format_s, label_content);
},
# Executes callback function specified by the first argument with
# variable arguments. The callback is executed within the 'me' context.
# Callbacks must be defined inside the options hash.
#
# EXAMPLE:
#
# me.options = {
# dump_callback: func(){
# print('Waypoint '~ me.model.id);
# }
# }
# me.callback('dump');
callback: func(name, args...){
name = name ~'_callback';
var f = me.getOption(name);
if(typeof(f) == 'func'){
return call(f, args, me);
}
}
}; # of Symbol
Symbol.Controller = {
# Static/singleton:
registry: {},
add: func(type, class)
me.registry[type] = class,
get: func(type)
if ((var class = me.registry[type]) == nil)
__die("Symbol.Controller.get(): unknown type '"~type~"'");
else return class,
# Calls corresonding symbol controller constructor
# @param model Model to control this object (position and other attributes).
new: func(type, symbol, model, arg...)
return call((var class = me.get(type)).new, [symbol, model]~arg, class),
# Non-static:
# Update anything related to a particular model. Returns whether the object needs updating:
update: func(symbol, model) return 1,
# Delete an object from this controller (or delete the controller itself):
del: func(symbol, model) ,
# Return whether this model/symbol is (should be) visible:
isVisible: func(model) return 1,
# Get the position of this symbol/object:
getpos: func(model) , # default provided below
}; # of Symbol.Controller
# Add this to Symbol as the default controller, but replace the Static .new() method with a blank
Symbol.df_controller = { parents:[Symbol.Controller], new: func nil };
var getpos_fromghost = func(positioned_g)
return [positioned_g.lat, positioned_g.lon];
# to add support for additional ghosts, just append them to the vector below, possibly at runtime:
var supported_ghosts = ['positioned','Navaid','Fix','flightplan-leg','FGAirport'];
var is_positioned_ghost = func(obj) {
var gt = ghosttype(obj);
foreach(var ghost; supported_ghosts) {
if (gt == ghost) return 1; # supported ghost was found
}
return 0; # not a known/supported ghost
};
var register_supported_ghost = func(name) append(supported_ghosts, name);
# Generic getpos: get lat/lon from any object:
# (geo.Coord and positioned ghost currently)
Symbol.Controller.getpos = func(obj, p=nil) {
if (obj == nil) __die("Symbol.Controller.getpos(): received nil");
if (p == nil) {
var ret = Symbol.Controller.getpos(obj, obj);
if (ret != nil) return ret;
if (contains(obj, "parents")) {
foreach (var p; obj.parents) {
var ret = Symbol.Controller.getpos(obj, p);
if (ret != nil) return ret;
}
}
debug.dump(obj);
__die("Symbol.Controller.getpos(): no suitable getpos() found! Of type: "~typeof(obj));
} else {
if (typeof(p) == 'ghost')
if ( is_positioned_ghost(p) )
return getpos_fromghost(obj);
else
__die("Symbol.Controller.getpos(): bad/unsupported ghost of type '"~ghosttype(obj)~"' (see MapStructure.nas Symbol.Controller.getpos() to add new ghosts)");
if (typeof(p) == 'hash')
if (p == geo.Coord)
return subvec(obj.latlon(), 0, 2);
if (p == props.Node)
return [
obj.getValue("position/latitude-deg") or obj.getValue("latitude-deg"),
obj.getValue("position/longitude-deg") or obj.getValue("longitude-deg")
];
if (contains(p,'lat') and contains(p,'lon'))
return [obj.lat, obj.lon];
return nil;
}
};
Symbol.Controller.equals = func(l, r, p=nil) {
if (l == r) return 1;
if (p == nil) {
var ret = Symbol.Controller.equals(l, r, l);
if (ret != nil) return ret;
if (contains(l, "parents")) {
foreach (var p; l.parents) {
var ret = Symbol.Controller.equals(l, r, p);
if (ret != nil) return ret;
}
}
debug.dump(l);
__die("Symbol.Controller: no suitable equals() found! Of type: "~typeof(l));
} else {
if (typeof(p) == 'ghost')
if ( is_positioned_ghost(p) )
return l.id == r.id;
else
__die("Symbol.Controller: bad/unsupported ghost of type '"~ghosttype(l)~"' (see MapStructure.nas Symbol.Controller.getpos() to add new ghosts)");
if (typeof(p) == 'hash')
# Somewhat arbitrary convention:
# * l.equals(r) -- instance method, i.e. uses "me" and "arg[0]"
# * parent._equals(l,r) -- class method, i.e. uses "arg[0]" and "arg[1]"
if (contains(p, "equals"))
return l.equals(r);
if (contains(p, "_equals"))
return p._equals(l,r);
}
return nil; # scio correctum est
};
var assert_m = func(hash, member)
if (!contains(hash, member))
__die("assert_m: required field not found: '"~member~"'");
var assert_ms = func(hash, members...)
foreach (var m; members)
if (m != nil) assert_m(hash, m);
##
# Implementation for a particular type of symbol (for the *.symbol files)
# to handle details.
#
var DotSym = {
parents: [Symbol],
element_id: nil,
# Static/singleton:
makeinstance: func(name, hash) {
if (!isa(hash, DotSym))
__die("DotSym: OOP error");
return Symbol.add(name, hash);
},
# For the instances returned from makeinstance:
# @param group The #Canvas.Group to add this to.
# @param layer The #SymbolLayer this is a child of.
# @param model A correct object (e.g. positioned ghost) as
# expected by the .draw file that represents
# metadata like position, speed, etc.
# @param controller Optional controller "glue". Each method
# is called with the model as the only argument.
new: func(group, layer, model, controller=nil) {
if (me == nil) __die();
var m = {
parents: [me],
group: group,
layer: layer,
model: model,
map: layer.map,
controller: controller == nil ? me.df_controller : controller,
element: group.createChild(
me.element_type, me.element_id
),
};
append(m.parents, m.element);
Symbol._new(m);
m.init();
return m;
},
del: func() {
logprint(_MP_dbg_lvl, "DotSym.del()");
me.deinit();
call(Symbol.del, nil, me);
me.element.del();
},
# Default wrappers:
init: func() me.draw(),
deinit: func(),
update: func() {
if (me.controller != nil) {
if (!me.controller.update(me, me.model)) return;
elsif (!me.controller.isVisible(me.model)) {
me.element.hide();
return;
}
} else
me.element.show();
me.draw();
if(me.getOption('disable_position', 0)) return;
var pos = me.controller.getpos(me.model);
if (size(pos) == 2)
pos~=[nil]; # fall through
if (size(pos) == 3)
var (lat,lon,rotation) = pos;
else __die("DotSym.update(): bad position: "~debug.dump(pos));
# print(me.model.id, ": Position lat/lon: ", lat, "/", lon);
me.element.setGeoPosition(lat,lon);
if (rotation != nil)
me.element.setRotation(rotation);
},
}; # of DotSym
##
# Small wrapper for DotSym: parse a SVG on init().
#
var SVGSymbol = {
parents:[DotSym],
element_type: "group",
cacheable: 0,
init: func() {
me.callback('init_before');
var opt_path = me.getStyle('svg_path');
if(opt_path != nil)
me.svg_path = opt_path;
if (!me.cacheable) {
if(me.svg_path != nil and me.svg_path != '')
canvas.parsesvg(me.element, me.svg_path);
# hack:
if (var scale = me.layer.style['scale_factor'])
me.element.setScale(scale);
if ((var transl = me.layer.style['translate']) != nil)
me.element.setTranslation(transl);
} else {
__die("cacheable not implemented yet!");
}
me.callback('init_after');
me.draw();
},
draw: func{
me.callback('draw');
},
}; # of SVGSymbol
##
# wrapper for symbols based on raster images (i.e. PNGs)
# TODO: generalize this and port WXR.symbol accordingly
#
var RasterSymbol = {
parents:[DotSym],
element_type: "group",
cacheable: 0,
size: [32,32], scale: 1,
init: func() {
if (!me.cacheable) {
me.element.createChild("image", me.name)
.setFile(me.file_path)
.setSize(me.size)
.setScale(me.scale);
} else {
__die("cacheable not implemented yet!");
}
me.draw();
},
draw: func,
}; # of RasterSymbol
var LineSymbol = {
parents:[Symbol],
element_id: nil,
needs_update: 1,
# Static/singleton:
makeinstance: func(name, hash) {
if (!isa(hash, LineSymbol))
__die("LineSymbol: OOP error");
return Symbol.add(name, hash);
},
# For the instances returned from makeinstance:
new: func(group, layer, model, controller=nil) {
if (me == nil) __die("Need me reference for LineSymbol.new()");
if (typeof(model) != 'vector') {
if(typeof(model) == 'hash'){
if(!contains(model, 'path'))
__die("LineSymbol.new(): model hash requires path");
}
else __die("LineSymbol.new(): need a vector of points or a hash");
}
var m = {
parents: [me],
group: group,
layer: layer,
model: model,
controller: controller == nil ? me.df_controller : controller,
element: group.createChild(
"path", me.element_id
),
};
append(m.parents, m.element);
Symbol._new(m);
m.init();
return m;
},
# Non-static:
draw: func() {
if (!me.needs_update) return;
me.callback('draw_before');
logprint(_MP_dbg_lvl, "redrawing a LineSymbol "~me.layer.type);
me.element.reset();
var cmds = [];
var coords = [];
var cmd = canvas.Path.VG_MOVE_TO;
var path = me.model;
if(typeof(path) == 'hash'){
path = me.model.path;
if(path == nil)
__die("LineSymbol model requires a 'path' member (vector)");
}
foreach (var m; path) {
if(size(keys(m)) >= 2){
var (lat,lon) = me.controller.getpos(m);
append(coords,"N"~lat);
append(coords,"E"~lon);
append(cmds,cmd);
cmd = canvas.Path.VG_LINE_TO;
} else {
cmd = canvas.Path.VG_MOVE_TO;
}
}
me.element.setDataGeo(cmds, coords);
me.element.update(); # this doesn't help with flickering, it seems
me.callback('draw_after');
},
del: func() {
logprint(_MP_dbg_lvl, "LineSymbol.del()");
me.deinit();
call(Symbol.del, nil, me);
me.element.del();
},
# Default wrappers:
init: func() me.draw(),
deinit: func(),
update: func() {
if (me.controller != nil) {
if (!me.controller.update(me, me.model)) return;
elsif (!me.controller.isVisible(me.model)) {
me.element.hide();
return;
}
} else
me.element.show();
me.draw();
},
}; # of LineSymbol
##
# Base class for a SymbolLayer, e.g. MultiSymbolLayer or SingleSymbolLayer.
#
var SymbolLayer = {
# Default implementations/values:
df_controller: nil, # default controller
df_priority: nil, # default priority for display sorting
df_style: nil,
df_options: nil,
type: nil, # type of #Symbol to add (MANDATORY)
id: nil, # id of the group #canvas.Element (OPTIONAL)
# Static/singleton:
registry: {},
add: func(type, class)
me.registry[type] = class,
get: func(type) {
foreach(var invalid; var invalid_types = [nil,'vector','hash'])
if ( (var t=typeof(type)) == invalid) __die(" invalid SymbolLayer type (non-scalar) of type:"~t);
if ((var class = me.registry[type]) == nil)
__die("SymbolLayer.get(): unknown type '"~type~"'");
else return class;
},
# Calls corresonding layer constructor
# @param group #Canvas.Group to place this on.
# @param map The #Canvas.Map this is a member of.
# @param controller A controller object.
# @param style An alternate style.
# @param options Extra options/configurations.
# @param visible Initially set it up as visible or invisible.
new: func(type, group, map, controller=nil, style=nil, options=nil, visible=1, arg...) {
# XXX: Extra named arguments are (obviously) not preserved well...
var ret = call((var class = me.get(type)).new, [group, map, controller, style, options, visible]~arg, class);
ret.group.set("layer-type", type);
return ret;
},
# Private constructor:
_new: func(m, style, controller, options) {
# print("SymbolLayer setup options:", m.options!=nil);
m.style = default_hash(style, m.df_style);
m.options = default_hash(options, m.df_options);
if (controller == nil)
controller = m.df_controller;
assert_m(controller, "parents");
if (controller.parents[0] == SymbolLayer.Controller)
controller = controller.new(m);
assert_m(controller, "parents");
assert_m(controller.parents[0], "parents");
if (controller.parents[0].parents[0] != SymbolLayer.Controller)
__die("MultiSymbolLayer: OOP error");
if(options != nil){
var listeners = opt_member(controller, 'listeners');
var listen = opt_member(options, 'listen');
if (listen != nil and listeners != nil){
var listen_tp = typeof(listen);
if(listen_tp != 'vector' and listen_tp != 'scalar')
__die("Options 'listen' cannot be a "~ listen_tp);
if(typeof(listen) == 'scalar')
listen = [listen];
foreach(var node_name; listen){
var node = opt_member(options, node_name);
if(node == nil)
node = node_name;
append(controller.listeners,
setlistener(node, func call(m.update,[],m),0,0));
}
}
}
m.controller = controller;
},
# For instances:
del: func() if (me.controller != nil) { me.controller.del(); me.controller = nil },
update: func() __die("Abstract SymbolLayer.update() not implemented for this Layer"),
};
# Class to manage controlling a #SymbolLayer.
# Currently handles:
# * Searching for new symbols (positioned ghosts or other objects with unique id's).
# * Updating the layer (e.g. on an update loop or on a property change).
SymbolLayer.Controller = {
# Static/singleton:
registry: {},
add: func(type, class)
me.registry[type] = class,
get: func(type)
if ((var class = me.registry[type]) == nil)
__die("unknown type '"~type~"'");
else return class,
# Calls corresonding controller constructor
# @param layer The #SymbolLayer this controller is responsible for.
new: func(type, layer, arg...)
return call((var class = me.get(type)).new, [layer]~arg, class),
# Default implementations for derived classes:
# @return List of positioned objects.
searchCmd: func()
__die("Abstract method searchCmd() not implemented for this SymbolLayer.Controller type!"),
addVisibilityListener: func() {
var m = me;
append(m.listeners, setlistener(
m.layer._node.getNode("visible",1),
func m.layer.update(),
#compile("m.layer.update()", "<layer visibility on node "~m.layer._node.getNode("visible").getPath()~" for layer "~m.layer.type~">"),
0,0
));
},
# Default implementations for derived objects:
# For SingleSymbolLayer: retreive the model object
getModel: func me._model, # assume they store it here - otherwise they can override this
}; # of SymbolLayer.Controller
##
# A layer that manages a list of symbols (using delta positioned handling
# with a searchCmd to retreive placements).
#
var MultiSymbolLayer = {
parents: [SymbolLayer],
# Default implementations/values:
# @param group A group to place this on.
# @param map The #Canvas.Map this is a member of.
# @param controller A controller object (parents=[SymbolLayer.Controller])
# or implementation (parents[0].parents=[SymbolLayer.Controller]).
# @param style An alternate style.
# @param options Extra options/configurations.
# @param visible Initially set it up as visible or invisible.
new: func(group, map, controller=nil, style=nil, options=nil, visible=1) {
#print("Creating new SymbolLayer instance");
if (me == nil) __die("MultiSymbolLayer constructor needs to know its parent class");
var m = {
parents: [me],
map: map,
group: group.createChild("group", me.type),
list: [],
};
append(m.parents, m.group);
m.setVisible(visible);
# N.B.: this has to be here for the controller
m.searcher = geo.PositionedSearch.new(me.searchCmd, me.onAdded, me.onRemoved, m);
SymbolLayer._new(m, style, controller, options);
m.update();
return m;
},
update: func() {
if (!me.getVisible())
return;
#debug.warn("update traceback for "~me.type);
var updater = func {
me.searcher.update();
foreach (var e; me.list)
e.update();
}
if (me.options != nil and me.options['update_wrapper'] !=nil) {
me.options.update_wrapper( me, updater ); # call external wrapper (usually for profiling purposes)
} else {
updater();
}
},
del: func() {
logprint(_MP_dbg_lvl, "MultiSymbolLayer.del()");
foreach (var e; me.list)
e.del();
call(SymbolLayer.del, nil, me);
},
delsym: func(model) {
forindex (var i; me.list) {
var e = me.list[i];
if (Symbol.Controller.equals(e.model, model)) {
# Remove this element from the list
# TODO: maybe C function for this? extend pop() to accept index?
var prev = subvec(me.list, 0, i);
var next = subvec(me.list, i+1);
me.list = prev~next;
e.del();
return 1;
}
}
return 0;
},
searchCmd: func() {
if (me.map.getPosCoord() == nil or me.map.getRange() == nil) {
print("Map not yet initialized, returning empty result set!");
return []; # handle maps not yet fully initialized
}
var result = me.controller.searchCmd();
# some hardening
var type=typeof(result);
if(type != 'nil' and type != 'vector')
__die("MultiSymbolLayer: searchCmd() method MUST return a vector of valid positioned ghosts/Geo.Coord objects or nil! (was:"~type~")");
return result;
},
# Adds a symbol.
onAdded: func(model) {
logprint(_MP_dbg_lvl, "Adding symbol of type "~me.type);
if (model == nil) __die("MultiSymbolLayer: Model was nil for layer:"~debug.string(me.type)~ " Hint:check your equality check method!");
append(me.list, Symbol.new(me.type, me.group, me, model));
},
# Removes a symbol.
onRemoved: func(model) {
logprint(_MP_dbg_lvl, "Deleting symbol of type "~me.type);
if (!me.delsym(model)) __die("model not found");
try_aux_method(model, "del");
#call(func model.del(), nil, var err = []); # try...
#if (size(err) and err[0] != "No such member: del") # ... and either catch or rethrow
# die(err[0]);
},
}; # of MultiSymbolLayer
##
# A layer that manages a list of statically-positioned navaid symbols (using delta positioned handling
# with a searchCmd to retrieve placements).
# This is not yet supposed to work properly, it's just there to help get rid of all the identical boilerplate code
# in lcontroller files, so needs some reviewing and customizing still
#
var NavaidSymbolLayer = {
parents: [MultiSymbolLayer],
# static generator/functor maker:
make: func(query) {
#print("Creating searchCmd() for NavaidSymbolLayer:", query);
return func {
logprint(_MP_dbg_lvl, "Running query:", query);
var range = me.map.getRange();
if (range == nil) return;
return positioned.findWithinRange(me.map.getPosCoord(), range, query);
};
},
}; # of NavaidSymbolLayer
###
## TODO: wrappers for Horizontal vs. Vertical layers ?
##
var SingleSymbolLayer = {
parents: [SymbolLayer],
# Default implementations/values:
# @param group A group to place this on.
# @param map The #Canvas.Map this is a member of.
# @param controller A controller object (parents=[SymbolLayer.Controller])
# or implementation (parents[0].parents=[SymbolLayer.Controller]).
# @param style An alternate style.
# @param options Extra options/configurations.
# @param visible Initially set it up as visible or invisible.
new: func(group, map, controller=nil, style=nil, options=nil, visible=1) {
#print("Creating new SymbolLayer instance");
if (me == nil) __die("SingleSymbolLayer constructor needs to know its parent class");
var m = {
parents: [me],
map: map,
group: group.createChild("group", me.type),
};
append(m.parents, m.group);
m.setVisible(visible);
SymbolLayer._new(m, style, controller, options);
m.symbol = Symbol.new(m.type, m.group, m, m.controller.getModel());
m.update();
return m;
},
update: func() {
if (!me.getVisible())
return;
var updater = func {
if (typeof(me.symbol.model) == 'hash') try_aux_method(me.symbol.model, "update");
me.symbol.update();
}
if (me.options != nil and me.options['update_wrapper'] != nil) {
me.options.update_wrapper( me, updater ); # call external wrapper (usually for profiling purposes)
} else {
updater();
}
},
del: func() {
logprint(_MP_dbg_lvl, "SymbolLayer.del()");
me.symbol.del();
call(SymbolLayer.del, nil, me);
},
}; # of SingleSymbolLayer
##
# Base class for a OverlayLayer, e.g. a TileLayer
#
var OverlayLayer = {
# Default implementations/values:
df_controller: nil, # default controller
df_priority: nil, # default priority for display sorting
df_style: nil,
df_options: nil,
type: nil, # type of #Symbol to add (MANDATORY)
id: nil, # id of the group #canvas.Element (OPTIONAL)
# Static/singleton:
registry: {},
add: func(type, class) {
me.registry[type] = class;
},
get: func(type) {
foreach(var invalid; var invalid_types = [nil,'vector','hash'])
if ( (var t=typeof(type)) == invalid) __die(" invalid OverlayLayer type (non-scalar) of type:"~t);
if ((var class = me.registry[type]) == nil)
__die("OverlayLayer.get(): unknown type '"~type~"'");
else return class;
},
# Calls corresonding layer constructor
# @param group #Canvas.Group to place this on.
# @param map The #Canvas.Map this is a member of.
# @param style An alternate style.
# @param options Extra options/configurations.
# @param visible Initially set it up as visible or invisible.
new: func(type, group, map, controller=nil, style=nil, options=nil, visible=1, arg...) {
# XXX: Extra named arguments are (obviously) not preserved well...
if (me == nil) __die("OverlaySymbolLayer constructor needs to know its parent class");
var ret = call((var class = me.get(type)).new, [group, map, controller, style, options, visible], class);
ret.type = type;
ret.group.set("layer-type", type);
return ret;
},
# Private constructor:
_new: func(m, style, controller, options) {
m.style = default_hash(style, m.df_style);
m.options = default_hash(options, m.df_options);
if (controller == nil) {
if (m.df_controller == nil) {
controller = OverlayLayer.Controller;
} else {
controller = m.df_controller;
}
}
assert_m(controller, "parents");
if (controller.parents[0] == OverlayLayer.Controller)
controller = controller.new(m);
assert_m(controller, "parents");
assert_m(controller.parents[0], "parents");
if(options != nil){
var listeners = opt_member(controller, 'listeners');
var listen = opt_member(options, 'listen');
if (listen != nil and listeners != nil){
var listen_tp = typeof(listen);
if(listen_tp != 'vector' and listen_tp != 'scalar')
__die("Options 'listen' cannot be a "~ listen_tp);
if(typeof(listen) == 'scalar')
listen = [listen];
foreach(var node_name; listen){
var node = opt_member(options, node_name);
if(node == nil)
node = node_name;
append(controller.listeners,
setlistener(node, func call(m.update,[],m),0,0));
}
}
}
m.controller = controller;
},
# For instances:
del: func() if (me.controller != nil) { me.controller.del(); me.controller = nil },
update: func() { _die("Abstract OverlayLayer.update() not implemented for this Layer"); },
};
var TileLayer = {
parents: [OverlayLayer],
# Default implementations/values:
# @param group A group to place this on.
# @param map The #Canvas.Map this is a member of.
# @param controller A controller object (parents=[OverlayLayer.Controller])
# or implementation (parents[0].parents=[OverlayLayer.Controller]).
# @param style An alternate style.
# @param options Extra options/configurations.
# @param visible Initially set it up as visible or invisible.
new: func(group, map, controller=nil, style=nil, options=nil, visible=1) {
if (me == nil) __die("TileLayer constructor needs to know its parent class");
var m = {
parents: [me],
map: map,
group: group.createChild("group", me.type),
maps_base: "",
controller: controller,
num_tiles: [9,9],
makeURL: nil,
makePath: nil,
center_tile_offset : [],
tile_size: 256,
zoom: 9,
max_zoom: 16,
min_zoom: 4,
tile_type: "map",
last_tile_type: "map",
last_tile : [-1,-1],
tiles: [],
};
# Determine the number of tiles dynamically based on the canvas size
#var width = map.getCanvas().get("size[0]");
#var height = map.getCanvas().get("size[1]");
#m.num_tiles= [ math.ceil(width / m.tile_size),
# math.ceil(height / m.tile_size) ];
m.maps_base = getprop("/sim/fg-home") ~ '/cache/maps';
m.tiles = setsize([], m.num_tiles[0]);
m.center_tile_offset = [
(m.num_tiles[0] - 1.0) / 2.0,
(m.num_tiles[1] - 1.0) / 2.0
];
append(m.parents, m.group);
m.setVisible(visible);
OverlayLayer._new(m, style, controller, options);
for(var x = 0; x < m.num_tiles[0]; x += 1)
{
m.tiles[x] = setsize([], m.num_tiles[1]);
for(var y = 0; y < m.num_tiles[1]; y += 1) {
m.tiles[x][y] = m.group.createChild("image", "map-tile");
}
}
m.update();
return m;
},
updateLayer: func()
{
if (me.controller != nil) me.controller.updateLayer();
# get current position
var lat = me.map.getLat();
var lon = me.map.getLon();
var range_nm = me.map.getRange();
var screen_range = me.map.getScreenRange();
if (screen_range == nil) screen_range = 200;
# Screen resolution m/pixel is range/screen_range
var screen_resolution = range_nm * globals.NM2M / screen_range;
# Slippy map resolution is
# 156543.03 meters/pixel * cos(latitude) / (2 ^ zoomlevel)
# Determine the closest zoom level and scaling ratio. Each increase in zoom level doubles resolution.
var ideal_zoom = math.ln(156543.03 * math.cos(lat * math.pi/180.0) / screen_resolution) / math.ln(2);
me.zoom = math.ceil(ideal_zoom);
if (me.zoom < me.min_zoom) me.zoom = me.min_zoom;
if (me.zoom > me.max_zoom) me.zoom = me.max_zoom;
var ratio = 1 / math.pow(2,me.zoom - ideal_zoom);
for(var x = 0; x < me.num_tiles[0]; x += 1)
{
for(var y = 0; y < me.num_tiles[1]; y += 1) {
me.tiles[x][y].setTranslation(int((x - me.center_tile_offset[0]) * me.tile_size * ratio + 0.5),
int((y - me.center_tile_offset[1]) * me.tile_size * ratio + 0.5));
me.tiles[x][y].setScale(ratio);
me.tiles[x][y].scale_factor = ratio;
}
}
var ymax = math.pow(2, me.zoom);
# Slippy map location of center point
var slippy_center = [
math.floor(ymax * ((lon + 180.0) / 360.0)),
math.floor((1 - math.ln(math.tan(lat * math.pi/180.0) + 1 / math.cos(lat * math.pi/180.0)) / math.pi) / 2.0 * ymax)
];
# This is the Slippy Map location of the 0,0 tile
var offset = [slippy_center[0] - me.center_tile_offset[0],
slippy_center[1] - me.center_tile_offset[1]];
var tile_index = [math.floor(offset[0]), math.floor(offset[1])];
# Find the lon, lat of the center tile
var center_tile_lon = slippy_center[0]/ymax * 360.0 - 180.0;
var nn = math.pi - 2.0 * math.pi * slippy_center[1]/ ymax;
var center_tile_lat = 180.0 / math.pi * math.atan(0.5 * (math.exp(nn) - math.exp(-nn)));
me.group.setGeoPosition(center_tile_lat, center_tile_lon);
if( tile_index[0] != me.last_tile[0]
or tile_index[1] != me.last_tile[1]
or me.tile_type != me.last_tile_type )
{
for(var x = 0; x < me.num_tiles[0]; x += 1) {
for(var y = 0; y < me.num_tiles[1]; y += 1) {
var pos = {
z: me.zoom,
x: int(tile_index[0] + x),
y: int(tile_index[1] + y),
tms_y: ymax - int(tile_index[1] + y) - 1,
type: me.tile_type
};
(func {
var img_path = me.makePath(pos);
var tile = me.tiles[x][y];
if( io.stat(img_path) == nil ) {
# image not found, save in $FG_HOME
var img_url = me.makeURL(pos);
#print('requesting ' ~ img_url);
http.save(img_url, img_path)
.done(func { tile.set("src", img_path);})
.fail(func (r) print('Failed to get image ' ~ img_path ~ ' ' ~ r.status ~ ': ' ~ r.reason));
} else {
# Re-use cached image
#print('loading ' ~ img_path);
tile.set("src", img_path)
}
})();
}
}
me.last_tile = tile_index;
me.last_type = me.type;
}
},
update: func() {
if (!me.getVisible())
return;
#debug.warn("update traceback for "~me.type);
if (me.options != nil and me.options['update_wrapper'] !=nil) {
me.options.update_wrapper( me, me.updateLayer ); # call external wrapper (usually for profiling purposes)
} else {
me.updateLayer();
}
},
del: func() {
logprint(_MP_dbg_lvl, "SymbolLayer.del()");
call(OverlayLayer.del, nil, me);
},
}; # of TileLayer
# Class to manage controlling a OverlayLayer.
# Currently handles:
# * Simple update() call
OverlayLayer.Controller = {
# Static/singleton:
registry: {},
add: func(type, class)
me.registry[type] = class,
get: func(type)
if ((var class = me.registry[type]) == nil)
__die("unknown type '"~type~"'");
else return class,
# Calls corresponding controller constructor
# @param layer The #OverlayLayer this controller is responsible for.
new: func(type, layer, arg...)
return call((var class = me.get(type)).new, [layer]~arg, class),
# Default implementations for derived classes:
# @return List of positioned objects.
updateLayer: func()
__die("Abstract method updateLayer() not implemented for this OverlayLayer.Controller type!"),
addVisibilityListener: func() {
var m = me;
append(m.listeners, setlistener(
m.layer._node.getNode("visible", 1),
func m.layer.update(),
#compile("m.layer.update()", "<layer visibility on node "~m.layer._node.getNode("visible").getPath()~" for layer "~m.layer.type~">"),
0,0
));
},
addRangeListener: func() {
var m = me;
append(m.listeners, setlistener(
m.layer._node.getNode("range",1),
func m.layer.update(),
#compile("m.layer.update()", "<layer visibility on node "~m.layer._node.getNode("visible").getPath()~" for layer "~m.layer.type~">"),
0,0
));
},
addScreenRangeListener: func() {
var m = me;
append(m.listeners, setlistener(
m.layer._node.getNode("screen-range",1),
func m.layer.update(),
#compile("m.layer.update()", "<layer visibility on node "~m.layer._node.getNode("visible").getPath()~" for layer "~m.layer.type~">"),
0,0
));
},
}; # of OverlayLayer.Controller
###
# set up a cache for 32x32 symbols (initialized below in load_MapStructure)
var SymbolCache32x32 = nil;
var SymbolCache256x256 = nil;
var MapStructure = {
# Generalized load methods used to load various symbols, layer controllers,...
loadFile : func(file, name) {
if (name == nil)
var name = split("/", file)[-1];
var code = io.readfile(file);
var code = call(func compile(code, file), [code], var err=[]);
if (size(err)) {
if (substr(err[0], 0, 12) == "Parse error:") { # hack around Nasal feature
var e = split(" at line ", err[0]);
if (size(e) == 2)
err[0] = string.join("", [e[0], "\n at ", file, ", line ", e[1], "\n "]);
}
for (var i = 1; (var c = caller(i)) != nil; i += 1)
err ~= subvec(c, 2, 2);
debug.printerror(err);
return;
}
#code=bind(
call(code, nil, nil, var hash = {});
# validate
var url = ' http://wiki.flightgear.org/MapStructure#';
# TODO: these rules should be extended for all main files lcontroller/scontroller and symbol
var checks = [
{ extension:'symbol', symbol:'update', type:'func', error:' update() must not be overridden:', id:300},
# Sorry, this one doesn't work with the new LineSymbol
# { extension:'symbol', symbol:'draw', type:'func', required:1, error:' symbol files need to export a draw() routine:', id:301},
# Sorry, this one doesn't work with the new SingleSymbolLayer
# { extension:'lcontroller', symbol:'searchCmd', type:'func', required:1, error:' lcontroller without searchCmd method:', id:100},
];
var makeurl = func(scope, id) url ~ scope ~ ':' ~ id;
var bailout = func(file, message, scope, id) __die(file~message~"\n"~makeurl(scope,id) );
var current_ext = split('.', file)[-1];
foreach(var check; checks) {
# check if we have any rules matching the current file extension
if (current_ext == check.extension) {
# check for fields that must not be overridden
if (check['error'] != nil and
hash[check.symbol]!=nil and !check['required'] and
typeof(hash[check.symbol])==check.type ) {
bailout(file,check.error,check.extension,check.id);
}
# check for required fields
if (check['required'] != nil and
hash[check.symbol]==nil and
typeof( hash[check.symbol]) != check.type) {
bailout(file,check.error,check.extension,check.id);
}
}
}
return hash;
}
};
var load_MapStructure = func {
canvas.load_MapStructure = func; # disable any subsequent attempt to load
Map.Controller = {
# Static/singleton:
registry: {},
add: func(type, class)
me.registry[type] = class,
get: func(type)
if ((var class = me.registry[type]) == nil)
__die("unknown type '"~type~"'");
else return class,
# Calls corresonding controller constructor
# @param map The #SymbolMap this controller is responsible for.
new: func(type, map, arg...) {
var m = call((var class = me.get(type)).new, [map]~arg, class);
if (!contains(m, "map"))
m.map = map;
elsif (m.map != map and !isa(m.map, map) and (
m.get_position != Map.Controller.get_position
or m.query_range != Map.Controller.query_range
or m.in_range != Map.Controller.in_range))
{ __die("m must store the map handle as .map if it uses the default method(s)"); }
},
# Default implementations:
get_position: func() {
debug.warn("get_position is deprecated");
return me.map.getLatLon()~[me.map.getAlt()];
},
query_range: func() {
debug.warn("query_range is deprecated");
return me.map.getRange() or 30;
},
in_range: func(lat, lon, alt=0) {
var range = me.map.getRange();
if(range == nil) __die("in_range: Invalid query range!");
# print("Query Range is:", range );
if (lat == nil or lon == nil) __die("in_range: lat/lon invalid");
var pos = geo.Coord.new();
pos.set_latlon(lat, lon, alt or 0);
var map_pos = me.map.getPosCoord();
if (map_pos == nil)
return 0; # should happen *ONLY* when map is uninitialized
var distance_m = pos.distance_to( map_pos );
var is_in_range = distance_m < range * NM2M;
# print("Distance:",distance_m*M2NM," nm in range check result:", is_in_range);
return is_in_range;
},
};
####### LOAD FILES #######
(func {
var FG_ROOT = getprop("/sim/fg-root");
# sets up a shared symbol cache, which will be used by all MapStructure maps and layers
canvas.SymbolCache32x32 = SymbolCache.new(1024,32);
canvas.SymbolCache256x256 = SymbolCache.new(1024,256);
# Find files and load them:
var contents_dir = FG_ROOT~"/Nasal/canvas/map/";
var dep_names = [
# With these extensions, in this order:
"lcontroller",
"symbol",
"scontroller",
"controller",
"overlay"
];
var deps = {};
foreach (var d; dep_names) deps[d] = [];
foreach (var f; directory(contents_dir)) {
var ext = size(var s=split(".", f)) > 1 ? s[-1] : nil;
foreach (var d; dep_names) {
if (ext == d) {
append(deps[d], f);
break
}
}
}
foreach (var d; dep_names) {
foreach (var f; deps[d]) {
var name = split(".", f)[0];
MapStructure.loadFile(contents_dir~f, name);
}
}
})();
}; # load_MapStructure
setlistener("/nasal/canvas/loaded", load_MapStructure); # end ugly module init listener hack. FIXME: do smart Nasal bootstrapping, quod est callidus!
# Actually, it would be even better to support reloading MapStructure files, and maybe even MapStructure itself by calling the dtor/del method for each Map and then re-running the ctor