-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyemb.py
318 lines (292 loc) · 11.2 KB
/
pyemb.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
from __future__ import print_function
import glob
import os
import sys
import pyembroidery
PYEMB_VERSION = "0.0.2"
def formatted_string(string, pattern=None, filename=None):
if "%" not in string:
return string
if filename is not None:
if "%f" in string:
string = string.replace("%f", filename)
if "%F" in string:
filename_suffix = os.path.split(filename)[1]
string = string.replace("%F", filename_suffix)
if "%e" in string:
ext = os.path.splitext(filename)[1][1:]
string = string.replace("%e", ext)
if "%d" in string:
directory = os.path.split(filename)[0]
string = string.replace("%d", directory)
if "%n" in string:
filename_suffix = os.path.split(filename)[1]
name = os.path.splitext(filename_suffix)[0]
string = string.replace("%n", name)
if pattern is not None:
if "%S" in string:
string = string.replace("%S", str(len(pattern.stitches)))
if "%s" in string:
string = string.replace("%s", str(pattern.count_stitch_commands(pyembroidery.STITCH)))
if "%j" in string:
string = string.replace("%j", str(pattern.count_stitch_commands(pyembroidery.JUMP)))
if "%c" in string:
count = pattern.count_stitch_commands(pyembroidery.COLOR_CHANGE)
count += pattern.count_stitch_commands(pyembroidery.NEEDLE_SET)
string = string.replace("%c", str(count))
if "%t" in string:
count = pattern.count_stitch_commands(pyembroidery.TRIM)
string = string.replace("%t", str(count))
if "%x" in string or "%X" in string or "%y" in string or "%Y" in string or "%w" in string or "%h" in string:
bounds = pattern.bounds()
string = string.replace("%x", str(bounds[0]))
string = string.replace("%y", str(bounds[1]))
string = string.replace("%X", str(bounds[2]))
string = string.replace("%Y", str(bounds[3]))
string = string.replace("%w", str(bounds[2] - bounds[0]))
string = string.replace("%h", str(bounds[3] - bounds[1]))
if "%l" in string:
try:
label = pattern.extras["name"]
except KeyError:
label = ""
string = string.replace("%l", str(label))
return string
class PyEmb:
def __init__(self, arguments):
self.log = self.no_operation
self.elements = list(reversed(arguments))
if len(arguments) == 1:
self.elements = ["-h"]
self.command_lookup = {
"-i": self.command_input,
"-o": self.command_output,
"-m": self.command_merge,
"-c": self.command_conditional,
"-f": self.command_format,
"-s": self.command_scale,
"-r": self.command_rotate,
"-t": self.command_translate,
"-e": self.command_encode_setting,
"-q": self.command_quiet,
"-v": self.command_verbose,
"-h": self.command_help
}
def get(self):
return self.elements.pop()
def v(self):
if not self.elements:
return None
if self.elements[-1] not in self.command_lookup:
return self.get()
else:
return None
def command_help(self, values):
print("PyEmb v.", PYEMB_VERSION)
print("-i [<input>]*, matches wildcards")
print("-o [<output>]*, matches wildcard, formatted")
print("-m [<input>]*, matches wildcards")
print("-f [<string>], print string, formatted")
print("-c conditional, filters embroidery patterns, formatted")
print("-s <scale> [<scale_y> [<x> <y>]], scale pattern")
print("-r <theta> [<x> <y>], rotate pattern")
print("-t <x> <y>, translate")
print("-e [<setting> <value>]*, set encoder settings")
print("-q, quiet mode")
print("-v, verbose mode")
print("-h, display this message")
print("")
print("String Formatting:")
print("%f, filename")
print("%F, filename without directory")
print("%e, extension")
print("%d, directory")
print("%n, name of file, without extension")
print("%S, total commands in stitches")
print("%s, STITCH command count")
print("%j, JUMP command count")
print("%c, COLOR_CHANGE & NEEDLE_SET count")
print("%t, TRIM command count")
print("%l, internal label, if it exists")
print("%w, width")
print("%h, height")
print("%x, min x")
print("%y, min y")
print("%X, max x")
print("%Y, max y")
return values
def execute(self):
values = []
while self.elements:
command = self.get()
if command not in self.command_lookup:
continue
values = self.command_lookup[command](values)
def command_input(self, values):
v = self.v()
input_files = glob.glob(v)
patterns = []
for input_file in input_files:
self.log("Loading:", input_file)
emb_pattern = pyembroidery.read(input_file)
if emb_pattern is None:
continue
patterns.append((emb_pattern, input_file, {}))
return patterns
def command_output(self, values):
out_path = []
v = self.v()
while v is not None:
out_path.append(v)
v = self.v()
for value in values:
if not isinstance(value, tuple):
continue
pattern = value[0]
filename = value[1]
settings = value[2]
for path in out_path:
path = formatted_string(path, pattern, filename)
ext_split = os.path.splitext(path)
name = ext_split[0]
ext = ext_split[1]
if '*' in name:
filename_suffix = os.path.split(filename)[1]
name = name.replace('*', filename_suffix)
if ext == "" or ext == ".*":
for file_type in pyembroidery.supported_formats():
if 'writer' in file_type:
out_file = name + '.' + file_type['extension']
self.log("Saving:", out_file)
pyembroidery.write_embroidery(file_type['writer'], pattern, out_file, settings)
else:
self.log("Saving:", name + ext)
pyembroidery.write(pattern, name + ext, settings)
return []
def command_merge(self, values):
for value in values:
if not isinstance(value, tuple):
continue
pattern = value[0]
v = self.v()
input_files = glob.glob(v)
for input_file in input_files:
self.log("Merging:", input_file)
pattern.stitches = pattern.stitches[0:-1] # remove flagged end.
pyembroidery.read(input_file, pattern=pattern)
return values
def command_format(self, values):
strings_format = []
v = self.v()
while v is not None:
strings_format.append(v)
v = self.v()
string_format = " ".join(strings_format)
for value in values:
string = string_format
if not isinstance(value, tuple):
continue
pattern = value[0]
filename = value[1]
string = formatted_string(string, pattern, filename)
print(string)
return values
def command_scale(self, values):
sx = self.v()
sy = self.v()
x = self.v()
y = self.v()
if sx is not None:
sx = float(sx)
if sy is not None:
sy = float(sy)
if x is not None:
x = float(x)
if y is not None:
y = float(y)
matrix = pyembroidery.EmbMatrix()
matrix.post_scale(sx, sy, x, y)
for value in values:
if not isinstance(value, tuple):
continue
pattern = value[0]
pattern.transform(matrix)
self.log("Scaled", pattern, "by", sx, sy)
return values
def command_rotate(self, values):
theta = self.v()
x = self.v()
y = self.v()
if theta is not None:
theta = float(theta)
if x is not None:
x = float(x)
if y is not None:
y = float(y)
matrix = pyembroidery.EmbMatrix()
matrix.post_rotate(theta, x, y)
for value in values:
if not isinstance(value, tuple):
continue
pattern = value[0]
pattern.transform(matrix)
self.log("Rotated", pattern, "by", theta, "degrees.")
return values
def command_translate(self, values):
x = self.v()
y = self.v()
if x is not None:
x = float(x)
if y is not None:
y = float(y)
matrix = pyembroidery.EmbMatrix()
matrix.post_translate(x, y)
for value in values:
if not isinstance(value, tuple):
continue
pattern = value[0]
pattern.transform(matrix)
self.log("Transformed", pattern, "by", x, y)
return values
def command_conditional(self, values):
new_values = []
v0 = self.v()
for value in values:
if not isinstance(value, tuple):
continue
pattern = value[0]
filename = value[1]
formatted = formatted_string(v0, pattern, filename)
conditional_met = eval(formatted)
if conditional_met:
new_values.append(value)
self.log("Included", pattern, formatted, conditional_met)
else:
self.log("Excluded", pattern, formatted, conditional_met)
self.log("Conditional Finished", len(new_values), "of", len(values), "passed")
return new_values
def command_encode_setting(self, values):
add_settings = {}
v0 = self.v()
v1 = self.v()
while v1 is not None:
add_settings[v0] = v1
v0 = self.v()
v1 = self.v()
for i, value in enumerate(values):
if not isinstance(value, tuple):
continue
settings = value[2]
settings.update(add_settings)
return values
def command_quiet(self, values):
self.log = self.no_operation
return values
def command_verbose(self, values):
self.log = print
return values
def no_operation(self, *args):
pass
argv = sys.argv
pyemb = PyEmb(argv)
pyemb.execute()