forked from Zst/gcode2png
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gcodeParser.py
534 lines (446 loc) · 16.4 KB
/
gcodeParser.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
import math
import re
import numpy as np
def preg_match(rex, s, m, opts={}):
_m = re.search(rex, s)
m.clear()
if _m:
m.append(s)
m.extend(_m.groups())
return True
return False
class GcodeParser:
def __init__(self):
self.model = GcodeModel(self)
self.current_type = None
self.layer_count = None
self.layer_current = None
def parseFile(self, path):
# read the gcode file
with open(path, "r") as f:
# init line counter
self.lineNb = 0
# for all lines
for line in f:
# inc line counter
self.lineNb += 1
# remove trailing linefeed
self.line = line.rstrip()
# parse a line
self.parseLine()
self.model.postProcess()
return self.model
def parseLine(self):
# strip comments:
## first handle round brackets
command = re.sub("\([^)]*\)", "", self.line)
## then semicolons
idx = command.find(";")
if idx >= 0: # -- any comment to parse?
m = []
if preg_match(r"TYPE:\s*(\w+)", command, m):
self.current_type = m[1].lower()
elif preg_match(r"; (skirt|perimeter|infill|support)", command, m):
self.current_type = m[1]
elif not self.layer_count and re.search(r"LAYER_COUNT:", command):
self.layer_count = 1
elif preg_match(
r"LAYER:\s*(\d+)", command, m
): # -- we have actual LAYER: counter! let's use it
self.layer_count = 1
self.layer_current = int(m[1])
# elif preg_match(r'; (\w+):\s*"?(\d+)"?',command,m):
# self.metadata[m[1]] = m[2]
command = command[0:idx].strip()
## detect unterminated round bracket comments, just in case
idx = command.find("(")
if idx >= 0:
self.warn("Stripping unterminated round-bracket comment")
command = command[0:idx].strip()
# TODO strip logical line number & checksum
# code is first word, then args
comm = command.split(None, 1)
code = comm[0] if (len(comm) > 0) else None
args = comm[1] if (len(comm) > 1) else None
if code:
if hasattr(self, "parse_" + code):
getattr(self, "parse_" + code)(args)
else:
self.warn("Unknown code '%s'" % code)
def parseArgs(self, args):
dic = {}
if args:
bits = args.split()
for bit in bits:
letter = bit[0]
try:
coord = float(bit[1:])
except ValueError:
coord = 1
dic[letter] = coord
return dic
def parse_G0(self, args):
# G0: Rapid move
# same as a controlled move for us (& reprap FW)
self.parse_G1(args, "G0")
def parse_G1(self, args, type="G1"):
# G1: Controlled move
self.model.do_G1(
self.parseArgs(args),
type + (":" + self.current_type if self.current_type else ""),
)
def parse_G2(self, args, type="G2"):
# G2: Arc move
self.model.do_G2(
self.parseArgs(args),
type + (":" + self.current_type if self.current_type else ""),
)
def parse_G3(self, args, type="G3"):
# G3: Arc move
self.model.do_G2(
self.parseArgs(args),
type + (":" + self.current_type if self.current_type else ""),
)
def parse_G20(self, args):
# G20: Set Units to Inches
self.error("Unsupported & incompatible: G20: Set Units to Inches")
def parse_G21(self, args):
# G21: Set Units to Millimeters
# Default, nothing to do
pass
def parse_G28(self, args):
# G28: Move to Origin
self.model.do_G28(self.parseArgs(args))
def parse_G90(self, args):
# G90: Set to Absolute Positioning
self.model.setRelative(False)
def parse_G91(self, args):
# G91: Set to Relative Positioning
self.model.setRelative(True)
def parse_G92(self, args):
# G92: Set Position
self.model.do_G92(self.parseArgs(args))
def warn(self, msg):
print("[WARN] Line %d: %s (Text:'%s')" % (self.lineNb, msg, self.line))
def error(self, msg):
print("[ERROR] Line %d: %s (Text:'%s')" % (self.lineNb, msg, self.line))
raise Exception(
"[ERROR] Line %d: %s (Text:'%s')" % (self.lineNb, msg, self.line)
)
class BBox(object):
def __init__(self, coords):
self.xmin = self.xmax = coords["X"]
self.ymin = self.ymax = coords["Y"]
self.zmin = self.zmax = coords["Z"]
def dx(self):
return self.xmax - self.xmin
def dy(self):
return self.ymax - self.ymin
def dz(self):
return self.zmax - self.zmin
def cx(self):
return (self.xmax + self.xmin) / 2
def cy(self):
return (self.ymax + self.ymin) / 2
def cz(self):
return (self.zmax + self.zmin) / 2
def extend(self, coords):
self.xmin = min(self.xmin, coords["X"])
self.xmax = max(self.xmax, coords["X"])
self.ymin = min(self.ymin, coords["Y"])
self.ymax = max(self.ymax, coords["Y"])
self.zmin = min(self.zmin, coords["Z"])
self.zmax = max(self.zmax, coords["Z"])
class GcodeModel:
def __init__(self, parser):
# save parser for messages
self.parser = parser
# latest coordinates & extrusion relative to offset, feedrate
self.relative = {
"X": 0.0,
"Y": 0.0,
"Z": 0.0,
"F": 0.0,
"E": 0.0,
"I": 0.0,
"J": 0.0,
}
# offsets for relative coordinates and position reset (G92)
self.offset = {"X": 0.0, "Y": 0.0, "Z": 0.0, "E": 0.0}
# if true, args for move (G1) are given relatively (default: absolute)
self.isRelative = False
# the segments
self.segments = []
self.layers = None
self.distance = None
self.extrudate = None
self.bbox = None
def do_G1(self, args, type):
# G0/G1: Rapid/Controlled move
# clone previous coords
coords = dict(self.relative)
# update changed coords
for axis in args.keys():
if axis in coords:
if self.isRelative:
coords[axis] += args[axis]
else:
coords[axis] = args[axis]
else:
self.warn("Unknown axis '%s'" % axis)
# build segment
absolute = {
"X": self.offset["X"] + coords["X"],
"Y": self.offset["Y"] + coords["Y"],
"Z": self.offset["Z"] + coords["Z"],
"F": coords["F"], # no feedrate offset
"E": self.offset["E"] + coords["E"],
}
seg = Segment(type, absolute, self.parser.lineNb, self.parser.line)
self.addSegment(seg)
# update model coords
self.relative = coords
def do_G2(self, args, type):
# G2 & G3: Arc move
coords = dict(self.relative) # -- clone previous coords
for axis in args.keys(): # -- update changed coords
if axis in coords:
if self.isRelative:
coords[axis] += args[axis]
else:
coords[axis] = args[axis]
else:
self.warn("Unknown axis '%s'" % axis)
# -- self.relative (current pos), coords (new pos)
dir = 1 # -- ccw is angle positive
if type.find("G2") == 0:
dir = -1 # -- cw is angle negative
xp = (
self.relative["X"] + coords["I"]
) # -- center point of arc (static), current pos
yp = self.relative["Y"] + coords["J"]
es = self.relative["E"]
ep = coords["E"] - es
as_ = math.atan2(-coords["J"], -coords["I"]) # -- angle start (current pos)
ae_ = math.atan2(
coords["Y"] - yp, coords["X"] - xp
) # -- angle end (new position)
da = math.sqrt(coords["I"] ** 2 + coords["J"] ** 2)
if dir > 0:
if as_ > ae_:
as_ -= math.pi * 2
al = abs(ae_ - as_) * dir
else:
if as_ < ae_:
as_ += math.pi * 2
al = abs(ae_ - as_) * dir
n = int(abs(al) * da / 0.5)
# if coords['Z']<0.4 or coords['Z']==2.3: print(type,dir,n,np.degrees(as_),np.degrees(ae_),al,coords['Z'],"\n",self.relative,"\n",args)
if n > 0:
for i in range(1, n + 1):
f = i / n
# print(i,f,n)
a = as_ + al * f
coords["X"] = xp + math.cos(a) * da
coords["Y"] = yp + math.sin(a) * da
coords["E"] = es + ep * f
absolute = {
"X": self.offset["X"] + coords["X"],
"Y": self.offset["Y"] + coords["Y"],
"Z": self.offset["Z"] + coords["Z"],
"F": coords["F"], # no feedrate offset
"E": self.offset["E"] + coords["E"],
}
seg = Segment(type, absolute, self.parser.lineNb, self.parser.line)
self.addSegment(seg)
# update model coords
self.relative = coords
def do_G28(self, args):
# G28: Move to Origin
self.warn("G28 unimplemented")
def do_G92(self, args):
# G92: Set Position
# this changes the current coords, without moving, so do not generate a segment
# no axes mentioned == all axes to 0
if not len(args.keys()):
args = {"X": 0.0, "Y": 0.0, "Z": 0.0, "E": 0.0}
# update specified axes
for axis in args.keys():
if axis in self.offset:
# transfer value from relative to offset
self.offset[axis] += self.relative[axis] - args[axis]
self.relative[axis] = args[axis]
else:
self.warn("Unknown axis '%s'" % axis)
def setRelative(self, isRelative):
self.isRelative = isRelative
def addSegment(self, segment):
if self.parser.layer_count:
segment.layerIdx = self.parser.layer_current
self.segments.append(segment)
# print segment
def warn(self, msg):
self.parser.warn(msg)
def error(self, msg):
self.parser.error(msg)
def classifySegments(self):
# apply intelligence, to classify segments
# start model at 0
coords = {"X": 0.0, "Y": 0.0, "Z": 0.0, "F": 0.0, "E": 0.0}
# first layer at Z=0
currentLayerIdx = 0
currentLayerZ = 0
for seg in self.segments:
# default style is fly (move, no extrusion)
style = "fly"
# no horizontal movement, but extruder movement: retraction/refill
if (
(seg.coords["X"] == coords["X"])
and (seg.coords["Y"] == coords["Y"])
and (seg.coords["E"] != coords["E"])
):
style = "retract" if (seg.coords["E"] < coords["E"]) else "restore"
# some horizontal movement, and positive extruder movement: extrusion
if (
(seg.coords["X"] != coords["X"]) or (seg.coords["Y"] != coords["Y"])
) and (seg.coords["E"] > coords["E"]):
style = "extrude"
# positive extruder movement in a different Z signals a layer change for this segment
if (seg.coords["E"] > coords["E"]) and (seg.coords["Z"] != currentLayerZ):
currentLayerZ = seg.coords["Z"]
currentLayerIdx += 1
# set style and layer in segment
seg.style = style
if not self.parser.layer_count:
seg.layerIdx = currentLayerIdx
# print coords
# print seg.coords
# print "%s (%s | %s)"%(style, str(seg.coords), seg.line)
# print
# execute segment
coords = seg.coords
def splitLayers(self):
# split segments into previously detected layers
# start model at 0
coords = {"X": 0.0, "Y": 0.0, "Z": 0.0, "F": 0.0, "E": 0.0}
# init layer store
self.layers = []
currentLayerIdx = -1
# for all segments
for seg in self.segments:
# next layer
if currentLayerIdx != seg.layerIdx:
layer = Layer(coords["Z"])
layer.start = coords
self.layers.append(layer)
currentLayerIdx = seg.layerIdx
layer.segments.append(seg)
# execute segment
coords = seg.coords
self.topLayer = len(self.layers) - 1
def calcMetrics(self):
# init distances and extrudate
self.distance = 0
self.extrudate = 0
# init model bbox
self.bbox = None
# extender helper
def extend(bbox, coords):
if bbox is None:
return BBox(coords)
else:
bbox.extend(coords)
return bbox
# for all layers
for layer in self.layers:
# start at layer start
coords = layer.start
# init distances and extrudate
layer.distance = 0
layer.extrudate = 0
# layer.range = { }
# for k in ['X','Y','Z']: layer.range[k] = { }
layer.bbox = extend(layer.bbox, coords)
# include start point
self.bbox = extend(self.bbox, coords)
# for all segments
for seg in layer.segments:
# calc XYZ distance
d = (seg.coords["X"] - coords["X"]) ** 2
d += (seg.coords["Y"] - coords["Y"]) ** 2
d += (seg.coords["Z"] - coords["Z"]) ** 2
seg.distance = math.sqrt(d)
# for k in ['X','Y','Z']:
# if layer.range[k].max < coords[k]: layer.range[k].max = coords[k]
# if layer.range[k].min > coords[k]: layer.range[k].min = coords[k]
# calc extrudate
seg.extrudate = seg.coords["E"] - coords["E"]
# accumulate layer metrics
layer.distance += seg.distance
layer.extrudate += seg.extrudate
# execute segment
coords = seg.coords
# include end point
extend(self.bbox, coords)
if seg.extrudate > 0:
extend(layer.bbox, coords) # -- layer bbox is only when extruding
layer.end = coords
# accumulate total metrics
self.distance += layer.distance
self.extrudate += layer.extrudate
def postProcess(self):
self.classifySegments()
self.splitLayers()
self.calcMetrics()
def __str__(self):
return (
"<GcodeModel: len(segments)=%d, len(layers)=%d, distance=%f, extrudate=%f, bbox=%s>"
% (
len(self.segments),
len(self.layers),
self.distance,
self.extrudate,
self.bbox,
)
)
class Segment:
def __init__(self, type, coords, lineNb=0, line=""):
self.type = type
self.coords = coords
self.lineNb = lineNb
self.line = line
self.style = None
self.layerIdx = 0
self.distance = 0.0
self.extrudate = 0.0
def __str__(self):
return (
"<Segment: type=%s, lineNb=%d, style=%s, layerIdx=%d, distance=%f, extrudate=%f>"
% (
self.type,
self.lineNb,
self.style,
self.layerIdx,
self.distance,
self.extrudate,
)
)
class Layer:
def __init__(self, Z):
self.Z = Z
self.segments = []
self.distance = None
self.extrudate = None
self.bbox = None
def __str__(self):
return "<Layer: Z=%f, len(segments)=%d, distance=%f, extrudate=%f>" % (
self.Z,
len(self.segments),
self.distance,
self.extrudate,
)
if __name__ == "__main__":
path = "test.gcode"
parser = GcodeParser()
model = parser.parseFile(path)
print(model)