192 lines
9.6 KiB
Python
192 lines
9.6 KiB
Python
# ***************************************************************************
|
|
# * (c) Yorik van Havre (yorik@uncreated.net) 2014 *
|
|
# * *
|
|
# * This file is part of the FreeCAD CAx development system. *
|
|
# * *
|
|
# * This program is free software; you can redistribute it and/or modify *
|
|
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
|
# * as published by the Free Software Foundation; either version 2 of *
|
|
# * the License, or (at your option) any later version. *
|
|
# * for detail see the LICENCE text file. *
|
|
# * *
|
|
# * FreeCAD is distributed in the hope that it will be useful, *
|
|
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
# * GNU Lesser General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Library General Public *
|
|
# * License along with FreeCAD; if not, write to the Free Software *
|
|
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
# * USA *
|
|
# * *
|
|
# ***************************************************************************/
|
|
|
|
class PathCommandGroup:
|
|
def __init__(self, cmdlist, menu, tooltip = None):
|
|
self.cmdlist = cmdlist
|
|
self.menu = menu
|
|
if tooltip is None:
|
|
self.tooltip = menu
|
|
else:
|
|
self.tooltip = tooltip
|
|
|
|
def GetCommands(self):
|
|
return tuple(self.cmdlist)
|
|
|
|
def GetResources(self):
|
|
return { 'MenuText': self.menu, 'ToolTip': self.tooltip }
|
|
|
|
def IsActive(self):
|
|
if FreeCAD.ActiveDocument is not None:
|
|
for o in FreeCAD.ActiveDocument.Objects:
|
|
if o.Name[:3] == "Job":
|
|
return True
|
|
return False
|
|
|
|
class PathWorkbench (Workbench):
|
|
"Path workbench"
|
|
|
|
def __init__(self):
|
|
self.__class__.Icon = FreeCAD.getResourceDir() + "Mod/Path/Resources/icons/PathWorkbench.svg"
|
|
self.__class__.MenuText = "Path"
|
|
self.__class__.ToolTip = "Path workbench"
|
|
|
|
def Initialize(self):
|
|
global PathCommandGroup
|
|
|
|
# Add preferences pages - before loading PathGui to properly order pages of Path group
|
|
from PathScripts import PathPreferencesPathJob, PathPreferencesPathDressup
|
|
FreeCADGui.addPreferencePage(PathPreferencesPathJob.JobPreferencesPage, "Path")
|
|
FreeCADGui.addPreferencePage(PathPreferencesPathDressup.DressupPreferencesPage, "Path")
|
|
|
|
# Check enablement of experimental features
|
|
from PathScripts import PathPreferences
|
|
|
|
# load the builtin modules
|
|
import Path
|
|
import PathScripts
|
|
import PathGui
|
|
from PySide import QtCore, QtGui
|
|
FreeCADGui.addLanguagePath(":/translations")
|
|
FreeCADGui.addIconPath(":/icons")
|
|
from PathScripts import PathGuiInit
|
|
from PathScripts import PathJobCmd
|
|
|
|
from PathScripts import PathToolBitCmd
|
|
from PathScripts import PathToolBitLibraryCmd
|
|
if PathPreferences.experimentalFeaturesEnabled():
|
|
toolbitcmdlist = PathToolBitCmd.CommandList + ["Separator"] + PathToolBitLibraryCmd.CommandList + ["Path_ToolController", "Separator"]
|
|
self.toolbitctxmenu = ["Path_ToolBitLibraryLoad", "Path_ToolController"]
|
|
else:
|
|
toolbitcmdlist = []
|
|
self.toolbitctxmenu = []
|
|
|
|
import PathCommands
|
|
PathGuiInit.Startup()
|
|
|
|
# build commands list
|
|
projcmdlist = ["Path_Job", "Path_Post"]
|
|
toolcmdlist = ["Path_Inspect", "Path_Simulator", "Path_ToolLibraryEdit", "Path_SelectLoop", "Path_OpActiveToggle"]
|
|
prepcmdlist = ["Path_Fixture", "Path_Comment", "Path_Stop", "Path_Custom"]
|
|
twodopcmdlist = ["Path_Contour", "Path_Profile_Faces", "Path_Profile_Edges", "Path_Pocket_Shape", "Path_Drilling", "Path_MillFace", "Path_Helix", "Path_Adaptive" ]
|
|
threedopcmdlist = ["Path_Pocket_3D"]
|
|
engravecmdlist = ["Path_Engrave", "Path_Deburr"]
|
|
modcmdlist = ["Path_OperationCopy", "Path_Array", "Path_SimpleCopy" ]
|
|
dressupcmdlist = ["Path_DressupAxisMap", "Path_DressupPathBoundary", "Path_DressupDogbone", "Path_DressupDragKnife", "Path_DressupLeadInOut", "Path_DressupRampEntry", "Path_DressupTag"]
|
|
extracmdlist = []
|
|
#modcmdmore = ["Path_Hop",]
|
|
#remotecmdlist = ["Path_Remote"]
|
|
|
|
engravecmdgroup = ['Path_EngraveTools']
|
|
FreeCADGui.addCommand('Path_EngraveTools', PathCommandGroup(engravecmdlist, QtCore.QT_TRANSLATE_NOOP("Path", 'Engraving Operations')))
|
|
|
|
threedcmdgroup = threedopcmdlist
|
|
if PathPreferences.experimentalFeaturesEnabled():
|
|
projcmdlist.append("Path_Sanity")
|
|
prepcmdlist.append("Path_Shape")
|
|
extracmdlist.extend(["Path_Area", "Path_Area_Workplane"])
|
|
|
|
try:
|
|
import ocl # pylint: disable=unused-variable
|
|
from PathScripts import PathSurfaceGui
|
|
threedopcmdlist.append("Path_Surface")
|
|
threedcmdgroup = ['Path_3dTools']
|
|
FreeCADGui.addCommand('Path_3dTools', PathCommandGroup(threedopcmdlist, QtCore.QT_TRANSLATE_NOOP("Path",'3D Operations')))
|
|
except ImportError:
|
|
FreeCAD.Console.PrintError("OpenCamLib is not working!\n")
|
|
|
|
self.appendToolbar(QtCore.QT_TRANSLATE_NOOP("Path", "Project Setup"), projcmdlist)
|
|
self.appendToolbar(QtCore.QT_TRANSLATE_NOOP("Path", "Tool Commands"), toolcmdlist)
|
|
self.appendToolbar(QtCore.QT_TRANSLATE_NOOP("Path", "New Operations"), twodopcmdlist+engravecmdgroup+threedcmdgroup)
|
|
self.appendToolbar(QtCore.QT_TRANSLATE_NOOP("Path", "Path Modification"), modcmdlist)
|
|
if extracmdlist:
|
|
self.appendToolbar(QtCore.QT_TRANSLATE_NOOP("Path", "Helpful Tools"), extracmdlist)
|
|
|
|
self.appendMenu([QtCore.QT_TRANSLATE_NOOP("Path", "&Path")], projcmdlist +["Path_ExportTemplate", "Separator"] + toolbitcmdlist + toolcmdlist +["Separator"] + twodopcmdlist + engravecmdlist +["Separator"] +threedopcmdlist +["Separator"])
|
|
self.appendMenu([QtCore.QT_TRANSLATE_NOOP("Path", "&Path"), QtCore.QT_TRANSLATE_NOOP(
|
|
"Path", "Path Dressup")], dressupcmdlist)
|
|
self.appendMenu([QtCore.QT_TRANSLATE_NOOP("Path", "&Path"), QtCore.QT_TRANSLATE_NOOP(
|
|
"Path", "Supplemental Commands")], prepcmdlist)
|
|
self.appendMenu([QtCore.QT_TRANSLATE_NOOP("Path", "&Path"), QtCore.QT_TRANSLATE_NOOP(
|
|
"Path", "Path Modification")], modcmdlist)
|
|
if extracmdlist:
|
|
self.appendMenu([QtCore.QT_TRANSLATE_NOOP("Path", "&Path")], extracmdlist)
|
|
|
|
self.dressupcmds = dressupcmdlist
|
|
|
|
curveAccuracy = PathPreferences.defaultLibAreaCurveAccuracy()
|
|
if curveAccuracy:
|
|
Path.Area.setDefaultParams(Accuracy = curveAccuracy)
|
|
|
|
Log('Loading Path workbench... done\n')
|
|
|
|
def GetClassName(self):
|
|
return "Gui::PythonWorkbench"
|
|
|
|
def Activated(self):
|
|
# update the translation engine
|
|
FreeCADGui.updateLocale()
|
|
Msg("Path workbench activated\n")
|
|
|
|
def Deactivated(self):
|
|
Msg("Path workbench deactivated\n")
|
|
|
|
def ContextMenu(self, recipient):
|
|
import PathScripts
|
|
menuAppended = False
|
|
if len(FreeCADGui.Selection.getSelection()) == 1:
|
|
obj = FreeCADGui.Selection.getSelection()[0]
|
|
if obj.isDerivedFrom("Path::Feature"):
|
|
self.appendContextMenu("", "Separator")
|
|
self.appendContextMenu("", ["Path_Inspect"])
|
|
selectedName = obj.Name
|
|
if "Remote" in selectedName:
|
|
self.appendContextMenu("", ["Refresh_Path"])
|
|
if "Job" in selectedName:
|
|
self.appendContextMenu("", ["Path_ExportTemplate"] + self.toolbitctxmenu)
|
|
menuAppended = True
|
|
if isinstance(obj.Proxy, PathScripts.PathOp.ObjectOp):
|
|
self.appendContextMenu("", ["Path_OperationCopy", "Path_OpActiveToggle"])
|
|
menuAppended = True
|
|
if obj.isDerivedFrom("Path::Feature"):
|
|
if "Profile" in selectedName or "Contour" in selectedName or "Dressup" in selectedName:
|
|
self.appendContextMenu("", "Separator")
|
|
#self.appendContextMenu("", ["Set_StartPoint"])
|
|
#self.appendContextMenu("", ["Set_EndPoint"])
|
|
for cmd in self.dressupcmds:
|
|
self.appendContextMenu("", [cmd])
|
|
menuAppended = True
|
|
if isinstance(obj.Proxy, PathScripts.PathToolBit.ToolBit):
|
|
self.appendContextMenu("", ["Path_ToolBitSave", "Path_ToolBitSaveAs"])
|
|
menuAppended = True
|
|
if menuAppended:
|
|
self.appendContextMenu("", "Separator")
|
|
|
|
Gui.addWorkbench(PathWorkbench())
|
|
|
|
FreeCAD.addImportType(
|
|
"GCode (*.nc *.gc *.ncc *.ngc *.cnc *.tap *.gcode)", "PathGui")
|
|
# FreeCAD.addExportType(
|
|
# "GCode (*.nc *.gc *.ncc *.ngc *.cnc *.tap *.gcode)", "PathGui")
|
|
|