CAM: converted the refactored* postprocessors to the new (more object-oriented) API (#19006)
* CAM: converted the refactored* postprocessors to the new API
with corresponding tests
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2022 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
@@ -21,13 +21,11 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
from importlib import reload
|
||||
|
||||
import FreeCAD
|
||||
|
||||
import Path
|
||||
import CAMTests.PathTestUtils as PathTestUtils
|
||||
from Path.Post.scripts import refactored_centroid_post as postprocessor
|
||||
from Path.Post.Processor import PostProcessorFactory
|
||||
|
||||
|
||||
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
|
||||
@@ -35,9 +33,12 @@ Path.Log.trackModule(Path.Log.thisModule())
|
||||
|
||||
|
||||
class TestRefactoredCentroidPost(PathTestUtils.PathTestBase):
|
||||
"""Test the refactored_centroid_post.py postprocessor."""
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
"""setUpClass()...
|
||||
|
||||
This method is called upon instantiation of this test class. Add code
|
||||
and objects here that are needed for the duration of the test() methods
|
||||
in this class. In other words, set up the 'global' test environment
|
||||
@@ -46,63 +47,108 @@ class TestRefactoredCentroidPost(PathTestUtils.PathTestBase):
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
|
||||
# Open existing FreeCAD document with test geometry
|
||||
FreeCAD.newDocument("Unnamed")
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")
|
||||
cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd")
|
||||
cls.job = cls.doc.getObject("Job")
|
||||
cls.post = PostProcessorFactory.get_post_processor(cls.job, "refactored_centroid")
|
||||
# locate the operation named "Profile"
|
||||
for op in cls.job.Operations.Group:
|
||||
if op.Label == "Profile":
|
||||
# remember the "Profile" operation
|
||||
cls.profile_op = op
|
||||
return
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
"""tearDownClass()...
|
||||
|
||||
This method is called prior to destruction of this test class. Add
|
||||
code and objects here that cleanup the test environment after the
|
||||
test() methods in this class have been executed. This method does not
|
||||
have access to the class `self` reference. This method is able to
|
||||
call static methods within this same class.
|
||||
"""
|
||||
# Close geometry document without saving
|
||||
FreeCAD.closeDocument(FreeCAD.ActiveDocument.Name)
|
||||
FreeCAD.closeDocument(cls.doc.Name)
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "")
|
||||
|
||||
# Setup and tear down methods called before and after each unit test
|
||||
|
||||
def setUp(self):
|
||||
"""setUp()...
|
||||
|
||||
This method is called prior to each `test()` method. Add code and
|
||||
objects here that are needed for multiple `test()` methods.
|
||||
"""
|
||||
self.doc = FreeCAD.ActiveDocument
|
||||
self.con = FreeCAD.Console
|
||||
self.docobj = FreeCAD.ActiveDocument.addObject("Path::Feature", "testpath")
|
||||
reload(
|
||||
postprocessor
|
||||
) # technical debt. This shouldn't be necessary but here to bypass a bug
|
||||
# allow a full length "diff" if an error occurs
|
||||
self.maxDiff = None
|
||||
# reinitialize the postprocessor data structures between tests
|
||||
self.post.reinitialize()
|
||||
|
||||
def tearDown(self):
|
||||
"""tearDown()...
|
||||
|
||||
This method is called after each test() method. Add cleanup instructions here.
|
||||
Such cleanup instructions will likely undo those in the setUp() method.
|
||||
"""
|
||||
FreeCAD.ActiveDocument.removeObject("testpath")
|
||||
pass
|
||||
|
||||
def single_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with a single line of gcode comparison."""
|
||||
nl = "\n"
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
# there are 4 lines of "other stuff" before the line we are interested in
|
||||
self.assertEqual(gcode.splitlines()[4], expected)
|
||||
|
||||
def multi_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with multiple lines of gcode comparison."""
|
||||
nl = "\n"
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def test000(self):
|
||||
"""Test Output Generation.
|
||||
Empty path. Produces only the preamble and postable.
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
# Test generating with header
|
||||
# Header contains a time stamp that messes up unit testing.
|
||||
# Only test length of result.
|
||||
args = "--no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertTrue(len(gcode.splitlines()) == 16)
|
||||
self.job.PostProcessorArgs = "--no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertTrue(len(gcode.splitlines()) == 25)
|
||||
|
||||
# Test without header
|
||||
expected = """G90 G80 G40 G49
|
||||
;T1=TC__Default_Tool
|
||||
;Begin preamble
|
||||
G53 G00 G17
|
||||
G21
|
||||
;Begin operation
|
||||
;End operation: testpath
|
||||
G54
|
||||
;End operation: Fixture
|
||||
;Begin operation
|
||||
;TC: Default Tool
|
||||
;Begin toolchange
|
||||
M6 T1
|
||||
;End operation: TC: Default Tool
|
||||
;Begin operation
|
||||
;End operation: Profile
|
||||
;Begin postamble
|
||||
M5
|
||||
M25
|
||||
@@ -111,17 +157,17 @@ G90 G80 G40 G49
|
||||
M99
|
||||
"""
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
# test without comments
|
||||
expected = """G90 G80 G40 G49
|
||||
G53 G00 G17
|
||||
G21
|
||||
G54
|
||||
M6 T1
|
||||
M5
|
||||
M25
|
||||
G49 H0
|
||||
@@ -129,29 +175,33 @@ G90 G80 G40 G49
|
||||
M99
|
||||
"""
|
||||
|
||||
args = "--no-header --no-comments --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-comments --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def test010(self):
|
||||
"""Test command Generation.
|
||||
Test Precision
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[14]
|
||||
expected = "G0 X10.0000 Y20.0000 Z30.0000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --axis-precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --axis-precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[14]
|
||||
expected = "G0 X10.00 Y20.00 Z30.00"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -159,27 +209,32 @@ M99
|
||||
"""
|
||||
Test Line Numbers
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
expected = "N150 G0 X10.0000 Y20.0000 Z30.0000"
|
||||
self.job.PostProcessorArgs = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[14]
|
||||
expected = "N240 G0 X10.0000 Y20.0000 Z30.0000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
def test030(self):
|
||||
"""
|
||||
Test Pre-amble
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
args = "--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[1]
|
||||
self.assertEqual(result, "G18 G55")
|
||||
|
||||
@@ -187,10 +242,15 @@ M99
|
||||
"""
|
||||
Test Post-amble
|
||||
"""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
args = "--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[-2]
|
||||
self.assertEqual(result, "G0 Z50")
|
||||
self.assertEqual(gcode.splitlines()[-1], "M2")
|
||||
@@ -199,22 +259,25 @@ M99
|
||||
"""
|
||||
Test inches
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --inches --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[3], "G20")
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --inches --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[4], "G20")
|
||||
|
||||
result = gcode.splitlines()[14]
|
||||
expected = "G0 X0.3937 Y0.7874 Z1.1811"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --inches --axis-precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --inches --axis-precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[14]
|
||||
expected = "G0 X0.39 Y0.79 Z1.18"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -223,15 +286,17 @@ M99
|
||||
Test test modal
|
||||
Suppress the command name if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "X10.0000 Y30.0000 Z30.0000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -240,15 +305,17 @@ M99
|
||||
Test axis modal
|
||||
Suppress the axis coordinate if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "G0 Y30.0000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -256,33 +323,38 @@ M99
|
||||
"""
|
||||
Test tool change
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M6 T2")
|
||||
c2 = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c, c2])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[6], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[7], "M3 S3000")
|
||||
self.profile_op.Path = Path.Path([c, c2])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[15], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[16], "M3 S3000")
|
||||
|
||||
# suppress TLO
|
||||
args = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[7], "M3 S3000")
|
||||
self.job.PostProcessorArgs = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[16], "M3 S3000")
|
||||
|
||||
def test090(self):
|
||||
"""
|
||||
Test comment
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("(comment)")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[14]
|
||||
expected = ";comment"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2022 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
@@ -21,13 +21,11 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
from importlib import reload
|
||||
|
||||
import FreeCAD
|
||||
|
||||
import Path
|
||||
import CAMTests.PathTestUtils as PathTestUtils
|
||||
from Path.Post.scripts import refactored_grbl_post as postprocessor
|
||||
from Path.Post.Processor import PostProcessorFactory
|
||||
|
||||
|
||||
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
|
||||
@@ -35,9 +33,12 @@ Path.Log.trackModule(Path.Log.thisModule())
|
||||
|
||||
|
||||
class TestRefactoredGrblPost(PathTestUtils.PathTestBase):
|
||||
"""Test the refactored_grbl_post.py postprocessor."""
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
"""setUpClass()...
|
||||
|
||||
This method is called upon instantiation of this test class. Add code
|
||||
and objects here that are needed for the duration of the test() methods
|
||||
in this class. In other words, set up the 'global' test environment
|
||||
@@ -46,108 +47,135 @@ class TestRefactoredGrblPost(PathTestUtils.PathTestBase):
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
|
||||
# Open existing FreeCAD document with test geometry
|
||||
FreeCAD.newDocument("Unnamed")
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")
|
||||
cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd")
|
||||
cls.job = cls.doc.getObject("Job")
|
||||
cls.post = PostProcessorFactory.get_post_processor(cls.job, "refactored_grbl")
|
||||
# locate the operation named "Profile"
|
||||
for op in cls.job.Operations.Group:
|
||||
if op.Label == "Profile":
|
||||
# remember the "Profile" operation
|
||||
cls.profile_op = op
|
||||
return
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
"""tearDownClass()...
|
||||
|
||||
This method is called prior to destruction of this test class. Add
|
||||
code and objects here that cleanup the test environment after the
|
||||
test() methods in this class have been executed. This method does not
|
||||
have access to the class `self` reference. This method
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
# Close geometry document without saving
|
||||
FreeCAD.closeDocument(FreeCAD.ActiveDocument.Name)
|
||||
FreeCAD.closeDocument(cls.doc.Name)
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "")
|
||||
|
||||
# Setup and tear down methods called before and after each unit test
|
||||
|
||||
def setUp(self):
|
||||
"""setUp()...
|
||||
|
||||
This method is called prior to each `test()` method. Add code and
|
||||
objects here that are needed for multiple `test()` methods.
|
||||
"""
|
||||
self.doc = FreeCAD.ActiveDocument
|
||||
self.con = FreeCAD.Console
|
||||
self.docobj = FreeCAD.ActiveDocument.addObject("Path::Feature", "testpath")
|
||||
reload(
|
||||
postprocessor
|
||||
) # technical debt. This shouldn't be necessary but here to bypass a bug
|
||||
# allow a full length "diff" if an error occurs
|
||||
self.maxDiff = None
|
||||
# reinitialize the postprocessor data structures between tests
|
||||
self.post.reinitialize()
|
||||
|
||||
def tearDown(self):
|
||||
"""tearDown()...
|
||||
|
||||
This method is called after each test() method. Add cleanup instructions here.
|
||||
Such cleanup instructions will likely undo those in the setUp() method.
|
||||
"""
|
||||
FreeCAD.ActiveDocument.removeObject("testpath")
|
||||
pass
|
||||
|
||||
def test000(self):
|
||||
"""Test Output Generation.
|
||||
Empty path. Produces only the preamble and postable.
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
# Test generating with header
|
||||
# Header contains a time stamp that messes up unit testing.
|
||||
# Only test length of result.
|
||||
args = "--no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertTrue(len(gcode.splitlines()) == 14)
|
||||
self.job.PostProcessorArgs = "--no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertTrue(len(gcode.splitlines()) == 24)
|
||||
|
||||
# Test without header
|
||||
expected = """(Begin preamble)
|
||||
G17 G90
|
||||
G21
|
||||
(Begin operation: testpath)
|
||||
(Path: testpath)
|
||||
(Finish operation: testpath)
|
||||
(Begin operation: Fixture)
|
||||
(Path: Fixture)
|
||||
G54
|
||||
(Finish operation: Fixture)
|
||||
(Begin operation: TC: Default Tool)
|
||||
(Path: TC: Default Tool)
|
||||
(TC: Default Tool)
|
||||
(Begin toolchange)
|
||||
( M6 T1 )
|
||||
(Finish operation: TC: Default Tool)
|
||||
(Begin operation: Profile)
|
||||
(Path: Profile)
|
||||
(Finish operation: Profile)
|
||||
(Begin postamble)
|
||||
M5
|
||||
G17 G90
|
||||
M2
|
||||
"""
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
# test without comments
|
||||
expected = """G17 G90
|
||||
G21
|
||||
G54
|
||||
M6 T1
|
||||
M5
|
||||
G17 G90
|
||||
M2
|
||||
"""
|
||||
|
||||
args = "--no-header --no-comments --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-comments --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def test010(self):
|
||||
"""Test command Generation.
|
||||
Test Precision
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "G0 X10.000 Y20.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "G0 X10.00 Y20.00 Z30.00"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -155,27 +183,32 @@ M2
|
||||
"""
|
||||
Test Line Numbers
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
expected = "N150 G0 X10.000 Y20.000 Z30.000"
|
||||
self.job.PostProcessorArgs = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "N250 G0 X10.000 Y20.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
def test030(self):
|
||||
"""
|
||||
Test Pre-amble
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
args = "--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[0]
|
||||
self.assertEqual(result, "G18 G55")
|
||||
|
||||
@@ -183,10 +216,15 @@ M2
|
||||
"""
|
||||
Test Post-amble
|
||||
"""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
args = "--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[-2]
|
||||
self.assertEqual(result, "G0 Z50")
|
||||
self.assertEqual(gcode.splitlines()[-1], "M2")
|
||||
@@ -195,22 +233,25 @@ M2
|
||||
"""
|
||||
Test inches
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --inches --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --inches --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[2], "G20")
|
||||
|
||||
result = gcode.splitlines()[5]
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "G0 X0.3937 Y0.7874 Z1.1811"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --inches --precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --inches --precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "G0 X0.39 Y0.79 Z1.18"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -219,15 +260,17 @@ M2
|
||||
Test test modal
|
||||
Suppress the command name if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[16]
|
||||
expected = "X10.000 Y30.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -236,15 +279,17 @@ M2
|
||||
Test axis modal
|
||||
Suppress the axis coordinate if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[16]
|
||||
expected = "G0 Y30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -252,33 +297,38 @@ M2
|
||||
"""
|
||||
Test tool change
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M6 T2")
|
||||
c2 = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c, c2])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[6], "( M6 T2 )")
|
||||
self.assertEqual(gcode.splitlines()[7], "M3 S3000")
|
||||
self.profile_op.Path = Path.Path([c, c2])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[16], "( M6 T2 )")
|
||||
self.assertEqual(gcode.splitlines()[17], "M3 S3000")
|
||||
|
||||
# suppress TLO
|
||||
args = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[7], "M3 S3000")
|
||||
self.job.PostProcessorArgs = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[17], "M3 S3000")
|
||||
|
||||
def test090(self):
|
||||
"""
|
||||
Test comment
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("(comment)")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[15]
|
||||
expected = "(comment)"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2022 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
@@ -29,13 +29,11 @@
|
||||
# ***************************************************************************
|
||||
|
||||
|
||||
from importlib import reload
|
||||
|
||||
import FreeCAD
|
||||
|
||||
import Path
|
||||
import CAMTests.PathTestUtils as PathTestUtils
|
||||
from Path.Post.scripts import refactored_linuxcnc_post as postprocessor
|
||||
from Path.Post.Processor import PostProcessorFactory
|
||||
|
||||
|
||||
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
|
||||
@@ -43,9 +41,12 @@ Path.Log.trackModule(Path.Log.thisModule())
|
||||
|
||||
|
||||
class TestRefactoredLinuxCNCPost(PathTestUtils.PathTestBase):
|
||||
"""Test the refactored_linuxcnc_post.py postprocessor."""
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
"""setUpClass()...
|
||||
|
||||
This method is called upon instantiation of this test class. Add code
|
||||
and objects here that are needed for the duration of the test() methods
|
||||
in this class. In other words, set up the 'global' test environment
|
||||
@@ -54,108 +55,139 @@ class TestRefactoredLinuxCNCPost(PathTestUtils.PathTestBase):
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
|
||||
# Open existing FreeCAD document with test geometry
|
||||
FreeCAD.newDocument("Unnamed")
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")
|
||||
cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd")
|
||||
cls.job = cls.doc.getObject("Job")
|
||||
cls.post = PostProcessorFactory.get_post_processor(cls.job, "refactored_linuxcnc")
|
||||
# locate the operation named "Profile"
|
||||
for op in cls.job.Operations.Group:
|
||||
if op.Label == "Profile":
|
||||
# remember the "Profile" operation
|
||||
cls.profile_op = op
|
||||
return
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
"""tearDownClass()...
|
||||
|
||||
This method is called prior to destruction of this test class. Add
|
||||
code and objects here that cleanup the test environment after the
|
||||
test() methods in this class have been executed. This method does not
|
||||
have access to the class `self` reference. This method
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
# Close geometry document without saving
|
||||
FreeCAD.closeDocument(FreeCAD.ActiveDocument.Name)
|
||||
FreeCAD.closeDocument(cls.doc.Name)
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "")
|
||||
|
||||
# Setup and tear down methods called before and after each unit test
|
||||
|
||||
def setUp(self):
|
||||
"""setUp()...
|
||||
|
||||
This method is called prior to each `test()` method. Add code and
|
||||
objects here that are needed for multiple `test()` methods.
|
||||
"""
|
||||
self.doc = FreeCAD.ActiveDocument
|
||||
self.con = FreeCAD.Console
|
||||
self.docobj = FreeCAD.ActiveDocument.addObject("Path::Feature", "testpath")
|
||||
reload(
|
||||
postprocessor
|
||||
) # technical debt. This shouldn't be necessary but here to bypass a bug
|
||||
# allow a full length "diff" if an error occurs
|
||||
self.maxDiff = None
|
||||
# reinitialize the postprocessor data structures between tests
|
||||
self.post.reinitialize()
|
||||
|
||||
def tearDown(self):
|
||||
"""tearDown()...
|
||||
|
||||
This method is called after each test() method. Add cleanup instructions here.
|
||||
Such cleanup instructions will likely undo those in the setUp() method.
|
||||
"""
|
||||
FreeCAD.ActiveDocument.removeObject("testpath")
|
||||
pass
|
||||
|
||||
def test000(self):
|
||||
"""Test Output Generation.
|
||||
Empty path. Produces only the preamble and postable.
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
# Test generating with header
|
||||
# Header contains a time stamp that messes up unit testing.
|
||||
# Only test length of result.
|
||||
args = "--no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertTrue(len(gcode.splitlines()) == 14)
|
||||
self.job.PostProcessorArgs = "--no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertTrue(len(gcode.splitlines()) == 26)
|
||||
|
||||
# Test without header
|
||||
expected = """(Begin preamble)
|
||||
G17 G54 G40 G49 G80 G90
|
||||
G21
|
||||
(Begin operation: testpath)
|
||||
(Begin operation: Fixture)
|
||||
(Machine units: mm/min)
|
||||
(Finish operation: testpath)
|
||||
G54
|
||||
(Finish operation: Fixture)
|
||||
(Begin operation: TC: Default Tool)
|
||||
(Machine units: mm/min)
|
||||
(TC: Default Tool)
|
||||
(Begin toolchange)
|
||||
M5
|
||||
M6 T1
|
||||
G43 H1
|
||||
(Finish operation: TC: Default Tool)
|
||||
(Begin operation: Profile)
|
||||
(Machine units: mm/min)
|
||||
(Finish operation: Profile)
|
||||
(Begin postamble)
|
||||
M05
|
||||
G17 G54 G90 G80 G40
|
||||
M2
|
||||
"""
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
# test without comments
|
||||
expected = """G17 G54 G40 G49 G80 G90
|
||||
G21
|
||||
G54
|
||||
M5
|
||||
M6 T1
|
||||
G43 H1
|
||||
M05
|
||||
G17 G54 G90 G80 G40
|
||||
M2
|
||||
"""
|
||||
|
||||
args = "--no-header --no-comments --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-comments --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def test010(self):
|
||||
"""Test command Generation.
|
||||
Test Precision
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X10.000 Y20.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X10.00 Y20.00 Z30.00"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -163,27 +195,32 @@ M2
|
||||
"""
|
||||
Test Line Numbers
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
expected = "N150 G0 X10.000 Y20.000 Z30.000"
|
||||
self.job.PostProcessorArgs = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "N270 G0 X10.000 Y20.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
def test030(self):
|
||||
"""
|
||||
Test Pre-amble
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
args = "--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[0]
|
||||
self.assertEqual(result, "G18 G55")
|
||||
|
||||
@@ -191,10 +228,15 @@ M2
|
||||
"""
|
||||
Test Post-amble
|
||||
"""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
args = "--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[-2]
|
||||
self.assertEqual(result, "G0 Z50")
|
||||
self.assertEqual(gcode.splitlines()[-1], "M2")
|
||||
@@ -203,22 +245,25 @@ M2
|
||||
"""
|
||||
Test inches
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --inches --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --inches --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[2], "G20")
|
||||
|
||||
result = gcode.splitlines()[5]
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X0.3937 Y0.7874 Z1.1811"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --inches --precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --inches --precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X0.39 Y0.79 Z1.18"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -227,15 +272,17 @@ M2
|
||||
Test test modal
|
||||
Suppress the command name if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[18]
|
||||
expected = "X10.000 Y30.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -244,15 +291,17 @@ M2
|
||||
Test axis modal
|
||||
Suppress the axis coordinate if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[18]
|
||||
expected = "G0 Y30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -260,35 +309,41 @@ M2
|
||||
"""
|
||||
Test tool change
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M6 T2")
|
||||
c2 = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c, c2])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[6], "M5")
|
||||
self.assertEqual(gcode.splitlines()[7], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[8], "G43 H2")
|
||||
self.assertEqual(gcode.splitlines()[9], "M3 S3000")
|
||||
self.profile_op.Path = Path.Path([c, c2])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
split_gcode = gcode.splitlines()
|
||||
self.assertEqual(split_gcode[18], "M5")
|
||||
self.assertEqual(split_gcode[19], "M6 T2")
|
||||
self.assertEqual(split_gcode[20], "G43 H2")
|
||||
self.assertEqual(split_gcode[21], "M3 S3000")
|
||||
|
||||
# suppress TLO
|
||||
args = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[8], "M3 S3000")
|
||||
self.job.PostProcessorArgs = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[19], "M3 S3000")
|
||||
|
||||
def test090(self):
|
||||
"""
|
||||
Test comment
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("(comment)")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "(comment)"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2022 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
@@ -21,22 +21,24 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
from importlib import reload
|
||||
|
||||
import FreeCAD
|
||||
|
||||
import Path
|
||||
import CAMTests.PathTestUtils as PathTestUtils
|
||||
from Path.Post.scripts import refactored_mach3_mach4_post as postprocessor
|
||||
from Path.Post.Processor import PostProcessorFactory
|
||||
|
||||
|
||||
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
|
||||
Path.Log.trackModule(Path.Log.thisModule())
|
||||
|
||||
|
||||
class TestRefactoredMach3Mach4Post(PathTestUtils.PathTestBase):
|
||||
"""Test the refactored_mach3_mach4_post.py postprocessor."""
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls) -> None:
|
||||
"""setUpClass()...
|
||||
|
||||
This method is called upon instantiation of this test class. Add code
|
||||
and objects here that are needed for the duration of the test() methods
|
||||
in this class. In other words, set up the 'global' test environment
|
||||
@@ -45,108 +47,162 @@ class TestRefactoredMach3Mach4Post(PathTestUtils.PathTestBase):
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
|
||||
# Open existing FreeCAD document with test geometry
|
||||
FreeCAD.newDocument("Unnamed")
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")
|
||||
cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd")
|
||||
cls.job = cls.doc.getObject("Job")
|
||||
cls.post = PostProcessorFactory.get_post_processor(cls.job, "refactored_mach3_mach4")
|
||||
# locate the operation named "Profile"
|
||||
for op in cls.job.Operations.Group:
|
||||
if op.Label == "Profile":
|
||||
# remember the "Profile" operation
|
||||
cls.profile_op = op
|
||||
return
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls) -> None:
|
||||
"""tearDownClass()...
|
||||
|
||||
This method is called prior to destruction of this test class. Add
|
||||
code and objects here that cleanup the test environment after the
|
||||
test() methods in this class have been executed. This method does not
|
||||
have access to the class `self` reference. This method is able to
|
||||
call static methods within this same class.
|
||||
"""
|
||||
# Close geometry document without saving
|
||||
FreeCAD.closeDocument(FreeCAD.ActiveDocument.Name)
|
||||
FreeCAD.closeDocument(cls.doc.Name)
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "")
|
||||
|
||||
# Setup and tear down methods called before and after each unit test
|
||||
|
||||
def setUp(self) -> None:
|
||||
"""setUp()...
|
||||
|
||||
This method is called prior to each `test()` method. Add code and
|
||||
objects here that are needed for multiple `test()` methods.
|
||||
"""
|
||||
self.doc = FreeCAD.ActiveDocument
|
||||
self.con = FreeCAD.Console
|
||||
self.docobj = FreeCAD.ActiveDocument.addObject("Path::Feature", "testpath")
|
||||
reload(
|
||||
postprocessor
|
||||
) # technical debt. This shouldn't be necessary but here to bypass a bug
|
||||
# allow a full length "diff" if an error occurs
|
||||
self.maxDiff = None
|
||||
# reinitialize the postprocessor data structures between tests
|
||||
self.post.reinitialize()
|
||||
|
||||
def tearDown(self) -> None:
|
||||
"""tearDown()...
|
||||
|
||||
This method is called after each test() method. Add cleanup instructions here.
|
||||
Such cleanup instructions will likely undo those in the setUp() method.
|
||||
"""
|
||||
FreeCAD.ActiveDocument.removeObject("testpath")
|
||||
pass
|
||||
|
||||
def single_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with a single line of gcode comparison."""
|
||||
nl = "\n"
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
# there are 4 lines of "other stuff" before the line we are interested in
|
||||
self.assertEqual(gcode.splitlines()[4], expected)
|
||||
|
||||
def multi_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with multiple lines of gcode comparison."""
|
||||
nl = "\n"
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def test000(self) -> None:
|
||||
"""Test Output Generation.
|
||||
Empty path. Produces only the preamble and postable.
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
# Test generating with header
|
||||
# Header contains a time stamp that messes up unit testing.
|
||||
# Only test length of result.
|
||||
args = "--no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertTrue(len(gcode.splitlines()) == 14)
|
||||
self.job.PostProcessorArgs = "--no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertTrue(len(gcode.splitlines()) == 26)
|
||||
|
||||
# Test without header
|
||||
expected = """(Begin preamble)
|
||||
G17 G54 G40 G49 G80 G90
|
||||
G21
|
||||
(Begin operation: testpath)
|
||||
(Begin operation: Fixture)
|
||||
(Machine: mach3_4, mm/min)
|
||||
(Finish operation: testpath)
|
||||
G54
|
||||
(Finish operation: Fixture)
|
||||
(Begin operation: TC: Default Tool)
|
||||
(Machine: mach3_4, mm/min)
|
||||
(TC: Default Tool)
|
||||
(Begin toolchange)
|
||||
M5
|
||||
M6 T1
|
||||
G43 H1
|
||||
(Finish operation: TC: Default Tool)
|
||||
(Begin operation: Profile)
|
||||
(Machine: mach3_4, mm/min)
|
||||
(Finish operation: Profile)
|
||||
(Begin postamble)
|
||||
M05
|
||||
G17 G54 G90 G80 G40
|
||||
M2
|
||||
"""
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
# test without comments
|
||||
expected = """G17 G54 G40 G49 G80 G90
|
||||
G21
|
||||
G54
|
||||
M5
|
||||
M6 T1
|
||||
G43 H1
|
||||
M05
|
||||
G17 G54 G90 G80 G40
|
||||
M2
|
||||
"""
|
||||
|
||||
args = "--no-header --no-comments --no-show-editor"
|
||||
# args = ("--no-header --no-comments --no-show-editor --precision=2")
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = "--no-header --no-comments --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def test010(self):
|
||||
"""Test command Generation.
|
||||
Test Precision
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X10.000 Y20.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X10.00 Y20.00 Z30.00"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -154,27 +210,32 @@ M2
|
||||
"""
|
||||
Test Line Numbers
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
expected = "N150 G0 X10.000 Y20.000 Z30.000"
|
||||
self.job.PostProcessorArgs = "--no-header --line-numbers --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "N270 G0 X10.000 Y20.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
def test030(self):
|
||||
"""
|
||||
Test Pre-amble
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
args = "--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --preamble='G18 G55' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[0]
|
||||
self.assertEqual(result, "G18 G55")
|
||||
|
||||
@@ -182,10 +243,15 @@ M2
|
||||
"""
|
||||
Test Post-amble
|
||||
"""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
args = "--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
self.job.PostProcessorArgs = (
|
||||
"--no-header --no-comments --postamble='G0 Z50\nM2' --no-show-editor"
|
||||
)
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[-2]
|
||||
self.assertEqual(result, "G0 Z50")
|
||||
self.assertEqual(gcode.splitlines()[-1], "M2")
|
||||
@@ -194,22 +260,25 @@ M2
|
||||
"""
|
||||
Test inches
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --inches --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --inches --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[2], "G20")
|
||||
|
||||
result = gcode.splitlines()[5]
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X0.3937 Y0.7874 Z1.1811"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
args = "--no-header --inches --precision=2 --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --inches --precision=2 --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "G0 X0.39 Y0.79 Z1.18"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -218,15 +287,17 @@ M2
|
||||
Test test modal
|
||||
Suppress the command name if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[18]
|
||||
expected = "X10.000 Y30.000 Z30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -235,15 +306,17 @@ M2
|
||||
Test axis modal
|
||||
Suppress the axis coordinate if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
args = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[6]
|
||||
self.job.PostProcessorArgs = "--no-header --axis-modal --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[18]
|
||||
expected = "G0 Y30.000"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -251,35 +324,41 @@ M2
|
||||
"""
|
||||
Test tool change
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M6 T2")
|
||||
c2 = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c, c2])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[6], "M5")
|
||||
self.assertEqual(gcode.splitlines()[7], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[8], "G43 H2")
|
||||
self.assertEqual(gcode.splitlines()[9], "M3 S3000")
|
||||
self.profile_op.Path = Path.Path([c, c2])
|
||||
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
split_gcode = gcode.splitlines()
|
||||
self.assertEqual(split_gcode[18], "M5")
|
||||
self.assertEqual(split_gcode[19], "M6 T2")
|
||||
self.assertEqual(split_gcode[20], "G43 H2")
|
||||
self.assertEqual(split_gcode[21], "M3 S3000")
|
||||
|
||||
# suppress TLO
|
||||
args = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.assertEqual(gcode.splitlines()[8], "M3 S3000")
|
||||
self.job.PostProcessorArgs = "--no-header --no-tlo --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[19], "M3 S3000")
|
||||
|
||||
def test090(self):
|
||||
"""
|
||||
Test comment
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("(comment)")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
args = "--no-header --no-show-editor"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
result = gcode.splitlines()[5]
|
||||
self.job.PostProcessorArgs = "--no-header --no-show-editor"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
result = gcode.splitlines()[17]
|
||||
expected = "(comment)"
|
||||
self.assertEqual(result, expected)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2022 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022-2023 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022-2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
@@ -25,7 +25,7 @@ import FreeCAD
|
||||
|
||||
import Path
|
||||
import CAMTests.PathTestUtils as PathTestUtils
|
||||
from Path.Post.scripts import refactored_test_post as postprocessor
|
||||
from Path.Post.Processor import PostProcessorFactory
|
||||
|
||||
|
||||
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
|
||||
@@ -33,6 +33,8 @@ Path.Log.trackModule(Path.Log.thisModule())
|
||||
|
||||
|
||||
class TestRefactoredTestPost(PathTestUtils.PathTestBase):
|
||||
"""Test the refactored_test_post.py postprocessor command line arguments."""
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
"""setUpClass()...
|
||||
@@ -44,8 +46,16 @@ class TestRefactoredTestPost(PathTestUtils.PathTestBase):
|
||||
This method does not have access to the class `self` reference, but it
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
# Open existing FreeCAD document with test geometry
|
||||
FreeCAD.newDocument("Unnamed")
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")
|
||||
cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd")
|
||||
cls.job = cls.doc.getObject("Job")
|
||||
cls.post = PostProcessorFactory.get_post_processor(cls.job, "refactored_test")
|
||||
# locate the operation named "Profile"
|
||||
for op in cls.job.Operations.Group:
|
||||
if op.Label == "Profile":
|
||||
# remember the "Profile" operation
|
||||
cls.profile_op = op
|
||||
return
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
@@ -57,8 +67,8 @@ class TestRefactoredTestPost(PathTestUtils.PathTestBase):
|
||||
not have access to the class `self` reference. This method is able
|
||||
to call static methods within this same class.
|
||||
"""
|
||||
# Close geometry document without saving
|
||||
FreeCAD.closeDocument(FreeCAD.ActiveDocument.Name)
|
||||
FreeCAD.closeDocument(cls.doc.Name)
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "")
|
||||
|
||||
# Setup and tear down methods called before and after each unit test
|
||||
|
||||
@@ -68,15 +78,12 @@ class TestRefactoredTestPost(PathTestUtils.PathTestBase):
|
||||
This method is called prior to each `test()` method. Add code and
|
||||
objects here that are needed for multiple `test()` methods.
|
||||
"""
|
||||
# allow a full length "diff" if an error occurs
|
||||
self.maxDiff = None
|
||||
self.doc = FreeCAD.ActiveDocument
|
||||
self.con = FreeCAD.Console
|
||||
self.docobj = FreeCAD.ActiveDocument.addObject("Path::Feature", "testpath")
|
||||
#
|
||||
# Re-initialize all of the values before doing a test.
|
||||
# reinitialize the postprocessor data structures between tests
|
||||
#
|
||||
postprocessor.UNITS = "G21"
|
||||
postprocessor.init_values(postprocessor.global_values)
|
||||
self.post.reinitialize()
|
||||
|
||||
def tearDown(self):
|
||||
"""tearDown()...
|
||||
@@ -84,39 +91,42 @@ class TestRefactoredTestPost(PathTestUtils.PathTestBase):
|
||||
This method is called after each test() method. Add cleanup instructions here.
|
||||
Such cleanup instructions will likely undo those in the setUp() method.
|
||||
"""
|
||||
FreeCAD.ActiveDocument.removeObject("testpath")
|
||||
pass
|
||||
|
||||
def single_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with a single comparison."""
|
||||
"""Perform a test with a single line of gcode comparison."""
|
||||
nl = "\n"
|
||||
self.docobj.Path = Path.Path(path)
|
||||
postables = [self.docobj]
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
# there are 4 lines of "other stuff" before the line we are interested in
|
||||
self.assertEqual(gcode.splitlines()[4], expected)
|
||||
|
||||
def multi_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with multiple lines of gcode comparison."""
|
||||
nl = "\n"
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def compare_third_line(self, path_string, expected, args, debug=False):
|
||||
"""Perform a test with a single comparison to the third line of the output."""
|
||||
nl = "\n"
|
||||
if path_string:
|
||||
self.docobj.Path = Path.Path([Path.Command(path_string)])
|
||||
else:
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[2], expected)
|
||||
|
||||
#############################################################################
|
||||
#
|
||||
# The tests are organized into groups:
|
||||
#
|
||||
# 00000 - 00099 tests that don't fit any other category
|
||||
# 00100 - 00999 tests for all of the various arguments/options
|
||||
# 01000 - 01999 tests for the various G codes at 1000 + 10 * g_code_value
|
||||
# 02000 - 02999 tests for the various M codes at 2000 + 10 * m_code_value
|
||||
# 00100 - 09999 tests for all of the various arguments/options
|
||||
# 10000 - 18999 tests for the various G codes at 10000 + 10 * g_code_value
|
||||
# 19000 - 19999 tests for the A, B, and C axis outputs
|
||||
# 20000 - 29999 tests for the various M codes at 20000 + 10 * m_code_value
|
||||
#
|
||||
#############################################################################
|
||||
|
||||
@@ -125,37 +135,45 @@ class TestRefactoredTestPost(PathTestUtils.PathTestBase):
|
||||
|
||||
Suppress the axis coordinate if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
self.job.PostProcessorArgs = "--axis-modal"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[5], "G0 Y30.000")
|
||||
|
||||
args = "--axis-modal"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[3], "G0 Y30.000")
|
||||
|
||||
args = "--no-axis-modal"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[3], "G0 X10.000 Y30.000 Z30.000")
|
||||
self.job.PostProcessorArgs = "--no-axis-modal"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[5], "G0 X10.000 Y30.000 Z30.000")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00110(self):
|
||||
"""Test axis-precision."""
|
||||
self.compare_third_line("G0 X10 Y20 Z30", "G0 X10.00 Y20.00 Z30.00", "--axis-precision=2")
|
||||
self.single_compare("G0 X10 Y20 Z30", "G0 X10.00 Y20.00 Z30.00", "--axis-precision=2")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00120(self):
|
||||
"""Test bcnc."""
|
||||
self.single_compare(
|
||||
self.multi_compare(
|
||||
[],
|
||||
"""G90
|
||||
G21
|
||||
(Block-name: testpath)
|
||||
(Block-name: Fixture)
|
||||
(Block-expand: 0)
|
||||
(Block-enable: 1)
|
||||
G54
|
||||
(Block-name: TC: Default Tool)
|
||||
(Block-expand: 0)
|
||||
(Block-enable: 1)
|
||||
M6 T1
|
||||
(Block-name: Profile)
|
||||
(Block-expand: 0)
|
||||
(Block-enable: 1)
|
||||
(Block-name: post_amble)
|
||||
@@ -164,10 +182,12 @@ G21
|
||||
""",
|
||||
"--bcnc",
|
||||
)
|
||||
self.single_compare(
|
||||
self.multi_compare(
|
||||
[],
|
||||
"""G90
|
||||
G21
|
||||
G54
|
||||
M6 T1
|
||||
""",
|
||||
"--no-bcnc",
|
||||
)
|
||||
@@ -176,37 +196,38 @@ G21
|
||||
|
||||
def test00130(self):
|
||||
"""Test comments."""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("(comment)")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
args = "--comments"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[4], "(comment)")
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
self.job.PostProcessorArgs = "--comments"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[12], "(comment)")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00140(self):
|
||||
"""Test feed-precision."""
|
||||
#
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G1 X10 Y20 Z30 F123.123456")
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
|
||||
args = ""
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.job.PostProcessorArgs = ""
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
# Note: The "internal" F speed is in mm/s,
|
||||
# while the output F speed is in mm/min.
|
||||
self.assertEqual(gcode.splitlines()[2], "G1 X10.000 Y20.000 Z30.000 F7387.407")
|
||||
self.assertEqual(gcode.splitlines()[4], "G1 X10.000 Y20.000 Z30.000 F7387.407")
|
||||
|
||||
args = "--feed-precision=2"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.job.PostProcessorArgs = "--feed-precision=2"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
# Note: The "internal" F speed is in mm/s,
|
||||
# while the output F speed is in mm/min.
|
||||
self.assertEqual(gcode.splitlines()[2], "G1 X10.000 Y20.000 Z30.000 F7387.41")
|
||||
self.assertEqual(gcode.splitlines()[4], "G1 X10.000 Y20.000 Z30.000 F7387.41")
|
||||
|
||||
#############################################################################
|
||||
|
||||
@@ -215,90 +236,107 @@ G21
|
||||
|
||||
Also tests the interactions between --comments and --header.
|
||||
"""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
# Test generating with comments and header.
|
||||
self.job.PostProcessorArgs = "--comments --header"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
split_gcode = gcode.splitlines()
|
||||
self.assertEqual(split_gcode[0], "(Exported by FreeCAD)")
|
||||
self.assertEqual(split_gcode[1], "(Post Processor: refactored_test_post)")
|
||||
self.assertEqual(split_gcode[2], "(Cam File: boxtest.fcstd)")
|
||||
# The header contains a time stamp that messes up unit testing.
|
||||
# Only test the length of the line that contains the time.
|
||||
args = "--comments --header"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[0], "(Exported by FreeCAD)")
|
||||
self.assertEqual(
|
||||
gcode.splitlines()[1],
|
||||
"(Post Processor: Path.Post.scripts.refactored_test_post)",
|
||||
)
|
||||
self.assertEqual(gcode.splitlines()[2], "(Cam File: )")
|
||||
self.assertIn("(Output Time: ", gcode.splitlines()[3])
|
||||
self.assertTrue(len(gcode.splitlines()[3]) == 41)
|
||||
self.assertEqual(gcode.splitlines()[4], "(Begin preamble)")
|
||||
self.assertEqual(gcode.splitlines()[5], "G90")
|
||||
self.assertEqual(gcode.splitlines()[6], "G21")
|
||||
self.assertEqual(gcode.splitlines()[7], "(Begin operation)")
|
||||
self.assertEqual(gcode.splitlines()[8], "(Finish operation: testpath)")
|
||||
self.assertEqual(gcode.splitlines()[9], "(Begin postamble)")
|
||||
self.assertIn("(Output Time: ", split_gcode[3])
|
||||
self.assertTrue(len(split_gcode[3]) == 41)
|
||||
self.assertEqual(split_gcode[4], "(Begin preamble)")
|
||||
self.assertEqual(split_gcode[5], "G90")
|
||||
self.assertEqual(split_gcode[6], "G21")
|
||||
self.assertEqual(split_gcode[7], "(Begin operation)")
|
||||
self.assertEqual(split_gcode[8], "G54")
|
||||
self.assertEqual(split_gcode[9], "(Finish operation: Fixture)")
|
||||
self.assertEqual(split_gcode[10], "(Begin operation)")
|
||||
self.assertEqual(split_gcode[11], "(TC: Default Tool)")
|
||||
self.assertEqual(split_gcode[12], "(Begin toolchange)")
|
||||
self.assertEqual(split_gcode[13], "( M6 T1 )")
|
||||
self.assertEqual(split_gcode[14], "(Finish operation: TC: Default Tool)")
|
||||
self.assertEqual(split_gcode[15], "(Begin operation)")
|
||||
self.assertEqual(split_gcode[16], "(Finish operation: Profile)")
|
||||
self.assertEqual(split_gcode[17], "(Begin postamble)")
|
||||
|
||||
# Test with comments without header.
|
||||
expected = """(Begin preamble)
|
||||
G90
|
||||
G21
|
||||
(Begin operation)
|
||||
(Finish operation: testpath)
|
||||
G54
|
||||
(Finish operation: Fixture)
|
||||
(Begin operation)
|
||||
(TC: Default Tool)
|
||||
(Begin toolchange)
|
||||
( M6 T1 )
|
||||
(Finish operation: TC: Default Tool)
|
||||
(Begin operation)
|
||||
(Finish operation: Profile)
|
||||
(Begin postamble)
|
||||
"""
|
||||
args = "--comments --no-header"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.job.PostProcessorArgs = "--comments --no-header"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
# Test without comments with header.
|
||||
args = "--no-comments --header"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[0], "(Exported by FreeCAD)")
|
||||
self.assertEqual(
|
||||
gcode.splitlines()[1],
|
||||
"(Post Processor: Path.Post.scripts.refactored_test_post)",
|
||||
)
|
||||
self.assertEqual(gcode.splitlines()[2], "(Cam File: )")
|
||||
self.assertIn("(Output Time: ", gcode.splitlines()[3])
|
||||
self.assertTrue(len(gcode.splitlines()[3]) == 41)
|
||||
self.assertEqual(gcode.splitlines()[4], "G90")
|
||||
self.assertEqual(gcode.splitlines()[5], "G21")
|
||||
self.job.PostProcessorArgs = "--no-comments --header"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[0], "(Exported by FreeCAD)")
|
||||
self.assertEqual(split_gcode[1], "(Post Processor: refactored_test_post)")
|
||||
self.assertEqual(split_gcode[2], "(Cam File: boxtest.fcstd)")
|
||||
# The header contains a time stamp that messes up unit testing.
|
||||
# Only test the length of the line that contains the time.
|
||||
self.assertIn("(Output Time: ", split_gcode[3])
|
||||
self.assertTrue(len(split_gcode[3]) == 41)
|
||||
self.assertEqual(split_gcode[4], "G90")
|
||||
self.assertEqual(split_gcode[5], "G21")
|
||||
self.assertEqual(split_gcode[6], "G54")
|
||||
self.assertEqual(split_gcode[7], "M6 T1")
|
||||
|
||||
# Test without comments or header.
|
||||
expected = """G90
|
||||
G21
|
||||
G54
|
||||
M6 T1
|
||||
"""
|
||||
args = "--no-comments --no-header"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.job.PostProcessorArgs = "--no-comments --no-header"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00160(self):
|
||||
"""Test Line Numbers."""
|
||||
self.compare_third_line(
|
||||
"G0 X10 Y20 Z30", "N120 G0 X10.000 Y20.000 Z30.000", "--line-numbers"
|
||||
)
|
||||
self.single_compare("G0 X10 Y20 Z30", "N140 G0 X10.000 Y20.000 Z30.000", "--line-numbers")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00170(self):
|
||||
"""Test inches."""
|
||||
#
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30 A10 B20 C30 U10 V20 W30")
|
||||
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
args = "--inches"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
self.job.PostProcessorArgs = "--inches"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[1], "G20")
|
||||
self.assertEqual(
|
||||
gcode.splitlines()[2],
|
||||
gcode.splitlines()[4],
|
||||
"G0 X0.3937 Y0.7874 Z1.1811 A10.0000 B20.0000 C30.0000 U0.3937 V0.7874 W1.1811",
|
||||
)
|
||||
|
||||
@@ -309,18 +347,20 @@ G21
|
||||
|
||||
Suppress the command name if the same as previous
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("G0 X10 Y20 Z30")
|
||||
c1 = Path.Command("G0 X10 Y30 Z30")
|
||||
self.docobj.Path = Path.Path([c, c1])
|
||||
postables = [self.docobj]
|
||||
args = "--modal"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[3], "X10.000 Y30.000 Z30.000")
|
||||
args = "--no-modal"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[3], "G0 X10.000 Y30.000 Z30.000")
|
||||
self.profile_op.Path = Path.Path([c, c1])
|
||||
|
||||
self.job.PostProcessorArgs = "--modal"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[5], "X10.000 Y30.000 Z30.000")
|
||||
self.job.PostProcessorArgs = "--no-modal"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[5], "G0 X10.000 Y30.000 Z30.000")
|
||||
|
||||
#############################################################################
|
||||
|
||||
@@ -329,6 +369,8 @@ G21
|
||||
|
||||
Empty path. Outputs all arguments.
|
||||
"""
|
||||
nl = "\n"
|
||||
|
||||
expected = """Arguments that are commonly used:
|
||||
--metric Convert output for Metric mode (G21) (default)
|
||||
--inches Convert output for US imperial mode (G20)
|
||||
@@ -390,9 +432,11 @@ G21
|
||||
--wait-for-spindle WAIT_FOR_SPINDLE
|
||||
Time to wait (in seconds) after M3, M4 (default = 0.0)
|
||||
"""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
gcode: str = postprocessor.export(postables, "-", "--output_all_arguments")
|
||||
self.profile_op.Path = Path.Path([])
|
||||
|
||||
self.job.PostProcessorArgs = "--output_all_arguments"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
# The argparse help routine turns out to be sensitive to the
|
||||
# number of columns in the terminal window that the tests
|
||||
# are run from. This affects the indenting in the output.
|
||||
@@ -408,41 +452,48 @@ G21
|
||||
|
||||
Empty path. Outputs visible arguments.
|
||||
"""
|
||||
self.single_compare([], "", "--output_visible_arguments")
|
||||
self.profile_op.Path = Path.Path([])
|
||||
expected = ""
|
||||
self.job.PostProcessorArgs = "--output_visible_arguments"
|
||||
gcode = self.post.export()[0][1]
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00210(self):
|
||||
"""Test Post-amble."""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
args = "--postamble='G0 Z50\nM2'"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[-2], "G0 Z50")
|
||||
self.assertEqual(gcode.splitlines()[-1], "M2")
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
self.job.PostProcessorArgs = "--postamble='G0 Z50\nM2'"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[-2], "G0 Z50")
|
||||
self.assertEqual(split_gcode[-1], "M2")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00220(self):
|
||||
"""Test Pre-amble."""
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
args = "--preamble='G18 G55'"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
nl = "\n"
|
||||
|
||||
self.profile_op.Path = Path.Path([])
|
||||
self.job.PostProcessorArgs = "--preamble='G18 G55'"
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[0], "G18 G55")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00230(self):
|
||||
"""Test precision."""
|
||||
self.compare_third_line(
|
||||
self.single_compare(
|
||||
"G1 X10 Y20 Z30 F100",
|
||||
"G1 X10.00 Y20.00 Z30.00 F6000.00",
|
||||
"--precision=2",
|
||||
)
|
||||
self.compare_third_line(
|
||||
self.single_compare(
|
||||
"G1 X10 Y20 Z30 F100",
|
||||
"G1 X0.39 Y0.79 Z1.18 F236.22",
|
||||
"--inches --precision=2",
|
||||
@@ -452,75 +503,93 @@ G21
|
||||
|
||||
def test00240(self):
|
||||
"""Test return-to."""
|
||||
self.compare_third_line("", "G0 X12 Y34 Z56", "--return-to='12,34,56'")
|
||||
self.single_compare("", "G0 X12 Y34 Z56", "--return-to='12,34,56'")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00250(self):
|
||||
"""Test tlo."""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M6 T2")
|
||||
c2 = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c, c2])
|
||||
postables = [self.docobj]
|
||||
args = "--tlo"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[3], "G43 H2")
|
||||
self.assertEqual(gcode.splitlines()[4], "M3 S3000")
|
||||
|
||||
self.profile_op.Path = Path.Path([c, c2])
|
||||
|
||||
self.job.PostProcessorArgs = "--tlo"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[5], "M6 T2")
|
||||
self.assertEqual(split_gcode[6], "G43 H2")
|
||||
self.assertEqual(split_gcode[7], "M3 S3000")
|
||||
|
||||
# suppress TLO
|
||||
args = "--no-tlo"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[3], "M3 S3000")
|
||||
self.job.PostProcessorArgs = "--no-tlo"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[4], "M6 T2")
|
||||
self.assertEqual(split_gcode[5], "M3 S3000")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00260(self):
|
||||
"""Test tool_change."""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M6 T2")
|
||||
c2 = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c, c2])
|
||||
postables = [self.docobj]
|
||||
args = "--tool_change"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M6 T2")
|
||||
self.assertEqual(gcode.splitlines()[3], "M3 S3000")
|
||||
args = "--comments --no-tool_change"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[5], "( M6 T2 )")
|
||||
self.assertEqual(gcode.splitlines()[6], "M3 S3000")
|
||||
self.profile_op.Path = Path.Path([c, c2])
|
||||
|
||||
self.job.PostProcessorArgs = "--tool_change"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[4], "M6 T2")
|
||||
self.assertEqual(split_gcode[5], "M3 S3000")
|
||||
|
||||
self.job.PostProcessorArgs = "--comments --no-tool_change"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[13], "( M6 T2 )")
|
||||
self.assertEqual(split_gcode[14], "M3 S3000")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test00270(self):
|
||||
"""Test wait-for-spindle."""
|
||||
nl = "\n"
|
||||
|
||||
c = Path.Command("M3 S3000")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
args = ""
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M3 S3000")
|
||||
args = "--wait-for-spindle=1.23456"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M3 S3000")
|
||||
self.assertEqual(gcode.splitlines()[3], "G4 P1.23456")
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
self.job.PostProcessorArgs = ""
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[4], "M3 S3000")
|
||||
|
||||
self.job.PostProcessorArgs = "--wait-for-spindle=1.23456"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[4], "M3 S3000")
|
||||
self.assertEqual(split_gcode[5], "G4 P1.23456")
|
||||
|
||||
c = Path.Command("M4 S3000")
|
||||
self.docobj.Path = Path.Path([c])
|
||||
postables = [self.docobj]
|
||||
self.profile_op.Path = Path.Path([c])
|
||||
|
||||
# This also tests that the default for --wait-for-spindle
|
||||
# goes back to 0.0 (no wait)
|
||||
args = ""
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M4 S3000")
|
||||
args = "--wait-for-spindle=1.23456"
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
# print("--------\n" + gcode + "--------\n")
|
||||
self.assertEqual(gcode.splitlines()[2], "M4 S3000")
|
||||
self.assertEqual(gcode.splitlines()[3], "G4 P1.23456")
|
||||
self.job.PostProcessorArgs = ""
|
||||
gcode = self.post.export()[0][1]
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[4], "M4 S3000")
|
||||
|
||||
self.job.PostProcessorArgs = "--wait-for-spindle=1.23456"
|
||||
gcode = self.post.export()[0][1]
|
||||
split_gcode = gcode.splitlines()
|
||||
# print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(split_gcode[4], "M4 S3000")
|
||||
self.assertEqual(split_gcode[5], "G4 P1.23456")
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2022 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022-2023 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022-2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * *
|
||||
# * This program is free software; you can redistribute it and/or modify *
|
||||
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
@@ -25,7 +25,7 @@ import FreeCAD
|
||||
|
||||
import Path
|
||||
import CAMTests.PathTestUtils as PathTestUtils
|
||||
from Path.Post.scripts import refactored_test_post as postprocessor
|
||||
from Path.Post.Processor import PostProcessorFactory
|
||||
|
||||
|
||||
Path.Log.setLevel(Path.Log.Level.DEBUG, Path.Log.thisModule())
|
||||
@@ -46,8 +46,16 @@ class TestRefactoredTestPostMCodes(PathTestUtils.PathTestBase):
|
||||
This method does not have access to the class `self` reference, but it
|
||||
is able to call static methods within this same class.
|
||||
"""
|
||||
# Open existing FreeCAD document with test geometry
|
||||
FreeCAD.newDocument("Unnamed")
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")
|
||||
cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/CAMTests/boxtest.fcstd")
|
||||
cls.job = cls.doc.getObject("Job")
|
||||
cls.post = PostProcessorFactory.get_post_processor(cls.job, "refactored_test")
|
||||
# locate the operation named "Profile"
|
||||
for op in cls.job.Operations.Group:
|
||||
if op.Label == "Profile":
|
||||
# remember the "Profile" operation
|
||||
cls.profile_op = op
|
||||
return
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
@@ -59,8 +67,8 @@ class TestRefactoredTestPostMCodes(PathTestUtils.PathTestBase):
|
||||
not have access to the class `self` reference. This method is able
|
||||
to call static methods within this same class.
|
||||
"""
|
||||
# Close geometry document without saving
|
||||
FreeCAD.closeDocument(FreeCAD.ActiveDocument.Name)
|
||||
FreeCAD.closeDocument(cls.doc.Name)
|
||||
FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "")
|
||||
|
||||
# Setup and tear down methods called before and after each unit test
|
||||
|
||||
@@ -70,14 +78,12 @@ class TestRefactoredTestPostMCodes(PathTestUtils.PathTestBase):
|
||||
This method is called prior to each `test()` method. Add code and
|
||||
objects here that are needed for multiple `test()` methods.
|
||||
"""
|
||||
self.doc = FreeCAD.ActiveDocument
|
||||
self.con = FreeCAD.Console
|
||||
self.docobj = FreeCAD.ActiveDocument.addObject("Path::Feature", "testpath")
|
||||
# allow a full length "diff" if an error occurs
|
||||
self.maxDiff = None
|
||||
#
|
||||
# Re-initialize all of the values before doing a test.
|
||||
# reinitialize the postprocessor data structures between tests
|
||||
#
|
||||
postprocessor.UNITS = "G21"
|
||||
postprocessor.init_values(postprocessor.global_values)
|
||||
self.post.reinitialize()
|
||||
|
||||
def tearDown(self):
|
||||
"""tearDown()...
|
||||
@@ -85,30 +91,20 @@ class TestRefactoredTestPostMCodes(PathTestUtils.PathTestBase):
|
||||
This method is called after each test() method. Add cleanup instructions here.
|
||||
Such cleanup instructions will likely undo those in the setUp() method.
|
||||
"""
|
||||
FreeCAD.ActiveDocument.removeObject("testpath")
|
||||
pass
|
||||
|
||||
def single_compare(self, path, expected, args, debug=False):
|
||||
"""Perform a test with a single comparison."""
|
||||
nl = "\n"
|
||||
self.docobj.Path = Path.Path(path)
|
||||
postables = [self.docobj]
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
self.job.PostProcessorArgs = args
|
||||
# replace the original path (that came with the job and operation) with our path
|
||||
self.profile_op.Path = Path.Path(path)
|
||||
# the gcode is in the first section for this particular job and operation
|
||||
gcode = self.post.export()[0][1]
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode, expected)
|
||||
|
||||
def compare_third_line(self, path_string, expected, args, debug=False):
|
||||
"""Perform a test with a single comparison to the third line of the output."""
|
||||
nl = "\n"
|
||||
if path_string:
|
||||
self.docobj.Path = Path.Path([Path.Command(path_string)])
|
||||
else:
|
||||
self.docobj.Path = Path.Path([])
|
||||
postables = [self.docobj]
|
||||
gcode = postprocessor.export(postables, "-", args)
|
||||
if debug:
|
||||
print(f"--------{nl}{gcode}--------{nl}")
|
||||
self.assertEqual(gcode.splitlines()[2], expected)
|
||||
# there are 4 lines of "other stuff" before the line we are interested in
|
||||
self.assertEqual(gcode.splitlines()[4], expected)
|
||||
|
||||
#############################################################################
|
||||
#
|
||||
@@ -116,99 +112,100 @@ class TestRefactoredTestPostMCodes(PathTestUtils.PathTestBase):
|
||||
#
|
||||
# 00000 - 00099 tests that don't fit any other category
|
||||
# 00100 - 09999 tests for all of the various arguments/options
|
||||
# 10000 - 19999 tests for the various G codes at 10000 + 10 * g_code_value
|
||||
# 10000 - 18999 tests for the various G codes at 10000 + 10 * g_code_value
|
||||
# 19000 - 19999 tests for the A, B, and C axis outputs
|
||||
# 20000 - 29999 tests for the various M codes at 20000 + 10 * m_code_value
|
||||
#
|
||||
#############################################################################
|
||||
|
||||
def test20000(self):
|
||||
"""Test M0 command Generation."""
|
||||
self.compare_third_line("M0", "M0", "")
|
||||
self.compare_third_line("M00", "M00", "")
|
||||
self.single_compare("M0", "M0", "")
|
||||
self.single_compare("M00", "M00", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20010(self):
|
||||
"""Test M1 command Generation."""
|
||||
self.compare_third_line("M1", "M1", "")
|
||||
self.compare_third_line("M01", "M01", "")
|
||||
self.single_compare("M1", "M1", "")
|
||||
self.single_compare("M01", "M01", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20020(self):
|
||||
"""Test M2 command Generation."""
|
||||
self.compare_third_line("M2", "M2", "")
|
||||
self.compare_third_line("M02", "M02", "")
|
||||
self.single_compare("M2", "M2", "")
|
||||
self.single_compare("M02", "M02", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20030(self):
|
||||
"""Test M3 command Generation."""
|
||||
self.compare_third_line("M3", "M3", "")
|
||||
self.compare_third_line("M03", "M03", "")
|
||||
self.single_compare("M3", "M3", "")
|
||||
self.single_compare("M03", "M03", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20040(self):
|
||||
"""Test M4 command Generation."""
|
||||
self.compare_third_line("M4", "M4", "")
|
||||
self.compare_third_line("M04", "M04", "")
|
||||
self.single_compare("M4", "M4", "")
|
||||
self.single_compare("M04", "M04", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20050(self):
|
||||
"""Test M5 command Generation."""
|
||||
self.compare_third_line("M5", "M5", "")
|
||||
self.compare_third_line("M05", "M05", "")
|
||||
self.single_compare("M5", "M5", "")
|
||||
self.single_compare("M05", "M05", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20060(self):
|
||||
"""Test M6 command Generation."""
|
||||
self.compare_third_line("M6", "M6", "")
|
||||
self.compare_third_line("M06", "M06", "")
|
||||
self.single_compare("M6", "M6", "")
|
||||
self.single_compare("M06", "M06", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20070(self):
|
||||
"""Test M7 command Generation."""
|
||||
self.compare_third_line("M7", "M7", "")
|
||||
self.compare_third_line("M07", "M07", "")
|
||||
self.single_compare("M7", "M7", "")
|
||||
self.single_compare("M07", "M07", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20080(self):
|
||||
"""Test M8 command Generation."""
|
||||
self.compare_third_line("M8", "M8", "")
|
||||
self.compare_third_line("M08", "M08", "")
|
||||
self.single_compare("M8", "M8", "")
|
||||
self.single_compare("M08", "M08", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20090(self):
|
||||
"""Test M9 command Generation."""
|
||||
self.compare_third_line("M9", "M9", "")
|
||||
self.compare_third_line("M09", "M09", "")
|
||||
self.single_compare("M9", "M9", "")
|
||||
self.single_compare("M09", "M09", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20300(self):
|
||||
"""Test M30 command Generation."""
|
||||
self.compare_third_line("M30", "M30", "")
|
||||
self.single_compare("M30", "M30", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20480(self):
|
||||
"""Test M48 command Generation."""
|
||||
self.compare_third_line("M48", "M48", "")
|
||||
self.single_compare("M48", "M48", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20490(self):
|
||||
"""Test M49 command Generation."""
|
||||
self.compare_third_line("M49", "M49", "")
|
||||
self.single_compare("M49", "M49", "")
|
||||
|
||||
#############################################################################
|
||||
|
||||
def test20600(self):
|
||||
"""Test M60 command Generation."""
|
||||
self.compare_third_line("M60", "M60", "")
|
||||
self.single_compare("M60", "M60", "")
|
||||
|
||||
@@ -186,6 +186,8 @@ class CommandPathPost:
|
||||
postprocessor = PostProcessorFactory.get_post_processor(self.candidate, postprocessor_name)
|
||||
|
||||
post_data = postprocessor.export()
|
||||
# None is returned if there was an error during argument processing
|
||||
# otherwise the "usual" post_data data structure is returned.
|
||||
if not post_data:
|
||||
FreeCAD.ActiveDocument.abortTransaction()
|
||||
return
|
||||
@@ -203,8 +205,26 @@ class CommandPathPost:
|
||||
generator.set_subpartname(subpart)
|
||||
fname = next(generated_filename)
|
||||
|
||||
# write the results to the file
|
||||
self._write_file(fname, gcode, policy)
|
||||
#
|
||||
# It is useful for a postprocessor to be able to either skip writing out
|
||||
# a file or write out a zero-length file to indicate that something unusual
|
||||
# has happened. The "gcode" variable is usually a string containing gcode
|
||||
# formatted for output. If the gcode string is zero length then a zero
|
||||
# length file will be written out. If the "gcode" variable contains None
|
||||
# instead, that indicates that the postprocessor doesn't want a file to be
|
||||
# written at all.
|
||||
#
|
||||
# There is at least one old-style postprocessor that currently puts the
|
||||
# gcode file out to a file server and doesn't need to write out a file to
|
||||
# the system where FreeCAD is running. In the old-style postprocessors the
|
||||
# postprocessor code decided whether to write out a file. Eventually a
|
||||
# newer (more object-oriented) version of that postprocessor will return
|
||||
# None for the "gcode" variable value to tell this code not to write out
|
||||
# a file. There may be other uses found for this capability over time.
|
||||
#
|
||||
if gcode is not None:
|
||||
# write the results to the file
|
||||
self._write_file(fname, gcode, policy)
|
||||
|
||||
FreeCAD.ActiveDocument.commitTransaction()
|
||||
FreeCAD.ActiveDocument.recompute()
|
||||
|
||||
@@ -606,7 +606,7 @@ def process_shared_arguments(
|
||||
argstring: str,
|
||||
all_visible: Parser,
|
||||
filename: str,
|
||||
) -> Tuple[bool, Union[str, argparse.Namespace]]:
|
||||
) -> Tuple[bool, Union[None, str, argparse.Namespace]]:
|
||||
"""Process the arguments to the postprocessor."""
|
||||
args: argparse.Namespace
|
||||
argument_text: str
|
||||
@@ -725,7 +725,7 @@ def process_shared_arguments(
|
||||
values["SPINDLE_WAIT"] = args.wait_for_spindle
|
||||
|
||||
except (ArithmeticError, LookupError):
|
||||
return (False, "")
|
||||
return (False, None)
|
||||
|
||||
return (True, args)
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2015 Dan Falck <ddfalck@gmail.com> *
|
||||
# * Copyright (c) 2020 Schildkroet *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2014 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2024 Ondsel <development@ondsel.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
@@ -24,259 +23,328 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
|
||||
import argparse
|
||||
|
||||
from typing import Any, Dict, Union
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from Path.Post.Processor import PostProcessor
|
||||
import Path.Post.UtilsArguments as PostUtilsArguments
|
||||
import Path.Post.UtilsExport as PostUtilsExport
|
||||
|
||||
# Define some types that are used throughout this file
|
||||
import Path
|
||||
import FreeCAD
|
||||
|
||||
translate = FreeCAD.Qt.translate
|
||||
|
||||
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())
|
||||
|
||||
#
|
||||
# Define some types that are used throughout this file.
|
||||
#
|
||||
Defaults = Dict[str, bool]
|
||||
FormatHelp = str
|
||||
GCodeOrNone = Optional[str]
|
||||
GCodeSections = List[Tuple[str, GCodeOrNone]]
|
||||
Parser = argparse.ArgumentParser
|
||||
ParserArgs = Union[None, str, argparse.Namespace]
|
||||
Postables = Union[List, List[Tuple[str, List]]]
|
||||
Section = Tuple[str, List]
|
||||
Sublist = List
|
||||
Units = str
|
||||
Values = Dict[str, Any]
|
||||
|
||||
#
|
||||
# The following variables need to be global variables
|
||||
# to keep the PathPostProcessor.load method happy:
|
||||
#
|
||||
# TOOLTIP
|
||||
# TOOLTIP_ARGS
|
||||
# UNITS
|
||||
#
|
||||
# The "argument_defaults", "arguments_visible", and the "values" hashes
|
||||
# need to be defined before the "init_shared_arguments" routine can be
|
||||
# called to create TOOLTIP_ARGS, so they also end up having to be globals.
|
||||
# TOOLTIP_ARGS can be defined, so they end up being global variables also.
|
||||
#
|
||||
TOOLTIP: str = """
|
||||
This is a postprocessor file for the Path workbench. It is used to
|
||||
take a pseudo-G-code fragment outputted by a Path object, and output
|
||||
real G-code suitable for a centroid 3 axis mill. This postprocessor, once placed
|
||||
in the appropriate PathScripts folder, can be used directly from inside
|
||||
FreeCAD, via the GUI importer or via python scripts with:
|
||||
|
||||
import refactored_centroid_post
|
||||
refactored_centroid_post.export(object,"/path/to/file.ncc","")
|
||||
"""
|
||||
#
|
||||
# Default to metric mode
|
||||
#
|
||||
UNITS: str = "G21"
|
||||
Visible = Dict[str, bool]
|
||||
|
||||
|
||||
def init_values(values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
# Use 4 digits for axis precision by default.
|
||||
#
|
||||
values["AXIS_PRECISION"] = 4
|
||||
values["DEFAULT_AXIS_PRECISION"] = 4
|
||||
values["DEFAULT_INCH_AXIS_PRECISION"] = 4
|
||||
#
|
||||
# Use ";" as the comment symbol
|
||||
#
|
||||
values["COMMENT_SYMBOL"] = ";"
|
||||
#
|
||||
# Use 1 digit for feed precision by default.
|
||||
#
|
||||
values["FEED_PRECISION"] = 1
|
||||
values["DEFAULT_FEED_PRECISION"] = 1
|
||||
values["DEFAULT_INCH_FEED_PRECISION"] = 1
|
||||
#
|
||||
# This value usually shows up in the post_op comment as "Finish operation:".
|
||||
# Change it to "End" to produce "End operation:".
|
||||
#
|
||||
values["FINISH_LABEL"] = "End"
|
||||
#
|
||||
# If this value is True, then a list of tool numbers
|
||||
# with their labels are output just before the preamble.
|
||||
#
|
||||
values["LIST_TOOLS_IN_PREAMBLE"] = True
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS,
|
||||
# but we are suppressing the usage message, so it doesn't show up after all.
|
||||
#
|
||||
values["MACHINE_NAME"] = "Centroid"
|
||||
#
|
||||
# This list controls the order of parameters in a line during output.
|
||||
# centroid doesn't want K properties on XY plane; Arcs need work.
|
||||
#
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"I",
|
||||
"J",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"H",
|
||||
]
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values["POSTAMBLE"] = """M99"""
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G53 G00 G17"""
|
||||
#
|
||||
# Output any messages.
|
||||
#
|
||||
values["REMOVE_MESSAGES"] = False
|
||||
#
|
||||
# Any commands in this value are output after the header but before the preamble,
|
||||
# then again after the TOOLRETURN but before the POSTAMBLE.
|
||||
#
|
||||
values["SAFETYBLOCK"] = """G90 G80 G40 G49"""
|
||||
#
|
||||
# Do not show the current machine units just before the PRE_OPERATION.
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
#
|
||||
# Do not show the current operation label just before the PRE_OPERATION.
|
||||
#
|
||||
values["SHOW_OPERATION_LABELS"] = False
|
||||
#
|
||||
# Do not output an M5 command to stop the spindle for tool changes.
|
||||
#
|
||||
values["STOP_SPINDLE_FOR_TOOL_CHANGE"] = False
|
||||
#
|
||||
# spindle off, height offset canceled, spindle retracted
|
||||
# (M25 is a centroid command to retract spindle)
|
||||
#
|
||||
values[
|
||||
"TOOLRETURN"
|
||||
] = """M5
|
||||
class Refactored_Centroid(PostProcessor):
|
||||
"""The Refactored Centroid post processor class."""
|
||||
|
||||
def __init__(self, job) -> None:
|
||||
super().__init__(
|
||||
job=job,
|
||||
tooltip=translate("CAM", "Refactored Centroid post processor"),
|
||||
tooltipargs=[""],
|
||||
units="Metric",
|
||||
)
|
||||
self.reinitialize()
|
||||
Path.Log.debug("Refactored Centroid post processor initialized.")
|
||||
|
||||
def reinitialize(self) -> None:
|
||||
"""Initialize or reinitialize the 'core' data structures for the postprocessor."""
|
||||
#
|
||||
# This is also used to reinitialize the data structures between tests.
|
||||
#
|
||||
self.values: Values = {}
|
||||
self.init_values(self.values)
|
||||
self.argument_defaults: Defaults = {}
|
||||
self.init_argument_defaults(self.argument_defaults)
|
||||
self.arguments_visible: Visible = {}
|
||||
self.init_arguments_visible(self.arguments_visible)
|
||||
self.parser: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.arguments_visible
|
||||
)
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
self.all_arguments_visible: Visible = {}
|
||||
for k in iter(self.arguments_visible):
|
||||
self.all_arguments_visible[k] = True
|
||||
self.all_visible: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.all_arguments_visible
|
||||
)
|
||||
|
||||
def init_values(self, values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
# Use 4 digits for axis precision by default.
|
||||
#
|
||||
values["AXIS_PRECISION"] = 4
|
||||
values["DEFAULT_AXIS_PRECISION"] = 4
|
||||
values["DEFAULT_INCH_AXIS_PRECISION"] = 4
|
||||
#
|
||||
# Use ";" as the comment symbol
|
||||
#
|
||||
values["COMMENT_SYMBOL"] = ";"
|
||||
#
|
||||
# Use 1 digit for feed precision by default.
|
||||
#
|
||||
values["FEED_PRECISION"] = 1
|
||||
values["DEFAULT_FEED_PRECISION"] = 1
|
||||
values["DEFAULT_INCH_FEED_PRECISION"] = 1
|
||||
#
|
||||
# This value usually shows up in the post_op comment as "Finish operation:".
|
||||
# Change it to "End" to produce "End operation:".
|
||||
#
|
||||
values["FINISH_LABEL"] = "End"
|
||||
#
|
||||
# If this value is True, then a list of tool numbers
|
||||
# with their labels are output just before the preamble.
|
||||
#
|
||||
values["LIST_TOOLS_IN_PREAMBLE"] = True
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS.
|
||||
#
|
||||
values["MACHINE_NAME"] = "Centroid"
|
||||
#
|
||||
# This list controls the order of parameters in a line during output.
|
||||
# centroid doesn't want K properties on XY plane; Arcs need work.
|
||||
#
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"I",
|
||||
"J",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"H",
|
||||
]
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values["POSTAMBLE"] = """M99"""
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G53 G00 G17"""
|
||||
#
|
||||
# Output any messages.
|
||||
#
|
||||
values["REMOVE_MESSAGES"] = False
|
||||
#
|
||||
# Any commands in this value are output after the header but before the preamble,
|
||||
# then again after the TOOLRETURN but before the POSTAMBLE.
|
||||
#
|
||||
values["SAFETYBLOCK"] = """G90 G80 G40 G49"""
|
||||
#
|
||||
# Do not show the current machine units just before the PRE_OPERATION.
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
#
|
||||
# Do not show the current operation label just before the PRE_OPERATION.
|
||||
#
|
||||
values["SHOW_OPERATION_LABELS"] = False
|
||||
#
|
||||
# Do not output an M5 command to stop the spindle for tool changes.
|
||||
#
|
||||
values["STOP_SPINDLE_FOR_TOOL_CHANGE"] = False
|
||||
#
|
||||
# spindle off, height offset canceled, spindle retracted
|
||||
# (M25 is a centroid command to retract spindle)
|
||||
#
|
||||
values[
|
||||
"TOOLRETURN"
|
||||
] = """M5
|
||||
M25
|
||||
G49 H0"""
|
||||
values["UNITS"] = UNITS
|
||||
#
|
||||
# Default to not outputting a G43 following tool changes
|
||||
#
|
||||
values["USE_TLO"] = False
|
||||
#
|
||||
# This was in the original centroid postprocessor file
|
||||
# but does not appear to be used anywhere.
|
||||
#
|
||||
# ZAXISRETURN = """G91 G28 X0 Z0 G90"""
|
||||
#
|
||||
values["UNITS"] = self._units
|
||||
#
|
||||
# Default to not outputting a G43 following tool changes
|
||||
#
|
||||
values["USE_TLO"] = False
|
||||
#
|
||||
# This was in the original centroid postprocessor file
|
||||
# but does not appear to be used anywhere.
|
||||
#
|
||||
# ZAXISRETURN = """G91 G28 X0 Z0 G90"""
|
||||
#
|
||||
|
||||
def init_argument_defaults(self, argument_defaults: Defaults) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
|
||||
def init_argument_defaults(argument_defaults: Dict[str, bool]) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
def init_arguments_visible(self, arguments_visible: Visible) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
arguments_visible["axis-modal"] = False
|
||||
arguments_visible["precision"] = False
|
||||
arguments_visible["tlo"] = False
|
||||
|
||||
def init_arguments(
|
||||
self,
|
||||
values: Values,
|
||||
argument_defaults: Defaults,
|
||||
arguments_visible: Visible,
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
_parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with other postprocessors here.
|
||||
#
|
||||
return _parser
|
||||
|
||||
def init_arguments_visible(arguments_visible: Dict[str, bool]) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
arguments_visible["axis-modal"] = False
|
||||
arguments_visible["precision"] = False
|
||||
arguments_visible["tlo"] = False
|
||||
def process_arguments(self) -> Tuple[bool, ParserArgs]:
|
||||
"""Process any arguments to the postprocessor."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
self.values, self.parser, self._job.PostProcessorArgs, self.all_visible, "-"
|
||||
)
|
||||
#
|
||||
# If the flag is True, then all of the arguments should be processed normally.
|
||||
#
|
||||
if flag:
|
||||
#
|
||||
# Process any additional arguments here.
|
||||
#
|
||||
#
|
||||
# Update any variables that might have been modified while processing the arguments.
|
||||
#
|
||||
self._units = self.values["UNITS"]
|
||||
#
|
||||
# If the flag is False, then args is either None (indicating an error while
|
||||
# processing the arguments) or a string containing the argument list formatted
|
||||
# for output. Either way the calling routine will need to handle the args value.
|
||||
#
|
||||
return (flag, args)
|
||||
|
||||
def init_arguments(
|
||||
values: Values,
|
||||
argument_defaults: Dict[str, bool],
|
||||
arguments_visible: Dict[str, bool],
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with all other
|
||||
# postprocessors here.
|
||||
#
|
||||
return parser
|
||||
def process_postables(self) -> GCodeSections:
|
||||
"""Postprocess the 'postables' in the job to g code sections."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
gcode: GCodeOrNone
|
||||
g_code_sections: GCodeSections
|
||||
partname: str
|
||||
postables: Postables
|
||||
section: Section
|
||||
sublist: Sublist
|
||||
|
||||
postables = self._buildPostList()
|
||||
|
||||
#
|
||||
# Creating global variables and using functions to modify them
|
||||
# is useful for being able to test things later.
|
||||
#
|
||||
global_values: Values = {}
|
||||
init_values(global_values)
|
||||
global_argument_defaults: Dict[str, bool] = {}
|
||||
init_argument_defaults(global_argument_defaults)
|
||||
global_arguments_visible: Dict[str, bool] = {}
|
||||
init_arguments_visible(global_arguments_visible)
|
||||
global_parser: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_arguments_visible
|
||||
)
|
||||
#
|
||||
# The TOOLTIP_ARGS value is created from the help information about the arguments.
|
||||
#
|
||||
TOOLTIP_ARGS: str = global_parser.format_help()
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
global_all_arguments_visible: Dict[str, bool] = {}
|
||||
k: str
|
||||
for k in iter(global_arguments_visible):
|
||||
global_all_arguments_visible[k] = True
|
||||
global_all_visible: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_all_arguments_visible
|
||||
)
|
||||
Path.Log.debug(f"postables count: {len(postables)}")
|
||||
|
||||
g_code_sections = []
|
||||
for _, section in enumerate(postables):
|
||||
partname, sublist = section
|
||||
gcode = PostUtilsExport.export_common(self.values, sublist, "-")
|
||||
g_code_sections.append((partname, gcode))
|
||||
|
||||
def export(objectslist, filename: str, argstring: str) -> str:
|
||||
"""Postprocess the objects in objectslist to filename."""
|
||||
args: Union[str, argparse.Namespace]
|
||||
flag: bool
|
||||
return g_code_sections
|
||||
|
||||
global UNITS # pylint: disable=global-statement
|
||||
def export(self) -> GCodeSections:
|
||||
"""Process the parser arguments, then postprocess the 'postables'."""
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
# print(parser.format_help())
|
||||
Path.Log.debug("Exporting the job")
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
global_values, global_parser, argstring, global_all_visible, filename
|
||||
)
|
||||
if not flag:
|
||||
return args # type: ignore
|
||||
#
|
||||
# Process any additional arguments here
|
||||
#
|
||||
(flag, args) = self.process_arguments()
|
||||
#
|
||||
# If the flag is True, then continue postprocessing the 'postables'
|
||||
#
|
||||
if flag:
|
||||
return self.process_postables()
|
||||
#
|
||||
# The flag is False meaning something unusual happened.
|
||||
#
|
||||
# If args is None then there was an error during argument processing.
|
||||
#
|
||||
if args is None:
|
||||
return None
|
||||
#
|
||||
# Otherwise args will contain the argument list formatted for output
|
||||
# instead of the "usual" gcode.
|
||||
#
|
||||
return [("allitems", args)] # type: ignore
|
||||
|
||||
#
|
||||
# Update the global variables that might have been modified
|
||||
# while processing the arguments.
|
||||
#
|
||||
UNITS = global_values["UNITS"]
|
||||
@property
|
||||
def tooltip(self):
|
||||
tooltip: str = """
|
||||
This is a postprocessor file for the CAM workbench.
|
||||
It is used to take a pseudo-gcode fragment from a CAM object
|
||||
and output 'real' GCode suitable for a centroid 3 axis mill.
|
||||
"""
|
||||
return tooltip
|
||||
|
||||
return PostUtilsExport.export_common(global_values, objectslist, filename)
|
||||
@property
|
||||
def tooltipArgs(self) -> FormatHelp:
|
||||
return self.parser.format_help()
|
||||
|
||||
@property
|
||||
def units(self) -> Units:
|
||||
return self._units
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2014 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2018, 2019 Gauthier Briere *
|
||||
# * Copyright (c) 2019, 2020 Schildkroet *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2024 Ondsel <development@ondsel.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
@@ -25,226 +23,299 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
|
||||
import argparse
|
||||
|
||||
from typing import Any, Dict, Union
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from Path.Post.Processor import PostProcessor
|
||||
import Path.Post.UtilsArguments as PostUtilsArguments
|
||||
import Path.Post.UtilsExport as PostUtilsExport
|
||||
|
||||
# Define some types that are used throughout this file
|
||||
import Path
|
||||
import FreeCAD
|
||||
|
||||
translate = FreeCAD.Qt.translate
|
||||
|
||||
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())
|
||||
|
||||
#
|
||||
# Define some types that are used throughout this file.
|
||||
#
|
||||
Defaults = Dict[str, bool]
|
||||
FormatHelp = str
|
||||
GCodeOrNone = Optional[str]
|
||||
GCodeSections = List[Tuple[str, GCodeOrNone]]
|
||||
Parser = argparse.ArgumentParser
|
||||
ParserArgs = Union[None, str, argparse.Namespace]
|
||||
Postables = Union[List, List[Tuple[str, List]]]
|
||||
Section = Tuple[str, List]
|
||||
Sublist = List
|
||||
Units = str
|
||||
Values = Dict[str, Any]
|
||||
|
||||
#
|
||||
# The following variables need to be global variables
|
||||
# to keep the PathPostProcessor.load method happy:
|
||||
#
|
||||
# TOOLTIP
|
||||
# TOOLTIP_ARGS
|
||||
# UNITS
|
||||
#
|
||||
# The "argument_defaults", "arguments_visible", and the "values" hashes
|
||||
# need to be defined before the "init_shared_arguments" routine can be
|
||||
# called to create TOOLTIP_ARGS, so they also end up having to be globals.
|
||||
#
|
||||
TOOLTIP: str = """
|
||||
Generate g-code from a Path that is compatible with the grbl controller:
|
||||
|
||||
import refactored_grbl_post
|
||||
refactored_grbl_post.export(object, "/path/to/file.ncc")
|
||||
"""
|
||||
#
|
||||
# Default to metric mode
|
||||
#
|
||||
UNITS: str = "G21"
|
||||
Visible = Dict[str, bool]
|
||||
|
||||
|
||||
def init_values(values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
#
|
||||
# If this is set to True, then commands that are placed in
|
||||
# comments that look like (MC_RUN_COMMAND: blah) will be output.
|
||||
#
|
||||
values["ENABLE_MACHINE_SPECIFIC_COMMANDS"] = True
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS,
|
||||
# but we are suppressing the usage message, so it doesn't show up after all.
|
||||
#
|
||||
values["MACHINE_NAME"] = "Grbl"
|
||||
#
|
||||
# Default to outputting Path labels at the beginning of each Path.
|
||||
#
|
||||
values["OUTPUT_PATH_LABELS"] = True
|
||||
#
|
||||
# Default to not outputting M6 tool changes (comment it) as grbl
|
||||
# currently does not handle it
|
||||
#
|
||||
values["OUTPUT_TOOL_CHANGE"] = False
|
||||
#
|
||||
# The order of the parameters.
|
||||
# Arcs may only work on the XY plane (this needs to be verified).
|
||||
#
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"C",
|
||||
"U",
|
||||
"V",
|
||||
"W",
|
||||
"I",
|
||||
"J",
|
||||
"K",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"P",
|
||||
]
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values[
|
||||
"POSTAMBLE"
|
||||
] = """M5
|
||||
class Refactored_Grbl(PostProcessor):
|
||||
"""The Refactored Grbl post processor class."""
|
||||
|
||||
def __init__(self, job) -> None:
|
||||
super().__init__(
|
||||
job=job,
|
||||
tooltip=translate("CAM", "Refactored Grbl post processor"),
|
||||
tooltipargs=[""],
|
||||
units="Metric",
|
||||
)
|
||||
self.reinitialize()
|
||||
Path.Log.debug("Refactored Grbl post processor initialized.")
|
||||
|
||||
def reinitialize(self) -> None:
|
||||
"""Initialize or reinitialize the 'core' data structures for the postprocessor."""
|
||||
#
|
||||
# This is also used to reinitialize the data structures between tests.
|
||||
#
|
||||
self.values: Values = {}
|
||||
self.init_values(self.values)
|
||||
self.argument_defaults: Defaults = {}
|
||||
self.init_argument_defaults(self.argument_defaults)
|
||||
self.arguments_visible: Visible = {}
|
||||
self.init_arguments_visible(self.arguments_visible)
|
||||
self.parser: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.arguments_visible
|
||||
)
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
self.all_arguments_visible: Visible = {}
|
||||
for k in iter(self.arguments_visible):
|
||||
self.all_arguments_visible[k] = True
|
||||
self.all_visible: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.all_arguments_visible
|
||||
)
|
||||
|
||||
def init_values(self, values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
#
|
||||
# If this is set to True, then commands that are placed in
|
||||
# comments that look like (MC_RUN_COMMAND: blah) will be output.
|
||||
#
|
||||
values["ENABLE_MACHINE_SPECIFIC_COMMANDS"] = True
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS.
|
||||
#
|
||||
values["MACHINE_NAME"] = "Grbl"
|
||||
#
|
||||
# Default to outputting Path labels at the beginning of each Path.
|
||||
#
|
||||
values["OUTPUT_PATH_LABELS"] = True
|
||||
#
|
||||
# Default to not outputting M6 tool changes (comment it) as grbl
|
||||
# currently does not handle it.
|
||||
#
|
||||
values["OUTPUT_TOOL_CHANGE"] = False
|
||||
#
|
||||
# The order of the parameters.
|
||||
# Arcs may only work on the XY plane (this needs to be verified).
|
||||
#
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"C",
|
||||
"U",
|
||||
"V",
|
||||
"W",
|
||||
"I",
|
||||
"J",
|
||||
"K",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"P",
|
||||
]
|
||||
#
|
||||
# Any commands in this value will be output as the last commands in the G-code file.
|
||||
#
|
||||
values[
|
||||
"POSTAMBLE"
|
||||
] = """M5
|
||||
G17 G90
|
||||
M2"""
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G17 G90"""
|
||||
#
|
||||
# Do not show the current machine units just before the PRE_OPERATION.
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
values["UNITS"] = UNITS
|
||||
#
|
||||
# Default to not outputting a G43 following tool changes
|
||||
#
|
||||
values["USE_TLO"] = False
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G17 G90"""
|
||||
#
|
||||
# Do not show the current machine units just before the PRE_OPERATION.
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
values["UNITS"] = self._units
|
||||
#
|
||||
# Default to not outputting a G43 following tool changes
|
||||
#
|
||||
values["USE_TLO"] = False
|
||||
|
||||
def init_argument_defaults(self, argument_defaults: Defaults) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
argument_defaults["tlo"] = False
|
||||
argument_defaults["tool_change"] = False
|
||||
|
||||
def init_argument_defaults(argument_defaults: Dict[str, bool]) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
argument_defaults["tlo"] = False
|
||||
argument_defaults["tool_change"] = False
|
||||
def init_arguments_visible(self, arguments_visible: Visible) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
arguments_visible["bcnc"] = True
|
||||
arguments_visible["axis-modal"] = False
|
||||
arguments_visible["return-to"] = True
|
||||
arguments_visible["tlo"] = False
|
||||
arguments_visible["tool_change"] = True
|
||||
arguments_visible["translate_drill"] = True
|
||||
arguments_visible["wait-for-spindle"] = True
|
||||
|
||||
def init_arguments(
|
||||
self,
|
||||
values: Values,
|
||||
argument_defaults: Defaults,
|
||||
arguments_visible: Visible,
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
_parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with other postprocessors here.
|
||||
#
|
||||
return _parser
|
||||
|
||||
def init_arguments_visible(arguments_visible: Dict[str, bool]) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
arguments_visible["bcnc"] = True
|
||||
arguments_visible["axis-modal"] = False
|
||||
arguments_visible["return-to"] = True
|
||||
arguments_visible["tlo"] = False
|
||||
arguments_visible["tool_change"] = True
|
||||
arguments_visible["translate_drill"] = True
|
||||
arguments_visible["wait-for-spindle"] = True
|
||||
def process_arguments(self) -> Tuple[bool, ParserArgs]:
|
||||
"""Process any arguments to the postprocessor."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
self.values, self.parser, self._job.PostProcessorArgs, self.all_visible, "-"
|
||||
)
|
||||
#
|
||||
# If the flag is True, then all of the arguments should be processed normally.
|
||||
#
|
||||
if flag:
|
||||
#
|
||||
# Process any additional arguments here.
|
||||
#
|
||||
#
|
||||
# Update any variables that might have been modified while processing the arguments.
|
||||
#
|
||||
self._units = self.values["UNITS"]
|
||||
#
|
||||
# If the flag is False, then args is either None (indicating an error while
|
||||
# processing the arguments) or a string containing the argument list formatted
|
||||
# for output. Either way the calling routine will need to handle the args value.
|
||||
#
|
||||
return (flag, args)
|
||||
|
||||
def init_arguments(
|
||||
values: Values,
|
||||
argument_defaults: Dict[str, bool],
|
||||
arguments_visible: Dict[str, bool],
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with all other
|
||||
# postprocessors here.
|
||||
#
|
||||
return parser
|
||||
def process_postables(self) -> GCodeSections:
|
||||
"""Postprocess the 'postables' in the job to g code sections."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
gcode: GCodeOrNone
|
||||
g_code_sections: GCodeSections
|
||||
partname: str
|
||||
postables: Postables
|
||||
section: Section
|
||||
sublist: Sublist
|
||||
|
||||
postables = self._buildPostList()
|
||||
|
||||
#
|
||||
# Creating global variables and using functions to modify them
|
||||
# is useful for being able to test things later.
|
||||
#
|
||||
global_values: Values = {}
|
||||
init_values(global_values)
|
||||
global_argument_defaults: Dict[str, bool] = {}
|
||||
init_argument_defaults(global_argument_defaults)
|
||||
global_arguments_visible: Dict[str, bool] = {}
|
||||
init_arguments_visible(global_arguments_visible)
|
||||
global_parser: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_arguments_visible
|
||||
)
|
||||
#
|
||||
# The TOOLTIP_ARGS value is created from the help information about the arguments.
|
||||
#
|
||||
TOOLTIP_ARGS: str = global_parser.format_help()
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
global_all_arguments_visible: Dict[str, bool] = {}
|
||||
k: str
|
||||
for k in iter(global_arguments_visible):
|
||||
global_all_arguments_visible[k] = True
|
||||
global_all_visible: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_all_arguments_visible
|
||||
)
|
||||
Path.Log.debug(f"postables count: {len(postables)}")
|
||||
|
||||
g_code_sections = []
|
||||
for _, section in enumerate(postables):
|
||||
partname, sublist = section
|
||||
gcode = PostUtilsExport.export_common(self.values, sublist, "-")
|
||||
g_code_sections.append((partname, gcode))
|
||||
|
||||
def export(objectslist, filename, argstring) -> str:
|
||||
"""Postprocess the objects in objectslist to filename."""
|
||||
args: Union[str, argparse.Namespace]
|
||||
flag: bool
|
||||
return g_code_sections
|
||||
|
||||
global UNITS # pylint: disable=global-statement
|
||||
def export(self) -> Union[None, GCodeSections]:
|
||||
"""Process the parser arguments, then postprocess the 'postables'."""
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
# print(parser.format_help())
|
||||
Path.Log.debug("Exporting the job")
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
global_values, global_parser, argstring, global_all_visible, filename
|
||||
)
|
||||
if not flag:
|
||||
return args # type: ignore
|
||||
#
|
||||
# Process any additional arguments here
|
||||
#
|
||||
(flag, args) = self.process_arguments()
|
||||
#
|
||||
# If the flag is True, then continue postprocessing the 'postables'.
|
||||
#
|
||||
if flag:
|
||||
return self.process_postables()
|
||||
#
|
||||
# The flag is False meaning something unusual happened.
|
||||
#
|
||||
# If args is None then there was an error during argument processing.
|
||||
#
|
||||
if args is None:
|
||||
return None
|
||||
#
|
||||
# Otherwise args will contain the argument list formatted for output
|
||||
# instead of the "usual" gcode.
|
||||
#
|
||||
return [("allitems", args)] # type: ignore
|
||||
|
||||
#
|
||||
# Update the global variables that might have been modified
|
||||
# while processing the arguments.
|
||||
#
|
||||
UNITS = global_values["UNITS"]
|
||||
@property
|
||||
def tooltip(self):
|
||||
tooltip: str = """
|
||||
This is a postprocessor file for the CAM workbench.
|
||||
It is used to take a pseudo-gcode fragment from a CAM object
|
||||
and output 'real' GCode suitable for a Grbl 3 axis mill.
|
||||
"""
|
||||
return tooltip
|
||||
|
||||
return PostUtilsExport.export_common(global_values, objectslist, filename)
|
||||
@property
|
||||
def tooltipArgs(self) -> FormatHelp:
|
||||
return self.parser.format_help()
|
||||
|
||||
@property
|
||||
def units(self) -> Units:
|
||||
return self._units
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2014 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2024 Ondsel <development@ondsel.com> *
|
||||
# * Copyright (c) 2024 Carl Slater <CandLWorkshopLLC@gmail.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
@@ -22,7 +23,6 @@
|
||||
# * USA *
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
# ***************************************************************************
|
||||
# * Note: refactored_masso_g3_Post.py is a modified clone of this file *
|
||||
# * any changes to this file should be applied to the other *
|
||||
@@ -31,191 +31,267 @@
|
||||
|
||||
import argparse
|
||||
|
||||
from typing import Any, Dict, Union
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from Path.Post.Processor import PostProcessor
|
||||
import Path.Post.UtilsArguments as PostUtilsArguments
|
||||
import Path.Post.UtilsExport as PostUtilsExport
|
||||
|
||||
# Define some types that are used throughout this file
|
||||
import Path
|
||||
import FreeCAD
|
||||
|
||||
translate = FreeCAD.Qt.translate
|
||||
|
||||
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())
|
||||
|
||||
#
|
||||
# Define some types that are used throughout this file.
|
||||
#
|
||||
Defaults = Dict[str, bool]
|
||||
FormatHelp = str
|
||||
GCodeOrNone = Optional[str]
|
||||
GCodeSections = List[Tuple[str, GCodeOrNone]]
|
||||
Parser = argparse.ArgumentParser
|
||||
ParserArgs = Union[None, str, argparse.Namespace]
|
||||
Postables = Union[List, List[Tuple[str, List]]]
|
||||
Section = Tuple[str, List]
|
||||
Sublist = List
|
||||
Units = str
|
||||
Values = Dict[str, Any]
|
||||
|
||||
#
|
||||
# The following variables need to be global variables
|
||||
# to keep the PathPostProcessor.load method happy:
|
||||
#
|
||||
# TOOLTIP
|
||||
# TOOLTIP_ARGS
|
||||
# UNITS
|
||||
#
|
||||
# The "argument_defaults", "arguments_visible", and the "values" hashes
|
||||
# need to be defined before the "init_shared_arguments" routine can be
|
||||
# called to create TOOLTIP_ARGS, so they also end up having to be globals.
|
||||
#
|
||||
TOOLTIP: str = """This is a postprocessor file for the Path workbench. It is used to
|
||||
take a pseudo-gcode fragment outputted by a Path object, and output
|
||||
real GCode suitable for a linuxcnc 3 axis mill. This postprocessor, once placed
|
||||
in the appropriate PathScripts folder, can be used directly from inside
|
||||
FreeCAD, via the GUI importer or via python scripts with:
|
||||
|
||||
import refactored_linuxcnc_post
|
||||
refactored_linuxcnc_post.export(object,"/path/to/file.ncc","")
|
||||
"""
|
||||
#
|
||||
# Default to metric mode
|
||||
#
|
||||
UNITS: str = "G21"
|
||||
Visible = Dict[str, bool]
|
||||
|
||||
|
||||
def init_values(values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
values["ENABLE_COOLANT"] = True
|
||||
# the order of parameters
|
||||
# linuxcnc doesn't want K properties on XY plane; Arcs need work.
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"C",
|
||||
"I",
|
||||
"J",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"H",
|
||||
"D",
|
||||
"P",
|
||||
]
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS,
|
||||
# but we are suppressing the usage message, so it doesn't show up after all.
|
||||
#
|
||||
values["MACHINE_NAME"] = "LinuxCNC"
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values[
|
||||
"POSTAMBLE"
|
||||
] = """M05
|
||||
class Refactored_Linuxcnc(PostProcessor):
|
||||
"""The Refactored LinuxCNC post processor class."""
|
||||
|
||||
def __init__(self, job) -> None:
|
||||
super().__init__(
|
||||
job=job,
|
||||
tooltip=translate("CAM", "Refactored LinuxCNC post processor"),
|
||||
tooltipargs=[""],
|
||||
units="Metric",
|
||||
)
|
||||
self.reinitialize()
|
||||
Path.Log.debug("Refactored LinuxCNC post processor initialized.")
|
||||
|
||||
def reinitialize(self) -> None:
|
||||
"""Initialize or reinitialize the 'core' data structures for the postprocessor."""
|
||||
#
|
||||
# This is also used to reinitialize the data structures between tests.
|
||||
#
|
||||
self.values: Values = {}
|
||||
self.init_values(self.values)
|
||||
self.argument_defaults: Defaults = {}
|
||||
self.init_argument_defaults(self.argument_defaults)
|
||||
self.arguments_visible: Visible = {}
|
||||
self.init_arguments_visible(self.arguments_visible)
|
||||
self.parser: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.arguments_visible
|
||||
)
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
self.all_arguments_visible: Visible = {}
|
||||
for k in iter(self.arguments_visible):
|
||||
self.all_arguments_visible[k] = True
|
||||
self.all_visible: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.all_arguments_visible
|
||||
)
|
||||
|
||||
def init_values(self, values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
values["ENABLE_COOLANT"] = True
|
||||
#
|
||||
# The order of parameters.
|
||||
#
|
||||
# linuxcnc doesn't want K properties on XY plane; Arcs need work.
|
||||
#
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"C",
|
||||
"I",
|
||||
"J",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"H",
|
||||
"D",
|
||||
"P",
|
||||
]
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
#
|
||||
values["MACHINE_NAME"] = "Refactored_LinuxCNC"
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values[
|
||||
"POSTAMBLE"
|
||||
] = """M05
|
||||
G17 G54 G90 G80 G40
|
||||
M2"""
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G17 G54 G40 G49 G80 G90"""
|
||||
values["UNITS"] = UNITS
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G17 G54 G40 G49 G80 G90"""
|
||||
values["UNITS"] = self._units
|
||||
|
||||
def init_argument_defaults(self, argument_defaults: Defaults) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
|
||||
def init_argument_defaults(argument_defaults: Dict[str, bool]) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
def init_arguments_visible(self, arguments_visible: Visible) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
|
||||
def init_arguments(
|
||||
self,
|
||||
values: Values,
|
||||
argument_defaults: Defaults,
|
||||
arguments_visible: Visible,
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
_parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with all other
|
||||
# postprocessors here.
|
||||
#
|
||||
return _parser
|
||||
|
||||
def init_arguments_visible(arguments_visible: Dict[str, bool]) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
def process_arguments(self) -> Tuple[bool, ParserArgs]:
|
||||
"""Process any arguments to the postprocessor."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor
|
||||
#
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
self.values, self.parser, self._job.PostProcessorArgs, self.all_visible, "-"
|
||||
)
|
||||
#
|
||||
# If the flag is True, then all of the arguments should be processed normally.
|
||||
#
|
||||
if flag:
|
||||
#
|
||||
# Process any additional arguments here.
|
||||
#
|
||||
#
|
||||
# Update any variables that might have been modified while processing the arguments.
|
||||
#
|
||||
self._units = self.values["UNITS"]
|
||||
#
|
||||
# If the flag is False, then args is either None (indicating an error while
|
||||
# processing the arguments) or a string containing the argument list formatted
|
||||
# for output. Either way the calling routine will need to handle the args value.
|
||||
#
|
||||
return (flag, args)
|
||||
|
||||
def init_arguments(
|
||||
values: Values,
|
||||
argument_defaults: Dict[str, bool],
|
||||
arguments_visible: Dict[str, bool],
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with all other
|
||||
# postprocessors here.
|
||||
#
|
||||
return parser
|
||||
def process_postables(self) -> GCodeSections:
|
||||
"""Postprocess the 'postables' in the job to g code sections."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
gcode: GCodeOrNone
|
||||
g_code_sections: GCodeSections
|
||||
partname: str
|
||||
postables: Postables
|
||||
section: Section
|
||||
sublist: Sublist
|
||||
|
||||
postables = self._buildPostList()
|
||||
|
||||
#
|
||||
# Creating global variables and using functions to modify them
|
||||
# is useful for being able to test things later.
|
||||
#
|
||||
global_values: Values = {}
|
||||
init_values(global_values)
|
||||
global_argument_defaults: Dict[str, bool] = {}
|
||||
init_argument_defaults(global_argument_defaults)
|
||||
global_arguments_visible: Dict[str, bool] = {}
|
||||
init_arguments_visible(global_arguments_visible)
|
||||
global_parser: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_arguments_visible
|
||||
)
|
||||
#
|
||||
# The TOOLTIP_ARGS value is created from the help information about the arguments.
|
||||
#
|
||||
TOOLTIP_ARGS: str = global_parser.format_help()
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
global_all_arguments_visible: Dict[str, bool] = {}
|
||||
for k in iter(global_arguments_visible):
|
||||
global_all_arguments_visible[k] = True
|
||||
global_all_visible: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_all_arguments_visible
|
||||
)
|
||||
Path.Log.debug(f"postables count: {len(postables)}")
|
||||
|
||||
g_code_sections = []
|
||||
for _, section in enumerate(postables):
|
||||
partname, sublist = section
|
||||
gcode = PostUtilsExport.export_common(self.values, sublist, "-")
|
||||
g_code_sections.append((partname, gcode))
|
||||
|
||||
def export(objectslist, filename: str, argstring: str) -> str:
|
||||
"""Postprocess the objects in objectslist to filename."""
|
||||
args: Union[str, argparse.Namespace]
|
||||
flag: bool
|
||||
return g_code_sections
|
||||
|
||||
global UNITS # pylint: disable=global-statement
|
||||
def export(self) -> GCodeSections:
|
||||
"""Process the parser arguments, then postprocess the 'postables'."""
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
# print(parser.format_help())
|
||||
Path.Log.debug("Exporting the job")
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
global_values, global_parser, argstring, global_all_visible, filename
|
||||
)
|
||||
if not flag:
|
||||
return args # type: ignore
|
||||
#
|
||||
# Process any additional arguments here
|
||||
#
|
||||
(flag, args) = self.process_arguments()
|
||||
#
|
||||
# If the flag is True, then continue postprocessing the 'postables'
|
||||
#
|
||||
if flag:
|
||||
return self.process_postables()
|
||||
#
|
||||
# The flag is False meaning something unusual happened.
|
||||
#
|
||||
# If args is None then there was an error during argument processing.
|
||||
#
|
||||
if args is None:
|
||||
return None
|
||||
#
|
||||
# Otherwise args will contain the argument list formatted for output
|
||||
# instead of the "usual" gcode.
|
||||
#
|
||||
return [("allitems", args)] # type: ignore
|
||||
|
||||
#
|
||||
# Update the global variables that might have been modified
|
||||
# while processing the arguments.
|
||||
#
|
||||
UNITS = global_values["UNITS"]
|
||||
@property
|
||||
def tooltip(self):
|
||||
tooltip: str = """
|
||||
This is a postprocessor file for the CAM workbench.
|
||||
It is used to take a pseudo-gcode fragment from a CAM object
|
||||
and output 'real' GCode suitable for a linuxcnc 3 axis mill.
|
||||
"""
|
||||
return tooltip
|
||||
|
||||
return PostUtilsExport.export_common(global_values, objectslist, filename)
|
||||
@property
|
||||
def tooltipArgs(self) -> FormatHelp:
|
||||
return self.parser.format_help()
|
||||
|
||||
@property
|
||||
def units(self) -> Units:
|
||||
return self._units
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2014 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2024 Ondsel <development@ondsel.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
@@ -20,205 +21,284 @@
|
||||
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# * USA *
|
||||
# * *
|
||||
# ***************************************************************************/
|
||||
|
||||
# ***************************************************************************
|
||||
|
||||
import argparse
|
||||
|
||||
from typing import Any, Dict, Union
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from Path.Post.Processor import PostProcessor
|
||||
import Path.Post.UtilsArguments as PostUtilsArguments
|
||||
import Path.Post.UtilsExport as PostUtilsExport
|
||||
|
||||
# Define some types that are used throughout this file
|
||||
import Path
|
||||
import FreeCAD
|
||||
|
||||
translate = FreeCAD.Qt.translate
|
||||
|
||||
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())
|
||||
|
||||
#
|
||||
# Define some types that are used throughout this file.
|
||||
#
|
||||
Defaults = Dict[str, bool]
|
||||
FormatHelp = str
|
||||
GCodeOrNone = Optional[str]
|
||||
GCodeSections = List[Tuple[str, GCodeOrNone]]
|
||||
Parser = argparse.ArgumentParser
|
||||
ParserArgs = Union[None, str, argparse.Namespace]
|
||||
Postables = Union[List, List[Tuple[str, List]]]
|
||||
Section = Tuple[str, List]
|
||||
Sublist = List
|
||||
Units = str
|
||||
Values = Dict[str, Any]
|
||||
|
||||
#
|
||||
# The following variables need to be global variables
|
||||
# to keep the PathPostProcessor.load method happy:
|
||||
#
|
||||
# TOOLTIP
|
||||
# TOOLTIP_ARGS
|
||||
# UNITS
|
||||
#
|
||||
# The "argument_defaults", "arguments_visible", and the "values" hashes
|
||||
# need to be defined before the "init_shared_arguments" routine can be
|
||||
# called to create TOOLTIP_ARGS, so they also end up having to be globals.
|
||||
#
|
||||
TOOLTIP: str = """
|
||||
This is a postprocessor file for the Path workbench. It is used to
|
||||
take a pseudo-G-code fragment outputted by a Path object, and output
|
||||
real G-code suitable for a mach3_4 3 axis mill. This postprocessor, once placed
|
||||
in the appropriate PathScripts folder, can be used directly from inside
|
||||
FreeCAD, via the GUI importer or via python scripts with:
|
||||
|
||||
import mach3_mach4_post
|
||||
mach3_mach4_post.export(object,"/path/to/file.ncc","")
|
||||
"""
|
||||
#
|
||||
# Default to metric mode
|
||||
#
|
||||
UNITS: str = "G21"
|
||||
Visible = Dict[str, bool]
|
||||
|
||||
|
||||
def init_values(values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
values["ENABLE_COOLANT"] = True
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS,
|
||||
# but we are suppressing the usage message, so it doesn't show up after all.
|
||||
#
|
||||
values["MACHINE_NAME"] = "mach3_4"
|
||||
# Enable special processing for operations with "Adaptive" in the name
|
||||
values["OUTPUT_ADAPTIVE"] = True
|
||||
# Output the machine name for mach3_mach4 instead of the machine units alone.
|
||||
values["OUTPUT_MACHINE_NAME"] = True
|
||||
# the order of parameters
|
||||
# mach3_mach4 doesn't want K properties on XY plane; Arcs need work.
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"C",
|
||||
"I",
|
||||
"J",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"H",
|
||||
"D",
|
||||
"P",
|
||||
]
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values[
|
||||
"POSTAMBLE"
|
||||
] = """M05
|
||||
class Refactored_Mach3_Mach4(PostProcessor):
|
||||
"""The Refactored Mach3_Mach4 post processor class."""
|
||||
|
||||
def __init__(self, job) -> None:
|
||||
super().__init__(
|
||||
job=job,
|
||||
tooltip=translate("CAM", "Refactored Mach3_Mach4 post processor"),
|
||||
tooltipargs=[""],
|
||||
units="Metric",
|
||||
)
|
||||
self.reinitialize()
|
||||
Path.Log.debug("Refactored Mach3_Mach4 post processor initialized.")
|
||||
|
||||
def reinitialize(self) -> None:
|
||||
"""Initialize or reinitialize the 'core' data structures for the postprocessor."""
|
||||
#
|
||||
# This is also used to reinitialize the data structures between tests.
|
||||
#
|
||||
self.values: Values = {}
|
||||
self.init_values(self.values)
|
||||
self.argument_defaults: Defaults = {}
|
||||
self.init_argument_defaults(self.argument_defaults)
|
||||
self.arguments_visible: Visible = {}
|
||||
self.init_arguments_visible(self.arguments_visible)
|
||||
self.parser: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.arguments_visible
|
||||
)
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
self.all_arguments_visible: Visible = {}
|
||||
for k in iter(self.arguments_visible):
|
||||
self.all_arguments_visible[k] = True
|
||||
self.all_visible: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.all_arguments_visible
|
||||
)
|
||||
|
||||
def init_values(self, values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
values["ENABLE_COOLANT"] = True
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS.
|
||||
#
|
||||
values["MACHINE_NAME"] = "mach3_4"
|
||||
#
|
||||
# Enable special processing for operations with "Adaptive" in the name.
|
||||
#
|
||||
values["OUTPUT_ADAPTIVE"] = True
|
||||
#
|
||||
# Output the machine name for mach3_mach4 instead of the machine units alone.
|
||||
#
|
||||
values["OUTPUT_MACHINE_NAME"] = True
|
||||
#
|
||||
# The order of parameters.
|
||||
#
|
||||
# mach3_mach4 doesn't want K properties on XY plane; Arcs need work.
|
||||
#
|
||||
values["PARAMETER_ORDER"] = [
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"A",
|
||||
"B",
|
||||
"C",
|
||||
"I",
|
||||
"J",
|
||||
"F",
|
||||
"S",
|
||||
"T",
|
||||
"Q",
|
||||
"R",
|
||||
"L",
|
||||
"H",
|
||||
"D",
|
||||
"P",
|
||||
]
|
||||
#
|
||||
# Any commands in this value will be output as the last commands
|
||||
# in the G-code file.
|
||||
#
|
||||
values[
|
||||
"POSTAMBLE"
|
||||
] = """M05
|
||||
G17 G54 G90 G80 G40
|
||||
M2"""
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G17 G54 G40 G49 G80 G90"""
|
||||
# Output the machine name for mach3_mach4 instead of the machine units alone.
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
values["UNITS"] = UNITS
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Any commands in this value will be output after the header and
|
||||
# safety block at the beginning of the G-code file.
|
||||
#
|
||||
values["PREAMBLE"] = """G17 G54 G40 G49 G80 G90"""
|
||||
#
|
||||
# Output the machine name for mach3_mach4 instead of the machine units alone.
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
values["UNITS"] = self._units
|
||||
|
||||
def init_argument_defaults(self, argument_defaults: Defaults) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
|
||||
def init_argument_defaults(argument_defaults: Dict[str, bool]) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
def init_arguments_visible(self, arguments_visible: Visible) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
arguments_visible["axis-modal"] = True
|
||||
|
||||
def init_arguments(
|
||||
self,
|
||||
values: Values,
|
||||
argument_defaults: Defaults,
|
||||
arguments_visible: Visible,
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
_parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with other postprocessors here.
|
||||
#
|
||||
return _parser
|
||||
|
||||
def init_arguments_visible(arguments_visible: Dict[str, bool]) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
arguments_visible["axis-modal"] = True
|
||||
def process_arguments(self) -> Tuple[bool, ParserArgs]:
|
||||
"""Process any arguments to the postprocessor."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
self.values, self.parser, self._job.PostProcessorArgs, self.all_visible, "-"
|
||||
)
|
||||
#
|
||||
# If the flag is True, then all of the arguments should be processed normally.
|
||||
#
|
||||
if flag:
|
||||
#
|
||||
# Process any additional arguments here.
|
||||
#
|
||||
#
|
||||
# Update any variables that might have been modified while processing the arguments.
|
||||
#
|
||||
self._units = self.values["UNITS"]
|
||||
#
|
||||
# If the flag is False, then args is either None (indicating an error while
|
||||
# processing the arguments) or a string containing the argument list formatted
|
||||
# for output. Either way the calling routine will need to handle the args value.
|
||||
#
|
||||
return (flag, args)
|
||||
|
||||
def init_arguments(
|
||||
values: Values,
|
||||
argument_defaults: Dict[str, bool],
|
||||
arguments_visible: Dict[str, bool],
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with all other
|
||||
# postprocessors here.
|
||||
#
|
||||
return parser
|
||||
def process_postables(self) -> GCodeSections:
|
||||
"""Postprocess the 'postables' in the job to g code sections."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
gcode: GCodeOrNone
|
||||
g_code_sections: GCodeSections
|
||||
partname: str
|
||||
postables: Postables
|
||||
section: Section
|
||||
sublist: Sublist
|
||||
|
||||
postables = self._buildPostList()
|
||||
|
||||
#
|
||||
# Creating global variables and using functions to modify them
|
||||
# is useful for being able to test things later.
|
||||
#
|
||||
global_values: Values = {}
|
||||
init_values(global_values)
|
||||
global_argument_defaults: Dict[str, bool] = {}
|
||||
init_argument_defaults(global_argument_defaults)
|
||||
global_arguments_visible: Dict[str, bool] = {}
|
||||
init_arguments_visible(global_arguments_visible)
|
||||
global_parser: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_arguments_visible
|
||||
)
|
||||
#
|
||||
# The TOOLTIP_ARGS value is created from the help information about the arguments.
|
||||
#
|
||||
TOOLTIP_ARGS: str = global_parser.format_help()
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
global_all_arguments_visible: Dict[str, bool] = {}
|
||||
k: str
|
||||
for k in iter(global_arguments_visible):
|
||||
global_all_arguments_visible[k] = True
|
||||
global_all_visible: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_all_arguments_visible
|
||||
)
|
||||
Path.Log.debug(f"postables count: {len(postables)}")
|
||||
|
||||
g_code_sections = []
|
||||
for _, section in enumerate(postables):
|
||||
partname, sublist = section
|
||||
gcode = PostUtilsExport.export_common(self.values, sublist, "-")
|
||||
g_code_sections.append((partname, gcode))
|
||||
|
||||
def export(objectslist, filename, argstring) -> str:
|
||||
"""Postprocess the objects in objectslist to filename."""
|
||||
args: Union[str, argparse.Namespace]
|
||||
flag: bool
|
||||
return g_code_sections
|
||||
|
||||
global UNITS # pylint: disable=global-statement
|
||||
def export(self) -> GCodeSections:
|
||||
"""Process the parser arguments, then postprocess the 'postables'."""
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
# print(parser.format_help())
|
||||
Path.Log.debug("Exporting the job")
|
||||
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
global_values, global_parser, argstring, global_all_visible, filename
|
||||
)
|
||||
if not flag:
|
||||
return args # type: ignore
|
||||
#
|
||||
# Process any additional arguments here
|
||||
#
|
||||
(flag, args) = self.process_arguments()
|
||||
#
|
||||
# If the flag is True, then continue postprocessing the 'postables'.
|
||||
#
|
||||
if flag:
|
||||
return self.process_postables()
|
||||
#
|
||||
# The flag is False meaning something unusual happened.
|
||||
#
|
||||
# If args is None then there was an error during argument processing.
|
||||
#
|
||||
if args is None:
|
||||
return None
|
||||
#
|
||||
# Otherwise args will contain the argument list formatted for output
|
||||
# instead of the "usual" gcode.
|
||||
#
|
||||
return [("allitems", args)] # type: ignore
|
||||
|
||||
#
|
||||
# Update the global variables that might have been modified
|
||||
# while processing the arguments.
|
||||
#
|
||||
UNITS = global_values["UNITS"]
|
||||
@property
|
||||
def tooltip(self):
|
||||
tooltip: str = """
|
||||
This is a postprocessor file for the CAM workbench.
|
||||
It is used to take a pseudo-gcode fragment from a CAM object
|
||||
and output 'real' GCode suitable for a Mach3_4 3 axis mill.
|
||||
"""
|
||||
return tooltip
|
||||
|
||||
return PostUtilsExport.export_common(global_values, objectslist, filename)
|
||||
@property
|
||||
def tooltipArgs(self) -> FormatHelp:
|
||||
return self.parser.format_help()
|
||||
|
||||
@property
|
||||
def units(self) -> Units:
|
||||
return self._units
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
# ***************************************************************************
|
||||
# * Copyright (c) 2014 sliptonic <shopinthewoods@gmail.com> *
|
||||
# * Copyright (c) 2022 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2022 - 2025 Larry Woestman <LarryWoestman2@gmail.com> *
|
||||
# * Copyright (c) 2024 Ondsel <development@ondsel.com> *
|
||||
# * *
|
||||
# * This file is part of the FreeCAD CAx development system. *
|
||||
# * *
|
||||
@@ -22,200 +23,264 @@
|
||||
# * *
|
||||
# ***************************************************************************
|
||||
|
||||
|
||||
import argparse
|
||||
|
||||
from typing import Any, Dict, Union
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
import Path.Post.UtilsArguments as UtilsArguments
|
||||
import Path.Post.UtilsExport as UtilsExport
|
||||
from Path.Post.Processor import PostProcessor
|
||||
import Path.Post.UtilsArguments as PostUtilsArguments
|
||||
import Path.Post.UtilsExport as PostUtilsExport
|
||||
|
||||
# Define some types that are used throughout this file
|
||||
import Path
|
||||
import FreeCAD
|
||||
|
||||
translate = FreeCAD.Qt.translate
|
||||
|
||||
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())
|
||||
|
||||
#
|
||||
# Define some types that are used throughout this file.
|
||||
#
|
||||
Defaults = Dict[str, bool]
|
||||
FormatHelp = str
|
||||
GCodeOrNone = Optional[str]
|
||||
GCodeSections = List[Tuple[str, GCodeOrNone]]
|
||||
Parser = argparse.ArgumentParser
|
||||
ParserArgs = Union[None, str, argparse.Namespace]
|
||||
Postables = Union[List, List[Tuple[str, List]]]
|
||||
Section = Tuple[str, List]
|
||||
Sublist = List
|
||||
Units = str
|
||||
Values = Dict[str, Any]
|
||||
|
||||
#
|
||||
# The following variables need to be global variables
|
||||
# to keep the PathPostProcessor.load method happy:
|
||||
#
|
||||
# TOOLTIP
|
||||
# TOOLTIP_ARGS
|
||||
# UNITS
|
||||
#
|
||||
# The "argument_defaults", "arguments_visible", and the "values" hashes
|
||||
# need to be defined before the "init_shared_arguments" routine can be
|
||||
# called to create TOOLTIP_ARGS, so they also end up having to be globals.
|
||||
#
|
||||
TOOLTIP: str = """This is a postprocessor file for the Path workbench. It is used to
|
||||
test the postprocessor code. It probably isn't useful for "real" gcode.
|
||||
|
||||
import refactored_test_post
|
||||
refactored_test_post.export(object,"/path/to/file.ncc","")
|
||||
"""
|
||||
#
|
||||
# Default to metric mode
|
||||
#
|
||||
UNITS: str = "G21"
|
||||
Visible = Dict[str, bool]
|
||||
|
||||
|
||||
def init_values(values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
global UNITS
|
||||
class Refactored_Test(PostProcessor):
|
||||
"""The Refactored Test post processor class."""
|
||||
|
||||
UtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
# Turn off as much functionality as possible by default.
|
||||
# Then the tests can turn back on the appropriate options as needed.
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
# This would normally show up in the usage message in the TOOLTIP_ARGS,
|
||||
# but we are suppressing the usage message, so it doesn't show up after all.
|
||||
#
|
||||
values["MACHINE_NAME"] = "test"
|
||||
#
|
||||
# Don't output comments by default
|
||||
#
|
||||
values["OUTPUT_COMMENTS"] = False
|
||||
#
|
||||
# Don't output the header by default
|
||||
#
|
||||
values["OUTPUT_HEADER"] = False
|
||||
#
|
||||
# Convert M56 tool change commands to comments,
|
||||
# which are then suppressed by default.
|
||||
#
|
||||
values["OUTPUT_TOOL_CHANGE"] = False
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Do not show the editor by default since we are testing.
|
||||
#
|
||||
values["SHOW_EDITOR"] = False
|
||||
#
|
||||
# Don't show the current machine units by default
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
#
|
||||
# Don't show the current operation label by default.
|
||||
#
|
||||
values["SHOW_OPERATION_LABELS"] = False
|
||||
#
|
||||
# Don't output an M5 command to stop the spindle after an M6 tool change by default.
|
||||
#
|
||||
values["STOP_SPINDLE_FOR_TOOL_CHANGE"] = False
|
||||
#
|
||||
# Don't output a G43 tool length command following tool changes by default.
|
||||
#
|
||||
values["USE_TLO"] = False
|
||||
values["UNITS"] = UNITS
|
||||
def __init__(self, job) -> None:
|
||||
super().__init__(
|
||||
job=job,
|
||||
tooltip=translate("CAM", "Refactored Test post processor"),
|
||||
tooltipargs=[""],
|
||||
units="Metric",
|
||||
)
|
||||
self.reinitialize()
|
||||
Path.Log.debug("Refactored Test post processor initialized")
|
||||
|
||||
def reinitialize(self) -> None:
|
||||
"""Initialize or reinitialize the 'core' data structures for the postprocessor."""
|
||||
#
|
||||
# This is also used to reinitialize the data structures between tests.
|
||||
#
|
||||
self.values: Values = {}
|
||||
self.init_values(self.values)
|
||||
self.argument_defaults: Defaults = {}
|
||||
self.init_argument_defaults(self.argument_defaults)
|
||||
self.arguments_visible: Visible = {}
|
||||
self.init_arguments_visible(self.arguments_visible)
|
||||
self.parser: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.arguments_visible
|
||||
)
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
self.all_arguments_visible: Visible = {}
|
||||
for k in iter(self.arguments_visible):
|
||||
self.all_arguments_visible[k] = True
|
||||
self.all_visible: Parser = self.init_arguments(
|
||||
self.values, self.argument_defaults, self.all_arguments_visible
|
||||
)
|
||||
|
||||
def init_argument_defaults(argument_defaults: Dict[str, bool]) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
UtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
def init_values(self, values: Values) -> None:
|
||||
"""Initialize values that are used throughout the postprocessor."""
|
||||
#
|
||||
PostUtilsArguments.init_shared_values(values)
|
||||
#
|
||||
# Set any values here that need to override the default values set
|
||||
# in the init_shared_values routine.
|
||||
#
|
||||
# Used in the argparser code as the "name" of the postprocessor program.
|
||||
#
|
||||
values["MACHINE_NAME"] = "test"
|
||||
#
|
||||
# Don't output comments by default.
|
||||
#
|
||||
values["OUTPUT_COMMENTS"] = False
|
||||
#
|
||||
# Don't output the header by default.
|
||||
#
|
||||
values["OUTPUT_HEADER"] = False
|
||||
#
|
||||
# Convert M56 tool change commands to comments,
|
||||
# which are then suppressed by default.
|
||||
#
|
||||
values["OUTPUT_TOOL_CHANGE"] = False
|
||||
values["POSTPROCESSOR_FILE_NAME"] = __name__
|
||||
#
|
||||
# Do not show the editor by default since we are testing.
|
||||
#
|
||||
values["SHOW_EDITOR"] = False
|
||||
#
|
||||
# Don't show the current machine units by default.
|
||||
#
|
||||
values["SHOW_MACHINE_UNITS"] = False
|
||||
#
|
||||
# Don't show the current operation label by default.
|
||||
#
|
||||
values["SHOW_OPERATION_LABELS"] = False
|
||||
#
|
||||
# Don't output an M5 command to stop the spindle after an M6 tool change by default.
|
||||
#
|
||||
values["STOP_SPINDLE_FOR_TOOL_CHANGE"] = False
|
||||
#
|
||||
# Don't output a G43 tool length command following tool changes by default.
|
||||
#
|
||||
values["USE_TLO"] = False
|
||||
values["UNITS"] = self._units
|
||||
|
||||
def init_argument_defaults(self, argument_defaults: Defaults) -> None:
|
||||
"""Initialize which arguments (in a pair) are shown as the default argument."""
|
||||
PostUtilsArguments.init_argument_defaults(argument_defaults)
|
||||
#
|
||||
# Modify which argument to show as the default in flag-type arguments here.
|
||||
# If the value is True, the first argument will be shown as the default.
|
||||
# If the value is False, the second argument will be shown as the default.
|
||||
#
|
||||
# For example, if you want to show Metric mode as the default, use:
|
||||
# argument_defaults["metric_inch"] = True
|
||||
#
|
||||
# If you want to show that "Don't pop up editor for writing output" is
|
||||
# the default, use:
|
||||
# argument_defaults["show-editor"] = False.
|
||||
#
|
||||
# Note: You also need to modify the corresponding entries in the "values" hash
|
||||
# to actually make the default value(s) change to match.
|
||||
#
|
||||
|
||||
def init_arguments_visible(arguments_visible: Dict[str, bool]) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
key: str
|
||||
def init_arguments_visible(self, arguments_visible: Visible) -> None:
|
||||
"""Initialize which argument pairs are visible in TOOLTIP_ARGS."""
|
||||
PostUtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
# Make all arguments invisible by default.
|
||||
#
|
||||
for key in iter(arguments_visible):
|
||||
arguments_visible[key] = False
|
||||
|
||||
UtilsArguments.init_arguments_visible(arguments_visible)
|
||||
#
|
||||
# Modify the visibility of any arguments from the defaults here.
|
||||
#
|
||||
#
|
||||
# Make all arguments invisible by default.
|
||||
#
|
||||
for key in iter(arguments_visible):
|
||||
arguments_visible[key] = False
|
||||
def init_arguments(
|
||||
self,
|
||||
values: Values,
|
||||
argument_defaults: Defaults,
|
||||
arguments_visible: Visible,
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
_parser: Parser = PostUtilsArguments.init_shared_arguments(
|
||||
values, argument_defaults, arguments_visible
|
||||
)
|
||||
#
|
||||
# Add any argument definitions that are not shared with other postprocessors here.
|
||||
#
|
||||
return _parser
|
||||
|
||||
def process_arguments(self) -> Tuple[bool, ParserArgs]:
|
||||
"""Process any arguments to the postprocessor."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
def init_arguments(
|
||||
values: Values,
|
||||
argument_defaults: Dict[str, bool],
|
||||
arguments_visible: Dict[str, bool],
|
||||
) -> Parser:
|
||||
"""Initialize the shared argument definitions."""
|
||||
parser: Parser
|
||||
(flag, args) = PostUtilsArguments.process_shared_arguments(
|
||||
self.values, self.parser, self._job.PostProcessorArgs, self.all_visible, "-"
|
||||
)
|
||||
#
|
||||
# If the flag is True, then all of the arguments should be processed normally.
|
||||
#
|
||||
if flag:
|
||||
#
|
||||
# Process any additional arguments here.
|
||||
#
|
||||
#
|
||||
# Update any variables that might have been modified while processing the arguments.
|
||||
#
|
||||
self._units = self.values["UNITS"]
|
||||
#
|
||||
# If the flag is False, then args is either None (indicating an error while
|
||||
# processing the arguments) or a string containing the argument list formatted
|
||||
# for output. Either way the calling routine will need to handle the args value.
|
||||
#
|
||||
return (flag, args)
|
||||
|
||||
parser = UtilsArguments.init_shared_arguments(values, argument_defaults, arguments_visible)
|
||||
#
|
||||
# Add any argument definitions that are not shared with all other
|
||||
# postprocessors here.
|
||||
#
|
||||
return parser
|
||||
def process_postables(self) -> GCodeSections:
|
||||
"""Postprocess the 'postables' in the job to g code sections."""
|
||||
#
|
||||
# This function is separated out to make it easier to inherit from this postprocessor.
|
||||
#
|
||||
gcode: GCodeOrNone
|
||||
g_code_sections: GCodeSections
|
||||
partname: str
|
||||
postables: Postables
|
||||
section: Section
|
||||
sublist: Sublist
|
||||
|
||||
postables = self._buildPostList()
|
||||
|
||||
#
|
||||
# Creating global variables and using functions to modify them
|
||||
# is useful for being able to test things later.
|
||||
#
|
||||
global_values: Values = {}
|
||||
init_values(global_values)
|
||||
global_argument_defaults: Dict[str, bool] = {}
|
||||
init_argument_defaults(global_argument_defaults)
|
||||
global_arguments_visible: Dict[str, bool] = {}
|
||||
init_arguments_visible(global_arguments_visible)
|
||||
global_parser: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_arguments_visible
|
||||
)
|
||||
#
|
||||
# The TOOLTIP_ARGS value is created from the help information about the arguments.
|
||||
#
|
||||
TOOLTIP_ARGS: str = global_parser.format_help()
|
||||
#
|
||||
# Create another parser just to get a list of all possible arguments
|
||||
# that may be output using --output_all_arguments.
|
||||
#
|
||||
global_all_arguments_visible: Dict[str, bool] = {}
|
||||
k: str
|
||||
for k in iter(global_arguments_visible):
|
||||
global_all_arguments_visible[k] = True
|
||||
global_all_visible: Parser = init_arguments(
|
||||
global_values, global_argument_defaults, global_all_arguments_visible
|
||||
)
|
||||
Path.Log.debug(f"postables count: {len(postables)}")
|
||||
|
||||
g_code_sections = []
|
||||
for _, section in enumerate(postables):
|
||||
partname, sublist = section
|
||||
gcode = PostUtilsExport.export_common(self.values, sublist, "-")
|
||||
g_code_sections.append((partname, gcode))
|
||||
|
||||
def export(objectslist, filename: str, argstring: str) -> str:
|
||||
"""Postprocess the objects in objectslist to filename."""
|
||||
args: Union[str, argparse.Namespace]
|
||||
flag: bool
|
||||
return g_code_sections
|
||||
|
||||
global UNITS # pylint: disable=global-statement
|
||||
def export(self) -> Union[None, GCodeSections]:
|
||||
"""Process the parser arguments, then postprocess the 'postables'."""
|
||||
args: ParserArgs
|
||||
flag: bool
|
||||
|
||||
# print(parser.format_help())
|
||||
Path.Log.debug("Exporting the job")
|
||||
|
||||
(flag, args) = UtilsArguments.process_shared_arguments(
|
||||
global_values, global_parser, argstring, global_all_visible, filename
|
||||
)
|
||||
if not flag:
|
||||
return args # type: ignore
|
||||
#
|
||||
# Process any additional arguments here
|
||||
#
|
||||
(flag, args) = self.process_arguments()
|
||||
#
|
||||
# If the flag is True, then continue postprocessing the 'postables'.
|
||||
#
|
||||
if flag:
|
||||
return self.process_postables()
|
||||
#
|
||||
# The flag is False meaning something unusual happened.
|
||||
#
|
||||
# If args is None then there was an error during argument processing.
|
||||
#
|
||||
if args is None:
|
||||
return None
|
||||
#
|
||||
# Otherwise args will contain the argument list formatted for output
|
||||
# instead of the "usual" gcode.
|
||||
#
|
||||
return [("allitems", args)] # type: ignore
|
||||
|
||||
#
|
||||
# Update the global variables that might have been modified
|
||||
# while processing the arguments.
|
||||
#
|
||||
UNITS = global_values["UNITS"]
|
||||
@property
|
||||
def tooltip(self):
|
||||
tooltip: str = """
|
||||
This is a postprocessor file for the CAM workbench. It is used
|
||||
to test the postprocessor code. It probably isn't useful for "real" gcode.
|
||||
"""
|
||||
return tooltip
|
||||
|
||||
return UtilsExport.export_common(global_values, objectslist, filename)
|
||||
@property
|
||||
def tooltipArgs(self) -> FormatHelp:
|
||||
return self.parser.format_help()
|
||||
|
||||
@property
|
||||
def units(self) -> Units:
|
||||
return self._units
|
||||
|
||||
Reference in New Issue
Block a user