-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
162 lines (125 loc) · 5.27 KB
/
main.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
#!/usr/bin/python
import os
import json
import argparse
from pcbmode.utils.json import dictFromJsonFile
from component_instances import upvComponentInstances
from components import upvComponents
from nets import upvNets
from paths import upvPaths
from pours import upvPours
from layout_objects import upvLayoutObjects
from trace_segments import upvTraceSegments
#Old Upv JSON spec
#https://forum.upverter.com/uploads/default/86/5809bf9f391807c1.pdf
class upvToPme(object):
def __init__(self):
self.routes = {}
# parse arguments
args = self.argSetup()
self.cmdline_args = args.parse_args()
# input in Upverter OpenJSON format
input_name = self.cmdline_args.filein[0]
if self.cmdline_args.boards is None:
self.board_name = 'default'
else:
self.board_name = self.cmdline_args.boards[0]
self.json_dict = dictFromJsonFile(input_name)
#This project built on version 0.3.0
print("Input file loaded, OpenJSON format version:", self.json_dict['version']['file_version'])
self.convert()
def argSetup(self):
"""
Setup args
"""
args = argparse.ArgumentParser(description="Upverter Importer",
add_help=True)
args.add_argument('-f', '--filein', required=True,
dest='filein', nargs=1,
help='Input file name')
args.add_argument('-b', '--board-name',
dest='boards', required=False, nargs=1,
help='Output will replace all files in specified board\'s directory')
return args
def process_category(self, category, data):
print(category.ljust(22), ' - ', end='')
if category == "component_instances":
self.component_instances = upvComponentInstances(data, self.bounds)
elif category == "components":
self.components = upvComponents(data)
elif category == "design_attributes":
print("Not yet implemented")
elif category == "layer_options":
print("Not yet implemented")
elif category == "layout_bodies":
print("Not yet implemented")
elif category == "layout_body_attributes":
print("Not yet implemented")
elif category == "layout_objects":
self.routes.update(upvLayoutObjects(data, self.bounds))
elif category == "module_instances":
print("Not yet implemented")
elif category == "modules":
print("Not yet implemented")
elif category == "named_regions":
print("Not yet implemented")
elif category == "nets":
upvNets(data)
elif category == "paths":
self.outline, self.bounds = upvPaths(data)
elif category == "pcb_text":
print("Not yet implemented")
elif category == "pins":
print("Not yet implemented")
elif category == "pours":
self.pours, self.shape_instances = upvPours(data)
elif category == "rulers":
print("Not yet implemented")
elif category == "shape_poses":
print("Not yet implemented")
elif category == "shapes":
print("Not yet implemented")
elif category == "trace_segments":
self.routes.update(upvTraceSegments(data, self.bounds))
elif category == "version":
print("Nothing to be done")
else:
print("Unknown")
def saveJSON(self, filename, data):
with open(filename, 'w') as outfile:
json.dump(data, outfile, indent=4, sort_keys=True)
def mergeDefaults(self, filename):
with open('defaults.json') as f:
data = json.load(f)
data['components'] = self.component_instances
data['outline']['shape']['value'] = self.outline
data['shapes'] = self.shape_instances
with open(filename, 'w') as outfile:
json.dump(data, outfile, indent=4, sort_keys=True)
def convert(self):
print("")
print("Processing categories...")
print("")
self.outline, self.bounds = upvPaths(self.json_dict['paths'])
path = 'boards/' + self.board_name + '/'
if not os.path.exists(path):
os.makedirs(path)
if not os.path.exists(path + 'components/'):
os.makedirs(path + 'components/')
if not os.path.exists(path + 'shapes/'):
os.makedirs(path + 'shapes/')
for category in self.json_dict:
self.process_category(category, self.json_dict[category])
#Outlines, component instances
self.mergeDefaults(path + self.board_name + '.json')
#Routes
self.saveJSON(path + self.board_name + '_routing.json', self.routes)
#Components
for component in self.components:
self.saveJSON(path + 'components/%s.json' % component, self.components[component])
#Pours
for pour in self.pours:
self.saveJSON(path + 'shapes/%s.json' % pour, self.pours[pour])
print("Done!")
if __name__ == "__main__":
obj = upvToPme()