KiBot/kibot/out_gencad.py

74 lines
2.7 KiB
Python

# -*- coding: utf-8 -*-
# Copyright (c) 2022 Salvador E. Tropea
# Copyright (c) 2022 Instituto Nacional de Tecnología Industrial
# License: GPL-3.0
# Project: KiBot (formerly KiPlot)
import os
from .gs import GS
from .optionable import BaseOptions
from .misc import CMD_PCBNEW_GENCAD, URL_PCBNEW_GENCAD, FAILED_EXECUTE
from .kiplot import check_script, exec_with_retry, add_extra_options
from .macros import macros, document, output_class # noqa: F401
from . import log
logger = log.get_logger()
class GenCADOptions(BaseOptions):
def __init__(self):
with document:
self.output = GS.def_global_output
""" Filename for the output (%i=gencad, %x=cad) """
self.flip_bottom_padstacks = False
""" Flip bottom footprint padstacks """
self.unique_pin_names = False
""" Generate unique pin names """
self.no_reuse_shapes = False
""" Generate a new shape for each footprint instance (Do not reuse shapes) """
self.aux_origin = False
""" Use auxiliary axis as origin """
self.save_origin = False
""" Save the origin coordinates in the file """
super().__init__()
self._expand_id = 'gencad'
self._expand_ext = 'cad'
def run(self, name):
check_script(CMD_PCBNEW_GENCAD, URL_PCBNEW_GENCAD, '1.6.5')
# Output file name
cmd = [CMD_PCBNEW_GENCAD, 'export_gencad', '--output_name', os.path.basename(name)]
if self.flip_bottom_padstacks:
cmd.append('--flip_bottom_padstacks')
if self.unique_pin_names:
cmd.append('--unique_pin_names')
if self.no_reuse_shapes:
cmd.append('--no_reuse_shapes')
if self.aux_origin:
cmd.append('--aux_origin')
if self.save_origin:
cmd.append('--save_origin')
cmd.extend([GS.pcb_file, os.path.dirname(name)])
cmd, video_remove = add_extra_options(cmd)
# Execute it
ret = exec_with_retry(cmd)
if ret:
logger.error(CMD_PCBNEW_GENCAD+' returned %d', ret)
exit(FAILED_EXECUTE)
if video_remove:
video_name = os.path.join(self.expand_filename_pcb(GS.out_dir), 'pcbnew_export_gencad_screencast.ogv')
if os.path.isfile(video_name):
os.remove(video_name)
@output_class
class GenCAD(BaseOutput): # noqa: F821
""" GenCAD
Exports the PCB in GENCAD format.
This format is interpreted by some CADCAM software and helps certain
manufacturers """
def __init__(self):
super().__init__()
with document:
self.options = GenCADOptions
""" [dict] Options for the `gencad` output """