/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2019 Jean_Pierre Charras * Copyright (C) 1992-2021 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 . */ /** * @file gerber_placefile_writer.h * @brief Classes used in place file generation. */ #ifndef PLACEFILE_GERBER_WRITER_H #define PLACEFILE_GERBER_WRITER_H #include #include class BOARD; class FOOTPRINT; class PAD; /** * Used to create Gerber drill files. */ class PLACEFILE_GERBER_WRITER { public: PLACEFILE_GERBER_WRITER( BOARD* aPcb ); virtual ~PLACEFILE_GERBER_WRITER() { } /** * Initialize internal parameters to match drill options * * @note PTH and NPTH are always separate files in Gerber format. * * @param aOffset is the drill coordinates offset. */ void SetOptions( const wxPoint& aOffset ) { m_offset = aOffset; } /** * Create an pnp gerber file. * * @param aFullFilename is the full filename. * @param aLayer is the layer (F_Cu or B_Cu) to generate. * @param aIncludeBrdEdges use true to include board outlines. * @return component count, or -1 if the file cannot be created. */ int CreatePlaceFile( wxString& aFullFilename, PCB_LAYER_ID aLayer, bool aIncludeBrdEdges ); /** * @param aFullBaseFilename = a full filename. it will be modified * to add "-pnp" and set the extension * @param aLayer = layer (F_Cu or B_Cu) to generate * @return a filename which identify the drill file function. */ const wxString GetPlaceFileName( const wxString& aFullBaseFilename, PCB_LAYER_ID aLayer ) const; private: /** * Convert a KiCad footprint orientation to gerber rotation both are in degrees. */ double mapRotationAngle( double aAngle ); /** * Find the pad(s) 1 (or pad "A1") of a footprint. * * Useful to plot a marker at this (these) position(s). * * @param aPadList is the list to fill. * @param aFootprint is the footprint to test, */ void findPads1( std::vector& aPadList, FOOTPRINT* aFootprint ) const; BOARD* m_pcb; PCB_LAYER_ID m_layer; // The board layer currently used (typically F_Cu or B_Cu) wxPoint m_offset; // Drill offset coordinates bool m_plotPad1Marker; // True to plot a flashed marker shape at pad 1 position bool m_plotOtherPadsMarker; // True to plot a marker shape at other pads position // This is a flashed 0 sized round pad }; #endif // #ifndef PLACEFILE_GERBER_WRITER_H