-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathexportJson.il
More file actions
3166 lines (2687 loc) · 107 KB
/
exportJson.il
File metadata and controls
3166 lines (2687 loc) · 107 KB
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
axlCmdRegister( "exportJson" `exportJson )
procedure( addMetadata( dsnName rev company )
let( ( metadata )
when( rev == ""
rev = axlUIPrompt( strcat( "Enter Revision for " dsnName ":" ) )
)
when( company == ""
company = axlUIPrompt( "Enter company name:" )
)
rev = strcat( "\"" rev "\"" )
company = strcat( "\"" company "\"" )
dsnName = strcat( "\"" upperCase( dsnName ) "\"" )
currentTime = timeToTm( stringToTime( getCurrentTime() ) )
day = sprintf( nil "%d" currentTime->tm_mday )
month = sprintf( nil "%d" currentTime->tm_mon + 1 )
year = sprintf( nil "%d" currentTime->tm_year - 100 )
currentDate = strcat( "\"" day "." month "." year "\"" )
metadata = strcat(
"\"metadata\": {\n"
"\t\"title\": " dsnName ",\n",
"\t \"revision\": " rev ",\n"
"\t\"company\": " company ",\n"
"\t\"date\": " currentDate "\n"
"}"
)
)
)
procedure( addIndent( string @optional ( tabs 1 ) )
let( ( ( indentedStrings 'unbound ) ( indent "" ) )
for( i 1 tabs
indent = strcat( indent "\t" )
)
lines = parseString( string "\n" )
foreach( line lines
if( boundp( 'indentedStrings ) then
tconc( indentedStrings strcat( indent line ) )
else
indentedStrings = tconc( nil strcat( indent line ) )
)
)
indentedStrings = buildString( car( indentedStrings ) "\n" )
)
)
; ### segment
; ```js
; {
; "type": "segment",
; "start": [x, y],
; "end": [x, y],
; "width": width,
; }
; ```
procedure( addLine( segment width @optional ( isEtch nil ) ( netName nil) )
let( ( extents xStart yStart xEnd yEnd element )
extents = segment->startEnd
xStart = caar( extents )
yStart = -cadar( extents ) ; multiply by -1, s. ibom y convention
xEnd = caadr( extents )
yEnd = -cadadr( extents ) ; multiply by -1, s. ibom y convention
if( isEtch then
unless( netName
netName = segment->net->name
)
element = strcat(
"{\n\t\"net\": \"" netName "\",\n"
)
width = segment->width
else
element = "{\n\t\"type\": \"segment\",\n"
)
element = strcat(
element
"\t\"start\": [" sprintf( nil "%f" xStart ) ", " sprintf( nil "%f" yStart ) "],\n"
"\t\"end\": [" sprintf( nil "%f" xEnd ) ", " sprintf( nil "%f" yEnd ) "],\n"
"\t\"width\": " sprintf( nil "%f" width ) "\n"
"}"
)
)
)
; ### circle
; ```js
; {
; "type": "circle",
; "start": [x, y],
; "radius": radius,
; // Optional boolean, defaults to 0
; "filled": 0,
; // Line width (only has effect for non-filled shapes)
; "width": width,
; }
; ```
procedure( addCircle( segment width )
let( ( xy xStart yStart radius element )
xy = segment->xy
xStart = car( xy )
yStart = -cadr( xy )
radius = segment->radius
element = strcat(
"{\n"
"\t\"type\": \"circle\",\n"
"\t\"start\": [" sprintf( nil "%f" xStart ) ", " sprintf( nil "%f" yStart ) "],\n"
"\t\"radius\": " sprintf( nil "%f" radius ) ",\n"
"\t\"width\": " sprintf( nil "%f" width ) "\n"
"}"
)
)
)
; ### arc
; ```js
; {
; "type": "arc",
; "width": width,
; // SVG path of the arc given as 'd' attribute of svg spec.
; // If this parameter is specified everything below it is ignored.
; "svgpath": svgpath,
; "start": [x, y], // arc center
; "radius": radius,
; "startangle": angle1,
; "endangle": angle2,
; }
; ```
procedure( addArc( segment width @optional ( isEtch nil ) ( netName nil ) )
let( ( xy xCenter yCenter radius extents xStart yStart xEnd yEnd cw angle1 angle2 startAngle endAngle element )
xy = segment->xy
xCenter = car( xy )
yCenter = -cadr( xy )
radius = segment->radius
extents = segment->startEnd
xStart = caar( extents )
yStart = -cadar( extents ) ; multiply by -1, s. ibom y convention
xEnd = caadr( extents )
yEnd = -cadadr( extents ) ; multiply by -1, s. ibom y convention
cw = segment->isClockwise
;width = 0.1 ;segment->width
angle1 = axlRadToDeg( atan2( ( yStart - yCenter ), ( xStart - xCenter ) ) )
; convert to positive angle
when( negativep( angle1 )
angle1 = angle1 + 360
)
angle2 = axlRadToDeg( atan2( ( yEnd - yCenter ), ( xEnd - xCenter ) ) )
; convert to positive angle
when( negativep( angle2 )
angle2 = angle2 + 360
)
; map the correct angles
if( ( angle2 - angle1 ) > 0 then
if( cw then
startAngle = angle1
endAngle = angle2
else
startAngle = angle2
endAngle = angle1
)
; if arc is a circle, but not marked as a circle ...
when( startAngle == endAngle
endAngle = endAngle + 360.0
)
else
if( cw then
startAngle = angle1
endAngle = angle2
else
startAngle = angle2
endAngle = angle1
)
; if arc is a circle, but not marked as a circle ...
when( startAngle == endAngle
startAngle = startAngle + 360.0
)
)
if( isEtch then
unless( netName
netName = segment->net->name
)
element = strcat(
"{\n\t\"net\": \"" netName "\",\n"
"\t\"center\": [" sprintf( nil "%f" xCenter ) ", " sprintf( nil "%f" yCenter ) "],\n"
)
width = segment->width
else
element = strcat(
"{\n\t\"type\": \"arc\",\n"
"\t\"start\": [" sprintf( nil "%f" xCenter ) ", " sprintf( nil "%f" yCenter ) "],\n"
)
)
element = strcat(
element
"\t\"radius\": " sprintf( nil "%f" radius ) ",\n"
"\t\"startangle\": " sprintf( nil "%f" startAngle ) ",\n"
"\t\"endangle\": " sprintf( nil "%f" endAngle ) ",\n"
"\t\"width\": " sprintf( nil "%f" width ) "\n"
"}"
)
)
)
procedure( parseSegment( segment width @optional ( isEtch nil ) ( netName nil ) )
let( ( element )
case( segment->objType
(
"line"
element = addLine( segment width isEtch netName )
)
(
"arc"
; Typo?! Sometimes a shape is a circle, but isCircle is nil ... why?!
if( segment->isCircle then ; || car( segment->startEnd ) == cadr( segment->startEnd ) then
element = addCircle( segment width )
else
element = addArc( segment width isEtch netName )
)
)
(
t
warn( "Unknown segment ...\n")
)
)
element
)
)
procedure( addText( object @optional ( textType t ) )
let( ( xy x y angle attr alignment justify textBlock height width thickness text element )
xy = object->xy
x = xCoord( xy )
y = -yCoord( xy )
; get rotation
angle = object->rotation
; check, if text is mirrored
if( object->isMirrored then
attr = "\"mirrored\""
else
attr = ""
)
; get text alignment
alignment = object->justify
case( alignment
(
"LEFT"
justify = "[-1, 1]"
)
(
"RIGHT"
justify = "[1, 1]"
)
(
"CENTER"
justify = "[0, 1]"
)
(
t
justify = "[0, 1]"
)
)
case( textType
(
"refdes"
type = ",\n\t\"ref\": 1\n"
)
(
"value"
type = ",\n\t\"val\": 1\n"
)
(
t
type = "\n"
)
)
; get text parameters
textBlock = axlGetParam( strcat( "paramTextBlock:" object->textBlock ) )
height = textBlock->height
width = textBlock->width
thickness = textBlock->photoWidth
; escape " correctly"
pattern = pcreCompile("[\\\"]")
text = pcreReplace( pattern object->text "\\\\\"" 0 )
element = strcat(
"{\n"
"\t\"pos\": [" sprintf( nil "%f" x ) ", " sprintf( nil "%f" y ) "],\n"
"\t\"text\": \"" text "\",\n"
"\t\"height\": " sprintf( nil "%f" height ) ",\n"
"\t\"width\": " sprintf( nil "%f" width ) ",\n"
"\t\"justify\": " justify ",\n"
"\t\"thickness\": " sprintf( nil "%f" thickness ) ",\n"
"\t\"attr\": [" attr "],\n"
"\t\"angle\": " sprintf( nil "%f" angle )
type
"}"
)
)
)
procedure( addCopperTexts( layer )
let( ( dsn texts text textBlock width pathLists pathList segments isFirst endPoint xStart yStart xEnd yEnd net element previousPoint (copperTexts 'unbound) )
dsn = axlDBGetDesign()
texts = dsn->text
foreach( text texts
when( text->layer == layer
; get text parameters
textBlock = axlGetParam( strcat( "paramTextBlock:" text->textBlock ) )
width = textBlock->photoWidth
; get list if paths
pathLists = axlText2Lines( text )
foreach( pathList pathLists
; iterate though paths
foreach( path pathList
; get path segments
segments = axlPathGetPathSegs( path )
foreach( segment segments
isFirst = ( lindex( segments segment ) == 1 )
endPoint = segment->_endPoint
endPoint = list( xCoord( endPoint ) yCoord( endPoint ) )
unless( isFirst
xStart = car( previousPoint )
yStart = -cadr( previousPoint ) ; multiply by -1, s. ibom y convention
xEnd = car( endPoint )
yEnd = -cadr( endPoint ) ; multiply by -1, s. ibom y convention
; dummy net name
net = ""
element = strcat(
"{\n\t\"net\": \"" net "\",\n"
"\t\"start\": [" sprintf( nil "%f" xStart ) ", " sprintf( nil "%f" yStart ) "],\n"
"\t\"end\": [" sprintf( nil "%f" xEnd ) ", " sprintf( nil "%f" yEnd ) "],\n"
"\t\"width\": " sprintf( nil "%f" width ) "\n"
"}"
)
if( boundp( 'copperTexts ) then
tconc( copperTexts element )
else
copperTexts = tconc( nil element )
)
)
previousPoint = endPoint
)
)
)
)
)
; return value
if( boundp( 'copperTexts) then
car( copperTexts )
else
nil
)
)
)
procedure( addNoNetCopper( layer )
let( ( ( tracks 'unbound ) lines line segments segment elem )
axlClearSelSet()
axlSetFindFilter(?enabled '("noall" "lines") ?onButtons '("lines"))
axlAddSelectAll()
lines = axlGetSelSet()
foreach( line lines
when( line->layer == layer
segments = line->segments
foreach( segment segments
elem = parseSegment( segment segment->width t "" )
if( boundp( 'tracks ) then
tconc( tracks elem )
else
tracks = tconc( nil elem )
)
)
)
)
axlClearSelSet()
axlSetFindFilter(?enabled '("noall" "alltypes") ?onButtons '("noall" "alltypes"))
if( boundp( 'tracks) then
tracks
else
nil
)
)
)
procedure( addThieving( layer )
let( ( (thieving 'unbound) dsn groups members pads svgpath elem )
dsn = axlDBGetDesign()
groups = dsn->groups
foreach( group groups
when( group->type == "THIEVING_GROUP"
members = group->groupMembers
foreach( member members
pads = member->pads
foreach( pad pads
when( pad->figure && pad->layer == layer
svgpath = figureToSvgPath( pad->figure 0.0 0.0 0.0)
; render thieving as a zone
elem = strcat(
"{\n"
"\t\"svgpath\": \"" svgpath "\",\n"
"\t\"fillrule\": \"evenodd\",\n"
"\t\"net\": \"\"\n"
"}"
)
if( boundp( 'thieving ) then
tconc( thieving elem )
else
thieving = tconc( nil elem )
)
)
)
; extents = pad->bBox
)
)
)
if( boundp( 'thieving) then
thieving
else
nil
)
)
)
procedure( addVia( via layer renderViaHole )
let( ( xy extents startEnd element )
xy = via->xy
padstack = axlLoadPadstack( via->name )
drillSize = padstack->drillDiameter
pad = axlDBGetPad( via layer "REGULAR" )
extents = pad->bBox
; calculate the pad diameter
width = abs( xCoord( cadr( extents ) ) - xCoord( car( extents ) ) )
startEnd = strcat( "[" sprintf( nil "%f" xCoord( xy ) ) ", " sprintf( nil "%f" -yCoord( xy ) ) "]" )
element = strcat(
"{\n"
"\t\"net\": \"" via->net->name "\",\n"
"\t\"start\": " startEnd ",\n"
"\t\"end\": " startEnd ",\n"
"\t\"width\": " sprintf( nil "%f" width )
)
if( renderViaHole then
element = strcat(
element
",\n\t\"drillsize\": " sprintf( nil "%f" drillSize ) "\n"
"}"
)
else
element = strcat(
element "\n"
"}"
)
)
)
)
procedure( lineToSvgPath( isFirst points )
let( ( ( path 'unbound ) firstCommand segment )
; is it the first element in the svgpath
if( isFirst then
firstCommand = "M "
else
firstCommand = "L "
)
foreach( point points
segment = buildString(
list(
sprintf( nil "%f" xCoord( point ) )
sprintf( nil "%f" yCoord( point ) )
)
" "
)
if( boundp( 'path ) then
tconc( path segment )
else
path = tconc( nil segment )
)
)
; return svgpath
path = strcat( firstCommand buildString( car( path ) "L " ) )
)
)
procedure( arcToSvgPath( isFirst xy startEnd isClockwise @optional ( radius nil ) ( isCircle nil ) )
let( ( start end xArcCenter yArcCenter dx dy startAngle endAngle path sweepFlag dAngle largeArcFlag )
start = car( startEnd )
end = cadr( startEnd )
xArcCenter = xCoord( xy )
yArcCenter = yCoord( xy )
dx = xCoord( start ) - xArcCenter
; reverse inverted y-axis for angle calculation
dy = ( yCoord( start ) - yArcCenter ) * - 1
; if no radius was passed, calculate radius
unless( radius
radius = sqrt( expt( dx 2 ) + expt( dy 2 ) )
)
startAngle = axlRadToDeg( atan2( dy dx ) )
when( negativep( startAngle )
startAngle = startAngle + 360
)
dx = xCoord( end ) - xArcCenter
; reverse inverted y-axis for angle calculation
dy = ( yCoord( end ) - yArcCenter ) * - 1
endAngle = axlRadToDeg( atan2( dy dx ) )
when( negativep( endAngle )
endAngle = endAngle + 360
)
; is it the first element in the svgpath
if( isFirst then
path = buildString(
list(
"M"
sprintf( nil "%f" xCoord( start ) )
sprintf( nil "%f" yCoord( start ) )
"A"
)
" "
)
else
path = "A"
)
; set the sweep-flag and the large-arg-flag
if( isClockwise then
sweepFlag = "1"
if( startAngle > endAngle then
dAngle = startAngle - endAngle
else
dAngle = startAngle + ( 360.0 - endAngle )
)
else
sweepFlag = "0"
if( startAngle > endAngle then
dAngle = endAngle + ( 360.0 - startAngle )
else
dAngle = endAngle - startAngle
)
)
if( dAngle > 180.0 then
; make small arc
largeArcFlag = "1"
else
largeArcFlag = "0"
)
; since start = end for circles
when( isCircle
end = list( ( xCoord( xy ) - radius ) yCoord( xy ) )
)
; A rx ry x-axis-rotation large-arc-flag sweep-flag x y
path = buildString(
list(
path
sprintf( nil "%f" radius )
sprintf( nil "%f" radius )
sprintf( nil "%f" 0.0 )
largeArcFlag
sweepFlag
sprintf( nil "%f" xCoord( end ) )
sprintf( nil "%f" yCoord( end ) )
)
" "
)
; for circles only
when( isCircle
end = start
path = buildString(
list(
path
"A"
sprintf( nil "%f" radius )
sprintf( nil "%f" radius )
sprintf( nil "%f" 0.0 )
largeArcFlag
sweepFlag
sprintf( nil "%f" xCoord( end ) )
sprintf( nil "%f" yCoord( end ) )
)
" "
)
)
path
)
)
procedure( ttfVerticesToSvgPath( vertices )
let( ( ( svgPath 'unbound ) xy radius isFirtst path )
foreach( vertice vertices
xy = car( vertice )
xy = list( xCoord( xy ) -yCoord( xy ) )
radius = cadr( vertice )
; when( radius != 0.0
; print( radius )
; )
isFirst = ( lindex( vertices vertice ) == 1 )
path = lineToSvgPath( isFirst list( xy ) )
if( boundp( 'svgPath ) then
tconc( svgPath path )
else
svgPath = tconc( nil path )
)
)
; close svg path
tconc( svgPath "Z" )
)
)
procedure( textToSvgPath( object @optional ( type t ) )
let( ( ( ttf nil ) ( svgPath 'unbound )
textBlock thickness pathLists segments isFirst endPoint path text polys poly vertices vertice )
; add support for true type text
if( object->textBlock then
; get text parameters
textBlock = axlGetParam( strcat( "paramTextBlock:" object->textBlock ) )
thickness = textBlock->photoWidth
else
ttf = t
)
case( type
(
"refdes"
type = ",\n\t\"ref\": 1\n"
)
(
"value"
type = ",\n\t\"val\": 1\n"
)
(
t
type = "\n"
)
)
; add support for true type text
if( not( ttf ) then
; get list if paths
pathLists = axlText2Lines( object )
foreach( pathList pathLists
; iterate though paths
foreach( path pathList
; get path segments
segments = axlPathGetPathSegs( path )
foreach( segment segments
isFirst = ( lindex( segments segment ) == 1 )
endPoint = segment->_endPoint
endPoint = list( xCoord( endPoint ) -yCoord( endPoint ) )
; vertice is a list: #1 element is the point, #2 is unimportant to us
path = lineToSvgPath( isFirst list( endPoint ) )
if( boundp( 'svgPath ) then
tconc( svgPath path )
else
svgPath = tconc( nil path )
)
)
)
)
else
; handle true type text
; convert text to a list of polygons
polys = axlPolyFromDB( object )
foreach( poly polys
vertices = poly->vertices
; make outline
foreach( vertice vertices
xy = car( vertice )
xy = list( xCoord( xy ) -yCoord( xy ) )
radius = cadr( vertice )
; when( radius != 0.0
; print( radius )
; )
isFirst = ( lindex( vertices vertice ) == 1 )
path = lineToSvgPath( isFirst list( xy ) )
if( boundp( 'svgPath ) then
tconc( svgPath path )
else
svgPath = tconc( nil path )
)
)
; close path for each polygon
path = "Z"
if( boundp( 'svgPath ) then
tconc( svgPath path )
else
svgPath = tconc( nil path )
)
; handle holes
holes = poly->holes
foreach( hole holes
vertices = hole->vertices
foreach( vertice vertices
xy = car( vertice )
xy = list( xCoord( xy ) -yCoord( xy ) )
radius = cadr( vertice )
; when( radius != 0.0
; print( radius )
; )
isFirst = ( lindex( vertices vertice ) == 1 )
path = lineToSvgPath( isFirst list( xy ) )
if( boundp( 'svgPath ) then
tconc( svgPath path )
else
svgPath = tconc( nil path )
)
)
; close path for each polygon
path = "Z"
if( boundp( 'svgPath ) then
tconc( svgPath path )
else
svgPath = tconc( nil path )
)
)
)
)
svgPath = buildString( car( svgPath ) " " )
if( ttf then
text = strcat(
"{"
"\t\"svgpath\": \"" svgPath "\",\n"
"\t\"fillrule\": \"evenodd\""
type
"}"
)
else
text = strcat(
"{"
"\t\"svgpath\": \"" svgPath "\",\n"
"\t\"thickness\": " sprintf( nil "%f" thickness )
type
"}"
)
)
)
)
procedure( createSvgPath( segments )
let( ( ( paths 'unbound )
isFirst arcCenter xArcCenter yArcCenter
radius isClockwise isCircle startEnd start end path svgpath )
foreach( segment segments
case( segment->objType
(
"arc"
isFirst = ( lindex( segments segment ) == 1 )
arcCenter = segment->xy
xArcCenter = xCoord( arcCenter )
yArcCenter = -yCoord( arcCenter )
arcCenter = list( xArcCenter yArcCenter )
radius = segment->radius
isClockwise = segment->isClockwise
isCircle = segment->isCircle
startEnd = segment->startEnd
start = car( startEnd )
start = list( xCoord( start ) -yCoord( start ) )
end = cadr( startEnd )
end = list( xCoord( end ) -yCoord( end ) )
startEnd = list( start end )
; create svgpath
path = arcToSvgPath( isFirst arcCenter startEnd isClockwise radius isCircle )
; append to list
if( boundp( 'paths ) then
tconc( paths path )
else
paths = tconc( nil path )
)
)
(
"line"
isFirst = ( lindex( segments segment ) == 1 )
startEnd = segment->startEnd
start = car( startEnd )
start = list( xCoord( start ) -yCoord( start ) )
end = cadr( startEnd )
end = list( xCoord( end ) -yCoord( end ) )
startEnd = list( start end )
; create svgpath
path = lineToSvgPath( isFirst startEnd )
; append to list
if( boundp( 'paths ) then
tconc( paths path )
else
paths = tconc( nil path )
)
)
(
t
printf( "unknown type ... ")
)
)
)
; combine and all subpaths and close path ( add Z )
svgpath = strcat( buildString( car( paths ) " " ) " Z" )
)
)
procedure( createZone( zone )
let( ( ( svgpath 'unbound )
net segments path voids )
net = zone->net->name
segments = zone->segments
; draw the copper
path = createSvgPath( segments )
if( boundp( 'svgpath ) then
tconc( svgpath path )
else
svgpath = tconc( nil path )
)
; draw the voids
voids = zone->voids
foreach( void voids
segments = void->segments
path = createSvgPath( segments )
; void can only exist, if a path already exists
tconc( svgpath path )
)
zone = strcat(
"{\n"
"\t\"svgpath\": \"" buildString( car( svgpath ) " " ) "\",\n"
"\t\"fillrule\": \"evenodd\",\n"
"\t\"net\": \"" net "\"\n"
"}"
)
)
)
procedure( createPolygon( polygon )
let( ( ( svgpath 'unbound )
segments width path voids filled )
; default is unfilled
filled = 0
; if polygon is filled ...
when( polygon->fill
filled = 1
)
segments = polygon->segments
width = car(segments)->width
; draw the copper
path = createSvgPath( segments )
if( boundp( 'svgpath ) then
tconc( svgpath path )
else
svgpath = tconc( nil path )
)
; ; draw the voids
voids = polygon->voids
foreach( void voids