94 lines
3.3 KiB
C++
94 lines
3.3 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@gmail.com>
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
/**
|
|
* @brief Export GenCAD 1.4 format.
|
|
*/
|
|
|
|
#include <board.h>
|
|
#include <board_design_settings.h>
|
|
#include <confirm.h>
|
|
#include <dialogs/dialog_gencad_export_options.h>
|
|
#include <pcb_edit_frame.h>
|
|
#include <project/project_file.h> // LAST_PATH_TYPE
|
|
|
|
#include <export_gencad_writer.h>
|
|
|
|
|
|
/* Driver function: processing starts here */
|
|
void PCB_EDIT_FRAME::ExportToGenCAD( wxCommandEvent& aEvent )
|
|
{
|
|
// Build default output file name
|
|
wxString path = GetLastPath( LAST_PATH_GENCAD );
|
|
|
|
if( path.IsEmpty() )
|
|
{
|
|
wxFileName brdFile = GetBoard()->GetFileName();
|
|
brdFile.SetExt( wxT( "cad" ) );
|
|
path = brdFile.GetFullPath();
|
|
}
|
|
|
|
DIALOG_GENCAD_EXPORT_OPTIONS optionsDialog( this, path );
|
|
|
|
if( optionsDialog.ShowModal() == wxID_CANCEL )
|
|
return;
|
|
|
|
path = optionsDialog.GetFileName();
|
|
SetLastPath( LAST_PATH_GENCAD, path );
|
|
|
|
// Get options
|
|
bool flipBottomPads = optionsDialog.GetOption( FLIP_BOTTOM_PADS );
|
|
bool uniquePinName = optionsDialog.GetOption( UNIQUE_PIN_NAMES );
|
|
bool individualShapes = optionsDialog.GetOption( INDIVIDUAL_SHAPES );
|
|
bool storeOriginCoords = optionsDialog.GetOption( STORE_ORIGIN_COORDS );
|
|
|
|
// No idea on *why* this should be needed... maybe to fix net names?
|
|
Compile_Ratsnest( true );
|
|
|
|
GENCAD_EXPORTER exporter( GetBoard() );
|
|
|
|
// This is the export origin (the auxiliary axis)
|
|
VECTOR2I GencadOffset;
|
|
VECTOR2I auxOrigin = m_pcb->GetDesignSettings().GetAuxOrigin();
|
|
GencadOffset.x = optionsDialog.GetOption( USE_AUX_ORIGIN ) ? auxOrigin.x : 0;
|
|
GencadOffset.y = optionsDialog.GetOption( USE_AUX_ORIGIN ) ? auxOrigin.y : 0;
|
|
|
|
exporter.SetPlotOffet( GencadOffset );
|
|
exporter.FlipBottomPads( flipBottomPads );
|
|
exporter.UsePinNamesUnique( uniquePinName );
|
|
exporter.UseIndividualShapes( individualShapes );
|
|
exporter.StoreOriginCoordsInFile( storeOriginCoords );
|
|
|
|
bool success = exporter.WriteFile( path );
|
|
|
|
if( !success )
|
|
{
|
|
DisplayError( this, wxString::Format( _( "Failed to create file '%s'." ), path ) );
|
|
return;
|
|
}
|
|
}
|
|
|