File size: 19,231 Bytes
985c397 | 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 | # SPDX-License-Identifier: LGPL-2.1-or-later
# ***************************************************************************
# * Copyright (c) 2014 Yorik van Havre <yorik@uncreated.net> *
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
# * *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 2 of *
# * the License, or (at your option) any later version. *
# * for detail see the LICENCE text file. *
# * *
# * FreeCAD is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU Lesser General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with FreeCAD; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# ***************************************************************************
"""
These are common functions and classes for creating custom post processors.
"""
from Path.Base.MachineState import MachineState
from Path.Main.Gui.Editor import CodeEditor
from Path.Geom import CmdMoveDrill
from PySide import QtCore, QtGui
import FreeCAD
import Path
import os
import re
debug = False
if debug:
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
Path.Log.trackModule(Path.Log.thisModule())
else:
Path.Log.setLevel(Path.Log.Level.INFO, Path.Log.thisModule())
translate = FreeCAD.Qt.translate
FreeCADGui = None
if FreeCAD.GuiUp:
import FreeCADGui
class FilenameGenerator:
def __init__(self, job):
self.job = job
self.subpartname = ""
self.sequencenumber = 0
path, filename, ext = self.get_path_and_filename_default()
self.qualified_path = self._apply_path_substitutions(path)
self.qualified_filename = self._apply_filename_substitutions(filename)
self.extension = ext
def get_path_and_filename_default(self):
outputpath = ""
filename = ""
ext = ".nc"
validPathSubstitutions = ["D", "d", "M", "j"]
validFilenameSubstitutions = ["j", "d", "T", "t", "W", "O", "S"]
if self.job.PostProcessorOutputFile:
candidateOutputPath, candidateFilename = os.path.split(self.job.PostProcessorOutputFile)
if candidateOutputPath:
outputpath = candidateOutputPath
if candidateFilename:
filename, ext = os.path.splitext(candidateFilename)
else:
outputpath, filename = os.path.split(Path.Preferences.defaultOutputFile())
filename, ext = os.path.splitext(filename)
# Make sure we have something to work with
if not filename:
filename = FreeCAD.ActiveDocument.Label
if not outputpath:
outputpath, _ = os.path.split(FreeCAD.ActiveDocument.getFileName())
if not outputpath:
outputpath = (
os.getcwd()
) ## TODO: This should be avoided as it gives the Freecad executable's path in some systems (e.g. Windows)
if not ext:
ext = ".nc"
# Check for invalid matches
for match in re.findall(r"%(.)", outputpath):
Path.Log.debug(f"match: {match}")
if match not in validPathSubstitutions:
outputpath = outputpath.replace(f"%{match}", "")
FreeCAD.Console.PrintWarning(
"Invalid substitution strings will be ignored in output path: %s\n" % match
)
for match in re.findall(r"%(.)", filename):
Path.Log.debug(f"match: {match}")
if match not in validFilenameSubstitutions:
filename = filename.replace(f"%{match}", "")
FreeCAD.Console.PrintWarning(
"Invalid substitution strings will be ignored in file path: %s\n" % match
)
Path.Log.debug(f"outputpath: {outputpath} filename: {filename} ext: {ext}")
return outputpath, filename, ext
def set_subpartname(self, subpartname):
self.subpartname = subpartname
def _apply_path_substitutions(self, file_path):
"""Apply substitutions based on job settings and other parameters."""
substitutions = {
"%D": os.path.dirname(self.job.Document.FileName or "."),
"%d": self.job.Document.Label,
"%j": self.job.Label,
"%M": os.path.dirname(FreeCAD.getUserMacroDir()),
}
for key, value in substitutions.items():
file_path = file_path.replace(key, value)
Path.Log.debug(f"file_path: {file_path}")
return file_path
def _apply_filename_substitutions(self, file_name):
Path.Log.debug(f"file_name: {file_name}")
"""Apply substitutions based on job settings and other parameters."""
substitutions = {
"%d": self.job.Document.Label,
"%j": self.job.Label,
"%T": self.subpartname, # Tool Number
"%t": self.subpartname, # Tool Controller Label
"%W": self.subpartname, # Fixture
"%O": self.subpartname, # Operation
}
for key, value in substitutions.items():
file_name = file_name.replace(key, value)
Path.Log.debug(f"file_name: {file_name}")
return file_name
def generate_filenames(self):
"""Yield filenames indefinitely with proper substitutions."""
while True:
temp_filename = self.qualified_filename
Path.Log.debug(f"temp_filename: {temp_filename}")
explicit_sequence = False
matches = re.findall(r"%S", temp_filename)
if matches:
Path.Log.debug(f"matches: {matches}")
temp_filename = re.sub(r"%S", str(self.sequencenumber), temp_filename)
explicit_sequence = True
subpart = f"-{self.subpartname}" if self.subpartname else ""
sequence = (
f"-{self.sequencenumber}" if not explicit_sequence and self.sequencenumber else ""
)
filename = f"{temp_filename}{subpart}{sequence}{self.extension}"
# Trim leading dash if filename starts with one
if filename.startswith("-"):
filename = filename[1:]
full_path = os.path.join(self.qualified_path, filename)
self.sequencenumber += 1
Path.Log.debug(f"yielding filename: {full_path}")
yield os.path.normpath(full_path)
class GCodeHighlighter(QtGui.QSyntaxHighlighter):
def __init__(self, parent=None):
super(GCodeHighlighter, self).__init__(parent)
keywordFormat = QtGui.QTextCharFormat()
keywordFormat.setForeground(QtCore.Qt.cyan)
keywordFormat.setFontWeight(QtGui.QFont.Bold)
keywordPatterns = ["\\bG[0-9]+\\b", "\\bM[0-9]+\\b"]
self.highlightingRules = [
(QtCore.QRegularExpression(pattern), keywordFormat) for pattern in keywordPatterns
]
speedFormat = QtGui.QTextCharFormat()
speedFormat.setFontWeight(QtGui.QFont.Bold)
speedFormat.setForeground(QtCore.Qt.green)
self.highlightingRules.append((QtCore.QRegularExpression("\\bF[0-9\\.]+\\b"), speedFormat))
def highlightBlock(self, text):
for pattern, hlFormat in self.highlightingRules:
expression = QtCore.QRegularExpression(pattern)
index = expression.match(text)
while index.hasMatch():
length = index.capturedLength()
self.setFormat(index.capturedStart(), length, hlFormat)
index = expression.match(text, index.capturedStart() + length)
class GCodeEditorDialog(QtGui.QDialog):
def __init__(self, text="", parent=None, refactored=False):
if parent is None:
parent = FreeCADGui.getMainWindow()
QtGui.QDialog.__init__(self, parent)
layout = QtGui.QVBoxLayout(self)
# self.editor = QtGui.QTextEdit() # without lines enumeration
self.editor = CodeEditor() # with lines enumeration
p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Editor")
font = QtGui.QFont()
font.setFamily(p.GetString("Font", "Courier"))
font.setFixedPitch(True)
font.setPointSize(p.GetInt("FontSize", 10))
self.editor.setFont(font)
self.editor.setPlainText(text)
layout.addWidget(self.editor)
# buttons depending on the post processor used
if refactored:
self.buttons = QtGui.QDialogButtonBox(
QtGui.QDialogButtonBox.Ok
| QtGui.QDialogButtonBox.Discard
| QtGui.QDialogButtonBox.Cancel,
QtCore.Qt.Horizontal,
self,
)
# Swap the button text as to not change the old cancel behaviour for the user
self.buttons.button(QtGui.QDialogButtonBox.Discard).setIcon(
self.buttons.button(QtGui.QDialogButtonBox.Cancel).icon()
)
self.buttons.button(QtGui.QDialogButtonBox.Discard).setText(
self.buttons.button(QtGui.QDialogButtonBox.Cancel).text()
)
self.buttons.button(QtGui.QDialogButtonBox.Cancel).setIcon(QtGui.QIcon())
self.buttons.button(QtGui.QDialogButtonBox.Cancel).setText("Abort")
else:
self.buttons = QtGui.QDialogButtonBox(
QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel,
QtCore.Qt.Horizontal,
self,
)
self.buttons.button(QtGui.QDialogButtonBox.Ok).setDisabled(True)
layout.addWidget(self.buttons)
# restore placement and size
self.paramKey = "User parameter:BaseApp/Values/Mod/CAM/GCodeEditor/"
params = FreeCAD.ParamGet(self.paramKey)
posX = params.GetInt("posX")
posY = params.GetInt("posY")
if posX > 0 and posY > 0:
self.move(posX, posY)
width = params.GetInt("width")
height = params.GetInt("height")
if width > 0 and height > 0:
self.resize(width, height)
# connect signals
self.editor.textChanged.connect(self.text_changed)
self.buttons.clicked.connect(self.clicked)
def text_changed(self):
self.buttons.button(QtGui.QDialogButtonBox.Ok).setDisabled(False)
def clicked(self, button):
match self.buttons.buttonRole(button):
case QtGui.QDialogButtonBox.RejectRole:
self.done(0)
case QtGui.QDialogButtonBox.ApplyRole | QtGui.QDialogButtonBox.AcceptRole:
self.done(1)
case QtGui.QDialogButtonBox.DestructiveRole:
self.done(2)
def done(self, *args, **kwargs):
params = FreeCAD.ParamGet(self.paramKey)
params.SetInt("posX", self.x())
params.SetInt("posY", self.y())
params.SetInt("width", self.size().width())
params.SetInt("height", self.size().height())
return QtGui.QDialog.done(self, *args, **kwargs)
def stringsplit(commandline):
returndict = {
"command": None,
"X": None,
"Y": None,
"Z": None,
"A": None,
"B": None,
"F": None,
"T": None,
"S": None,
"I": None,
"J": None,
"K": None,
"txt": None,
}
wordlist = [a.strip() for a in commandline.split(" ")]
if wordlist[0][0] == "(":
returndict["command"] = "message"
returndict["txt"] = wordlist[0]
else:
returndict["command"] = wordlist[0]
for word in wordlist[1:]:
returndict[word[0]] = word[1:]
return returndict
def fmt(num, dec, units):
"""Use to format axis moves, feedrate, etc for decimal places and units."""
if units == "G21": # metric
fnum = "%.*f" % (dec, num)
else: # inch
fnum = "%.*f" % (dec, num / 25.4) # since FreeCAD uses metric units internally
return fnum
def editor(gcode):
"""Pops up a handy little editor to look at the code output."""
prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/CAM")
# default Max Highlighter Size = 512 Ko
defaultMHS = 512 * 1024
mhs = prefs.GetUnsigned("inspecteditorMaxHighlighterSize", defaultMHS)
dia = GCodeEditorDialog()
dia.editor.setText(gcode)
dia.buttons.button(QtGui.QDialogButtonBox.Ok).setDisabled(True)
gcodeSize = len(dia.editor.toPlainText())
if gcodeSize <= mhs:
# because of poor performance, syntax highlighting is
# limited to mhs octets (default 512 KB).
# It seems than the response time curve has an inflexion near 500 KB
# beyond 500 KB, the response time increases exponentially.
dia.highlighter = GCodeHighlighter(dia.editor.document())
else:
FreeCAD.Console.PrintMessage(
translate(
"Path",
"GCode size too big ({} o), disabling syntax highlighter.".format(gcodeSize),
)
)
result = dia.exec_()
if result: # If user selected 'OK' get modified G Code
final = dia.editor.toPlainText()
else:
final = gcode
return final
def fcoms(string, commentsym):
"""Filter and rebuild comments with user preferred comment symbol."""
if len(commentsym) == 1:
s1 = string.replace("(", commentsym)
comment = s1.replace(")", "")
else:
return string
return comment
def splitArcs(path, deflection=None):
"""Filter a path object and replace all G2/G3 moves with discrete G1 moves.
Args:
path: Path.Path object to process
deflection: Curve deflection tolerance (default: from preferences)
Returns:
Path.Path object with arcs replaced by G1 segments.
"""
if not isinstance(path, Path.Path):
raise TypeError("path must be a Path object")
if not deflection:
prefGrp = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/CAM")
deflection = prefGrp.GetFloat("LibAreaCurveAccuracy", 0.01)
results = []
machine = MachineState()
for command in path.Commands:
if command.Name not in Path.Geom.CmdMoveArc:
results.append(command)
else:
# Discretize arc into line segments
edge = Path.Geom.edgeForCmd(command, machine.getPosition())
pts = edge.discretize(Deflection=deflection)
# Convert points directly to G1 commands
feed_params = {"F": command.Parameters["F"]} if "F" in command.Parameters else {}
for pt in pts[1:]: # Skip first point (already at that position)
params = {"X": pt.x, "Y": pt.y, "Z": pt.z}
params.update(feed_params)
results.append(Path.Command("G1", params))
machine.addCommand(command)
return Path.Path(results)
def cannedCycleTerminator(path):
"""iterate through a Path object and insert G80 commands to terminate canned cycles at the correct time"""
# Canned cycles terminate if any parameter change other than XY coordinates.
# - if Z depth changes
# - if feed rate changes
# - if retract plane changes
# - if retract mode (G98/G99) changes
result = []
cycle_active = False
last_cycle_params = {}
last_retract_mode = None
explicit_retract_mode_set = False
for command in path.Commands:
if (
command.Name == "G80"
): # This shouldn't happen because cycle generators shouldn't be inserting it. Be safe anyway.
# G80 is already a cycle terminator, don't terminate before it
# Just mark cycle as inactive and pass it through
cycle_active = False
last_retract_mode = None
explicit_retract_mode_set = False
result.append(command)
elif command.Name in ["G98", "G99"]:
# Explicit retract mode in the path - track it
if cycle_active and last_retract_mode and command.Name != last_retract_mode:
# Mode changed while cycle active - terminate
result.append(Path.Command("G80"))
cycle_active = False
last_retract_mode = command.Name
explicit_retract_mode_set = True
result.append(command)
elif command.Name in CmdMoveDrill:
# Check if this cycle has different parameters than the last one
current_params = {k: v for k, v in command.Parameters.items() if k not in ["X", "Y"]}
# Get retract mode from annotations
current_retract_mode = command.Annotations.get("RetractMode", "G98")
# Check if we need to terminate the previous cycle
if cycle_active and (
current_params != last_cycle_params or current_retract_mode != last_retract_mode
):
# Parameters or retract mode changed, terminate previous cycle
result.append(Path.Command("G80"))
cycle_active = False
explicit_retract_mode_set = False
# Insert retract mode command if starting a new cycle or mode changed
# But only if it wasn't already explicitly set in the path
if (
not cycle_active or current_retract_mode != last_retract_mode
) and not explicit_retract_mode_set:
result.append(Path.Command(current_retract_mode))
# Add the cycle command
result.append(command)
cycle_active = True
last_cycle_params = current_params
last_retract_mode = current_retract_mode
explicit_retract_mode_set = False # Reset for next cycle
else:
# Non-cycle command (not G80 or drill cycle)
if cycle_active:
# Terminate active cycle
result.append(Path.Command("G80"))
cycle_active = False
last_retract_mode = None
explicit_retract_mode_set = False
result.append(command)
# If cycle is still active at the end, terminate it
if cycle_active:
result.append(Path.Command("G80"))
return Path.Path(result)
|