/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 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 */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include bool SIMULATOR_CONTROL::Init() { Reset( MODEL_RELOAD ); return true; } void SIMULATOR_CONTROL::Reset( RESET_REASON aReason ) { m_simulatorFrame = getEditFrame(); if( m_simulatorFrame ) { m_schematicFrame = m_simulatorFrame->GetSchematicFrame(); m_circuitModel = m_simulatorFrame->GetCircuitModel(); m_simulator = m_simulatorFrame->GetSimulator(); } } int SIMULATOR_CONTROL::NewPlot( const TOOL_EVENT& aEvent ) { SIM_TYPE type = m_circuitModel->GetSimType(); if( SIM_PANEL_BASE::IsPlottable( type ) ) { m_simulatorFrame->NewPlotPanel( m_circuitModel->GetSimCommand(), m_circuitModel->GetSimOptions() ); } return 0; } int SIMULATOR_CONTROL::OpenWorkbook( const TOOL_EVENT& aEvent ) { wxFileDialog openDlg( m_simulatorFrame, _( "Open simulation workbook" ), getDefaultPath(), "", WorkbookFileWildcard(), wxFD_OPEN | wxFD_FILE_MUST_EXIST ); if( openDlg.ShowModal() == wxID_CANCEL ) return -1; m_simulatorFrame->LoadWorkbook( openDlg.GetPath() ); return 0; } wxString SIMULATOR_CONTROL::getDefaultFilename() { wxFileName filename = m_simulator->Settings()->GetWorkbookFilename(); if( filename.GetName().IsEmpty() ) { if( m_simulatorFrame->Prj().GetProjectName().IsEmpty() ) { filename.SetName( _( "noname" ) ); filename.SetExt( WorkbookFileExtension ); } else { filename.SetName( m_simulatorFrame->Prj().GetProjectName() ); filename.SetExt( WorkbookFileExtension ); } } return filename.GetFullName(); } wxString SIMULATOR_CONTROL::getDefaultPath() { wxFileName path = m_simulator->Settings()->GetWorkbookFilename(); path.Normalize( FN_NORMALIZE_FLAGS|wxPATH_NORM_ENV_VARS, m_simulatorFrame->Prj().GetProjectPath() ); return path.GetPath(); } int SIMULATOR_CONTROL::SaveWorkbook( const TOOL_EVENT& aEvent ) { wxString filename; if( aEvent.IsAction( &EE_ACTIONS::saveWorkbook ) ) filename = m_simulator->Settings()->GetWorkbookFilename(); if( filename.IsEmpty() ) { wxFileDialog saveAsDlg( m_simulatorFrame, _( "Save Simulation Workbook As" ), getDefaultPath(), getDefaultFilename(), WorkbookFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT ); if( saveAsDlg.ShowModal() == wxID_CANCEL ) return -1; filename = saveAsDlg.GetPath(); } m_simulatorFrame->SaveWorkbook( m_simulatorFrame->Prj().AbsolutePath( filename ) ); return 0; } int SIMULATOR_CONTROL::ExportPlotAsPNG( const TOOL_EVENT& aEvent ) { if( !m_simulatorFrame->GetCurrentPlot() ) return -1; wxFileDialog saveDlg( m_simulatorFrame, _( "Save Plot as Image" ), "", "", PngFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT ); if( saveDlg.ShowModal() == wxID_CANCEL ) return -1; m_simulatorFrame->GetCurrentPlot()->GetPlotWin()->SaveScreenshot( saveDlg.GetPath(), wxBITMAP_TYPE_PNG ); return 0; } int SIMULATOR_CONTROL::ExportPlotAsCSV( const TOOL_EVENT& aEvent ) { if( !m_simulatorFrame->GetCurrentPlot() ) return -1; const wxChar SEPARATOR = ';'; wxFileDialog saveDlg( m_simulatorFrame, _( "Save Plot Data" ), "", "", CsvFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT ); if( saveDlg.ShowModal() == wxID_CANCEL ) return -1; wxFFile out( saveDlg.GetPath(), "wb" ); std::map traces = m_simulatorFrame->GetCurrentPlot()->GetTraces(); if( traces.size() == 0 ) return -1; SIM_TYPE simType = m_circuitModel->GetSimType(); std::size_t rowCount = traces.begin()->second->GetDataX().size(); // write column header names on the first row wxString xAxisName( m_simulator->GetXAxis( simType ) ); out.Write( wxString::Format( wxT( "%s%c" ), xAxisName, SEPARATOR ) ); for( const auto& [name, trace] : traces ) out.Write( wxString::Format( wxT( "%s%c" ), name, SEPARATOR ) ); out.Write( wxS( "\r\n" ) ); // write each row's numerical value for ( std::size_t curRow=0; curRow < rowCount; curRow++ ) { double xAxisValue = traces.begin()->second->GetDataX().at( curRow ); out.Write( wxString::Format( wxT( "%g%c" ), xAxisValue, SEPARATOR ) ); for( const auto& [name, trace] : traces ) { double yAxisValue = trace->GetDataY().at( curRow ); out.Write( wxString::Format( wxT( "%g%c" ), yAxisValue, SEPARATOR ) ); } out.Write( wxS( "\r\n" ) ); } out.Close(); return 0; } int SIMULATOR_CONTROL::Close( const TOOL_EVENT& aEvent ) { m_simulatorFrame->Close(); return 0; } int SIMULATOR_CONTROL::Zoom( const TOOL_EVENT& aEvent ) { if( m_simulatorFrame->GetCurrentPlot() ) { if( aEvent.IsAction( &ACTIONS::zoomInCenter ) ) m_simulatorFrame->GetCurrentPlot()->GetPlotWin()->ZoomIn(); else if( aEvent.IsAction( &ACTIONS::zoomOutCenter ) ) m_simulatorFrame->GetCurrentPlot()->GetPlotWin()->ZoomOut(); else if( aEvent.IsAction( &ACTIONS::zoomFitScreen ) ) m_simulatorFrame->GetCurrentPlot()->GetPlotWin()->Fit(); } return 0; } int SIMULATOR_CONTROL::ToggleGrid( const TOOL_EVENT& aEvent ) { SIM_PLOT_PANEL* plot = m_simulatorFrame->GetCurrentPlot(); if( plot ) { plot->ShowGrid( !plot->IsGridShown() ); m_simulatorFrame->OnModify(); } return 0; } int SIMULATOR_CONTROL::ToggleLegend( const TOOL_EVENT& aEvent ) { SIM_PLOT_PANEL* plot = m_simulatorFrame->GetCurrentPlot(); if( plot ) { plot->ShowLegend( !plot->IsLegendShown() ); m_simulatorFrame->OnModify(); } return 0; } int SIMULATOR_CONTROL::ToggleDottedSecondary( const TOOL_EVENT& aEvent ) { SIM_PLOT_PANEL* plot = m_simulatorFrame->GetCurrentPlot(); if( plot ) { plot->SetDottedSecondary( !plot->GetDottedSecondary() ); m_simulatorFrame->OnModify(); } return 0; } int SIMULATOR_CONTROL::ToggleDarkModePlots( const TOOL_EVENT& aEvent ) { m_simulatorFrame->ToggleDarkModePlots(); return 0; } int SIMULATOR_CONTROL::EditSimCommand( const TOOL_EVENT& aEvent ) { m_simulatorFrame->EditSimCommand(); return 0; } int SIMULATOR_CONTROL::RunSimulation( const TOOL_EVENT& aEvent ) { if( m_simulator->IsRunning() ) m_simulator->Stop(); else m_simulatorFrame->StartSimulation(); return 0; } int SIMULATOR_CONTROL::Probe( const TOOL_EVENT& aEvent ) { if( m_schematicFrame == nullptr ) return -1; wxWindow* blocking_dialog = m_schematicFrame->Kiway().GetBlockingDialog(); if( blocking_dialog ) blocking_dialog->Close( true ); m_schematicFrame->GetToolManager()->RunAction( EE_ACTIONS::simProbe ); m_schematicFrame->Raise(); return 0; } int SIMULATOR_CONTROL::Tune( const TOOL_EVENT& aEvent ) { if( m_schematicFrame == nullptr ) return -1; wxWindow* blocking_dialog = m_schematicFrame->Kiway().GetBlockingDialog(); if( blocking_dialog ) blocking_dialog->Close( true ); m_schematicFrame->GetToolManager()->RunAction( EE_ACTIONS::simTune ); m_schematicFrame->Raise(); return 0; } class NETLIST_VIEW_DIALOG : public DIALOG_SHIM { public: enum { MARGIN_LINE_NUMBERS }; void onClose( wxCloseEvent& evt ) { wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL ) ); } NETLIST_VIEW_DIALOG( wxWindow* parent ) : DIALOG_SHIM( parent, wxID_ANY, _( "SPICE Netlist" ), wxDefaultPosition, wxSize( 800, 800 ), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ), m_textCtrl( nullptr ), m_reporter( nullptr ) { m_splitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH ); //Avoid the splitter window being assigned as the Parent to additional windows m_splitter->SetExtraStyle( wxWS_EX_TRANSIENT ); m_textCtrl = new wxStyledTextCtrl( m_splitter, wxID_ANY ); m_textCtrl->SetMarginWidth( MARGIN_LINE_NUMBERS, 50 ); m_textCtrl->StyleSetForeground( wxSTC_STYLE_LINENUMBER, wxColour( 75, 75, 75 ) ); m_textCtrl->StyleSetBackground( wxSTC_STYLE_LINENUMBER, wxColour( 220, 220, 220 ) ); m_textCtrl->SetMarginType( MARGIN_LINE_NUMBERS, wxSTC_MARGIN_NUMBER ); wxFont fixedFont = KIUI::GetMonospacedUIFont(); for( int i = 0; i < wxSTC_STYLE_MAX; ++i ) m_textCtrl->StyleSetFont( i, fixedFont ); m_textCtrl->StyleClearAll(); // Addresses a bug in wx3.0 where styles are not correctly set m_textCtrl->SetWrapMode( wxSTC_WRAP_WORD ); m_textCtrl->SetLexer( wxSTC_LEX_SPICE ); m_textCtrl->SetMinSize( wxSize( 40, 40 ) ); m_textCtrl->SetSize( wxSize( 40, 40 ) ); m_reporter = new WX_HTML_REPORT_BOX( m_splitter, wxID_ANY ); m_reporter->SetMinSize( wxSize( 40, 40 ) ); m_reporter->SetSize( wxSize( 40, 40 ) ); m_splitter->SetMinimumPaneSize( 40 ); m_splitter->SetSashPosition( 760 ); m_splitter->SetSashGravity( 0.9 ); m_splitter->SplitHorizontally( m_textCtrl, m_reporter ); wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL ); sizer->Add( m_splitter, 1, wxEXPAND | wxALL, 5 ); SetSizer( sizer ); Layout(); Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( NETLIST_VIEW_DIALOG::onClose ), nullptr, this ); m_scintillaTricks = std::make_unique( m_textCtrl, wxT( "{}" ), false ); finishDialogSettings(); } void SetNetlist( const wxString& aSource ) { m_textCtrl->SetText( aSource ); m_textCtrl->SetEditable( false ); m_reporter->Flush(); } REPORTER* GetReporter() { return m_reporter; } private: wxSplitterWindow* m_splitter; wxStyledTextCtrl* m_textCtrl; WX_HTML_REPORT_BOX* m_reporter; std::unique_ptr m_scintillaTricks; }; int SIMULATOR_CONTROL::EditUserDefinedSignals( const TOOL_EVENT& aEvent ) { std::map userSignals = m_simulatorFrame->UserDefinedSignals(); DIALOG_USER_DEFINED_SIGNALS dlg( m_simulatorFrame, &userSignals ); if( dlg.ShowQuasiModal() == wxID_OK ) m_simulatorFrame->SetUserDefinedSignals( userSignals ); return 0; } int SIMULATOR_CONTROL::ShowNetlist( const TOOL_EVENT& aEvent ) { if( m_schematicFrame == nullptr || m_simulator == nullptr ) return -1; STRING_FORMATTER formatter; NETLIST_VIEW_DIALOG dlg( m_simulatorFrame ); m_circuitModel->SetSimOptions( m_simulatorFrame->GetCurrentOptions() ); m_circuitModel->GetNetlist( &formatter, *dlg.GetReporter() ); dlg.SetNetlist( wxString( formatter.GetString() ) ); dlg.ShowModal(); return 0; } void SIMULATOR_CONTROL::setTransitions() { Go( &SIMULATOR_CONTROL::NewPlot, EE_ACTIONS::newPlot.MakeEvent() ); Go( &SIMULATOR_CONTROL::OpenWorkbook, EE_ACTIONS::openWorkbook.MakeEvent() ); Go( &SIMULATOR_CONTROL::SaveWorkbook, EE_ACTIONS::saveWorkbook.MakeEvent() ); Go( &SIMULATOR_CONTROL::SaveWorkbook, EE_ACTIONS::saveWorkbookAs.MakeEvent() ); Go( &SIMULATOR_CONTROL::ExportPlotAsPNG, EE_ACTIONS::exportPlotAsPNG.MakeEvent() ); Go( &SIMULATOR_CONTROL::ExportPlotAsCSV, EE_ACTIONS::exportPlotAsCSV.MakeEvent() ); Go( &SIMULATOR_CONTROL::Close, ACTIONS::quit.MakeEvent() ); Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomInCenter.MakeEvent() ); Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomOutCenter.MakeEvent() ); Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomFitScreen.MakeEvent() ); Go( &SIMULATOR_CONTROL::ToggleGrid, ACTIONS::toggleGrid.MakeEvent() ); Go( &SIMULATOR_CONTROL::ToggleLegend, EE_ACTIONS::toggleLegend.MakeEvent() ); Go( &SIMULATOR_CONTROL::ToggleDottedSecondary, EE_ACTIONS::toggleDottedSecondary.MakeEvent() ); Go( &SIMULATOR_CONTROL::ToggleDarkModePlots, EE_ACTIONS::toggleDarkModePlots.MakeEvent() ); Go( &SIMULATOR_CONTROL::EditSimCommand, EE_ACTIONS::simCommand.MakeEvent() ); Go( &SIMULATOR_CONTROL::RunSimulation, EE_ACTIONS::runSimulation.MakeEvent() ); Go( &SIMULATOR_CONTROL::RunSimulation, EE_ACTIONS::stopSimulation.MakeEvent() ); Go( &SIMULATOR_CONTROL::Probe, EE_ACTIONS::simProbe.MakeEvent() ); Go( &SIMULATOR_CONTROL::Tune, EE_ACTIONS::simTune.MakeEvent() ); Go( &SIMULATOR_CONTROL::EditUserDefinedSignals, EE_ACTIONS::editUserDefinedSignals.MakeEvent() ); Go( &SIMULATOR_CONTROL::ShowNetlist, EE_ACTIONS::showNetlist.MakeEvent() ); }