2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file export_to_pcbnew.cpp
|
2011-09-30 18:15:37 +00:00
|
|
|
* @brief Export the layers to Pcbnew.
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <common.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
// #include <class_drawpanel.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <gestfich.h>
|
|
|
|
#include <trigo.h>
|
|
|
|
#include <gerbview.h>
|
|
|
|
#include <class_gerber_draw_item.h>
|
|
|
|
#include <select_layers_to_pcb.h>
|
2012-04-18 07:07:13 +00:00
|
|
|
#include <build_version.h>
|
|
|
|
#include <wildcards_and_files_ext.h>
|
2011-04-23 19:01:41 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
#define TO_PCB_UNIT( x ) KiROUND( x / IU_PER_DECIMILS )
|
|
|
|
|
|
|
|
#define TRACK_TYPE 0
|
|
|
|
#define VIA_TYPE 1
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
/* A helper class to export a Gerber set of files to Pcbnew
|
2012-05-04 17:44:42 +00:00
|
|
|
*/
|
2011-04-23 19:01:41 +00:00
|
|
|
class GBR_TO_PCB_EXPORTER
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
private:
|
|
|
|
GERBVIEW_FRAME* m_gerbview_frame; // the main gerber frame
|
|
|
|
wxString m_pcb_file_name; // BOARD file to write to
|
|
|
|
FILE* m_fp; // the board file
|
|
|
|
int m_pcbCopperLayersCount;
|
|
|
|
std::vector<wxPoint> m_vias_coordinates; // list of already generated vias,
|
|
|
|
// used to export only once a via
|
|
|
|
// having a given coordinate
|
2011-04-23 19:01:41 +00:00
|
|
|
public:
|
2012-04-17 02:58:03 +00:00
|
|
|
GBR_TO_PCB_EXPORTER( GERBVIEW_FRAME* aFrame, const wxString& aFileName );
|
2011-04-23 19:01:41 +00:00
|
|
|
~GBR_TO_PCB_EXPORTER();
|
2012-04-17 02:58:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ExportPcb
|
2012-05-04 17:44:42 +00:00
|
|
|
* saves a board from a set of Gerber images.
|
2012-04-17 02:58:03 +00:00
|
|
|
*/
|
2012-05-04 17:44:42 +00:00
|
|
|
bool ExportPcb( int* LayerLookUpTable );
|
2011-04-23 19:01:41 +00:00
|
|
|
|
|
|
|
private:
|
2012-05-04 17:44:42 +00:00
|
|
|
/**
|
|
|
|
* Function export_non_copper_item
|
|
|
|
* write a non copper line or arc to the board file.
|
|
|
|
* @param aGbrItem = the Gerber item (line, arc) to export
|
|
|
|
* @param aLayer = the technical layer to use
|
|
|
|
*/
|
|
|
|
void export_non_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function export_copper_item
|
|
|
|
* write a track or via) to the board file.
|
|
|
|
* @param aGbrItem = the Gerber item (line, arc, flashed) to export
|
|
|
|
* @param aLayer = the copper layer to use
|
|
|
|
*/
|
|
|
|
void export_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function export_flashed_copper_item
|
|
|
|
* write a via to the board file (always uses a via through).
|
|
|
|
* @param aGbrItem = the flashed Gerber item to export
|
|
|
|
*/
|
2012-09-12 17:28:55 +00:00
|
|
|
void export_flashed_copper_item( GERBER_DRAW_ITEM* aGbrItem );
|
2012-05-04 17:44:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function export_segline_copper_item
|
|
|
|
* write a track (not via) to the board file.
|
|
|
|
* @param aGbrItem = the Gerber item (line only) to export
|
|
|
|
* @param aLayer = the copper layer to use
|
|
|
|
*/
|
|
|
|
void export_segline_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function export_segarc_copper_item
|
|
|
|
* write a set of tracks (arcs are approximated by track segments)
|
|
|
|
* to the board file.
|
|
|
|
* @param aGbrItem = the Gerber item (arc only) to export
|
|
|
|
* @param aLayer = the copper layer to use
|
|
|
|
*/
|
|
|
|
void export_segarc_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* function writePcbLineItem
|
|
|
|
* basic write function to write a DRAWSEGMENT item or a TRACK/VIA item
|
|
|
|
* to the board file
|
|
|
|
*/
|
|
|
|
void writePcbLineItem( int aShape, int aType, wxPoint& aStart, wxPoint& aEnd,
|
|
|
|
int aWidth, int aLayer, int aDrill, int aAngle = 0 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* function writePcbHeader
|
|
|
|
* Write a very basic header to the board file
|
|
|
|
*/
|
|
|
|
void writePcbHeader();
|
2011-04-23 19:01:41 +00:00
|
|
|
};
|
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-04-17 02:58:03 +00:00
|
|
|
GBR_TO_PCB_EXPORTER::GBR_TO_PCB_EXPORTER( GERBVIEW_FRAME* aFrame, const wxString& aFileName )
|
2011-04-23 19:01:41 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
m_gerbview_frame = aFrame;
|
|
|
|
m_pcb_file_name = aFileName;
|
2011-04-23 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
GBR_TO_PCB_EXPORTER::~GBR_TO_PCB_EXPORTER()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
/* Export data in Pcbnew format
|
2011-09-09 19:30:59 +00:00
|
|
|
* remember Pcbnew uses a Y reversed axis, so we must negate all Y coordinates
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2011-03-12 09:50:21 +00:00
|
|
|
void GERBVIEW_FRAME::ExportDataInPcbnewFormat( wxCommandEvent& event )
|
2007-05-28 18:09:49 +00:00
|
|
|
{
|
2011-11-24 19:57:41 +00:00
|
|
|
int layercount = 0;
|
2007-10-07 03:08:24 +00:00
|
|
|
|
2011-11-24 19:57:41 +00:00
|
|
|
// Count the Gerber layers which are actually currently used
|
2012-05-04 17:44:42 +00:00
|
|
|
for( int ii = 0; ii < GERBVIEW_LAYER_COUNT; ii++ )
|
2007-11-22 00:40:17 +00:00
|
|
|
{
|
2008-11-08 06:44:07 +00:00
|
|
|
if( g_GERBER_List[ii] != NULL )
|
2011-11-24 19:57:41 +00:00
|
|
|
layercount++;
|
2007-10-07 03:08:24 +00:00
|
|
|
}
|
|
|
|
|
2011-11-24 19:57:41 +00:00
|
|
|
if( layercount == 0 )
|
2007-10-07 03:08:24 +00:00
|
|
|
{
|
2009-11-09 14:00:22 +00:00
|
|
|
DisplayInfoMessage( this,
|
2011-11-08 16:37:25 +00:00
|
|
|
_( "None of the Gerber layers contain any data" ) );
|
2007-10-07 03:08:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
wxString fileName;
|
|
|
|
wxString path = wxGetCwd();;
|
2012-04-18 07:07:13 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
wxFileDialog filedlg( this, _( "Board file name:" ),
|
|
|
|
path, fileName, LegacyPcbFileWildcard,
|
|
|
|
wxFD_OPEN );
|
2012-04-18 07:07:13 +00:00
|
|
|
|
|
|
|
if( filedlg.ShowModal() == wxID_CANCEL )
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
|
2012-04-18 07:07:13 +00:00
|
|
|
fileName = filedlg.GetPath();
|
|
|
|
|
2011-04-26 08:30:16 +00:00
|
|
|
/* Install a dialog frame to choose the mapping
|
2011-09-30 18:15:37 +00:00
|
|
|
* between gerber layers and Pcbnew layers
|
2011-04-26 08:30:16 +00:00
|
|
|
*/
|
2012-04-18 07:07:13 +00:00
|
|
|
LAYERS_MAP_DIALOG* layerdlg = new LAYERS_MAP_DIALOG( this );
|
|
|
|
int ok = layerdlg->ShowModal();
|
|
|
|
layerdlg->Destroy();
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-26 08:30:16 +00:00
|
|
|
if( ok != wxID_OK )
|
|
|
|
return;
|
|
|
|
|
2012-04-17 02:58:03 +00:00
|
|
|
if( wxFileExists( fileName ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2011-04-26 08:30:16 +00:00
|
|
|
if( !IsOK( this, _( "Ok to change the existing file ?" ) ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-04-26 08:30:16 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
GBR_TO_PCB_EXPORTER gbr_exporter( this, fileName );
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-04-18 07:07:13 +00:00
|
|
|
gbr_exporter.ExportPcb( layerdlg->GetLayersLookUpTable() );
|
2007-05-28 18:09:49 +00:00
|
|
|
}
|
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
bool GBR_TO_PCB_EXPORTER::ExportPcb( int* LayerLookUpTable )
|
2007-05-28 18:09:49 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
m_fp = wxFopen( m_pcb_file_name, wxT( "wt" ) );
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
if( m_fp == NULL )
|
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
msg.Printf( _( "Cannot create file <%s>" ), GetChars( m_pcb_file_name ) );
|
|
|
|
DisplayError( m_gerbview_frame, msg );
|
|
|
|
return false;
|
2011-04-23 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
m_pcbCopperLayersCount = LayerLookUpTable[GERBVIEW_LAYER_COUNT];
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
writePcbHeader();
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
// create an image of gerber data
|
2012-05-04 17:44:42 +00:00
|
|
|
// First: non copper layers:
|
|
|
|
GERBER_DRAW_ITEM* gerb_item = m_gerbview_frame->GetItemsList();
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
for( ; gerb_item; gerb_item = gerb_item->Next() )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2010-09-29 09:25:48 +00:00
|
|
|
int layer = gerb_item->GetLayer();
|
2007-08-23 04:28:46 +00:00
|
|
|
int pcb_layer_number = LayerLookUpTable[layer];
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2007-11-22 00:40:17 +00:00
|
|
|
if( pcb_layer_number < 0 || pcb_layer_number > LAST_NO_COPPER_LAYER )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
2008-11-08 06:44:07 +00:00
|
|
|
|
2007-11-01 05:27:31 +00:00
|
|
|
if( pcb_layer_number > LAST_COPPER_LAYER )
|
2011-04-23 19:01:41 +00:00
|
|
|
export_non_copper_item( gerb_item, pcb_layer_number );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
// Copper layers
|
|
|
|
fprintf( m_fp, "$TRACK\n" );
|
|
|
|
gerb_item = m_gerbview_frame->GetItemsList();
|
2008-11-08 06:44:07 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
for( ; gerb_item; gerb_item = gerb_item->Next() )
|
2012-04-17 02:58:03 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
int layer = gerb_item->GetLayer();
|
|
|
|
int pcb_layer_number = LayerLookUpTable[layer];
|
2012-04-18 07:07:13 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
if( pcb_layer_number < 0 || pcb_layer_number > LAST_COPPER_LAYER )
|
|
|
|
continue;
|
2012-04-18 07:07:13 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
else
|
|
|
|
export_copper_item( gerb_item, pcb_layer_number );
|
2012-04-17 02:58:03 +00:00
|
|
|
}
|
2011-04-23 19:01:41 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
fprintf( m_fp, "$EndTRACK\n" );
|
|
|
|
fprintf( m_fp, "$EndBOARD\n" );
|
|
|
|
|
|
|
|
fclose( m_fp );
|
|
|
|
m_fp = NULL;
|
2011-04-23 19:01:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-17 02:58:03 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
void GBR_TO_PCB_EXPORTER::export_non_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
#define SEG_SHAPE 0
|
|
|
|
#define ARC_SHAPE 2
|
|
|
|
int shape = SEG_SHAPE;
|
|
|
|
int angle = 0;
|
|
|
|
wxPoint seg_start, seg_end;
|
2011-04-23 19:01:41 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
seg_start = aGbrItem->m_Start;
|
|
|
|
seg_end = aGbrItem->m_End;
|
2011-04-23 19:01:41 +00:00
|
|
|
|
|
|
|
if( aGbrItem->m_Shape == GBR_ARC )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
double a = atan2( (double) ( aGbrItem->m_Start.y - aGbrItem->m_ArcCentre.y),
|
|
|
|
(double) ( aGbrItem->m_Start.x - aGbrItem->m_ArcCentre.x ) );
|
|
|
|
double b = atan2( (double) ( aGbrItem->m_End.y - aGbrItem->m_ArcCentre.y ),
|
|
|
|
(double) ( aGbrItem->m_End.x - aGbrItem->m_ArcCentre.x ) );
|
2011-04-23 19:01:41 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
shape = ARC_SHAPE;
|
|
|
|
angle = KiROUND( (a - b) / M_PI * 1800.0 );
|
|
|
|
seg_start = aGbrItem->m_ArcCentre;
|
2011-10-01 19:24:27 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
if( angle < 0 )
|
2011-04-23 19:01:41 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
NEGATE( angle );
|
|
|
|
seg_end = aGbrItem->m_Start;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-09 19:30:59 +00:00
|
|
|
// Reverse Y axis:
|
2012-05-04 17:44:42 +00:00
|
|
|
NEGATE( seg_start.y );
|
|
|
|
NEGATE( seg_end.y );
|
|
|
|
writePcbLineItem( shape, 0, seg_start, seg_end, aGbrItem->m_Size.x, aLayer, -2, angle );
|
2011-04-23 19:01:41 +00:00
|
|
|
}
|
2008-11-08 06:44:07 +00:00
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
void GBR_TO_PCB_EXPORTER::export_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer )
|
|
|
|
{
|
|
|
|
switch( aGbrItem->m_Shape )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
case GBR_SPOT_CIRCLE:
|
|
|
|
case GBR_SPOT_RECT:
|
|
|
|
case GBR_SPOT_OVAL:
|
|
|
|
// replace spots with vias when possible
|
|
|
|
export_flashed_copper_item( aGbrItem );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GBR_ARC:
|
|
|
|
export_segarc_copper_item( aGbrItem, aLayer );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
export_segline_copper_item( aGbrItem, aLayer );
|
|
|
|
break;
|
2011-04-23 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
void GBR_TO_PCB_EXPORTER::export_segline_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
wxPoint seg_start, seg_end;
|
|
|
|
|
|
|
|
seg_start = aGbrItem->m_Start;
|
|
|
|
seg_end = aGbrItem->m_End;
|
2011-09-09 19:30:59 +00:00
|
|
|
|
|
|
|
// Reverse Y axis:
|
2012-05-04 17:44:42 +00:00
|
|
|
NEGATE( seg_start.y );
|
|
|
|
NEGATE( seg_end.y );
|
2011-09-09 19:30:59 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
writePcbLineItem( 0, TRACK_TYPE, seg_start, seg_end, aGbrItem->m_Size.x, aLayer, -1 );
|
2011-04-23 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
void GBR_TO_PCB_EXPORTER::export_segarc_copper_item( GERBER_DRAW_ITEM* aGbrItem, int aLayer )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
double a = atan2( (double) ( aGbrItem->m_Start.y - aGbrItem->m_ArcCentre.y ),
|
|
|
|
(double) ( aGbrItem->m_Start.x - aGbrItem->m_ArcCentre.x ) );
|
|
|
|
double b = atan2( (double) ( aGbrItem->m_End.y - aGbrItem->m_ArcCentre.y ),
|
|
|
|
(double) ( aGbrItem->m_End.x - aGbrItem->m_ArcCentre.x ) );
|
|
|
|
|
|
|
|
wxPoint start = aGbrItem->m_Start;
|
|
|
|
wxPoint end = aGbrItem->m_End;
|
2011-04-23 19:01:41 +00:00
|
|
|
|
|
|
|
/* Because Pcbnew does not know arcs in tracks,
|
2012-01-13 18:35:46 +00:00
|
|
|
* approximate arc by segments (SEG_COUNT__CIRCLE segment per 360 deg)
|
|
|
|
* The arc is drawn in an anticlockwise direction from the start point to the end point.
|
2011-04-23 19:01:41 +00:00
|
|
|
*/
|
2012-05-04 17:44:42 +00:00
|
|
|
#define SEG_COUNT_CIRCLE 16
|
|
|
|
#define DELTA_ANGLE 2 * M_PI / SEG_COUNT_CIRCLE
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-01-13 18:35:46 +00:00
|
|
|
// calculate the number of segments from a to b.
|
|
|
|
// we want CNT_PER_360 segments fo a circle
|
|
|
|
if( a > b )
|
2012-05-04 17:44:42 +00:00
|
|
|
b += 2 * M_PI;
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
wxPoint curr_start = start;
|
2012-05-04 17:44:42 +00:00
|
|
|
wxPoint seg_start, seg_end;
|
|
|
|
|
|
|
|
int ii = 1;
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2012-01-13 18:35:46 +00:00
|
|
|
for( double rot = a; rot < (b - DELTA_ANGLE); rot += DELTA_ANGLE, ii++ )
|
2011-04-23 19:01:41 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
seg_start = curr_start;
|
2011-04-23 19:01:41 +00:00
|
|
|
wxPoint curr_end = start;
|
2012-05-04 17:44:42 +00:00
|
|
|
RotatePoint( &curr_end, aGbrItem->m_ArcCentre, -(int) (DELTA_ANGLE * ii * 1800 / M_PI) );
|
|
|
|
seg_end = curr_end;
|
2011-09-09 19:30:59 +00:00
|
|
|
// Reverse Y axis:
|
2012-05-04 17:44:42 +00:00
|
|
|
NEGATE( seg_start.y );
|
|
|
|
NEGATE( seg_end.y );
|
|
|
|
writePcbLineItem( 0, TRACK_TYPE, seg_start, seg_end, aGbrItem->m_Size.x, aLayer, -1 );
|
2011-04-23 19:01:41 +00:00
|
|
|
curr_start = curr_end;
|
|
|
|
}
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2011-04-23 19:01:41 +00:00
|
|
|
if( end != curr_start )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
seg_start = curr_start;
|
|
|
|
seg_end = end;
|
2011-09-09 19:30:59 +00:00
|
|
|
// Reverse Y axis:
|
2012-05-04 17:44:42 +00:00
|
|
|
NEGATE( seg_start.y );
|
|
|
|
NEGATE( seg_end.y );
|
|
|
|
writePcbLineItem( 0, TRACK_TYPE, seg_start, seg_end, aGbrItem->m_Size.x, aLayer, -1 );
|
2011-04-23 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* creates a via from a flashed gerber item.
|
|
|
|
* Flashed items are usually pads or vias, so we try to export all of them
|
|
|
|
* using vias
|
|
|
|
*/
|
2012-05-04 17:44:42 +00:00
|
|
|
void GBR_TO_PCB_EXPORTER::export_flashed_copper_item( GERBER_DRAW_ITEM* aGbrItem )
|
2011-04-23 19:01:41 +00:00
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
// First, explore already created vias, before creating a new via
|
|
|
|
for( unsigned ii = 0; ii < m_vias_coordinates.size(); ii++ )
|
|
|
|
{
|
|
|
|
if( m_vias_coordinates[ii] == aGbrItem->m_Start ) // Already created
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_vias_coordinates.push_back( aGbrItem->m_Start );
|
2011-04-23 19:01:41 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
wxPoint via_pos;
|
|
|
|
int width;
|
|
|
|
|
|
|
|
via_pos = aGbrItem->m_Start;
|
|
|
|
width = (aGbrItem->m_Size.x + aGbrItem->m_Size.y) / 2;
|
2011-09-09 19:30:59 +00:00
|
|
|
// Reverse Y axis:
|
2012-05-04 17:44:42 +00:00
|
|
|
NEGATE( via_pos.y );
|
|
|
|
// Layers are 0 to 15 (Cu/Cmp) = 0x0F
|
|
|
|
#define IS_VIA 1
|
|
|
|
#define SHAPE_VIA_THROUGH 3
|
|
|
|
writePcbLineItem( SHAPE_VIA_THROUGH, IS_VIA, via_pos, via_pos, width, 0x0F, -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GBR_TO_PCB_EXPORTER::writePcbHeader()
|
|
|
|
{
|
|
|
|
fprintf( m_fp, "PCBNEW-BOARD Version 1 date %s\n\n# Created by GerbView %s\n\n",
|
|
|
|
TO_UTF8( DateAndTime() ), TO_UTF8( GetBuildVersion() ) );
|
|
|
|
fprintf( m_fp, "$GENERAL\n" );
|
|
|
|
fprintf( m_fp, "encoding utf-8\n" );
|
|
|
|
fprintf( m_fp, "Units deci-mils\n" );
|
|
|
|
|
|
|
|
// Write copper layer count
|
|
|
|
fprintf( m_fp, "LayerCount %d\n", m_pcbCopperLayersCount );
|
|
|
|
// Write enabled layer mask:
|
|
|
|
int lmask = ALL_NO_CU_LAYERS | EXTERNAL_LAYERS;
|
|
|
|
|
|
|
|
for( int ii = 0; ii < m_pcbCopperLayersCount - 2; ii++ )
|
|
|
|
lmask |= 2 << ii;
|
|
|
|
|
|
|
|
fprintf( m_fp, "EnabledLayers %08X\n", lmask );
|
|
|
|
fprintf( m_fp, "$EndGENERAL\n\n" );
|
|
|
|
|
|
|
|
// Creates void setup
|
|
|
|
fprintf( m_fp, "$SETUP\n" );
|
|
|
|
fprintf( m_fp, "$EndSETUP\n\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GBR_TO_PCB_EXPORTER::writePcbLineItem( int aShape, int aType, wxPoint& aStart, wxPoint& aEnd,
|
|
|
|
int aWidth, int aLayer, int aDrill, int aAngle )
|
|
|
|
{
|
|
|
|
if( aDrill <= -2 )
|
|
|
|
fprintf( m_fp, "$DRAWSEGMENT\n" );
|
|
|
|
|
|
|
|
fprintf( m_fp, "Po %d %d %d %d %d %d\n", aShape,
|
|
|
|
TO_PCB_UNIT( aStart.x ), TO_PCB_UNIT( aStart.y ),
|
|
|
|
TO_PCB_UNIT( aEnd.x ), TO_PCB_UNIT( aEnd.y ),
|
|
|
|
TO_PCB_UNIT( aWidth ) );
|
|
|
|
fprintf( m_fp, "De %d %d %d %lX %X",
|
|
|
|
aLayer, aType, aAngle, 0l, 0 );
|
|
|
|
|
|
|
|
if( aDrill > -2 )
|
|
|
|
fprintf( m_fp, " %d", aDrill );
|
|
|
|
|
|
|
|
fprintf( m_fp, "\n" );
|
|
|
|
|
|
|
|
if( aDrill <= -2 )
|
|
|
|
fprintf( m_fp, "$EndDRAWSEGMENT\n" );
|
2007-05-28 18:09:49 +00:00
|
|
|
}
|