KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pns_log_viewer_frame.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24
25// WARNING - this Tom's crappy PNS hack tool code. Please don't complain about its quality
26// (unless you want to improve it).
27
28#ifndef __PNS_LOG_VIEWER_FRAME_H
29#define __PNS_LOG_VIEWER_FRAME_H
30
31#include <length_calculation.h>
32#include <pcb_painter.h>
33#include <pcb_test_frame.h>
35#include <reporter.h>
36#include <router/pns_solid.h>
37
38#include "pns_log_file.h"
39#include "pns_log_player.h"
42
43#include "label_manager.h"
44
45#define ID_LIST_COPY 10001
46#define ID_LIST_SHOW_ALL 10002
47#define ID_LIST_SHOW_NONE 10003
48#define ID_LIST_DISPLAY_LINE 10004
49
51
53{
54public:
55 PNS_VIEWER_IFACE( std::shared_ptr<BOARD> aBoard ){ m_board = aBoard; };
56 ~PNS_VIEWER_IFACE() override{};
57
58 void EraseView() override {};
59 void SyncWorld( PNS::NODE* aWorld ) override {};
60 bool IsAnyLayerVisible( const PNS_LAYER_RANGE& aLayer ) const override { return true; };
61 bool IsFlashedOnLayer( const PNS::ITEM* aItem, int aLayer ) const override { return false; };
62 bool IsFlashedOnLayer( const PNS::ITEM* aItem, const PNS_LAYER_RANGE& aLayer ) const override { return false; };
63 bool IsItemVisible( const PNS::ITEM* aItem ) const override { return true; };
64 bool IsPNSCopperLayer( int aLayer ) const override { return false; };
65 void HideItem( PNS::ITEM* aItem ) override {}
66 void DisplayItem( const PNS::ITEM* aItem, int aClearance, bool aEdit = false,
67 int aFlags = 0 ) override {}
68 void DisplayPathLine( const SHAPE_LINE_CHAIN& aLine, int aImportance ) override {}
69 void DisplayRatline( const SHAPE_LINE_CHAIN& aRatline, PNS::NET_HANDLE aNet ) override {}
70 void AddItem( PNS::ITEM* aItem ) override {}
71 void UpdateItem( PNS::ITEM* aItem ) override {}
72 void RemoveItem( PNS::ITEM* aItem ) override {}
73 void Commit() override {}
74 bool ImportSizes( PNS::SIZES_SETTINGS& aSizes, PNS::ITEM* aStartItem,
75 PNS::NET_HANDLE aNet, VECTOR2D aStartPosition ) override { return false; }
76 int StackupHeight( int aFirstLayer, int aSecondLayer ) const override { return 0; }
77
78 int GetNetCode( PNS::NET_HANDLE aNet ) const override { return -1; }
79 wxString GetNetName( PNS::NET_HANDLE aNet ) const override { return wxEmptyString; }
80 void UpdateNet( PNS::NET_HANDLE aNet ) override {}
81 PNS::NET_HANDLE GetOrphanedNetHandle() override { return nullptr; }
82
83 virtual PNS::NODE* GetWorld() const override { return nullptr; };
84 PNS::RULE_RESOLVER* GetRuleResolver() override { return nullptr; }
85 PNS::DEBUG_DECORATOR* GetDebugDecorator() override { return nullptr; }
86
87 PCB_LAYER_ID GetBoardLayerFromPNSLayer( int aLayer ) const override
88 {
89 if( aLayer == 0 )
90 return F_Cu;
91
92 if( aLayer == m_board->GetCopperLayerCount() - 1 )
93 return B_Cu;
94
95 return ToLAYER_ID( ( aLayer + 1 ) * 2 );
96 }
97
98
99 int GetPNSLayerFromBoardLayer( PCB_LAYER_ID aLayer ) const override
100 {
101 if( aLayer == F_Cu )
102 return 0;
103
104 if( aLayer == B_Cu )
105 return m_board->GetCopperLayerCount() - 1;
106
107 return ( aLayer / 2 ) - 1;
108 }
109
110 long long int CalculateRoutedPathLength( const PNS::ITEM_SET& aLine, const PNS::SOLID* aStartPad,
111 const PNS::SOLID* aEndPad ) override
112 {
113 std::vector<LENGTH_CALCULATION_ITEM> lengthItems;
114
115 for( int idx = 0; idx < aLine.Size(); idx++ )
116 {
117 const PNS::ITEM* lineItem = aLine[idx];
118
119 if( const PNS::LINE* l = dyn_cast<const PNS::LINE*>( lineItem ) )
120 {
122 item.SetLine( l->CLine() );
123
124 const PCB_LAYER_ID layer = GetBoardLayerFromPNSLayer( lineItem->Layer() );
125 item.SetLayers( layer );
126
127 lengthItems.emplace_back( std::move( item ) );
128 }
129 else if( lineItem->OfKind( PNS::ITEM::VIA_T ) && idx > 0 && idx < aLine.Size() - 1 )
130 {
131 const int layerPrev = aLine[idx - 1]->Layer();
132 const int layerNext = aLine[idx + 1]->Layer();
133 const PCB_LAYER_ID pcbLayerPrev = GetBoardLayerFromPNSLayer( layerPrev );
134 const PCB_LAYER_ID pcbLayerNext = GetBoardLayerFromPNSLayer( layerNext );
135
136 if( layerPrev != layerNext )
137 {
139 item.SetVia( static_cast<PCB_VIA*>( lineItem->GetSourceItem() ) );
140 item.SetLayers( pcbLayerPrev, pcbLayerNext );
141 lengthItems.emplace_back( std::move( item ) );
142 }
143 }
144 }
145
146 const PAD* startPad = nullptr;
147 const PAD* endPad = nullptr;
148
149 if( aStartPad )
150 startPad = static_cast<PAD*>( aStartPad->Parent() );
151
152 if( aEndPad )
153 endPad = static_cast<PAD*>( aEndPad->Parent() );
154
155 constexpr PATH_OPTIMISATIONS opts = {
156 .OptimiseViaLayers = false, .MergeTracks = false, .OptimiseTracesInPads = false, .InferViaInPad = true
157 };
158
159 return m_board->GetLengthCalculation()->CalculateLength( lengthItems, opts, startPad, endPad );
160 }
161
162 private:
163 std::shared_ptr<BOARD> m_board;
164};
165
167{
168public:
169 PNS_LOG_VIEWER_FRAME( wxFrame* frame );
170 virtual ~PNS_LOG_VIEWER_FRAME();
171
172 void LoadLogFile( const wxString& aFile );
173 void SetLogFile( PNS_LOG_FILE* aLog );
174 void SetBoard2( std::shared_ptr<BOARD> aBoard );
176
177 std::shared_ptr<PNS_LOG_VIEWER_OVERLAY> GetOverlay() const { return m_overlay; }
178
179private:
180 void drawLoggedItems( int iter );
181 void updateDumpPanel( int iter );
182 virtual void createUserTools() override;
183 void buildListTree( wxTreeListItem item, PNS_DEBUG_SHAPE* ent, int depth = 0 );
184 void syncModel();
186 void updatePnsPreviewItems( int iter );
188 void updateViewerIface();
189
190 virtual void onOpen( wxCommandEvent& event ) override;
191 virtual void onSaveAs( wxCommandEvent& event ) override;
192 virtual void onExit( wxCommandEvent& event ) override;
193 virtual void onRewindScroll( wxScrollEvent& event ) override;
194 virtual void onRewindCountText( wxCommandEvent& event ) override;
195 virtual void onListRightClick( wxMouseEvent& event );
196 virtual void onListSelect( wxCommandEvent& event );
197 virtual void onBtnRewindLeft( wxCommandEvent& event ) override;
198 virtual void onBtnRewindRight( wxCommandEvent& event ) override;
199 virtual void onListChecked( wxCommandEvent& event );
200 virtual void onShowThinLinesChecked( wxCommandEvent& event ) override;
201 virtual void onShowRPIsChecked( wxCommandEvent& event ) override;
202 virtual void onShowVerticesChecked( wxCommandEvent& event ) override;
203 virtual void onFilterText( wxCommandEvent& event ) override;
204 void drawSimpleShape( SHAPE* aShape, bool aIsSelected, const std::string& aName );
205
206 std::shared_ptr<PNS_LOG_VIEWER_OVERLAY> m_overlay;
207 std::shared_ptr<PNS_LOG_FILE> m_logFile;
208 std::shared_ptr<PNS_LOG_PLAYER> m_logPlayer;
211 std::shared_ptr<KIGFX::VIEW_GROUP> m_previewItems;
212 std::shared_ptr<PNS_VIEWER_IFACE> m_viewerIface;
213 std::map<wxString,wxString> m_filenameToPathMap;
214
215 bool m_showThinLines = true;
216 bool m_showRPIs = true;
217 bool m_showVertices = false;
219 //KI_TEST::CONSOLE_LOG m_consoleLog;
220 std::shared_ptr<WX_TEXT_CTRL_REPORTER> m_reporter;
221};
222
223class LABEL_MANAGER;
224
226{
227public:
229 void AnnotatedPolyset( const SHAPE_POLY_SET& aL, std::string name = "",
230 bool aShowVertexNumbers = false );
231 void AnnotatedPolyline( const SHAPE_LINE_CHAIN& aL, std::string name,
232 bool aShowVertexNumbers = false );
233 void AnnotatedPoint( const VECTOR2I p, int size, std::string name = "",
234 bool aShowVertexNumbers = false );
235 void Arc( const SHAPE_ARC& arc );
236 void DrawAnnotations();
237
238private:
239
240
241 std::unique_ptr<LABEL_MANAGER> m_labelMgr;
242};
243
244#endif
const char * name
Definition: DXF_plotter.cpp:59
Abstract interface for drawing on a 2D-surface.
Lightweight class which holds a pad, via, or a routed trace outline.
void SetLayers(const PCB_LAYER_ID aStart, const PCB_LAYER_ID aEnd=PCB_LAYER_ID::UNDEFINED_LAYER)
Sets the first and last layers associated with this item.
void SetLine(const SHAPE_LINE_CHAIN &aLine)
Sets the source SHAPE_LINE_CHAIN of this item.
void SetVia(PCB_VIA *aVia)
Sets the VIA associated with this item.
Definition: pad.h:54
int Size() const
Definition: pns_itemset.h:112
Base class for PNS router board items.
Definition: pns_item.h:98
BOARD_ITEM * Parent() const
Definition: pns_item.h:199
BOARD_ITEM * GetSourceItem() const
Definition: pns_item.h:202
virtual int Layer() const
Definition: pns_item.h:216
bool OfKind(int aKindMask) const
Definition: pns_item.h:181
Represents a track on a PCB, connecting two non-trivial joints (that is, vias, pads,...
Definition: pns_line.h:62
Keep the router "world" - i.e.
Definition: pns_node.h:231
Represent a contiguous set of PCB layers.
Definition: pns_layerset.h:32
Class PNS_LOG_VIEWER_FRAME_BASE.
std::shared_ptr< WX_TEXT_CTRL_REPORTER > m_reporter
std::shared_ptr< PNS_LOG_FILE > m_logFile
virtual void onListRightClick(wxMouseEvent &event)
std::shared_ptr< PNS_LOG_PLAYER > m_logPlayer
std::shared_ptr< PNS_LOG_VIEWER_OVERLAY > GetOverlay() const
std::map< wxString, wxString > m_filenameToPathMap
void drawSimpleShape(SHAPE *aShape, bool aIsSelected, const std::string &aName)
virtual void onRewindCountText(wxCommandEvent &event) override
std::shared_ptr< KIGFX::VIEW_GROUP > m_previewItems
PNS_DEBUG_STAGE * getCurrentStage()
bool filterStringMatches(PNS_DEBUG_SHAPE *ent)
void SetBoard2(std::shared_ptr< BOARD > aBoard)
virtual void createUserTools() override
void buildListTree(wxTreeListItem item, PNS_DEBUG_SHAPE *ent, int depth=0)
virtual void onShowVerticesChecked(wxCommandEvent &event) override
void SetLogFile(PNS_LOG_FILE *aLog)
virtual void onShowThinLinesChecked(wxCommandEvent &event) override
std::shared_ptr< PNS_LOG_VIEWER_OVERLAY > m_overlay
void LoadLogFile(const wxString &aFile)
virtual void onListChecked(wxCommandEvent &event)
std::shared_ptr< PNS_VIEWER_IFACE > m_viewerIface
virtual void onListSelect(wxCommandEvent &event)
virtual void onSaveAs(wxCommandEvent &event) override
virtual void onRewindScroll(wxScrollEvent &event) override
virtual void onShowRPIsChecked(wxCommandEvent &event) override
void updatePnsPreviewItems(int iter)
virtual void onBtnRewindRight(wxCommandEvent &event) override
virtual void onFilterText(wxCommandEvent &event) override
virtual void onOpen(wxCommandEvent &event) override
virtual void onBtnRewindLeft(wxCommandEvent &event) override
virtual void onExit(wxCommandEvent &event) override
void AnnotatedPoint(const VECTOR2I p, int size, std::string name="", bool aShowVertexNumbers=false)
void AnnotatedPolyset(const SHAPE_POLY_SET &aL, std::string name="", bool aShowVertexNumbers=false)
void AnnotatedPolyline(const SHAPE_LINE_CHAIN &aL, std::string name, bool aShowVertexNumbers=false)
std::unique_ptr< LABEL_MANAGER > m_labelMgr
void Arc(const SHAPE_ARC &arc)
int StackupHeight(int aFirstLayer, int aSecondLayer) const override
void RemoveItem(PNS::ITEM *aItem) override
void AddItem(PNS::ITEM *aItem) override
int GetPNSLayerFromBoardLayer(PCB_LAYER_ID aLayer) const override
PNS::DEBUG_DECORATOR * GetDebugDecorator() override
bool IsFlashedOnLayer(const PNS::ITEM *aItem, int aLayer) const override
int GetNetCode(PNS::NET_HANDLE aNet) const override
PNS_VIEWER_IFACE(std::shared_ptr< BOARD > aBoard)
void DisplayPathLine(const SHAPE_LINE_CHAIN &aLine, int aImportance) override
PCB_LAYER_ID GetBoardLayerFromPNSLayer(int aLayer) const override
void SyncWorld(PNS::NODE *aWorld) override
bool IsPNSCopperLayer(int aLayer) const override
bool IsAnyLayerVisible(const PNS_LAYER_RANGE &aLayer) const override
void UpdateItem(PNS::ITEM *aItem) override
bool IsFlashedOnLayer(const PNS::ITEM *aItem, const PNS_LAYER_RANGE &aLayer) const override
long long int CalculateRoutedPathLength(const PNS::ITEM_SET &aLine, const PNS::SOLID *aStartPad, const PNS::SOLID *aEndPad) override
void Commit() override
void UpdateNet(PNS::NET_HANDLE aNet) override
bool ImportSizes(PNS::SIZES_SETTINGS &aSizes, PNS::ITEM *aStartItem, PNS::NET_HANDLE aNet, VECTOR2D aStartPosition) override
wxString GetNetName(PNS::NET_HANDLE aNet) const override
PNS::NET_HANDLE GetOrphanedNetHandle() override
~PNS_VIEWER_IFACE() override
void DisplayRatline(const SHAPE_LINE_CHAIN &aRatline, PNS::NET_HANDLE aNet) override
bool IsItemVisible(const PNS::ITEM *aItem) const override
virtual PNS::NODE * GetWorld() const override
PNS::RULE_RESOLVER * GetRuleResolver() override
std::shared_ptr< BOARD > m_board
void HideItem(PNS::ITEM *aItem) override
void EraseView() override
void DisplayItem(const PNS::ITEM *aItem, int aClearance, bool aEdit=false, int aFlags=0) override
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:73
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Represent a set of closed polygons.
An abstract shape on 2D plane.
Definition: shape.h:126
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ B_Cu
Definition: layer_ids.h:65
@ F_Cu
Definition: layer_ids.h:64
PCB_LAYER_ID ToLAYER_ID(int aLayer)
Definition: lset.cpp:723
void * NET_HANDLE
Definition: pns_item.h:55
Struct to control which optimisations the length calculation code runs on the given path objects.
bool OptimiseViaLayers
Optimise via layers for height calculations, ensuring only the distance between routed segments is co...