kicad/eeschema/sim/sim_plot_panel.h

321 lines
8.5 KiB
C
Raw Normal View History

2016-08-11 12:41:07 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
2023-01-01 23:37:24 +00:00
* Copyright (C) 2016-2023 CERN
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
*
2016-08-11 12:41:07 +00:00
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
* @author Maciej Suminski <maciej.suminski@cern.ch>
2016-08-11 12:41:07 +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 3
2016-08-11 12:41:07 +00:00
* 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:
* https://www.gnu.org/licenses/gpl-3.0.html
* or you may search the http://www.gnu.org website for the version 3 license,
2016-08-11 12:41:07 +00:00
* or you may write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
2016-08-11 12:41:01 +00:00
#ifndef __SIM_PLOT_PANEL_H
#define __SIM_PLOT_PANEL_H
#include "sim_types.h"
#include <map>
#include <widgets/mathplot.h>
#include <wx/colour.h>
#include <wx/sizer.h>
#include "sim_panel_base.h"
#include "sim_plot_colors.h"
2016-08-11 12:41:01 +00:00
class SIM_PLOT_FRAME;
class SIM_PLOT_PANEL;
class TRACE;
2016-08-11 12:41:22 +00:00
///< Cursor attached to a trace to follow its values:
2016-08-11 12:41:22 +00:00
class CURSOR : public mpInfoLayer
{
public:
CURSOR( TRACE* aTrace, SIM_PLOT_PANEL* aPlotPanel ) :
mpInfoLayer( wxRect( 0, 0, DRAG_MARGIN, DRAG_MARGIN ), wxTRANSPARENT_BRUSH ),
m_trace( aTrace ),
m_updateRequired( true ),
m_updateRef( false ),
m_coords( 0.0, 0.0 ),
m_window( nullptr )
2016-08-11 12:41:22 +00:00
{
SetDrawOutsideMargins( false );
2016-08-11 12:41:22 +00:00
}
void Plot( wxDC& aDC, mpWindow& aWindow ) override;
2016-08-11 12:42:14 +00:00
void SetX( int aX )
{
m_reference.x = 0;
m_updateRef = true;
Move( wxPoint( aX, 0 ) );
}
void Update()
{
m_updateRequired = true;
}
bool Inside( const wxPoint& aPoint ) const override;
2016-08-11 12:41:22 +00:00
void Move( wxPoint aDelta ) override
{
Update();
2016-08-11 12:41:22 +00:00
mpInfoLayer::Move( aDelta );
}
void UpdateReference() override;
2016-08-11 12:41:22 +00:00
const wxRealPoint& GetCoords() const
{
return m_coords;
}
void SetCoordX( double aValue );
private:
void doSetCoordX( double aValue );
wxString getID();
2016-08-11 12:41:22 +00:00
private:
TRACE* m_trace;
bool m_updateRequired;
bool m_updateRef;
wxRealPoint m_coords;
mpWindow* m_window;
2016-08-11 12:41:22 +00:00
static constexpr int DRAG_MARGIN = 10;
2016-08-11 12:41:22 +00:00
};
class TRACE : public mpFXYVector
{
public:
TRACE( const wxString& aName, SIM_TRACE_TYPE aType ) :
mpFXYVector( aName ),
m_type( aType )
2016-08-11 12:42:17 +00:00
{
SetContinuity( true );
SetDrawOutsideMargins( false );
ShowName( false );
}
void SetName( wxString aName ) override
{
for( auto& [ idx, cursor ] : m_cursors )
{
if( cursor )
cursor->SetName( aName );
}
mpFXYVector::SetName( aName );
}
2016-08-11 12:42:17 +00:00
/**
* Assigns new data set for the trace. aX and aY need to have the same length.
*
2016-08-11 12:42:17 +00:00
* @param aX are the X axis values.
* @param aY are the Y axis values.
*/
void SetData( const std::vector<double>& aX, const std::vector<double>& aY ) override
{
for( auto& [ idx, cursor ] : m_cursors )
{
if( cursor )
cursor->Update();
}
mpFXYVector::SetData( aX, aY );
}
const std::vector<double>& GetDataX() const { return m_xs; }
const std::vector<double>& GetDataY() const { return m_ys; }
bool HasCursor( int aCursorId ) { return m_cursors[ aCursorId ] != nullptr; }
void SetCursor( int aCursorId, CURSOR* aCursor ) { m_cursors[ aCursorId ] = aCursor; }
CURSOR* GetCursor( int aCursorId ) { return m_cursors[ aCursorId ]; }
std::map<int, CURSOR*>& GetCursors() { return m_cursors; }
SIM_TRACE_TYPE GetType() const { return m_type; }
void SetTraceColour( const wxColour& aColour ) { m_traceColour = aColour; }
wxColour GetTraceColour() const { return m_traceColour; }
protected:
std::map<int, CURSOR*> m_cursors; // No ownership; the mpWindow owns the CURSORs
SIM_TRACE_TYPE m_type;
wxColour m_traceColour;
};
class SIM_PLOT_PANEL : public SIM_PANEL_BASE
2016-08-11 12:41:01 +00:00
{
public:
2023-01-01 23:37:24 +00:00
SIM_PLOT_PANEL( const wxString& aCommand, int aOptions, wxWindow* parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = 0, const wxString& name = wxPanelNameStr );
2016-08-11 12:41:01 +00:00
virtual ~SIM_PLOT_PANEL();
2016-08-11 12:41:01 +00:00
wxString GetLabelX() const
{
return m_axis_x ? m_axis_x->GetName() : wxString( wxS( "" ) );
}
wxString GetLabelY1() const
{
return m_axis_y1 ? m_axis_y1->GetName() : wxString( wxS( "" ) );
}
wxString GetLabelY2() const
{
return m_axis_y2 ? m_axis_y2->GetName() : wxString( wxS( "" ) );
}
wxString GetLabelY3() const
{
return m_axis_y3 ? m_axis_y3->GetName() : wxString( wxS( "" ) );
}
wxString GetUnitsX() const;
wxString GetUnitsY1() const;
wxString GetUnitsY2() const;
wxString GetUnitsY3() const;
2016-08-11 12:41:52 +00:00
const std::map<wxString, TRACE*>& GetTraces() const
{
return m_traces;
}
TRACE* GetTrace( const wxString& aVecName, int aType ) const
{
auto trace = m_traces.find( getTraceId( aVecName, aType ) );
2021-07-16 20:13:26 +00:00
return trace == m_traces.end() ? nullptr : trace->second;
}
void ShowGrid( bool aEnable )
{
m_axis_x->SetTicks( !aEnable );
m_axis_y1->SetTicks( !aEnable );
m_axis_y2->SetTicks( !aEnable );
m_axis_y3->SetTicks( !aEnable );
m_plotWin->UpdateAll();
}
bool IsGridShown() const
{
if( !m_axis_x || !m_axis_y1 )
return false;
assert( m_axis_x->GetTicks() == m_axis_y1->GetTicks() );
return !m_axis_x->GetTicks();
}
void ShowLegend( bool aEnable )
{
m_legend->SetVisible( aEnable );
m_plotWin->UpdateAll();
}
bool IsLegendShown() const
{
return m_legend->IsVisible();
}
2023-01-01 23:37:24 +00:00
/**
* Draw secondary signal traces (current or phase) with dotted lines
*/
void SetDottedSecondary( bool aEnable )
{
m_dotted_cp = aEnable;
for( const auto& tr : m_traces )
UpdateTraceStyle( tr.second );
m_plotWin->UpdateAll();
}
2023-01-01 23:37:24 +00:00
bool GetDottedSecondary() const
{
return m_dotted_cp;
}
2021-07-16 20:13:26 +00:00
///< Toggle cursor for a particular trace.
void EnableCursor( const wxString& aVectorName, int aType, int aCursorId, bool aEnable,
const wxString& aSignalName );
2021-07-16 20:13:26 +00:00
///< Reset scale ranges to fit the current traces.
2016-08-11 12:42:04 +00:00
void ResetScales();
///< Update trace line style
void UpdateTraceStyle( TRACE* trace );
///> Update plot colors
void UpdatePlotColors();
void OnLanguageChanged() override;
///< Getter for math plot window
mpWindow* GetPlotWin() const
{
return m_plotWin;
}
TRACE* AddTrace( const wxString& aVecName, int aType );
void SetTraceData( TRACE* aTrace, unsigned int aPoints, const double* aX, const double* aY );
bool DeleteTrace( const wxString& aVectorName, int aTraceType );
void DeleteTrace( TRACE* aTrace );
2016-08-11 12:41:12 +00:00
private:
wxString getTraceId( const wxString& aVecName, int aType ) const
{
return wxString::Format( wxS( "%s%d" ), aVecName, aType & SPT_Y_AXIS_MASK );
}
///< @brief Construct the plot axes for DC simulation plot.
void prepareDCAxes( int aNewTraceType );
///> Create/Ensure axes are available for plotting
void updateAxes( int aNewTraceType = SIM_TRACE_TYPE::SPT_UNKNOWN );
2023-01-01 23:37:24 +00:00
private:
SIM_PLOT_COLORS m_colors;
2016-08-11 12:41:14 +00:00
// Top-level plot window
2023-01-01 23:37:24 +00:00
mpWindow* m_plotWin;
wxBoxSizer* m_sizer;
// Traces to be plotted
2016-08-11 12:41:52 +00:00
std::map<wxString, TRACE*> m_traces;
2016-08-11 12:41:14 +00:00
2023-01-01 23:37:24 +00:00
mpScaleXBase* m_axis_x;
mpScaleY* m_axis_y1;
mpScaleY* m_axis_y2;
mpScaleY* m_axis_y3;
2023-01-01 23:37:24 +00:00
mpInfoLegend* m_legend;
2023-01-01 23:37:24 +00:00
bool m_dotted_cp;
2016-08-11 12:41:01 +00:00
};
wxDECLARE_EVENT( EVT_SIM_CURSOR_UPDATE, wxCommandEvent );
2016-08-11 12:41:01 +00:00
#endif