Files
flatcam-wsl/tclCommands/TclCommandExportDXF.py
Marius Stanciu 1dff9cc566 - in Tcl Commands: export_dxf and export_gerber, fixed a mistake in declaring a wrong name of a required option
- in Tcl Command set_path added an optional parameter which allows to create a directory where path is to be set, if the directory does not exist
2023-03-13 23:08:57 +02:00

69 lines
2.2 KiB
Python

from tclCommands.TclCommand import TclCommand
import collections
import gettext
import appTranslation as fcTranslate
import builtins
fcTranslate.apply_language('strings')
if '_' not in builtins.__dict__:
_ = gettext.gettext
class TclCommandExportDXF(TclCommand):
"""
Tcl shell command to export a Geometry Object as an DXF File.
example:
export_dxf path/my_geometry filename
"""
# List of all command aliases, to be able to use old names for backward compatibility (add_poly, add_polygon)
aliases = ['export_dxf', 'edxf']
description = '%s %s' % ("--", "Export a Geometry object as a DXF File.")
# Dictionary of types from Tcl command, needs to be ordered
arg_names = collections.OrderedDict([
('name', str),
('filename', str)
])
# Dictionary of types from Tcl command, needs to be ordered , this is for options like -optionname value
option_types = collections.OrderedDict([
])
# array of mandatory options for current Tcl command: required = ['name','outname']
required = ['name']
# structured help for current command, args needs to be ordered
help = {
'main': "Export a Geometry object as a DXF File.",
'args': collections.OrderedDict([
('name', 'Name of the Geometry object to export.'),
('filename', 'Absolute path to file to export.\n'
'WARNING: no spaces are allowed. If unsure enclose the entire path with quotes.'),
]),
'examples': ['export_dxf my_geo path/my_file.dxf', 'export_dxf my_geo D:/my_file.dxf']
}
def execute(self, args, unnamed_args):
"""
:param args:
:param unnamed_args:
:return:
"""
if 'name' not in args:
return "Failed. The Geometry object name to be exported was not provided."
source_obj_name = args['name']
if 'filename' not in args:
filename = self.app.options["global_last_save_folder"] + '/' + args['name']
else:
filename = args['filename']
self.app.f_handlers.export_dxf(obj_name=source_obj_name, filename=filename, local_use=None, use_thread=False)