kicad/pcbnew/pcbplot.cpp

780 lines
25 KiB
C++
Raw Normal View History

/***************/
/* pcbplot.cpp */
/***************/
2007-05-06 16:03:28 +00:00
#include "fctsys.h"
#include "appl_wxstruct.h"
2007-05-06 16:03:28 +00:00
#include "common.h"
#include "plot_common.h"
#include "confirm.h"
#include "gestfich.h"
2007-05-06 16:03:28 +00:00
#include "pcbnew.h"
2009-07-30 11:04:07 +00:00
#include "wxPcbStruct.h"
2007-05-06 16:03:28 +00:00
#include "pcbplot.h"
#include "worksheet.h"
#include "pcbnew_id.h"
2007-05-06 16:03:28 +00:00
#include "protos.h"
#include "pcbstruct.h"
#include "class_board_design_settings.h"
#include "dialog_plot_base.h"
#include "pcb_plot_params.h"
2007-05-06 16:03:28 +00:00
/* Keywords to r/w options in m_Config */
#define CONFIG_XFINESCALE_ADJ wxT( "PlotXFineScaleAdj" )
#define CONFIG_YFINESCALE_ADJ wxT( "PlotYFineScaleAdj" )
2008-03-21 19:27:11 +00:00
// Define min and max reasonable values for print scale
#define MIN_SCALE 0.01
#define MAX_SCALE 100.0
extern int g_DrawDefaultLineThickness;
static bool setDouble( double* aDouble, double aValue, double aMin, double aMax )
{
if( aValue < aMin )
{
*aDouble = aMin;
return false;
}
else if( aValue > aMax )
{
*aDouble = aMax;
return false;
}
*aDouble = aValue;
return true;
}
2008-03-04 04:22:27 +00:00
/*******************************/
/* Dialog box for plot control */
/*******************************/
2007-05-06 16:03:28 +00:00
class DIALOG_PLOT : public DIALOG_PLOT_BASE
2007-05-06 16:03:28 +00:00
{
public:
WinEDA_PcbFrame* m_Parent;
wxConfig* m_Config;
std::vector<int> layerList; // List to hold CheckListBox layer numbers
wxCheckListBox* layerCheckListBox;
double m_XScaleAdjust;
double m_YScaleAdjust;
2008-03-22 05:55:06 +00:00
public: DIALOG_PLOT( WinEDA_PcbFrame* parent );
2007-05-06 16:03:28 +00:00
private:
void Init_Dialog();
void Plot( wxCommandEvent& event );
void OnQuit( wxCommandEvent& event );
void OnClose( wxCloseEvent& event );
void OnOutputDirectoryBrowseClicked( wxCommandEvent& event );
void SetPlotFormat( wxCommandEvent& event );
void OnSetScaleOpt( wxCommandEvent& event );
void applyPlotSettings();
void CreateDrillFile( wxCommandEvent& event );
2007-05-06 16:03:28 +00:00
};
const int UNITS_MILS = 1000;
2007-05-06 16:03:28 +00:00
DIALOG_PLOT::DIALOG_PLOT( WinEDA_PcbFrame* parent ) :
DIALOG_PLOT_BASE( parent )
2007-05-06 16:03:28 +00:00
{
2008-03-04 04:22:27 +00:00
m_Parent = parent;
m_Config = wxGetApp().m_EDA_Config;
layerCheckListBox = new wxCheckListBox( this, wxID_ANY );
m_LayersSizer->Add( layerCheckListBox, 0, wxGROW | wxALL, 1 );
Init_Dialog();
GetSizer()->Fit( this );
GetSizer()->SetSizeHints( this );
Centre();
}
void DIALOG_PLOT::Init_Dialog()
{
wxString msg;
wxFileName fileName;
2008-03-04 04:22:27 +00:00
BOARD* board = m_Parent->GetBoard();
2008-03-21 19:27:11 +00:00
m_Config->Read( CONFIG_XFINESCALE_ADJ, &m_XScaleAdjust );
m_Config->Read( CONFIG_YFINESCALE_ADJ, &m_YScaleAdjust );
2008-03-04 04:22:27 +00:00
m_plotFormatOpt->SetSelection( g_PcbPlotOptions.GetPlotFormat() );
2008-03-22 05:55:06 +00:00
// Set units and value for HPGL pen size.
AddUnitSymbol( *m_textPenSize, g_UserUnit );
msg = ReturnStringFromValue( g_UserUnit, g_PcbPlotOptions.GetHpglPenDiameter(), UNITS_MILS );
m_HPGLPenSizeOpt->AppendText( msg );
2008-03-04 04:22:27 +00:00
// Set units to cm/s for standard HPGL pen speed.
msg = ReturnStringFromValue( UNSCALED_UNITS, g_PcbPlotOptions.GetHpglPenSpeed(), 1 );
m_HPGLPenSpeedOpt->AppendText( msg );
2008-03-04 04:22:27 +00:00
// Set units and value for HPGL pen overlay.
AddUnitSymbol( *m_textPenOvr, g_UserUnit );
msg = ReturnStringFromValue( g_UserUnit, g_PcbPlotOptions.GetHpglPenOverlay(), UNITS_MILS );
m_HPGLPenOverlayOpt->AppendText( msg );
2008-03-04 04:22:27 +00:00
AddUnitSymbol( *m_textDefaultPenSize, g_UserUnit );
msg = ReturnStringFromValue( g_UserUnit, g_PcbPlotOptions.GetPlotLineWidth(),
PCB_INTERNAL_UNIT );
2010-12-11 19:33:21 +00:00
m_linesWidth->AppendText( msg );
2008-03-04 04:22:27 +00:00
m_useAuxOriginCheckBox->SetValue( g_PcbPlotOptions.GetUseAuxOrigin() );
// Test for a reasonable scale value. Set to 1 if problem
if( m_XScaleAdjust < MIN_SCALE || m_YScaleAdjust < MIN_SCALE
|| m_XScaleAdjust > MAX_SCALE || m_YScaleAdjust > MAX_SCALE )
m_XScaleAdjust = m_YScaleAdjust = 1.0;
msg.Printf( wxT( "%f" ), m_XScaleAdjust );
2010-12-11 19:33:21 +00:00
m_fineAdjustXscaleOpt->AppendText( msg );
2008-03-21 19:27:11 +00:00
msg.Printf( wxT( "%f" ), m_YScaleAdjust );
2010-12-11 19:33:21 +00:00
m_fineAdjustYscaleOpt->AppendText( msg );
2008-03-21 19:27:11 +00:00
m_plotPSNegativeOpt->SetValue( g_PcbPlotOptions.m_PlotPSNegative );
2008-03-21 19:27:11 +00:00
// List layers in same order than in setup layers dialog
// (Front or Top to Back or Bottom)
DECLARE_LAYERS_ORDER_LIST( layersOrder );
int layerIndex, checkIndex, layer;
for( layerIndex = 0; layerIndex < NB_LAYERS; layerIndex++ )
2008-03-21 19:27:11 +00:00
{
layer = layersOrder[layerIndex];
2008-03-21 19:27:11 +00:00
wxASSERT( layer < NB_LAYERS );
2008-03-21 19:27:11 +00:00
if( !board->IsLayerEnabled( layer ) )
continue;
2008-03-21 19:27:11 +00:00
layerList.push_back( layer );
checkIndex = layerCheckListBox->Append( board->GetLayerName( layer ) );
2008-03-04 04:22:27 +00:00
if( g_PcbPlotOptions.GetLayerSelection() & ( 1 << layer ) )
layerCheckListBox->Check( checkIndex );
}
// Option for using proper Gerber extensions
m_useGerberExtensions->SetValue( g_PcbPlotOptions.GetUseGerberExtensions() );
2008-03-04 04:22:27 +00:00
// Option for excluding contents of "Edges Pcb" layer
m_excludeEdgeLayerOpt->SetValue( g_PcbPlotOptions.m_ExcludeEdgeLayer );
2008-03-04 04:22:27 +00:00
2010-12-11 19:33:21 +00:00
m_subtractMaskFromSilk->SetValue( g_PcbPlotOptions.GetSubtractMaskFromSilk() );
2008-04-18 13:28:56 +00:00
// Option to plot page references:
2008-03-04 04:22:27 +00:00
if( m_Parent->m_Print_Sheet_Ref )
{
2010-12-11 19:33:21 +00:00
m_plotSheetRef->SetValue( g_PcbPlotOptions.m_PlotFrameRef );
2008-03-04 04:22:27 +00:00
}
else
{
2010-12-11 19:33:21 +00:00
m_plotSheetRef->Enable( false );
m_plotSheetRef->SetValue( false );
}
2008-03-04 04:22:27 +00:00
// Option to plot pads on silkscreen layers or all layers
2010-12-11 19:33:21 +00:00
m_plotPads_on_Silkscreen->SetValue( g_PcbPlotOptions.m_PlotPadsOnSilkLayer );
2008-03-04 04:22:27 +00:00
// Options to plot texts on footprints
2010-12-11 19:33:21 +00:00
m_plotModuleValueOpt->SetValue( g_PcbPlotOptions.m_PlotValue );
m_plotModuleRefOpt->SetValue( g_PcbPlotOptions.m_PlotReference );
m_plotTextOther->SetValue( g_PcbPlotOptions.m_PlotTextOther );
m_plotInvisibleText->SetValue( g_PcbPlotOptions.m_PlotInvisibleTexts );
2008-03-04 04:22:27 +00:00
// Options to plot pads and vias holes
2010-12-11 19:33:21 +00:00
m_drillShapeOpt->SetSelection( g_PcbPlotOptions.m_DrillShapeOpt );
2008-03-04 04:22:27 +00:00
// Scale option
m_scaleOpt->SetSelection( g_PcbPlotOptions.GetScaleSelection() );
2008-03-04 04:22:27 +00:00
// Plot mode
2010-12-11 19:33:21 +00:00
m_plotModeOpt->SetSelection( g_PcbPlotOptions.m_PlotMode );
2008-03-04 04:22:27 +00:00
// Plot mirror option
2010-12-11 19:33:21 +00:00
m_plotMirrorOpt->SetValue( g_PcbPlotOptions.m_PlotMirror );
2008-03-04 04:22:27 +00:00
// Put vias on mask layer
2010-12-11 19:33:21 +00:00
m_plotNoViaOnMaskOpt->SetValue( g_PcbPlotOptions.m_PlotViaOnMaskLayer );
2008-03-04 04:22:27 +00:00
// Output directory
m_outputDirectoryName->SetValue( g_PcbPlotOptions.GetOutputDirectory() );
// Update options values:
wxCommandEvent cmd_event;
SetPlotFormat( cmd_event );
OnSetScaleOpt( cmd_event );
2008-03-04 04:22:27 +00:00
2008-03-21 19:27:11 +00:00
// without this line, the ESC key does not work
SetFocus();
2007-05-06 16:03:28 +00:00
}
void DIALOG_PLOT::OnQuit( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
2008-03-04 04:22:27 +00:00
Close( true ); // true is to force the frame to close
2007-05-06 16:03:28 +00:00
}
void DIALOG_PLOT::OnClose( wxCloseEvent& event )
2007-05-06 16:03:28 +00:00
{
applyPlotSettings();
2008-03-04 04:22:27 +00:00
EndModal( 0 );
2007-05-06 16:03:28 +00:00
}
void DIALOG_PLOT::CreateDrillFile( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
2008-03-04 04:22:27 +00:00
( (WinEDA_PcbFrame*) m_Parent )->InstallDrillFrame( event );
2007-05-06 16:03:28 +00:00
}
void DIALOG_PLOT::OnSetScaleOpt( wxCommandEvent& event )
{
/* Disable sheet reference for scale != 1:1 */
2010-12-11 19:33:21 +00:00
bool scale1 = ( m_scaleOpt->GetSelection() == 1 );
2010-12-11 19:33:21 +00:00
m_plotSheetRef->Enable( scale1 );
if( !scale1 )
2010-12-11 19:33:21 +00:00
m_plotSheetRef->SetValue( false );
}
void DIALOG_PLOT::OnOutputDirectoryBrowseClicked( wxCommandEvent& event )
{
// Build the absolute path of current output plot directory
// to preselect it when opening the Di Dialog.
wxFileName fn( m_outputDirectoryName->GetValue() );
wxString path;
if( fn.IsRelative() )
path = wxGetCwd() + fn.GetPathSeparator() + m_outputDirectoryName->GetValue();
else
path = m_outputDirectoryName->GetValue();
wxDirDialog dirDialog( this, _( "Select Output Directory" ), path );
if( dirDialog.ShowModal() == wxID_CANCEL )
return;
wxFileName dirName = wxFileName::DirName( dirDialog.GetPath() );
wxMessageDialog dialog( this, wxT( "Use a relative path? "),
wxT( "Plot Output Directory" ),
wxYES_NO | wxICON_QUESTION | wxYES_DEFAULT );
if( dialog.ShowModal() == wxID_YES ) {
wxString boardFilePath = ( (wxFileName) m_Parent->GetScreen()->GetFileName()).GetPath();
if( !dirName.MakeRelativeTo( boardFilePath ) )
wxMessageBox( wxT( "Cannot make path relative (target volume different from board file volume)!" ),
wxT( "Plot Output Directory" ), wxICON_ERROR );
}
m_outputDirectoryName->SetValue( dirName.GetFullPath() );
}
void DIALOG_PLOT::SetPlotFormat( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
switch( m_plotFormatOpt->GetSelection() )
2008-03-04 04:22:27 +00:00
{
case PLOT_FORMAT_POST:
default:
2010-12-11 19:33:21 +00:00
m_drillShapeOpt->Enable( true );
m_plotModeOpt->Enable( true );
m_plotMirrorOpt->Enable( true );
m_useAuxOriginCheckBox->Enable( false );
2010-12-11 19:33:21 +00:00
m_linesWidth->Enable( true );
2008-03-04 04:22:27 +00:00
m_HPGLPenSizeOpt->Enable( false );
m_HPGLPenSpeedOpt->Enable( false );
m_HPGLPenOverlayOpt->Enable( false );
m_excludeEdgeLayerOpt->SetValue( false );
m_excludeEdgeLayerOpt->Enable( false );
2010-12-11 19:33:21 +00:00
m_subtractMaskFromSilk->Enable( false );
m_useGerberExtensions->Enable( false );
m_scaleOpt->Enable( true );
m_fineAdjustXscaleOpt->Enable( true );
m_fineAdjustYscaleOpt->Enable( true );
m_plotPSNegativeOpt->Enable( true );
2011-02-01 23:03:26 +00:00
m_PlotOptionsSizer->Hide( m_GerberOptionsSizer );
m_PlotOptionsSizer->Hide( m_HPGLOptionsSizer );
m_PlotOptionsSizer->Show( m_PSOptionsSizer );
Layout();
m_MainSizer->SetSizeHints( this );
2008-03-04 04:22:27 +00:00
break;
case PLOT_FORMAT_GERBER:
2010-12-11 19:33:21 +00:00
m_drillShapeOpt->Enable( false );
m_plotModeOpt->SetSelection( 1 );
m_plotModeOpt->Enable( false );
m_plotMirrorOpt->SetValue( false );
m_plotMirrorOpt->Enable( false );
m_useAuxOriginCheckBox->Enable( true );
2010-12-11 19:33:21 +00:00
m_linesWidth->Enable( true );
2008-03-04 04:22:27 +00:00
m_HPGLPenSizeOpt->Enable( false );
m_HPGLPenSpeedOpt->Enable( false );
m_HPGLPenOverlayOpt->Enable( false );
m_excludeEdgeLayerOpt->Enable( true );
2010-12-11 19:33:21 +00:00
m_subtractMaskFromSilk->Enable( true );
m_useGerberExtensions->Enable( true );
m_scaleOpt->SetSelection( 1 );
m_scaleOpt->Enable( false );
m_fineAdjustXscaleOpt->Enable( false );
m_fineAdjustYscaleOpt->Enable( false );
m_plotPSNegativeOpt->SetValue( false );
m_plotPSNegativeOpt->Enable( false );
2011-02-01 23:03:26 +00:00
m_PlotOptionsSizer->Show( m_GerberOptionsSizer );
m_PlotOptionsSizer->Hide( m_HPGLOptionsSizer );
m_PlotOptionsSizer->Hide( m_PSOptionsSizer );
Layout();
m_MainSizer->SetSizeHints( this );
2008-03-04 04:22:27 +00:00
break;
case PLOT_FORMAT_HPGL:
2010-12-11 19:33:21 +00:00
m_plotMirrorOpt->Enable( true );
m_drillShapeOpt->Enable( false );
m_plotModeOpt->Enable( true );
m_useAuxOriginCheckBox->Enable( false );
2010-12-11 19:33:21 +00:00
m_linesWidth->Enable( false );
2008-03-04 04:22:27 +00:00
m_HPGLPenSizeOpt->Enable( true );
m_HPGLPenSpeedOpt->Enable( true );
m_HPGLPenOverlayOpt->Enable( true );
m_excludeEdgeLayerOpt->SetValue( false );
m_excludeEdgeLayerOpt->Enable( false );
2010-12-11 19:33:21 +00:00
m_subtractMaskFromSilk->Enable( false );
m_useGerberExtensions->Enable( false );
m_scaleOpt->Enable( true );
m_fineAdjustXscaleOpt->Enable( false );
m_fineAdjustYscaleOpt->Enable( false );
m_plotPSNegativeOpt->SetValue( false );
m_plotPSNegativeOpt->Enable( false );
2011-02-01 23:03:26 +00:00
m_PlotOptionsSizer->Hide( m_GerberOptionsSizer );
m_PlotOptionsSizer->Show( m_HPGLOptionsSizer );
m_PlotOptionsSizer->Hide( m_PSOptionsSizer );
Layout();
m_MainSizer->SetSizeHints( this );
2008-03-04 04:22:27 +00:00
break;
2009-06-30 10:43:20 +00:00
case PLOT_FORMAT_DXF:
2010-12-11 19:33:21 +00:00
m_plotMirrorOpt->Enable( false );
m_plotMirrorOpt->SetValue( false );
m_drillShapeOpt->Enable( false );
m_plotModeOpt->Enable( true );
m_useAuxOriginCheckBox->Enable( false );
2010-12-11 19:33:21 +00:00
m_linesWidth->Enable( false );
2009-06-30 10:43:20 +00:00
m_HPGLPenSizeOpt->Enable( false );
m_HPGLPenSpeedOpt->Enable( false );
m_HPGLPenOverlayOpt->Enable( false );
m_excludeEdgeLayerOpt->SetValue( false );
m_excludeEdgeLayerOpt->Enable( false );
2010-12-11 19:33:21 +00:00
m_subtractMaskFromSilk->Enable( false );
m_useGerberExtensions->Enable( false );
m_scaleOpt->Enable( false );
m_scaleOpt->SetSelection( 1 );
m_fineAdjustXscaleOpt->Enable( false );
m_fineAdjustYscaleOpt->Enable( false );
m_plotPSNegativeOpt->SetValue( false );
m_plotPSNegativeOpt->Enable( false );
2011-02-01 23:03:26 +00:00
m_PlotOptionsSizer->Hide( m_GerberOptionsSizer );
m_PlotOptionsSizer->Hide( m_HPGLOptionsSizer );
m_PlotOptionsSizer->Hide( m_PSOptionsSizer );
Layout();
m_MainSizer->SetSizeHints( this );
2009-06-30 10:43:20 +00:00
break;
2008-03-04 04:22:27 +00:00
}
2007-05-06 16:03:28 +00:00
}
void DIALOG_PLOT::applyPlotSettings()
2007-05-06 16:03:28 +00:00
{
PCB_PLOT_PARAMS tempOptions;
2008-03-04 04:22:27 +00:00
tempOptions.m_ExcludeEdgeLayer = m_excludeEdgeLayerOpt->GetValue();
tempOptions.SetSubtractMaskFromSilk( m_subtractMaskFromSilk->GetValue() );
2010-12-11 19:33:21 +00:00
if( m_plotSheetRef )
tempOptions.m_PlotFrameRef = m_plotSheetRef->GetValue();
tempOptions.m_PlotPadsOnSilkLayer = m_plotPads_on_Silkscreen->GetValue();
2008-03-04 04:22:27 +00:00
tempOptions.SetUseAuxOrigin( m_useAuxOriginCheckBox->GetValue() );
tempOptions.m_PlotValue = m_plotModuleValueOpt->GetValue();
tempOptions.m_PlotReference = m_plotModuleRefOpt->GetValue();
tempOptions.m_PlotTextOther = m_plotTextOther->GetValue();
tempOptions.m_PlotInvisibleTexts = m_plotInvisibleText->GetValue();
2008-03-04 04:22:27 +00:00
tempOptions.SetScaleSelection( m_scaleOpt->GetSelection() );
tempOptions.m_DrillShapeOpt =
2010-12-11 19:33:21 +00:00
(PCB_PLOT_PARAMS::DrillShapeOptT) m_drillShapeOpt->GetSelection();
tempOptions.m_PlotMirror = m_plotMirrorOpt->GetValue();
tempOptions.m_PlotMode = (GRTraceMode) m_plotModeOpt->GetSelection();
tempOptions.m_PlotViaOnMaskLayer = m_plotNoViaOnMaskOpt->GetValue();
// Update settings from text fields. Rewrite values back to the fields,
// since the values may have been constrained by the setters.
// HPLG pen size
wxString msg = m_HPGLPenSizeOpt->GetValue();
int tmp = ReturnValueFromString( g_UserUnit, msg, UNITS_MILS );
if( !tempOptions.SetHpglPenDiameter( tmp ) )
{
msg = ReturnStringFromValue( g_UserUnit, tempOptions.GetHpglPenDiameter(), UNITS_MILS );
m_HPGLPenSizeOpt->SetValue( msg );
msg.Printf( wxT( "HPGL pen size constrained!\n" ) );
m_messagesBox->AppendText( msg );
}
// HPGL pen speed
msg = m_HPGLPenSpeedOpt->GetValue();
tmp = ReturnValueFromString( UNSCALED_UNITS, msg, 1 );
if( !tempOptions.SetHpglPenSpeed( tmp ) )
{
msg = ReturnStringFromValue( UNSCALED_UNITS, tempOptions.GetHpglPenSpeed(), 1 );
m_HPGLPenSpeedOpt->SetValue( msg );
msg.Printf( wxT( "HPGL pen speed constrained!\n" ) );
m_messagesBox->AppendText( msg );
}
// HPGL pen overlay
msg = m_HPGLPenOverlayOpt->GetValue();
tmp = ReturnValueFromString( g_UserUnit, msg, UNITS_MILS );
if( !tempOptions.SetHpglPenOverlay( tmp ) )
{
msg = ReturnStringFromValue( g_UserUnit, tempOptions.GetHpglPenOverlay(), UNITS_MILS );
m_HPGLPenOverlayOpt->SetValue( msg );
msg.Printf( wxT( "HPGL pen overlay constrained!\n" ) );
m_messagesBox->AppendText( msg );
}
// Default linewidth
2010-12-11 19:33:21 +00:00
msg = m_linesWidth->GetValue();
tmp = ReturnValueFromString( g_UserUnit, msg, PCB_INTERNAL_UNIT );
if( !tempOptions.SetPlotLineWidth( tmp ) )
{
msg = ReturnStringFromValue( g_UserUnit, tempOptions.GetPlotLineWidth(),
PCB_INTERNAL_UNIT );
m_linesWidth->SetValue( msg );
msg.Printf( wxT( "Default linewidth constrained!\n" ) );
m_messagesBox->AppendText( msg );
}
// X scale
double tmpDouble;
2010-12-11 19:33:21 +00:00
msg = m_fineAdjustXscaleOpt->GetValue();
msg.ToDouble( &tmpDouble );
if( !setDouble( &m_XScaleAdjust, tmpDouble, MIN_SCALE, MAX_SCALE ) )
{
msg.Printf( wxT( "%f" ), m_XScaleAdjust );
m_fineAdjustXscaleOpt->SetValue( msg );
msg.Printf( wxT( "X scale constrained!\n" ) );
m_messagesBox->AppendText( msg );
}
m_Config->Write( CONFIG_XFINESCALE_ADJ, m_XScaleAdjust );
// Y scale
2010-12-11 19:33:21 +00:00
msg = m_fineAdjustYscaleOpt->GetValue();
msg.ToDouble( &tmpDouble );
if( !setDouble( &m_YScaleAdjust, tmpDouble, MIN_SCALE, MAX_SCALE ) )
{
msg.Printf( wxT( "%f" ), m_YScaleAdjust );
m_fineAdjustYscaleOpt->SetValue( msg );
msg.Printf( wxT( "Y scale constrained!\n" ) );
m_messagesBox->AppendText( msg );
}
m_Config->Write( CONFIG_YFINESCALE_ADJ, m_YScaleAdjust );
tempOptions.SetUseGerberExtensions( m_useGerberExtensions->GetValue() );
tempOptions.SetPlotFormat( m_plotFormatOpt->GetSelection() );
long selectedLayers = 0;
unsigned int i;
for( i = 0; i < layerList.size(); i++ )
2008-03-04 04:22:27 +00:00
{
if( layerCheckListBox->IsChecked( i ) )
selectedLayers |= (1 << layerList[i]);
2008-03-04 04:22:27 +00:00
}
tempOptions.SetLayerSelection( selectedLayers );
tempOptions.m_PlotPSNegative = m_plotPSNegativeOpt->GetValue();
2008-03-04 04:22:27 +00:00
// Set output directory and replace backslashes with forward ones
wxString dirStr;
dirStr = m_outputDirectoryName->GetValue();
dirStr.Replace( wxT( "\\" ), wxT( "/" ) );
tempOptions.SetOutputDirectory( dirStr );
if( g_PcbPlotOptions != tempOptions )
{
g_PcbPlotOptions = tempOptions;
m_Parent->OnModify();
}
2007-05-06 16:03:28 +00:00
}
void DIALOG_PLOT::Plot( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
int layer;
wxFileName fn;
wxString ext;
2008-03-04 04:22:27 +00:00
BOARD* board = m_Parent->GetBoard();
2008-03-04 04:22:27 +00:00
applyPlotSettings();
2008-03-04 04:22:27 +00:00
// Create output directory if it does not exist
wxFileName outputDir = wxFileName::DirName( g_PcbPlotOptions.GetOutputDirectory() );
wxString boardFilePath = ( (wxFileName) m_Parent->GetScreen()->GetFileName()).GetPath();
if( !outputDir.MakeAbsolute( boardFilePath ) )
{
wxString msg;
msg.Printf( wxT( " Cannot make %s absolute with respect to %s!" ),
GetChars( outputDir.GetPath() ),
GetChars( boardFilePath ) );
wxMessageBox( msg, wxT( "Plot" ), wxICON_ERROR );
return;
}
if( !wxFileName::DirExists( outputDir.GetPath() ) )
{
if( wxMkdir( outputDir.GetPath() ) )
{
wxString msg;
msg.Printf( wxT( "Directory %s created.\n" ), GetChars( outputDir.GetPath() ) );
2010-12-11 19:33:21 +00:00
m_messagesBox->AppendText( msg );
}
else
{
wxMessageBox( wxT( "Cannot create output directory!" ), wxT( "Plot" ), wxICON_ERROR );
return;
}
}
g_PcbPlotOptions.m_AutoScale = false;
g_PcbPlotOptions.m_PlotScale = 1;
switch( g_PcbPlotOptions.GetScaleSelection() )
2008-03-04 04:22:27 +00:00
{
default:
break;
case 0:
g_PcbPlotOptions.m_AutoScale = true;
2008-03-04 04:22:27 +00:00
break;
case 2:
g_PcbPlotOptions.m_PlotScale = 1.5;
2008-03-04 04:22:27 +00:00
break;
case 3:
g_PcbPlotOptions.m_PlotScale = 2;
2008-03-04 04:22:27 +00:00
break;
case 4:
g_PcbPlotOptions.m_PlotScale = 3;
2008-03-04 04:22:27 +00:00
break;
}
/* If the scale factor edit controls are disabled or the scale value
* is 0, don't adjust the base scale factor. This fixes a bug when
* the default scale adjust is initialized to 0 and saved in program
* settings resulting in a divide by zero fault.
*/
2010-12-11 19:33:21 +00:00
if( m_fineAdjustXscaleOpt->IsEnabled() && m_XScaleAdjust != 0.0 )
g_PcbPlotOptions.m_FineScaleAdjustX = m_XScaleAdjust;
2010-12-11 19:33:21 +00:00
if( m_fineAdjustYscaleOpt->IsEnabled() && m_YScaleAdjust != 0.0 )
g_PcbPlotOptions.m_FineScaleAdjustY = m_YScaleAdjust;
2008-03-04 04:22:27 +00:00
switch( g_PcbPlotOptions.GetPlotFormat() )
2008-03-04 04:22:27 +00:00
{
case PLOT_FORMAT_POST:
ext = wxT( "ps" );
2008-03-04 04:22:27 +00:00
break;
case PLOT_FORMAT_GERBER:
g_PcbPlotOptions.m_PlotScale = 1.0; // No scale option allowed in gerber format
ext = wxT( "pho" );
2008-03-04 04:22:27 +00:00
break;
case PLOT_FORMAT_HPGL:
ext = wxT( "plt" );
2008-03-04 04:22:27 +00:00
break;
2009-06-30 10:43:20 +00:00
case PLOT_FORMAT_DXF:
g_PcbPlotOptions.m_PlotScale = 1.0;
2009-06-30 10:43:20 +00:00
ext = wxT( "dxf" );
break;
2008-03-04 04:22:27 +00:00
}
// Test for a reasonable scale value
if( g_PcbPlotOptions.m_PlotScale < MIN_SCALE )
DisplayInfoMessage( this,
_( "Warning: Scale option set to a very small value" ) );
if( g_PcbPlotOptions.m_PlotScale > MAX_SCALE )
DisplayInfoMessage( this,
_( "Warning: Scale option set to a very large value" ) );
long layerMask = 1;
for( layer = 0; layer < NB_LAYERS; layer++, layerMask <<= 1 )
2008-03-04 04:22:27 +00:00
{
bool success = false;
if( g_PcbPlotOptions.GetLayerSelection() & layerMask )
2008-03-04 04:22:27 +00:00
{
fn = m_Parent->GetScreen()->GetFileName();
fn.SetPath( outputDir.GetPath() );
// Create file name.
wxString layername = board->GetLayerName( layer );
layername.Trim( true ); layername.Trim( false ); // remove leading and trailing spaces if any
fn.SetName( fn.GetName() + wxT( "-" ) + layername );
// Use Gerber Extensions based on layer number
// (See http://en.wikipedia.org/wiki/Gerber_File)
if( ( g_PcbPlotOptions.GetPlotFormat() == PLOT_FORMAT_GERBER )
&& m_useGerberExtensions->GetValue() )
{
switch( layer )
{
case LAYER_N_FRONT:
fn.SetExt( wxT( "gtl" ) );
break;
case LAYER_N_2:
case LAYER_N_3:
case LAYER_N_4:
case LAYER_N_5:
case LAYER_N_6:
case LAYER_N_7:
case LAYER_N_8:
case LAYER_N_9:
case LAYER_N_10:
case LAYER_N_11:
case LAYER_N_12:
case LAYER_N_13:
case LAYER_N_14:
case LAYER_N_15:
// TODO: see if we use .gbr or a layer identifier (gb1 .. gbnn ?)
// according to the new internal layers designation
// (1 is the first internal layer from the front layer)
fn.SetExt( wxT( "gbr" ) );
break;
case LAYER_N_BACK:
fn.SetExt( wxT( "gbl" ) );
break;
case ADHESIVE_N_BACK:
fn.SetExt( wxT( "gba" ) );
break;
case ADHESIVE_N_FRONT:
fn.SetExt( wxT( "gta" ) );
break;
case SOLDERPASTE_N_BACK:
fn.SetExt( wxT( "gbp" ) );
break;
case SOLDERPASTE_N_FRONT:
fn.SetExt( wxT( "gtp" ) );
break;
case SILKSCREEN_N_BACK:
fn.SetExt( wxT( "gbo" ) );
break;
case SILKSCREEN_N_FRONT:
fn.SetExt( wxT( "gto" ) );
break;
case SOLDERMASK_N_BACK:
fn.SetExt( wxT( "gbs" ) );
break;
case SOLDERMASK_N_FRONT:
fn.SetExt( wxT( "gts" ) );
break;
case DRAW_N:
case COMMENT_N:
case ECO1_N:
case ECO2_N:
case EDGE_N:
default:
fn.SetExt( wxT( "gbr" ) );
break;
}
}
else
{
fn.SetExt( ext );
}
2008-03-04 04:22:27 +00:00
switch( g_PcbPlotOptions.GetPlotFormat() )
2008-03-04 04:22:27 +00:00
{
case PLOT_FORMAT_POST:
success = m_Parent->Genere_PS( fn.GetFullPath(), layer,
m_usePsA4Opt->GetValue(),
2010-12-11 19:33:21 +00:00
g_PcbPlotOptions.m_PlotMode );
2008-03-04 04:22:27 +00:00
break;
case PLOT_FORMAT_GERBER:
success = m_Parent->Genere_GERBER( fn.GetFullPath(), layer,
g_PcbPlotOptions.GetUseAuxOrigin(),
2010-12-11 19:33:21 +00:00
g_PcbPlotOptions.m_PlotMode );
2008-03-04 04:22:27 +00:00
break;
case PLOT_FORMAT_HPGL:
success = m_Parent->Genere_HPGL( fn.GetFullPath(), layer,
2010-12-11 19:33:21 +00:00
g_PcbPlotOptions.m_PlotMode );
2008-03-04 04:22:27 +00:00
break;
2009-06-30 10:43:20 +00:00
case PLOT_FORMAT_DXF:
success = m_Parent->Genere_DXF( fn.GetFullPath(), layer,
2010-12-11 19:33:21 +00:00
g_PcbPlotOptions.m_PlotMode );
2009-06-30 10:43:20 +00:00
break;
2008-03-04 04:22:27 +00:00
}
// Print diags in messages box:
wxString msg;
if( success )
msg.Printf( _( "Plot file <%s> created" ), GetChars( fn.GetFullPath() ) );
else
msg.Printf( _( "Unable to create <%s>" ), GetChars( fn.GetFullPath() ) );
msg << wxT( "\n" );
2010-12-11 19:33:21 +00:00
m_messagesBox->AppendText( msg );
2008-03-04 04:22:27 +00:00
}
}
// If no layer selected, we have nothing plotted.
// Prompt user if it happens
// because he could think there is a bug in pcbnew:
if( !g_PcbPlotOptions.GetLayerSelection() )
DisplayError( this, _( "No layer selected" ) );
2007-05-06 16:03:28 +00:00
}
void WinEDA_PcbFrame::ToPlotter( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
DIALOG_PLOT dlg( this );
dlg.ShowModal();
2008-03-04 04:22:27 +00:00
}