2023-01-01 23:37:24 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2024-01-23 01:02:50 +00:00
|
|
|
* Copyright (C) 2023-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
2023-01-01 23:37:24 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2024-03-19 16:04:42 +00:00
|
|
|
#define wxUSE_BASE64 1
|
|
|
|
#include <wx/base64.h>
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
#include <wx/ffile.h>
|
|
|
|
#include <wx/filedlg.h>
|
|
|
|
#include <wx_filename.h>
|
|
|
|
#include <wx/stc/stc.h>
|
|
|
|
|
|
|
|
#include <kiway.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <wildcards_and_files_ext.h>
|
2023-03-16 15:57:27 +00:00
|
|
|
#include <widgets/wx_html_report_box.h>
|
2023-01-01 23:37:24 +00:00
|
|
|
#include <project/project_file.h>
|
|
|
|
#include <sch_edit_frame.h>
|
2023-03-03 22:36:07 +00:00
|
|
|
#include <sim/simulator_frame.h>
|
2023-08-08 17:19:40 +00:00
|
|
|
#include <sim/sim_plot_tab.h>
|
2023-01-01 23:37:24 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/ee_actions.h>
|
|
|
|
#include <tools/simulator_control.h>
|
|
|
|
#include <scintilla_tricks.h>
|
2023-08-08 17:19:40 +00:00
|
|
|
#include <sim/spice_circuit_model.h>
|
2023-02-21 09:06:02 +00:00
|
|
|
#include <dialogs/dialog_user_defined_signals.h>
|
2024-03-19 16:04:42 +00:00
|
|
|
#include <wx/clipbrd.h>
|
|
|
|
#include <wx/dataobj.h>
|
|
|
|
#include <wx/mstream.h>
|
|
|
|
#include <string_utils.h>
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SIMULATOR_CONTROL::Init()
|
|
|
|
{
|
|
|
|
Reset( MODEL_RELOAD );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SIMULATOR_CONTROL::Reset( RESET_REASON aReason )
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame = getEditFrame<SIMULATOR_FRAME>();
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-03 22:36:07 +00:00
|
|
|
if( m_simulatorFrame )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
m_schematicFrame = m_simulatorFrame->GetSchematicFrame();
|
|
|
|
m_circuitModel = m_simulatorFrame->GetCircuitModel();
|
|
|
|
m_simulator = m_simulatorFrame->GetSimulator();
|
2023-01-01 23:37:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
int SIMULATOR_CONTROL::NewAnalysisTab( const TOOL_EVENT& aEvent )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2023-07-05 17:25:52 +00:00
|
|
|
DIALOG_SIM_COMMAND dlg( m_simulatorFrame, m_circuitModel, m_simulator->Settings() );
|
|
|
|
wxString errors;
|
|
|
|
WX_STRING_REPORTER reporter( &errors );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
if( !m_circuitModel->ReadSchematicAndLibraries( NETLIST_EXPORTER_SPICE::OPTION_DEFAULT_FLAGS,
|
|
|
|
reporter ) )
|
2023-03-03 22:36:07 +00:00
|
|
|
{
|
2023-07-05 17:25:52 +00:00
|
|
|
DisplayErrorMessage( m_simulatorFrame,
|
|
|
|
_( "Errors during netlist generation.\n\n" ) + errors );
|
2023-03-03 22:36:07 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
dlg.SetSimCommand( wxS( "*" ) );
|
|
|
|
dlg.SetSimOptions( NETLIST_EXPORTER_SPICE::OPTION_DEFAULT_FLAGS );
|
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
2023-07-19 15:25:57 +00:00
|
|
|
{
|
|
|
|
SIM_TAB* tab = m_simulatorFrame->NewSimTab( dlg.GetSimCommand() );
|
|
|
|
dlg.ApplySettings( tab );
|
2023-08-09 11:09:00 +00:00
|
|
|
m_simulatorFrame->OnModify();
|
2023-07-19 15:25:57 +00:00
|
|
|
}
|
2023-07-05 17:25:52 +00:00
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::OpenWorkbook( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-10-23 17:01:04 +00:00
|
|
|
wxFileDialog openDlg( m_simulatorFrame, _( "Open Simulation Workbook" ), getDefaultPath(), "",
|
2023-12-28 02:10:01 +00:00
|
|
|
FILEEXT::WorkbookFileWildcard(), wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
if( openDlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return -1;
|
|
|
|
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->LoadWorkbook( openDlg.GetPath() );
|
2023-01-01 23:37:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString SIMULATOR_CONTROL::getDefaultFilename()
|
|
|
|
{
|
|
|
|
wxFileName filename = m_simulator->Settings()->GetWorkbookFilename();
|
|
|
|
|
|
|
|
if( filename.GetName().IsEmpty() )
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
if( m_simulatorFrame->Prj().GetProjectName().IsEmpty() )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
|
|
|
filename.SetName( _( "noname" ) );
|
2023-12-28 02:10:01 +00:00
|
|
|
filename.SetExt( FILEEXT::WorkbookFileExtension );
|
2023-01-01 23:37:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
filename.SetName( m_simulatorFrame->Prj().GetProjectName() );
|
2023-12-28 02:10:01 +00:00
|
|
|
filename.SetExt( FILEEXT::WorkbookFileExtension );
|
2023-01-01 23:37:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return filename.GetFullName();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString SIMULATOR_CONTROL::getDefaultPath()
|
|
|
|
{
|
|
|
|
wxFileName path = m_simulator->Settings()->GetWorkbookFilename();
|
|
|
|
|
2023-03-03 22:36:07 +00:00
|
|
|
path.Normalize( FN_NORMALIZE_FLAGS|wxPATH_NORM_ENV_VARS,
|
|
|
|
m_simulatorFrame->Prj().GetProjectPath() );
|
2023-01-01 23:37:24 +00:00
|
|
|
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() )
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
wxFileDialog saveAsDlg( m_simulatorFrame, _( "Save Simulation Workbook As" ),
|
2023-12-28 02:10:01 +00:00
|
|
|
getDefaultPath(), getDefaultFilename(),
|
|
|
|
FILEEXT::WorkbookFileWildcard(),
|
2023-01-01 23:37:24 +00:00
|
|
|
wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
|
|
|
|
|
|
|
if( saveAsDlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
filename = saveAsDlg.GetPath();
|
|
|
|
}
|
|
|
|
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->SaveWorkbook( m_simulatorFrame->Prj().AbsolutePath( filename ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::ExportPlotAsPNG( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
2023-07-05 17:25:52 +00:00
|
|
|
{
|
|
|
|
wxFileDialog saveDlg( m_simulatorFrame, _( "Save Plot as Image" ), "", "",
|
2023-12-28 02:10:01 +00:00
|
|
|
FILEEXT::PngFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
if( saveDlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return -1;
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2024-03-19 16:04:42 +00:00
|
|
|
wxImage screenImage;
|
|
|
|
plotTab->GetPlotWin()->SaveScreenshot( screenImage );
|
|
|
|
screenImage.SaveFile( saveDlg.GetPath(), wxBITMAP_TYPE_PNG );
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::ExportPlotToClipboard( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
|
|
|
{
|
|
|
|
wxImage screenImage;
|
|
|
|
plotTab->GetPlotWin()->SaveScreenshot( screenImage );
|
|
|
|
|
|
|
|
if( wxTheClipboard->Open() )
|
|
|
|
{
|
|
|
|
wxBitmap bm( screenImage );
|
|
|
|
|
|
|
|
wxTheClipboard->SetData( new wxBitmapDataObject( bm ) );
|
|
|
|
wxTheClipboard->Flush(); // Allow data to be available after closing KiCad
|
|
|
|
wxTheClipboard->Close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::ExportPlotToSchematic( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( m_schematicFrame == nullptr )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
|
|
|
{
|
|
|
|
wxWindow* blocking_dialog = m_schematicFrame->Kiway().GetBlockingDialog();
|
|
|
|
|
|
|
|
if( blocking_dialog )
|
|
|
|
blocking_dialog->Close( true );
|
|
|
|
|
|
|
|
wxImage screenImage;
|
|
|
|
plotTab->GetPlotWin()->SaveScreenshot( screenImage );
|
|
|
|
|
|
|
|
if( wxTheClipboard->Open() )
|
|
|
|
{
|
|
|
|
// Build a PNG bitmap:
|
|
|
|
wxMemoryOutputStream stream;
|
|
|
|
screenImage.SaveFile( stream, wxBITMAP_TYPE_PNG );
|
|
|
|
stream.Close();
|
|
|
|
|
|
|
|
// Create a SCH_BITMAP data string
|
|
|
|
wxString string;
|
|
|
|
string << "(image (at 0 0)\n";
|
|
|
|
string << " (data\n";
|
|
|
|
|
|
|
|
wxMemoryBuffer buff;
|
|
|
|
buff.GetWriteBuf( stream.GetLength() );
|
|
|
|
stream.CopyTo( buff.GetData(), stream.GetLength() );
|
|
|
|
buff.SetDataLen( stream.GetLength() );
|
|
|
|
|
|
|
|
wxString out;
|
|
|
|
out << wxBase64Encode( buff );
|
|
|
|
|
|
|
|
#define MIME_BASE64_LENGTH 76
|
|
|
|
size_t first = 0;
|
|
|
|
|
|
|
|
while( first < out.Length() )
|
|
|
|
{
|
|
|
|
string << " \"" << TO_UTF8( out( first, MIME_BASE64_LENGTH ) );
|
|
|
|
string << "\"\n";
|
|
|
|
first += MIME_BASE64_LENGTH;
|
|
|
|
}
|
|
|
|
string << " )\n)\n";
|
|
|
|
|
|
|
|
wxTheClipboard->SetData( new wxTextDataObject( string ) );
|
|
|
|
wxTheClipboard->Close();
|
|
|
|
|
|
|
|
m_schematicFrame->GetToolManager()->PostAction( ACTIONS::paste );
|
|
|
|
m_schematicFrame->Raise();
|
|
|
|
}
|
2023-07-05 17:25:52 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
SIM_TAB* SIMULATOR_CONTROL::getCurrentSimTab()
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2023-07-09 22:00:25 +00:00
|
|
|
return m_simulatorFrame->GetCurrentSimTab();
|
2023-07-05 17:25:52 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
int SIMULATOR_CONTROL::ExportPlotAsCSV( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
2023-07-05 17:25:52 +00:00
|
|
|
{
|
|
|
|
const wxChar SEPARATOR = ';';
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-12-28 02:10:01 +00:00
|
|
|
wxFileDialog saveDlg( m_simulatorFrame, _( "Save Plot Data" ), "", "",
|
|
|
|
FILEEXT::CsvFileWildcard(),
|
2023-07-05 17:25:52 +00:00
|
|
|
wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
if( saveDlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return -1;
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
wxFFile out( saveDlg.GetPath(), "wb" );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
std::map<wxString, TRACE*> traces = plotTab->GetTraces();
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
if( traces.size() == 0 )
|
|
|
|
return -1;
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
SIM_TYPE simType = plotTab->GetSimType();
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
std::size_t rowCount = traces.begin()->second->GetDataX().size();
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
// write column header names on the first row
|
|
|
|
wxString xAxisName( m_simulator->GetXAxis( simType ) );
|
|
|
|
out.Write( wxString::Format( wxT( "%s%c" ), xAxisName, SEPARATOR ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
for( const auto& [name, trace] : traces )
|
|
|
|
out.Write( wxString::Format( wxT( "%s%c" ), name, SEPARATOR ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
out.Write( wxS( "\r\n" ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
// write each row's numerical value
|
|
|
|
for ( std::size_t curRow=0; curRow < rowCount; curRow++ )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2023-07-05 17:25:52 +00:00
|
|
|
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" ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
out.Close();
|
2023-01-01 23:37:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::Close( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->Close();
|
2023-01-01 23:37:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::Zoom( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2024-01-23 01:02:50 +00:00
|
|
|
mpWindow* plot = plotTab->GetPlotWin();
|
|
|
|
|
2023-09-26 12:18:28 +00:00
|
|
|
if( aEvent.IsAction( &ACTIONS::zoomInCenter ) )
|
|
|
|
{
|
2024-01-23 01:02:50 +00:00
|
|
|
plot->ZoomIn();
|
2023-09-26 12:18:28 +00:00
|
|
|
}
|
2023-07-19 15:25:57 +00:00
|
|
|
else if( aEvent.IsAction( &ACTIONS::zoomOutCenter ) )
|
2023-09-26 12:18:28 +00:00
|
|
|
{
|
2024-01-23 01:02:50 +00:00
|
|
|
plot->ZoomOut();
|
|
|
|
}
|
|
|
|
else if( aEvent.IsAction( &ACTIONS::zoomInHorizontally ) )
|
|
|
|
{
|
|
|
|
plot->ZoomIn( wxDefaultPosition, mpWindow::zoomIncrementalFactor, wxHORIZONTAL );
|
|
|
|
}
|
|
|
|
else if( aEvent.IsAction( &ACTIONS::zoomOutHorizontally ) )
|
|
|
|
{
|
|
|
|
plot->ZoomOut( wxDefaultPosition, mpWindow::zoomIncrementalFactor, wxHORIZONTAL );
|
|
|
|
}
|
|
|
|
else if( aEvent.IsAction( &ACTIONS::zoomInVertically ) )
|
|
|
|
{
|
|
|
|
plot->ZoomIn( wxDefaultPosition, mpWindow::zoomIncrementalFactor, wxVERTICAL );
|
|
|
|
}
|
|
|
|
else if( aEvent.IsAction( &ACTIONS::zoomOutVertically ) )
|
|
|
|
{
|
|
|
|
plot->ZoomOut( wxDefaultPosition, mpWindow::zoomIncrementalFactor, wxVERTICAL );
|
2023-09-26 12:18:28 +00:00
|
|
|
}
|
2023-07-19 15:25:57 +00:00
|
|
|
else if( aEvent.IsAction( &ACTIONS::zoomFitScreen ) )
|
2023-09-26 12:18:28 +00:00
|
|
|
{
|
|
|
|
wxCommandEvent dummy;
|
2024-01-23 01:02:50 +00:00
|
|
|
plot->OnFit( dummy );
|
2023-09-26 12:18:28 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-09-26 12:18:28 +00:00
|
|
|
int SIMULATOR_CONTROL::UndoZoom( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
|
|
|
plotTab->GetPlotWin()->ZoomUndo();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::RedoZoom( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
|
|
|
plotTab->GetPlotWin()->ZoomRedo();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
int SIMULATOR_CONTROL::ToggleGrid( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
2023-02-26 11:57:02 +00:00
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
plotTab->ShowGrid( !plotTab->IsGridShown() );
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->OnModify();
|
2023-02-26 11:57:02 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::ToggleLegend( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
2023-02-26 11:57:02 +00:00
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
plotTab->ShowLegend( !plotTab->IsLegendShown() );
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->OnModify();
|
2023-02-26 11:57:02 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::ToggleDottedSecondary( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
if( SIM_PLOT_TAB* plotTab = dynamic_cast<SIM_PLOT_TAB*>( getCurrentSimTab() ) )
|
2023-02-26 11:57:02 +00:00
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
plotTab->SetDottedSecondary( !plotTab->GetDottedSecondary() );
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->OnModify();
|
2023-02-26 11:57:02 +00:00
|
|
|
}
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::ToggleDarkModePlots( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->ToggleDarkModePlots();
|
2023-01-01 23:37:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
int SIMULATOR_CONTROL::EditAnalysisTab( const TOOL_EVENT& aEvent )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
m_simulatorFrame->EditAnalysis();
|
2023-01-01 23:37:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SIMULATOR_CONTROL::RunSimulation( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( m_simulator->IsRunning() )
|
2023-07-05 17:25:52 +00:00
|
|
|
{
|
2023-01-01 23:37:24 +00:00
|
|
|
m_simulator->Stop();
|
2023-07-05 17:25:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
if( !getCurrentSimTab() )
|
|
|
|
NewAnalysisTab( aEvent );
|
2023-07-05 17:25:52 +00:00
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
if( !getCurrentSimTab() )
|
2023-07-05 17:25:52 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
m_simulatorFrame->StartSimulation();
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
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 );
|
|
|
|
|
2023-06-26 22:16:51 +00:00
|
|
|
m_schematicFrame->GetToolManager()->PostAction( EE_ACTIONS::simProbe );
|
2023-01-01 23:37:24 +00:00
|
|
|
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 );
|
|
|
|
|
2023-06-26 22:16:51 +00:00
|
|
|
m_schematicFrame->GetToolManager()->PostAction( EE_ACTIONS::simTune );
|
2023-01-01 23:37:24 +00:00
|
|
|
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 ) );
|
|
|
|
}
|
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
NETLIST_VIEW_DIALOG( wxWindow* parent ) :
|
2023-01-01 23:37:24 +00:00
|
|
|
DIALOG_SHIM( parent, wxID_ANY, _( "SPICE Netlist" ), wxDefaultPosition,
|
2023-03-16 15:57:27 +00:00
|
|
|
wxSize( 800, 800 ), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
|
|
|
|
m_textCtrl( nullptr ),
|
|
|
|
m_reporter( nullptr )
|
2023-01-01 23:37:24 +00:00
|
|
|
{
|
2023-03-16 15:57:27 +00:00
|
|
|
m_splitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
//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 );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
wxFont fixedFont = KIUI::GetMonospacedUIFont();
|
|
|
|
|
|
|
|
for( int i = 0; i < wxSTC_STYLE_MAX; ++i )
|
2023-03-16 15:57:27 +00:00
|
|
|
m_textCtrl->StyleSetFont( i, fixedFont );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
m_textCtrl->StyleClearAll(); // Addresses a bug in wx3.0 where styles are not correctly set
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
m_textCtrl->SetWrapMode( wxSTC_WRAP_WORD );
|
|
|
|
m_textCtrl->SetLexer( wxSTC_LEX_SPICE );
|
|
|
|
m_textCtrl->SetMinSize( wxSize( 40, 40 ) );
|
|
|
|
m_textCtrl->SetSize( wxSize( 40, 40 ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
m_reporter = new WX_HTML_REPORT_BOX( m_splitter, wxID_ANY );
|
|
|
|
m_reporter->SetMinSize( wxSize( 40, 40 ) );
|
|
|
|
m_reporter->SetSize( wxSize( 40, 40 ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
m_splitter->SetMinimumPaneSize( 40 );
|
|
|
|
m_splitter->SetSashPosition( 760 );
|
|
|
|
m_splitter->SetSashGravity( 0.9 );
|
|
|
|
m_splitter->SplitHorizontally( m_textCtrl, m_reporter );
|
2023-03-06 18:45:23 +00:00
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
|
2023-03-16 15:57:27 +00:00
|
|
|
sizer->Add( m_splitter, 1, wxEXPAND | wxALL, 5 );
|
2023-01-01 23:37:24 +00:00
|
|
|
SetSizer( sizer );
|
2023-03-16 15:57:27 +00:00
|
|
|
Layout();
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( NETLIST_VIEW_DIALOG::onClose ),
|
|
|
|
nullptr, this );
|
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
m_scintillaTricks = std::make_unique<SCINTILLA_TRICKS>( m_textCtrl, wxT( "{}" ), false );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
|
|
|
finishDialogSettings();
|
|
|
|
}
|
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
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;
|
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
std::unique_ptr<SCINTILLA_TRICKS> m_scintillaTricks;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-02-21 09:06:02 +00:00
|
|
|
int SIMULATOR_CONTROL::EditUserDefinedSignals( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2023-03-03 22:36:07 +00:00
|
|
|
std::map<int, wxString> userSignals = m_simulatorFrame->UserDefinedSignals();
|
2023-02-21 09:06:02 +00:00
|
|
|
|
2023-03-03 22:36:07 +00:00
|
|
|
DIALOG_USER_DEFINED_SIGNALS dlg( m_simulatorFrame, &userSignals );
|
2023-02-21 09:06:02 +00:00
|
|
|
|
2024-03-10 12:18:27 +00:00
|
|
|
// QuasiModal required for syntax help and Scintilla auto-complete
|
2023-02-21 09:06:02 +00:00
|
|
|
if( dlg.ShowQuasiModal() == wxID_OK )
|
2023-03-03 22:36:07 +00:00
|
|
|
m_simulatorFrame->SetUserDefinedSignals( userSignals );
|
2023-02-21 09:06:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
int SIMULATOR_CONTROL::ShowNetlist( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( m_schematicFrame == nullptr || m_simulator == nullptr )
|
|
|
|
return -1;
|
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
STRING_FORMATTER formatter;
|
|
|
|
NETLIST_VIEW_DIALOG dlg( m_simulatorFrame );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-07-05 17:25:52 +00:00
|
|
|
m_circuitModel->GetNetlist( m_simulatorFrame->GetCurrentSimCommand(),
|
|
|
|
m_simulatorFrame->GetCurrentOptions(),
|
|
|
|
&formatter, *dlg.GetReporter() );
|
2023-01-01 23:37:24 +00:00
|
|
|
|
2023-03-16 15:57:27 +00:00
|
|
|
dlg.SetNetlist( wxString( formatter.GetString() ) );
|
2023-01-01 23:37:24 +00:00
|
|
|
dlg.ShowModal();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SIMULATOR_CONTROL::setTransitions()
|
|
|
|
{
|
2023-07-19 15:25:57 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::NewAnalysisTab, EE_ACTIONS::newAnalysisTab.MakeEvent() );
|
2023-01-01 23:37:24 +00:00
|
|
|
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() );
|
2024-03-19 16:04:42 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::ExportPlotToClipboard, EE_ACTIONS::exportPlotToClipboard.MakeEvent() );
|
|
|
|
Go( &SIMULATOR_CONTROL::ExportPlotToSchematic, EE_ACTIONS::exportPlotToSchematic.MakeEvent() );
|
|
|
|
|
2023-01-01 23:37:24 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::Close, ACTIONS::quit.MakeEvent() );
|
|
|
|
|
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomInCenter.MakeEvent() );
|
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomOutCenter.MakeEvent() );
|
2024-01-23 01:02:50 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomInHorizontally.MakeEvent() );
|
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomOutHorizontally.MakeEvent() );
|
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomInVertically.MakeEvent() );
|
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomOutVertically.MakeEvent() );
|
2023-01-01 23:37:24 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::Zoom, ACTIONS::zoomFitScreen.MakeEvent() );
|
2023-09-26 12:18:28 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::UndoZoom, ACTIONS::zoomUndo.MakeEvent() );
|
|
|
|
Go( &SIMULATOR_CONTROL::RedoZoom, ACTIONS::zoomRedo.MakeEvent() );
|
2023-01-01 23:37:24 +00:00
|
|
|
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() );
|
|
|
|
|
2023-07-19 15:25:57 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::EditAnalysisTab, EE_ACTIONS::simAnalysisProperties.MakeEvent() );
|
2023-01-01 23:37:24 +00:00
|
|
|
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() );
|
|
|
|
|
2023-02-21 09:06:02 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::EditUserDefinedSignals, EE_ACTIONS::editUserDefinedSignals.MakeEvent() );
|
2023-01-01 23:37:24 +00:00
|
|
|
Go( &SIMULATOR_CONTROL::ShowNetlist, EE_ACTIONS::showNetlist.MakeEvent() );
|
|
|
|
}
|