/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2022 Mark Roszko * Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include "command_export_pcb_gerber.h" #include #include "jobs/job_export_pcb_gerber.h" #include #include #include #include #include #include CLI::EXPORT_PCB_GERBER_COMMAND::EXPORT_PCB_GERBER_COMMAND( const std::string& aName ) : EXPORT_PCB_BASE_COMMAND( aName ) { addLayerArg( true ); m_argParser.add_argument( "-ird", ARG_INCLUDE_REFDES ) .help( UTF8STDSTR( _( "Include the reference designator text" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( "-iv", ARG_INCLUDE_VALUE ) .help( UTF8STDSTR( _( "Include the value text" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( "-ibt", ARG_INCLUDE_BORDER_TITLE ) .help( UTF8STDSTR( _( "Include the border and title block" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( ARG_NO_X2 ) .help( UTF8STDSTR( _( "Do not use the extended X2 format" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( ARG_NO_NETLIST ) .help( UTF8STDSTR( _( "Do not generate netlist attributes" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( ARG_SUBTRACT_SOLDERMASK ) .help( UTF8STDSTR( _( "Subtract soldermask from silkscreen" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( ARG_DISABLE_APERTURE_MACROS ) .help( UTF8STDSTR( _( "Disable aperature macros" ) ) ) .implicit_value( true ) .default_value( false ); m_argParser.add_argument( ARG_PRECISION ) .help( UTF8STDSTR( _( "Precision of gerber coordinates, valid options: 5 or 6" ) ) ) .scan<'i', int>() .default_value( 6 ); } CLI::EXPORT_PCB_GERBER_COMMAND::EXPORT_PCB_GERBER_COMMAND() : EXPORT_PCB_GERBER_COMMAND( "gerber" ) { } int CLI::EXPORT_PCB_GERBER_COMMAND::populateJob( JOB_EXPORT_PCB_GERBER* aJob ) { aJob->m_filename = FROM_UTF8( m_argParser.get( ARG_INPUT ).c_str() ); aJob->m_outputFile = FROM_UTF8( m_argParser.get( ARG_OUTPUT ).c_str() ); aJob->m_plotFootprintValues = m_argParser.get( ARG_INCLUDE_VALUE ); aJob->m_plotRefDes = m_argParser.get( ARG_INCLUDE_VALUE ); aJob->m_plotBorderTitleBlocks = m_argParser.get( ARG_INCLUDE_BORDER_TITLE ); aJob->m_disableApertureMacros = m_argParser.get( ARG_DISABLE_APERTURE_MACROS ); aJob->m_subtractSolderMaskFromSilk = m_argParser.get( ARG_SUBTRACT_SOLDERMASK ); aJob->m_includeNetlistAttributes = !m_argParser.get( ARG_NO_NETLIST ); aJob->m_useX2Format = !m_argParser.get( ARG_NO_X2 ); aJob->m_precision = m_argParser.get( ARG_PRECISION ); aJob->m_printMaskLayer = m_selectedLayers; if( !wxFile::Exists( aJob->m_filename ) ) { wxFprintf( stderr, _( "Board file does not exist or is not accessible\n" ) ); return EXIT_CODES::ERR_INVALID_INPUT_FILE; } if( aJob->m_precision != 5 && aJob->m_precision != 6 ) { wxFprintf( stderr, _( "Gerber coordinate precision should be either 5 or 6\n" ) ); return EXIT_CODES::ERR_ARGS; } return EXIT_CODES::OK; } int CLI::EXPORT_PCB_GERBER_COMMAND::Perform( KIWAY& aKiway ) { int exitCode = EXPORT_PCB_BASE_COMMAND::Perform( aKiway ); if( exitCode != EXIT_CODES::OK ) return exitCode; std::unique_ptr gerberJob( new JOB_EXPORT_PCB_GERBER( true ) ); exitCode = populateJob( gerberJob.get() ); if( exitCode != EXIT_CODES::OK ) return exitCode; LOCALE_IO dummy; exitCode = aKiway.ProcessJob( KIWAY::FACE_PCB, gerberJob.get() ); return exitCode; }