26#include <wx/stdpaths.h>
27#include <wx/process.h>
29#include <wx/filedlg.h>
97 const wxString& aBoardPath,
100 m_editFrame( aEditFrame ),
102 m_boardPath( aBoardPath )
104 if(
m_job ==
nullptr )
108 { wxID_CANCEL,
_(
"Close" ) } } );
114 { wxID_CANCEL,
_(
"Close" ) } } );
124 brdFile.SetExt( wxT(
"step" ) );
125 path = brdFile.GetFullPath();
182 wxCommandEvent
dummy;
189 tmpStr = wxEmptyString;
228 wxCommandEvent
dummy;
236 tmpStr = wxEmptyString;
242 size_t bad_count = 0;
248 if( model.m_Scale.x != 1.0 || model.m_Scale.y != 1.0 || model.m_Scale.z != 1.0 )
250 bad_scales.Append( wxS(
"\n") );
251 bad_scales.Append( model.m_Filename );
260 if( !bad_scales.empty()
261 && !
Pgm().GetCommonSettings()->m_DoNotShowAgain.scaled_3d_models_warning )
263 wxString extendedMsg =
_(
"Non-unity scaled models:" ) + wxT(
"\n" ) + bad_scales;
266 "Model scaling is not reliable for mechanical export." ),
267 _(
"Model Scale Warning" ), wxOK | wxICON_WARNING );
268 msgDlg.SetExtendedMessage( extendedMsg );
302 catch(
const std::runtime_error& e )
304 wxFAIL_MSG( e.what() );
372 wxFileName autosaveProjFile;
379 "Please save the PCB and try again" ) );
388 autosaveProjFile = brdFile;
389 autosaveProjFile.SetName( autosaveFileName );
390 autosaveProjFile.SetExt(
"kicad_pro" );
394 brdFile.SetName( autosaveFileName );
401 if( !autosaveProjFile.GetFullPath().IsEmpty() )
402 wxRemoveFile( autosaveProjFile.GetFullPath() );
427 wxString
filter =
_(
"STEP files" )
429 +
_(
"Binary glTF files" )
433 +
_(
"BREP (OCCT) files" )
443 wxFileName fn(
Prj().AbsolutePath(
path ) );
445 wxFileDialog dlg(
this,
_(
"3D Model Output File" ), fn.GetPath(), fn.GetFullName(),
filter,
448 if( dlg.ShowModal() == wxID_CANCEL )
451 path = dlg.GetPath();
454 fn = wxFileName(
path );
472 int sepIdx = std::max(
path.Find(
'/',
true ),
path.Find(
'\\',
true ) );
473 int dotIdx =
path.Find(
'.',
true );
475 if( dotIdx == -1 || dotIdx < sepIdx )
476 path <<
'.' << newExt;
478 path =
path.Mid( 0, dotIdx ) <<
'.' << newExt;
510 std::function<bool( wxString* )> textResolver =
511 [&]( wxString* token ) ->
bool
552 case 0: tolerance = 0.001;
break;
554 case 1: tolerance = 0.01;
break;
555 case 2: tolerance = 0.1;
break;
568 chainingEpsilon,
nullptr );
572 _(
"Board outline is missing or not closed using %.3f mm tolerance.\n"
573 "Run DRC for a full analysis." ), tolerance ) );
577 wxFileName fn(
Prj().AbsolutePath(
path ) );
581 msg.Printf(
_(
"File '%s' already exists. Do you want overwrite this file?" ),
584 if( wxMessageBox( msg,
_(
"STEP/GLTF Export" ), wxYES_NO | wxICON_QUESTION,
this ) == wxNO )
588 wxFileName appK2S( wxStandardPaths::Get().GetExecutablePath() );
591 if( appK2S.GetPath().Find(
"/Contents/Applications/pcbnew.app/Contents/MacOS" ) != wxNOT_FOUND )
593 appK2S.AppendDir( wxT(
".." ) );
594 appK2S.AppendDir( wxT(
".." ) );
595 appK2S.AppendDir( wxT(
".." ) );
596 appK2S.AppendDir( wxT(
".." ) );
597 appK2S.AppendDir( wxT(
"MacOS" ) );
600 if( wxGetEnv( wxT(
"KICAD_RUN_FROM_BUILD_DIR" ),
nullptr ) )
602 appK2S.RemoveLastDir();
603 appK2S.AppendDir(
"kicad" );
607 appK2S.SetName( wxT(
"kicad-cli" ) );
610 wxString cmdK2S = wxT(
"\"" );
611 cmdK2S.Append( appK2S.GetFullPath() );
612 cmdK2S.Append( wxT(
"\"" ) );
614 cmdK2S.Append( wxT(
" pcb" ) );
615 cmdK2S.Append( wxT(
" export" ) );
617 cmdK2S.Append( wxT(
" " ) );
621 cmdK2S.Append( wxT(
" --no-unspecified" ) );
624 cmdK2S.Append( wxT(
" --no-dnp" ) );
627 cmdK2S.Append( wxT(
" --subst-models" ) );
630 cmdK2S.Append( wxT(
" --no-optimize-step" ) );
633 cmdK2S.Append( wxT(
" --no-board-body" ) );
636 cmdK2S.Append( wxT(
" --no-components" ) );
639 cmdK2S.Append( wxT(
" --include-tracks" ) );
642 cmdK2S.Append( wxT(
" --include-pads" ) );
645 cmdK2S.Append( wxT(
" --include-zones" ) );
648 cmdK2S.Append( wxT(
" --include-inner-copper" ) );
651 cmdK2S.Append( wxT(
" --include-silkscreen" ) );
654 cmdK2S.Append( wxT(
" --include-soldermask" ) );
657 cmdK2S.Append( wxT(
" --fuse-shapes" ) );
666 cmdK2S.Append( wxString::Format( wxT(
" --net-filter %c%s%c" ), dblquote,
m_netFilter,
674 wxArrayString components;
677 std::for_each( selection.
begin(), selection.
end(),
680 if( item->Type() == PCB_FOOTPRINT_T )
681 components.push_back( static_cast<FOOTPRINT*>( item )->GetReference() );
684 cmdK2S.Append( wxString::Format( wxT(
" --component-filter %c%s%c" ), dblquote,
685 wxJoin( components,
',' ), dblquote ) );
690 cmdK2S.Append( wxString::Format( wxT(
" --component-filter %c%s%c" ), dblquote,
701 wxFAIL_MSG( wxT(
"Unsupported origin option: how did we get here?" ) );
705 cmdK2S.Append( wxT(
" --drill-origin" ) );
709 cmdK2S.Append( wxT(
" --grid-origin" ) );
725 cmdK2S.Append( wxString::Format( wxT(
" --user-origin=%c%.6fx%.6fmm%c" ),
726 quote, xOrg, yOrg, quote ) );
737 cmdK2S.Append( wxString::Format( wxT(
" --user-origin=%c%.6fx%.6fmm%c" ),
738 quote, xOrg, yOrg, quote ) );
745 cmdK2S.Append( wxString::Format( wxT(
" --min-distance=%c%.3fmm%c" ),
746 quote, tolerance, quote ) );
750 cmdK2S.Append( wxString::Format( wxT(
" -f -o %c%s%c" ),
751 dblquote, fn.GetFullPath(), dblquote ) );
755 cmdK2S.Append( wxString::Format( wxT(
" %c%s%c" ), dblquote,
m_boardPath, dblquote ) );
757 wxLogTrace(
traceKiCad2Step, wxT(
"export step command: %s" ), cmdK2S );
constexpr EDA_IU_SCALE pcbIUScale
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
bool ResolveTextVar(wxString *token, int aDepth) const
BOX2I ComputeBoundingBox(bool aBoardEdgesOnly=false) const
Calculate the bounding box containing all board items (or board edge segments).
const FOOTPRINTS & Footprints() const
const wxString & GetFileName() const
constexpr const Vec GetCenter() const
DO_NOT_SHOW_AGAIN m_DoNotShowAgain
Class DIALOG_EXPORT_STEP_BASE.
wxCheckBox * m_cbExportTracks
wxCheckBox * m_cbSubstModels
TEXT_CTRL_EVAL * m_STEP_Xorg
TEXT_CTRL_EVAL * m_STEP_Yorg
wxRadioButton * m_rbOnlySelected
wxRadioButton * m_rbGridOrigin
wxCheckBox * m_cbExportBody
wxCheckBox * m_cbRemoveUnspecified
wxCheckBox * m_cbOverwriteFile
wxCheckBox * m_cbRemoveDNP
wxBoxSizer * bSizerSTEPFile
wxCheckBox * m_cbExportComponents
wxCheckBox * m_cbOptimizeStep
wxCheckBox * m_cbFuseShapes
wxRadioButton * m_rbBoardCenterOrigin
wxTextCtrl * m_outputFileName
wxCheckBox * m_cbExportInnerCopper
wxChoice * m_choiceTolerance
wxChoice * m_STEP_OrgUnitChoice
wxTextCtrl * m_txtNetFilter
wxCheckBox * m_cbExportSoldermask
wxCheckBox * m_cbExportPads
wxChoice * m_choiceFormat
wxCheckBox * m_cbExportZones
wxRadioButton * m_rbAllComponents
wxRadioButton * m_rbUserDefinedOrigin
wxCheckBox * m_cbExportSilkscreen
wxRadioButton * m_rbFilteredComponents
wxRadioButton * m_rbDrillAndPlotOrigin
wxTextCtrl * m_txtComponentFilter
STD_BITMAP_BUTTON * m_browseButton
void onFormatChoice(wxCommandEvent &event) override
STEP_ORIGIN_OPTION GetOriginOption()
static int m_formatLastChoice
static bool m_exportSoldermask
void OnFmtChoiceOptionChanged()
int GetOrgUnitsChoice() const
void onCbExportComponents(wxCommandEvent &event) override
PCB_EDIT_FRAME * m_editFrame
void OnComponentModeChange(wxCommandEvent &event) override
@ STEP_ORIGIN_BOARD_CENTER
DIALOG_EXPORT_STEP(PCB_EDIT_FRAME *aEditFrame, const wxString &aBoardPath)
static COMPONENT_MODE m_componentMode
void onUpdateXPos(wxUpdateUIEvent &aEvent) override
static bool m_exportComponents
static bool m_exportZones
STEP_ORIGIN_OPTION m_origin
JOB_EXPORT_PCB_3D * m_job
void onExportButton(wxCommandEvent &aEvent) override
static bool m_exportBoardBody
static bool m_exportSilkscreen
static wxString m_componentFilter
static int m_toleranceLastChoice
static bool m_optimizeStep
void onUpdateUnits(wxUpdateUIEvent &aEvent) override
bool GetNoUnspecifiedOption()
static bool m_exportInnerCopper
void onUpdateYPos(wxUpdateUIEvent &aEvent) override
static bool m_exportTracks
void onBrowseClicked(wxCommandEvent &aEvent) override
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
A base class for most all the KiCad significant classes used in schematics and boards.
bool m_IncludeUnspecified
wxString m_ComponentFilter
EXPORTER_STEP_PARAMS m_3dparams
Despite the name; also used for other formats.
void SetOutputPath(const wxString &aPath)
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
bool DoNotShowAgain() const
void DoNotShowCheckbox(wxString file, int line)
Checks the 'do not show again' setting for the dialog.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
Instantiate the current locale within a scope in which you are expecting exceptions to be thrown.
DIALOG_EXPORT_STEP m_ExportStep
PCBNEW_SETTINGS * GetPcbNewSettings() const
PCB_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
The main frame for Pcbnew.
void SetLastPath(LAST_PATH_TYPE aType, const wxString &aLastPath)
Set the path of the last file successfully read.
bool doAutoSave() override
Perform auto save when the board has been modified and not saved within the auto save interval.
void OnExportSTEP(wxCommandEvent &event)
Export the current BOARD to a STEP assembly.
wxString GetLastPath(LAST_PATH_TYPE aType)
Get the last path for a particular type.
bool IsContentModified() const override
Get if the current board has been modified but not saved.
SELECTION & GetCurrentSelection() override
Get the current selection from the canvas area.
virtual COMMON_SETTINGS * GetCommonSettings() const
virtual const wxString AbsolutePath(const wxString &aFileName) const
Fix up aFileName if it is relative to the project's directory to be an absolute path and filename.
void SaveProjectCopy(const wxString &aFullPath, PROJECT *aProject=nullptr)
Saves a copy of the current project under the given path.
Represent a set of closed polygons.
void SetValue(const wxString &aValue) override
Set a new value in evaluator buffer, and display it in the wxTextCtrl.
const wxString ExpandEnvVarSubstitutions(const wxString &aString, const PROJECT *aProject)
Replace any environment variable & text variable references with their values.
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject)
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
bool BuildBoardPolygonOutlines(BOARD *aBoard, SHAPE_POLY_SET &aOutlines, int aErrorMax, int aChainingEpsilon, OUTLINE_ERROR_HANDLER *aErrorHandler, bool aAllowUseArcsInPolygons)
Extract the board outlines and build a closed polygon from lines, arcs and circle items on edge cut l...
static const std::map< wxString, int > c_formatExtToChoice
static const std::vector< wxString > c_formatCommand
static const std::string BrepFileExtension
static const std::string StepFileAbrvExtension
static const std::string XaoFileExtension
static const std::string GltfBinaryFileExtension
static const std::string StlFileExtension
static const std::string AutoSaveFilePrefix
static const std::string PlyFileExtension
static const std::string StepFileExtension
const wxChar *const traceKiCad2Step
Flag to enable KiCad2Step debug tracing.
This file is part of the common library.
std::optional< V > get_opt(const std::map< wxString, V > &aMap, const wxString &aKey)
KICOMMON_API double DoubleValueFromString(const EDA_IU_SCALE &aIuScale, EDA_UNITS aUnits, const wxString &aTextValue, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
Function DoubleValueFromString converts aTextValue to a double.
SETTINGS_MANAGER * GetSettingsManager()
PGM_BASE & Pgm()
The global Program "get" accessor.
std::vector< FAB_LAYER_COLOR > dummy
bool scaled_3d_models_warning
constexpr double IUTomm(int iu) const
constexpr int mmToIU(double mm) const
wxLogTrace helper definitions.
VECTOR2< double > VECTOR2D
wxString AddFileExtListToFilter(const std::vector< std::string > &aExts)
Build the wildcard extension file dialog wildcard filter to add to the base message dialog.
Definition of file extensions used in Kicad.
#define FN_NORMALIZE_FLAGS
Default flags to pass to wxFileName::Normalize().