| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- from tclCommands.TclCommand import TclCommand
- from shapely.ops import cascaded_union
- import collections
- import gettext
- import AppTranslation as fcTranslate
- import builtins
- fcTranslate.apply_language('strings')
- if '_' not in builtins.__dict__:
- _ = gettext.gettext
- class TclCommandNregions(TclCommand):
- """
- Tcl shell command to follow a Gerber file
- """
- # array of all command aliases, to be able use old names for backward compatibility (add_poly, add_polygon)
- aliases = ['non_copper_regions', 'ncr']
- description = '%s %s' % ("--", "Creates a Geometry object with the non-copper regions.")
- # dictionary of types from Tcl command, needs to be ordered
- arg_names = collections.OrderedDict([
- ('name', str)
- ])
- # dictionary of types from Tcl command, needs to be ordered , this is for options like -optionname value
- option_types = collections.OrderedDict([
- ('outname', str),
- ('margin', float),
- ('rounded', str)
- ])
- # 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': "Creates a Geometry object with the non-copper regions.",
- 'args': collections.OrderedDict([
- ('name', 'Object name for which to create non-copper regions. String. Required.'),
- ('outname', 'Name of the resulting Geometry object. String.'),
- ('margin', "Specify the edge of the PCB by drawing a box around all objects with this minimum distance. "
- "Float number."),
- ('rounded', "Resulting geometry will have rounded corners. True (1) or False (0).")
- ]),
- 'examples': ['ncr name -margin 0.1 -rounded True -outname name_ncr']
- }
- 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
- """
- name = args['name']
- if 'outname' not in args:
- args['outname'] = name + "_noncopper"
- obj = self.app.collection.get_by_name(name)
- if obj is None:
- self.raise_tcl_error("%s: %s" % (_("Object not found"), name))
- if obj.kind != 'gerber' and obj.kind != 'geometry':
- self.raise_tcl_error('%s %s: %s.' % (_("Expected GerberObject or GeometryObject, got"), name, type(obj)))
- if 'margin' not in args:
- args['margin'] = float(self.app.defaults["gerber_noncoppermargin"])
- margin = float(args['margin'])
- if 'rounded' in args:
- try:
- par = args['rounded'].capitalize()
- except AttributeError:
- par = args['rounded']
- rounded = bool(eval(par))
- else:
- rounded = bool(eval(self.app.defaults["gerber_noncopperrounded"]))
- del args['name']
- try:
- def geo_init(geo_obj, app_obj):
- assert geo_obj.kind == 'geometry'
- geo = cascaded_union(obj.solid_geometry)
- bounding_box = geo.envelope.buffer(float(margin))
- if not rounded:
- bounding_box = bounding_box.envelope
- non_copper = bounding_box.difference(geo)
- geo_obj.solid_geometry = non_copper
- self.app.app_obj.new_object("geometry", args['outname'], geo_init, plot=False)
- except Exception as e:
- return "Operation failed: %s" % str(e)
- # in the end toggle the visibility of the origin object so we can see the generated Geometry
- self.app.collection.get_by_name(name).ui.plot_cb.toggle()
|