KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_screen.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) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2008 Wayne Stambaugh <[email protected]>
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#include <stack>
28#include <vector>
29#include <wx/filefn.h>
30#include <wx/log.h>
31
32#include <eda_item.h>
33#include <id.h>
34#include <string_utils.h>
35#include <kiway.h>
36#include <plotters/plotter.h>
37#include <sch_plotter.h>
38#include <project.h>
39#include <project_sch.h>
40#include <reporter.h>
41#include <trace_helpers.h>
42#include <sch_edit_frame.h>
43#include <sch_item.h>
44
46#include <connection_graph.h>
47#include <junction_helpers.h>
48#include <sch_commit.h>
49#include <sch_pin.h>
50#include <sch_symbol.h>
51#include <sch_group.h>
52#include <sch_junction.h>
53#include <sch_line.h>
54#include <sch_marker.h>
55#include <sch_sheet.h>
56#include <sch_sheet_pin.h>
57#include <sch_text.h>
58#include <schematic.h>
60#include <tool/common_tools.h>
61#include <sim/sim_model.h> // For V6 to V7 simulation model migration.
62#include <locale_io.h>
63
64#include <algorithm>
65#include <math/vector3.h>
66#include <memory>
67
68// TODO(JE) Debugging only
69#include <core/profile.h>
71
72#include "sch_bus_entry.h"
73#include "sch_shape.h"
74
80static const wxChar DanglingProfileMask[] = wxT( "DANGLING_PROFILE" );
81
82
84 BASE_SCREEN( aParent, SCH_SCREEN_T ),
87 m_isReadOnly( false ),
88 m_fileExists( false )
89{
91 m_refCount = 0;
92 m_zoomInitialized = false;
93 m_LastZoomLevel = 1.0;
94
95 // Suitable for schematic only. For symbol_editor and viewlib, must be set to true
96 m_Center = false;
97
98 InitDataPoints( m_paper.GetSizeIU( schIUScale.IU_PER_MILS ) );
99}
100
101
107
108
110{
111 wxCHECK_MSG( GetParent() && GetParent()->Type() == SCHEMATIC_T, nullptr,
112 wxT( "SCH_SCREEN must have a SCHEMATIC parent!" ) );
113
114 return static_cast<SCHEMATIC*>( GetParent() );
115}
116
117
119{
120 for( const std::pair<const wxString, LIB_SYMBOL*>& libSymbol : m_libSymbols )
121 delete libSymbol.second;
122
123 m_libSymbols.clear();
124}
125
126
127void SCH_SCREEN::SetFileName( const wxString& aFileName )
128{
129 // Don't assert here. We still call this after failing to load a file in order to show the
130 // user what we *tried* to load.
131 // wxASSERT( aFileName.IsEmpty() || wxIsAbsolutePath( aFileName ) );
132
133 m_fileName = aFileName;
134}
135
136
138{
139 m_refCount++;
140}
141
142
144{
145 wxCHECK_RET( m_refCount != 0, wxT( "Screen reference count already zero. Bad programmer!" ) );
146 m_refCount--;
147}
148
149
150bool SCH_SCREEN::HasItems( KICAD_T aItemType ) const
151{
152 EE_RTREE::EE_TYPE sheets = m_rtree.OfType( aItemType );
153
154 return sheets.begin() != sheets.end();
155}
156
157
158bool SCH_SCREEN::ClassOf( const EDA_ITEM* aItem )
159{
160 return aItem && SCH_SCREEN_T == aItem->Type();
161}
162
163
164void SCH_SCREEN::Append( SCH_ITEM* aItem, bool aUpdateLibSymbol )
165{
166 if( aItem->Type() != SCH_SHEET_PIN_T && aItem->Type() != SCH_FIELD_T )
167 {
168 // Ensure the item can reach the SCHEMATIC through this screen
169 aItem->SetParent( this );
170
171 if( aItem->Type() == SCH_SYMBOL_T && aUpdateLibSymbol )
172 {
173 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( aItem );
174
175 if( symbol->GetLibSymbolRef() )
176 {
177 symbol->GetLibSymbolRef()->GetDrawItems().sort();
178
179 auto it = m_libSymbols.find( symbol->GetSchSymbolLibraryName() );
180
181 if( it == m_libSymbols.end() || !it->second )
182 {
184 new LIB_SYMBOL( *symbol->GetLibSymbolRef() );
185 }
186 else
187 {
188 // The original library symbol may have changed since the last time
189 // it was added to the schematic. If it has changed, then a new name
190 // must be created for the library symbol list to prevent all of the
191 // other schematic symbols referencing that library symbol from changing.
192 LIB_SYMBOL* foundSymbol = it->second;
193
194 foundSymbol->GetDrawItems().sort();
195
196 if( *foundSymbol != *symbol->GetLibSymbolRef() )
197 {
198 wxString newName;
199 std::vector<wxString> matches;
200
201 getLibSymbolNameMatches( *symbol, matches );
202 foundSymbol = nullptr;
203
204 for( const wxString& libSymbolName : matches )
205 {
206 it = m_libSymbols.find( libSymbolName );
207
208 if( it == m_libSymbols.end() )
209 continue;
210
211 foundSymbol = it->second;
212
213 wxCHECK2( foundSymbol, continue );
214
215 wxString tmp = symbol->GetLibSymbolRef()->GetName();
216
217 // Temporarily update the new symbol library symbol name so it
218 // doesn't fail on the name comparison below.
219 symbol->GetLibSymbolRef()->SetName( foundSymbol->GetName() );
220
221 if( *foundSymbol == *symbol->GetLibSymbolRef() )
222 {
223 newName = libSymbolName;
224 symbol->GetLibSymbolRef()->SetName( tmp );
225 break;
226 }
227
228 symbol->GetLibSymbolRef()->SetName( tmp );
229 foundSymbol = nullptr;
230 }
231
232 if( !foundSymbol )
233 {
234 int cnt = 1;
235
236 newName.Printf( wxT( "%s_%d" ),
238 cnt );
239
240 while( m_libSymbols.find( newName ) != m_libSymbols.end() )
241 {
242 cnt += 1;
243 newName.Printf( wxT( "%s_%d" ),
245 cnt );
246 }
247 }
248
249 // Update the schematic symbol library link as this symbol only exists
250 // in the schematic.
251 symbol->SetSchSymbolLibraryName( newName );
252
253 if( !foundSymbol )
254 {
255 // Update the schematic symbol library link as this symbol does not
256 // exist in any symbol library.
257 LIB_ID newLibId( wxEmptyString, newName );
258 LIB_SYMBOL* newLibSymbol = new LIB_SYMBOL( *symbol->GetLibSymbolRef() );
259
260 newLibSymbol->SetLibId( newLibId );
261 newLibSymbol->SetName( newName );
262 symbol->SetLibSymbol( newLibSymbol->Flatten().release() );
263 m_libSymbols[newName] = newLibSymbol;
264 }
265 }
266 }
267 }
268 }
269
270 m_rtree.insert( aItem );
272 }
273}
274
275
277{
278 wxCHECK_RET( aScreen, "Invalid screen object." );
279
280 // No need to descend the hierarchy. Once the top level screen is copied, all of its
281 // children are copied as well.
282 for( SCH_ITEM* aItem : aScreen->m_rtree )
283 Append( aItem );
284
285 aScreen->Clear( false );
286}
287
288
289void SCH_SCREEN::Clear( bool aFree )
290{
291 if( aFree )
292 {
293 FreeDrawList();
295 }
296 else
297 {
298 m_rtree.clear();
299 }
300
301 // Clear the project settings
303
304 m_titles.Clear();
305}
306
307
309{
310 // We don't know which order we will encounter dependent items (e.g. pins or fields), so
311 // we store the items to be deleted until we've fully cleared the tree before deleting
312 std::vector<SCH_ITEM*> delete_list;
313
314 std::copy_if( m_rtree.begin(), m_rtree.end(), std::back_inserter( delete_list ),
315 []( SCH_ITEM* aItem )
316 {
317 return ( aItem->Type() != SCH_SHEET_PIN_T && aItem->Type() != SCH_FIELD_T );
318 } );
319
320 m_rtree.clear();
321
322 for( SCH_ITEM* item : delete_list )
323 delete item;
324}
325
326
327void SCH_SCREEN::Update( SCH_ITEM* aItem, bool aUpdateLibSymbol )
328{
329 if( Remove( aItem, aUpdateLibSymbol ) )
330 Append( aItem, aUpdateLibSymbol );
331}
332
333
334bool SCH_SCREEN::Remove( SCH_ITEM* aItem, bool aUpdateLibSymbol )
335{
336 bool retv = m_rtree.remove( aItem );
337
338 // Check if the library symbol for the removed schematic symbol is still required.
339 if( retv && aItem->Type() == SCH_SYMBOL_T && aUpdateLibSymbol )
340 {
341 SCH_SYMBOL* removedSymbol = static_cast<SCH_SYMBOL*>( aItem );
342
343 bool removeUnusedLibSymbol = true;
344
345 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
346 {
347 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
348
349 if( removedSymbol->GetSchSymbolLibraryName() == symbol->GetSchSymbolLibraryName() )
350 {
351 removeUnusedLibSymbol = false;
352 break;
353 }
354 }
355
356 if( removeUnusedLibSymbol )
357 {
358 auto it = m_libSymbols.find( removedSymbol->GetSchSymbolLibraryName() );
359
360 if( it != m_libSymbols.end() )
361 {
362 delete it->second;
363 m_libSymbols.erase( it );
364 }
365 }
366 }
367
368 return retv;
369}
370
371
373{
374 wxCHECK_RET( aItem, wxT( "Cannot delete invalid item from screen." ) );
375
376 // Markers are not saved in the file, no need to flag as modified.
377 // TODO: Maybe we should have a listing somewhere of items that aren't saved?
378 if( aItem->Type() != SCH_MARKER_T )
380
381 Remove( aItem );
382
383 if( aItem->Type() == SCH_SHEET_PIN_T )
384 {
385 // This structure is attached to a sheet, get the parent sheet object.
386 SCH_SHEET_PIN* sheetPin = (SCH_SHEET_PIN*) aItem;
387 SCH_SHEET* sheet = sheetPin->GetParent();
388 wxCHECK_RET( sheet, wxT( "Sheet pin parent not properly set, bad programmer!" ) );
389 sheet->RemovePin( sheetPin );
390 return;
391 }
392
393 delete aItem;
394}
395
396
397bool SCH_SCREEN::CheckIfOnDrawList( const SCH_ITEM* aItem ) const
398{
399 return m_rtree.contains( aItem, true );
400}
401
402
403SCH_ITEM* SCH_SCREEN::GetItem( const VECTOR2I& aPosition, int aAccuracy, KICAD_T aType ) const
404{
405 BOX2I bbox;
406 bbox.SetOrigin( aPosition );
407 bbox.Inflate( aAccuracy );
408
409 for( SCH_ITEM* item : Items().Overlapping( aType, bbox ) )
410 {
411 if( item->HitTest( aPosition, aAccuracy ) )
412 return item;
413 }
414
415 return nullptr;
416}
417
418
419std::set<SCH_ITEM*> SCH_SCREEN::MarkConnections( SCH_ITEM* aItem, bool aSecondPass )
420{
421#define PROCESSED CANDIDATE // Don't use SKIP_STRUCT; IsConnected() returns false if it's set.
422
423 std::set<SCH_ITEM*> retval;
424 std::stack<SCH_ITEM*> toSearch;
425
426 auto getItemEndpoints = []( SCH_ITEM* aCandidate ) -> std::vector<VECTOR2I>
427 {
428 if( !aCandidate )
429 return {};
430
431 if( aCandidate->Type() == SCH_LINE_T )
432 {
433 SCH_LINE* line = static_cast<SCH_LINE*>( aCandidate );
434 return { line->GetStartPoint(), line->GetEndPoint() };
435 }
436
437 if( aCandidate->Type() == SCH_SHAPE_T )
438 {
439 SCH_SHAPE* shape = static_cast<SCH_SHAPE*>( aCandidate );
440
441 if( shape->GetShape() == SHAPE_T::ARC || shape->GetShape() == SHAPE_T::BEZIER )
442 return { shape->GetStart(), shape->GetEnd() };
443 else if( shape->GetShape() == SHAPE_T::RECTANGLE )
444 return shape->GetRectCorners();
445 else if( shape->GetShape() == SHAPE_T::SEGMENT )
446 return { shape->GetStart(), shape->GetEnd() };
447 else if( shape->GetShape() == SHAPE_T::POLY )
448 return shape->GetPolyPoints();
449 }
450
451 return {};
452 };
453
454 if( !aItem || getItemEndpoints( aItem ).empty() )
455 return retval;
456
457 toSearch.push( aItem );
458
459 while( !toSearch.empty() )
460 {
461 SCH_ITEM* item = toSearch.top();
462 toSearch.pop();
463
464 if( item->HasFlag( PROCESSED ) )
465 continue;
466
467 item->SetFlags( PROCESSED );
468
469 const BOX2I bbox = item->GetBoundingBox();
470
471 for( KICAD_T type : { SCH_LINE_T, SCH_SHAPE_T } )
472 {
473 for( SCH_ITEM* candidate : Items().Overlapping( type, bbox ) )
474 {
475 if( candidate->HasFlag( PROCESSED ) )
476 continue;
477
478 std::vector<VECTOR2I> endpoints = getItemEndpoints( candidate );
479
480 if( endpoints.empty() )
481 continue;
482
483 // Skip connecting items on different layers (e.g. buses)
484 if( item->GetLayer() != candidate->GetLayer() )
485 continue;
486
487 bool sharesEndpoint = false;
488
489 for( const VECTOR2I& pt : endpoints )
490 {
491 if( item->IsEndPoint( pt ) )
492 {
493 sharesEndpoint = true;
494
495 if( aSecondPass && item->IsConnected( pt ) )
496 {
497 SCH_ITEM* junction = GetItem( pt, 0, SCH_JUNCTION_T );
498
499 if( junction )
500 retval.insert( junction );
501 }
502 }
503 }
504
505 if( !sharesEndpoint )
506 continue;
507
508 toSearch.push( candidate );
509 retval.insert( candidate );
510 }
511 }
512 }
513
514 for( SCH_ITEM* item : Items() )
515 item->ClearTempFlags();
516
517 return retval;
518}
519
520
521bool SCH_SCREEN::IsJunction( const VECTOR2I& aPosition ) const
522{
524 JUNCTION_HELPERS::AnalyzePoint( Items(), aPosition, false );
525 return info.isJunction;
526}
527
528
529bool SCH_SCREEN::IsExplicitJunction( const VECTOR2I& aPosition ) const
530{
532 JUNCTION_HELPERS::AnalyzePoint( Items(), aPosition, false );
533
534 return info.isJunction && ( !info.hasBusEntry || info.hasBusEntryToMultipleWires );
535}
536
537
538bool SCH_SCREEN::IsExplicitJunctionNeeded( const VECTOR2I& aPosition ) const
539{
541 JUNCTION_HELPERS::AnalyzePoint( Items(), aPosition, false );
542
543 return info.isJunction && ( !info.hasBusEntry || info.hasBusEntryToMultipleWires )
544 && !info.hasExplicitJunctionDot;
545}
546
547
549{
551 JUNCTION_HELPERS::AnalyzePoint( Items(), aPosition, true );
552
553 return info.isJunction && (!info.hasBusEntry || info.hasBusEntryToMultipleWires );
554}
555
556
558 SPIN_STYLE aDefaultOrientation,
559 const SCH_SHEET_PATH* aSheet ) const
560{
561 auto ret = aDefaultOrientation;
562
563 for( SCH_ITEM* item : Items().Overlapping( aPosition ) )
564 {
565 if( item->GetEditFlags() & STRUCT_DELETED )
566 continue;
567
568 switch( item->Type() )
569 {
571 {
572 auto busEntry = static_cast<const SCH_BUS_WIRE_ENTRY*>( item );
573 if( busEntry->m_connected_bus_item )
574 {
575 // bus connected, take the bus direction into consideration only if it is
576 // vertical or horizontal
577 auto bus = static_cast<const SCH_LINE*>( busEntry->m_connected_bus_item );
578 if( bus->Angle().AsDegrees() == 90.0 )
579 {
580 // bus is vertical -> label shall be horizontal and
581 // shall be placed to the side where the bus entry is
582 if( aPosition.x < bus->GetPosition().x )
583 ret = SPIN_STYLE::LEFT;
584 else if( aPosition.x > bus->GetPosition().x )
585 ret = SPIN_STYLE::RIGHT;
586 }
587 else if( bus->Angle().AsDegrees() == 0.0 )
588 {
589 // bus is horizontal -> label shall be vertical and
590 // shall be placed to the side where the bus entry is
591 if( aPosition.y < bus->GetPosition().y )
592 ret = SPIN_STYLE::UP;
593 else if( aPosition.y > bus->GetPosition().y )
594 ret = SPIN_STYLE::BOTTOM;
595 }
596 }
597 }
598 break;
599
600 case SCH_LINE_T:
601 {
602 auto line = static_cast<const SCH_LINE*>( item );
603 // line angles goes between -90 and 90 degrees, but normalize
604 auto angle = line->Angle().Normalize90().AsDegrees();
605
606 if( -45 < angle && angle <= 45 )
607 {
608 if( line->GetStartPoint().x <= line->GetEndPoint().x )
609 ret = line->GetEndPoint() == aPosition ? SPIN_STYLE::RIGHT : SPIN_STYLE::LEFT;
610 else
611 ret = line->GetEndPoint() == aPosition ? SPIN_STYLE::LEFT : SPIN_STYLE::RIGHT;
612 }
613 else
614 {
615 if( line->GetStartPoint().y <= line->GetEndPoint().y )
616 ret = line->GetEndPoint() == aPosition ? SPIN_STYLE::BOTTOM : SPIN_STYLE::UP;
617 else
618 ret = line->GetEndPoint() == aPosition ? SPIN_STYLE::UP : SPIN_STYLE::BOTTOM;
619 }
620 }
621 break;
622
623 case SCH_SYMBOL_T:
624 {
625 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
626
627 for( SCH_PIN* pin : symbol->GetPins( aSheet ) )
628 {
629 if( pin->GetPosition() == aPosition )
630 {
631 ret = GetPinSpinStyle( *pin, *symbol );
632 break;
633 }
634 }
635 }
636 break;
637
638 default: break;
639 }
640 }
641
642 return ret;
643}
644
645
646bool SCH_SCREEN::IsTerminalPoint( const VECTOR2I& aPosition, int aLayer ) const
647{
648 wxCHECK_MSG( aLayer == LAYER_NOTES || aLayer == LAYER_BUS || aLayer == LAYER_WIRE, false,
649 wxT( "Invalid layer type passed to SCH_SCREEN::IsTerminalPoint()." ) );
650
651 SCH_SHEET_PIN* sheetPin;
652 SCH_LABEL_BASE* label;
653
654 switch( aLayer )
655 {
656 case LAYER_BUS:
657 if( GetBus( aPosition ) )
658 return true;
659
660 sheetPin = GetSheetPin( aPosition );
661
662 if( sheetPin && sheetPin->IsConnected( aPosition ) )
663 return true;
664
665 label = GetLabel( aPosition );
666
667 if( label && !label->IsNew() && label->IsConnected( aPosition ) )
668 return true;
669
670 break;
671
672 case LAYER_NOTES:
673 if( GetLine( aPosition ) )
674 return true;
675
676 break;
677
678 case LAYER_WIRE:
679 if( GetItem( aPosition, 1, SCH_BUS_WIRE_ENTRY_T ) )
680 return true;
681
682 if( GetItem( aPosition, 1, SCH_JUNCTION_T ) )
683 return true;
684
685 if( GetPin( aPosition, nullptr, true ) )
686 return true;
687
688 if( GetWire( aPosition ) )
689 return true;
690
691 label = GetLabel( aPosition, 1 );
692
693 if( label && !label->IsNew() && label->IsConnected( aPosition ) )
694 return true;
695
696 sheetPin = GetSheetPin( aPosition );
697
698 if( sheetPin && sheetPin->IsConnected( aPosition ) )
699 return true;
700
701 break;
702
703 default:
704 break;
705 }
706
707 return false;
708}
709
710
712{
713 wxCHECK_RET( Schematic(), "Cannot call SCH_SCREEN::UpdateSymbolLinks with no SCHEMATIC" );
714
715 wxString msg;
716 std::vector<SCH_SYMBOL*> symbols;
718
719 // This will be a nullptr if an s-expression schematic is loaded.
720 LEGACY_SYMBOL_LIBS* legacyLibs = PROJECT_SCH::LegacySchLibs( &Schematic()->Project() );
721
722 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
723 symbols.push_back( static_cast<SCH_SYMBOL*>( item ) );
724
725 // Remove them from the R tree. Their bounding box size may change.
726 for( SCH_SYMBOL* symbol : symbols )
727 Remove( symbol );
728
729 // Clear all existing symbol links.
731
732 for( SCH_SYMBOL* symbol : symbols )
733 {
734 LIB_SYMBOL* tmp = nullptr;
735
736 // If the symbol is already in the internal library, map the symbol to it.
737 auto it = m_libSymbols.find( symbol->GetSchSymbolLibraryName() );
738
739 if( ( it != m_libSymbols.end() ) )
740 {
741 if( aReporter )
742 {
743 msg.Printf( _( "Setting schematic symbol '%s %s' library identifier to '%s'." ),
744 symbol->GetField( FIELD_T::REFERENCE )->GetText(),
745 symbol->GetField( FIELD_T::VALUE )->GetText(),
746 UnescapeString( symbol->GetLibId().Format() ) );
747 aReporter->ReportTail( msg, RPT_SEVERITY_INFO );
748 }
749
750 // Internal library symbols are already flattened so just make a copy.
751 symbol->SetLibSymbol( new LIB_SYMBOL( *it->second ) );
752 continue;
753 }
754
755 if( !symbol->GetLibId().IsValid() )
756 {
757 if( aReporter )
758 {
759 msg.Printf( _( "Schematic symbol reference '%s' library identifier is not valid. "
760 "Unable to link library symbol." ),
761 UnescapeString( symbol->GetLibId().Format() ) );
762 aReporter->ReportTail( msg, RPT_SEVERITY_WARNING );
763 }
764
765 continue;
766 }
767
768 // LIB_TABLE_BASE::LoadSymbol() throws an IO_ERROR if the library nickname
769 // is not found in the table so check if the library still exists in the table
770 // before attempting to load the symbol.
771 if( !libs->HasLibrary( symbol->GetLibId().GetLibNickname() ) && !legacyLibs )
772 {
773 if( aReporter )
774 {
775 msg.Printf( _( "Symbol library '%s' not found and no fallback cache library "
776 "available. Unable to link library symbol." ),
777 symbol->GetLibId().GetLibNickname().wx_str() );
778 aReporter->ReportTail( msg, RPT_SEVERITY_WARNING );
779 }
780
781 continue;
782 }
783
784 if( libs->HasLibrary( symbol->GetLibId().GetLibNickname() ) )
785 {
786 try
787 {
788 tmp = libs->LoadSymbol( symbol->GetLibId() );
789 }
790 catch( const IO_ERROR& ioe )
791 {
792 if( aReporter )
793 {
794 msg.Printf( _( "I/O error %s resolving library symbol %s" ), ioe.What(),
795 UnescapeString( symbol->GetLibId().Format() ) );
796 aReporter->ReportTail( msg, RPT_SEVERITY_ERROR );
797 }
798 }
799 }
800
801 if( !tmp && legacyLibs && legacyLibs->GetLibraryCount() )
802 {
803 LEGACY_SYMBOL_LIB& legacyCacheLib = legacyLibs->back();
804
805 // It better be the cache library.
806 wxCHECK2( legacyCacheLib.IsCache(), continue );
807
808 wxString id = symbol->GetLibId().Format();
809
810 id.Replace( ':', '_' );
811
812 if( aReporter )
813 {
814 msg.Printf( _( "Falling back to cache to set symbol '%s:%s' link '%s'." ),
815 symbol->GetField( FIELD_T::REFERENCE )->GetText(),
816 symbol->GetField( FIELD_T::VALUE )->GetText(),
817 UnescapeString( id ) );
818 aReporter->ReportTail( msg, RPT_SEVERITY_WARNING );
819 }
820
821 tmp = legacyCacheLib.FindSymbol( id );
822 }
823
824 if( tmp )
825 {
826 // We want a full symbol not just the top level child symbol.
827 std::unique_ptr<LIB_SYMBOL> libSymbol = tmp->Flatten();
828 libSymbol->SetParent();
829
830 m_libSymbols.insert( { symbol->GetSchSymbolLibraryName(),
831 new LIB_SYMBOL( *libSymbol ) } );
832
833 if( aReporter )
834 {
835 msg.Printf( _( "Setting schematic symbol '%s %s' library identifier to '%s'." ),
836 symbol->GetField( FIELD_T::REFERENCE )->GetText(),
837 symbol->GetField( FIELD_T::VALUE )->GetText(),
838 UnescapeString( symbol->GetLibId().Format() ) );
839 aReporter->ReportTail( msg, RPT_SEVERITY_INFO );
840 }
841
842 symbol->SetLibSymbol( libSymbol.release() );
843 }
844 else
845 {
846 if( aReporter )
847 {
848 msg.Printf( _( "No library symbol found for schematic symbol '%s %s'." ),
849 symbol->GetField( FIELD_T::REFERENCE )->GetText(),
850 symbol->GetField( FIELD_T::VALUE )->GetText() );
851 aReporter->ReportTail( msg, RPT_SEVERITY_ERROR );
852 }
853 }
854 }
855
856 // Changing the symbol may adjust the bbox of the symbol. This re-inserts the
857 // item with the new bbox
858 for( SCH_SYMBOL* symbol : symbols )
859 Append( symbol );
860}
861
862
864{
865 std::vector<SCH_SYMBOL*> symbols;
866
867 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
868 symbols.push_back( static_cast<SCH_SYMBOL*>( item ) );
869
870 for( SCH_SYMBOL* symbol : symbols )
871 {
872 // Changing the symbol may adjust the bbox of the symbol; remove and reinsert it afterwards.
873 m_rtree.remove( symbol );
874
875 auto it = m_libSymbols.find( symbol->GetSchSymbolLibraryName() );
876
877 if( it != m_libSymbols.end() )
878 symbol->SetLibSymbol( new LIB_SYMBOL( *it->second ) );
879 else
880 symbol->SetLibSymbol( nullptr );
881
882 m_rtree.insert( symbol );
883 }
884}
885
886
888{
889 for( SCH_ITEM* item : Items() )
890 item->SetConnectivityDirty( true );
891}
892
893
894void SCH_SCREEN::Plot( PLOTTER* aPlotter, const SCH_PLOT_OPTS& aPlotOpts ) const
895{
896 std::vector<SCH_ITEM*> items;
897 items.reserve( Items().size() );
898
899 for( SCH_ITEM* item : Items() )
900 items.push_back( item );
901
902 Plot( aPlotter, aPlotOpts, items );
903}
904
905
906void SCH_SCREEN::Plot( PLOTTER* aPlotter, const SCH_PLOT_OPTS& aPlotOpts,
907 const std::vector<SCH_ITEM*>& aItems ) const
908{
909 // Ensure links are up to date, even if a library was reloaded for some reason:
910 std::vector<SCH_ITEM*> junctions;
911 std::vector<SCH_ITEM*> bitmaps;
912 std::vector<SCH_SYMBOL*> symbols;
913 std::vector<SCH_ITEM*> other;
914
915 for( SCH_ITEM* item : aItems )
916 {
917 if( item->IsMoving() )
918 continue;
919
920 if( item->Type() == SCH_JUNCTION_T )
921 junctions.push_back( item );
922 else if( item->Type() == SCH_BITMAP_T )
923 bitmaps.push_back( item );
924 else
925 other.push_back( item );
926
927 // Where the symbols overlap each other, we need to plot the text items a second
928 // time to get them on top of the overlapping element. This collection is in addition
929 // to the symbols already collected in `other`
930 if( item->Type() == SCH_SYMBOL_T )
931 {
932 for( SCH_ITEM* sym : m_rtree.Overlapping( SCH_SYMBOL_T, item->GetBoundingBox() ) )
933 {
934 if( sym != item )
935 {
936 symbols.push_back( static_cast<SCH_SYMBOL*>( item ) );
937 break;
938 }
939 }
940 }
941 }
942
944 std::sort( other.begin(), other.end(),
945 []( const SCH_ITEM* a, const SCH_ITEM* b )
946 {
947 if( a->Type() == b->Type() )
948 return a->GetLayer() > b->GetLayer();
949
950 return a->Type() > b->Type();
951 } );
952
953 auto* renderSettings = static_cast<SCH_RENDER_SETTINGS*>( aPlotter->RenderSettings() );
954 constexpr bool background = true;
955
956 // Bitmaps are drawn first to ensure they are in the background
957 // This is particularly important for the wxPostscriptDC (used in *nix printers) as
958 // the bitmap PS command clears the screen
959 for( SCH_ITEM* item : bitmaps )
960 {
961 aPlotter->SetCurrentLineWidth( item->GetEffectivePenWidth( renderSettings ) );
962 item->Plot( aPlotter, background, aPlotOpts, 0, 0, { 0, 0 }, false );
963 }
964
965 // Plot the background items
966 for( SCH_ITEM* item : other )
967 {
968 aPlotter->SetCurrentLineWidth( item->GetEffectivePenWidth( renderSettings ) );
969 item->Plot( aPlotter, background, aPlotOpts, 0, 0, { 0, 0 }, false );
970 }
971
972 // Plot the foreground items
973 for( SCH_ITEM* item : other )
974 {
975 double lineWidth = item->GetEffectivePenWidth( renderSettings );
976 aPlotter->SetCurrentLineWidth( lineWidth );
977
978 if( item->Type() != SCH_LINE_T )
979 item->Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
980 else
981 {
982 SCH_LINE* aLine = static_cast<SCH_LINE*>( item );
983
984 if( !aLine->IsWire() || !aPlotOpts.m_plotHopOver )
985 {
986 item->Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
987 }
988 else
989 {
990 double arcRadius = lineWidth * aLine->Schematic()->Settings().m_HopOverScale;
991 std::vector<VECTOR3I> curr_wire_shape = aLine->BuildWireWithHopShape( this, arcRadius );
992
993 for( size_t ii = 1; ii < curr_wire_shape.size(); ii++ )
994 {
995 VECTOR2I start( curr_wire_shape[ii-1].x, curr_wire_shape[ii-1].y );
996
997 if( curr_wire_shape[ii-1].z == 0 ) // This is the start point of a segment
998 // there are always 2 points in list for a segment
999 {
1000 VECTOR2I end( curr_wire_shape[ii].x, curr_wire_shape[ii].y );
1001
1002 SCH_LINE curr_line( *aLine );
1003 curr_line.SetStartPoint( start );
1004 curr_line.SetEndPoint( end );
1005 curr_line.Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
1006 }
1007 else // This is the start point of a arc. there are always 3 points in list for an arc
1008 {
1009 VECTOR2I arc_middle( curr_wire_shape[ii].x, curr_wire_shape[ii].y );
1010 ii++;
1011 VECTOR2I arc_end( curr_wire_shape[ii].x, curr_wire_shape[ii].y );
1012 ii++;
1013
1014 SCH_SHAPE arc( SHAPE_T::ARC, aLine->GetLayer(), lineWidth );
1015
1016 arc.SetArcGeometry( start, arc_middle, arc_end );
1017 // Hop are a small arc, so use a solid line style gives best results
1019 arc.Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
1020 }
1021 }
1022 }
1023 }
1024 }
1025
1026 // After plotting the symbols as a group above (in `other`), we need to overplot the pins
1027 // and symbols to ensure that they are always visible
1028 TRANSFORM savedTransform = renderSettings->m_Transform;
1029
1030 for( const SCH_SYMBOL* sym :symbols )
1031 {
1032 renderSettings->m_Transform = sym->GetTransform();
1033 aPlotter->SetCurrentLineWidth( sym->GetEffectivePenWidth( renderSettings ) );
1034
1035 for( SCH_FIELD field : sym->GetFields() )
1036 {
1037 field.ClearRenderCache();
1038 field.Plot( aPlotter, false, aPlotOpts, sym->GetUnit(), sym->GetBodyStyle(), { 0, 0 },
1039 static_cast<const SYMBOL*>( sym )->GetDNP() );
1040
1041 if( sym->IsSymbolLikePowerLocalLabel() && field.GetId() == FIELD_T::VALUE
1042 && ( field.IsVisible() || field.IsForceVisible() ) )
1043 {
1044 sym->PlotLocalPowerIconShape( aPlotter );
1045 }
1046 }
1047
1048 sym->PlotPins( aPlotter );
1049
1050 if( static_cast<const SYMBOL*>( sym )->GetDNP() )
1051 sym->PlotDNP( aPlotter );
1052 }
1053
1054 renderSettings->m_Transform = savedTransform;
1055
1056 for( SCH_ITEM* item : junctions )
1057 {
1058 aPlotter->SetCurrentLineWidth( item->GetEffectivePenWidth( renderSettings ) );
1059 item->Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
1060 }
1061}
1062
1063
1065{
1066 for( SCH_ITEM* item : Items() )
1067 item->ClearTempFlags();
1068}
1069
1070
1071SCH_PIN* SCH_SCREEN::GetPin( const VECTOR2I& aPosition, SCH_SYMBOL** aSymbol,
1072 bool aEndPointOnly ) const
1073{
1074 SCH_SYMBOL* candidate = nullptr;
1075 SCH_PIN* pin = nullptr;
1076
1077 for( SCH_ITEM* item : Items().Overlapping( SCH_SYMBOL_T, aPosition ) )
1078 {
1079 candidate = static_cast<SCH_SYMBOL*>( item );
1080
1081 if( aEndPointOnly )
1082 {
1083 pin = nullptr;
1084
1085 if( !candidate->GetLibSymbolRef() )
1086 continue;
1087
1088 for( SCH_PIN* test_pin : candidate->GetLibPins() )
1089 {
1090 if( candidate->GetPinPhysicalPosition( test_pin ) == aPosition )
1091 {
1092 pin = test_pin;
1093 break;
1094 }
1095 }
1096
1097 if( pin )
1098 break;
1099 }
1100 else
1101 {
1102 pin = static_cast<SCH_PIN*>( candidate->GetDrawItem( aPosition, SCH_PIN_T ) );
1103
1104 if( pin )
1105 break;
1106 }
1107 }
1108
1109 if( pin && aSymbol )
1110 *aSymbol = candidate;
1111
1112 return pin;
1113}
1114
1115
1117{
1118 SCH_SHEET_PIN* sheetPin = nullptr;
1119
1120 for( SCH_ITEM* item : Items().Overlapping( SCH_SHEET_T, aPosition ) )
1121 {
1122 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1123
1124 sheetPin = sheet->GetPin( aPosition );
1125
1126 if( sheetPin )
1127 break;
1128 }
1129
1130 return sheetPin;
1131}
1132
1133
1134size_t SCH_SCREEN::CountConnectedItems( const VECTOR2I& aPos, bool aTestJunctions ) const
1135{
1136 size_t count = 0;
1137
1138 for( const SCH_ITEM* item : Items().Overlapping( aPos ) )
1139 {
1140 if( ( item->Type() != SCH_JUNCTION_T || aTestJunctions ) && item->IsConnected( aPos ) )
1141 count++;
1142 }
1143
1144 return count;
1145}
1146
1147
1148void SCH_SCREEN::ClearAnnotation( SCH_SHEET_PATH* aSheetPath, bool aResetPrefix )
1149{
1150
1151 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1152 {
1153 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1154
1155 symbol->ClearAnnotation( aSheetPath, aResetPrefix );
1156 }
1157}
1158
1159
1161{
1162 if( GetClientSheetPaths().size() <= 1 ) // No need for alternate reference
1163 return;
1164
1165 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1166 {
1167 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1168
1169 // Add (when not existing) all sheet path entries
1170 for( const SCH_SHEET_PATH& sheet : GetClientSheetPaths() )
1171 symbol->AddSheetPathReferenceEntryIfMissing( sheet.Path() );
1172 }
1173}
1174
1175
1176void SCH_SCREEN::GetHierarchicalItems( std::vector<SCH_ITEM*>* aItems ) const
1177{
1178 static const std::vector<KICAD_T> hierarchicalTypes = { SCH_SYMBOL_T,
1181
1182 for( SCH_ITEM* item : Items() )
1183 {
1184 if( item->IsType( hierarchicalTypes ) )
1185 aItems->push_back( item );
1186 }
1187}
1188
1189
1190void SCH_SCREEN::GetSheets( std::vector<SCH_ITEM*>* aItems ) const
1191{
1192 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1193 aItems->push_back( item );
1194
1195 std::sort( aItems->begin(), aItems->end(),
1196 []( EDA_ITEM* a, EDA_ITEM* b ) -> bool
1197 {
1198 if( a->GetPosition().x == b->GetPosition().x )
1199 {
1200 // Ensure deterministic sort
1201 if( a->GetPosition().y == b->GetPosition().y )
1202 return a->m_Uuid < b->m_Uuid;
1203
1204 return a->GetPosition().y < b->GetPosition().y;
1205 }
1206 else
1207 {
1208 return a->GetPosition().x < b->GetPosition().x;
1209 }
1210 } );
1211}
1212
1213
1215 std::function<void( SCH_ITEM* )>* aChangedHandler ) const
1216{
1217 PROF_TIMER timer( __FUNCTION__ );
1218
1219 std::vector<DANGLING_END_ITEM> endPointsByPos;
1220 std::vector<DANGLING_END_ITEM> endPointsByType;
1221
1222 auto get_ends =
1223 [&]( SCH_ITEM* item )
1224 {
1225 if( item->IsConnectable() )
1226 item->GetEndPoints( endPointsByType );
1227 };
1228
1229 auto update_state =
1230 [&]( SCH_ITEM* item )
1231 {
1232 if( item->UpdateDanglingState( endPointsByType, endPointsByPos, aPath ) )
1233 {
1234 if( aChangedHandler )
1235 ( *aChangedHandler )( item );
1236 }
1237 };
1238
1239 for( SCH_ITEM* item : Items() )
1240 {
1241 get_ends( item );
1242 item->RunOnChildren( get_ends, RECURSE_MODE::NO_RECURSE );
1243 }
1244
1245 PROF_TIMER sortTimer( "SCH_SCREEN::TestDanglingEnds pre-sort" );
1246 endPointsByPos = endPointsByType;
1247 DANGLING_END_ITEM_HELPER::sort_dangling_end_items( endPointsByType, endPointsByPos );
1248 sortTimer.Stop();
1249
1250 if( wxLog::IsAllowedTraceMask( DanglingProfileMask ) )
1251 sortTimer.Show();
1252
1253 for( SCH_ITEM* item : Items() )
1254 {
1255 update_state( item );
1256 item->RunOnChildren( update_state, RECURSE_MODE::NO_RECURSE );
1257 }
1258
1259 if( wxLog::IsAllowedTraceMask( DanglingProfileMask ) )
1260 timer.Show();
1261}
1262
1263
1264SCH_LINE* SCH_SCREEN::GetLine( const VECTOR2I& aPosition, int aAccuracy, int aLayer,
1265 SCH_LINE_TEST_T aSearchType ) const
1266{
1267 // an accuracy of 0 had problems with rounding errors; use at least 1
1268 aAccuracy = std::max( aAccuracy, 1 );
1269
1270 for( SCH_ITEM* item : Items().Overlapping( aPosition, aAccuracy ) )
1271 {
1272 if( item->Type() != SCH_LINE_T )
1273 continue;
1274
1275 if( item->GetLayer() != aLayer )
1276 continue;
1277
1278 if( !item->HitTest( aPosition, aAccuracy ) )
1279 continue;
1280
1281 switch( aSearchType )
1282 {
1283 case ENTIRE_LENGTH_T:
1284 return (SCH_LINE*) item;
1285
1287 if( !( (SCH_LINE*) item )->IsEndPoint( aPosition ) )
1288 return (SCH_LINE*) item;
1289 break;
1290
1291 case END_POINTS_ONLY_T:
1292 if( ( (SCH_LINE*) item )->IsEndPoint( aPosition ) )
1293 return (SCH_LINE*) item;
1294 }
1295 }
1296
1297 return nullptr;
1298}
1299
1300
1301std::vector<SCH_LINE*> SCH_SCREEN::GetBusesAndWires( const VECTOR2I& aPosition,
1302 bool aIgnoreEndpoints ) const
1303{
1304 std::vector<SCH_LINE*> retVal;
1305
1306 for( SCH_ITEM* item : Items().Overlapping( SCH_LINE_T, aPosition ) )
1307 {
1308 if( item->IsType( { SCH_ITEM_LOCATE_WIRE_T, SCH_ITEM_LOCATE_BUS_T } ) )
1309 {
1310 SCH_LINE* wire = static_cast<SCH_LINE*>( item );
1311
1312 if( aIgnoreEndpoints && wire->IsEndPoint( aPosition ) )
1313 continue;
1314
1315 if( IsPointOnSegment( wire->GetStartPoint(), wire->GetEndPoint(), aPosition ) )
1316 retVal.push_back( wire );
1317 }
1318 }
1319
1320 return retVal;
1321}
1322
1323
1324std::vector<VECTOR2I> SCH_SCREEN::GetConnections() const
1325{
1326 std::vector<VECTOR2I> retval;
1327
1328 for( SCH_ITEM* item : Items() )
1329 {
1330 // Avoid items that are changing
1331 if( !( item->GetEditFlags() & ( IS_MOVING | IS_DELETED ) ) )
1332 {
1333 std::vector<VECTOR2I> pts = item->GetConnectionPoints();
1334 retval.insert( retval.end(), pts.begin(), pts.end() );
1335 }
1336 }
1337
1338 // We always have some overlapping connection points. Drop duplicates here
1339 std::sort( retval.begin(), retval.end(),
1340 []( const VECTOR2I& a, const VECTOR2I& b ) -> bool
1341 {
1342 return a.x < b.x || ( a.x == b.x && a.y < b.y );
1343 } );
1344
1345 retval.erase( std::unique( retval.begin(), retval.end() ), retval.end() );
1346
1347 return retval;
1348}
1349
1350
1351std::vector<VECTOR2I> SCH_SCREEN::GetNeededJunctions( const std::deque<EDA_ITEM*>& aItems ) const
1352{
1353 std::vector<VECTOR2I> pts;
1354 std::vector<VECTOR2I> connections = GetConnections();
1355
1356 for( const EDA_ITEM* edaItem : aItems )
1357 {
1358 const SCH_ITEM* item = dynamic_cast<const SCH_ITEM*>( edaItem );
1359
1360 if( !item || !item->IsConnectable() )
1361 continue;
1362
1363 std::vector<VECTOR2I> new_pts = item->GetConnectionPoints();
1364 pts.insert( pts.end(), new_pts.begin(), new_pts.end() );
1365
1366 // If the item is a line, we also add any connection points from the rest of the schematic
1367 // that terminate on the line after it is moved.
1368 if( item->Type() == SCH_LINE_T )
1369 {
1370 SCH_LINE* line = (SCH_LINE*) item;
1371
1372 for( const VECTOR2I& pt : connections )
1373 {
1374 if( IsPointOnSegment( line->GetStartPoint(), line->GetEndPoint(), pt ) )
1375 pts.push_back( pt );
1376 }
1377 }
1378 }
1379
1380 // We always have some overlapping connection points. Drop duplicates here
1381 std::sort( pts.begin(), pts.end(),
1382 []( const VECTOR2I& a, const VECTOR2I& b ) -> bool
1383 {
1384 return a.x < b.x || ( a.x == b.x && a.y < b.y );
1385 } );
1386
1387 pts.erase( unique( pts.begin(), pts.end() ), pts.end() );
1388
1389 // We only want the needed junction points, remove all the others
1390 pts.erase( std::remove_if( pts.begin(), pts.end(),
1391 [this]( const VECTOR2I& a ) -> bool
1392 {
1393 return !IsExplicitJunctionNeeded( a );
1394 } ),
1395 pts.end() );
1396
1397 return pts;
1398}
1399
1400
1401SCH_LABEL_BASE* SCH_SCREEN::GetLabel( const VECTOR2I& aPosition, int aAccuracy ) const
1402{
1403 for( SCH_ITEM* item : Items().Overlapping( aPosition, aAccuracy ) )
1404 {
1405 switch( item->Type() )
1406 {
1407 case SCH_LABEL_T:
1408 case SCH_GLOBAL_LABEL_T:
1409 case SCH_HIER_LABEL_T:
1411 if( item->HitTest( aPosition, aAccuracy ) )
1412 return static_cast<SCH_LABEL_BASE*>( item );
1413
1414 break;
1415
1416 default:
1417 ;
1418 }
1419 }
1420
1421 return nullptr;
1422}
1423
1424
1426{
1427 wxCHECK( aLibSymbol, /* void */ );
1428
1429 wxString libSymbolName = aLibSymbol->GetLibId().Format().wx_str();
1430
1431 auto it = m_libSymbols.find( libSymbolName );
1432
1433 if( it != m_libSymbols.end() )
1434 {
1435 delete it->second;
1436 m_libSymbols.erase( it );
1437 }
1438
1439 m_libSymbols[libSymbolName] = aLibSymbol;
1440}
1441
1442
1444{
1445 SCHEMATIC* schematic = Schematic();
1446
1447 const std::vector<wxString>* embeddedFonts = schematic->GetEmbeddedFiles()->UpdateFontFiles();
1448
1449 for( auto& [name, libSym] : m_libSymbols )
1450 {
1451 for( auto& [filename, embeddedFile] : libSym->EmbeddedFileMap() )
1452 {
1453 EMBEDDED_FILES::EMBEDDED_FILE* file = schematic->GetEmbeddedFile( filename );
1454
1455 if( file )
1456 {
1457 embeddedFile->compressedEncodedData = file->compressedEncodedData;
1458 embeddedFile->decompressedData = file->decompressedData;
1459 embeddedFile->data_hash = file->data_hash;
1460 embeddedFile->is_valid = file->is_valid;
1461 }
1462 }
1463
1464 libSym->RunOnChildren(
1465 [&]( SCH_ITEM* aChild )
1466 {
1467 if( EDA_TEXT* textItem = dynamic_cast<EDA_TEXT*>( aChild ) )
1468 textItem->ResolveFont( embeddedFonts );
1469 },
1471 }
1472
1473 std::vector<SCH_ITEM*> items_to_update;
1474
1475 for( SCH_ITEM* item : Items() )
1476 {
1477 bool update = false;
1478
1479 if( EDA_TEXT* textItem = dynamic_cast<EDA_TEXT*>( item ) )
1480 update |= textItem->ResolveFont( embeddedFonts );
1481
1482 item->RunOnChildren(
1483 [&]( SCH_ITEM* aChild )
1484 {
1485 if( EDA_TEXT* textItem = dynamic_cast<EDA_TEXT*>( aChild ) )
1486 update |= textItem->ResolveFont( embeddedFonts );
1487 },
1489
1490 if( update )
1491 items_to_update.push_back( item );
1492 }
1493
1494 for( SCH_ITEM* item : items_to_update )
1495 Update( item );
1496}
1497
1498
1499void SCH_SCREEN::AddBusAlias( std::shared_ptr<BUS_ALIAS> aAlias )
1500{
1501 if( SCHEMATIC* schematic = Schematic() )
1502 schematic->AddBusAlias( aAlias );
1503}
1504
1505
1507{
1508 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1509 {
1510 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1511
1512 // Add missing value and footprint instance data for legacy schematics.
1513 for( const SCH_SYMBOL_INSTANCE& instance : symbol->GetInstances() )
1514 {
1515 symbol->AddHierarchicalReference( instance.m_Path, instance.m_Reference,
1516 instance.m_Unit );
1517 }
1518 }
1519}
1520
1521
1523{
1524 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1525 {
1526 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1527
1528 // Fix pre-8.0 legacy power symbols with invisible pins
1529 // that have mismatched pin names and value fields
1530 if( symbol->GetLibSymbolRef()
1531 && symbol->GetLibSymbolRef()->IsGlobalPower()
1532 && symbol->GetAllLibPins().size() > 0
1533 && symbol->GetAllLibPins()[0]->IsGlobalPower()
1534 && !symbol->GetAllLibPins()[0]->IsVisible() )
1535 {
1536 symbol->SetValueFieldText( symbol->GetAllLibPins()[0]->GetName() );
1537 }
1538 }
1539}
1540
1541
1543 std::vector<wxString>& aMatches )
1544{
1545 wxString searchName = aSymbol.GetLibId().GetUniStringLibId();
1546
1547 if( m_libSymbols.find( searchName ) != m_libSymbols.end() )
1548 aMatches.emplace_back( searchName );
1549
1550 searchName = aSymbol.GetLibId().GetUniStringLibItemName() + wxS( "_" );
1551
1552 long tmp;
1553 wxString suffix;
1554
1555 for( auto& pair : m_libSymbols )
1556 {
1557 if( pair.first.StartsWith( searchName, &suffix ) && suffix.ToLong( &tmp ) )
1558 aMatches.emplace_back( pair.first );
1559 }
1560
1561 return aMatches.size();
1562}
1563
1564
1565void SCH_SCREEN::PruneOrphanedSymbolInstances( const wxString& aProjectName,
1566 const SCH_SHEET_LIST& aValidSheetPaths )
1567{
1568 // The project name cannot be empty. Projects older than 7.0 did not save project names
1569 // when saving instance data. Running this algorithm with an empty project name would
1570 // clobber all instance data for projects other than the current one when a schematic
1571 // file is shared across multiple projects. Because running the schematic editor in
1572 // stand alone mode can result in an empty project name, do not assert here.
1573 if( aProjectName.IsEmpty() )
1574 return;
1575
1576 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1577 {
1578 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1579
1580 wxCHECK2( symbol, continue );
1581
1582 std::set<KIID_PATH> pathsToPrune;
1583 const std::vector<SCH_SYMBOL_INSTANCE> instances = symbol->GetInstances();
1584
1585 for( const SCH_SYMBOL_INSTANCE& instance : instances )
1586 {
1587 // Ignore instance paths from other projects.
1588 if( aProjectName != instance.m_ProjectName )
1589 continue;
1590
1591 std::optional<SCH_SHEET_PATH> pathFound =
1592 aValidSheetPaths.GetSheetPathByKIIDPath( instance.m_Path );
1593
1594 // Check for paths that do not exist in the current project and paths that do
1595 // not contain the current symbol.
1596 if( !pathFound )
1597 pathsToPrune.emplace( instance.m_Path );
1598 else if( pathFound.value().LastScreen() != this )
1599 pathsToPrune.emplace( pathFound.value().Path() );
1600 }
1601
1602 for( const KIID_PATH& sheetPath : pathsToPrune )
1603 {
1604 wxLogTrace( traceSchSheetPaths, wxS( "Pruning project '%s' symbol instance %s." ),
1605 aProjectName, sheetPath.AsString() );
1606 symbol->RemoveInstance( sheetPath );
1607 }
1608 }
1609}
1610
1611
1612void SCH_SCREEN::PruneOrphanedSheetInstances( const wxString& aProjectName,
1613 const SCH_SHEET_LIST& aValidSheetPaths )
1614{
1615 // The project name cannot be empty. Projects older than 7.0 did not save project names
1616 // when saving instance data. Running this algorithm with an empty project name would
1617 // clobber all instance data for projects other than the current one when a schematic
1618 // file is shared across multiple projects. Because running the schematic editor in
1619 // stand alone mode can result in an empty project name, do not assert here.
1620 if( aProjectName.IsEmpty() )
1621 return;
1622
1623 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1624 {
1625 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1626
1627 wxCHECK2( sheet, continue );
1628
1629 std::set<KIID_PATH> pathsToPrune;
1630 const std::vector<SCH_SHEET_INSTANCE> instances = sheet->GetInstances();
1631
1632 for( const SCH_SHEET_INSTANCE& instance : instances )
1633 {
1634 // Ignore instance paths from other projects.
1635 if( aProjectName != instance.m_ProjectName )
1636 continue;
1637
1638 std::optional<SCH_SHEET_PATH> pathFound =
1639 aValidSheetPaths.GetSheetPathByKIIDPath( instance.m_Path );
1640
1641 // Check for paths that do not exist in the current project and paths that do
1642 // not contain the current symbol.
1643 if( !pathFound )
1644 pathsToPrune.emplace( instance.m_Path );
1645 else if( pathFound.value().LastScreen() != this )
1646 pathsToPrune.emplace( pathFound.value().Path() );
1647 }
1648
1649 for( const KIID_PATH& sheetPath : pathsToPrune )
1650 {
1651 wxLogTrace( traceSchSheetPaths, wxS( "Pruning project '%s' sheet instance %s." ),
1652 aProjectName, sheetPath.AsString() );
1653 sheet->RemoveInstance( sheetPath );
1654 }
1655 }
1656}
1657
1658
1660{
1661 wxString trimmedFieldName;
1662
1663 for( const SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1664 {
1665 const SCH_SYMBOL* symbol = static_cast<const SCH_SYMBOL*>( item );
1666
1667 wxCHECK2( symbol, continue );
1668
1669 for( const SCH_FIELD& field : symbol->GetFields() )
1670 {
1671 trimmedFieldName = field.GetName();
1672 trimmedFieldName.Trim();
1673 trimmedFieldName.Trim( false );
1674
1675 if( field.GetName() != trimmedFieldName )
1676 return true;
1677 }
1678 }
1679
1680 return false;
1681}
1682
1683
1684std::set<wxString> SCH_SCREEN::GetSheetNames() const
1685{
1686 std::set<wxString> retv;
1687
1688 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1689 {
1690 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1691
1692 wxCHECK2( sheet, continue );
1693
1694 retv.emplace( sheet->GetName() );
1695 }
1696
1697 return retv;
1698}
1699
1700
1702{
1703 wxCHECK( Schematic(), false );
1704
1705 SCH_SHEET_LIST hierarchy = Schematic()->Hierarchy();
1706
1707 for( const SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1708 {
1709 const SCH_SYMBOL* symbol = static_cast<const SCH_SYMBOL*>( item );
1710
1711 const std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1712
1713 for( const SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1714 {
1715 if( !hierarchy.HasPath( instance.m_Path ) )
1716 return true;
1717 }
1718 }
1719
1720 return false;
1721}
1722
1723
1724wxString SCH_SCREEN::GroupsSanityCheck( bool repair )
1725{
1726 if( repair )
1727 {
1728 while( GroupsSanityCheckInternal( repair ) != wxEmptyString )
1729 {
1730 };
1731
1732 return wxEmptyString;
1733 }
1734 return GroupsSanityCheckInternal( repair );
1735}
1736
1737
1739{
1740 // Cycle detection
1741 //
1742 // Each group has at most one parent group.
1743 // So we start at group 0 and traverse the parent chain, marking groups seen along the way.
1744 // If we ever see a group that we've already marked, that's a cycle.
1745 // If we reach the end of the chain, we know all groups in that chain are not part of any cycle.
1746 //
1747 // Algorithm below is linear in the # of groups because each group is visited only once.
1748 // There may be extra time taken due to the container access calls and iterators.
1749 //
1750 // Groups we know are cycle free
1751 std::unordered_set<EDA_GROUP*> knownCycleFreeGroups;
1752 // Groups in the current chain we're exploring.
1753 std::unordered_set<EDA_GROUP*> currentChainGroups;
1754 // Groups we haven't checked yet.
1755 std::unordered_set<EDA_GROUP*> toCheckGroups;
1756
1757 // Initialize set of groups and generators to check that could participate in a cycle.
1758 for( SCH_ITEM* item : Items().OfType( SCH_GROUP_T ) )
1759 toCheckGroups.insert( static_cast<SCH_GROUP*>( item ) );
1760
1761 while( !toCheckGroups.empty() )
1762 {
1763 currentChainGroups.clear();
1764 EDA_GROUP* group = *toCheckGroups.begin();
1765
1766 while( true )
1767 {
1768 if( currentChainGroups.find( group ) != currentChainGroups.end() )
1769 {
1770 if( repair )
1771 Remove( static_cast<SCH_ITEM*>( group->AsEdaItem() ) );
1772
1773 return "Cycle detected in group membership";
1774 }
1775 else if( knownCycleFreeGroups.find( group ) != knownCycleFreeGroups.end() )
1776 {
1777 // Parent is a group we know does not lead to a cycle
1778 break;
1779 }
1780
1781 currentChainGroups.insert( group );
1782 // We haven't visited currIdx yet, so it must be in toCheckGroups
1783 toCheckGroups.erase( group );
1784
1785 group = group->AsEdaItem()->GetParentGroup();
1786
1787 if( !group )
1788 {
1789 // end of chain and no cycles found in this chain
1790 break;
1791 }
1792 }
1793
1794 // No cycles found in chain, so add it to set of groups we know don't participate
1795 // in a cycle.
1796 knownCycleFreeGroups.insert( currentChainGroups.begin(), currentChainGroups.end() );
1797 }
1798
1799 // Success
1800 return "";
1801}
1802
1803
1805{
1806 wxCHECK( Schematic() && !m_fileName.IsEmpty(), false );
1807
1808 wxFileName thisScreenFn( m_fileName );
1809 wxFileName thisProjectFn( Schematic()->Project().GetProjectFullName() );
1810
1811 wxCHECK( thisProjectFn.IsAbsolute(), false );
1812
1813 if( thisScreenFn.GetDirCount() < thisProjectFn.GetDirCount() )
1814 return false;
1815
1816 while( thisProjectFn.GetDirCount() != thisScreenFn.GetDirCount() )
1817 thisScreenFn.RemoveLastDir();
1818
1819 return thisScreenFn.GetPath() == thisProjectFn.GetPath();
1820}
1821
1822
1823std::set<wxString> SCH_SCREEN::GetVariantNames() const
1824{
1825 std::set<wxString> variantNames;
1826
1827 for( const SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1828 {
1829 const SCH_SYMBOL* symbol = static_cast<const SCH_SYMBOL*>( item );
1830
1831 wxCHECK2( symbol, continue );
1832
1833 const std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1834
1835 for( const SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1836 {
1837 for( const auto& [name, variant] : instance.m_Variants )
1838 variantNames.emplace( name );
1839 }
1840 }
1841
1842 for( const SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1843 {
1844 const SCH_SHEET* sheet = static_cast<const SCH_SHEET*>( item );
1845
1846 wxCHECK2( sheet, continue );
1847
1848 const std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1849
1850 for( const SCH_SHEET_INSTANCE& instance : sheetInstances )
1851 {
1852 for( const auto& [name, variant] : instance.m_Variants )
1853 variantNames.emplace( name );
1854 }
1855 }
1856
1857 return variantNames;
1858}
1859
1860
1861void SCH_SCREEN::DeleteVariant( const wxString& aVariantName, SCH_COMMIT* aCommit )
1862{
1863 wxCHECK( !aVariantName.IsEmpty(), /* void */ );
1864
1865 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1866 {
1867 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1868
1869 wxCHECK2( symbol, continue );
1870
1871 std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1872
1873 for( SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1874 {
1875 if( instance.m_Variants.contains( aVariantName ) )
1876 {
1877 if( aCommit )
1878 aCommit->Modify( item, this );
1879
1880 symbol->DeleteVariant( instance.m_Path, aVariantName );
1881 }
1882 }
1883 }
1884
1885 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1886 {
1887 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1888
1889 wxCHECK2( sheet, continue );
1890
1891 std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1892
1893 for( SCH_SHEET_INSTANCE& instance : sheetInstances )
1894 {
1895 if( instance.m_Variants.contains( aVariantName ) )
1896 {
1897 if( aCommit )
1898 aCommit->Modify( item, this );
1899
1900 sheet->DeleteVariant( instance.m_Path, aVariantName );
1901 }
1902 }
1903 }
1904}
1905
1906
1907void SCH_SCREEN::RenameVariant( const wxString& aOldName, const wxString& aNewName,
1908 SCH_COMMIT* aCommit )
1909{
1910 wxCHECK( !aOldName.IsEmpty() && !aNewName.IsEmpty(), /* void */ );
1911
1912 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1913 {
1914 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1915
1916 wxCHECK2( symbol, continue );
1917
1918 std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1919
1920 for( SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1921 {
1922 if( instance.m_Variants.contains( aOldName ) )
1923 {
1924 if( aCommit )
1925 aCommit->Modify( item, this );
1926
1927 symbol->RenameVariant( instance.m_Path, aOldName, aNewName );
1928 }
1929 }
1930 }
1931
1932 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1933 {
1934 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1935
1936 wxCHECK2( sheet, continue );
1937
1938 std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1939
1940 for( SCH_SHEET_INSTANCE& instance : sheetInstances )
1941 {
1942 if( instance.m_Variants.contains( aOldName ) )
1943 {
1944 if( aCommit )
1945 aCommit->Modify( item, this );
1946
1947 sheet->RenameVariant( instance.m_Path, aOldName, aNewName );
1948 }
1949 }
1950 }
1951}
1952
1953
1954void SCH_SCREEN::CopyVariant( const wxString& aSourceVariant, const wxString& aNewVariant,
1955 SCH_COMMIT* aCommit )
1956{
1957 wxCHECK( !aSourceVariant.IsEmpty() && !aNewVariant.IsEmpty(), /* void */ );
1958
1959 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1960 {
1961 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1962
1963 wxCHECK2( symbol, continue );
1964
1965 std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1966
1967 for( SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1968 {
1969 if( instance.m_Variants.contains( aSourceVariant ) )
1970 {
1971 if( aCommit )
1972 aCommit->Modify( item, this );
1973
1974 symbol->CopyVariant( instance.m_Path, aSourceVariant, aNewVariant );
1975 }
1976 }
1977 }
1978
1979 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1980 {
1981 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1982
1983 wxCHECK2( sheet, continue );
1984
1985 std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1986
1987 for( SCH_SHEET_INSTANCE& instance : sheetInstances )
1988 {
1989 if( instance.m_Variants.contains( aSourceVariant ) )
1990 {
1991 if( aCommit )
1992 aCommit->Modify( item, this );
1993
1994 sheet->CopyVariant( instance.m_Path, aSourceVariant, aNewVariant );
1995 }
1996 }
1997 }
1998}
1999
2000
2001#if defined(DEBUG)
2002void SCH_SCREEN::Show( int nestLevel, std::ostream& os ) const
2003{
2004 // for now, make it look like XML, expand on this later.
2005 NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() << ">\n";
2006
2007 for( const SCH_ITEM* item : Items() )
2008 item->Show( nestLevel + 1, os );
2009
2010 NestedSpace( nestLevel, os ) << "</" << GetClass().Lower().mb_str() << ">\n";
2011}
2012#endif
2013
2014
2016{
2017 m_index = 0;
2018 buildScreenList( aSheet );
2019}
2020
2021
2025
2026
2028{
2029 m_index = 0;
2030
2031 if( m_screens.size() > 0 )
2032 return m_screens[0];
2033
2034 return nullptr;
2035}
2036
2037
2039{
2040 if( m_index < m_screens.size() )
2041 m_index++;
2042
2043 return GetScreen( m_index );
2044}
2045
2046
2047SCH_SCREEN* SCH_SCREENS::GetScreen( unsigned int aIndex ) const
2048{
2049 if( aIndex < m_screens.size() )
2050 return m_screens[ aIndex ];
2051
2052 return nullptr;
2053}
2054
2055
2056SCH_SHEET* SCH_SCREENS::GetSheet( unsigned int aIndex ) const
2057{
2058 if( aIndex < m_sheets.size() )
2059 return m_sheets[ aIndex ];
2060
2061 return nullptr;
2062}
2063
2064
2066{
2067 if( aScreen == nullptr )
2068 return;
2069
2070 for( const SCH_SCREEN* screen : m_screens )
2071 {
2072 if( screen == aScreen )
2073 return;
2074 }
2075
2076 m_screens.push_back( aScreen );
2077 m_sheets.push_back( aSheet );
2078}
2079
2080
2082{
2083 if( aSheet && aSheet->Type() == SCH_SHEET_T )
2084 {
2085 SCH_SCREEN* screen = aSheet->GetScreen();
2086
2087 if( !screen )
2088 return;
2089
2090 addScreenToList( screen, aSheet );
2091
2092 for( SCH_ITEM* item : screen->Items().OfType( SCH_SHEET_T ) )
2093 buildScreenList( static_cast<SCH_SHEET*>( item ) );
2094 }
2095}
2096
2097
2099{
2100 SCH_SCREEN* first = GetFirst();
2101
2102 if( !first )
2103 return;
2104
2105 SCHEMATIC* sch = first->Schematic();
2106
2107 wxCHECK_RET( sch, "Null schematic in SCH_SCREENS::ClearAnnotationOfNewSheetPaths" );
2108
2109 // Clear the annotation for symbols inside new sheetpaths not already in aInitialSheetList
2110 SCH_SCREENS screensList( sch->Root() ); // The list of screens, shared by sheet paths
2111 screensList.BuildClientSheetPathList(); // build the shared by sheet paths, by screen
2112
2113 // Search for new sheet paths, not existing in aInitialSheetPathList
2114 // and existing in sheetpathList
2115 for( SCH_SHEET_PATH& sheetpath : sch->Hierarchy() )
2116 {
2117 bool path_exists = false;
2118
2119 for( const SCH_SHEET_PATH& existing_sheetpath: aInitialSheetPathList )
2120 {
2121 if( existing_sheetpath.Path() == sheetpath.Path() )
2122 {
2123 path_exists = true;
2124 break;
2125 }
2126 }
2127
2128 if( !path_exists )
2129 {
2130 // A new sheet path is found: clear the annotation corresponding to this new path:
2131 SCH_SCREEN* curr_screen = sheetpath.LastScreen();
2132
2133 // Clear annotation and create the AR for this path, if not exists,
2134 // when the screen is shared by sheet paths.
2135 // Otherwise ClearAnnotation do nothing, because the F1 field is used as
2136 // reference default value and takes the latest displayed value
2137 curr_screen->EnsureAlternateReferencesExist();
2138 curr_screen->ClearAnnotation( &sheetpath, false );
2139 }
2140 }
2141}
2142
2143
2145{
2146 std::vector<SCH_ITEM*> items;
2147 int count = 0;
2148
2149 auto timestamp_cmp = []( const EDA_ITEM* a, const EDA_ITEM* b ) -> bool
2150 {
2151 return a->m_Uuid < b->m_Uuid;
2152 };
2153
2154 std::set<EDA_ITEM*, decltype( timestamp_cmp )> unique_stamps( timestamp_cmp );
2155
2156 // Collect ALL items from all screens to detect duplicate UUIDs.
2157 // This is essential for design blocks where multiple instances of the same content
2158 // are placed on the same sheet - each instance needs unique UUIDs for items like
2159 // wires, junctions, and groups, not just symbols and sheets.
2160 for( SCH_SCREEN* screen : m_screens )
2161 {
2162 for( SCH_ITEM* item : screen->Items() )
2163 items.push_back( item );
2164 }
2165
2166 if( items.size() < 2 )
2167 return 0;
2168
2169 for( EDA_ITEM* item : items )
2170 {
2171 if( !unique_stamps.insert( item ).second )
2172 {
2173 // Reset to fully random UUID. This may lose reference, but better to be
2174 // deterministic about it rather than to have duplicate UUIDs with random
2175 // side-effects.
2176 const_cast<KIID&>( item->m_Uuid ) = KIID();
2177 count++;
2178
2179 // @todo If the item is a sheet, we need to descend the hierarchy from the sheet
2180 // and replace all instances of the changed UUID in sheet paths. Otherwise,
2181 // all instance paths with the sheet's UUID will get clobbered.
2182 }
2183 }
2184
2185 return count;
2186}
2187
2188
2190{
2191 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2192 {
2193 for( SCH_ITEM* item : screen->Items() )
2194 item->ClearEditFlags();
2195 }
2196}
2197
2198
2200{
2201 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2202 {
2203 for( SCH_ITEM* item : screen->Items().OfType( SCH_MARKER_T ) )
2204 {
2205 if( item == aMarker )
2206 {
2207 screen->DeleteItem( item );
2208 return;
2209 }
2210 }
2211 }
2212}
2213
2214
2215void SCH_SCREENS::DeleteMarkers( enum MARKER_BASE::MARKER_T aMarkerType, int aErrorCode,
2216 bool aIncludeExclusions )
2217{
2218 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2219 {
2220 std::vector<SCH_ITEM*> markers;
2221
2222 for( SCH_ITEM* item : screen->Items().OfType( SCH_MARKER_T ) )
2223 {
2224 SCH_MARKER* marker = static_cast<SCH_MARKER*>( item );
2225 std::shared_ptr<RC_ITEM>rcItem = marker->GetRCItem();
2226
2227 if( marker->GetMarkerType() == aMarkerType
2228 && ( aErrorCode == ERCE_UNSPECIFIED || rcItem->GetErrorCode() == aErrorCode )
2229 && ( !marker->IsExcluded() || aIncludeExclusions ) )
2230 {
2231 markers.push_back( item );
2232 }
2233 }
2234
2235 for( SCH_ITEM* marker : markers )
2236 screen->DeleteItem( marker );
2237 }
2238}
2239
2240
2242 bool aIncludeExclusions )
2243{
2244 DeleteMarkers( aMarkerType, ERCE_UNSPECIFIED, aIncludeExclusions );
2245}
2246
2247
2249{
2250 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2251 screen->UpdateSymbolLinks( aReporter );
2252
2253 SCH_SCREEN* first = GetFirst();
2254
2255 if( !first )
2256 return;
2257
2258 SCHEMATIC* sch = first->Schematic();
2259
2260 wxCHECK_RET( sch, "Null schematic in SCH_SCREENS::UpdateSymbolLinks" );
2261
2262 SCH_SHEET_LIST sheets = sch->Hierarchy();
2263
2264 // All of the library symbols have been replaced with copies so the connection graph
2265 // pointers are stale.
2266 if( sch->ConnectionGraph() )
2267 sch->ConnectionGraph()->Recalculate( sheets, true );
2268}
2269
2270
2272{
2273 bool has_symbols = false;
2274
2275 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2276 {
2277 for( SCH_ITEM* item : screen->Items().OfType( SCH_SYMBOL_T ) )
2278 {
2279 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2280 has_symbols = true;
2281
2282 if( !symbol->GetLibId().GetLibNickname().empty() )
2283 return false;
2284 }
2285 }
2286
2287 // return true (i.e. has no fully defined symbol) only if at least one symbol is found
2288 return has_symbols ? true : false;
2289}
2290
2291
2292size_t SCH_SCREENS::GetLibNicknames( wxArrayString& aLibNicknames )
2293{
2294 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2295 {
2296 for( SCH_ITEM* item : screen->Items().OfType( SCH_SYMBOL_T ) )
2297 {
2298 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2299 const UTF8& nickname = symbol->GetLibId().GetLibNickname();
2300
2301 if( !nickname.empty() && ( aLibNicknames.Index( nickname ) == wxNOT_FOUND ) )
2302 aLibNicknames.Add( nickname );
2303 }
2304 }
2305
2306 return aLibNicknames.GetCount();
2307}
2308
2309
2310int SCH_SCREENS::ChangeSymbolLibNickname( const wxString& aFrom, const wxString& aTo )
2311{
2312 SCH_SCREEN* screen;
2313 int cnt = 0;
2314
2315 for( screen = GetFirst(); screen; screen = GetNext() )
2316 {
2317 for( SCH_ITEM* item : screen->Items().OfType( SCH_SYMBOL_T ) )
2318 {
2319 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2320
2321 if( symbol->GetLibId().GetLibNickname().wx_str() != aFrom )
2322 continue;
2323
2324 LIB_ID id = symbol->GetLibId();
2325 id.SetLibNickname( aTo );
2326 symbol->SetLibId( id );
2327 cnt++;
2328 }
2329 }
2330
2331 return cnt;
2332}
2333
2334
2335bool SCH_SCREENS::HasSchematic( const wxString& aSchematicFileName )
2336{
2337 for( const SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2338 {
2339 if( screen->GetFileName() == aSchematicFileName )
2340 return true;
2341 }
2342
2343 return false;
2344}
2345
2346
2348{
2349 SCH_SCREEN* first = GetFirst();
2350
2351 if( !first )
2352 return;
2353
2354 SCHEMATIC* sch = first->Schematic();
2355
2356 wxCHECK_RET( sch, "Null schematic in SCH_SCREENS::BuildClientSheetPathList" );
2357
2358 // Don't build until we have a hierarchy to work with. This can be called before the hierarchy is built.
2359 if( !sch->HasHierarchy() )
2360 return;
2361
2362 for( SCH_SCREEN* curr_screen = GetFirst(); curr_screen; curr_screen = GetNext() )
2363 curr_screen->GetClientSheetPaths().clear();
2364
2365 for( SCH_SHEET_PATH& sheetpath : sch->Hierarchy() )
2366 {
2367 SCH_SCREEN* used_screen = sheetpath.LastScreen();
2368
2369 // Search for the used_screen in list and add this unique sheet path:
2370 for( SCH_SCREEN* curr_screen = GetFirst(); curr_screen; curr_screen = GetNext() )
2371 {
2372 if( used_screen == curr_screen )
2373 {
2374 curr_screen->GetClientSheetPaths().push_back( sheetpath );
2375 break;
2376 }
2377 }
2378 }
2379}
2380
2381
2383{
2384 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2385 screen->SetLegacySymbolInstanceData();
2386}
2387
2388
2390{
2391 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2392 screen->FixLegacyPowerSymbolMismatches();
2393}
2394
2395
2397{
2398 LOCALE_IO toggle;
2399
2400 // V6 schematics may specify model names in Value fields, which we don't do in V7.
2401 // Migrate by adding an equivalent model for these symbols.
2402
2403 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
2404 {
2405 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2406 SIM_MODEL::MigrateSimModel<SCH_SYMBOL>( *symbol, &Schematic()->Project() );
2407 }
2408}
2409
2410
2411void SCH_SCREENS::PruneOrphanedSymbolInstances( const wxString& aProjectName,
2412 const SCH_SHEET_LIST& aValidSheetPaths )
2413{
2414 if( aProjectName.IsEmpty() )
2415 return;
2416
2417 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2418 screen->PruneOrphanedSymbolInstances( aProjectName, aValidSheetPaths );
2419}
2420
2421
2422void SCH_SCREENS::PruneOrphanedSheetInstances( const wxString& aProjectName,
2423 const SCH_SHEET_LIST& aValidSheetPaths )
2424{
2425 if( aProjectName.IsEmpty() )
2426 return;
2427
2428 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2429 screen->PruneOrphanedSheetInstances( aProjectName, aValidSheetPaths );
2430}
2431
2432
2434{
2435 for( const SCH_SCREEN* screen : m_screens )
2436 {
2437 if( screen->HasSymbolFieldNamesWithWhiteSpace() )
2438 return true;
2439 }
2440
2441 return false;
2442}
2443
2444
2445std::set<wxString> SCH_SCREENS::GetVariantNames() const
2446{
2447 std::set<wxString> variantNames;
2448
2449 for( const SCH_SCREEN* screen : m_screens )
2450 {
2451 for( const wxString& variantName : screen->GetVariantNames() )
2452 variantNames.emplace( variantName );
2453 }
2454
2455 return variantNames;
2456}
2457
2458
2459void SCH_SCREENS::DeleteVariant( const wxString& aVariantName, SCH_COMMIT* aCommit )
2460{
2461 wxCHECK( !aVariantName.IsEmpty(), /* void */ );
2462
2463 for( SCH_SCREEN* screen : m_screens )
2464 screen->DeleteVariant( aVariantName, aCommit );
2465}
2466
2467
2468void SCH_SCREENS::RenameVariant( const wxString& aOldName, const wxString& aNewName,
2469 SCH_COMMIT* aCommit )
2470{
2471 wxCHECK( !aOldName.IsEmpty() && !aNewName.IsEmpty(), /* void */ );
2472
2473 for( SCH_SCREEN* screen : m_screens )
2474 screen->RenameVariant( aOldName, aNewName, aCommit );
2475}
2476
2477
2478void SCH_SCREENS::CopyVariant( const wxString& aSourceVariant, const wxString& aNewVariant,
2479 SCH_COMMIT* aCommit )
2480{
2481 wxCHECK( !aSourceVariant.IsEmpty() && !aNewVariant.IsEmpty(), /* void */ );
2482
2483 for( SCH_SCREEN* screen : m_screens )
2484 screen->CopyVariant( aSourceVariant, aNewVariant, aCommit );
2485}
const char * name
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:114
BOX2< VECTOR2I > BOX2I
Definition box2.h:922
int m_virtualPageNumber
An integer based page number used for printing a range of pages.
bool m_Center
Center on screen.
Definition base_screen.h:96
int m_pageCount
The number of BASE_SCREEN objects in this design.
BASE_SCREEN(EDA_ITEM *aParent, KICAD_T aType=SCREEN_T)
void SetContentModified(bool aModified=true)
Definition base_screen.h:59
void InitDataPoints(const VECTOR2I &aPageSizeInternalUnits)
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
Definition box2.h:558
constexpr void SetOrigin(const Vec &pos)
Definition box2.h:237
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
Definition commit.h:106
void Recalculate(const SCH_SHEET_LIST &aSheetList, bool aUnconditional=false, std::function< void(SCH_ITEM *)> *aChangedItemHandler=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr)
Update the connection graph for the given list of sheets.
static void sort_dangling_end_items(std::vector< DANGLING_END_ITEM > &aItemListByType, std::vector< DANGLING_END_ITEM > &aItemListByPos)
Both contain the same information.
Definition sch_item.cpp:953
EDA_ANGLE Normalize90()
Definition eda_angle.h:257
double AsDegrees() const
Definition eda_angle.h:116
A set of EDA_ITEMs (i.e., without duplicates).
Definition eda_group.h:46
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
Definition eda_item.cpp:110
void SetFlags(EDA_ITEM_FLAGS aMask)
Definition eda_item.h:148
const KIID m_Uuid
Definition eda_item.h:522
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
virtual void SetParent(EDA_ITEM *aParent)
Definition eda_item.h:113
EDA_ITEM * GetParent() const
Definition eda_item.h:112
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
Definition eda_item.h:152
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
Definition eda_item.cpp:39
bool IsNew() const
Definition eda_item.h:124
std::vector< VECTOR2I > GetPolyPoints() const
Duplicate the polygon outlines into a flat list of VECTOR2I points.
void SetLineStyle(const LINE_STYLE aStyle)
SHAPE_T GetShape() const
Definition eda_shape.h:168
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
Definition eda_shape.h:215
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
Definition eda_shape.h:173
std::vector< VECTOR2I > GetRectCorners() const
void SetArcGeometry(const VECTOR2I &aStart, const VECTOR2I &aMid, const VECTOR2I &aEnd)
Set the three controlling points for an arc.
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition eda_text.h:80
EE_TYPE OfType(KICAD_T aType) const
Definition sch_rtree.h:241
EMBEDDED_FILE * GetEmbeddedFile(const wxString &aName) const
Returns the embedded file with the given name or nullptr if it does not exist.
const std::vector< wxString > * UpdateFontFiles()
Helper function to get a list of fonts for fontconfig to add to the library.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
Definition kiid.h:49
A collection of #SYMBOL_LIB objects.
Object used to load, save, search, and otherwise manipulate symbol library files.
LIB_SYMBOL * FindSymbol(const wxString &aName) const
Find LIB_SYMBOL by aName.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:49
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
Definition lib_id.cpp:100
wxString GetUniStringLibId() const
Definition lib_id.h:148
UTF8 Format() const
Definition lib_id.cpp:119
const wxString GetUniStringLibItemName() const
Get strings for display messages in dialogs.
Definition lib_id.h:112
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Definition lib_id.h:87
Define a library symbol object.
Definition lib_symbol.h:83
const LIB_ID & GetLibId() const override
Definition lib_symbol.h:153
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
Definition lib_symbol.h:699
wxString GetName() const override
Definition lib_symbol.h:146
bool IsGlobalPower() const override
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
void SetLibId(const LIB_ID &aLibId)
Definition lib_symbol.h:154
virtual void SetName(const wxString &aName)
Instantiate the current locale within a scope in which you are expecting exceptions to be thrown.
Definition locale_io.h:41
bool IsExcluded() const
Definition marker_base.h:93
std::shared_ptr< RC_ITEM > GetRCItem() const
enum MARKER_T GetMarkerType() const
Definition marker_base.h:91
Base plotter engine class.
Definition plotter.h:136
RENDER_SETTINGS * RenderSettings()
Definition plotter.h:167
virtual void SetCurrentLineWidth(int width, void *aData=nullptr)=0
Set the line width for the next drawing.
A small class to help profiling.
Definition profile.h:49
void Show(std::ostream &aStream=std::cerr)
Print the elapsed time (in a suitable unit) to a stream.
Definition profile.h:105
void Stop()
Save the time when this function was called, and set the counter stane to stop.
Definition profile.h:88
static SYMBOL_LIBRARY_ADAPTER * SymbolLibAdapter(PROJECT *aProject)
Accessor for project symbol library manager adapter.
static LEGACY_SYMBOL_LIBS * LegacySchLibs(PROJECT *aProject)
Returns the list of symbol libraries from a legacy (pre-5.x) design This is only used from the remapp...
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:73
virtual REPORTER & ReportTail(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Places the report at the end of the list, for objects that support report ordering.
Definition reporter.h:112
Holds all the data relating to one schematic.
Definition schematic.h:88
SCHEMATIC_SETTINGS & Settings() const
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
bool HasHierarchy() const
Check if the hierarchy has been built.
Definition schematic.h:122
EMBEDDED_FILES * GetEmbeddedFiles() override
CONNECTION_GRAPH * ConnectionGraph() const
Definition schematic.h:199
SCH_SHEET & Root() const
Definition schematic.h:132
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
virtual bool IsEndPoint(const VECTOR2I &aPt) const
Test if aPt is an end point of this schematic object.
Definition sch_item.h:517
virtual bool IsConnectable() const
Definition sch_item.h:526
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
Definition sch_item.cpp:247
SCH_LAYER_ID GetLayer() const
Return the layer this item is on.
Definition sch_item.h:340
bool IsConnected(const VECTOR2I &aPoint) const
Test the item to see if it is connected to aPoint.
Definition sch_item.cpp:457
virtual std::vector< VECTOR2I > GetConnectionPoints() const
Add all the connection points for this item to aPoints.
Definition sch_item.h:541
Segment description base class to describe items which have 2 end points (track, wire,...
Definition sch_line.h:42
void SetStartPoint(const VECTOR2I &aPosition)
Definition sch_line.h:140
std::vector< VECTOR3I > BuildWireWithHopShape(const SCH_SCREEN *aScreen, double aArcRadius) const
For wires only: build the list of points to draw the shape using segments and 180 deg arcs Points are...
bool IsWire() const
Return true if the line is a wire.
Definition sch_line.cpp:991
EDA_ANGLE Angle() const
Get the angle between the start and end lines.
Definition sch_line.h:104
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
Definition sch_line.cpp:879
VECTOR2I GetEndPoint() const
Definition sch_line.h:148
VECTOR2I GetStartPoint() const
Definition sch_line.h:139
bool IsEndPoint(const VECTOR2I &aPoint) const override
Test if aPt is an end point of this schematic object.
Definition sch_line.h:91
void SetEndPoint(const VECTOR2I &aPosition)
Definition sch_line.h:149
SCH_SCREEN * GetNext()
unsigned int m_index
Definition sch_screen.h:893
std::vector< SCH_SHEET * > m_sheets
Definition sch_screen.h:892
SCH_SCREEN * GetScreen(unsigned int aIndex) const
void UpdateSymbolLinks(REPORTER *aReporter=nullptr)
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in the full schematic.
void DeleteMarker(SCH_MARKER *aMarker)
Delete a specific marker.
void DeleteMarkers(enum MARKER_BASE::MARKER_T aMarkerTyp, int aErrorCode, bool aIncludeExclusions=true)
Delete all markers of a particular type and error code.
void buildScreenList(SCH_SHEET *aSheet)
void FixLegacyPowerSymbolMismatches()
Fix legacy power symbols that have mismatched value text fields and invisible power pin names.
void CopyVariant(const wxString &aSourceVariant, const wxString &aNewVariant, SCH_COMMIT *aCommit=nullptr)
SCH_SCREEN * GetFirst()
void DeleteAllMarkers(enum MARKER_BASE::MARKER_T aMarkerType, bool aIncludeExclusions)
Delete all electronic rules check markers of aMarkerType from all the screens in the list.
void PruneOrphanedSheetInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
int ChangeSymbolLibNickname(const wxString &aFrom, const wxString &aTo)
Change all of the symbol library nicknames.
void RenameVariant(const wxString &aOldName, const wxString &aNewName, SCH_COMMIT *aCommit=nullptr)
SCH_SCREENS(SCH_SHEET *aSheet)
void BuildClientSheetPathList()
Build the list of sheet paths sharing a screen for each screen in use.
bool HasSymbolFieldNamesWithWhiteSpace() const
void ClearAnnotationOfNewSheetPaths(SCH_SHEET_LIST &aInitialSheetPathList)
Clear the annotation for the symbols inside new sheetpaths when a complex hierarchy is modified and n...
void PruneOrphanedSymbolInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
bool HasNoFullyDefinedLibIds()
Test all of the schematic symbols to see if all LIB_ID objects library nickname is not set.
void ClearEditFlags()
SCH_SHEET * GetSheet(unsigned int aIndex) const
int ReplaceDuplicateTimeStamps()
Test all sheet and symbol objects in the schematic for duplicate time stamps and replaces them as nec...
std::set< wxString > GetVariantNames() const
std::vector< SCH_SCREEN * > m_screens
Definition sch_screen.h:891
void DeleteVariant(const wxString &aVariantName, SCH_COMMIT *aCommit=nullptr)
bool HasSchematic(const wxString &aSchematicFileName)
Check if one of the schematics in the list of screens is aSchematicFileName.
size_t GetLibNicknames(wxArrayString &aLibNicknames)
Fetch all of the symbol library nicknames into aLibNicknames.
void SetLegacySymbolInstanceData()
Update the symbol value and footprint instance data for legacy designs.
void addScreenToList(SCH_SCREEN *aScreen, SCH_SHEET *aSheet)
std::set< wxString > GetVariantNames() const
void DeleteVariant(const wxString &aVariantName, SCH_COMMIT *aCommit=nullptr)
std::map< wxString, LIB_SYMBOL * > m_libSymbols
Library symbols required for this schematic.
Definition sch_screen.h:708
SCH_PIN * GetPin(const VECTOR2I &aPosition, SCH_SYMBOL **aSymbol=nullptr, bool aEndPointOnly=false) const
Test the screen for a symbol pin item at aPosition.
bool m_fileExists
Flag to indicate the file associated with this screen has been created.
Definition sch_screen.h:705
void ClearDrawingState()
Clear the state flags of all the items in the screen.
SCH_LINE * GetLine(const VECTOR2I &aPosition, int aAccuracy=0, int aLayer=LAYER_NOTES, SCH_LINE_TEST_T aSearchType=ENTIRE_LENGTH_T) const
Return a line item located at aPosition.
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
void AddLibSymbol(LIB_SYMBOL *aLibSymbol)
Add aLibSymbol to the library symbol map.
bool HasSymbolFieldNamesWithWhiteSpace() const
void AddBusAlias(std::shared_ptr< BUS_ALIAS > aAlias)
Add a bus alias definition.
void FixLegacyPowerSymbolMismatches()
Fix legacy power symbols that have mismatched value text fields and invisible power pin names.
bool HasItems(KICAD_T aItemType) const
void Clear(bool aFree=true)
Delete all draw items and clears the project settings.
bool HasInstanceDataFromOtherProjects() const
Check symbols for instance data from other projects.
void PruneOrphanedSymbolInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
Remove all invalid symbol instance data in this screen object for the project defined by aProjectName...
std::vector< SCH_SHEET_PATH > & GetClientSheetPaths()
Return the number of times this screen is used.
Definition sch_screen.h:187
void UpdateSymbolLinks(REPORTER *aReporter=nullptr)
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in this schematic from the project #SYM...
SCH_LINE * GetWire(const VECTOR2I &aPosition, int aAccuracy=0, SCH_LINE_TEST_T aSearchType=ENTIRE_LENGTH_T) const
Definition sch_screen.h:444
std::set< SCH_ITEM * > MarkConnections(SCH_ITEM *aItem, bool aSecondPass)
Return all wires and junctions connected to aItem which are not connected any symbol pin or all graph...
std::set< wxString > GetSheetNames() const
TITLE_BLOCK m_titles
Definition sch_screen.h:692
void TestDanglingEnds(const SCH_SHEET_PATH *aPath=nullptr, std::function< void(SCH_ITEM *)> *aChangedHandler=nullptr) const
Test all of the connectable objects in the schematic for unused connection points.
void EnsureAlternateReferencesExist()
For screens shared by many sheetpaths (complex hierarchies): to be able to clear or modify any refere...
void PruneOrphanedSheetInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
Remove all invalid sheet instance data in this screen object for the project defined by aProjectName ...
std::vector< SCH_LINE * > GetBusesAndWires(const VECTOR2I &aPosition, bool aIgnoreEndpoints=false) const
Return buses and wires passing through aPosition.
wxString GroupsSanityCheckInternal(bool repair)
int m_modification_sync
Definition sch_screen.h:696
double m_LastZoomLevel
last value for the zoom level, useful in Eeschema when changing the current displayed sheet to reuse ...
Definition sch_screen.h:674
bool IsExplicitJunction(const VECTOR2I &aPosition) const
Indicate that a junction dot is necessary at the given location.
EE_RTREE & Items()
Get the full RTree, usually for iterating.
Definition sch_screen.h:118
int m_fileFormatVersionAtLoad
Definition sch_screen.h:678
void DecRefCount()
SCH_ITEM * GetItem(const VECTOR2I &aPosition, int aAccuracy=0, KICAD_T aType=SCH_LOCATE_ANY_T) const
Check aPosition within a distance of aAccuracy for items of type aFilter.
bool IsExplicitJunctionAllowed(const VECTOR2I &aPosition) const
Indicate that a junction dot may be placed at the given location.
void clearLibSymbols()
wxString m_fileName
Definition sch_screen.h:677
bool IsTerminalPoint(const VECTOR2I &aPosition, int aLayer) const
Test if aPosition is a connection point on aLayer.
void UpdateLocalLibSymbolLinks()
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in this schematic with the local projec...
void IncRefCount()
void SetFileName(const wxString &aFileName)
Set the file name for this screen to aFileName.
static bool ClassOf(const EDA_ITEM *aItem)
void SetLegacySymbolInstanceData()
Update the symbol value and footprint instance data for legacy designs.
SCH_LINE * GetBus(const VECTOR2I &aPosition, int aAccuracy=0, SCH_LINE_TEST_T aSearchType=ENTIRE_LENGTH_T) const
Definition sch_screen.h:450
bool Remove(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Remove aItem from the schematic associated with this screen.
SCH_SCREEN(EDA_ITEM *aParent=nullptr)
SCHEMATIC * Schematic() const
EE_RTREE m_rtree
Definition sch_screen.h:694
void FixupEmbeddedData()
After loading a file from disk, the library symbols do not yet contain the full data for their embedd...
void CopyVariant(const wxString &aSourceVariant, const wxString &aNewVariant, SCH_COMMIT *aCommit=nullptr)
void GetHierarchicalItems(std::vector< SCH_ITEM * > *aItems) const
Add all schematic sheet and symbol objects in the screen to aItems.
bool IsExplicitJunctionNeeded(const VECTOR2I &aPosition) const
Indicate that a junction dot is necessary at the given location, and does not yet exist.
SCH_SHEET_PIN * GetSheetPin(const VECTOR2I &aPosition) const
Test the screen if aPosition is a sheet label object.
wxString GroupsSanityCheck(bool repair=false)
Consistency check of internal m_groups structure.
bool InProjectPath() const
Check if the schematic file is in the current project path.
void RenameVariant(const wxString &aOldName, const wxString &aNewName, SCH_COMMIT *aCommit=nullptr)
void FreeDrawList()
Free all the items from the schematic associated with the screen.
void Plot(PLOTTER *aPlotter, const SCH_PLOT_OPTS &aPlotOpts) const
Plot all the schematic objects to aPlotter.
virtual wxString GetClass() const override
Return the class name.
Definition sch_screen.h:132
void Update(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Update aItem's bounding box in the tree.
void SetConnectivityDirty()
bool m_zoomInitialized
Definition sch_screen.h:699
std::vector< VECTOR2I > GetNeededJunctions(const std::deque< EDA_ITEM * > &aItems) const
Return the unique set of points belonging to aItems where a junction is needed.
PAGE_INFO m_paper
Definition sch_screen.h:691
bool IsJunction(const VECTOR2I &aPosition) const
Test if a junction is required for the items at aPosition on the screen.
bool m_isReadOnly
Read only status of the screen file.
Definition sch_screen.h:702
void GetSheets(std::vector< SCH_ITEM * > *aItems) const
Similar to Items().OfType( SCH_SHEET_T ), but return the sheets in a deterministic order (L-R,...
bool CheckIfOnDrawList(const SCH_ITEM *aItem) const
std::vector< VECTOR2I > GetConnections() const
Collect a unique list of all possible connection points in the schematic.
SPIN_STYLE GetLabelOrientationForPoint(const VECTOR2I &aPosition, SPIN_STYLE aDefaultOrientation, const SCH_SHEET_PATH *aSheet) const
void ClearAnnotation(SCH_SHEET_PATH *aSheetPath, bool aResetPrefix)
Clear the annotation for the symbols in aSheetPath on the screen.
size_t CountConnectedItems(const VECTOR2I &aPos, bool aTestJunctions) const
void MigrateSimModels()
Migrate any symbols having V6 simulation models to their V7 equivalents.
void DeleteItem(SCH_ITEM *aItem)
Remove aItem from the linked list and deletes the object.
size_t getLibSymbolNameMatches(const SCH_SYMBOL &aSymbol, std::vector< wxString > &aMatches)
Return a list of potential library symbol matches for aSymbol.
SCH_LABEL_BASE * GetLabel(const VECTOR2I &aPosition, int aAccuracy=0) const
Return a label item located at aPosition.
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
std::optional< SCH_SHEET_PATH > GetSheetPathByKIIDPath(const KIID_PATH &aPath, bool aIncludeLastSheet=true) const
Finds a SCH_SHEET_PATH that matches the provided KIID_PATH.
bool HasPath(const KIID_PATH &aPath) const
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.
SCH_SHEET * GetParent() const
Get the parent sheet object of this sheet pin.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition sch_sheet.h:48
void CopyVariant(const KIID_PATH &aPath, const wxString &aSourceVariant, const wxString &aNewVariant)
void RemoveInstance(const KIID_PATH &aInstancePath)
wxString GetName() const
Definition sch_sheet.h:142
SCH_SHEET_PIN * GetPin(const VECTOR2I &aPosition)
Return the sheet pin item found at aPosition in the sheet.
void RemovePin(const SCH_SHEET_PIN *aSheetPin)
Remove aSheetPin from the sheet.
void RenameVariant(const KIID_PATH &aPath, const wxString &aOldName, const wxString &aNewName)
void DeleteVariant(const KIID_PATH &aPath, const wxString &aVariantName)
SCH_SCREEN * GetScreen() const
Definition sch_sheet.h:145
const std::vector< SCH_SHEET_INSTANCE > & GetInstances() const
Definition sch_sheet.h:511
Schematic symbol object.
Definition sch_symbol.h:76
void SetLibId(const LIB_ID &aName)
SCH_ITEM * GetDrawItem(const VECTOR2I &aPosition, KICAD_T aType=TYPE_NOT_INIT)
Return the symbol library item at aPosition that is part of this symbol.
const std::vector< SCH_SYMBOL_INSTANCE > & GetInstances() const
Definition sch_symbol.h:135
void RemoveInstance(const SCH_SHEET_PATH &aInstancePath)
wxString GetSchSymbolLibraryName() const
bool AddSheetPathReferenceEntryIfMissing(const KIID_PATH &aSheetPath)
Add an instance to the alternate references list (m_instanceReferences), if this entry does not alrea...
void ClearAnnotation(const SCH_SHEET_PATH *aSheetPath, bool aResetPrefix)
Clear exiting symbol annotation.
void RenameVariant(const KIID_PATH &aPath, const wxString &aOldName, const wxString &aNewName)
void GetFields(std::vector< SCH_FIELD * > &aVector, bool aVisibleOnly) const override
Populate a std::vector with SCH_FIELDs, sorted in ordinal order.
std::vector< SCH_PIN * > GetAllLibPins() const
void AddHierarchicalReference(const KIID_PATH &aPath, const wxString &aRef, int aUnit)
Add a full hierarchical reference to this symbol.
std::vector< SCH_PIN * > GetPins(const SCH_SHEET_PATH *aSheet) const
Retrieve a list of the SCH_PINs for the given sheet path.
const LIB_ID & GetLibId() const override
Definition sch_symbol.h:165
void SetSchSymbolLibraryName(const wxString &aName)
The name of the symbol in the schematic library symbol list.
Definition sch_symbol.h:180
void SetValueFieldText(const wxString &aValue, const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString)
std::vector< SCH_PIN * > GetLibPins() const
Populate a vector with all the pins from the library object that match the current unit and bodyStyle...
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
Definition sch_symbol.h:184
void DeleteVariant(const KIID_PATH &aPath, const wxString &aVariantName)
void SetLibSymbol(LIB_SYMBOL *aLibSymbol)
Set this schematic symbol library symbol reference to aLibSymbol.
VECTOR2I GetPinPhysicalPosition(const SCH_PIN *Pin) const
void CopyVariant(const KIID_PATH &aPath, const wxString &aSourceVariant, const wxString &aNewVariant)
static void MigrateSimModel(T &aSymbol, const PROJECT *aProject)
An interface to the global shared library manager that is schematic-specific and linked to one projec...
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
A base class for LIB_SYMBOL and SCH_SYMBOL.
Definition symbol.h:63
virtual bool GetDNP(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Set or clear the 'Do Not Populate' flag.
Definition symbol.h:240
for transforming drawing coordinates for a wxDC device context.
Definition transform.h:46
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
Definition utf8.h:71
bool empty() const
Definition utf8.h:109
wxString wx_str() const
Definition utf8.cpp:45
static bool empty(const wxTextEntryBase *aCtrl)
#define _(s)
@ NO_RECURSE
Definition eda_item.h:52
#define IS_DELETED
#define STRUCT_DELETED
flag indication structures to be erased
#define IS_MOVING
Item being moved.
@ SEGMENT
Definition eda_shape.h:45
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
Definition eda_shape.h:46
@ ERCE_UNSPECIFIED
static const wxChar DanglingProfileMask[]
Flag to enable connectivity profiling.
const wxChar *const traceSchSheetPaths
Flag to enable debug output of schematic symbol sheet path manipulation code.
@ LAYER_WIRE
Definition layer_ids.h:452
@ LAYER_NOTES
Definition layer_ids.h:467
@ LAYER_BUS
Definition layer_ids.h:453
POINT_INFO AnalyzePoint(const EE_RTREE &aItem, const VECTOR2I &aPosition, bool aBreakCrossings)
Check a tree of items for a confluence at a given point and work out what kind of junction it is,...
PAGE_SIZE_TYPE
Definition page_info.h:50
@ RPT_SEVERITY_WARNING
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_INFO
Class to handle a set of SCH_ITEMs.
#define PROCESSED
SCH_LINE_TEST_T
Definition sch_screen.h:72
@ ENTIRE_LENGTH_T
Definition sch_screen.h:73
@ EXCLUDE_END_POINTS_T
Definition sch_screen.h:75
@ END_POINTS_ONLY_T
Definition sch_screen.h:74
wxString UnescapeString(const wxString &aSource)
The EE_TYPE struct provides a type-specific auto-range iterator to the RTree.
Definition sch_rtree.h:195
iterator begin()
Definition sch_rtree.h:225
iterator end()
Definition sch_rtree.h:230
std::vector< char > decompressedData
A selection of information about a point in the schematic that might be eligible for turning into a j...
A simple container for sheet instance information.
A simple container for schematic symbol instance information.
SPIN_STYLE GetPinSpinStyle(const SCH_PIN &aPin, const SCH_SYMBOL &aSymbol)
Get the spin style for a pin's label, taking into account the pin's orientation, as well as the given...
@ REFERENCE
Field Reference of part, i.e. "IC21".
@ VALUE
Field Value of part, i.e. "3.3K".
KIBIS_PIN * pin
VECTOR2I end
wxLogTrace helper definitions.
bool IsPointOnSegment(const VECTOR2I &aSegStart, const VECTOR2I &aSegEnd, const VECTOR2I &aTestPoint)
Test if aTestPoint is on line defined by aSegStart and aSegEnd.
Definition trigo.cpp:89
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:78
@ SCH_GROUP_T
Definition typeinfo.h:177
@ SCH_LINE_T
Definition typeinfo.h:167
@ SCH_SYMBOL_T
Definition typeinfo.h:176
@ SCH_FIELD_T
Definition typeinfo.h:154
@ SCH_DIRECTIVE_LABEL_T
Definition typeinfo.h:175
@ SCH_LABEL_T
Definition typeinfo.h:171
@ SCH_SHEET_T
Definition typeinfo.h:179
@ SCH_MARKER_T
Definition typeinfo.h:162
@ SCH_SHAPE_T
Definition typeinfo.h:153
@ SCH_HIER_LABEL_T
Definition typeinfo.h:173
@ SCH_SCREEN_T
Definition typeinfo.h:206
@ SCH_LABEL_LOCATE_ANY_T
Definition typeinfo.h:195
@ SCHEMATIC_T
Definition typeinfo.h:208
@ SCH_SHEET_PIN_T
Definition typeinfo.h:178
@ SCH_BUS_WIRE_ENTRY_T
Definition typeinfo.h:165
@ SCH_BITMAP_T
Definition typeinfo.h:168
@ SCH_GLOBAL_LABEL_T
Definition typeinfo.h:172
@ SCH_JUNCTION_T
Definition typeinfo.h:163
@ SCH_PIN_T
Definition typeinfo.h:157
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695