-
Notifications
You must be signed in to change notification settings - Fork 5
/
pocketRectangle.py
604 lines (550 loc) · 20.7 KB
/
pocketRectangle.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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
from tkSimpleDialog import *
from Tkinter import *
from tkFont import Font
from math import *
import PIL.Image
import PIL.ImageTk
from GeometricalFrame import *
import tkMessageBox
import os
CR = "\n"
#----------------------------------------------------------------------------
#
# This class define your GCode generator
#
# It is a subclass from GeometricalFrame and provide a couple of functionalities
# like an image frame, a standard input entries frame, your "own" entries Frame
# and standard Buttons
#
# Copy this file into your your own file. Typical filenames are <kind shape>
# like ContourArc or ContourRect or PocketArc, ...
#
#
#
#----------------------------------------------------------------------------
class PocketRectangle(GeometricalFrame):
#
# define your own images to describe your GCode-Generator
def init(self):
#path = "/Users/bernhardklein/Public/local-workspace/python/geometricals/GCodeGenerator_Geometricals/"
path = "./"
self.__imageNames = [
# left down
path + "img/pocket/PocketRectangle.005.png",
path + "img/pocket/PocketRectangle.005.png",
path + "img/pocket/PocketRectangle.005.png",
path + "img/pocket/PocketRectangle.005.png",
path + "img/pocket/PocketRectangle.005.png"
]
#-------------------------------------------------------------
# change image, if an other center point was used
#-------------------------------------------------------------
def _changeImage(self, value):
print len(self.__imageNames)
i = int(value) - 1
if (i >= 5): i = 4
p = self.__imageNames[i]
self.img = PIL.Image.open(p)
self.photo = PIL.ImageTk.PhotoImage(self.img)
Label(
self.frmImage, image=self.photo).grid(
row=0, column=0, sticky=W + E + N + S, columnspan=2)
#-------------------------------------------------------------
# her you should insert your own widgets which are important
# for generating your own GCode
#-------------------------------------------------------------
def _frmIndividualContent(self):
self.init()
row = 0
#choices = [1,2,3]
choices = [5]
self.__CC = StringVar()
self.__CC.set(choices[0])
self._changeImage(self.__CC.get())
# new in V012.5 --
self.setMaterialDict(self.selectedMaterial.get())
#-----------------
Label(
self.frmButtonsIndividualContent, text='Coordinate Center').grid(
row=row, column=0, sticky=W)
OptionMenu(
self.frmButtonsIndividualContent,
self.__CC,
*choices,
command=self._changeImage).grid(
row=row, column=1)
row += 1
self.__unit = StringVar()
self.__unit.set("G21")
Label(
self.frmButtonsIndividualContent, text='Unit').grid(
row=row, column=0, sticky=W)
ttk.Radiobutton(
self.frmButtonsIndividualContent,
text="mm",
variable=self.__unit,
value="G21").grid(
row=row, column=1, sticky=W)
ttk.Radiobutton(
self.frmButtonsIndividualContent,
text="inch",
variable=self.__unit,
value="G20").grid(
row=row, column=2, sticky=W)
row += 1
self.__dir = StringVar()
self.__dir.set("G02")
Label(
self.frmButtonsIndividualContent, text='Contour direction').grid(
row=row, column=0, sticky=W)
ttk.Radiobutton(
self.frmButtonsIndividualContent,
text="CW (G02)",
variable=self.__dir,
value="G02").grid(
row=row, column=1, sticky=W)
ttk.Radiobutton(
self.frmButtonsIndividualContent,
text="CCW (G03)",
variable=self.__dir,
value=1).grid(
row=row, column=2, sticky=W)
td = self.dicSelectedMaterial["Tool dia"]
print("ToolDia: " + str(td))
self.tooldia = StringVar(value=str(td))
Label(
self.frmButtonsIndividualContent, text="Tool diameter").grid(
row=row, column=0, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=10,
mandatory=False,
textvariable=self.tooldia).grid(
row=row, column=1, sticky=W)
#
# default forward feed inside pocket (from track to track)
# row += 1
self.__forwardfeed = StringVar(value="3.0")
Label(
self.frmButtonsIndividualContent, text="Forward feed").grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=10,
textvariable=self.__forwardfeed,
mandatory=False).grid(
row=row, column=3, sticky=W)
row += 1
self.__centerX = StringVar(value="0.0")
self.__centerY = StringVar(value="0.0")
Label(
self.frmButtonsIndividualContent, text='Center X').grid(
row=row, column=0, sticky=W)
Label(
self.frmButtonsIndividualContent, text='Center Y').grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=10,
mandatory=True,
textvariable=self.__centerX).grid(
row=row, column=1, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=10,
mandatory=True,
textvariable=self.__centerY).grid(
row=row, column=3, sticky=W)
row += 1
self.__distanceA = StringVar(value="70.0")
self.__distanceB = StringVar(value="100.0")
Label(
self.frmButtonsIndividualContent, text="Height (a)").grid(
row=row, column=0, sticky=W)
Label(
self.frmButtonsIndividualContent, text="Width (b)").grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.__distanceA).grid(
row=row, column=1, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.__distanceB).grid(
row=row, column=3, sticky=W)
row += 1
self.__depthtotal = StringVar(value="-1.5")
self.__depthstep = StringVar(value="-0.5")
Label(
self.frmButtonsIndividualContent, text="Total depth").grid(
row=row, column=0, sticky=W)
Label(
self.frmButtonsIndividualContent,
text="depth cutting per step").grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.__depthtotal,
mandatory=True).grid(
row=row, column=1, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.__depthstep,
mandatory=True).grid(
row=row, column=3, sticky=W)
row += 1
self.__speed_XY_G00 = StringVar(value=self._standardGCodeSeq[
"TRAVEL_SPEEDXYZ"][0])
self.__speed_Z_G00 = StringVar(value=self._standardGCodeSeq[
"TRAVEL_SPEEDXYZ"][2])
Label(
self.frmButtonsIndividualContent, text="Feed (G00 X/Y)").grid(
row=row, column=0, sticky=W)
Label(
self.frmButtonsIndividualContent, text="Feed (G00 Z)").grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.__speed_XY_G00,
mandatory=False).grid(
row=row, column=1, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.__speed_Z_G00,
mandatory=False).grid(
row=row, column=3, sticky=W)
row += 1
self.speed_XY_G02G03 = StringVar(value="80.0")
self.speed_Z_G01 = StringVar(value="50.0")
Label(
self.frmButtonsIndividualContent, text="Feed (G01 X/Y)").grid(
row=row, column=0, sticky=W)
Label(
self.frmButtonsIndividualContent, text="Feed (G01 Z)").grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.speed_XY_G02G03,
mandatory=False).grid(
row=row, column=1, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=5,
textvariable=self.speed_Z_G01,
mandatory=False).grid(
row=row, column=3, sticky=W)
row += 1
self.__start_Z = StringVar(value=self._standardGCodeSeq["ZAXIS"][0])
Label(
self.frmButtonsIndividualContent, text="Start Z").grid(
row=row, column=0, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=10,
textvariable=self.__start_Z,
mandatory=False).grid(
row=row, column=1, sticky=W)
#row += 1
self.__safety_Z = StringVar(value=self._standardGCodeSeq["ZAXIS"][1])
Label(
self.frmButtonsIndividualContent, text="Safety Z").grid(
row=row, column=2, sticky=W)
FloatEntry(
self.frmButtonsIndividualContent,
width=10,
textvariable=self.__safety_Z,
mandatory=False).grid(
row=row, column=3, sticky=W)
#-----------------------------------------------------
self.upateMaterialFields(self.material.current())
self.frmButtonsIndividualContent.pack(expand=True, fill=BOTH)
pass
def userInputValidation(self):
'''
this class is used to validate necessary user input fields
'''
print("userInputValidation")
a = float(self.__distanceA.get())
b = float(self.__distanceB.get())
toolDia = float(self.tooldia.get())
forwardstep = float(self.__forwardfeed.get())
if (a <= 0.0 or b <= 0.0):
self.MessageBox(
state="ERROR",
title="ERROR",
text="a and b should be greater than 0.0")
return False
if (toolDia <= 0.0):
self.MessageBox(
state="ERROR",
title="ERROR",
text="Tool diamater should be greater than 0.0")
return False
if (forwardstep > (toolDia)):
self.MessageBox(
state="ERROR",
title="ERROR",
text="forward feed is greater than tool diameter.")
return False
if (forwardstep == (toolDia)):
self.MessageBox(
state="WARN",
title="WARN",
text="forward feed equal tool diameter - are you shure?")
return True
if (abs(float(self.__depthtotal.get())) < abs(
float(self.__depthstep.get()))):
self.MessageBox(
state="ERROR",
title="ERROR",
text="Total depth should be deeper or equal depth step")
return False
if (float(self.__start_Z.get()) <= 0.0
or float(self.__safety_Z.get()) <= 0.0):
self.MessageBox(
state="ERROR",
title="ERROR",
text="Z parameter values should be greater than 0.0")
return False
if (float(self.tooldia.get()) <= 0.0):
self.MessageBox(
state="ERROR",
title="ERROR",
text="Tooldiamter should greater than 0.0")
return False
return True
#-------------------------------------------------------------
# here you generate your GCode.
# some of this code should be used every time.
# insert your code bettween marked rows
#-------------------------------------------------------------
def generateGCode(self):
'''
for a pocket in an rounded rectangle, even what user set as reference point, we
recalculate it to inner contour and start with milling on outer line
of this contour until we touch outer line contour
'''
cPoint = (float(self.__centerX.get()), float(self.__centerY.get()))
sizeAB = (float(self.__distanceA.get()), float(self.__distanceB.get()))
toolDia = float(self.tooldia.get())
pWidth = sizeAB[1]
forwardstep = float(self.__forwardfeed.get())
zPos = {
"safetyZ": float(self.__safety_Z.get()),
"startZ": float(self.__start_Z.get())
}
depth = (
float(self.__depthtotal.get()),
float(self.__depthstep.get()),
)
dir = self.__dir.get()
feeds = {
"XYG0": float(self.__speed_XY_G00.get()),
"XYGn": float(self.speed_XY_G02G03.get()),
"ZG0": float(self.__speed_Z_G00.get()),
"ZGn": float(self.speed_Z_G01.get())
}
gc = ""
gc += self.getGCode_Preamble()
# set Unit
gc += self.__unit.get() + CR
# set Z axis
gc += CR + "(set Z saftey position)" + CR
gc += "G00 Z{0:08.3f} F{1:05.1f} {2}".format(zPos["safetyZ"],
feeds["ZG0"], CR)
#
# even which center point user choosed, we start on
# center point object - left down (5)
# set start postion X/Y
gc += CR + "(set center position)" + CR
gc += "G00 X{0:08.3f} Y{1:08.3f} F{2:05.1f} {3}".format(
cPoint[0], cPoint[1], feeds["XYG0"], CR)
#
# generate as many shape steps are needed until depthtotal is reached
# cut an Arc
step = float(self.__depthstep.get())
# depth = float(self.__depthtotal.get())
z = step
loop = ""
gc += CR + "(------- start shape -------------)" + CR
# start with shape
gc += CR + "(move Z-axis to start postion near surface)" + CR
gc += "G00 Z{0:08.3f} F{1:05.1f} {2}".format(zPos["startZ"],
feeds["ZG0"], CR)
spaces = "".ljust(2)
#----------------------------------------------------------------------
# This loop asume, that you try to mill into your object.
# if not needed for your shape, remove this part and rewrite
#----------------------------------------------------------------------
#
# we do not use G41/G42 ! - we calculate it for G02 vecorts
# we start with inner contour and from this ContourRect
# left outside - in this case we have an offset of half tool dia
offset = toolDia / 2.0
cWidth = 0.0 # start pocket width = tool diameter
pocketMillTracks = []
x = 1
finished = False
#
# set to left down corner
gc += "G00 X{0:08.3f} Y{1:08.3f} F{2:05.1f} {3}".format(
cPoint[0] - (sizeAB[1] / 2.0), cPoint[1] - (sizeAB[0] / 2.0),
feeds["XYG0"], CR)
while (not finished):
# print ("Width {} cWidth {} offset {}".format(
# pWidth, cWidth, offset
# ))
if ((cWidth / 2.0) > (sizeAB[0] / 2.0)
or (cWidth / 2.0) > (sizeAB[1] / 2.0)):
finished = True
t = self.__createPocketTracks(cPoint, sizeAB, toolDia, feeds,
cWidth)
pocketMillTracks.append(t)
x += 1
cWidth += forwardstep
pass
#
# it's time to generate the real gCode
#
# Every round we mill all tracks in the same detph
# than we increase depth as long as we reached total depthStep
gc += CR + "(-- START DEPTH Loop --)" + CR
z = 0.0
while (abs(z) < abs(depth[0])):
# set next Z depth
if ((abs(depth[0]) - abs(z)) < abs(depth[1])):
# this happens, if a small amount is the rest
z -= (abs(depth[0]) - abs(z))
print "rest Z: {}".format(z)
else:
z -= abs(depth[1])
print "new Z: {}".format(z)
loop += CR
gc += spaces + "(-- START Track Loop --)" + CR
for t in pocketMillTracks:
# every track contain a fixed number of separate gCode
# commands
spaces2 = spaces.ljust(2)
# set new depth
gc += CR + spaces2 + "(-- next depth z {0:08.3f} --){1}".format(
z, CR)
for cmd in t:
#
# combine all parameter to one command
gc += spaces2
print cmd
#
# pattern to recognize special command set
regFloat = r"{\d:\d+\.\d+f}"
for p in range(len(cmd)):
if isinstance(cmd[p], basestring):
x = re.findall(regFloat, cmd[p], re.UNICODE)
if (len(x) != 0):
#print "RegFloat found"
gc += cmd[p].format(float(z))
else:
# normal string
gc += " " + cmd[p]
if isinstance(cmd[p], float):
gc += "{0:08.3f}".format(cmd[p])
if isinstance(cmd[p], int):
gc += "{0:05d}".format(cmd[p])
gc += CR
gc += spaces + "(-- END Track Loop --)" + CR
pass
gc += "(-- END DEPTH loop --)" + CR
gc += self.getGCode_Homeing(cPoint[0], cPoint[1], zPos["safetyZ"],
feeds["XYG0"])
gc += self.getGCode_Postamble()
gc += CR
return gc
def __createPocketTracks(self, cPoint, sizeAB, toolDia, feeds, offset=0.0):
'''
This method create for a track all needed GCode parameters and save
them in a list. This list is used (afterwards) to create the real
GCode commands
This method is called in a loop with a new offset. The offset describes
next millings position
we do not use G41/G42 cutter compensation. CC is calculated
'''
#r = toolDia / 2.0
w0 = sizeAB[1] - offset
wcc = sizeAB[1] - offset - toolDia # inner cutter compensation width
h0 = sizeAB[0] - offset
hcc = sizeAB[0] - offset - toolDia # inner cutter compensation height
x = cPoint[0] - offset - (wcc / 2.0) # set x to lower left corner
y = cPoint[1] - offset - (hcc / 2.0) # set y to lower left corner
print "cPb {} cPa {} x {} y {} offset {} w0 {} h0 {} wcc {} hcc {} ".format(
cPoint[1], cPoint[0], x, y, offset, w0, h0, wcc, hcc)
#x += r # add cutter compensation
#y += r # add cutter compensation
# sequence to mill a rounded rectangle
seq = [
#start
# start left down
(
"G01",
"X",
x + offset,
"Y",
y + offset,
"F",
feeds["XYGn"],
),
# G01 Zxxx Fyyy
(
"G01",
"Z",
"{0:08.3f}",
"F",
feeds["ZGn"],
),
# left up
(
"G01",
"X",
x + offset,
"Y",
y + hcc + offset,
"F",
feeds["XYGn"],
),
# right up
(
"G01",
"X",
x + wcc + offset,
"Y",
y + offset + hcc,
"F",
feeds["XYGn"],
),
# left down
(
"G01",
"X",
x + wcc + offset,
"Y",
y + offset,
"F",
feeds["XYGn"],
),
# go back to start position
(
"G01",
"X",
x + offset,
"Y",
y + offset,
"F",
feeds["XYGn"],
),
]
return seq