2009-11-14 22:15:22 +00:00
|
|
|
/************************************************************************/
|
|
|
|
/* Functions to create drill data used to create files and report files */
|
|
|
|
/************************************************************************/
|
2008-01-18 15:47:15 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "plot_common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "base_struct.h"
|
|
|
|
#include "colors.h"
|
|
|
|
#include "drawtxt.h"
|
|
|
|
#include "confirm.h"
|
|
|
|
#include "kicad_string.h"
|
2008-01-18 15:47:15 +00:00
|
|
|
#include "pcbnew.h"
|
|
|
|
#include "pcbplot.h"
|
|
|
|
#include "macros.h"
|
2009-10-28 11:48:47 +00:00
|
|
|
#include "class_board_design_settings.h"
|
2008-01-18 15:47:15 +00:00
|
|
|
#include "gendrill.h"
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
void GenDrillMapFile( BOARD* aPcb, FILE* aFile, const wxString& aFullFileName,
|
2009-08-29 10:20:48 +00:00
|
|
|
Ki_PageDescr* aSheet,
|
2008-01-18 15:47:15 +00:00
|
|
|
std::vector<HOLE_INFO> aHoleListBuffer,
|
|
|
|
std::vector<DRILL_TOOL> aToolListBuffer,
|
2009-06-28 16:50:42 +00:00
|
|
|
bool aUnit_Drill_is_Inch, int format,
|
2009-08-29 10:20:48 +00:00
|
|
|
const wxPoint& auxoffset )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
|
|
|
int x, y;
|
2009-06-28 16:50:42 +00:00
|
|
|
int plotX, plotY, TextWidth;
|
2009-08-29 10:20:48 +00:00
|
|
|
double scale = 1.0;
|
2008-01-18 15:47:15 +00:00
|
|
|
int intervalle = 0, CharSize = 0;
|
|
|
|
EDA_BaseStruct* PtStruct;
|
|
|
|
char line[1024];
|
|
|
|
int dX, dY;
|
|
|
|
wxPoint BoardCentre;
|
2009-08-29 10:20:48 +00:00
|
|
|
wxPoint offset;
|
2008-01-18 15:47:15 +00:00
|
|
|
wxString msg;
|
2009-08-29 10:20:48 +00:00
|
|
|
PLOTTER* plotter = NULL;
|
2008-01-18 15:47:15 +00:00
|
|
|
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
SetLocaleTo_C_standard(); // Use the standard notation for float numbers
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Calculate dimensions and center of PCB */
|
2008-01-18 15:47:15 +00:00
|
|
|
aPcb->ComputeBoundaryBox();
|
|
|
|
|
|
|
|
dX = aPcb->m_BoundaryBox.GetWidth();
|
|
|
|
dY = aPcb->m_BoundaryBox.GetHeight();
|
|
|
|
BoardCentre = aPcb->m_BoundaryBox.Centre();
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
// Calculate the scale for the format type, scale 1 in HPGL, drawing on
|
|
|
|
// an A4 sheet in PS, + text description of symbols
|
2008-01-18 15:47:15 +00:00
|
|
|
switch( format )
|
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
case PLOT_FORMAT_GERBER:
|
2009-08-29 10:20:48 +00:00
|
|
|
scale = 1;
|
|
|
|
offset = auxoffset;
|
|
|
|
plotter = new GERBER_PLOTTER();
|
|
|
|
plotter->set_viewport( offset, scale, 0 );
|
|
|
|
break;
|
2009-06-28 16:50:42 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
case PLOT_FORMAT_HPGL: /* Scale for HPGL format. */
|
2009-06-28 16:50:42 +00:00
|
|
|
{
|
|
|
|
offset.x = 0;
|
|
|
|
offset.y = 0;
|
2009-08-29 10:20:48 +00:00
|
|
|
scale = 1;
|
|
|
|
HPGL_PLOTTER* hpgl_plotter = new HPGL_PLOTTER;
|
|
|
|
plotter = hpgl_plotter;
|
|
|
|
hpgl_plotter->set_pen_number( g_pcb_plot_options.HPGL_Pen_Num );
|
|
|
|
hpgl_plotter->set_pen_speed( g_pcb_plot_options.HPGL_Pen_Speed );
|
|
|
|
hpgl_plotter->set_pen_overlap( 0 );
|
|
|
|
plotter->set_paper_size( aSheet );
|
|
|
|
plotter->set_viewport( offset, scale, 0 );
|
2009-06-28 16:50:42 +00:00
|
|
|
}
|
2009-08-29 10:20:48 +00:00
|
|
|
break;
|
2008-01-18 15:47:15 +00:00
|
|
|
|
|
|
|
case PLOT_FORMAT_POST:
|
|
|
|
{
|
2009-08-29 10:20:48 +00:00
|
|
|
Ki_PageDescr* SheetPS = &g_Sheet_A4;
|
|
|
|
wxSize SheetSize;
|
2008-01-18 15:47:15 +00:00
|
|
|
SheetSize.x = SheetPS->m_Size.x * U_PCB;
|
|
|
|
SheetSize.y = SheetPS->m_Size.y * U_PCB;
|
2009-08-29 10:20:48 +00:00
|
|
|
/* Keep size for drill legend */
|
2009-06-28 16:50:42 +00:00
|
|
|
double Xscale = (double) ( SheetSize.x * 0.8 ) / dX;
|
|
|
|
double Yscale = (double) ( SheetSize.y * 0.6 ) / dY;
|
|
|
|
|
|
|
|
scale = MIN( Xscale, Yscale );
|
|
|
|
|
2010-01-13 21:15:54 +00:00
|
|
|
offset.x = (int) ( (double) BoardCentre.x - ( (double) SheetSize.x / 2.0 ) / scale );
|
|
|
|
offset.y = (int) ( (double) BoardCentre.y - ( (double) SheetSize.y / 2.0 ) / scale );
|
2009-11-14 22:15:22 +00:00
|
|
|
offset.y += SheetSize.y / 8; /* offset to legend */
|
2009-08-29 10:20:48 +00:00
|
|
|
PS_PLOTTER* ps_plotter = new PS_PLOTTER;
|
|
|
|
plotter = ps_plotter;
|
|
|
|
ps_plotter->set_paper_size( SheetPS );
|
|
|
|
plotter->set_viewport( offset, scale, 0 );
|
2008-01-18 15:47:15 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-08-29 10:20:48 +00:00
|
|
|
|
2009-06-30 10:43:20 +00:00
|
|
|
case PLOT_FORMAT_DXF:
|
|
|
|
{
|
|
|
|
offset.x = 0;
|
|
|
|
offset.y = 0;
|
2009-08-29 10:20:48 +00:00
|
|
|
scale = 1;
|
|
|
|
DXF_PLOTTER* dxf_plotter = new DXF_PLOTTER;
|
|
|
|
plotter = dxf_plotter;
|
|
|
|
plotter->set_paper_size( aSheet );
|
|
|
|
plotter->set_viewport( offset, scale, 0 );
|
|
|
|
break;
|
2009-06-30 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
2008-01-18 15:47:15 +00:00
|
|
|
default:
|
2009-08-29 10:20:48 +00:00
|
|
|
wxASSERT( false );
|
2008-01-18 15:47:15 +00:00
|
|
|
}
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
plotter->set_creator( wxT( "PCBNEW" ) );
|
|
|
|
plotter->set_filename( aFullFileName );
|
|
|
|
plotter->set_default_line_width( 10 );
|
|
|
|
plotter->start_plot( aFile );
|
2008-01-18 15:47:15 +00:00
|
|
|
|
|
|
|
/* Draw items on edge layer */
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
for( PtStruct = aPcb->m_Drawings;
|
|
|
|
PtStruct != NULL;
|
|
|
|
PtStruct = PtStruct->Next() )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
|
|
|
switch( PtStruct->Type() )
|
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
case TYPE_DRAWSEGMENT:
|
2009-11-14 22:15:22 +00:00
|
|
|
PlotDrawSegment( plotter, (DRAWSEGMENT*) PtStruct, EDGE_LAYER,
|
|
|
|
FILLED );
|
2008-01-18 15:47:15 +00:00
|
|
|
break;
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
case TYPE_TEXTE:
|
2009-08-29 10:20:48 +00:00
|
|
|
PlotTextePcb( plotter, (TEXTE_PCB*) PtStruct, EDGE_LAYER, FILLED );
|
2008-01-18 15:47:15 +00:00
|
|
|
break;
|
|
|
|
|
2010-04-23 09:54:40 +00:00
|
|
|
case TYPE_DIMENSION:
|
|
|
|
PlotDimension( plotter, (DIMENSION*) PtStruct, EDGE_LAYER, FILLED );
|
2008-01-18 15:47:15 +00:00
|
|
|
break;
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
case TYPE_MIRE:
|
2009-08-29 10:20:48 +00:00
|
|
|
PlotMirePcb( plotter, (MIREPCB*) PtStruct, EDGE_LAYER, FILLED );
|
2008-01-18 15:47:15 +00:00
|
|
|
break;
|
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
case TYPE_MARKER_PCB: // do not draw
|
2008-01-18 15:47:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DisplayError( NULL, wxT( "WinEDA_DrillFrame::GenDrillMap() : Unexpected Draw Type" ) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-19 10:54:53 +00:00
|
|
|
// Set Drill Symbols width in 1/10000 mils
|
2009-08-29 10:20:48 +00:00
|
|
|
plotter->set_default_line_width( 10 );
|
|
|
|
plotter->set_current_line_width( -1 );
|
|
|
|
|
2009-03-19 10:54:53 +00:00
|
|
|
// Plot board outlines and drill map
|
2009-08-29 10:20:48 +00:00
|
|
|
Gen_Drill_PcbMap( aPcb, plotter, aHoleListBuffer, aToolListBuffer );
|
2009-03-19 10:54:53 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Print a list of symbols used. */
|
|
|
|
CharSize = 800; /* text size in 1/10000 mils */
|
|
|
|
double CharScale = 1.0 / scale; /* real scale will be CharScale
|
|
|
|
* scale_x, because the global
|
|
|
|
* plot scale is scale_x */
|
|
|
|
TextWidth = (int) ( (CharSize * CharScale) / 10 ); // Set text width (thickness)
|
2009-08-29 10:20:48 +00:00
|
|
|
intervalle = (int) ( CharSize * CharScale ) + TextWidth;
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Trace information. */
|
2010-01-13 21:15:54 +00:00
|
|
|
plotX = (int) ( (double) aPcb->m_BoundaryBox.GetX() + 200.0 * CharScale );
|
2009-06-28 16:50:42 +00:00
|
|
|
plotY = aPcb->m_BoundaryBox.GetBottom() + intervalle;
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
/* Plot title "Info" */
|
|
|
|
wxString Text = wxT( "Drill Map:" );
|
2009-11-14 22:15:22 +00:00
|
|
|
plotter->text( wxPoint( plotX, plotY ), BLACK, Text, 0,
|
|
|
|
wxSize( (int) ( CharSize * CharScale ),
|
|
|
|
(int) ( CharSize * CharScale ) ),
|
2009-08-29 10:20:48 +00:00
|
|
|
GR_TEXT_HJUSTIFY_LEFT, GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
TextWidth, false, false );
|
2009-06-28 16:50:42 +00:00
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
for( unsigned ii = 0; ii < aToolListBuffer.size(); ii++ )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
|
|
|
int plot_diam;
|
|
|
|
if( aToolListBuffer[ii].m_TotalCount == 0 )
|
|
|
|
continue;
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
plotY += intervalle;
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
plot_diam = (int) ( aToolListBuffer[ii].m_Diameter );
|
2010-01-13 21:15:54 +00:00
|
|
|
x = (int) ( (double) plotX - 200.0 * CharScale - (double)plot_diam / 2.0 );
|
|
|
|
y = (int) ( (double) plotY + (double) CharSize * CharScale );
|
2009-06-28 16:50:42 +00:00
|
|
|
plotter->marker( wxPoint( x, y ), plot_diam, ii );
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Trace the legends. */
|
2009-08-29 10:20:48 +00:00
|
|
|
|
|
|
|
// List the diameter of each drill in the selected Drill Unit,
|
|
|
|
// and then its diameter in the other Drill Unit.
|
|
|
|
if( aUnit_Drill_is_Inch )
|
|
|
|
sprintf( line, "%2.3f\" / %2.2fmm ",
|
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.0001,
|
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.00254 );
|
|
|
|
else
|
|
|
|
sprintf( line, "%2.2fmm / %2.3f\" ",
|
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.00254,
|
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.0001 );
|
|
|
|
msg = CONV_FROM_UTF8( line );
|
|
|
|
|
|
|
|
// Now list how many holes and ovals are associated with each drill.
|
|
|
|
if( ( aToolListBuffer[ii].m_TotalCount == 1 )
|
|
|
|
&& ( aToolListBuffer[ii].m_OvalCount == 0 ) )
|
|
|
|
sprintf( line, "(1 hole)" );
|
|
|
|
else if( aToolListBuffer[ii].m_TotalCount == 1 ) // && ( aToolListBuffer[ii]m_OvalCount == 1 )
|
|
|
|
sprintf( line, "(1 slot)" );
|
|
|
|
else if( aToolListBuffer[ii].m_OvalCount == 0 )
|
|
|
|
sprintf( line, "(%d holes)",
|
|
|
|
aToolListBuffer[ii].m_TotalCount );
|
|
|
|
else if( aToolListBuffer[ii].m_OvalCount == 1 )
|
|
|
|
sprintf( line, "(%d holes + 1 slot)",
|
|
|
|
aToolListBuffer[ii].m_TotalCount - 1 );
|
|
|
|
else // if ( aToolListBuffer[ii]m_OvalCount > 1 )
|
|
|
|
sprintf( line, "(%d holes + %d slots)",
|
|
|
|
aToolListBuffer[ii].m_TotalCount -
|
|
|
|
aToolListBuffer[ii].m_OvalCount,
|
|
|
|
aToolListBuffer[ii].m_OvalCount );
|
|
|
|
msg += CONV_FROM_UTF8( line );
|
|
|
|
plotter->text( wxPoint( plotX, y ), BLACK,
|
|
|
|
msg,
|
|
|
|
0, wxSize( (int) ( CharSize * CharScale ), (int) ( CharSize * CharScale ) ),
|
|
|
|
GR_TEXT_HJUSTIFY_LEFT, GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
TextWidth, false, false );
|
|
|
|
|
|
|
|
intervalle = (int) ( CharSize * CharScale ) + TextWidth;
|
|
|
|
intervalle = (int) ( intervalle * 1.2 );
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
if( intervalle < (plot_diam + 200 + TextWidth) )
|
|
|
|
intervalle = plot_diam + 200 + TextWidth;
|
2008-01-18 15:47:15 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
plotter->end_plot();
|
|
|
|
delete plotter;
|
2009-08-29 10:20:48 +00:00
|
|
|
SetLocaleTo_Default(); // Revert to local notation for float numbers
|
2008-01-18 15:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Creates the drill map aFile in HPGL or POSTSCRIPT format
|
|
|
|
* @param aPcb BOARD
|
|
|
|
* @param aHoleListBuffer = std::vector<HOLE_INFO> list of holes descriptors
|
|
|
|
* @param aToolListBuffer = std::vector<DRILL_TOOL> drill list buffer
|
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void Gen_Drill_PcbMap( BOARD* aPcb, PLOTTER* plotter,
|
|
|
|
std::vector<HOLE_INFO>& aHoleListBuffer,
|
|
|
|
std::vector<DRILL_TOOL>& aToolListBuffer )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
|
|
|
wxPoint pos;
|
|
|
|
|
|
|
|
/* create the drill list */
|
|
|
|
if( aToolListBuffer.size() > 13 )
|
|
|
|
{
|
2009-04-17 08:51:02 +00:00
|
|
|
DisplayInfoMessage( NULL,
|
2009-08-29 10:20:48 +00:00
|
|
|
_(
|
|
|
|
" Drill map: Too many diameter values to draw to draw one symbol per drill value (max 13)\nPlot uses circle shape for some drill values" ),
|
|
|
|
10 );
|
2008-01-18 15:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Plot the drill map:
|
|
|
|
for( unsigned ii = 0; ii < aHoleListBuffer.size(); ii++ )
|
|
|
|
{
|
|
|
|
pos.x = aHoleListBuffer[ii].m_Hole_Pos_X;
|
|
|
|
pos.y = aHoleListBuffer[ii].m_Hole_Pos_Y;
|
|
|
|
|
2009-08-29 10:20:48 +00:00
|
|
|
/* Always plot the drill symbol (for slots identifies the needed
|
|
|
|
* cutter!) */
|
|
|
|
plotter->marker( pos, aHoleListBuffer[ii].m_Hole_Diameter,
|
|
|
|
aHoleListBuffer[ii].m_Tool_Reference - 1 );
|
2009-06-28 16:50:42 +00:00
|
|
|
if( aHoleListBuffer[ii].m_Hole_Shape != 0 )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
|
|
|
wxSize oblong_size;
|
|
|
|
oblong_size.x = aHoleListBuffer[ii].m_Hole_SizeX;
|
|
|
|
oblong_size.y = aHoleListBuffer[ii].m_Hole_SizeY;
|
2009-08-29 10:20:48 +00:00
|
|
|
plotter->flash_pad_oval( pos, oblong_size,
|
|
|
|
aHoleListBuffer[ii].m_Hole_Orient, FILAIRE );
|
|
|
|
}
|
2008-01-18 15:47:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a list of drill values and drill count
|
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void GenDrillReportFile( FILE* aFile, BOARD* aPcb,
|
|
|
|
const wxString& aBoardFilename,
|
|
|
|
bool aUnit_Drill_is_Inch,
|
|
|
|
std::vector<HOLE_INFO>& aHoleListBuffer,
|
|
|
|
std::vector<DRILL_TOOL>& aToolListBuffer )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
|
|
|
unsigned TotalHoleCount;
|
|
|
|
char line[1024];
|
2009-12-07 03:46:13 +00:00
|
|
|
int layer1 = LAYER_N_BACK;
|
|
|
|
int layer2 = LAYER_N_FRONT;
|
2008-01-25 16:47:36 +00:00
|
|
|
bool gen_through_holes = true;
|
|
|
|
|
2008-01-18 15:47:15 +00:00
|
|
|
|
|
|
|
fprintf( aFile, "Drill report for %s\n", CONV_TO_UTF8( aBoardFilename ) );
|
|
|
|
fprintf( aFile, "Created on %s\n", DateAndTime( line ) );
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
// List which Drill Unit option had been selected for the associated
|
|
|
|
// drill aFile.
|
2008-01-18 15:47:15 +00:00
|
|
|
if( aUnit_Drill_is_Inch )
|
|
|
|
fputs( "Selected Drill Unit: Imperial (\")\n\n", aFile );
|
|
|
|
else
|
|
|
|
fputs( "Selected Drill Unit: Metric (mm)\n\n", aFile );
|
|
|
|
|
2008-01-25 16:47:36 +00:00
|
|
|
/* build hole lists:
|
|
|
|
* 1 - through holes
|
|
|
|
* 2 - for partial holes only: by layer pair
|
|
|
|
*/
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2008-01-25 16:47:36 +00:00
|
|
|
for( ; ; )
|
2008-01-18 15:47:15 +00:00
|
|
|
{
|
2008-01-25 16:47:36 +00:00
|
|
|
Build_Holes_List( aPcb,
|
|
|
|
aHoleListBuffer,
|
|
|
|
aToolListBuffer,
|
|
|
|
layer1,
|
|
|
|
layer2,
|
|
|
|
gen_through_holes ? false : true );
|
|
|
|
|
|
|
|
TotalHoleCount = 0;
|
|
|
|
|
|
|
|
if( gen_through_holes )
|
2008-03-22 05:55:06 +00:00
|
|
|
{
|
2008-01-25 16:47:36 +00:00
|
|
|
sprintf( line, "Drill report for through holes :\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
}
|
2008-01-18 15:47:15 +00:00
|
|
|
else
|
2008-03-22 05:55:06 +00:00
|
|
|
{
|
2009-12-07 03:46:13 +00:00
|
|
|
if( layer1 == LAYER_N_BACK ) // First partial hole list
|
2008-03-22 05:55:06 +00:00
|
|
|
{
|
2009-08-29 10:20:48 +00:00
|
|
|
sprintf( line, "Drill report for buried and blind vias :\n\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
fputs( line, aFile );
|
|
|
|
}
|
|
|
|
|
2008-01-25 16:47:36 +00:00
|
|
|
sprintf( line, "Drill report for holes from layer %s to layer %s\n",
|
2009-08-29 10:20:48 +00:00
|
|
|
CONV_TO_UTF8( aPcb->GetLayerName( layer1 ) ),
|
|
|
|
CONV_TO_UTF8( aPcb->GetLayerName( layer2 ) ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
}
|
2008-01-25 16:47:36 +00:00
|
|
|
|
2008-01-18 15:47:15 +00:00
|
|
|
fputs( line, aFile );
|
|
|
|
|
2008-01-25 16:47:36 +00:00
|
|
|
for( unsigned ii = 0; ii < aToolListBuffer.size(); ii++ )
|
|
|
|
{
|
|
|
|
// List the tool number assigned to each drill,
|
|
|
|
// then its diameter in the selected Drill Unit,
|
|
|
|
// and then its diameter in the other Drill Unit.
|
|
|
|
if( aUnit_Drill_is_Inch )
|
|
|
|
sprintf( line, "T%d %2.3f\" %2.2fmm ",
|
|
|
|
ii + 1,
|
2009-06-28 16:50:42 +00:00
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.0001,
|
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.00254 );
|
2008-01-25 16:47:36 +00:00
|
|
|
else
|
|
|
|
sprintf( line, "T%d %2.2fmm %2.3f\" ",
|
|
|
|
ii + 1,
|
2009-06-28 16:50:42 +00:00
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.00254,
|
|
|
|
double (aToolListBuffer[ii].m_Diameter) * 0.0001 );
|
2008-01-25 16:47:36 +00:00
|
|
|
fputs( line, aFile );
|
|
|
|
|
|
|
|
// Now list how many holes and ovals are associated with each drill.
|
|
|
|
if( ( aToolListBuffer[ii].m_TotalCount == 1 )
|
|
|
|
&& ( aToolListBuffer[ii].m_OvalCount == 0 ) )
|
|
|
|
sprintf( line, "(1 hole)\n" );
|
|
|
|
else if( aToolListBuffer[ii].m_TotalCount == 1 )
|
|
|
|
sprintf( line, "(1 hole) (with 1 oblong)\n" );
|
|
|
|
else if( aToolListBuffer[ii].m_OvalCount == 0 )
|
|
|
|
sprintf( line, "(%d holes)\n",
|
|
|
|
aToolListBuffer[ii].m_TotalCount );
|
|
|
|
else if( aToolListBuffer[ii].m_OvalCount == 1 )
|
|
|
|
sprintf( line, "(%d holes) (with 1 oblong)\n",
|
|
|
|
aToolListBuffer[ii].m_TotalCount );
|
|
|
|
else // if ( buffer[ii]m_OvalCount > 1 )
|
|
|
|
sprintf( line, "(%d holes) (with %d oblongs)\n",
|
|
|
|
aToolListBuffer[ii].m_TotalCount,
|
|
|
|
aToolListBuffer[ii].m_OvalCount );
|
|
|
|
fputs( line, aFile );
|
|
|
|
|
|
|
|
TotalHoleCount += aToolListBuffer[ii].m_TotalCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintf( line, "\ntotal holes count %d\n\n\n", TotalHoleCount );
|
2008-01-18 15:47:15 +00:00
|
|
|
fputs( line, aFile );
|
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
if( aPcb->GetCopperLayerCount() <= 2 )
|
2008-01-25 16:47:36 +00:00
|
|
|
break;
|
2008-01-18 15:47:15 +00:00
|
|
|
|
2008-01-25 16:47:36 +00:00
|
|
|
if( gen_through_holes )
|
|
|
|
layer2 = layer1 + 1;
|
|
|
|
else
|
|
|
|
{
|
2009-12-07 03:46:13 +00:00
|
|
|
if( layer2 >= LAYER_N_FRONT ) // no more layer pair to consider
|
2008-01-25 16:47:36 +00:00
|
|
|
break;
|
2009-11-14 22:15:22 +00:00
|
|
|
layer1++; layer2++; // use next layer pair
|
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
if( layer2 == aPcb->GetCopperLayerCount() - 1 )
|
2009-12-07 03:46:13 +00:00
|
|
|
layer2 = LAYER_N_FRONT; // the last layer is always the
|
2009-11-14 22:15:22 +00:00
|
|
|
// component layer
|
2008-01-25 16:47:36 +00:00
|
|
|
}
|
|
|
|
gen_through_holes = false;
|
|
|
|
}
|
2008-01-18 15:47:15 +00:00
|
|
|
|
|
|
|
fclose( aFile );
|
|
|
|
}
|