- added a new Tcl Command named SetPath which will set a path to be used by the Tcl commands. Once set will serve as a fallback path in case that the files fail to be opened first time. It will be persistent, saved in preferences. - added the GUI for the new Open Example in the FIle -> Scripting menu. - I am modifying all the open ... handlers to add a parameter that will flag if the method was launched from Tcl Shell. This way if the method will fail to open the filename (which include the path) it will try to open from a set fallback path. - fixed issue #406, bug introduced recently (leftover changes). - modified the ImportSVG Tcl command name to OpenSVG (open_svg alias) - added a new Tcl command named OpenDXF (open_dxf alias) - fixed some errors in Scripting features - added a new Tcl command named GetPath as a convenient way to get the current default path stored in App.defaults['global_tcl_path']
61 lines
2.2 KiB
Python
61 lines
2.2 KiB
Python
from tclCommands.TclCommand import TclCommandSignaled
|
|
|
|
import collections
|
|
|
|
|
|
class TclCommandOpenGCode(TclCommandSignaled):
|
|
"""
|
|
Tcl shell command to open a G-Code file.
|
|
"""
|
|
|
|
# array of all command aliases, to be able use old names for
|
|
# backward compatibility (add_poly, add_polygon)
|
|
aliases = ['open_gcode']
|
|
|
|
description = '%s %s' % ("--", "Opens an GCode file, parse it and create a GCode object from it.")
|
|
|
|
# Dictionary of types from Tcl command, needs to be ordered.
|
|
# For positional arguments
|
|
arg_names = collections.OrderedDict([
|
|
('filename', str)
|
|
])
|
|
|
|
# Dictionary of types from Tcl command, needs to be ordered.
|
|
# For options like -optionname value
|
|
option_types = collections.OrderedDict([
|
|
('outname', str)
|
|
])
|
|
|
|
# array of mandatory options for current Tcl command: required = {'name','outname'}
|
|
required = ['filename']
|
|
|
|
# structured help for current command, args needs to be ordered
|
|
help = {
|
|
'main': "Opens an GCode file, parse it and create a GCode object from it.",
|
|
'args': collections.OrderedDict([
|
|
('filename', 'Absolute path to file to open. Required.\n'
|
|
'WARNING: no spaces are allowed. If unsure enclose the entire path with quotes.'),
|
|
('outname', 'Name of the resulting CNCJob object.')
|
|
]),
|
|
'examples': ['open_gcode D:\\my_gcode_file.NC',
|
|
'open_gcode "D:\\my_gcode_file with spaces in the name.TXT"']
|
|
}
|
|
|
|
def execute(self, args, unnamed_args):
|
|
"""
|
|
execute current TCL shell command
|
|
|
|
:param args: array of known named arguments and options
|
|
:param unnamed_args: array of other values which were passed into command
|
|
without -somename and we do not have them in known arg_names
|
|
:return: None or exception
|
|
"""
|
|
args['plot'] = False
|
|
args['from_tcl'] = True
|
|
filename = args["filename"]
|
|
if ' ' in filename:
|
|
return "The absolute path to the project file contain spaces which is not allowed.\n" \
|
|
"Please enclose the path within quotes."
|
|
|
|
self.app.open_gcode(filename, **args)
|