KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_collectors.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) 2011 Wayne Stambaugh <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 * Copyright (C) 2019 CERN
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, see <https://www.gnu.org/licenses/>.
20 */
21
22#include <macros.h>
23#include <trace_helpers.h>
24#include <sch_collectors.h>
25#include <sch_bus_entry.h>
26#include <sch_symbol.h>
27#include <sch_line.h>
28#include <sch_screen.h>
29#include <sch_sheet_path.h>
30#include <transform.h>
31#include "sch_reference_list.h"
32
33
34const std::vector<KICAD_T> SCH_COLLECTOR::EditableItems = {
53};
54
55
56const std::vector<KICAD_T> SCH_COLLECTOR::MovableItems =
57{
69 SCH_TABLECELL_T, // will be promoted to parent table(s)
80};
81
82
83const std::vector<KICAD_T> SCH_COLLECTOR::FieldOwners =
84{
88};
89
90
91const std::vector<KICAD_T> SCH_COLLECTOR::DeletableItems =
92{
103 SCH_TABLECELL_T, // Clear contents
113 SCH_FIELD_T, // Will be hidden
116};
117
118
120{
121 if( m_Unit || m_BodyStyle )
122 {
123 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( aItem );
124
125 // Special selection rules apply to pins of different units when edited in synchronized
126 // pins mode. Leave it to SCH_SELECTION_TOOL::Selectable() to decide what to do with them.
127
128 if( schItem && schItem->Type() != SCH_PIN_T )
129 {
130 if( m_Unit && schItem->GetUnit() && schItem->GetUnit() != m_Unit )
132
133 if( m_BodyStyle && schItem->GetBodyStyle() && schItem->GetBodyStyle() != m_BodyStyle )
135 }
136 }
137
139 aItem->SetFlags( SHOW_ELEC_TYPE );
140
141 if( aItem->HitTest( m_refPos, m_Threshold ) )
142 Append( aItem );
143
144 aItem->ClearFlags( SHOW_ELEC_TYPE );
145
147}
148
149
150void SCH_COLLECTOR::Collect( SCH_SCREEN* aScreen, const std::vector<KICAD_T>& aFilterList,
151 const VECTOR2I& aPos, int aUnit, int aBodyStyle )
152{
153 Empty(); // empty the collection just in case
154
155 SetScanTypes( aFilterList );
156 m_Unit = aUnit;
157 m_BodyStyle = aBodyStyle;
158
159 // remember where the snapshot was taken from and pass refPos to the Inspect() function.
160 SetRefPos( aPos );
161
162 if( aScreen )
163 {
164 for( SCH_ITEM *item : aScreen->Items().Overlapping( SCH_LOCATE_ANY_T, aPos, m_Threshold ) )
165 item->Visit( m_inspector, nullptr, m_scanTypes );
166 }
167}
168
169
170void SCH_COLLECTOR::Collect( LIB_ITEMS_CONTAINER& aItems, const std::vector<KICAD_T>& aFilterList,
171 const VECTOR2I& aPos, int aUnit, int aBodyStyle )
172{
173 Empty(); // empty the collection just in case
174
175 SetScanTypes( aFilterList );
176 m_Unit = aUnit;
177 m_BodyStyle = aBodyStyle;
178
179 // remember where the snapshot was taken from and pass refPos to the Inspect() function.
180 SetRefPos( aPos );
181
182 for( SCH_ITEM& item : aItems )
183 {
184 if( item.Visit( m_inspector, nullptr, m_scanTypes ) == INSPECT_RESULT::QUIT )
185 break;
186 }
187}
188
189
191{
192 if( GetCount() != 2 )
193 return false;
194
195 bool is_busentry0 = ( dynamic_cast<SCH_BUS_ENTRY_BASE*>( m_list[0] ) != nullptr );
196 bool is_busentry1 = ( dynamic_cast<SCH_BUS_ENTRY_BASE*>( m_list[1] ) != nullptr );
197
198 if(( m_list[0]->Type() == SCH_LINE_T) && ( m_list[1]->Type() == SCH_LINE_T) )
199 return ( ( SCH_LINE* ) m_list[0])->GetLayer() == ( ( SCH_LINE* ) m_list[1])->GetLayer();
200
201 if(( m_list[0]->Type() == SCH_LINE_T) && is_busentry1 )
202 return true;
203
204 if( is_busentry0 && ( m_list[1]->Type() == SCH_LINE_T) )
205 return true;
206
207 return false;
208}
209
210
211void CollectOtherUnits( const wxString& aRef, int aUnit, const LIB_ID& aLibId,
212 SCH_SHEET_PATH& aSheet, std::vector<SCH_SYMBOL*>* otherUnits )
213{
214 SCH_REFERENCE_LIST symbols;
215 aSheet.GetSymbols( symbols, SYMBOL_FILTER_ALL );
216
217 for( unsigned i = 0; i < symbols.GetCount(); i++ )
218 {
219 SCH_REFERENCE symbol = symbols[i];
220
221 if( symbol.GetRef() == aRef
222 && symbol.GetSymbol()->GetLibId() == aLibId
223 && symbol.GetUnit() != aUnit )
224 {
225 otherUnits->push_back( symbol.GetSymbol() );
226 }
227 }
228}
229
INSPECTOR_FUNC m_inspector
Definition collector.h:242
void Empty()
Clear the list.
Definition collector.h:87
VECTOR2I m_refPos
Definition collector.h:244
int GetCount() const
Return the number of objects in the list.
Definition collector.h:79
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:209
void SetRefPos(const VECTOR2I &aRefPos)
Definition collector.h:211
std::vector< KICAD_T > m_scanTypes
Definition collector.h:241
std::vector< EDA_ITEM * > m_list
Definition collector.h:238
int m_Threshold
Definition collector.h:232
void Append(EDA_ITEM *item)
Add an item to the end of the list.
Definition collector.h:97
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
void SetFlags(EDA_ITEM_FLAGS aMask)
Definition eda_item.h:152
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:108
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
Definition eda_item.h:154
virtual bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const
Test if aPosition is inside or on the boundary of this item.
Definition eda_item.h:243
EE_TYPE Overlapping(const BOX2I &aRect) const
Definition sch_rtree.h:226
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
Base class for a bus or wire entry.
static const std::vector< KICAD_T > FieldOwners
static const std::vector< KICAD_T > EditableItems
INSPECT_RESULT Inspect(EDA_ITEM *aItem, void *aTestData) override
bool IsCorner() const
Test if the collected items form a corner of two line segments.
void Collect(SCH_SCREEN *aScreen, const std::vector< KICAD_T > &aScanTypes, const VECTOR2I &aPos, int aUnit=0, int aBodyStyle=0)
Scan a EDA_ITEM using this class's Inspector method which does the collection.
static const std::vector< KICAD_T > DeletableItems
bool m_ShowPinElectricalTypes
static const std::vector< KICAD_T > MovableItems
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:162
int GetBodyStyle() const
Definition sch_item.h:242
int GetUnit() const
Definition sch_item.h:233
Segment description base class to describe items which have 2 end points (track, wire,...
Definition sch_line.h:38
Container to create a flattened list of symbols because in a complex hierarchy, a symbol can be used ...
A helper to define a symbol's reference designator in a schematic.
SCH_SYMBOL * GetSymbol() const
wxString GetRef() const
int GetUnit() const
EE_RTREE & Items()
Get the full RTree, usually for iterating.
Definition sch_screen.h:115
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
void GetSymbols(SCH_REFERENCE_LIST &aReferences, SYMBOL_FILTER aSymbolFilter, bool aForceIncludeOrphanSymbols=false) const
Adds SCH_REFERENCE object to aReferences for each symbol in the sheet.
const LIB_ID & GetLibId() const override
Definition sch_symbol.h:158
INSPECT_RESULT
Definition eda_item.h:42
#define SHOW_ELEC_TYPE
Show pin electrical type.
MULTIVECTOR< SCH_ITEM, SCH_SHAPE_T, SCH_PIN_T > LIB_ITEMS_CONTAINER
Definition lib_symbol.h:48
This file contains miscellaneous commonly used macros and functions.
void CollectOtherUnits(const wxString &aRef, int aUnit, const LIB_ID &aLibId, SCH_SHEET_PATH &aSheet, std::vector< SCH_SYMBOL * > *otherUnits)
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.
@ SYMBOL_FILTER_ALL
wxLogTrace helper definitions.
@ SCH_GROUP_T
Definition typeinfo.h:170
@ SCH_TABLE_T
Definition typeinfo.h:162
@ SCH_LINE_T
Definition typeinfo.h:160
@ LIB_SYMBOL_T
Definition typeinfo.h:145
@ SCH_NO_CONNECT_T
Definition typeinfo.h:157
@ SCH_SYMBOL_T
Definition typeinfo.h:169
@ SCH_TABLECELL_T
Definition typeinfo.h:163
@ SCH_FIELD_T
Definition typeinfo.h:147
@ SCH_DIRECTIVE_LABEL_T
Definition typeinfo.h:168
@ SCH_LABEL_T
Definition typeinfo.h:164
@ SCH_LOCATE_ANY_T
Definition typeinfo.h:196
@ SCH_SHEET_T
Definition typeinfo.h:172
@ SCH_MARKER_T
Definition typeinfo.h:155
@ SCH_SHAPE_T
Definition typeinfo.h:146
@ SCH_RULE_AREA_T
Definition typeinfo.h:167
@ SCH_HIER_LABEL_T
Definition typeinfo.h:166
@ SCH_BUS_BUS_ENTRY_T
Definition typeinfo.h:159
@ SCH_LABEL_LOCATE_ANY_T
Definition typeinfo.h:188
@ SCH_SHEET_PIN_T
Definition typeinfo.h:171
@ SCH_TEXT_T
Definition typeinfo.h:148
@ SCH_BUS_WIRE_ENTRY_T
Definition typeinfo.h:158
@ SCH_BITMAP_T
Definition typeinfo.h:161
@ SCH_TEXTBOX_T
Definition typeinfo.h:149
@ SCH_GLOBAL_LABEL_T
Definition typeinfo.h:165
@ SCH_JUNCTION_T
Definition typeinfo.h:156
@ SCH_PIN_T
Definition typeinfo.h:150
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683