KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
test_ee_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 The KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
25#include <eda_item_test_utils.h>
26#include <core/typeinfo.h>
27
28#include <eda_item.h>
29#include <sch_item.h>
30
31#include <sch_marker.h>
32#include <sch_junction.h>
33#include <sch_no_connect.h>
34#include <sch_bus_entry.h>
35#include <sch_line.h>
36#include <sch_rule_area.h>
37#include <sch_shape.h>
38#include <sch_bitmap.h>
39#include <sch_text.h>
40#include <sch_textbox.h>
41#include <sch_table.h>
42#include <sch_tablecell.h>
43#include <sch_field.h>
44#include <sch_group.h>
45#include <sch_symbol.h>
46#include <sch_sheet_pin.h>
47#include <sch_sheet.h>
48#include <sch_pin.h>
49
50#include <erc/erc_settings.h>
51
53{
54public:
59 std::shared_ptr<ERC_ITEM> m_ercItem;
60
62 m_sheet(),
63 m_symbol( "test symbol" ),
64 m_pin( &m_symbol ),
66 {
69 }
70
72 {
73 m_text.SetParentGroup( nullptr );
74 }
75
77 {
78 if( !IsEeschemaType( aType ) )
79 return nullptr;
80
81 if( !IsInstantiableType( aType ) )
82 return nullptr;
83
84 switch( aType )
85 {
86 case SCH_MARKER_T: return new SCH_MARKER( m_ercItem, VECTOR2I( 0, 0 ) );
87 case SCH_JUNCTION_T: return new SCH_JUNCTION();
88 case SCH_NO_CONNECT_T: return new SCH_NO_CONNECT();
90 case SCH_BUS_BUS_ENTRY_T: return new SCH_BUS_BUS_ENTRY();
91 case SCH_LINE_T: return new SCH_LINE();
92 case SCH_RULE_AREA_T:
93 {
94 SHAPE_POLY_SET ruleShape;
95
96 ruleShape.NewOutline();
97 auto& outline = ruleShape.Outline( 0 );
98 outline.Append( VECTOR2I( 20000, 20000) );
99 outline.Append( VECTOR2I( 22000, 20000) );
100 outline.Append( VECTOR2I( 22000, 22000) );
101 outline.Append( VECTOR2I( 20000, 22000) );
102 outline.SetClosed( true );
103 outline.Simplify( true );
104
105 SCH_RULE_AREA* ruleArea = new SCH_RULE_AREA();
106 ruleArea->SetPolyShape( ruleShape );
107
108 return ruleArea;
109 }
110 case SCH_SHAPE_T: return new SCH_SHAPE( SHAPE_T::ARC, LAYER_NOTES );
111 case SCH_BITMAP_T: return new SCH_BITMAP();
112 case SCH_TEXT_T: return new SCH_TEXT( VECTOR2I( 0, 0 ), "test text" );
113 case SCH_TEXTBOX_T: return new SCH_TEXTBOX( LAYER_NOTES, 0, FILL_T::NO_FILL, "test textbox" );
114 case SCH_TABLECELL_T: return new SCH_TABLECELL();
115 case SCH_TABLE_T:
116 {
117 SCH_TABLE* table = new SCH_TABLE( schIUScale.mmToIU( 0.1 ) );
118
119 table->SetColCount( 2 );
120
121 for( int ii = 0; ii < 4; ++ii )
122 table->InsertCell( ii, new SCH_TABLECELL() );
123
124 return table;
125 }
126 case SCH_LABEL_T: return new SCH_LABEL( VECTOR2I( 0, 0 ), "test label" );
127 case SCH_DIRECTIVE_LABEL_T: return new SCH_DIRECTIVE_LABEL( VECTOR2I( 0, 0 ) );
128 case SCH_GLOBAL_LABEL_T: return new SCH_GLOBALLABEL();
129 case SCH_HIER_LABEL_T: return new SCH_HIERLABEL();
130 case SCH_FIELD_T: return new SCH_FIELD( { 0, 0 }, FIELD_T::USER, nullptr );
131 case SCH_SYMBOL_T: return new SCH_SYMBOL();
132
133 case SCH_SHEET_PIN_T:
134 // XXX: m_sheet pins currently have to have their initial positions calculated manually.
135 return new SCH_SHEET_PIN( &m_sheet,
138 "test aPin" );
139
140 case SCH_SHEET_T: return new SCH_SHEET();
141 case SCH_PIN_T: return new SCH_PIN( &m_symbol );
142 case SCH_GROUP_T:
143 {
144 SCH_GROUP* group = new SCH_GROUP();
145
146 // Group position only makes sense if there's at least one item in the group.
147 group->AddItem( &m_text );
148
149 return group;
150 }
151
152 case SCHEMATIC_T:
153 case LIB_SYMBOL_T: return nullptr;
154
155 default:
156 BOOST_FAIL( wxString::Format(
157 "Unhandled type: %d "
158 "(if you created a new type you need to handle it in this switch statement)",
159 aType ) );
160 return nullptr;
161 }
162 }
163
164 static void CompareItems( EDA_ITEM* aItem, EDA_ITEM* aOriginalItem )
165 {
166 BOOST_CHECK_EQUAL( aItem->GetPosition(), aOriginalItem->GetPosition() );
168 aOriginalItem->GetBoundingBox().GetTop() );
170 aOriginalItem->GetBoundingBox().GetLeft() );
172 aOriginalItem->GetBoundingBox().GetBottom() );
174 aOriginalItem->GetBoundingBox().GetRight() );
175 }
176};
177
178
179BOOST_FIXTURE_TEST_SUITE( EeItem, TEST_EE_ITEM_FIXTURE )
180
181
183{
184 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
185 {
186 KICAD_T type = static_cast<KICAD_T>( i );
187
188 auto item = std::unique_ptr<EDA_ITEM>( Instantiate( type ) );
189
190 if( item == nullptr )
191 continue;
192
193 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
194 {
195 IterateOverPositionsAndReferences<EDA_ITEM>(
196 item.get(),
197 []( EDA_ITEM* aOriginalItem, VECTOR2I aRef )
198 {
199 auto item = std::unique_ptr<EDA_ITEM>( aOriginalItem->Clone() );
200 VECTOR2I originalPos = item->GetPosition();
201
202 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( item.get() );
203
204 // Move to a point, then go back.
205 // This has to be an identity transformation.
206
207 if( schItem != nullptr )
208 {
209 schItem->Move( aRef );
210 BOOST_CHECK_EQUAL( schItem->GetPosition(), originalPos + aRef );
211
212 schItem->Move( -aRef );
213 }
214
215 CompareItems( item.get(), aOriginalItem );
216 } );
217 }
218 }
219}
220
221
223{
224 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
225 {
226 KICAD_T type = static_cast<KICAD_T>( i );
227
228 auto item = std::unique_ptr<EDA_ITEM>( Instantiate( type ) );
229
230 if( item == nullptr )
231 continue;
232
233 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
234 {
235 // Four equivalent 90 degree rotations are an identity.
236 // (warning: only for items having no autoplaced fields).
237
238 if( item->GetClass() == "SCH_SHEET_PIN" )
239 {
240 auto newItem = std::unique_ptr<EDA_ITEM>( item->Clone() );
241
242 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( newItem.get() );
243
244 if( schItem != nullptr )
245 {
247 // Only rotating pins around the center of parent sheet works.
248 schItem->Rotate( m_sheet.GetBodyBoundingBox().GetCenter(), false );
249 schItem->Rotate( m_sheet.GetBodyBoundingBox().GetCenter(), false );
250 schItem->Rotate( m_sheet.GetBodyBoundingBox().GetCenter(), false );
251 schItem->Rotate( m_sheet.GetBodyBoundingBox().GetCenter(), false );
252 }
253
254 CompareItems( newItem.get(), item.get() );
255 }
256 else
257 {
258 IterateOverPositionsAndReferences<EDA_ITEM>(
259 item.get(),
260 []( EDA_ITEM* aOriginalItem, VECTOR2I aRef )
261 {
262 auto item = std::unique_ptr<EDA_ITEM>( aOriginalItem->Clone() );
263
264 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( item.get() );
265
266 if( schItem != nullptr )
267 {
268 schItem->SetFieldsAutoplaced( AUTOPLACE_NONE );
269 schItem->Rotate( aRef, false );
270 schItem->Rotate( aRef, false );
271 schItem->Rotate( aRef, false );
272 schItem->Rotate( aRef, false );
273 }
274
275 CompareItems( item.get(), aOriginalItem );
276 } );
277 }
278 }
279 }
280}
281
282
283BOOST_AUTO_TEST_CASE( MirrorHorizontally )
284{
285 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
286 {
287 KICAD_T type = static_cast<KICAD_T>( i );
288
289 auto item = std::unique_ptr<EDA_ITEM>( Instantiate( type ) );
290
291 if( item == nullptr )
292 continue;
293
294 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
295 {
296 IterateOverPositionsAndReferences<EDA_ITEM>(
297 item.get(),
298 []( EDA_ITEM* aOriginalItem, VECTOR2I aRef )
299 {
300 auto item = std::unique_ptr<EDA_ITEM>( aOriginalItem->Clone() );
301
302 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( item.get() );
303
304 // Two mirrorings are an identity
305 // (warning: only for text items having no autoplaced fields).
306 if( schItem != nullptr )
307 {
308 schItem->SetFieldsAutoplaced( AUTOPLACE_NONE );
309 schItem->MirrorHorizontally( aRef.x );
310 schItem->MirrorHorizontally( aRef.x );
311 }
312
313 CompareItems( item.get(), aOriginalItem );
314 } );
315 }
316 }
317}
318
319
320BOOST_AUTO_TEST_CASE( MirrorVertically )
321{
322 for( int i = 0; i < MAX_STRUCT_TYPE_ID; i++ )
323 {
324 KICAD_T type = static_cast<KICAD_T>( i );
325
326 auto item = std::unique_ptr<EDA_ITEM>( Instantiate( type ) );
327
328 if( item == nullptr )
329 continue;
330
331 BOOST_TEST_CONTEXT( "Class: " << item->GetClass() )
332 {
333 IterateOverPositionsAndReferences<EDA_ITEM>(
334 item.get(),
335 []( EDA_ITEM* aOriginalItem, VECTOR2I aRef )
336 {
337 auto item = std::unique_ptr<EDA_ITEM>( aOriginalItem->Clone() );
338
339 SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( item.get() );
340
341 // Two mirrorings are an identity
342 // (warning only for text items having no autoplaced fields).
343
344 if( schItem != nullptr )
345 {
346 schItem->SetFieldsAutoplaced( AUTOPLACE_NONE );
347 schItem->MirrorVertically( aRef.y );
348 schItem->MirrorVertically( aRef.y );
349 }
350
351 CompareItems( item.get(), aOriginalItem );
352 } );
353 }
354 }
355}
356
constexpr EDA_IU_SCALE schIUScale
Definition: base_units.h:110
constexpr coord_type GetLeft() const
Definition: box2.h:228
constexpr coord_type GetRight() const
Definition: box2.h:217
constexpr coord_type GetTop() const
Definition: box2.h:229
constexpr coord_type GetBottom() const
Definition: box2.h:222
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 const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
Definition: eda_item.cpp:84
virtual void SetParentGroup(EDA_GROUP *aGroup)
Definition: eda_item.h:113
void SetPolyShape(const SHAPE_POLY_SET &aShape)
Definition: eda_shape.h:345
Define a library symbol object.
Definition: lib_symbol.h:85
Object to handle a bitmap image that can be inserted in a schematic.
Definition: sch_bitmap.h:40
Class for a bus to bus entry.
Class for a wire to bus entry.
A set of SCH_ITEMs (i.e., without duplicates).
Definition: sch_group.h:52
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
void SetFieldsAutoplaced(AUTOPLACE_ALGO aAlgo)
Definition: sch_item.h:562
virtual void Rotate(const VECTOR2I &aCenter, bool aRotateCCW)
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_item.h:372
Segment description base class to describe items which have 2 end points (track, wire,...
Definition: sch_line.h:41
Define a sheet pin (label) used in sheets to create hierarchical schematics.
Definition: sch_sheet_pin.h:66
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:47
void SetSize(const VECTOR2I &aSize)
Definition: sch_sheet.h:119
void SetPosition(const VECTOR2I &aPosition) override
Definition: sch_sheet.cpp:988
VECTOR2I GetPosition() const override
Definition: sch_sheet.h:415
Schematic symbol object.
Definition: sch_symbol.h:75
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
Represent a set of closed polygons.
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
int NewOutline()
Creates a new empty polygon in the set and returns its index.
EDA_ITEM * Instantiate(KICAD_T aType)
static void CompareItems(EDA_ITEM *aItem, EDA_ITEM *aOriginalItem)
std::shared_ptr< ERC_ITEM > m_ercItem
@ ERCE_DRIVER_CONFLICT
Conflicting drivers (labels, etc) on a subgraph.
Definition: erc_settings.h:66
@ LAYER_NOTES
Definition: layer_ids.h:456
Class to handle a set of SCH_ITEMs.
@ AUTOPLACE_NONE
Definition: sch_item.h:69
constexpr int mmToIU(double mm) const
Definition: base_units.h:88
BOOST_CHECK_EQUAL(ret, c.m_exp_result)
BOOST_AUTO_TEST_CASE(Move)
BOOST_AUTO_TEST_SUITE_END()
BOOST_TEST_CONTEXT("Test Clearance")
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ SCH_GROUP_T
Definition: typeinfo.h:173
@ SCH_TABLE_T
Definition: typeinfo.h:165
@ SCH_LINE_T
Definition: typeinfo.h:163
@ LIB_SYMBOL_T
Definition: typeinfo.h:148
@ SCH_NO_CONNECT_T
Definition: typeinfo.h:160
@ MAX_STRUCT_TYPE_ID
Definition: typeinfo.h:238
@ SCH_SYMBOL_T
Definition: typeinfo.h:172
@ SCH_TABLECELL_T
Definition: typeinfo.h:166
@ SCH_FIELD_T
Definition: typeinfo.h:150
@ SCH_DIRECTIVE_LABEL_T
Definition: typeinfo.h:171
@ SCH_LABEL_T
Definition: typeinfo.h:167
@ SCH_SHEET_T
Definition: typeinfo.h:175
@ SCH_MARKER_T
Definition: typeinfo.h:158
@ SCH_SHAPE_T
Definition: typeinfo.h:149
@ SCH_RULE_AREA_T
Definition: typeinfo.h:170
@ SCH_HIER_LABEL_T
Definition: typeinfo.h:169
@ SCH_BUS_BUS_ENTRY_T
Definition: typeinfo.h:162
@ SCHEMATIC_T
Definition: typeinfo.h:204
@ SCH_SHEET_PIN_T
Definition: typeinfo.h:174
@ SCH_TEXT_T
Definition: typeinfo.h:151
@ SCH_BUS_WIRE_ENTRY_T
Definition: typeinfo.h:161
@ SCH_BITMAP_T
Definition: typeinfo.h:164
@ SCH_TEXTBOX_T
Definition: typeinfo.h:152
@ SCH_GLOBAL_LABEL_T
Definition: typeinfo.h:168
@ SCH_JUNCTION_T
Definition: typeinfo.h:159
@ SCH_PIN_T
Definition: typeinfo.h:153
constexpr bool IsInstantiableType(const KICAD_T aType)
Definition: typeinfo.h:309
constexpr bool IsEeschemaType(const KICAD_T aType)
Definition: typeinfo.h:368
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695