Sat, 04 Jun 2016 13:06:30 +0200
Remove empty lines output on bitmap plotter
16 | 1 | """ |
2 | Lasercutter library | |
3 | 2015/2016 by NeoSoft, Malte Bayer | |
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) | |
21 | ; 2015/2016 by NeoSoft - Malte Bayer | |
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! | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
33 | """ |
20 | 34 | |
21 | 35 | GCODE_FOOT = """G0 X0 Y0 F%.4f |
36 | M400 ; Wait for all moves to finish | |
20 | 37 | M571 S0 E0 |
38 | M42 P28 S0 ; Force laser off! | |
39 | M501 ; undo all settings made | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
40 | """ % (100*60) |
16 | 41 | |
42 | ||
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
43 | class LasercutterSettings: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
44 | """ |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
45 | Default settings object |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
46 | """ |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
47 | def __init__(self): |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
48 | self.lc_engrave_speed = 10 |
23 | 49 | # 30mm/sec works for wood (regulate the output power to something between 10-30%) |
50 | # 30mm/sec for black anodized aluminum to get a light engraving @ 100% power | |
51 | # 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
|
52 | self.lc_travel_speed = 120 |
16 | 53 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
54 | # BITMAP: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
55 | self.lc_bitmap_speed_factor = 1.0 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
56 | self.lc_dpi = 300 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
57 | self.lc_grey_threshold = 0 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
58 | self.lc_change_dir = True |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
59 | self.lc_invert_cut = True |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
60 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
61 | # HPGL: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
62 | self.lc_hpgl_speed_factor = 1.0 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
63 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
64 | # SVG: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
65 | self.lc_svg_speed_factor = 1.0 |
16 | 66 | |
67 | class Lasercutter: | |
68 | """ | |
69 | Lasercutter methods | |
20 | 70 | parameters: log = logger function (fuction has to accept a string) |
16 | 71 | """ |
72 | def __init__(self, pronterwindow = None): | |
73 | if pronterwindow: | |
74 | self.pronterwindow = pronterwindow | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
75 | self.settings = pronterwindow.settings |
21 | 76 | #self.log = pronterwindow.log |
77 | self.log = self.log_print | |
20 | 78 | self.pronterwindow.clear_log(None) |
16 | 79 | else: |
80 | self.pronterwindow = None | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
81 | self.settings = LasercutterSettings() |
16 | 82 | self.log = lambda : None |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
83 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
84 | # STATIC DEFINITIONS, DO NOT CHANGE WORLD's RULES! |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
85 | self.INCH = 25.4 # mm |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
86 | 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
|
87 | 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
|
88 | |
23 | 89 | self.log("Lasercutter library initialized\n%d DPI (%f mm/pixel)" % ( |
90 | self.settings.lc_dpi, self.MM_PIXEL)) | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
91 | if self.STEPS_PIXEL <= 5: |
23 | 92 | self.log("WARNING: STEPS PER PIXEL NEEDS TO BE > 5 (otherwise marlin joins lines): %f" % ( |
93 | self.STEPS_PIXEL)) | |
20 | 94 | 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
|
95 | self.settings.lc_travel_speed, self.settings.lc_engrave_speed) ) |
20 | 96 | self.log("") |
16 | 97 | |
21 | 98 | def log_print(self, msg): |
99 | print(msg) | |
100 | ||
16 | 101 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
102 | def pixel2bit(self, pixel): |
16 | 103 | """Convert the pixel value to a bit.""" |
104 | # some really weird stuff here ;-P | |
105 | ||
106 | # RGB to greyscale | |
107 | #print pixel | |
108 | #print type(pixel) | |
109 | if isinstance(pixel, tuple): | |
110 | #rgb | |
111 | 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
|
112 | if pixel > self.settings.lc_grey_threshold: |
16 | 113 | return 1 |
114 | else: | |
115 | return 0 | |
116 | ||
117 | # color palette | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
118 | # 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
|
119 | if pixel <= self.settings.lc_grey_threshold: |
16 | 120 | return 1 |
121 | else: | |
122 | return 0 | |
123 | ||
124 | def image2gcode(self, filename): | |
125 | """ | |
126 | Open a image file and get the basic information about it. | |
127 | Then convert it to gcode (replacing the existing gcode buffer contents) | |
128 | """ | |
129 | try: | |
130 | im = Image.open(filename) | |
131 | except: | |
132 | self.log("Unable to open %s" % filename) | |
133 | return False | |
134 | ||
135 | self.log("Converting Image for lasercut:") | |
136 | self.log("File: %s" % filename) | |
137 | self.log("format: %s, mode: %s" % (im.format, im.mode)) | |
138 | width,height = im.size | |
139 | self.log("size: %d x %d pixels" % im.size) | |
140 | ||
141 | pix = im.load() | |
142 | ||
143 | fo = open(filename + ".g", "w") | |
20 | 144 | fo.write("; Filename: %s\n%s" % (filename, GCODE_HEAD)) |
16 | 145 | |
146 | fo.write(";Start engraving the raster image: %dx%d points @ %d DPI = %.0fx%.0f mm\n\n" % ( | |
23 | 147 | im.size[0], im.size[1], self.settings.lc_dpi, |
148 | im.size[0] * self.MM_PIXEL, im.size[1] * self.MM_PIXEL) ) | |
16 | 149 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
150 | INVERT_Y = self.MM_PIXEL * (im.size[1] -1) * (-1) |
16 | 151 | DIR = 1 |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
152 | travel_speed = self.settings.lc_travel_speed * 60 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
153 | engrave_speed = self.settings.lc_engrave_speed * 60 * self.settings.lc_bitmap_speed_factor |
16 | 154 | for X in range(im.size[0]): |
23 | 155 | gcode_col = "" |
16 | 156 | E = 0 |
157 | last_bit = 1 # we engrave on black pixel = 0 | |
158 | START_Y = 0 | |
159 | if DIR > 0: | |
160 | range_start = 0 | |
161 | range_stop = im.size[1] | |
162 | else: | |
163 | range_start = im.size[1] -1 | |
164 | range_stop = -1 | |
165 | ||
166 | 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
|
167 | YMM = abs((Y * self.MM_PIXEL) + INVERT_Y) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
168 | XMM = X * self.MM_PIXEL |
16 | 169 | #print "X %d Y %d" % (X, Y) |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
170 | bit = self.pixel2bit(pix[X, Y]) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
171 | if self.settings.lc_invert_cut: |
16 | 172 | if bit == 0: |
173 | bit = 1 | |
174 | else: | |
175 | bit = 0 | |
176 | if last_bit == bit: | |
177 | if bit == 1: | |
178 | # nothing to do, | |
179 | continue | |
180 | else: | |
181 | # are we at the end of Y range? | |
182 | #print Y | |
183 | if (Y == (im.size[1] - 1)) or (Y == 0): | |
184 | # draw line | |
185 | if DIR > 0: | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
186 | E = E + self.MM_PIXEL * (Y - START_Y) |
16 | 187 | else: |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
188 | E = E + self.MM_PIXEL * (START_Y - Y) |
23 | 189 | gcode_col += "G1 X%.4f Y%.4f E%.4f F%.4f\n" % ( |
190 | XMM, YMM, E * E_FACTOR, engrave_speed) | |
16 | 191 | else: |
192 | # bit value has changed! | |
193 | if bit == 0: | |
194 | # jump to start of line to write | |
195 | START_Y = Y | |
23 | 196 | gcode_col += "G0 X%.4f Y%.4f F%.4f\n" % ( |
197 | XMM, YMM, travel_speed) | |
16 | 198 | else: |
199 | # end of line to write | |
200 | if DIR > 0: | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
201 | E = E + (self.MM_PIXEL * (Y - START_Y)) |
16 | 202 | else: |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
203 | E = E + (self.MM_PIXEL * (START_Y - Y)) |
23 | 204 | gcode_col += "G1 X%.4f Y%.4f E%.4f F%.4f\n" % ( |
205 | XMM, YMM, E * E_FACTOR, engrave_speed) | |
16 | 206 | last_bit = bit |
23 | 207 | if gcode_col <> "": |
208 | # we skip empty columns | |
209 | fo.write("M400 ; X=%d printing row: direction %i\nG92 E0\n%s" % ( | |
210 | X, DIR, gcode_col)) | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
211 | if self.settings.lc_change_dir: |
16 | 212 | DIR = DIR * (-1) # change y direction on every X |
213 | ||
20 | 214 | fo.write(GCODE_FOOT) |
16 | 215 | fo.close() |
216 | ||
217 | if self.pronterwindow: | |
218 | self.log("") | |
219 | self.pronterwindow.load_gcode_async(filename + '.g') | |
220 | ||
221 | def hpgl2gcode(self, filename): | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
222 | # FOR HPGL: |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
223 | SCALE_FACTOR = 1.0 / 40.0 # 40 plotter units |
16 | 224 | OFFSET_X = 0.0 |
225 | OFFSET_Y = 0.0 | |
226 | ||
227 | self.log("Converting HPGL plot for lasercut:") | |
228 | self.log("File: %s" % filename) | |
229 | ||
230 | fi = open(filename, "r") | |
231 | fo = open(filename + ".g", "w") | |
20 | 232 | fo.write("; Filename: %s\n%s" % (filename, GCODE_HEAD)) |
16 | 233 | |
234 | G = "0" | |
235 | LASER_STATE = 0 | |
236 | last_coord = [0.0,0.0] | |
237 | last_cmd = "" | |
238 | ||
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
239 | travel_speed = self.settings.lc_travel_speed * 60 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
240 | 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
|
241 | |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
242 | |
16 | 243 | for line in fi.readlines(): |
244 | for action in line.split(";"): | |
245 | action = action.strip() | |
246 | if action != "": | |
247 | cmd = action[:2] | |
248 | if cmd == "PD": | |
249 | LASER_STATE = 1 | |
250 | elif cmd == "PU": | |
251 | LASER_STATE = 0 | |
252 | if last_cmd == "PD": | |
253 | OFFSET_X = coord[0] * -1 | |
254 | OFFSET_Y = coord[1] * -1 | |
23 | 255 | fo.write("; PD PU detected, set coord offset %.4f x %.4f mm\n" % ( |
256 | OFFSET_X, OFFSET_Y)) | |
16 | 257 | elif cmd == "PA" or cmd == "PR": |
258 | # TODO: convert relative coordinates to absolute here! | |
259 | coord = action[2:].split(",") | |
260 | coord[0] = (float(coord[0]) + OFFSET_X) * SCALE_FACTOR | |
261 | coord[1] = (float(coord[1]) + OFFSET_Y) * SCALE_FACTOR | |
262 | if LASER_STATE: | |
263 | EN = " E%.4f F%.4f" % ( | |
264 | 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
|
265 | engrave_speed) |
16 | 266 | else: |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
267 | EN = " F%.4f" % travel_speed |
16 | 268 | |
269 | fo.write("G%d X%.4f Y%.4f%s\n" % ( | |
270 | LASER_STATE, coord[0], coord[1], EN) ) | |
271 | last_coord = coord | |
272 | elif cmd == "IN": | |
273 | pass | |
274 | elif cmd == "PT": | |
275 | print "Ignoring pen thickness" | |
276 | else: | |
277 | print "UNKNOWN: %s" % action | |
278 | last_cmd = cmd | |
279 | ||
20 | 280 | fo.write(GCODE_FOOT) |
16 | 281 | fi.close() |
282 | fo.close() | |
283 | ||
284 | if self.pronterwindow: | |
285 | self.log("") | |
286 | self.pronterwindow.load_gcode_async(filename + '.g') | |
287 | ||
19 | 288 | def svg2gcode(self, filename, bed_max_x = 50, bed_max_y = 50, smoothness = 0.2): |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
289 | # Imports for SVG |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
290 | import xml.etree.ElementTree as ET |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
291 | from svg2gcode import shapes as shapes_pkg |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
292 | from svg2gcode.shapes import point_generator |
18 | 293 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
294 | self.log("Generating paths from SVG, alternative lib (outlines only)...") |
16 | 295 | if smoothness < 0.1: smoothness = 0.1 |
296 | svg_shapes = set(['rect', 'circle', 'ellipse', 'line', 'polyline', 'polygon', 'path']) | |
297 | tree = ET.parse(filename) | |
298 | root = tree.getroot() | |
299 | ||
300 | width = root.get('width') | |
301 | height = root.get('height') | |
302 | if width == None or height == None: | |
303 | viewbox = root.get('viewBox') | |
304 | if viewbox: | |
305 | _, _, width, height = viewbox.split() | |
306 | ||
307 | if width == None or height == None: | |
308 | self.log("Unable to get width and height for the svg!") | |
309 | return False | |
310 | ||
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
311 | width = float(width.replace("px", "").replace("pt", "")) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
312 | height = float(height.replace("px", "").replace("pt", "")) |
16 | 313 | |
314 | scale_x = bed_max_x / max(width, height) | |
315 | scale_y = bed_max_y / max(width, height) | |
316 | ||
317 | self.log("Scaling factor: %.2f, %.2f" % (scale_x,scale_y)) | |
318 | ||
319 | fo = open(filename + ".g", "w") | |
20 | 320 | fo.write("; Filename: %s\n%s" % (filename, GCODE_HEAD)) |
16 | 321 | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
322 | travel_speed = self.settings.lc_travel_speed * 60 |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
323 | 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
|
324 | |
16 | 325 | for elem in root.iter(): |
326 | try: | |
327 | _, tag_suffix = elem.tag.split('}') | |
328 | except ValueError: | |
329 | continue | |
330 | ||
331 | if tag_suffix in svg_shapes: | |
332 | shape_class = getattr(shapes_pkg, tag_suffix) | |
333 | shape_obj = shape_class(elem) | |
334 | d = shape_obj.d_path() | |
335 | m = shape_obj.transformation_matrix() | |
336 | ||
337 | if d: | |
22
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
338 | fo.write("M400 ; start %s\n" % (tag_suffix)) |
4c9bb8f93ae8
Added the Lasercut settings to the pronterface options dialog
mbayer
parents:
21
diff
changeset
|
339 | fo.write("G92 E0\n") |
16 | 340 | E = 0 |
341 | xo = 0 | |
342 | yo = 0 | |
343 | p = point_generator(d, m, smoothness) | |
344 | start = True | |
345 | for x,y,pen in p: | |
346 | y = height - y | |
347 | xs = scale_x * x | |
348 | ys = scale_y * y | |
19 | 349 | if xo == xs and yo == ys: continue |
350 | ||
16 | 351 | if not pen: start = True |
352 | if xs >= 0 and xs <= bed_max_x and ys >= 0 and ys <= bed_max_y: | |
353 | if start: | |
23 | 354 | fo.write("G0 X%0.2f Y%0.2f F%.4f ; Move to start of shape\n" % ( |
355 | xs, ys, travel_speed)) | |
16 | 356 | start = False |
357 | xo = xs | |
21 | 358 | yo = ys |
359 | object_xs = xs | |
360 | object_ys = ys | |
16 | 361 | else: |
362 | e_distance = math.hypot(xs - xo, ys - yo) | |
363 | xo = xs | |
364 | yo = ys | |
19 | 365 | E = E + (e_distance) |
23 | 366 | fo.write("G1 X%0.2f Y%0.2f E%.4f F%.4f\n" % ( |
367 | xs, ys, E * E_FACTOR, engrave_speed)) | |
16 | 368 | else: |
369 | self.log("Position outside print dimension: %d, %d" % (xs, ys)) | |
21 | 370 | if shape_obj.xml_node.get('fill'): |
371 | # Close the polygon | |
372 | e_distance = math.hypot(object_xs - xo, object_ys - yo) | |
373 | E = E + (e_distance) | |
23 | 374 | fo.write("G1 X%0.2f Y%0.2f E%.4f F%.4f ; Close the object polygon\n" % ( |
375 | 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
|
376 | print "connecting filled path end to start" |
16 | 377 | |
20 | 378 | fo.write(GCODE_FOOT) |
379 | fo.close() | |
16 | 380 | |
381 | if self.pronterwindow: | |
382 | self.log("") | |
383 | self.pronterwindow.load_gcode_async(filename + '.g') | |
384 |