KiCad PCB EDA Suite
Loading...
Searching...
No Matches
collectors.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 (C) 2007-2008 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright (C) 2004-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef COLLECTORS_H
26#define COLLECTORS_H
27
28/*
29 * This module contains a number of COLLECTOR implementations which are used
30 * to augment the functionality of class PCB_EDIT_FRAME.
31 */
32
33#include <collector.h>
34#include <layer_ids.h> // LAYER_COUNT, layer defs
35#include <lset.h>
36#include <view/view.h>
37#include <board_item.h>
38
54{
55public:
56 virtual ~COLLECTORS_GUIDE() {}
57
61 virtual bool IsLayerVisible( PCB_LAYER_ID layer ) const = 0;
62
66 virtual PCB_LAYER_ID GetPreferredLayer() const = 0;
67
71 virtual bool IgnoreLockedItems() const = 0;
72
78 virtual bool IncludeSecondary() const = 0;
79
83 virtual bool IgnoreFPTextOnBack() const = 0;
84
88 virtual bool IgnoreFPTextOnFront() const = 0;
89
93 virtual bool IgnoreFootprintsOnBack() const = 0;
94
98 virtual bool IgnoreFootprintsOnFront() const = 0;
99
103 virtual bool IgnorePadsOnBack() const = 0;
104
108 virtual bool IgnorePadsOnFront() const = 0;
109
113 virtual bool IgnoreThroughHolePads() const = 0;
114
118 virtual bool IgnorePads() const
119 {
121 }
122
126 virtual bool IgnoreFPValues() const = 0;
127
131 virtual bool IgnoreFPReferences() const = 0;
132
136 virtual bool IgnoreThroughVias() const = 0;
137
141 virtual bool IgnoreBlindBuriedVias() const = 0;
142
146 virtual bool IgnoreMicroVias() const = 0;
147
151 virtual bool IgnoreTracks() const = 0;
152
156 virtual bool IgnoreZoneFills() const = 0;
157
158 virtual int Accuracy() const = 0;
159
160 virtual double OnePixelInIU() const = 0;
161};
162
163
164
175{
176public:
183 BOARD_ITEM* operator[]( int ndx ) const override
184 {
185 if( (unsigned)ndx < (unsigned)GetCount() )
186 return (BOARD_ITEM*) m_list[ ndx ];
187
188 return nullptr;
189 }
190};
191
192
202{
203protected:
210 std::vector<EDA_ITEM*> m_List2nd;
211
216
217public:
218
222 static const std::vector<KICAD_T> AllBoardItems;
223
227 static const std::vector<KICAD_T> Zones;
228
233 static const std::vector<KICAD_T> BoardLevelItems;
234
238 static const std::vector<KICAD_T> Footprints;
239
243 static const std::vector<KICAD_T> PadsOrTracks;
244
248 static const std::vector<KICAD_T> FootprintItems;
249
253 static const std::vector<KICAD_T> Tracks;
254
258 static const std::vector<KICAD_T> Dimensions;
259
263 static const std::vector<KICAD_T> DraggableItems;
264
266 m_Guide( nullptr )
267 {
269 }
270
271 void Empty2nd()
272 {
273 m_List2nd.clear();
274 }
275
276 void Append2nd( EDA_ITEM* item )
277 {
278 m_List2nd.push_back( item );
279 }
280
286 void SetGuide( const COLLECTORS_GUIDE* aGuide ) { m_Guide = aGuide; }
287
288 const COLLECTORS_GUIDE* GetGuide() const { return m_Guide; }
289
298 INSPECT_RESULT Inspect( EDA_ITEM* aTestItem, void* aTestData ) override;
299
309 void Collect( BOARD_ITEM* aItem, const std::vector<KICAD_T>& aScanList,
310 const VECTOR2I& aRefPos, const COLLECTORS_GUIDE& aGuide );
311};
312
313
319{
320public:
321
330 GENERAL_COLLECTORS_GUIDE( LSET aVisibleLayerMask, PCB_LAYER_ID aPreferredLayer,
331 KIGFX::VIEW* aView )
332 {
333 static const VECTOR2I one( 1, 1 );
334
335 m_preferredLayer = aPreferredLayer;
336 m_visibleLayers = aVisibleLayerMask;
337 m_ignoreLockedItems = false;
338
339#if defined(USE_MATCH_LAYER)
340 m_includeSecondary = false;
341#else
342 m_includeSecondary = true;
343#endif
344
346 m_ignoreFPTextOnFront = false;
347 m_ignoreFootprintsOnBack = true; // !Show_footprints_Cmp;
349
350 m_ignorePadsOnFront = false;
351 m_ignorePadsOnBack = false;
353
354 m_ignoreFPValues = false;
355 m_ignoreFPReferences = false;
356
357 m_ignoreThroughVias = false;
359 m_ignoreMicroVias = false;
360 m_ignoreTracks = false;
361 m_ignoreZoneFills = true;
362
363 m_onePixelInIU = abs( aView->ToWorld( one, false ).x );
365 }
366
370 bool IsLayerVisible( PCB_LAYER_ID aLayerId ) const override
371 {
372 return m_visibleLayers[aLayerId];
373 }
374 void SetLayerVisible( PCB_LAYER_ID aLayerId, bool isVisible )
375 {
376 m_visibleLayers.set( aLayerId, isVisible );
377 }
378 void SetLayerVisibleBits( LSET aLayerBits ) { m_visibleLayers = aLayerBits; }
379
385
389 bool IgnoreLockedItems() const override { return m_ignoreLockedItems; }
390 void SetIgnoreLockedItems( bool ignore ) { m_ignoreLockedItems = ignore; }
391
397 bool IncludeSecondary() const override { return m_includeSecondary; }
398 void SetIncludeSecondary( bool include ) { m_includeSecondary = include; }
399
403 bool IgnoreFPTextOnBack() const override { return m_ignoreFPTextOnBack; }
404 void SetIgnoreFPTextOnBack( bool ignore ) { m_ignoreFPTextOnBack = ignore; }
405
409 bool IgnoreFPTextOnFront() const override { return m_ignoreFPTextOnFront; }
410 void SetIgnoreFPTextOnFront( bool ignore ) { m_ignoreFPTextOnFront = ignore; }
411
415 bool IgnoreFootprintsOnBack() const override { return m_ignoreFootprintsOnBack; }
416 void SetIgnoreFootprintsOnBack( bool ignore ) { m_ignoreFootprintsOnBack = ignore; }
417
421 bool IgnoreFootprintsOnFront() const override { return m_ignoreFootprintsOnFront; }
423
427 bool IgnorePadsOnBack() const override { return m_ignorePadsOnBack; }
428 void SetIgnorePadsOnBack(bool ignore) { m_ignorePadsOnBack = ignore; }
429
433 bool IgnorePadsOnFront() const override { return m_ignorePadsOnFront; }
434 void SetIgnorePadsOnFront(bool ignore) { m_ignorePadsOnFront = ignore; }
435
439 bool IgnoreThroughHolePads() const override { return m_ignoreThroughHolePads; }
440 void SetIgnoreThroughHolePads(bool ignore) { m_ignoreThroughHolePads = ignore; }
441
445 bool IgnoreFPValues() const override { return m_ignoreFPValues; }
446 void SetIgnoreFPValues( bool ignore) { m_ignoreFPValues = ignore; }
447
451 bool IgnoreFPReferences() const override { return m_ignoreFPReferences; }
452 void SetIgnoreFPReferences( bool ignore) { m_ignoreFPReferences = ignore; }
453
454 bool IgnoreThroughVias() const override { return m_ignoreThroughVias; }
455 void SetIgnoreThroughVias( bool ignore ) { m_ignoreThroughVias = ignore; }
456
457 bool IgnoreBlindBuriedVias() const override { return m_ignoreBlindBuriedVias; }
458 void SetIgnoreBlindBuriedVias( bool ignore ) { m_ignoreBlindBuriedVias = ignore; }
459
460 bool IgnoreMicroVias() const override { return m_ignoreMicroVias; }
461 void SetIgnoreMicroVias( bool ignore ) { m_ignoreMicroVias = ignore; }
462
463 bool IgnoreTracks() const override { return m_ignoreTracks; }
464 void SetIgnoreTracks( bool ignore ) { m_ignoreTracks = ignore; }
465
466 bool IgnoreZoneFills() const override { return m_ignoreZoneFills; }
467 void SetIgnoreZoneFills( bool ignore ) { m_ignoreZoneFills = ignore; }
468
469 int Accuracy() const override { return m_accuracy; }
470 void SetAccuracy( int aValue ) { m_accuracy = aValue; }
471
472 double OnePixelInIU() const override { return m_onePixelInIU; }
473
474private:
475 // the storage architecture here is not important, since this is only
476 // a carrier object and its functions are what is used, and data only indirectly.
477
479
481
484
499
502};
503
504
511{
512public:
513
521 INSPECT_RESULT Inspect( EDA_ITEM* testItem, void* testData ) override;
522
529 void Collect( BOARD_ITEM* aBoard, const std::vector<KICAD_T>& aTypes );
530};
531
532
539{
540public:
542 m_layer_id( aLayerId )
543 { }
544
545 void SetLayerId( PCB_LAYER_ID aLayerId ) { m_layer_id = aLayerId; }
546
554 INSPECT_RESULT Inspect( EDA_ITEM* testItem, void* testData ) override;
555
562 void Collect( BOARD_ITEM* aBoard, const std::vector<KICAD_T>& aTypes );
563
564private:
566};
567
568#endif // COLLECTORS_H
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition: box2.h:990
BASE_SET & set(size_t pos)
Definition: base_set.h:115
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:79
An abstract base class whose derivatives may be passed to a GENERAL_COLLECTOR telling it what should ...
Definition: collectors.h:54
virtual bool IgnoreThroughVias() const =0
virtual bool IsLayerVisible(PCB_LAYER_ID layer) const =0
virtual bool IgnoreFPTextOnFront() const =0
virtual double OnePixelInIU() const =0
virtual bool IgnoreFPTextOnBack() const =0
virtual bool IgnoreLockedItems() const =0
virtual bool IgnoreZoneFills() const =0
virtual bool IgnoreMicroVias() const =0
virtual bool IgnoreFootprintsOnBack() const =0
virtual bool IgnoreBlindBuriedVias() const =0
virtual int Accuracy() const =0
virtual bool IgnoreThroughHolePads() const =0
virtual bool IgnorePadsOnBack() const =0
virtual bool IgnoreFPReferences() const =0
virtual bool IgnorePadsOnFront() const =0
virtual bool IgnoreFootprintsOnFront() const =0
virtual bool IgnorePads() const
Definition: collectors.h:118
virtual bool IgnoreTracks() const =0
virtual bool IncludeSecondary() const =0
Determine if the secondary criteria or 2nd choice items should be included.
virtual bool IgnoreFPValues() const =0
virtual ~COLLECTORS_GUIDE()
Definition: collectors.h:56
virtual PCB_LAYER_ID GetPreferredLayer() const =0
An abstract class that will find and hold all the objects according to an inspection done by the Insp...
Definition: collector.h:48
int GetCount() const
Return the number of objects in the list.
Definition: collector.h:81
void SetScanTypes(const std::vector< KICAD_T > &aTypes)
Record the list of KICAD_T types to consider for collection by the Inspect() function.
Definition: collector.h:211
std::vector< EDA_ITEM * > m_list
Definition: collector.h:240
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
A general implementation of a COLLECTORS_GUIDE.
Definition: collectors.h:319
void SetIgnoreBlindBuriedVias(bool ignore)
Definition: collectors.h:458
void SetIgnoreTracks(bool ignore)
Definition: collectors.h:464
bool IgnoreFootprintsOnBack() const override
Definition: collectors.h:415
void SetIgnoreFootprintsOnFront(bool ignore)
Definition: collectors.h:422
bool IgnorePadsOnFront() const override
Definition: collectors.h:433
void SetIgnoreFPTextOnFront(bool ignore)
Definition: collectors.h:410
bool IgnoreLockedItems() const override
Definition: collectors.h:389
void SetIgnoreMicroVias(bool ignore)
Definition: collectors.h:461
LSET m_visibleLayers
bit-mapped layer visible bits
Definition: collectors.h:480
void SetIgnoreZoneFills(bool ignore)
Definition: collectors.h:467
int Accuracy() const override
Definition: collectors.h:469
bool IgnoreTracks() const override
Definition: collectors.h:463
GENERAL_COLLECTORS_GUIDE(LSET aVisibleLayerMask, PCB_LAYER_ID aPreferredLayer, KIGFX::VIEW *aView)
Grab stuff from global preferences and uses reasonable defaults.
Definition: collectors.h:330
double OnePixelInIU() const override
Definition: collectors.h:472
bool IncludeSecondary() const override
Determine if the secondary criteria, or 2nd choice items should be included.
Definition: collectors.h:397
bool IgnoreFPTextOnBack() const override
Definition: collectors.h:403
void SetIgnorePadsOnBack(bool ignore)
Definition: collectors.h:428
void SetLayerVisible(PCB_LAYER_ID aLayerId, bool isVisible)
Definition: collectors.h:374
void SetIgnoreLockedItems(bool ignore)
Definition: collectors.h:390
bool IgnoreBlindBuriedVias() const override
Definition: collectors.h:457
void SetIgnoreFPTextOnBack(bool ignore)
Definition: collectors.h:404
bool IgnoreFPValues() const override
Definition: collectors.h:445
bool IgnoreFootprintsOnFront() const override
Definition: collectors.h:421
void SetPreferredLayer(PCB_LAYER_ID aLayer)
Definition: collectors.h:384
bool IgnoreThroughVias() const override
Definition: collectors.h:454
void SetIgnoreThroughVias(bool ignore)
Definition: collectors.h:455
void SetIgnoreThroughHolePads(bool ignore)
Definition: collectors.h:440
void SetIncludeSecondary(bool include)
Definition: collectors.h:398
void SetLayerVisibleBits(LSET aLayerBits)
Definition: collectors.h:378
bool IsLayerVisible(PCB_LAYER_ID aLayerId) const override
Definition: collectors.h:370
void SetIgnoreFPReferences(bool ignore)
Definition: collectors.h:452
bool IgnoreThroughHolePads() const override
Definition: collectors.h:439
bool IgnoreMicroVias() const override
Definition: collectors.h:460
void SetIgnoreFPValues(bool ignore)
Definition: collectors.h:446
bool IgnoreZoneFills() const override
Definition: collectors.h:466
void SetIgnorePadsOnFront(bool ignore)
Definition: collectors.h:434
void SetIgnoreFootprintsOnBack(bool ignore)
Definition: collectors.h:416
bool IgnoreFPTextOnFront() const override
Definition: collectors.h:409
bool IgnorePadsOnBack() const override
Definition: collectors.h:427
void SetAccuracy(int aValue)
Definition: collectors.h:470
PCB_LAYER_ID m_preferredLayer
Definition: collectors.h:478
PCB_LAYER_ID GetPreferredLayer() const override
Definition: collectors.h:383
bool IgnoreFPReferences() const override
Definition: collectors.h:451
Used when the right click button is pressed, or when the select tool is in effect.
Definition: collectors.h:202
static const std::vector< KICAD_T > BoardLevelItems
A scan list for all primary board items, omitting items which are subordinate to a FOOTPRINT,...
Definition: collectors.h:233
void SetGuide(const COLLECTORS_GUIDE *aGuide)
Record which COLLECTORS_GUIDE to use.
Definition: collectors.h:286
static const std::vector< KICAD_T > PadsOrTracks
A scan list for PADs, TRACKs, or VIAs.
Definition: collectors.h:243
void Append2nd(EDA_ITEM *item)
Definition: collectors.h:276
INSPECT_RESULT Inspect(EDA_ITEM *aTestItem, void *aTestData) override
The examining function within the INSPECTOR which is passed to the Iterate function.
Definition: collectors.cpp:146
const COLLECTORS_GUIDE * GetGuide() const
Definition: collectors.h:288
static const std::vector< KICAD_T > Zones
A scan list for zones outlines only.
Definition: collectors.h:227
std::vector< EDA_ITEM * > m_List2nd
A place to hold collected objects which don't match precisely the search criteria,...
Definition: collectors.h:210
static const std::vector< KICAD_T > Footprints
A scan list for only FOOTPRINTs.
Definition: collectors.h:238
static const std::vector< KICAD_T > AllBoardItems
A scan list for all editable board items.
Definition: collectors.h:222
static const std::vector< KICAD_T > Tracks
A scan list for only TRACKs and ARCs.
Definition: collectors.h:253
void Collect(BOARD_ITEM *aItem, const std::vector< KICAD_T > &aScanList, const VECTOR2I &aRefPos, const COLLECTORS_GUIDE &aGuide)
Scan a BOARD_ITEM using this class's Inspector method, which does the collection.
Definition: collectors.cpp:482
static const std::vector< KICAD_T > Dimensions
A scan list for dimensions.
Definition: collectors.h:258
static const std::vector< KICAD_T > FootprintItems
A scan list for primary footprint items.
Definition: collectors.h:248
const COLLECTORS_GUIDE * m_Guide
Determine which items are to be collected by Inspect().
Definition: collectors.h:215
static const std::vector< KICAD_T > DraggableItems
A scan list for items that can be dragged.
Definition: collectors.h:263
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
VECTOR2D ToWorld(const VECTOR2D &aCoord, bool aAbsolute=true) const
Converts a screen space point/vector to a point/vector in world space coordinates.
Definition: view.cpp:484
LSET is a set of PCB_LAYER_IDs.
Definition: lset.h:36
Collect BOARD_ITEM objects.
Definition: collectors.h:175
BOARD_ITEM * operator[](int ndx) const override
Overload the COLLECTOR::operator[](int) to return a BOARD_ITEM instead of an EDA_ITEM.
Definition: collectors.h:183
Collect all BOARD_ITEM objects on a given layer.
Definition: collectors.h:539
void Collect(BOARD_ITEM *aBoard, const std::vector< KICAD_T > &aTypes)
Test a BOARD_ITEM using this class's Inspector method, which does the collection.
Definition: collectors.cpp:536
INSPECT_RESULT Inspect(EDA_ITEM *testItem, void *testData) override
The examining function within the INSPECTOR which is passed to the iterate function.
Definition: collectors.cpp:525
PCB_LAYER_COLLECTOR(PCB_LAYER_ID aLayerId=UNDEFINED_LAYER)
Definition: collectors.h:541
void SetLayerId(PCB_LAYER_ID aLayerId)
Definition: collectors.h:545
PCB_LAYER_ID m_layer_id
Definition: collectors.h:565
Collect all BOARD_ITEM objects of a given set of KICAD_T type(s).
Definition: collectors.h:511
void Collect(BOARD_ITEM *aBoard, const std::vector< KICAD_T > &aTypes)
Collect BOARD_ITEM objects using this class's Inspector method, which does the collection.
Definition: collectors.cpp:518
INSPECT_RESULT Inspect(EDA_ITEM *testItem, void *testData) override
The examining function within the INSPECTOR which is passed to the Iterate function.
Definition: collectors.cpp:508
INSPECT_RESULT
Definition: eda_item.h:43
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ UNDEFINED_LAYER
Definition: layer_ids.h:61