68 bool aGenerateNPTH_list )
75 wxASSERT( aLayerPair.first < aLayerPair.second );
78 if( ! aGenerateNPTH_list )
86 int hole_sz =
via->GetDrillValue();
146 for(
PAD*
pad : footprint->Pads() )
150 if( !aGenerateNPTH_list &&
pad->GetAttribute() == PAD_ATTRIB::NPTH )
153 if( aGenerateNPTH_list &&
pad->GetAttribute() != PAD_ATTRIB::NPTH )
157 if(
pad->GetDrillSize().x == 0 )
163 ? HOLE_ATTRIBUTE::HOLE_MECHANICAL
164 : HOLE_ATTRIBUTE::HOLE_PAD;
172 if(
pad->GetDrillShape() != PAD_DRILL_SHAPE::CIRCLE &&
173 pad->GetDrillSizeX() !=
pad->GetDrillSizeY() )
193 bool last_notplated_opt =
false;
240 std::set<DRILL_LAYER_PAIR> unique;
243 for(
int i = 0; i < vias.
GetCount(); ++i )
247 v->
LayerPair( &layer_pair.first, &layer_pair.second );
252 unique.insert( layer_pair );
255 std::vector<DRILL_LAYER_PAIR> ret;
260 ret.push_back( pair );
278 int ly_id = ( aLayer -
B_Cu ) / 2;
287 std::string ret =
layerName( aPair.first );
296 bool aMerge_PTH_NPTH )
const
303 extend = wxT(
"-NPTH" );
306 if( !aMerge_PTH_NPTH )
307 extend = wxT(
"-PTH" );
318 fn.SetName( fn.GetName() + extend );
321 wxString ret = fn.GetFullName();
336 case IPC4761_FEATURES::FILLED:
337 extend << wxT(
"-filling-" );
340 case IPC4761_FEATURES::CAPPED:
341 extend << wxT(
"-capping-" );
344 case IPC4761_FEATURES::COVERED_BACK:
345 extend << wxT(
"-covering-" );
348 case IPC4761_FEATURES::COVERED_FRONT:
349 extend << wxT(
"-covering-" );
352 case IPC4761_FEATURES::PLUGGED_BACK:
353 extend << wxT(
"-plugging-" );
356 case IPC4761_FEATURES::PLUGGED_FRONT:
357 extend << wxT(
"-plugging-" );
360 case IPC4761_FEATURES::TENTED_BACK:
361 extend << wxT(
"-tenting-" );
364 case IPC4761_FEATURES::TENTED_FRONT:
365 extend << wxT(
"-tenting-" );
372 fn.SetName( fn.GetName() + extend );
375 wxString ret = fn.GetFullName();
391 hole_sets.emplace_back(
F_Cu,
B_Cu );
393 for( std::vector<DRILL_LAYER_PAIR>::const_iterator it = hole_sets.begin();
394 it != hole_sets.end(); ++it )
409 fn.SetPath( aPlotDirectory );
411 fn.SetExt( wxEmptyString );
412 wxString fullfilename = fn.GetFullPath() + wxT(
"-drl_map" );
421 msg.Printf(
_(
"Failed to create file '%s'." ), fullfilename );
431 msg.Printf(
_(
"Created file '%s'." ), fullfilename );
444 bool aCompatNCdrill )
const
451 text = wxT(
"; #@! " );
455 text << wxT(
"TF.FileFunction," );
458 text << wxT(
"NonPlated," );
460 text << wxT(
"MixedPlating," );
462 text << wxT(
"Plated," );
464 int layer1 = aLayerPair.first;
465 int layer2 = aLayerPair.second;
475 layer1 = ( ( layer1 -
B_Cu ) / 2 ) + 1;
480 layer2 = ( ( layer2 -
B_Cu ) / 2) + 1;
482 text << layer1 << wxT(
"," ) << layer2;
489 text << wxT(
",NPTH" );
494 else if( layer1 == toplayer && layer2 == bottomlayer )
495 text << wxT(
",PTH" );
496 else if( layer1 == toplayer || layer2 == bottomlayer )
497 text << wxT(
",Blind" );
499 text << wxT(
",Buried" );
510 bool hasOblong =
false;
511 bool hasDrill =
false;
523 if( hasOblong && hasDrill )
524 text << wxT(
",Mixed" );
526 text << wxT(
",Drill" );
528 text << wxT(
",Rout" );
int GetCopperLayerCount() const
const FOOTPRINTS & Footprints() const
const TRACKS & Tracks() const
const wxString & GetFileName() const
int GetCount() const
Return the number of objects in the list.
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 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
wxString m_drillFileExtension
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.
std::vector< DRILL_TOOL > m_toolListBuffer
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...
const std::string layerName(PCB_LAYER_ID aLayer) const
int getHolesCount() const
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
Collect all BOARD_ITEM objects of a given set of KICAD_T type(s).
void Collect(BOARD_ITEM *aBoard, const std::vector< KICAD_T > &aTypes)
Collect BOARD_ITEM objects using this class's Inspector method, which does the collection.
void LayerPair(PCB_LAYER_ID *top_layer, PCB_LAYER_ID *bottom_layer) const
Return the 2 layers used by the via (the via actually uses all layers between these 2 layers)
A pure virtual class used to derive REPORTER objects from.
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
wxString GetDefaultPlotExtension(PLOT_FORMAT aFormat)
Return the default plot extension for a format.
static constexpr EDA_ANGLE ANGLE_0
static bool cmpHoleSorting(const HOLE_INFO &a, const HOLE_INFO &b)
helper classes to handle hole info for drill files generators.
#define USE_ATTRIB_FOR_HOLES
std::pair< PCB_LAYER_ID, PCB_LAYER_ID > DRILL_LAYER_PAIR
PCB_LAYER_ID
A quick note on layer IDs:
int StrPrintf(std::string *result, const char *format,...)
This is like sprintf() but the output is appended to a std::string instead of to a character array.
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)