KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
gendrill_file_writer_base.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 1992-2017 Jean_Pierre Charras <jp.charras at wanadoo.fr>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
29#ifndef GENDRILL_FILE_WRITER_BASE_H
30#define GENDRILL_FILE_WRITER_BASE_H
31
32// holes can have an attribute in Excellon drill files, similar to attributes
33// in Gerber X2 format
34// They are only comments for a better identification of holes (vias, pads...)
35// Set to 1 to add these comments and 0 to not use these comments
36#define USE_ATTRIB_FOR_HOLES 1
37
38#include <vector>
39
40class BOARD_ITEM;
41
42// hole attribute, mainly to identify vias and pads and add this info as comment
43// in NC drill files
45{
46 HOLE_UNKNOWN, // uninitialized type
47 HOLE_VIA_THROUGH, // a via hole (always plated) from top to bottom
48 HOLE_VIA_BURIED, // a via hole (always plated) not through hole
49 HOLE_PAD, // a plated or not plated pad hole
50 HOLE_MECHANICAL // a mechanical pad (provided, not used)
51};
52
53// Via Protection features according to IPC-4761.
54enum class IPC4761_FEATURES : int
55{
56 FILLED,
57 CAPPED,
64};
65
66// the DRILL_TOOL class handles tools used in the excellon drill file:
68{
69public:
70 int m_Diameter; // the diameter of the used tool
71 // (for oblong, the smaller size)
72 int m_TotalCount; // how many times it is used (round and oblong)
73 int m_OvalCount; // oblong count
74 bool m_Hole_NotPlated; // Is the hole plated or not plated
75 HOLE_ATTRIBUTE m_HoleAttribute; // Attribute (used in Excellon drill file)
76
77public:
78 DRILL_TOOL( int aDiameter, bool a_NotPlated )
79 {
80 m_TotalCount = 0;
81 m_OvalCount = 0;
82 m_Diameter = aDiameter;
83 m_Hole_NotPlated = a_NotPlated;
84 m_HoleAttribute = HOLE_ATTRIBUTE::HOLE_UNKNOWN;
85 }
86};
87
88
97{
98public:
100 {
101 m_ItemParent = nullptr;
102 m_Hole_NotPlated = false;
103 m_Hole_Diameter = 0;
106 m_Hole_Shape = 0;
109 m_HoleAttribute = HOLE_ATTRIBUTE::HOLE_UNKNOWN;
110 m_Hole_Filled = false;
111 m_Hole_Capped = false;
112 m_Hole_Top_Covered = false;
113 m_Hole_Bot_Covered = false;
114 m_Hole_Top_Plugged = false;
115 m_Hole_Bot_Plugged = false;
116 m_Hole_Top_Tented = false;
117 m_Hole_Bot_Tented = false;
118 }
119
120public:
121 BOARD_ITEM* m_ItemParent; // The pad or via parent of this hole
122 int m_Hole_Diameter; // hole value, and for oblong: min(hole size x, hole
123 // size y).
124 int m_Tool_Reference; // Tool reference for this hole = 1 ... n (values <=0
125 // must not be used).
126 VECTOR2I m_Hole_Size; // hole size for oblong holes
127 EDA_ANGLE m_Hole_Orient; // Hole rotation (= pad rotation) for oblong holes
128 int m_Hole_Shape; // hole shape: round (0) or oval (1)
129 VECTOR2I m_Hole_Pos; // hole position
130 PCB_LAYER_ID m_Hole_Bottom_Layer; // hole ending layer (usually back layer)
131 PCB_LAYER_ID m_Hole_Top_Layer; // hole starting layer (usually front layer):
132 // m_Hole_Top_Layer < m_Hole_Bottom_Layer
133 bool m_Hole_NotPlated; // hole not plated. Must be in a specific drill file or
134 // section.
135 HOLE_ATTRIBUTE m_HoleAttribute; // Attribute, used in Excellon drill file and to sort holes
136 // by type.
137
138 bool m_Hole_Filled; // hole should be filled
139 bool m_Hole_Capped; // hole should be capped
140 bool m_Hole_Top_Covered; // hole should be covered on top
141 bool m_Hole_Bot_Covered; // hole should be covered on bottom
142 bool m_Hole_Top_Plugged; // hole should be plugged on top
143 bool m_Hole_Bot_Plugged; // hole should be plugged on bottom
144 bool m_Hole_Top_Tented; // hole should be tented on top
145 bool m_Hole_Bot_Tented; // hole should be tented on bottom
146};
147
148
153{
154public:
155 DRILL_PRECISION( int l = 2, int r = 4 )
156 {
157 m_Lhs = l; m_Rhs = r;
158 }
159
160
162 {
163 wxString text;
164
165 text << m_Lhs << wxT( ":" ) << m_Rhs;
166 return text;
167 }
168
169 int m_Lhs; // Left digit number (integer value of coordinates)
170 int m_Rhs; // Right digit number (decimal value of coordinates)
171};
172
173
174typedef std::pair<PCB_LAYER_ID, PCB_LAYER_ID> DRILL_LAYER_PAIR;
175
182{
183public:
184 enum ZEROS_FMT { // Zero format in coordinates
185 DECIMAL_FORMAT, // Floating point coordinates
186 SUPPRESS_LEADING, // Suppress leading zeros
187 SUPPRESS_TRAILING, // Suppress trailing zeros
188 KEEP_ZEROS // keep zeros
189 };
190
191 enum TYPE_FILE { // type of holes in file: PTH, NPTH, mixed
192 PTH_FILE, // PTH only, this is the default also for blind/buried holes
193 NPTH_FILE, // NPTH only
194 MIXED_FILE // PHT+NPTH (mixed)
195 };
196
198 {
199 }
200
207 void SetMergeOption( bool aMerge ) { m_merge_PTH_NPTH = aMerge; }
208
213
221 void SetPageInfo( const PAGE_INFO* aPageInfo ) { m_pageInfo = aPageInfo; }
222
231 {
232 m_mapFileFmt = aMapFmt;
233 }
234
244 bool CreateMapFilesSet( const wxString& aPlotDirectory, REPORTER* aReporter = nullptr );
245
294 bool GenDrillReportFile( const wxString& aFullFileName );
295
299 wxString GetDrillFileExt() const { return m_drillFileExtension; }
300
301protected:
313 bool genDrillMapFile( const wxString& aFullFileName, PLOT_FORMAT aFormat );
314
327 void buildHolesList( DRILL_LAYER_PAIR aLayerPair, bool aGenerateNPTH_list );
328
329 int getHolesCount() const { return m_holeListBuffer.size(); }
330
340 bool plotDrillMarks( PLOTTER* aPlotter );
341
343 std::vector<DRILL_LAYER_PAIR> getUniqueLayerPairs() const;
344
351 unsigned printToolSummary( OUTPUTFORMATTER& aOut, bool aSummaryNPTH ) const;
352
358 const std::string layerPairName( DRILL_LAYER_PAIR aPair ) const;
359
364 const std::string layerName( PCB_LAYER_ID aLayer ) const;
365
375 virtual const wxString getDrillFileName( DRILL_LAYER_PAIR aPair, bool aNPTH,
376 bool aMerge_PTH_NPTH ) const;
377
378
385 virtual const wxString getProtectionFileName( DRILL_LAYER_PAIR aPair,
386 IPC4761_FEATURES aFeature ) const;
387
388
400 const wxString BuildFileFunctionAttributeString( DRILL_LAYER_PAIR aLayerPair,
401 TYPE_FILE aHoleType,
402 bool aCompatNCdrill = false ) const;
403
404
405protected:
406 // Use derived classes to build a fully initialized GENDRILL_WRITER_BASE class.
408 {
409 m_pcb = aPcb;
410 m_conversionUnits = 1.0;
411 m_unitsMetric = true;
412 m_mapFileFmt = PLOT_FORMAT::PDF;
413 m_pageInfo = nullptr;
414 m_merge_PTH_NPTH = false;
416 }
417
419 wxString m_drillFileExtension; // .drl or .gbr, depending on format
420 bool m_unitsMetric; // true = mm, false = inches
421 ZEROS_FMT m_zeroFormat; // the zero format option for output file
422 DRILL_PRECISION m_precision; // The current coordinate precision (not
423 // used in decimal format).
424 double m_conversionUnits; // scaling factor to convert the board
425 // unites to Excellon/Gerber units (i.e
426 // inches or mm)
427 VECTOR2I m_offset; // Drill offset coordinates
428 bool m_merge_PTH_NPTH; // True to generate only one drill file
429 std::vector<HOLE_INFO> m_holeListBuffer; // Buffer containing holes
430 std::vector<DRILL_TOOL> m_toolListBuffer; // Buffer containing tools
431
432 PLOT_FORMAT m_mapFileFmt; // the format of the map drill file,
433 // if this map is needed
434 const PAGE_INFO* m_pageInfo; // the page info used to plot drill maps
435 // If NULL, use a A4 page format
436};
437
438#endif // #define GENDRILL_FILE_WRITER_BASE_H
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
Helper to handle drill precision format in excellon files.
DRILL_PRECISION(int l=2, int r=4)
HOLE_ATTRIBUTE m_HoleAttribute
DRILL_TOOL(int aDiameter, bool a_NotPlated)
Create drill maps and drill reports and drill files.
wxString GetDrillFileExt() const
Returns the file extension of the drill writer format.
std::vector< DRILL_LAYER_PAIR > getUniqueLayerPairs() const
Get unique layer pairs by examining the micro and blind_buried vias.
virtual const wxString getDrillFileName(DRILL_LAYER_PAIR aPair, bool aNPTH, bool aMerge_PTH_NPTH) const
void SetMapFileFormat(PLOT_FORMAT aMapFmt)
Initialize the format for the drill map file.
void buildHolesList(DRILL_LAYER_PAIR aLayerPair, bool aGenerateNPTH_list)
Create the list of holes and tools for a given board.
const wxString BuildFileFunctionAttributeString(DRILL_LAYER_PAIR aLayerPair, TYPE_FILE aHoleType, bool aCompatNCdrill=false) const
unsigned printToolSummary(OUTPUTFORMATTER &aOut, bool aSummaryNPTH) const
Print m_toolListBuffer[] tools to aOut and returns total hole count.
virtual const wxString getProtectionFileName(DRILL_LAYER_PAIR aPair, IPC4761_FEATURES aFeature) const
std::vector< HOLE_INFO > m_holeListBuffer
bool genDrillMapFile(const wxString &aFullFileName, PLOT_FORMAT aFormat)
Plot a map of drill marks for holes.
VECTOR2I GetOffset()
Return the plot offset (usually the position of the drill/place origin).
std::vector< DRILL_TOOL > m_toolListBuffer
bool GenDrillReportFile(const wxString &aFullFileName)
Create a plain text report file giving a list of drill values and drill count for through holes,...
const std::string layerPairName(DRILL_LAYER_PAIR aPair) const
bool CreateMapFilesSet(const wxString &aPlotDirectory, REPORTER *aReporter=nullptr)
Create the full set of map files for the board, in PS, PDF ... format (use SetMapFileFormat() to sele...
void SetMergeOption(bool aMerge)
Set the option to make separate drill files for PTH and NPTH.
const std::string layerName(PCB_LAYER_ID aLayer) const
bool plotDrillMarks(PLOTTER *aPlotter)
Write the drill marks in HPGL, POSTSCRIPT or other supported formats/.
void SetPageInfo(const PAGE_INFO *aPageInfo)
Set the page info used to plot drill maps.
Handle hole which must be drilled (diameter, position and layers).
PCB_LAYER_ID m_Hole_Bottom_Layer
PCB_LAYER_ID m_Hole_Top_Layer
HOLE_ATTRIBUTE m_HoleAttribute
BOARD_ITEM * m_ItemParent
An interface used to output 8 bit text in a convenient way.
Definition: richio.h:322
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition: page_info.h:59
Base plotter engine class.
Definition: plotter.h:105
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:73
static constexpr EDA_ANGLE ANGLE_0
Definition: eda_angle.h:401
std::pair< PCB_LAYER_ID, PCB_LAYER_ID > DRILL_LAYER_PAIR
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ B_Cu
Definition: layer_ids.h:65
@ F_Cu
Definition: layer_ids.h:64
PLOT_FORMAT
The set of supported output plot formats.
Definition: plotter.h:65