Thu, 30 May 2019 19:02:52 +0200
bugfixes on rastered image column endings, force laser off with G0 + little offset
16 | 1 | """ |
2 | Lasercutter library | |
32 | 3 | 2015-2017 by NeoSoft, Malte Di Donato |
16 | 4 | Intended to use standalone or implemented in Pronterface/Printrun |
5 | """ | |
6 | ||
7 | """ | |
8 | LASERCUT SETTINGS | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
9 | Will be overridden from pronterface settings |
16 | 10 | """ |
19 | 11 | E_FACTOR = 0.5 |
16 | 12 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
13 | from PIL import Image |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
14 | import sys |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
15 | import math |
16 | 16 | |
17 | ||
20 | 18 | # GENERAL HEADER AND FOOTER GCODE |
19 | GCODE_HEAD = """ | |
20 | ; GCode generated by laser.py pronterface library (marlin code flavour) | |
32 | 21 | ; 2015-2017 by NeoSoft - Malte Di Donato |
20 | 22 | |
23 | G21 ; Metric | |
24 | ; We assume Z is in focus height and laser head is focus at bottom left of image! | |
25 | G92 X0 Y0 E0; set zero position - new origin | |
26 | G90 ; absolute positioning | |
27 | M82 ; Set extruder (laser) to absolute positioning | |
28 | M201 X1000 Y1000 E1000 ; Set acceleration | |
29 | M203 X1000 Y1000 Z4 E1000 ; Set max feedrate | |
30 | M209 S0 ; disable firmware retraction, we dont want to burn holes... | |
31 | M302 ; Allow cold extrudes - doesnt matter because we hack the extruder physically off with the M571 E mod | |
32 | M571 S1 E1 ; Activate Laser output on extrusion, but block real motor movement! | |
35 | 33 | ;M85 S0 ; Disable idle hold timeout (BUG!) |
32 | 34 | M84 ; enable motors |
35 | ||
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
36 | """ |
20 | 37 | |
32 | 38 | GCODE_FOOT = """ |
33
eee51ca7cbe7
Added support for multiple cutting passes with automatic Z refocusing
mdd
parents:
32
diff
changeset
|
39 | M400 ; Wait for all moves to finish |
32 | 40 | M42 P28 S0 ; Force laser off! |
35 | 41 | ;M85 S30 ; re-enable idle hold timeout (BUG!) |
32 | 42 | G0 X0 Y0 F%.4f ; Move back to origin |
35 | 43 | M571 S0 E0 ; disable extruder firmware hack |
33
eee51ca7cbe7
Added support for multiple cutting passes with automatic Z refocusing
mdd
parents:
32
diff
changeset
|
44 | ; M501 ; undo all settings made |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
45 | """ % (100*60) |
16 | 46 | |
47 | ||
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
48 | class LasercutterSettings: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
49 | """ |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
50 | Default settings object |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
51 | """ |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
52 | def __init__(self): |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
53 | self.lc_engrave_speed = 10 |
23 | 54 | # 30mm/sec works for wood (regulate the output power to something between 10-30%) |
55 | # 30mm/sec for black anodized aluminum to get a light engraving @ 100% power | |
56 | # 10mm/sec for black anodized aluminum to get maximum possible engraving! @ 100% power | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
57 | self.lc_travel_speed = 120 |
16 | 58 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
59 | # BITMAP: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
60 | self.lc_bitmap_speed_factor = 1.0 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
61 | self.lc_dpi = 300 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
62 | self.lc_grey_threshold = 0 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
63 | self.lc_change_dir = True |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
64 | self.lc_invert_cut = True |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
65 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
66 | # HPGL: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
67 | self.lc_hpgl_speed_factor = 1.0 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
68 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
69 | # SVG: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
70 | self.lc_svg_speed_factor = 1.0 |
25 | 71 | self.lc_svg_smoothness = 0.2 |
72 | self.lc_svg_width = 50 | |
73 | self.lc_svg_height = 50 | |
74 | self.lc_svg_scalemode = "scale" | |
75 | ||
16 | 76 | |
77 | class Lasercutter: | |
78 | """ | |
79 | Lasercutter methods | |
20 | 80 | parameters: log = logger function (fuction has to accept a string) |
16 | 81 | """ |
82 | def __init__(self, pronterwindow = None): | |
83 | if pronterwindow: | |
84 | self.pronterwindow = pronterwindow | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
85 | self.settings = pronterwindow.settings |
21 | 86 | #self.log = pronterwindow.log |
87 | self.log = self.log_print | |
20 | 88 | self.pronterwindow.clear_log(None) |
16 | 89 | else: |
90 | self.pronterwindow = None | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
91 | self.settings = LasercutterSettings() |
16 | 92 | self.log = lambda : None |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
93 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
94 | # STATIC DEFINITIONS, DO NOT CHANGE WORLD's RULES! |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
95 | self.INCH = 25.4 # mm |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
96 | self.MM_PIXEL = round(self.INCH / self.settings.lc_dpi, 4) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
97 | self.STEPS_PIXEL = self.MM_PIXEL * 80 # mine is 80 steps/mm on XY |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
98 | |
23 | 99 | self.log("Lasercutter library initialized\n%d DPI (%f mm/pixel)" % ( |
100 | self.settings.lc_dpi, self.MM_PIXEL)) | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
101 | if self.STEPS_PIXEL <= 5: |
23 | 102 | self.log("WARNING: STEPS PER PIXEL NEEDS TO BE > 5 (otherwise marlin joins lines): %f" % ( |
103 | self.STEPS_PIXEL)) | |
20 | 104 | self.log("Travel/Engrave speed: %d mm/sec, %d mm/sec" % ( |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
105 | self.settings.lc_travel_speed, self.settings.lc_engrave_speed) ) |
20 | 106 | self.log("") |
16 | 107 | |
21 | 108 | def log_print(self, msg): |
109 | print(msg) | |
110 | ||
16 | 111 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
112 | def pixel2bit(self, pixel): |
16 | 113 | """Convert the pixel value to a bit.""" |
114 | # some really weird stuff here ;-P | |
115 | ||
116 | # RGB to greyscale | |
117 | #print pixel | |
118 | #print type(pixel) | |
119 | if isinstance(pixel, tuple): | |
120 | #rgb | |
121 | pixel = pixel[0]*0.2989 + pixel[1]*0.5870 + pixel[2]*0.1140 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
122 | if pixel > self.settings.lc_grey_threshold: |
16 | 123 | return 1 |
124 | else: | |
125 | return 0 | |
126 | ||
127 | # color palette | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
128 | # TODO: get the grey value of the palette index instead of using pixel which is the palette index? |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
129 | if pixel <= self.settings.lc_grey_threshold: |
16 | 130 | return 1 |
131 | else: | |
132 | return 0 | |
133 | ||
134 | def image2gcode(self, filename): | |
135 | """ | |
136 | Open a image file and get the basic information about it. | |
137 | Then convert it to gcode (replacing the existing gcode buffer contents) | |
138 | """ | |
139 | try: | |
140 | im = Image.open(filename) | |
141 | except: | |
142 | self.log("Unable to open %s" % filename) | |
143 | return False | |
144 | ||
145 | self.log("Converting Image for lasercut:") | |
146 | self.log("File: %s" % filename) | |
147 | self.log("format: %s, mode: %s" % (im.format, im.mode)) | |
148 | width,height = im.size | |
149 | self.log("size: %d x %d pixels" % im.size) | |
150 | ||
151 | pix = im.load() | |
152 | ||
153 | fo = open(filename + ".g", "w") | |
20 | 154 | fo.write("; Filename: %s\n%s" % (filename, GCODE_HEAD)) |
16 | 155 | |
156 | fo.write(";Start engraving the raster image: %dx%d points @ %d DPI = %.0fx%.0f mm\n\n" % ( | |
23 | 157 | im.size[0], im.size[1], self.settings.lc_dpi, |
158 | im.size[0] * self.MM_PIXEL, im.size[1] * self.MM_PIXEL) ) | |
16 | 159 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
160 | INVERT_Y = self.MM_PIXEL * (im.size[1] -1) * (-1) |
16 | 161 | DIR = 1 |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
162 | travel_speed = self.settings.lc_travel_speed * 60 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
163 | engrave_speed = self.settings.lc_engrave_speed * 60 * self.settings.lc_bitmap_speed_factor |
16 | 164 | for X in range(im.size[0]): |
23 | 165 | gcode_col = "" |
42
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
166 | first_ymm = None |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
167 | first_xmm = None |
16 | 168 | E = 0 |
169 | last_bit = 1 # we engrave on black pixel = 0 | |
170 | START_Y = 0 | |
171 | if DIR > 0: | |
172 | range_start = 0 | |
173 | range_stop = im.size[1] | |
174 | else: | |
175 | range_start = im.size[1] -1 | |
176 | range_stop = -1 | |
177 | ||
178 | for Y in range(range_start, range_stop, DIR): | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
179 | YMM = abs((Y * self.MM_PIXEL) + INVERT_Y) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
180 | XMM = X * self.MM_PIXEL |
42
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
181 | |
16 | 182 | #print "X %d Y %d" % (X, Y) |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
183 | bit = self.pixel2bit(pix[X, Y]) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
184 | if self.settings.lc_invert_cut: |
16 | 185 | if bit == 0: |
186 | bit = 1 | |
187 | else: | |
188 | bit = 0 | |
189 | if last_bit == bit: | |
190 | if bit == 1: | |
191 | # nothing to do, | |
192 | continue | |
193 | else: | |
194 | # are we at the end of Y range? | |
195 | #print Y | |
196 | if (Y == (im.size[1] - 1)) or (Y == 0): | |
197 | # draw line | |
198 | if DIR > 0: | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
199 | E = E + self.MM_PIXEL * (Y - START_Y) |
16 | 200 | else: |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
201 | E = E + self.MM_PIXEL * (START_Y - Y) |
23 | 202 | gcode_col += "G1 X%.4f Y%.4f E%.4f F%.4f\n" % ( |
203 | XMM, YMM, E * E_FACTOR, engrave_speed) | |
42
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
204 | if not first_xmm: |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
205 | first_xmm = XMM + 0.1 # little offset needed! |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
206 | first_ymm = YMM * 1 |
16 | 207 | else: |
42
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
208 | if not first_xmm: |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
209 | first_xmm = XMM + 0.1 # little offset needed! |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
210 | first_ymm = YMM * 1 |
16 | 211 | # bit value has changed! |
212 | if bit == 0: | |
213 | # jump to start of line to write | |
214 | START_Y = Y | |
23 | 215 | gcode_col += "G0 X%.4f Y%.4f F%.4f\n" % ( |
216 | XMM, YMM, travel_speed) | |
42
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
217 | last_xmm = None |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
218 | last_ymm = None |
16 | 219 | else: |
220 | # end of line to write | |
221 | if DIR > 0: | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
222 | E = E + (self.MM_PIXEL * (Y - START_Y)) |
16 | 223 | else: |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
224 | E = E + (self.MM_PIXEL * (START_Y - Y)) |
23 | 225 | gcode_col += "G1 X%.4f Y%.4f E%.4f F%.4f\n" % ( |
226 | XMM, YMM, E * E_FACTOR, engrave_speed) | |
16 | 227 | last_bit = bit |
23 | 228 | if gcode_col <> "": |
229 | # we skip empty columns | |
42
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
230 | # place last position as G0 to be sure to switch off laser immediately at finish of the line! |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
231 | if first_xmm: |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
232 | fo.write("G0 X%.4f Y%.4f F%.4f ; force laser off\n" % ( |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
233 | first_xmm, first_ymm, travel_speed)) |
ea4c43494a19
bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents:
37
diff
changeset
|
234 | |
23 | 235 | fo.write("M400 ; X=%d printing row: direction %i\nG92 E0\n%s" % ( |
236 | X, DIR, gcode_col)) | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
237 | if self.settings.lc_change_dir: |
16 | 238 | DIR = DIR * (-1) # change y direction on every X |
239 | ||
20 | 240 | fo.write(GCODE_FOOT) |
16 | 241 | fo.close() |
242 | ||
243 | if self.pronterwindow: | |
244 | self.log("") | |
245 | self.pronterwindow.load_gcode_async(filename + '.g') | |
246 | ||
247 | def hpgl2gcode(self, filename): | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
248 | # FOR HPGL: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
249 | SCALE_FACTOR = 1.0 / 40.0 # 40 plotter units |
16 | 250 | OFFSET_X = 0.0 |
251 | OFFSET_Y = 0.0 | |
252 | ||
253 | self.log("Converting HPGL plot for lasercut:") | |
254 | self.log("File: %s" % filename) | |
255 | ||
256 | fi = open(filename, "r") | |
257 | fo = open(filename + ".g", "w") | |
20 | 258 | fo.write("; Filename: %s\n%s" % (filename, GCODE_HEAD)) |
16 | 259 | |
260 | G = "0" | |
261 | LASER_STATE = 0 | |
262 | last_coord = [0.0,0.0] | |
263 | last_cmd = "" | |
264 | ||
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
265 | travel_speed = self.settings.lc_travel_speed * 60 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
266 | engrave_speed = self.settings.lc_engrave_speed * 60 * self.settings.lc_hpgl_speed_factor |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
267 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
268 | |
16 | 269 | for line in fi.readlines(): |
270 | for action in line.split(";"): | |
271 | action = action.strip() | |
272 | if action != "": | |
273 | cmd = action[:2] | |
274 | if cmd == "PD": | |
275 | LASER_STATE = 1 | |
276 | elif cmd == "PU": | |
277 | LASER_STATE = 0 | |
278 | if last_cmd == "PD": | |
279 | OFFSET_X = coord[0] * -1 | |
280 | OFFSET_Y = coord[1] * -1 | |
23 | 281 | fo.write("; PD PU detected, set coord offset %.4f x %.4f mm\n" % ( |
282 | OFFSET_X, OFFSET_Y)) | |
16 | 283 | elif cmd == "PA" or cmd == "PR": |
284 | # TODO: convert relative coordinates to absolute here! | |
285 | coord = action[2:].split(",") | |
286 | coord[0] = (float(coord[0]) + OFFSET_X) * SCALE_FACTOR | |
287 | coord[1] = (float(coord[1]) + OFFSET_Y) * SCALE_FACTOR | |
288 | if LASER_STATE: | |
289 | EN = " E%.4f F%.4f" % ( | |
290 | E_FACTOR * math.hypot(coord[0] - last_coord[0], coord[1] - last_coord[1]), | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
291 | engrave_speed) |
16 | 292 | else: |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
293 | EN = " F%.4f" % travel_speed |
16 | 294 | |
295 | fo.write("G%d X%.4f Y%.4f%s\n" % ( | |
296 | LASER_STATE, coord[0], coord[1], EN) ) | |
297 | last_coord = coord | |
298 | elif cmd == "IN": | |
299 | pass | |
300 | elif cmd == "PT": | |
301 | print "Ignoring pen thickness" | |
302 | else: | |
303 | print "UNKNOWN: %s" % action | |
304 | last_cmd = cmd | |
305 | ||
20 | 306 | fo.write(GCODE_FOOT) |
16 | 307 | fi.close() |
308 | fo.close() | |
309 | ||
310 | if self.pronterwindow: | |
311 | self.log("") | |
312 | self.pronterwindow.load_gcode_async(filename + '.g') | |
313 | ||
25 | 314 | def svg2gcode(self, filename): |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
315 | # Imports for SVG |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
316 | import xml.etree.ElementTree as ET |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
317 | from svg2gcode import shapes as shapes_pkg |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
318 | from svg2gcode.shapes import point_generator |
35 | 319 | from svg2gcode import simplepath, cspsubdiv, cubicsuperpath, simpletransform |
320 | ||
36 | 321 | bed_max_x = float(self.settings.lc_svg_width) |
322 | bed_max_y = float(self.settings.lc_svg_height) | |
18 | 323 | |
25 | 324 | self.log("Generating paths from SVG (outlines only)...") |
16 | 325 | svg_shapes = set(['rect', 'circle', 'ellipse', 'line', 'polyline', 'polygon', 'path']) |
326 | tree = ET.parse(filename) | |
327 | root = tree.getroot() | |
328 | ||
28 | 329 | # Todo: force viewbox values configurable? |
330 | #width = root.get('width') | |
331 | #height = root.get('height') | |
332 | # if width == None or height == None: | |
333 | viewbox = root.get('viewBox') | |
334 | if viewbox: | |
35 | 335 | _, _, width, height = viewbox.split() |
336 | else: | |
337 | # no viewbox element, try to get from svg root element | |
338 | try: | |
339 | width = root.attrib["width"] | |
340 | height = root.attrib["height"] | |
341 | self.log("No ViewBox, got dimensions from root element)") | |
342 | except: | |
343 | width = None | |
344 | height = None | |
16 | 345 | |
346 | if width == None or height == None: | |
347 | self.log("Unable to get width and height for the svg!") | |
348 | return False | |
28 | 349 | else: |
350 | self.log("SVG Dimensions are %s x %s" % (width, height)) | |
16 | 351 | |
27 | 352 | # TODO: use cm or mm as absolute dimensions! |
353 | width = float(width.replace("px", "").replace("pt", "").replace("mm", "")) | |
354 | height = float(height.replace("px", "").replace("pt", "").replace("mm", "")) | |
28 | 355 | |
25 | 356 | smoothness = self.settings.lc_svg_smoothness |
357 | if smoothness < 0.1: smoothness = 0.1 | |
16 | 358 | |
28 | 359 | # get the minimum x and y values to get an offset to 0,0 |
360 | ofs_x = 99999999999.0 | |
361 | ofs_y = 99999999999.0 | |
362 | max_x = -99999999999.0 | |
363 | max_y = -99999999999.0 | |
364 | for elem in root.iter(): | |
365 | try: | |
366 | _, tag_suffix = elem.tag.split('}') | |
367 | except ValueError: | |
368 | continue | |
369 | if tag_suffix in svg_shapes: | |
370 | shape_class = getattr(shapes_pkg, tag_suffix) | |
371 | shape_obj = shape_class(elem) | |
372 | d = shape_obj.d_path() | |
373 | m = shape_obj.transformation_matrix() | |
374 | ||
375 | if d: | |
376 | p = point_generator(d, m, smoothness) | |
377 | start = True | |
378 | for x,y,pen in p: | |
379 | if x < ofs_x: | |
380 | ofs_x = x | |
381 | if y < ofs_y: | |
382 | ofs_y = y | |
383 | if x > max_x: | |
384 | max_x = x | |
385 | if y > max_y: | |
386 | max_y = y | |
36 | 387 | |
388 | if self.settings.lc_svg_offset: | |
389 | ofs_x *= -1 | |
390 | ofs_y *= -1 | |
391 | max_x += ofs_x | |
392 | max_y += ofs_y | |
393 | self.log("Calculated Offset to 0,0 is %f,%f" % (ofs_x, ofs_y)) | |
394 | else: | |
395 | ofs_x = 0 | |
396 | ofs_y = 0 | |
28 | 397 | |
398 | """ | |
399 | self.log("Calculated Dimension is %f,%f" % (max_x, max_y)) | |
400 | width = max_x | |
401 | height = max_y | |
402 | """ | |
403 | ||
36 | 404 | if self.settings.lc_svg_scalemode == "original": |
405 | scale_x = 1.0 | |
406 | scale_y = 1.0 | |
407 | elif self.settings.lc_svg_scalemode == "scale": | |
408 | scale_x = bed_max_x / width | |
409 | scale_y = bed_max_y / height | |
410 | if (scale_x * height) > bed_max_y: | |
411 | # use y scale | |
412 | scale_x = scale_y | |
413 | elif (scale_y * width) > bed_max_x: | |
414 | # use x scale | |
415 | scale_y = scale_x | |
416 | # double-check | |
417 | if (scale_x * width > bed_max_x) or (scale_y * height > bed_max_y): | |
418 | scale_x = scale_y = min(bed_max_x, bed_max_y) / max(width, height) | |
25 | 419 | else: |
28 | 420 | scale_x = bed_max_x / width |
421 | scale_y = bed_max_y / height | |
16 | 422 | |
423 | self.log("Scaling factor: %.2f, %.2f" % (scale_x,scale_y)) | |
424 | ||
425 | fo = open(filename + ".g", "w") | |
20 | 426 | fo.write("; Filename: %s\n%s" % (filename, GCODE_HEAD)) |
32 | 427 | fo.write("M571 S0 E1 ; On SVG we control the laser by ourself\n") |
16 | 428 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
429 | travel_speed = self.settings.lc_travel_speed * 60 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
430 | engrave_speed = self.settings.lc_engrave_speed * 60 * self.settings.lc_svg_speed_factor |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
431 | |
35 | 432 | errors = 0 |
37 | 433 | elemidx = 0 |
28 | 434 | |
16 | 435 | for elem in root.iter(): |
37 | 436 | elemidx += 1 |
16 | 437 | try: |
438 | _, tag_suffix = elem.tag.split('}') | |
439 | except ValueError: | |
440 | continue | |
441 | ||
442 | if tag_suffix in svg_shapes: | |
37 | 443 | try: |
444 | styles = elem.attrib['style'].split(';') | |
445 | except KeyError: | |
446 | styles = [] | |
447 | skip = False | |
448 | for style in styles: | |
449 | style = style.split(':') | |
450 | if style[0] == 'stroke': | |
451 | # ignore all stroke colors which are not #000000 | |
452 | if style[1] != "#000000": | |
453 | self.log("Ignoring shape %s (%i) by stroke color" % (tag_suffix, elemidx)) | |
454 | skip = True | |
455 | break | |
456 | if skip: | |
457 | continue | |
458 | ||
459 | self.log("Parsing shape: %s (%i)" % (tag_suffix, elemidx)) | |
16 | 460 | shape_class = getattr(shapes_pkg, tag_suffix) |
461 | shape_obj = shape_class(elem) | |
462 | d = shape_obj.d_path() | |
32 | 463 | mat = shape_obj.transformation_matrix() |
16 | 464 | |
465 | if d: | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
466 | fo.write("M400 ; start %s\n" % (tag_suffix)) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
467 | fo.write("G92 E0\n") |
16 | 468 | E = 0 |
469 | xo = 0 | |
470 | yo = 0 | |
32 | 471 | idxo = None |
472 | #p = point_generator(d, mat, smoothness) | |
473 | ||
474 | simple_path = simplepath.parsePath(d) | |
475 | if len(simple_path) == 0: | |
476 | self.log("Path length zero!") | |
477 | continue | |
478 | ||
479 | p = cubicsuperpath.parsePath(d) | |
480 | ||
481 | if mat: | |
482 | simpletransform.applyTransformToPath(mat, p) | |
483 | ||
484 | for sp in p: | |
485 | cspsubdiv.subdiv( sp, smoothness) | |
33
eee51ca7cbe7
Added support for multiple cutting passes with automatic Z refocusing
mdd
parents:
32
diff
changeset
|
486 | #self.log("Laser ON at: " + repr(sp[0][0])) |
32 | 487 | x = sp[0][0][0] + ofs_x |
488 | y = sp[0][0][1] + ofs_y | |
489 | y = height - y # invert the bed | |
490 | xs = scale_x * x | |
491 | ys = scale_y * y | |
492 | fo.write("M400 ; Wait for all moves to finish\n") | |
493 | fo.write("M42 P28 S0 ; Turn off laser\n") | |
494 | fo.write("G0 X%0.4f Y%0.4f F%.4f ; Move to start of shape\n" % ( | |
495 | xs, ys, travel_speed)) | |
496 | fo.write("M400 ; Wait for all moves to finish\n") | |
497 | fo.write("M42 P28 S255 ; Turn on laser\n") | |
19 | 498 | |
32 | 499 | xo = xs |
500 | yo = ys | |
501 | object_xs = xs | |
502 | object_ys = ys | |
503 | ||
504 | for csp in sp: | |
505 | ctrl_pt1 = csp[0] | |
506 | ctrl_pt2 = csp[1] | |
507 | end_pt = csp[2] | |
508 | ||
509 | x = end_pt[0] + ofs_x | |
510 | y = end_pt[1] + ofs_y | |
511 | ||
512 | y = height - y # invert the bed | |
513 | xs = round(scale_x * x, 4) | |
514 | ys = round(scale_y * y, 4) | |
515 | if xo == xs and yo == ys: continue | |
516 | ||
517 | #self.log(" Point " + repr(end_pt)) | |
35 | 518 | e_distance = math.hypot(xs - xo, ys - yo) |
519 | xo = xs | |
520 | yo = ys | |
521 | E = E + (e_distance) | |
32 | 522 | |
523 | if xs >= 0 and xs <= bed_max_x+0.1 and ys >= 0 and ys <= bed_max_y+0.1: | |
524 | fo.write("G1 X%0.4f Y%0.4f E%.4f F%.4f\n" % ( | |
525 | xs, ys, E * E_FACTOR, engrave_speed)) | |
526 | else: | |
35 | 527 | fo.write("G0 X%0.4f Y%0.4f F%.4f\n" % ( |
528 | xs, ys, travel_speed)) | |
529 | errors += 1 | |
530 | if errors < 10: | |
531 | self.log("Position outside print dimension: %d, %d" % (xs, ys)) | |
32 | 532 | |
533 | #print " Point: ", end_pt[0], end_pt[1], pen | |
33
eee51ca7cbe7
Added support for multiple cutting passes with automatic Z refocusing
mdd
parents:
32
diff
changeset
|
534 | #self.log("Laser OFF at: " + repr(sp[-1][-1])) |
27 | 535 | |
21 | 536 | if shape_obj.xml_node.get('fill'): |
537 | # Close the polygon | |
538 | e_distance = math.hypot(object_xs - xo, object_ys - yo) | |
539 | E = E + (e_distance) | |
32 | 540 | fo.write("G1 X%0.4f Y%0.4f E%.4f F%.4f ; Close the object polygon\n" % ( |
23 | 541 | object_xs, object_ys, E * E_FACTOR, engrave_speed)) |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
542 | print "connecting filled path end to start" |
16 | 543 | |
20 | 544 | fo.write(GCODE_FOOT) |
545 | fo.close() | |
35 | 546 | |
547 | if errors > 0: | |
548 | self.log("%i errors while generating gcode" % errors) | |
16 | 549 | |
550 | if self.pronterwindow: | |
551 | self.log("") | |
552 | self.pronterwindow.load_gcode_async(filename + '.g') | |
553 |