From f58de79cebef344c23a826780d27b2afa87430fd Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Sat, 29 Aug 2020 23:16:39 +0100 Subject: [PATCH] Provide a checkbox to use negative coordinates in the position file ADDED: A checkbox to allow selection of positive/negative X coordinates for bottom components. Fixes https://gitlab.com/kicad/code/kicad/issues/4638 --- ...ialog_gen_footprint_position_file_base.cpp | 5 +- ...ialog_gen_footprint_position_file_base.fbp | 66 ++++++++++++++++++- .../dialog_gen_footprint_position_file_base.h | 3 +- pcbnew/exporters/gen_footprints_placefile.cpp | 16 +++-- pcbnew/pcb_edit_frame.h | 6 +- 5 files changed, 84 insertions(+), 12 deletions(-) diff --git a/pcbnew/dialogs/dialog_gen_footprint_position_file_base.cpp b/pcbnew/dialogs/dialog_gen_footprint_position_file_base.cpp index e4fda1f66a..a6200bb1a9 100644 --- a/pcbnew/dialogs/dialog_gen_footprint_position_file_base.cpp +++ b/pcbnew/dialogs/dialog_gen_footprint_position_file_base.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////// -// C++ code generated with wxFormBuilder (version Jul 10 2019) +// C++ code generated with wxFormBuilder (version Oct 26 2018) // http://www.wxformbuilder.org/ // // PLEASE DO *NOT* EDIT THIS FILE! @@ -80,6 +80,9 @@ DIALOG_GEN_FOOTPRINT_POSITION_BASE::DIALOG_GEN_FOOTPRINT_POSITION_BASE( wxWindow m_forceSMDOpt = new wxCheckBox( this, wxID_ANY, _("Include footprints with SMD pads even if not marked Surface Mount"), wxDefaultPosition, wxDefaultSize, 0 ); bSizer7->Add( m_forceSMDOpt, 0, wxALL, 5 ); + m_negateXcb = new wxCheckBox( this, wxID_ANY, _("Use negative X coordinates for footprints on bottom layer"), wxDefaultPosition, wxDefaultSize, 0 ); + bSizer7->Add( m_negateXcb, 0, wxALL, 5 ); + m_messagesPanel = new WX_HTML_REPORT_PANEL( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL ); m_messagesPanel->SetMinSize( wxSize( 300,150 ) ); diff --git a/pcbnew/dialogs/dialog_gen_footprint_position_file_base.fbp b/pcbnew/dialogs/dialog_gen_footprint_position_file_base.fbp index 9759be5c04..c0659b4b9e 100644 --- a/pcbnew/dialogs/dialog_gen_footprint_position_file_base.fbp +++ b/pcbnew/dialogs/dialog_gen_footprint_position_file_base.fbp @@ -14,7 +14,6 @@ dialog_gen_footprint_position_file_base 1000 none - 1 dialog_gen_footprint_positions_base @@ -26,7 +25,6 @@ 1 1 UI - 0 1 0 @@ -562,6 +560,70 @@ + + 5 + wxALL + 0 + + 1 + 1 + 1 + 1 + + + + + + + + 1 + 0 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + Use negative X coordinates for footprints on bottom layer + + 0 + + + 0 + + 1 + m_negateXcb + 1 + + + protected + 1 + + Resizable + 1 + + + ; ; forward_declare + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + 5 wxEXPAND | wxALL diff --git a/pcbnew/dialogs/dialog_gen_footprint_position_file_base.h b/pcbnew/dialogs/dialog_gen_footprint_position_file_base.h index d21eda359c..7a6e5b2cbd 100644 --- a/pcbnew/dialogs/dialog_gen_footprint_position_file_base.h +++ b/pcbnew/dialogs/dialog_gen_footprint_position_file_base.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////// -// C++ code generated with wxFormBuilder (version Jul 10 2019) +// C++ code generated with wxFormBuilder (version Oct 26 2018) // http://www.wxformbuilder.org/ // // PLEASE DO *NOT* EDIT THIS FILE! @@ -49,6 +49,7 @@ class DIALOG_GEN_FOOTPRINT_POSITION_BASE : public DIALOG_SHIM wxRadioBox* m_radioBoxUnits; wxRadioBox* m_radioBoxFilesCount; wxCheckBox* m_forceSMDOpt; + wxCheckBox* m_negateXcb; WX_HTML_REPORT_PANEL* m_messagesPanel; wxStdDialogButtonSizer* m_sdbSizer1; wxButton* m_sdbSizer1OK; diff --git a/pcbnew/exporters/gen_footprints_placefile.cpp b/pcbnew/exporters/gen_footprints_placefile.cpp index e4e579f952..24f9f839e0 100644 --- a/pcbnew/exporters/gen_footprints_placefile.cpp +++ b/pcbnew/exporters/gen_footprints_placefile.cpp @@ -124,6 +124,7 @@ private: static int m_unitsOpt; static int m_fileOpt; static int m_fileFormat; + static bool m_negateBottomX; void initDialog(); void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) override; @@ -158,6 +159,7 @@ private: int DIALOG_GEN_FOOTPRINT_POSITION::m_unitsOpt = 0; int DIALOG_GEN_FOOTPRINT_POSITION::m_fileOpt = 0; int DIALOG_GEN_FOOTPRINT_POSITION::m_fileFormat = 0; +bool DIALOG_GEN_FOOTPRINT_POSITION::m_negateBottomX = false; // Use standard board side name. do not translate them, // they are keywords in place file @@ -178,6 +180,7 @@ void DIALOG_GEN_FOOTPRINT_POSITION::initDialog() m_radioBoxUnits->SetSelection( m_unitsOpt ); m_radioBoxFilesCount->SetSelection( m_fileOpt ); m_rbFormat->SetSelection( m_fileFormat ); + m_negateXcb->SetValue( m_negateBottomX ); // Update sizes and sizers: m_messagesPanel->MsgPanelSetMinSize( wxSize( -1, 160 ) ); @@ -218,6 +221,7 @@ void DIALOG_GEN_FOOTPRINT_POSITION::OnGenerate( wxCommandEvent& event ) m_unitsOpt = m_radioBoxUnits->GetSelection(); m_fileOpt = m_radioBoxFilesCount->GetSelection(); m_fileFormat = m_rbFormat->GetSelection(); + m_negateBottomX = m_negateXcb->GetValue(); m_config->Write( PLACEFILE_UNITS_KEY, m_unitsOpt ); @@ -251,7 +255,7 @@ bool DIALOG_GEN_FOOTPRINT_POSITION::CreateFiles() // Count the footprints to place, do not yet create a file int fpcount = m_parent->DoGenFootprintsPositionFile( wxEmptyString, UnitsMM(), ForceAllSmd(), PCB_BOTH_SIDES, - useCSVfmt ); + useCSVfmt, m_negateBottomX ); if( fpcount == 0) { wxMessageBox( _( "No footprint for automated placement." ) ); @@ -298,7 +302,7 @@ bool DIALOG_GEN_FOOTPRINT_POSITION::CreateFiles() fn.SetExt( FootprintPlaceFileExtension ); fpcount = m_parent->DoGenFootprintsPositionFile( fn.GetFullPath(), UnitsMM(), - ForceAllSmd(), side, useCSVfmt ); + ForceAllSmd(), side, useCSVfmt, m_negateBottomX ); if( fpcount < 0 ) { msg.Printf( _( "Unable to create \"%s\"." ), GetChars( fn.GetFullPath() ) ); @@ -339,7 +343,7 @@ bool DIALOG_GEN_FOOTPRINT_POSITION::CreateFiles() fn.SetExt( FootprintPlaceFileExtension ); fpcount = m_parent->DoGenFootprintsPositionFile( fn.GetFullPath(), UnitsMM(), - ForceAllSmd(), side, useCSVfmt ); + ForceAllSmd(), side, useCSVfmt, m_negateBottomX ); if( fpcount < 0 ) { @@ -429,7 +433,7 @@ void PCB_EDIT_FRAME::GenFootprintsPositionFile( wxCommandEvent& event ) int PCB_EDIT_FRAME::DoGenFootprintsPositionFile( const wxString& aFullFileName, bool aUnitsMM, bool aForceSmdItems, int aSide, - bool aFormatCSV ) + bool aFormatCSV, bool aNegateBottomX ) { MODULE* footprint; @@ -533,7 +537,7 @@ int PCB_EDIT_FRAME::DoGenFootprintsPositionFile( const wxString& aFullFileName, LAYER_NUM layer = list[ii].m_Module->GetLayer(); wxASSERT( layer == F_Cu || layer == B_Cu ); - if( layer == B_Cu ) + if( aNegateBottomX && layer == B_Cu ) footprint_pos.x = - footprint_pos.x; wxString line = "\"" + list[ii].m_Reference; @@ -593,7 +597,7 @@ int PCB_EDIT_FRAME::DoGenFootprintsPositionFile( const wxString& aFullFileName, LAYER_NUM layer = list[ii].m_Module->GetLayer(); wxASSERT( layer == F_Cu || layer == B_Cu ); - if( layer == B_Cu ) + if( aNegateBottomX && layer == B_Cu ) footprint_pos.x = - footprint_pos.x; wxString ref = list[ii].m_Reference; diff --git a/pcbnew/pcb_edit_frame.h b/pcbnew/pcb_edit_frame.h index 604b9a3c3b..140ea6a817 100644 --- a/pcbnew/pcb_edit_frame.h +++ b/pcbnew/pcb_edit_frame.h @@ -854,12 +854,14 @@ public: * @param aSide = 0 to list footprints on BACK side, * 1 to list footprints on FRONT side * 2 to list footprints on both sides - * @param aFormatCSV = true to use a comma separated file (CSV) format; defautl = false + * @param aFormatCSV = true to use a comma separated file (CSV) format; default = false + * @param aNegateBottomX = true to negate the x coordinates of the parts on the bottom layer * @return the number of footprints found on aSide side, * or -1 if the file could not be created */ int DoGenFootprintsPositionFile( const wxString& aFullFileName, bool aUnitsMM, - bool aForceSmdItems, int aSide, bool aFormatCSV = false ); + bool aForceSmdItems, int aSide, bool aFormatCSV = false, + bool aNegateBottomX = false ); /** * Function GenFootprintsReport