KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
board_item.cpp
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 (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
5 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#include <pybind11/pybind11.h>
27
28#include <wx/debug.h>
29#include <wx/msgdlg.h>
30#include <i18n_utility.h>
31#include <macros.h>
32#include <board.h>
34#include <lset.h>
35#include <pcb_group.h>
36#include <pcb_generator.h>
37#include <footprint.h>
38#include <font/font.h>
39
40
41void BOARD_ITEM::CopyFrom( const BOARD_ITEM* aOther )
42{
43 wxCHECK( aOther, /* void */ );
44 *this = *aOther;
45}
46
47
49{
50 if( Type() == PCB_T )
51 return static_cast<const BOARD*>( this );
52
53 BOARD_ITEM* parent = GetParent();
54
55 if( parent )
56 return parent->GetBoard();
57
58 return nullptr;
59}
60
61
63{
64 if( Type() == PCB_T )
65 return static_cast<BOARD*>( this );
66
67 BOARD_ITEM* parent = GetParent();
68
69 if( parent )
70 return parent->GetBoard();
71
72 return nullptr;
73}
74
75
77{
78 if( GetParentGroup() && static_cast<PCB_GROUP*>( GetParentGroup() )->IsLocked() )
79 return true;
80
81 const BOARD* board = GetBoard();
82
83 return board && board->GetBoardUse() != BOARD_USE::FPHOLDER && m_isLocked;
84}
85
86
88{
89 wxFAIL_MSG( wxString( "GetStroke() not defined by " ) + GetClass() );
90
92}
93
94
96{
97 wxFAIL_MSG( wxString( "SetStroke() not defined by " ) + GetClass() );
98}
99
100
102{
104}
105
106
108{
109 const BOARD* board = GetBoard();
110
111 if( board )
112 return board->GetLayerSet().count();
113
114 return 64;
115}
116
117
119{
120 const BOARD* board = GetBoard();
121
122 if( board )
123 return board->GetCopperLayerCount();
124
125 return 32;
126}
127
128
130{
131 const BOARD* board = GetBoard();
132
133 if( board )
134 return board->GetEnabledLayers();
135
136 return LSET::AllLayersMask();
137}
138
139
141{
142 if( const BOARD* board = GetBoard() )
143 return board->GetLayerName( m_layer );
144
145 // If no parent, return standard name
147}
148
149
151{
152 if( ( GetLayerSet() & LSET::SideSpecificMask() ).any() )
153 return true;
154
155 if( const BOARD* board = GetBoard() )
156 {
157 LAYER_T principalLayerType = board->GetLayerType( m_layer );
158
159 if( principalLayerType == LT_FRONT || principalLayerType == LT_BACK )
160 return true;
161 }
162
163 return false;
164}
165
166
168{
169 const BOARD* board = GetBoard();
170 LSET layers = GetLayerSet() & board->GetEnabledLayers();
171
172 LSET copperLayers = layers & LSET::AllCuMask();
173 LSET techLayers = layers & LSET::AllTechMask();
174
175 // Try to be smart and useful. Check all copper first.
176 if( (int) copperLayers.count() == board->GetCopperLayerCount() )
177 return _( "all copper layers" );
178
179 for( LSET testLayers : { copperLayers, techLayers, layers } )
180 {
181 for( int bit = PCBNEW_LAYER_ID_START; bit < PCB_LAYER_ID_COUNT; ++bit )
182 {
183 if( testLayers[ bit ] )
184 {
185 wxString layerInfo = board->GetLayerName( static_cast<PCB_LAYER_ID>( bit ) );
186
187 if( testLayers.count() > 1 )
188 layerInfo << wxS( " " ) + _( "and others" );
189
190 return layerInfo;
191 }
192 }
193 }
194
195 // No copper, no technicals: no layer
196 return _( "no layers" );
197}
198
199
200std::vector<int> BOARD_ITEM::ViewGetLayers() const
201{
202 // Basic fallback
203 if( IsLocked() )
205
206 return { m_layer };
207}
208
209
211{
213
214 if( parent )
215 parent->Remove( this );
216
217 delete this;
218}
219
220
222{
223}
224
225
227{
228 if( aImage == nullptr )
229 return;
230
231 EDA_ITEM* parent = GetParent();
233
234 SetParentGroup( nullptr );
235 aImage->SetParentGroup( nullptr );
236 swapData( aImage );
237
238 // Restore pointers to be sure they are not broken
239 SetParent( parent );
241}
242
243
245{
246 BOARD_ITEM* dupe = static_cast<BOARD_ITEM*>( Clone() );
247 const_cast<KIID&>( dupe->m_Uuid ) = KIID();
248
249 if( dupe->GetParentGroup() )
250 dupe->GetParentGroup()->AddItem( dupe );
251
252 return dupe;
253}
254
255
257 int aClearance, int aError, ERROR_LOC aErrorLoc,
258 bool ignoreLineWidth ) const
259{
260 wxASSERT_MSG( false, wxT( "Called TransformShapeToPolygon() on unsupported BOARD_ITEM." ) );
261};
262
263
265{
266 if( a->Type() != b->Type() )
267 return a->Type() < b->Type();
268
269 if( a->GetLayerSet() != b->GetLayerSet() )
270 return a->GetLayerSet().Seq() < b->GetLayerSet().Seq();
271
272 if( a->m_Uuid != b->m_Uuid ) // UUIDs *should* always be unique (for valid boards anyway)
273 return a->m_Uuid < b->m_Uuid;
274
275 return a < b; // But just in case; ptrs are guaranteed to be different
276}
277
278
279std::shared_ptr<SHAPE> BOARD_ITEM::GetEffectiveShape( PCB_LAYER_ID aLayer, FLASHING aFlash ) const
280{
281 static std::shared_ptr<SHAPE> shape;
282
284
285 return shape;
286}
287
288
289std::shared_ptr<SHAPE_SEGMENT> BOARD_ITEM::GetEffectiveHoleShape() const
290{
291 static std::shared_ptr<SHAPE_SEGMENT> slot;
292
294
295 return slot;
296}
297
298
300{
301 // EDA_ITEM::IsType is too slow here.
302 auto isContainer = []( BOARD_ITEM_CONTAINER* aTest )
303 {
304 switch( aTest->Type() )
305 {
306 case PCB_GROUP_T:
307 case PCB_GENERATOR_T:
308 case PCB_TABLE_T:
309 return true;
310
311 default:
312 return false;
313 }
314 };
315
316 BOARD_ITEM_CONTAINER* ancestor = GetParent();
317
318 while( ancestor && isContainer( ancestor ) )
319 ancestor = ancestor->GetParent();
320
321 if( ancestor && ancestor->Type() == PCB_FOOTPRINT_T )
322 return static_cast<FOOTPRINT*>( ancestor );
323
324 return nullptr;
325}
326
327
329{
330 VECTOR2I pos = GetPosition();
331
332 if( FOOTPRINT* parentFP = GetParentFootprint() )
333 {
334 pos -= parentFP->GetPosition();
335 RotatePoint( pos, -parentFP->GetOrientation() );
336 }
337
338 return pos;
339}
340
341
343{
344 VECTOR2I pos( aPos );
345
346 if( FOOTPRINT* parentFP = GetParentFootprint() )
347 {
348 RotatePoint( pos, parentFP->GetOrientation() );
349 pos += parentFP->GetPosition();
350 }
351
352 SetPosition( pos );
353}
354
355
356void BOARD_ITEM::Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle )
357{
358 wxMessageBox( wxT( "virtual BOARD_ITEM::Rotate used, should not occur" ), GetClass() );
359}
360
361
362void BOARD_ITEM::Flip( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection )
363{
364 wxMessageBox( wxT( "virtual BOARD_ITEM::Flip used, should not occur" ), GetClass() );
365}
366
367
368void BOARD_ITEM::Mirror( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection )
369{
370 wxMessageBox( wxT( "virtual BOARD_ITEM::Mirror used, should not occur" ), GetClass() );
371}
372
373
375{
376 if( FOOTPRINT* fp = dynamic_cast<FOOTPRINT*>( m_parent ) )
377 return fp->GetReference();
378
379 return m_parent->m_Uuid.AsString();
380}
381
382
383static struct BOARD_ITEM_DESC
384{
386 {
388
389 if( layerEnum.Choices().GetCount() == 0 )
390 {
391 layerEnum.Undefined( UNDEFINED_LAYER );
392
393 for( PCB_LAYER_ID layer : LSET::AllLayersMask().Seq() )
394 layerEnum.Map( layer, LSET::Name( layer ) );
395 }
396
400
401 propMgr.AddProperty( new PROPERTY<BOARD_ITEM, wxString>( _HKI( "Parent" ),
405
406 propMgr.AddProperty( new PROPERTY<BOARD_ITEM, int>( _HKI( "Position X" ),
407 &BOARD_ITEM::SetX, &BOARD_ITEM::GetX, PROPERTY_DISPLAY::PT_COORD,
409 propMgr.AddProperty( new PROPERTY<BOARD_ITEM, int>( _HKI( "Position Y" ),
410 &BOARD_ITEM::SetY, &BOARD_ITEM::GetY, PROPERTY_DISPLAY::PT_COORD,
414 propMgr.AddProperty( new PROPERTY<BOARD_ITEM, bool>( _HKI( "Locked" ),
417 [=]( INSPECTABLE* aItem ) -> bool
418 {
419 BOARD_ITEM* item = dynamic_cast<BOARD_ITEM*>( aItem );
420 return item && item->GetBoard() && !item->GetBoard()->IsFootprintHolder();
421 } );
422 }
424
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
Definition: approximation.h:32
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
LAYER_T
The allowed types of layers, same as Specctra DSN spec.
Definition: board.h:160
@ LT_FRONT
Definition: board.h:167
@ LT_BACK
Definition: board.h:168
#define DEFAULT_LINE_WIDTH
static struct BOARD_ITEM_DESC _BOARD_ITEM_DESC
Abstract interface for BOARD_ITEMs capable of storing other items inside.
virtual void Remove(BOARD_ITEM *aItem, REMOVE_MODE aMode=REMOVE_MODE::NORMAL)=0
Removes an item from the container.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
virtual void Mirror(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection)
Mirror this object relative to a given horizontal axis the layer is not changed.
Definition: board_item.cpp:368
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
Definition: board_item.h:229
int GetY() const
Definition: board_item.h:98
void DeleteStructure()
Delete this object after removing from its parent if it has one.
Definition: board_item.cpp:210
void SwapItemData(BOARD_ITEM *aImage)
Swap data between aItem and aImage.
Definition: board_item.cpp:226
virtual STROKE_PARAMS GetStroke() const
Definition: board_item.cpp:87
virtual void SetLocked(bool aLocked)
Definition: board_item.h:320
virtual int BoardLayerCount() const
Return the total number of layers for the board that this item resides on.
Definition: board_item.cpp:107
virtual void SetStroke(const STROKE_PARAMS &aStroke)
Definition: board_item.cpp:95
PCB_LAYER_ID m_layer
Definition: board_item.h:445
bool m_isLocked
Definition: board_item.h:448
wxString GetParentAsString() const
For "parent" property.
Definition: board_item.cpp:374
int GetX() const
Definition: board_item.h:92
virtual void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aError, ERROR_LOC aErrorLoc, bool ignoreLineWidth=false) const
Convert the item shape to a closed polygon.
Definition: board_item.cpp:256
virtual void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle)
Rotate this object.
Definition: board_item.cpp:356
void SetX(int aX)
Definition: board_item.h:114
virtual BOARD_ITEM * Duplicate() const
Create a copy of this BOARD_ITEM.
Definition: board_item.cpp:244
void SetY(int aY)
Definition: board_item.h:120
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
Definition: board_item.h:280
virtual std::vector< int > ViewGetLayers() const override
Return the all the layers within the VIEW the object is painted on.
Definition: board_item.cpp:200
virtual std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT) const
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
Definition: board_item.cpp:279
virtual const BOARD * GetBoard() const
Return the BOARD in which this BOARD_ITEM resides, or NULL if none.
Definition: board_item.cpp:48
FOOTPRINT * GetParentFootprint() const
Definition: board_item.cpp:299
VECTOR2I GetFPRelativePosition() const
Definition: board_item.cpp:328
virtual LSET BoardLayerSet() const
Return the LSET for the board that this item resides on.
Definition: board_item.cpp:129
virtual LSET GetLayerSet() const
Return a std::bitset of all layers on which the item physically resides.
Definition: board_item.h:249
virtual void swapData(BOARD_ITEM *aImage)
Definition: board_item.cpp:221
const KIFONT::METRICS & GetFontMetrics() const
Definition: board_item.cpp:101
void SetFPRelativePosition(const VECTOR2I &aPos)
Definition: board_item.cpp:342
virtual bool IsLocked() const
Definition: board_item.cpp:76
virtual void CopyFrom(const BOARD_ITEM *aOther)
Definition: board_item.cpp:41
BOARD_ITEM_CONTAINER * GetParent() const
Definition: board_item.h:207
bool IsSideSpecific() const
Definition: board_item.cpp:150
virtual int BoardCopperLayerCount() const
Return the total number of copper layers for the board that this item resides on.
Definition: board_item.cpp:118
virtual wxString layerMaskDescribe() const
Return a string (to be shown to the user) describing a layer mask.
Definition: board_item.cpp:167
wxString GetLayerName() const
Return the name of the PCB layer on which the item resides.
Definition: board_item.cpp:140
virtual std::shared_ptr< SHAPE_SEGMENT > GetEffectiveHoleShape() const
Definition: board_item.cpp:289
virtual void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection)
Flip this object, i.e.
Definition: board_item.cpp:362
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
bool IsFootprintHolder() const
Find out if the board is being used to hold a single footprint for editing/viewing.
Definition: board.h:327
LSET GetEnabledLayers() const
A proxy function that calls the corresponding function in m_BoardSettings.
Definition: board.cpp:829
BOARD_USE GetBoardUse() const
Get what the board use is.
Definition: board.h:316
static wxString GetStandardLayerName(PCB_LAYER_ID aLayerId)
Return an "English Standard" name of a PCB layer when given aLayerNumber.
Definition: board.h:812
LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: board.h:612
int GetCopperLayerCount() const
Definition: board.cpp:781
const wxString GetLayerName(PCB_LAYER_ID aLayer) const
Return the name of a aLayer.
Definition: board.cpp:614
A set of EDA_ITEMs (i.e., without duplicates).
Definition: eda_group.h:45
virtual bool AddItem(EDA_ITEM *aItem)=0
Add item to group.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
virtual VECTOR2I GetPosition() const
Definition: eda_item.h:252
virtual void SetPosition(const VECTOR2I &aPos)
Definition: eda_item.h:253
const KIID m_Uuid
Definition: eda_item.h:498
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
virtual void SetParentGroup(EDA_GROUP *aGroup)
Definition: eda_item.h:113
EDA_GROUP * GetParentGroup() const
Definition: eda_item.h:114
virtual void SetParent(EDA_ITEM *aParent)
Definition: eda_item.h:111
virtual EDA_ITEM * Clone() const
Create a duplicate of this item with linked list members set to NULL.
Definition: eda_item.cpp:92
virtual wxString GetClass() const =0
Return the class name.
EDA_ITEM * m_parent
Linked list: Link (parent struct).
Definition: eda_item.h:510
ENUM_MAP & Map(T aValue, const wxString &aName)
Definition: property.h:686
static ENUM_MAP< T > & Instance()
Definition: property.h:680
ENUM_MAP & Undefined(T aValue)
Definition: property.h:693
wxPGChoices & Choices()
Definition: property.h:729
Class that other classes need to inherit from, in order to be inspectable.
Definition: inspectable.h:37
static const METRICS & Default()
Definition: font.cpp:52
Definition: kiid.h:49
wxString AsString() const
Definition: kiid.cpp:246
LSET is a set of PCB_LAYER_IDs.
Definition: lset.h:37
static LSET AllLayersMask()
Definition: lset.cpp:601
static LSET AllTechMask()
Return a mask holding all technical layers (no CU layer) on both side.
Definition: lset.cpp:636
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
Definition: lset.cpp:572
static LSET SideSpecificMask()
Definition: lset.cpp:697
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
Definition: lset.cpp:297
static wxString Name(PCB_LAYER_ID aLayerId)
Return the fixed name association with aLayerId.
Definition: lset.cpp:188
A set of BOARD_ITEMs (i.e., without duplicates).
Definition: pcb_group.h:53
PROPERTY_BASE & SetAvailableFunc(std::function< bool(INSPECTABLE *)> aFunc)
Set a callback function to determine whether an object provides this property.
Definition: property.h:257
PROPERTY_BASE & SetIsHiddenFromPropertiesManager(bool aHide=true)
Definition: property.h:300
PROPERTY_BASE & SetIsHiddenFromLibraryEditors(bool aIsHidden=true)
Definition: property.h:314
Provide class metadata.Helper macro to map type hashes to names.
Definition: property_mgr.h:85
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
static PROPERTY_MANAGER & Instance()
Definition: property_mgr.h:87
PROPERTY_BASE & AddProperty(PROPERTY_BASE *aProperty, const wxString &aGroup=wxEmptyString)
Register a property.
Represent a set of closed polygons.
Simple container to manage line stroke parameters.
Definition: stroke_params.h:94
#define _HKI(x)
#define _(s)
Some functions to handle hotkeys in KiCad.
constexpr PCB_LAYER_ID PCBNEW_LAYER_ID_START
Definition: layer_ids.h:174
FLASHING
Enum used during connectivity building to ensure we do not query connectivity while building the data...
Definition: layer_ids.h:184
@ LAYER_LOCKED_ITEM_SHADOW
Shadow layer for locked items.
Definition: layer_ids.h:306
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ UNDEFINED_LAYER
Definition: layer_ids.h:61
@ PCB_LAYER_ID_COUNT
Definition: layer_ids.h:171
This file contains miscellaneous commonly used macros and functions.
#define UNIMPLEMENTED_FOR(type)
Definition: macros.h:96
FLIP_DIRECTION
Definition: mirror.h:27
Class to handle a set of BOARD_ITEMs.
#define TYPE_HASH(x)
Definition: property.h:71
#define IMPLEMENT_ENUM_TO_WXANY(type)
Definition: property.h:780
#define NO_SETTER(owner, type)
Definition: property.h:791
#define REGISTER_TYPE(x)
Definition: property_mgr.h:371
bool operator()(const BOARD_ITEM *a, const BOARD_ITEM *b) const
Definition: board_item.cpp:264
constexpr int mmToIU(double mm) const
Definition: base_units.h:88
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
Definition: trigo.cpp:229
@ PCB_T
Definition: typeinfo.h:82
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
Definition: typeinfo.h:91
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition: typeinfo.h:110
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
Definition: typeinfo.h:86
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
Definition: typeinfo.h:94