-
Notifications
You must be signed in to change notification settings - Fork 30
/
freepcb2pretty.py
810 lines (688 loc) · 27.5 KB
/
freepcb2pretty.py
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
#!/usr/bin/env python
#!/usr/bin/env python3
# freepcb2pretty
# Written in 2014-2015 by Chris Pavlina
# CC0 1.0 Universal
# This script reads a FreePCB library file and converts it to a KiCad
# "pretty" library, primarily for generating the KiCad IPC libraries.
# Tested on Python 2.7, 3.2
# ROUNDED PADS EXCEPTIONS LIST:
# This file specifies exceptions to pad-rounding; use --rounded-pad-exceptions.
# This is one regex per line, compatible with the Python 're' library, that
# will be matched to the component name.
# Caveats:
# - Regular expression will be matched at the beginning of the name, not
# found inside it
# - Regular expressions are matched before stripping L/M/N
# Blank lines are ignored.
# ROUNDED CENTER PADS EXCEPTIONS LIST:
# This file worls just like the rounded pads exceptions list, except only
# applies to pads located at the center of a part. This allows rounding all
# pads except a thermal pad.
# 3D MAP:
# This file is used to specify 3D models for use with each module. The format
# is a sequence of "key: value" pairs, one per line, like this:
# mod: MODULE-NAME
# 3dmod: 3D-MODEL-NAME
# rotx: rotate X (floating degrees)
# roty: rotate Y
# rotz: rotate Z
# scax: scale X (floating millimeters)
# scay:
# scaz:
# offx: offset X (floating millimeters)
# offy: offset Y
# offz: offset Z
#
# Comments are not allowed, but blank lines are. All except mod/3dmod are
# optional (default is scale 1/1/1, rot 0/0/0, off 0/0/0.
import io
import datetime
import time
import sys
import re
import os.path
VERSION="1.0"
TEXT_SIZE = 1.
TEXT_THICK = 0.2
class SexpSymbol (object):
"""An s-expression symbol. This is a bare text object which is exported
without quotation or escaping. Be careful to use valid text here..."""
def __init__ (self, s):
self.s = s
def __str__ (self):
return self.s
def __repr__ (self):
return "SexpSymbol(%r)" % self.s
# For short code
S = SexpSymbol
def SexpDump (sexp, f, indentlevel=0):
"""Dump an s-expression to a file.
indentlevel is used for recursion.
"""
if isinstance (sexp, list):
f.write ("(")
first = True
for i in sexp:
if first:
first = False
else:
f.write (" ")
SexpDump (i, f, indentlevel + 1)
f.write (")")
elif isinstance (sexp, str):
f.write ('"')
f.write (sexp.encode ("unicode_escape").decode ("ascii"))
f.write ('"')
else:
f.write (str (sexp))
def indent_string (s):
"""Put two spaces before each line in s"""
lines = s.split ("\n")
lines = [" " + i for i in lines]
lines = [("" if i == " " else i) for i in lines]
return "\n".join (lines)
def parse_string (s):
"""Grab a string, stripping it of quotes; return string, length."""
if s[0] != '"':
string, delim, garbage = s.partition (" ")
return string.strip (), len (string) + 1
else:
try:
second_quote = s[1:].index ('"') + 1
except ValueError:
return s[1:], len (s)
else:
beyond = s[second_quote + 1:]
beyond_stripped = beyond.lstrip ()
extra_garbage = len (beyond) - len (beyond_stripped)
return s[1:second_quote], second_quote + 1 + extra_garbage
def to_mm (n):
"""Convert FreePCB integer nanometers to floating millimeters"""
# Oh, KiCad... You wanted to get rid of Imperial units, so you replaced
# them with.... floating-point millimeters?! Integer nanometers seems
# pretty good...
return float(n) / 1000000.
def from_mm (n):
return float(n) * 1000000.
class Library (object):
def __init__ (self, file_in=None, opts=None):
self.Modules = []
if file_in is None and opts is None:
self.opts = None
elif file_in is not None and opts is not None:
self.opts = opts
while not file_in.at_end ():
self.Modules.append (PCBmodule (file_in, opts))
else:
raise TypeError ("Expected one or three arguments")
def __str__ (self):
return "\n".join (str (i) for i in self.Modules) + "\n"
def __iadd__ (self, other):
"""Add the contents of another library into this."""
for i in self.Modules:
for j in other.Modules:
if i.Name == j.Name:
raise Exception ("Duplicate module name \"%s\"" % i.Name)
self.Modules.extend (other.Modules)
self.opts = other.opts # In case it was blank
return self
def strip_lmn (self):
"""Strip least/most/nominal specifier from all modules"""
for i in self.Modules:
i.strip_lmn ()
class PCBmodule (object):
def __init__ (self, file_in, opts):
"""Read out the footprint from the FreePCB module."""
self.opts = opts
# 3D data - to be edited externally
self.ThreeDName = None
self.ThreeDScale = [1.0, 1.0, 1.0]
self.ThreeDOffset = [0.0, 0.0, 0.0]
self.ThreeDRot = [0.0, 0.0, 0.0]
# Pre-indent data
self.Name = ""
self.Author = ""
self.Source = ""
self.Description = ""
while not file_in.indent_level () and not file_in.at_end ():
key, value = file_in.get_string (allow_blank=False)
if key == "name":
self.Name = value
elif key == "author":
self.Author = value
elif key == "source":
self.Source = value
elif key == "description":
self.Description = value
else:
raise Exception ("Unexpected key \"%s\" on line %d."
% (key, file_in.Lineno - 1))
assert self.Name
assert self.Author
assert self.Source
#assert self.Description
# Post-indent data
self.Units = None
self.SelectionRect = None
self.RefText = None
self.ValText = ""
self.Centroid = "0 0 0 0"
self.Graphics = []
while file_in.indent_level () and not file_in.at_end ():
key = file_in.peek_key ()
if key == "units":
key, value = file_in.get_string (allow_blank=False)
self.Units = value
elif key == "sel_rect":
key, value = file_in.get_string (allow_blank=False)
self.SelectionRect = value
elif key == "ref_text":
key, value = file_in.get_string (allow_blank=False)
self.RefText = value
elif key == "value_text":
key, value = file_in.get_string (allow_blank=False)
self.ValText = value
elif key == "centroid":
key, value = file_in.get_string (allow_blank=False)
self.Centroid = value
elif key == "outline_polyline":
self.Graphics.append (Polyline.create_from_freepcb (file_in, opts))
elif key == "n_pins":
file_in.get_string (allow_blank=True) # Skip the n_pins line
elif key == "pin":
self.Graphics.append (Pin.create_from_freepcb (self.Name, file_in, opts))
else:
raise Exception ("Unexpected key \"%s\" on line %d."
% (key, file_in.Lineno - 1))
# Don't actually need this info, but check for it anyway just to
# ensure the file format hasn't changed.
assert self.Units == "NM"
assert self.SelectionRect
assert self.RefText
assert self.Centroid == "0 0 0 0"
self.tedit = time.time()
def __str__ (self):
s = "PCB footprint:\n" \
+ " Name: " + self.Name + "\n" \
+ " Author: " + self.Author + "\n" \
+ " Source: " + self.Source + "\n" \
+ " Description: " + self.Description + "\n"
if self.ThreeDname is not None: \
s += " 3D model: " + self.ThreeDName + "\n"
for i in self.Graphics:
s += indent_string (str (i))
return s
def kicad_sexp (self):
sexp = [S('module')]
sexp.append (self.Name)
sexp.append ([S("layer"), "F.Cu"])
sexp.append ([S("tedit"), "%08X" % int (self.tedit)])
sexp.append ([S("descr"), str(self.Description)])
sexp.append ([S("attr"), S("smd")])
sexp.append ([S("fp_text"),
S("reference"), "REF**",
[S("at"), 0, 0],
[S("layer"), "F.SilkS"],
[S("effects"),
[S("font"),
[S("size"), 0.8, 0.8],
[S("thickness"), 0.15]]]])
sexp.append ([S("fp_text"),
S("value"), self.Name,
[S("at"), 0, 0],
[S("layer"), "F.Fab"],
[S("effects"),
[S("font"),
[S("size"), 0.8, 0.8],
[S("thickness"), 0.15]]]])
# Polylines
for i in self.Graphics:
if not isinstance (i, Polyline): continue
sexp.extend (i.kicad_sexp ())
# Pads/pins
for i in self.Graphics:
if not isinstance (i, Pin): continue
sexp.extend (i.kicad_sexp ())
# 3D
if self.ThreeDName is not None:
sexp.append ([S("model"), self.ThreeDName,
[S("at"), [S("xyz")] + self.ThreeDOffset],
[S("scale"), [S("xyz")] + self.ThreeDScale],
[S("rotate"), [S("xyz")] + self.ThreeDRot]])
return sexp
def strip_lmn (self):
"""Strip least/most/nominal specifier from all modules"""
if self.Name[-1] in "LMNlmn":
self.Name = self.Name[:-1]
def bounding_box (self):
"""Return a (left, right, top, bottom) bounding box"""
sub_boxes = [i.bounding_box() for i in self.Graphics]
lefts = [i[0] for i in sub_boxes]
rights = [i[1] for i in sub_boxes]
tops = [i[2] for i in sub_boxes]
bottoms = [i[3] for i in sub_boxes]
bb = [min(lefts), max(rights), max(tops), min(bottoms)]
return bb
def add_courtyard (self, spacing):
left, right, top, bottom = self.bounding_box ()
left -= from_mm (spacing)
right += from_mm (spacing)
top += from_mm (spacing)
bottom -= from_mm (spacing)
cy = Polyline ()
cy.Points = [(left, top), (right, top), (right, bottom), (left, bottom),
(left, top)]
cy.KicadLinewidth = 0.15
cy.Layer = "F.CrtYd"
self.Graphics.append (cy)
class Polyline (object):
def __init__ (self):
"""Read a polyline object."""
self.opts = None
self.Points = []
self.Linewidth = None
self.Closed = False
self.Layer = "F.SilkS"
self.KicadLinewidth = 0.35
@classmethod
def create_from_freepcb (cls, file_in, opts):
self = cls ()
self.opts = opts
# First point and line width
key, value = file_in.get_string (allow_blank=False)
assert key == "outline_polyline"
try:
value = [int(i) for i in value.split ()]
except ValueError:
raise Exception ("Line %d must contain a list of three integers."
% (file_in.Lineno - 1))
if len (value) != 3:
raise Exception ("Line %d must contain a list of three integers."
% (file_in.Lineno - 1))
self.Linewidth = value[0]
self.Points.append (value[1:])
# Subsequent points
while file_in.peek_key () == "next_corner":
key, value = file_in.get_string (allow_blank=False)
assert key == "next_corner"
try:
value = [int(i) for i in value.split ()]
except ValueError:
raise Exception ("Line %d must contain a list of three integers."
% (file_in.Lineno - 1))
if len (value) != 3:
raise Exception ("Line %d must contain a list of three integers."
% (file_in.Lineno - 1))
self.Points.append (value[:2])
# Third number is "side style", which KiCad doesn't have.
if file_in.peek_key () == "close_polyline":
file_in.get_string (allow_blank=False)
self.Closed = True
self.Points.append (self.Points[0])
return self
def __str__ (self):
s = "Polyline:\n" \
+ " Line width: " + str (self.Linewidth) + "\n"
for i in self.Points:
s += " Point: %d, %d\n" % tuple (i)
return s
def kicad_sexp (self):
sexp = []
last_corner = self.Points[0]
for i in self.Points[1:]:
sexp.append ([S("fp_line"),
[S("start"), to_mm (last_corner[0]), to_mm (-last_corner[1])],
[S("end"), to_mm (i[0]), to_mm (-i[1])],
[S("layer"), self.Layer],
[S("width"), self.KicadLinewidth]])
last_corner = i
return sexp
def bounding_box (self):
"""Return a (left, right, top, bottom) bounding box"""
left = min (i[0] for i in self.Points)
right = max (i[0] for i in self.Points)
top = max (i[1] for i in self.Points)
bottom = min (i[1] for i in self.Points)
return (left, right, top, bottom)
class Pin (object):
def __init__ (self, modname):
"""Read a pin object."""
self.opts = None
self.ModName = modname
self.Name = None
self.DrillDiam = None
self.Coords = []
self.Angle = None
self.TopPad = None
self.InnerPad = None
self.BottomPad = None
@classmethod
def create_from_freepcb (cls, modname, file_in, opts):
self = cls (modname)
self.opts = opts
key, value = file_in.get_string (allow_blank=False)
assert key == "pin"
self.Name, length = parse_string (value)
value = value[length:]
try:
value = [int(i) for i in value.split ()]
except ValueError:
raise Exception ("Line %d must contain a list of four integers."
% (file_in.Lineno - 1))
if len (value) != 4:
raise Exception ("Line %d must contain a list of four integers."
% (file_in.Lineno - 1))
self.DrillDiam = value[0]
self.Coords = value[1:3]
self.Angle = value[3]
while file_in.peek_key ().endswith ("_pad"):
key, value = file_in.get_string (allow_blank=False)
if key == "top_pad":
self.TopPad = Pad (value, file_in)
elif key == "inner_pad":
self.InnerPad = Pad (value, file_in)
elif key == "bottom_pad":
self.BottomPad = Pad (value, file_in)
else:
raise Exception ("Unexpected key \"%s\" on line %d."
% (key, file_in.Lineno - 1))
return self
def __str__ (self):
s = "Pin:\n" + \
" Name: " + self.Name + "\n" + \
" Drill diameter: " + str (self.DrillDiam) + "\n" + \
" Angle: " + str (self.Angle) + "\n" + \
" Coords: %d, %d\n" % tuple(self.Coords) + \
" TopPad: " + str (self.TopPad) + "\n" + \
" InnerPad: " + str (self.InnerPad) + "\n" + \
" BottomPad: " + str (self.BottomPad) + "\n"
return s
def kicad_sexp (self):
"""See Library.kicad_repr"""
if self.DrillDiam == 0:
# Surface mount
sx, sy = self.TopPad.Width, self.TopPad.Len1 + self.TopPad.Len2
if self.Angle == 90:
sx, sy = sy, sx
else:
assert self.Angle == 0
# Rounded pads
can_round_pads = True
for regex in self.opts.rpexceptions:
if regex.match (self.ModName):
can_round_pads = False
can_round_center = True
for regex in self.opts.rcexceptions:
if regex.match (self.ModName):
can_round_center = False
if self.opts.roundedpads is None:
shape = "rect"
elif not can_round_center and (0, 0) == tuple (self.Coords):
shape = "rect"
elif self.opts.roundedpads == "all":
shape = "oval" if can_round_pads else "rect"
elif self.opts.roundedpads == "allbut1":
if can_round_pads:
shape = "rect" if self.Name == "1" else "oval"
else:
shape = "rect"
else:
assert False
# Output shape
sexp = [[S("pad"), self.Name, S("smd"), S(shape),
[S("at"), to_mm (self.Coords[0]), -to_mm (self.Coords[1])],
[S("size"), to_mm (sy), to_mm (sx)],
[S("layers"), "F.Cu", "F.Paste", "F.Mask"]]]
else:
# PTH
sx, sy = self.TopPad.Width, self.TopPad.Len1 + self.TopPad.Len2
if self.Angle == 90:
sx, sy = sy, sx
else:
assert self.Angle == 0
if self.Name == "1":
shape = "rect"
else:
shape = "circle"
sexp = [[S("pad"), self.Name, S("thru_hole"), S(shape),
[S("at"), to_mm (self.Coords[0]), -to_mm (self.Coords[1])],
[S("size"), to_mm (sy), to_mm (sx)],
[S("drill"), to_mm (self.DrillDiam)],
[S("layers"), "*.Cu", "*.Mask", "F.SilkS"]]]
return sexp
def bounding_box (self):
"""Return a (left, right, top, bottom) bounding box"""
sx, sy = self.TopPad.Width, self.TopPad.Len1 + self.TopPad.Len2
if self.Angle == 90:
sx, sy = sy, sx
else:
assert self.Angle == 0
left = self.Coords[0] - (sy / 2)
right = self.Coords[0] + (sy / 2)
top = self.Coords[1] + (sx / 2)
bottom = self.Coords[1] - (sx / 2)
return (left, right, top, bottom)
class Pad (object):
def __init__ (self, value, file_in):
try:
value = [int(i) for i in value.split ()]
except ValueError:
raise Exception ("Line %d must contain a list of four or five integers."
% (file_in.Lineno - 1))
if len (value) != 5 and len (value) != 4:
raise Exception ("Line %d must contain a list of four or five integers."
% (file_in.Lineno - 1))
if len (value) == 4:
# default corner radius
value.append(0)
self.Shape, self.Width, self.Len1, self.Len2, self.CornRad = value
def __str__ (self):
return "Pad: shape %d, (w %d, L1 %d, L2 %d), corner %d" % \
(self.Shape, self.Width, self.Len1, self.Len2, self.CornRad)
class FreePCBfile (object):
"""This just wraps a FreePCB text file, reading it out in pieces."""
def __init__ (self, f):
self.File = [i.rstrip () for i in f.readlines ()]
self.File.reverse ()
self.Lineno = 1
def get_string (self, allow_blank):
# Retrieve a line of the format "key: value"
while self.File and not self.File[-1].strip ():
self.File.pop ()
self.Lineno += 1
assert len (self.File)
# Gobble blank lines
self.Lineno += 1
key, delim, value = self.File.pop ().partition (":")
key = key.strip ()
value = value.strip ()
if value.startswith ('"') and value.endswith ('"'):
value, throwaway = parse_string (value)
if not value:
raise Exception ("Line %d: expected value" % (self.Lineno - 1))
return key, value
def indent_level (self):
# Get the current indentation level based on the current line, two
# spaces = tab.
line = self.File[-1]
i = 0
halfindents = 0
while i < len (line):
if line[i] == '\t':
halfindents += 2
elif line[i] == ' ':
halfindents += 1
else:
break
i += 1
return halfindents // 2
def at_end (self):
while self.File and not self.File[-1].strip ():
self.File.pop ()
self.Lineno += 1
return not self.File
def peek_key (self):
# Read the key from the current line without popping it
assert len (self.File)
key, delim, value = self.File[-1].partition (":")
return key.strip ()
def process_3dmap (mapfile, library):
"""Read all 3D mappings from mapfile, applying them to library."""
f = open (mapfile)
ff = FreePCBfile (f) # Exploit the format to reuse a parser
current_module = None
while not ff.at_end ():
key, value = ff.get_string (allow_blank=False)
if key == "mod":
for i in library.Modules:
if i.Name == value:
current_module = i
break
else:
raise Exception (("3D map (line %d): couldn't find " +
"module \"%s\"") % (ff.Lineno - 1, value))
elif key == "3dmod":
if current_module is None:
raise Exception (("3D map (line %d): cannot specify " +
"parameters before module name") % (ff.Lineno - 1))
current_module.ThreeDName = value
elif key.startswith ("rot"):
if current_module is None:
raise Exception (("3D map (line %d): cannot specify " +
"parameters before module name") % (ff.Lineno - 1))
index = ord (key[3]) - ord('x')
current_module.ThreeDRot[index] = float (value)
elif key.startswith ("sca"):
if current_module is None:
raise Exception (("3D map (line %d): cannot specify " +
"parameters before module name") % (ff.Lineno - 1))
index = ord (key[3]) - ord('x')
current_module.ThreeDScale[index] = float (value)
elif key.startswith ("off"):
if current_module is None:
raise Exception (("3D map (line %d): cannot specify " +
"parameters before module name") % (ff.Lineno - 1))
index = ord (key[3]) - ord('x')
current_module.ThreeDOffset[index] = float (value)
else:
raise Exception ("3D map (line %d): unknown key \"%s\"" %
(ff.Lineno - 1, key))
def main (args=None, zipfile=None):
"""
When called from other Python code, 'zipfile' is accepted in lieu of a list
of files; the files will be pulled from the zipfile object.
"""
from argparse import ArgumentParser
description = "Read a FreePCB library file and convert it to Kicad " + \
"format, with output to the specified directory. Uses the new " + \
"millimeter format. If multiple files are given, they will be " + \
"merged."
p = ArgumentParser (description=description)
p.add_argument ("-v", "--version", action="version",
version="%(prog)s " + VERSION)
p.add_argument ("outdir", metavar="DIR", type=str,
help="Output directory")
p.add_argument ("infile", metavar="FILE", type=str, nargs='*',
help="FreePCB-format input(s)")
blurbp = p.add_mutually_exclusive_group ()
blurbp.add_argument ("--blurb", dest="blurb", action="store_const",
const=True, default=False,
help="Include a blurb about freepcb2pretty in the output file's" +
" comments (default: no)")
blurbp.add_argument ("--no-blurb", dest="blurb", action="store_const",
const=False, default=False)
p.add_argument ("--3dmap", dest="threedmap", type=str,
help="File mapping PCB modules to 3D models. See source code " + \
"(comments in header) for documentation.")
roundp = p.add_mutually_exclusive_group ()
roundp.add_argument ("--rounded-pads", dest="roundedpads",
action="store_const", const="all", default=None,
help="Round all corners of square pads")
roundp.add_argument ("--rounded-except-1", dest="roundedpads",
action="store_const", const="allbut1", default=None,
help="Round all corners of square pads, except pad 1")
p.add_argument ("--rounded-pad-exceptions", dest="rpexcept", type=str,
help="Exceptions list for rounded pads. See source code " + \
"(comments in header) for documentation.")
p.add_argument ("--rounded-center-exceptions", dest="rcexcept", type=str,
help="Exceptions list for rounded center pads. See source code " + \
"(comments in header) for documentation.")
p.add_argument ("--strip-lmn", dest="strip_lmn", action="store_const",
const=True, default=False,
help="Strip final L/M/N specifiers from names")
p.add_argument ("--add-courtyard", dest="courtyard", type=float,
default=None,
help="Add a courtyard a fixed number of mm outside the bounding box")
p.add_argument ("--hash-time", dest="hashtime", action="store_const",
const=True, default=False,
help="Set a fake edit time on the footprints using a hash")
args = p.parse_args (args)
# Parse rounded pads exceptions file?
rpexceptions = []
if args.rpexcept is not None:
with open (args.rpexcept) as f:
for line in f:
line = line.strip ()
if not line:
continue
rpexceptions.append (re.compile (line))
# It's really an argument, so put it inside args
args.rpexceptions = rpexceptions
# Parse rounded center pads exceptions file?
rcexceptions = []
if args.rcexcept is not None:
with open (args.rcexcept) as f:
for line in f:
line = line.strip ()
if not line:
continue
rcexceptions.append (re.compile (line))
# It's really an argument, so put it inside args
args.rcexceptions = rcexceptions
# Main conversion
print ("Loading FreePCB library...")
library = Library ()
for filename in args.infile:
f = open (filename)
ff = FreePCBfile (f)
sublibrary = Library (ff, args)
library += sublibrary
f.close ()
if zipfile is not None:
for filename in zipfile.namelist ():
f = zipfile.open (filename, 'r')
f_wrapped = io.TextIOWrapper (f, 'utf8')
ff = FreePCBfile (f_wrapped)
sublibrary = Library (ff, args)
library += sublibrary
f.close ()
# Strip L/M/N?
if args.strip_lmn:
library.strip_lmn ()
# Add 3D models
if args.threedmap is not None:
process_3dmap (args.threedmap, library)
# Add courtyards
if args.courtyard is not None:
for i in library.Modules:
i.add_courtyard (args.courtyard)
# Fake timestamps?
if args.hashtime:
import hashlib
import struct
for i in library.Modules:
i.tedit = 0
md5 = hashlib.md5()
md5.update(str(i.kicad_sexp()).encode('utf8'))
md5sum = md5.digest()
i.tedit = struct.unpack("<L", md5sum[0:4])[0]
print ("Generating KiCad library...")
for i in library.Modules:
path = os.path.join (args.outdir, i.Name + '.kicad_mod')
with open (path, 'w') as f:
sexp = i.kicad_sexp ()
SexpDump (sexp, f)
# sexpdata.dump (i.kicad_sexp (), f)
if __name__ == "__main__":
main ()