KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pns_router.h
Go to the documentation of this file.
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013-2014 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * Author: Tomasz Wlostowski <[email protected]>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef __PNS_ROUTER_H
23#define __PNS_ROUTER_H
24
25#include <list>
26#include <memory>
27#include <optional>
28#include <math/box2.h>
29
31#include "pns_sizes_settings.h"
32#include "pns_node.h"
33
34namespace KIGFX
35{
36
37class VIEW;
38class VIEW_GROUP;
39
40}
41
42namespace PNS {
43
44class DEBUG_DECORATOR;
45class NODE;
47class PLACEMENT_ALGO;
48class LINE_PLACER;
49class ITEM;
50class ARC;
51class LINE;
52class SOLID;
53class SEGMENT;
54class JOINT;
55class VIA;
56class RULE_RESOLVER;
57class SHOVE;
58class DRAGGER;
59class DRAG_ALGO;
60class LOGGER;
61
69
71{
72 DM_CORNER = 0x1,
74 DM_VIA = 0x4,
76 DM_ARC = 0x10,
77 DM_ANY = 0x17,
79};
80
85
87 {
88 public:
90 virtual ~ROUTER_IFACE() {};
91
92 virtual void SyncWorld( NODE* aNode ) = 0;
93 virtual void AddItem( ITEM* aItem ) = 0;
94 virtual void UpdateItem( ITEM* aItem ) = 0;
95 virtual void RemoveItem( ITEM* aItem ) = 0;
96 virtual bool IsAnyLayerVisible( const PNS_LAYER_RANGE& aLayer ) const = 0;
97 virtual bool IsItemVisible( const PNS::ITEM* aItem ) const = 0;
98 virtual bool IsFlashedOnLayer( const PNS::ITEM* aItem, int aLayer ) const = 0;
99 virtual bool IsFlashedOnLayer( const PNS::ITEM* aItem, const PNS_LAYER_RANGE& aLayer ) const = 0;
100 virtual bool IsPNSCopperLayer( int aPNSLayer ) const = 0;
101 virtual void DisplayItem( const ITEM* aItem, int aClearance, bool aEdit = false,
102 int aFlags = 0 ) = 0;
103 virtual void DisplayPathLine( const SHAPE_LINE_CHAIN& aLine, int aImportance ) = 0;
104 virtual void DisplayRatline( const SHAPE_LINE_CHAIN& aRatline, NET_HANDLE aNetCode ) = 0;
105 virtual void HideItem( ITEM* aItem ) = 0;
106 virtual void Commit() = 0;
107 virtual bool ImportSizes( SIZES_SETTINGS& aSizes, ITEM* aStartItem, NET_HANDLE aNet, VECTOR2D aStartPosition ) = 0;
108 virtual int StackupHeight( int aFirstLayer, int aSecondLayer ) const = 0;
109 virtual void EraseView() = 0;
110 virtual int GetNetCode( NET_HANDLE aNet ) const = 0;
111 virtual wxString GetNetName( PNS::NET_HANDLE aNet ) const = 0;
112 virtual void UpdateNet( NET_HANDLE aNet ) = 0;
114 virtual PNS::NODE* GetWorld() const = 0;
115
118
119 virtual long long int CalculateRoutedPathLength( const ITEM_SET& aLine, const SOLID* aStartPad,
120 const SOLID* aEndPad, const NETCLASS* aNetClass ) = 0;
121 virtual int64_t CalculateRoutedPathDelay( const ITEM_SET& aLine, const SOLID* aStartPad, const SOLID* aEndPad,
122 const NETCLASS* aNetClass ) = 0;
123 virtual int64_t CalculateLengthForDelay( int64_t aDesiredDelay, int aWidth, bool aIsDiffPairCoupled,
124 int aDiffPairCouplingGap, int aPNSLayer, const NETCLASS* aNetClass ) = 0;
125 virtual int64_t CalculateDelayForShapeLineChain( const SHAPE_LINE_CHAIN& aShape, int aWidth,
126 bool aIsDiffPairCoupled, int aDiffPairCouplingGap, int aPNSLayer,
127 const NETCLASS* aNetClass ) = 0;
128 virtual PCB_LAYER_ID GetBoardLayerFromPNSLayer( int aLayer ) const = 0;
129 virtual int GetPNSLayerFromBoardLayer( PCB_LAYER_ID aLayer ) const = 0;
130};
131
133{
134public:
142
143public:
144 ROUTER();
145 ~ROUTER();
146
147 void SetInterface( ROUTER_IFACE* aIface );
148 void SetMode ( ROUTER_MODE aMode );
149 ROUTER_MODE Mode() const { return m_mode; }
150
151 RouterState GetState() const { return m_state; }
152
153 DRAG_ALGO* GetDragger() { return m_dragger.get(); }
154
155 static ROUTER* GetInstance();
156
157 void ClearWorld();
158 void SyncWorld();
159
160 bool RoutingInProgress() const;
161 bool StartRouting( const VECTOR2I& aP, ITEM* aItem, int aLayer );
162 bool Move( const VECTOR2I& aP, ITEM* aItem );
163 bool Finish();
164 bool ContinueFromEnd( ITEM** aNewStartItem );
165 bool FixRoute( const VECTOR2I& aP, ITEM* aItem, bool aForceFinish, bool aForceCommit );
166 void BreakSegmentOrArc( ITEM *aItem, const VECTOR2I& aP );
167
168 std::optional<VECTOR2I> UndoLastSegment();
169 void CommitRouting();
170
171 void GetUpdatedItems( std::vector<PNS::ITEM*>& aRemoved, std::vector<PNS::ITEM*>& aAdded,
172 std::vector<PNS::ITEM*>& aHeads );
173
174 void StopRouting();
176
177 NODE* GetWorld() const { return m_world.get(); }
178
179 void FlipPosture();
180
181 bool SwitchLayer( int layer );
182
183 void ToggleViaPlacement();
184 void SetOrthoMode( bool aEnable );
185
186 void ToggleCornerMode();
187
188 int GetCurrentLayer() const;
189 const std::vector<NET_HANDLE> GetCurrentNets() const;
190
191 LOGGER* Logger();
192
193 RULE_RESOLVER* GetRuleResolver() const { return m_iface->GetRuleResolver(); }
194
195 bool IsPlacingVia() const;
196
197 const ITEM_SET QueryHoverItems( const VECTOR2I& aP, int aSlopRadius = 0 );
198
199 bool StartDragging( const VECTOR2I& aP, ITEM* aItem, int aDragMode = DM_ANY );
200 bool StartDragging( const VECTOR2I& aP, ITEM_SET aItems, int aDragMode = DM_COMPONENT );
201
202 void SetIterLimit( int aX ) { m_iterLimit = aX; }
203 int GetIterLimit() const { return m_iterLimit; };
204
206
207 void CommitRouting( NODE* aNode );
208
213 void UpdateSizes( const SIZES_SETTINGS& aSizes );
214
220 {
221 m_settings = aSettings;
222 }
223
225
226 void SetFailureReason( const wxString& aReason ) { m_failureReason = aReason; }
227 const wxString& FailureReason() const { return m_failureReason; }
228
229 PLACEMENT_ALGO* Placer() { return m_placer.get(); }
230
231 ROUTER_IFACE* GetInterface() const { return m_iface; }
232
233 void SetVisibleViewArea( const BOX2I& aExtents ) { m_visibleViewArea = aExtents; }
234 const BOX2I& VisibleViewArea() const { return m_visibleViewArea; }
235
236 std::vector<PNS::ITEM*> GetLastCommittedLeaderSegments();
237
238 bool GetNearestRatnestAnchor( VECTOR2I& aOtherEnd, PNS_LAYER_RANGE& aOtherEndLayers,
239 ITEM*& aOtherEndItem );
240private:
241 bool movePlacing( const VECTOR2I& aP, ITEM* aItem );
242 bool moveDragging( const VECTOR2I& aP, ITEM* aItem );
243
244 void updateView( NODE* aNode, ITEM_SET& aCurrent, bool aDragging = false );
245
246 // optHoverItem queryHoverItemEx(const VECTOR2I& aP);
247
248 void markViolations( NODE* aNode, ITEM_SET& aCurrent, NODE::ITEM_VECTOR& aRemoved );
249 bool isStartingPointRoutable( const VECTOR2I& aWhere, ITEM* aItem, int aLayer );
250
251
252private:
255
256 std::unique_ptr<NODE> m_world;
258
259 std::unique_ptr<PLACEMENT_ALGO> m_placer;
260 std::unique_ptr<DRAG_ALGO> m_dragger;
261 std::unique_ptr<SHOVE> m_shove;
262 std::vector<PNS::ITEM*> m_leaderSegments;
263
265
267
272
275};
276
277}
278
279#endif
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
Extend VIEW_ITEM by possibility of grouping items into a single object.
Definition view_group.h:43
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition view.h:67
A collection of nets and the parameters used to route or test these nets.
Definition netclass.h:45
Single track placement algorithm.
DRAGGER.
Definition pns_dragger.h:48
Base class for PNS router board items.
Definition pns_item.h:98
A 2D point on a given set of layers and belonging to a certain net, that links together a number of b...
Definition pns_joint.h:43
Single track placement algorithm.
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:240
std::vector< ITEM * > ITEM_VECTOR
Definition pns_node.h:251
virtual void DisplayPathLine(const SHAPE_LINE_CHAIN &aLine, int aImportance)=0
virtual int GetPNSLayerFromBoardLayer(PCB_LAYER_ID aLayer) const =0
virtual void RemoveItem(ITEM *aItem)=0
virtual void UpdateItem(ITEM *aItem)=0
virtual ~ROUTER_IFACE()
Definition pns_router.h:90
virtual wxString GetNetName(PNS::NET_HANDLE aNet) const =0
virtual int64_t CalculateDelayForShapeLineChain(const SHAPE_LINE_CHAIN &aShape, int aWidth, bool aIsDiffPairCoupled, int aDiffPairCouplingGap, int aPNSLayer, const NETCLASS *aNetClass)=0
virtual bool IsItemVisible(const PNS::ITEM *aItem) const =0
virtual void DisplayItem(const ITEM *aItem, int aClearance, bool aEdit=false, int aFlags=0)=0
virtual DEBUG_DECORATOR * GetDebugDecorator()=0
virtual long long int CalculateRoutedPathLength(const ITEM_SET &aLine, const SOLID *aStartPad, const SOLID *aEndPad, const NETCLASS *aNetClass)=0
virtual void HideItem(ITEM *aItem)=0
virtual int GetNetCode(NET_HANDLE aNet) const =0
virtual bool IsPNSCopperLayer(int aPNSLayer) const =0
virtual void Commit()=0
virtual RULE_RESOLVER * GetRuleResolver()=0
virtual PCB_LAYER_ID GetBoardLayerFromPNSLayer(int aLayer) const =0
virtual void UpdateNet(NET_HANDLE aNet)=0
virtual void AddItem(ITEM *aItem)=0
virtual void DisplayRatline(const SHAPE_LINE_CHAIN &aRatline, NET_HANDLE aNetCode)=0
virtual int64_t CalculateLengthForDelay(int64_t aDesiredDelay, int aWidth, bool aIsDiffPairCoupled, int aDiffPairCouplingGap, int aPNSLayer, const NETCLASS *aNetClass)=0
virtual bool ImportSizes(SIZES_SETTINGS &aSizes, ITEM *aStartItem, NET_HANDLE aNet, VECTOR2D aStartPosition)=0
virtual void EraseView()=0
virtual void SyncWorld(NODE *aNode)=0
virtual bool IsFlashedOnLayer(const PNS::ITEM *aItem, int aLayer) const =0
virtual NET_HANDLE GetOrphanedNetHandle()=0
virtual int StackupHeight(int aFirstLayer, int aSecondLayer) const =0
virtual bool IsFlashedOnLayer(const PNS::ITEM *aItem, const PNS_LAYER_RANGE &aLayer) const =0
virtual int64_t CalculateRoutedPathDelay(const ITEM_SET &aLine, const SOLID *aStartPad, const SOLID *aEndPad, const NETCLASS *aNetClass)=0
virtual bool IsAnyLayerVisible(const PNS_LAYER_RANGE &aLayer) const =0
virtual PNS::NODE * GetWorld() const =0
void updateView(NODE *aNode, ITEM_SET &aCurrent, bool aDragging=false)
void SetMode(ROUTER_MODE aMode)
bool moveDragging(const VECTOR2I &aP, ITEM *aItem)
bool SwitchLayer(int layer)
void StopRouting()
void SetIterLimit(int aX)
Definition pns_router.h:202
void ClearViewDecorations()
std::vector< PNS::ITEM * > m_leaderSegments
Definition pns_router.h:262
void ToggleCornerMode()
PLACEMENT_ALGO * Placer()
Definition pns_router.h:229
std::vector< PNS::ITEM * > GetLastCommittedLeaderSegments()
NODE * m_lastNode
Definition pns_router.h:257
void ClearWorld()
ROUTER_IFACE * GetInterface() const
Definition pns_router.h:231
void BreakSegmentOrArc(ITEM *aItem, const VECTOR2I &aP)
bool ContinueFromEnd(ITEM **aNewStartItem)
void UpdateSizes(const SIZES_SETTINGS &aSizes)
Applies stored settings.
void SetFailureReason(const wxString &aReason)
Definition pns_router.h:226
LOGGER * Logger()
ROUTER_MODE Mode() const
Definition pns_router.h:149
void LoadSettings(ROUTING_SETTINGS *aSettings)
Changes routing settings to ones passed in the parameter.
Definition pns_router.h:219
RouterState m_state
Definition pns_router.h:254
void CommitRouting()
std::unique_ptr< DRAG_ALGO > m_dragger
Definition pns_router.h:260
const ITEM_SET QueryHoverItems(const VECTOR2I &aP, int aSlopRadius=0)
void SetInterface(ROUTER_IFACE *aIface)
const BOX2I & VisibleViewArea() const
Definition pns_router.h:234
void markViolations(NODE *aNode, ITEM_SET &aCurrent, NODE::ITEM_VECTOR &aRemoved)
void SyncWorld()
std::unique_ptr< PLACEMENT_ALGO > m_placer
Definition pns_router.h:259
int GetIterLimit() const
Definition pns_router.h:203
const wxString & FailureReason() const
Definition pns_router.h:227
bool isStartingPointRoutable(const VECTOR2I &aWhere, ITEM *aItem, int aLayer)
ROUTER_IFACE * m_iface
Definition pns_router.h:264
bool IsPlacingVia() const
void FlipPosture()
RULE_RESOLVER * GetRuleResolver() const
Definition pns_router.h:193
SIZES_SETTINGS m_sizes
Definition pns_router.h:269
ROUTING_SETTINGS & Settings()
Definition pns_router.h:205
DRAG_ALGO * GetDragger()
Definition pns_router.h:153
bool movePlacing(const VECTOR2I &aP, ITEM *aItem)
bool RoutingInProgress() const
RouterState GetState() const
Definition pns_router.h:151
BOX2I m_visibleViewArea
Definition pns_router.h:253
static ROUTER * GetInstance()
std::optional< VECTOR2I > UndoLastSegment()
LOGGER * m_logger
Definition pns_router.h:271
void SetOrthoMode(bool aEnable)
bool StartDragging(const VECTOR2I &aP, ITEM *aItem, int aDragMode=DM_ANY)
bool StartRouting(const VECTOR2I &aP, ITEM *aItem, int aLayer)
void SetVisibleViewArea(const BOX2I &aExtents)
Definition pns_router.h:233
int GetCurrentLayer() const
void GetUpdatedItems(std::vector< PNS::ITEM * > &aRemoved, std::vector< PNS::ITEM * > &aAdded, std::vector< PNS::ITEM * > &aHeads)
SIZES_SETTINGS & Sizes()
Definition pns_router.h:224
std::unique_ptr< SHOVE > m_shove
Definition pns_router.h:261
bool FixRoute(const VECTOR2I &aP, ITEM *aItem, bool aForceFinish, bool aForceCommit)
std::unique_ptr< NODE > m_world
Definition pns_router.h:256
void ToggleViaPlacement()
NODE * GetWorld() const
Definition pns_router.h:177
ROUTING_SETTINGS * m_settings
Definition pns_router.h:268
wxString m_failureReason
Definition pns_router.h:274
const std::vector< NET_HANDLE > GetCurrentNets() const
ROUTER_MODE m_mode
Definition pns_router.h:270
wxString m_toolStatusbarName
Definition pns_router.h:273
bool GetNearestRatnestAnchor(VECTOR2I &aOtherEnd, PNS_LAYER_RANGE &aOtherEndLayers, ITEM *&aOtherEndItem)
bool Move(const VECTOR2I &aP, ITEM *aItem)
Contain all persistent settings of the router, such as the mode, optimization effort,...
The actual Push and Shove algorithm.
Definition pns_shove.h:46
Represent a contiguous set of PCB layers.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:60
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:33
Push and Shove diff pair dimensions (gap) settings dialog.
void * NET_HANDLE
Definition pns_item.h:55
ROUTER_MODE
Definition pns_router.h:62
@ PNS_MODE_ROUTE_SINGLE
Definition pns_router.h:63
@ PNS_MODE_ROUTE_DIFF_PAIR
Definition pns_router.h:64
@ PNS_MODE_TUNE_DIFF_PAIR
Definition pns_router.h:66
@ PNS_MODE_TUNE_SINGLE
Definition pns_router.h:65
@ PNS_MODE_TUNE_DIFF_PAIR_SKEW
Definition pns_router.h:67
DRAG_MODE
Definition pns_router.h:71
@ DM_CORNER
Definition pns_router.h:72
@ DM_ANY
Definition pns_router.h:77
@ DM_FREE_ANGLE
Definition pns_router.h:75
@ DM_VIA
Definition pns_router.h:74
@ DM_SEGMENT
Definition pns_router.h:73
@ DM_ARC
Definition pns_router.h:76
@ DM_COMPONENT
Definition pns_router.h:78
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695
VECTOR2< double > VECTOR2D
Definition vector2d.h:694