KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pns_kicad_iface.h
Go to the documentation of this file.
1/*
2 * KiRouter - a push-and-(sometimes-)shove PCB router
3 *
4 * Copyright (C) 2013-2016 CERN
5 * Copyright (C) 2016-2023 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_KICAD_IFACE_H
23#define __PNS_KICAD_IFACE_H
24
25#include <unordered_set>
26
27#include "pns_router.h"
28
31
32class BOARD;
33class BOARD_COMMIT;
34class PCB_TEXT;
36class PCB_TOOL_BASE;
37class FOOTPRINT;
38class PAD;
39class EDA_TEXT;
40
41namespace PNS
42{
43 class SIZES_SETTINGS;
44}
45
46namespace KIGFX
47{
48 class VIEW;
49}
50
52{
53public:
56
57 void EraseView() override {};
58 void SetBoard( BOARD* aBoard );
59 void SyncWorld( PNS::NODE* aWorld ) override;
60 bool IsAnyLayerVisible( const LAYER_RANGE& aLayer ) const override { return true; };
61 bool IsFlashedOnLayer( const PNS::ITEM* aItem, int aLayer ) const override;
62 bool IsFlashedOnLayer( const PNS::ITEM* aItem, const LAYER_RANGE& aLayer ) const override;
63 bool IsItemVisible( const PNS::ITEM* aItem ) const override { return true; };
64 void HideItem( PNS::ITEM* aItem ) override {}
65 void DisplayItem( const PNS::ITEM* aItem, int aClearance, bool aEdit = false,
66 bool aIsHeadTrace = false ) override {}
67 void DisplayPathLine( const SHAPE_LINE_CHAIN& aLine, int aImportance ) override {}
68 void DisplayRatline( const SHAPE_LINE_CHAIN& aRatline, int aNetCode ) override {}
69 void AddItem( PNS::ITEM* aItem ) override;
70 void UpdateItem( PNS::ITEM* aItem ) override;
71 void RemoveItem( PNS::ITEM* aItem ) override;
72 void Commit() override {}
73 bool ImportSizes( PNS::SIZES_SETTINGS& aSizes, PNS::ITEM* aStartItem, int aNet ) override;
74 int StackupHeight( int aFirstLayer, int aSecondLayer ) const override;
75
76 void UpdateNet( int aNetCode ) override {}
77
79
80 void SetStartLayer( int aLayer ) { m_startLayer = aLayer; }
81
82 virtual PNS::NODE* GetWorld() const override { return m_world; };
83
84 BOARD* GetBoard() const { return m_board; }
85
86 virtual EDA_UNITS GetUnits() const { return EDA_UNITS::MILLIMETRES; };
87
90
91protected:
94
95 std::unique_ptr<PNS::SOLID> syncPad( PAD* aPad );
96 std::unique_ptr<PNS::SEGMENT> syncTrack( PCB_TRACK* aTrack );
97 std::unique_ptr<PNS::ARC> syncArc( PCB_ARC* aArc );
98 std::unique_ptr<PNS::VIA> syncVia( PCB_VIA* aVia );
99 bool syncTextItem( PNS::NODE* aWorld, PCB_TEXT* aText, PCB_LAYER_ID aLayer );
100 bool syncGraphicalItem( PNS::NODE* aWorld, PCB_SHAPE* aItem );
101 bool syncZone( PNS::NODE* aWorld, ZONE* aZone, SHAPE_POLY_SET* aBoardOutline );
102 bool inheritTrackWidth( PNS::ITEM* aItem, int* aInheritedWidth );
103
104protected:
108};
109
111{
112public:
115
116 void SetHostTool( PCB_TOOL_BASE* aTool );
117
118 void SetView( KIGFX::VIEW* aView );
119 void EraseView() override;
120 bool IsAnyLayerVisible( const LAYER_RANGE& aLayer ) const override;
121 bool IsItemVisible( const PNS::ITEM* aItem ) const override;
122 void HideItem( PNS::ITEM* aItem ) override;
123 void DisplayItem( const PNS::ITEM* aItem, int aClearance, bool aEdit = false, bool aIsHeadTrace = false ) override;
124 void DisplayPathLine( const SHAPE_LINE_CHAIN& aLine, int aImportance ) override;
125 void DisplayRatline( const SHAPE_LINE_CHAIN& aRatline, int aNetCode ) override;
126 void Commit() override;
127 void AddItem( PNS::ITEM* aItem ) override;
128 void UpdateItem( PNS::ITEM* aItem ) override;
129 void RemoveItem( PNS::ITEM* aItem ) override;
130
131 void UpdateNet( int aNetCode ) override;
132
133 EDA_UNITS GetUnits() const override;
134
135 void SetCommitFlags( int aCommitFlags ) { m_commitFlags = aCommitFlags; }
136
137private:
138 struct OFFSET
139 {
141 };
142
143 std::map<PAD*, OFFSET> m_fpOffsets;
146 std::unordered_set<BOARD_ITEM*> m_hiddenItems;
147
149 std::unique_ptr<BOARD_COMMIT> m_commit;
151};
152
153
154#endif
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:270
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition: eda_text.h:72
Extend VIEW_ITEM by possibility of grouping items into a single object.
Definition: view_group.h:47
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:69
Represent a contiguous set of PCB layers.
Definition: pns_layerset.h:32
Definition: pad.h:59
Base class for PNS router board items.
Definition: pns_item.h:91
Keep the router "world" - i.e.
Definition: pns_node.h:198
bool syncGraphicalItem(PNS::NODE *aWorld, PCB_SHAPE *aItem)
bool inheritTrackWidth(PNS::ITEM *aItem, int *aInheritedWidth)
void AddItem(PNS::ITEM *aItem) override
virtual EDA_UNITS GetUnits() const
bool ImportSizes(PNS::SIZES_SETTINGS &aSizes, PNS::ITEM *aStartItem, int aNet) override
PNS::DEBUG_DECORATOR * m_debugDecorator
void SetDebugDecorator(PNS::DEBUG_DECORATOR *aDec)
bool syncZone(PNS::NODE *aWorld, ZONE *aZone, SHAPE_POLY_SET *aBoardOutline)
void SetBoard(BOARD *aBoard)
virtual PNS::NODE * GetWorld() const override
std::unique_ptr< PNS::ARC > syncArc(PCB_ARC *aArc)
void RemoveItem(PNS::ITEM *aItem) override
void DisplayPathLine(const SHAPE_LINE_CHAIN &aLine, int aImportance) override
PNS::RULE_RESOLVER * GetRuleResolver() override
void SetStartLayer(int aLayer)
bool syncTextItem(PNS::NODE *aWorld, PCB_TEXT *aText, PCB_LAYER_ID aLayer)
void HideItem(PNS::ITEM *aItem) override
void Commit() override
bool IsAnyLayerVisible(const LAYER_RANGE &aLayer) const override
bool IsItemVisible(const PNS::ITEM *aItem) const override
bool IsFlashedOnLayer(const PNS::ITEM *aItem, int aLayer) const override
void DisplayItem(const PNS::ITEM *aItem, int aClearance, bool aEdit=false, bool aIsHeadTrace=false) override
BOARD * GetBoard() const
std::unique_ptr< PNS::SOLID > syncPad(PAD *aPad)
void SyncWorld(PNS::NODE *aWorld) override
int StackupHeight(int aFirstLayer, int aSecondLayer) const override
PNS::DEBUG_DECORATOR * GetDebugDecorator() override
std::unique_ptr< PNS::SEGMENT > syncTrack(PCB_TRACK *aTrack)
PNS_PCBNEW_RULE_RESOLVER * m_ruleResolver
void UpdateNet(int aNetCode) override
std::unique_ptr< PNS::VIA > syncVia(PCB_VIA *aVia)
void EraseView() override
void DisplayRatline(const SHAPE_LINE_CHAIN &aRatline, int aNetCode) override
void UpdateItem(PNS::ITEM *aItem) override
void SetView(KIGFX::VIEW *aView)
void DisplayRatline(const SHAPE_LINE_CHAIN &aRatline, int aNetCode) override
void RemoveItem(PNS::ITEM *aItem) override
void AddItem(PNS::ITEM *aItem) override
void UpdateItem(PNS::ITEM *aItem) override
std::map< PAD *, OFFSET > m_fpOffsets
void SetHostTool(PCB_TOOL_BASE *aTool)
std::unique_ptr< BOARD_COMMIT > m_commit
void UpdateNet(int aNetCode) override
void EraseView() override
void HideItem(PNS::ITEM *aItem) override
KIGFX::VIEW * m_view
void DisplayPathLine(const SHAPE_LINE_CHAIN &aLine, int aImportance) override
bool IsItemVisible(const PNS::ITEM *aItem) const override
void DisplayItem(const PNS::ITEM *aItem, int aClearance, bool aEdit=false, bool aIsHeadTrace=false) override
std::unordered_set< BOARD_ITEM * > m_hiddenItems
EDA_UNITS GetUnits() const override
bool IsAnyLayerVisible(const LAYER_RANGE &aLayer) const override
PCB_TOOL_BASE * m_tool
void Commit() override
KIGFX::VIEW_GROUP * m_previewItems
void SetCommitFlags(int aCommitFlags)
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.
Handle a list of polygons defining a copper zone.
Definition: zone.h:72
EDA_UNITS
Definition: eda_units.h:43
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:59
The Cairo implementation of the graphics abstraction layer.
Definition: color4d.cpp:246
Push and Shove diff pair dimensions (gap) settings dialog.