KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_sheet_pin.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) 2006 Jean-Pierre Charras, [email protected]
5 * Copyright The 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, see <https://www.gnu.org/licenses/>.
19 */
20
21#include <algorithm>
22
23#include <bitmaps.h>
24#include <api/api_enums.h>
25#include <api/api_utils.h>
26#include <api/schematic/schematic_types.pb.h>
27#include <general.h>
29#include <string_utils.h>
30#include <plotters/plotter.h>
31#include <sch_draw_panel.h>
32#include <sch_edit_frame.h>
33#include <sch_sheet.h>
34#include <sch_sheet_pin.h>
35#include <sch_painter.h>
36#include <schematic.h>
37#include <trigo.h>
38#include <properties/property.h>
40
41
42SCH_SHEET_PIN::SCH_SHEET_PIN( SCH_SHEET* parent, const VECTOR2I& pos, const wxString& text ) :
45{
46 SetParent( parent );
47 wxASSERT( parent );
49
50 SetTextPos( pos );
51
52 if( parent->IsVerticalOrientation() )
54 else
56
58 m_isDangling = true;
59 m_number = 2;
60}
61
62
63void SCH_SHEET_PIN::Serialize( kiapi::schematic::types::SheetPin& pin,
64 const EDA_IU_SCALE& aScale ) const
65{
66 using namespace kiapi::schematic::types;
67
68
69 pin.mutable_id()->set_value( m_Uuid.AsStdString() );
70 kiapi::common::PackVector2( *pin.mutable_position(), GetPosition(), schIUScale );
71 pin.set_spin_style(
73 static_cast<SPIN_STYLE::SPIN>( static_cast<int>( GetSpinStyle() ) ) ) );
76 pin.set_locked( SCH_ITEM::IsLocked() ? kiapi::common::types::LockedState::LS_LOCKED
77 : kiapi::common::types::LockedState::LS_UNLOCKED );
78
79 EDA_TEXT::Serialize( *pin.mutable_text(), aScale );
80
81}
82
83void SCH_SHEET_PIN::Serialize( google::protobuf::Any& aContainer ) const
84{
85 kiapi::schematic::types::SheetPin pin;
87 aContainer.PackFrom( pin );
88}
89
90
91bool SCH_SHEET_PIN::Deserialize( const kiapi::schematic::types::SheetPin& pin,
92 const EDA_IU_SCALE& aScale )
93{
94 using namespace kiapi::schematic::types;
95
96
97
98 const_cast<KIID&>( m_Uuid ) = KIID( pin.id().value() );
99
100 if( !EDA_TEXT::Deserialize( pin.text(), aScale ) )
101 return false;
102
107 SetLocked( pin.locked() == kiapi::common::types::LockedState::LS_LOCKED );
108 return true;
109}
110
111bool SCH_SHEET_PIN::Deserialize( const google::protobuf::Any& aContainer )
112{
113 kiapi::schematic::types::SheetPin pin;
114
115 if( !aContainer.UnpackTo( &pin ) )
116 return false;
117
118 return Deserialize( pin, schIUScale );
119}
120
121
123{
124 return new SCH_SHEET_PIN( *this );
125}
126
127
129{
131
132 wxCHECK_RET( aItem->Type() == SCH_SHEET_PIN_T,
133 wxString::Format( "SCH_SHEET_PIN object cannot swap data with %s object.",
134 aItem->GetClass() ) );
135
136 SCH_SHEET_PIN* pin = static_cast<SCH_SHEET_PIN*>( aItem );
137
138 std::swap( m_number, pin->m_number );
139 std::swap( m_edge, pin->m_edge );
140}
141
142
144{
145 return aPin == this;
146}
147
148
150{
151 if( Schematic() )
153
154 return schIUScale.MilsToIU( DEFAULT_LINE_WIDTH_MILS );
155}
156
157
158void SCH_SHEET_PIN::SetNumber( int aNumber )
159{
160 wxASSERT( aNumber >= 2 );
161
162 m_number = aNumber;
163}
164
165
167{
168 SCH_SHEET* sheet = GetParent();
169
170 // use SHEET_UNDEFINED_SIDE to adjust text orientation without changing edge
171
172 switch( aEdge )
173 {
174 case SHEET_SIDE::LEFT:
175 m_edge = aEdge;
176 SetTextX( sheet->m_pos.x );
177 SetSpinStyle( SPIN_STYLE::RIGHT ); // Orientation horiz inverse
178 break;
179
181 m_edge = aEdge;
182 SetTextX( sheet->m_pos.x + sheet->m_size.x );
183 SetSpinStyle( SPIN_STYLE::LEFT ); // Orientation horiz normal
184 break;
185
186 case SHEET_SIDE::TOP:
187 m_edge = aEdge;
188 SetTextY( sheet->m_pos.y );
189 SetSpinStyle( SPIN_STYLE::BOTTOM ); // Orientation vert BOTTOM
190 break;
191
193 m_edge = aEdge;
194 SetTextY( sheet->m_pos.y + sheet->m_size.y );
195 SetSpinStyle( SPIN_STYLE::UP ); // Orientation vert UP
196 break;
197
198 default:
199 break;
200 }
201}
202
203
205{
206 return m_edge;
207}
208
209
210void SCH_SHEET_PIN::ConstrainOnEdge( const VECTOR2I& aPos, bool aAllowEdgeSwitch )
211{
212 SCH_SHEET* sheet = GetParent();
213
214 if( sheet == nullptr )
215 return;
216
217 int leftSide = sheet->m_pos.x;
218 int rightSide = sheet->m_pos.x + sheet->m_size.x;
219 int topSide = sheet->m_pos.y;
220 int botSide = sheet->m_pos.y + sheet->m_size.y;
221
222 SHAPE_LINE_CHAIN sheetEdge;
223
224 sheetEdge.Append( leftSide, topSide );
225 sheetEdge.Append( rightSide, topSide );
226 sheetEdge.Append( rightSide, botSide );
227 sheetEdge.Append( leftSide, botSide );
228 sheetEdge.Append( leftSide, topSide );
229
230 if( aAllowEdgeSwitch )
231 {
232 switch( sheetEdge.NearestSegment( aPos ) )
233 {
234 case 0: SetSide( SHEET_SIDE::TOP ); break;
235 case 1: SetSide( SHEET_SIDE::RIGHT ); break;
236 case 2: SetSide( SHEET_SIDE::BOTTOM ); break;
237 case 3: SetSide( SHEET_SIDE::LEFT ); break;
238 default: wxASSERT( "Invalid segment number" );
239 }
240 }
241 else
242 {
243 SetSide( GetSide() );
244 }
245
246 switch( GetSide() )
247 {
249 case SHEET_SIDE::LEFT:
250 SetTextY( aPos.y );
251
252 if( GetTextPos().y < topSide )
253 SetTextY( topSide );
254
255 if( GetTextPos().y > botSide )
256 SetTextY( botSide );
257
258 break;
259
261 case SHEET_SIDE::TOP:
262 SetTextX( aPos.x );
263
264 if( GetTextPos().x < leftSide )
265 SetTextX( leftSide );
266
267 if( GetTextPos().x > rightSide )
268 SetTextX( rightSide );
269
270 break;
271
273 wxASSERT( "Undefined sheet side" );
274 }
275}
276
277
279{
280 int p = GetTextPos().y - aCenter;
281
282 SetTextY( aCenter - p );
283
284 switch( m_edge )
285 {
288 default: break;
289 }
290}
291
292
294{
295 int p = GetTextPos().x - aCenter;
296
297 SetTextX( aCenter - p );
298
299 switch( m_edge )
300 {
303 default: break;
304 }
305}
306
307
308void SCH_SHEET_PIN::Rotate( const VECTOR2I& aCenter, bool aRotateCCW )
309{
310 VECTOR2I pt = GetTextPos();
311 VECTOR2I delta = pt - aCenter;
312
313 RotatePoint( pt, aCenter, aRotateCCW ? ANGLE_90 : ANGLE_270 );
314
315 SHEET_SIDE oldSide = GetSide();
316 ConstrainOnEdge( pt, true );
317
318 // If the new side is the same as the old side, instead mirror across the center of that side.
319 if( GetSide() == oldSide )
320 {
321 switch( GetSide() )
322 {
323 case SHEET_SIDE::TOP:
325 SetTextPos( VECTOR2I( aCenter.x - delta.x, GetTextPos().y ) );
326 break;
327
328 case SHEET_SIDE::LEFT:
330 SetTextPos( VECTOR2I( GetTextPos().x, aCenter.y - delta.y ) );
331 break;
332
333 default:
334 break;
335 }
336 }
337 // If the new side is opposite to the old side, instead mirror across the center of an adjacent
338 // side.
339 else if( GetSide() == GetOppositeSide( oldSide ) )
340 {
341 switch( GetSide() )
342 {
343 case SHEET_SIDE::TOP:
345 SetTextPos( VECTOR2I( aCenter.x + delta.x, GetTextPos().y ) );
346 break;
347
348 case SHEET_SIDE::LEFT:
350 SetTextPos( VECTOR2I( GetTextPos().x, aCenter.y + delta.y ) );
351 break;
352
353 default:
354 break;
355 }
356 }
357}
358
359
361 std::vector<VECTOR2I>& aPoints, const VECTOR2I& aPos ) const
362{
363 /*
364 * These are the same icon shapes as SCH_HIERLABEL but the graphic icon is slightly
365 * different in 2 cases:
366 * for INPUT type the icon is the OUTPUT shape of SCH_HIERLABEL
367 * for OUTPUT type the icon is the INPUT shape of SCH_HIERLABEL
368 */
370
371 switch( shape )
372 {
375 default: break;
376 }
377
378 SCH_HIERLABEL::CreateGraphicShape( aSettings, aPoints, aPos, shape );
379}
380
381
382void SCH_SHEET_PIN::GetEndPoints( std::vector<DANGLING_END_ITEM>& aItemList )
383{
385 aItemList.push_back( item );
386}
387
388
389wxString SCH_SHEET_PIN::GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const
390{
391 return wxString::Format( _( "Hierarchical Sheet Pin '%s'" ), aFull ? GetShownText( FOR_GUI )
393}
394
395
400
401
402bool SCH_SHEET_PIN::HitTest( const VECTOR2I& aPoint, int aAccuracy ) const
403{
404 BOX2I rect = GetBoundingBox();
405
406 rect.Inflate( aAccuracy );
407
408 return rect.Contains( aPoint );
409}
410
411
412bool SCH_SHEET_PIN::operator==( const SCH_ITEM& aOther ) const
413{
414 if( aOther.Type() != Type() )
415 return false;
416
417 const SCH_SHEET_PIN* other = static_cast<const SCH_SHEET_PIN*>( &aOther );
418
419 return m_edge == other->m_edge && m_number == other->m_number
420 && SCH_HIERLABEL::operator==( aOther );
421}
422
423
424double SCH_SHEET_PIN::Similarity( const SCH_ITEM& aOther ) const
425{
426 if( aOther.Type() != Type() )
427 return 0.0;
428
429 const SCH_SHEET_PIN* other = static_cast<const SCH_SHEET_PIN*>( &aOther );
430
431 double similarity = 1.0;
432
433 if( m_edge != other->m_edge )
434 similarity *= 0.9;
435
436 if( m_number != other->m_number )
437 similarity *= 0.9;
438
439 similarity *= SCH_HIERLABEL::Similarity( aOther );
440
441 return similarity;
442}
443
444
446 const SCH_SHEET_PATH* aInstance ) const
447{
448 // Do not compare to ourself.
449 if( aItem == this )
450 return false;
451
452 const SCH_SHEET_PIN* pin = dynamic_cast<const SCH_SHEET_PIN*>( aItem );
453
454 // Don't compare against a different SCH_ITEM.
455 wxCHECK( pin, false );
456
457 if( GetPosition() != pin->GetPosition() )
458 return true;
459
460 return GetText() != pin->GetText();
461}
462
463
465{
466 if( SCH_SHEET* parentSheet = GetParent() )
467 {
468 if( parentSheet->IsLocked() )
469 return true;
470 }
471
472 return SCH_ITEM::IsLocked();
473}
474
475
476#if defined(DEBUG)
477
478void SCH_SHEET_PIN::Show( int nestLevel, std::ostream& os ) const
479{
480 // XML output:
481 NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() << ">"
482 << " pin_name=\"" << TO_UTF8( GetText() )
483 << '"' << "/>\n" << std::flush;
484}
485
486#endif
487
488
KICOMMON_API types::KiCadObjectType ToProtoEnum(KICAD_T aValue)
KICOMMON_API KICAD_T FromProtoEnum(types::KiCadObjectType aValue)
Definition api_enums.cpp:55
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
BITMAPS
A list of all bitmap identifiers.
@ add_hierar_pin
BOX2< VECTOR2I > BOX2I
Definition box2.h:927
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
Definition box2.h:553
constexpr bool Contains(const Vec &aPoint) const
Definition box2.h:165
Helper class used to store the state of schematic items that can be connected to other schematic item...
Definition sch_item.h:96
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
const KIID m_Uuid
Definition eda_item.h:597
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
virtual void SetParent(EDA_ITEM *aParent)
Definition eda_item.cpp:153
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
Definition eda_text.cpp:165
virtual VECTOR2I GetTextPos() const
Definition eda_text.h:313
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition eda_text.h:118
virtual void SetTextPos(const VECTOR2I &aPoint)
Definition eda_text.cpp:539
virtual void SetTextX(int aX)
Definition eda_text.cpp:546
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
Definition eda_text.cpp:195
virtual void SetTextY(int aY)
Definition eda_text.cpp:552
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
Definition kiid.h:46
Provide class metadata.Helper macro to map type hashes to names.
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
void Mask(TYPE_ID aDerived, TYPE_ID aBase, const wxString &aName)
Sets a base class property as masked in a derived class.
static PROPERTY_MANAGER & Instance()
void AddTypeCast(TYPE_CAST_BASE *aCast)
Register a type converter.
SCHEMATIC_SETTINGS & Settings() const
void SetSpinStyle(SPIN_STYLE aSpinStyle) override
void CreateGraphicShape(const RENDER_SETTINGS *aSettings, std::vector< VECTOR2I > &aPoints, const VECTOR2I &aPos) const override
Calculate the graphic shape (a polygon) associated to the text.
SCH_HIERLABEL(const VECTOR2I &aPos=VECTOR2I(0, 0), const wxString &aText=wxEmptyString, KICAD_T aType=SCH_HIER_LABEL_T)
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:165
void SetLocked(bool aLocked) override
Definition sch_item.h:256
virtual void swapData(SCH_ITEM *aItem)
Swap the internal data structures aItem with the schematic item.
Definition sch_item.cpp:659
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition sch_item.cpp:281
virtual double Similarity(const SCH_ITEM &aItem) const
Return a measure of how likely the other object is to represent the same object.
Definition sch_item.h:374
bool IsLocked() const override
Definition sch_item.cpp:158
virtual bool operator==(const SCH_ITEM &aOther) const
Definition sch_item.cpp:730
wxString GetClass() const override
Return the class name.
Definition sch_item.h:175
SCH_LAYER_ID m_layer
Definition sch_item.h:790
SPIN_STYLE GetSpinStyle() const
void SetShape(LABEL_FLAG_SHAPE aShape)
Definition sch_label.h:179
LABEL_FLAG_SHAPE GetShape() const
Definition sch_label.h:178
const BOX2I GetBoundingBox() const override
Return the bounding box of the label including its fields.
wxString GetShownText(const SCH_SHEET_PATH *aPath, RESOLUTION_CONTEXT aContext, int aDepth=0) const override
LABEL_FLAG_SHAPE m_shape
Definition sch_label.h:372
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Define a sheet pin (label) used in sheets to create hierarchical schematics.
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
void SetNumber(int aNumber)
Set the sheet label number.
bool IsLocked() const override
SCH_SHEET_PIN(SCH_SHEET *parent, const VECTOR2I &pos=VECTOR2I(0, 0), const wxString &text=wxEmptyString)
SHEET_SIDE m_edge
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
void SetPosition(const VECTOR2I &aPosition) override
int m_number
Label number use for saving sheet label to file.
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const override
Check if aItem has connectivity changes against this object.
void swapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
int GetPenWidth() const override
static SHEET_SIDE GetOppositeSide(SHEET_SIDE aSide)
void CreateGraphicShape(const RENDER_SETTINGS *aSettings, std::vector< VECTOR2I > &aPoints, const VECTOR2I &aPos) const override
Calculate the graphic shape (a polygon) associated to the text.
SHEET_SIDE GetSide() const
wxString GetClass() const override
Return the class name.
void GetEndPoints(std::vector< DANGLING_END_ITEM > &aItemList) override
Add the schematic item end points to aItemList if the item has end points.
bool operator==(const SCH_SHEET_PIN *aPin) const
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
SCH_SHEET * GetParent() const
Get the parent sheet object of this sheet pin.
void ConstrainOnEdge(const VECTOR2I &aPos, bool aAllowEdgeSwitch)
Adjust label position to edge based on proximity to vertical or horizontal edge of the parent sheet.
void SetSide(SHEET_SIDE aEdge)
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition sch_sheet.h:48
VECTOR2I m_size
Definition sch_sheet.h:700
VECTOR2I m_pos
Definition sch_sheet.h:699
bool IsVerticalOrientation() const
VECTOR2I GetPosition() const override
Definition sch_text.h:143
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
int NearestSegment(const VECTOR2I &aP) const
Find the segment nearest the given point.
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
@ FOR_GUI
Definition common.h:89
#define DEFAULT_LINE_WIDTH_MILS
The default wire width in mils. (can be changed in preference menu)
#define _(s)
static constexpr EDA_ANGLE ANGLE_90
Definition eda_angle.h:424
static constexpr EDA_ANGLE ANGLE_270
Definition eda_angle.h:427
@ LAYER_SHEETLABEL
Definition layer_ids.h:497
KICOMMON_API wxString EllipsizeMenuText(const wxString &aString)
Ellipsize text (at the end) to be no more than 36 characters.
KICOMMON_API VECTOR2I UnpackVector2(const types::Vector2 &aInput, const EDA_IU_SCALE &aScale)
KICOMMON_API void PackVector2(types::Vector2 &aOutput, const VECTOR2I &aInput, const EDA_IU_SCALE &aScale)
#define _HKI(x)
Definition page_info.cpp:40
#define TYPE_HASH(x)
Definition property.h:74
#define REGISTER_TYPE(x)
@ SHEET_LABEL_END
Definition sch_item.h:86
LABEL_FLAG_SHAPE
Definition sch_label.h:97
@ L_OUTPUT
Definition sch_label.h:99
@ L_INPUT
Definition sch_label.h:98
static struct SCH_SHEET_PIN_DESC _SCH_SHEET_PIN_DESC
SHEET_SIDE
Define the edge of the sheet that the sheet pin is positioned.
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
KIBIS_PIN * pin
int delta
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:225
@ SCH_SHEET_PIN_T
Definition typeinfo.h:170
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683