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, const std::vector<SCH_ITEM*>& aItems ) const
907{
908 // Ensure links are up to date, even if a library was reloaded for some reason:
909 std::vector<SCH_ITEM*> junctions;
910 std::vector<SCH_ITEM*> bitmaps;
911 std::vector<SCH_SYMBOL*> symbols;
912 std::vector<SCH_ITEM*> other;
913 double hopOverScale = 0.0;
914 int defaultLineWidth = schIUScale.MilsToIU( DEFAULT_LINE_WIDTH_MILS );
915
916 if( !aItems.empty() && aItems[0]->Schematic() )
917 {
918 hopOverScale = aItems[0]->Schematic()->Settings().m_HopOverScale;
919 defaultLineWidth = aItems[0]->Schematic()->Settings().m_DefaultLineWidth;
920 }
921
922 for( SCH_ITEM* item : aItems )
923 {
924 if( item->IsMoving() )
925 continue;
926
927 if( item->Type() == SCH_JUNCTION_T )
928 junctions.push_back( item );
929 else if( item->Type() == SCH_BITMAP_T )
930 bitmaps.push_back( item );
931 else
932 other.push_back( item );
933
934 // Where the symbols overlap each other, we need to plot the text items a second
935 // time to get them on top of the overlapping element. This collection is in addition
936 // to the symbols already collected in `other`
937 if( item->Type() == SCH_SYMBOL_T )
938 {
939 for( SCH_ITEM* sym : m_rtree.Overlapping( SCH_SYMBOL_T, item->GetBoundingBox() ) )
940 {
941 if( sym != item )
942 {
943 symbols.push_back( static_cast<SCH_SYMBOL*>( item ) );
944 break;
945 }
946 }
947 }
948 }
949
951 std::sort( other.begin(), other.end(),
952 []( const SCH_ITEM* a, const SCH_ITEM* b )
953 {
954 if( a->Type() == b->Type() )
955 return a->GetLayer() > b->GetLayer();
956
957 return a->Type() > b->Type();
958 } );
959
960 auto* renderSettings = static_cast<SCH_RENDER_SETTINGS*>( aPlotter->RenderSettings() );
961 constexpr bool background = true;
962
963 // Bitmaps are drawn first to ensure they are in the background
964 // This is particularly important for the wxPostscriptDC (used in *nix printers) as
965 // the bitmap PS command clears the screen
966 for( SCH_ITEM* item : bitmaps )
967 {
968 aPlotter->SetCurrentLineWidth( item->GetEffectivePenWidth( renderSettings ) );
969 item->Plot( aPlotter, background, aPlotOpts, 0, 0, { 0, 0 }, false );
970 }
971
972 // Plot the background items
973 for( SCH_ITEM* item : other )
974 {
975 aPlotter->SetCurrentLineWidth( item->GetEffectivePenWidth( renderSettings ) );
976 item->Plot( aPlotter, background, aPlotOpts, 0, 0, { 0, 0 }, false );
977 }
978
979 // Plot the foreground items
980 for( SCH_ITEM* item : other )
981 {
982 double lineWidth = item->GetEffectivePenWidth( renderSettings );
983 aPlotter->SetCurrentLineWidth( lineWidth );
984
985 if( item->Type() != SCH_LINE_T )
986 {
987 item->Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
988 }
989 else
990 {
991 SCH_LINE* aLine = static_cast<SCH_LINE*>( item );
992
993 if( !aLine->IsWire() || !aPlotOpts.m_plotHopOver )
994 {
995 item->Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
996 }
997 else
998 {
999 double arcRadius = defaultLineWidth * hopOverScale;
1000 std::vector<VECTOR3I> curr_wire_shape = aLine->BuildWireWithHopShape( this, arcRadius );
1001
1002 for( size_t ii = 1; ii < curr_wire_shape.size(); ii++ )
1003 {
1004 VECTOR2I start( curr_wire_shape[ii-1].x, curr_wire_shape[ii-1].y );
1005
1006 if( curr_wire_shape[ii-1].z == 0 ) // This is the start point of a segment
1007 // there are always 2 points in list for a segment
1008 {
1009 VECTOR2I end( curr_wire_shape[ii].x, curr_wire_shape[ii].y );
1010
1011 SCH_LINE curr_line( *aLine );
1012 curr_line.SetStartPoint( start );
1013 curr_line.SetEndPoint( end );
1014 curr_line.Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
1015 }
1016 else // This is the start point of a arc. there are always 3 points in list for an arc
1017 {
1018 VECTOR2I arc_middle( curr_wire_shape[ii].x, curr_wire_shape[ii].y );
1019 ii++;
1020 VECTOR2I arc_end( curr_wire_shape[ii].x, curr_wire_shape[ii].y );
1021 ii++;
1022
1023 SCH_SHAPE arc( SHAPE_T::ARC, aLine->GetLayer(), lineWidth );
1024
1025 arc.SetArcGeometry( start, arc_middle, arc_end );
1026 // Hop are a small arc, so use a solid line style gives best results
1028 arc.Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
1029 }
1030 }
1031 }
1032 }
1033 }
1034
1035 // After plotting the symbols as a group above (in `other`), we need to overplot the pins
1036 // and symbols to ensure that they are always visible
1037 TRANSFORM savedTransform = renderSettings->m_Transform;
1038
1039 wxString variant = Schematic()->GetCurrentVariant();
1040 SCH_SHEET_PATH* sheet = &Schematic()->CurrentSheet();
1041
1042 for( const SCH_SYMBOL* sym :symbols )
1043 {
1044 renderSettings->m_Transform = sym->GetTransform();
1045 aPlotter->SetCurrentLineWidth( sym->GetEffectivePenWidth( renderSettings ) );
1046
1047 bool dnp = sym->GetDNP( sheet, variant );
1048
1049 for( SCH_FIELD field : sym->GetFields() )
1050 {
1051 field.ClearRenderCache();
1052 field.Plot( aPlotter, false, aPlotOpts, sym->GetUnit(), sym->GetBodyStyle(), { 0, 0 }, dnp );
1053
1054 if( sym->IsSymbolLikePowerLocalLabel() && field.GetId() == FIELD_T::VALUE
1055 && ( field.IsVisible() || field.IsForceVisible() ) )
1056 {
1057 sym->PlotLocalPowerIconShape( aPlotter );
1058 }
1059 }
1060
1061 sym->PlotPins( aPlotter, dnp );
1062
1063 if( dnp )
1064 sym->PlotDNP( aPlotter );
1065 }
1066
1067 renderSettings->m_Transform = savedTransform;
1068
1069 for( SCH_ITEM* item : junctions )
1070 {
1071 aPlotter->SetCurrentLineWidth( item->GetEffectivePenWidth( renderSettings ) );
1072 item->Plot( aPlotter, !background, aPlotOpts, 0, 0, { 0, 0 }, false );
1073 }
1074}
1075
1076
1078{
1079 for( SCH_ITEM* item : Items() )
1080 item->ClearTempFlags();
1081}
1082
1083
1084SCH_PIN* SCH_SCREEN::GetPin( const VECTOR2I& aPosition, SCH_SYMBOL** aSymbol,
1085 bool aEndPointOnly ) const
1086{
1087 SCH_SYMBOL* candidate = nullptr;
1088 SCH_PIN* pin = nullptr;
1089
1090 for( SCH_ITEM* item : Items().Overlapping( SCH_SYMBOL_T, aPosition ) )
1091 {
1092 candidate = static_cast<SCH_SYMBOL*>( item );
1093
1094 if( aEndPointOnly )
1095 {
1096 pin = nullptr;
1097
1098 if( !candidate->GetLibSymbolRef() )
1099 continue;
1100
1101 for( SCH_PIN* test_pin : candidate->GetLibPins() )
1102 {
1103 if( candidate->GetPinPhysicalPosition( test_pin ) == aPosition )
1104 {
1105 pin = test_pin;
1106 break;
1107 }
1108 }
1109
1110 if( pin )
1111 break;
1112 }
1113 else
1114 {
1115 pin = static_cast<SCH_PIN*>( candidate->GetDrawItem( aPosition, SCH_PIN_T ) );
1116
1117 if( pin )
1118 break;
1119 }
1120 }
1121
1122 if( pin && aSymbol )
1123 *aSymbol = candidate;
1124
1125 return pin;
1126}
1127
1128
1130{
1131 SCH_SHEET_PIN* sheetPin = nullptr;
1132
1133 for( SCH_ITEM* item : Items().Overlapping( SCH_SHEET_T, aPosition ) )
1134 {
1135 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1136
1137 sheetPin = sheet->GetPin( aPosition );
1138
1139 if( sheetPin )
1140 break;
1141 }
1142
1143 return sheetPin;
1144}
1145
1146
1147size_t SCH_SCREEN::CountConnectedItems( const VECTOR2I& aPos, bool aTestJunctions ) const
1148{
1149 size_t count = 0;
1150
1151 for( const SCH_ITEM* item : Items().Overlapping( aPos ) )
1152 {
1153 if( ( item->Type() != SCH_JUNCTION_T || aTestJunctions ) && item->IsConnected( aPos ) )
1154 count++;
1155 }
1156
1157 return count;
1158}
1159
1160
1161void SCH_SCREEN::ClearAnnotation( SCH_SHEET_PATH* aSheetPath, bool aResetPrefix )
1162{
1163
1164 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1165 {
1166 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1167
1168 symbol->ClearAnnotation( aSheetPath, aResetPrefix );
1169 }
1170}
1171
1172
1174{
1175 if( GetClientSheetPaths().size() <= 1 ) // No need for alternate reference
1176 return;
1177
1178 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1179 {
1180 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1181
1182 // Add (when not existing) all sheet path entries
1183 for( const SCH_SHEET_PATH& sheet : GetClientSheetPaths() )
1184 symbol->AddSheetPathReferenceEntryIfMissing( sheet.Path() );
1185 }
1186}
1187
1188
1189void SCH_SCREEN::GetHierarchicalItems( std::vector<SCH_ITEM*>* aItems ) const
1190{
1191 static const std::vector<KICAD_T> hierarchicalTypes = { SCH_SYMBOL_T,
1194
1195 for( SCH_ITEM* item : Items() )
1196 {
1197 if( item->IsType( hierarchicalTypes ) )
1198 aItems->push_back( item );
1199 }
1200}
1201
1202
1203void SCH_SCREEN::GetSheets( std::vector<SCH_ITEM*>* aItems ) const
1204{
1205 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1206 aItems->push_back( item );
1207
1208 std::sort( aItems->begin(), aItems->end(),
1209 []( EDA_ITEM* a, EDA_ITEM* b ) -> bool
1210 {
1211 if( a->GetPosition().x == b->GetPosition().x )
1212 {
1213 // Ensure deterministic sort
1214 if( a->GetPosition().y == b->GetPosition().y )
1215 return a->m_Uuid < b->m_Uuid;
1216
1217 return a->GetPosition().y < b->GetPosition().y;
1218 }
1219 else
1220 {
1221 return a->GetPosition().x < b->GetPosition().x;
1222 }
1223 } );
1224}
1225
1226
1228 std::function<void( SCH_ITEM* )>* aChangedHandler ) const
1229{
1230 PROF_TIMER timer( __FUNCTION__ );
1231
1232 std::vector<DANGLING_END_ITEM> endPointsByPos;
1233 std::vector<DANGLING_END_ITEM> endPointsByType;
1234
1235 auto get_ends =
1236 [&]( SCH_ITEM* item )
1237 {
1238 if( item->IsConnectable() )
1239 item->GetEndPoints( endPointsByType );
1240 };
1241
1242 auto update_state =
1243 [&]( SCH_ITEM* item )
1244 {
1245 if( item->UpdateDanglingState( endPointsByType, endPointsByPos, aPath ) )
1246 {
1247 if( aChangedHandler )
1248 ( *aChangedHandler )( item );
1249 }
1250 };
1251
1252 for( SCH_ITEM* item : Items() )
1253 {
1254 get_ends( item );
1255 item->RunOnChildren( get_ends, RECURSE_MODE::NO_RECURSE );
1256 }
1257
1258 PROF_TIMER sortTimer( "SCH_SCREEN::TestDanglingEnds pre-sort" );
1259 endPointsByPos = endPointsByType;
1260 DANGLING_END_ITEM_HELPER::sort_dangling_end_items( endPointsByType, endPointsByPos );
1261 sortTimer.Stop();
1262
1263 if( wxLog::IsAllowedTraceMask( DanglingProfileMask ) )
1264 sortTimer.Show();
1265
1266 for( SCH_ITEM* item : Items() )
1267 {
1268 update_state( item );
1269 item->RunOnChildren( update_state, RECURSE_MODE::NO_RECURSE );
1270 }
1271
1272 if( wxLog::IsAllowedTraceMask( DanglingProfileMask ) )
1273 timer.Show();
1274}
1275
1276
1277SCH_LINE* SCH_SCREEN::GetLine( const VECTOR2I& aPosition, int aAccuracy, int aLayer,
1278 SCH_LINE_TEST_T aSearchType ) const
1279{
1280 // an accuracy of 0 had problems with rounding errors; use at least 1
1281 aAccuracy = std::max( aAccuracy, 1 );
1282
1283 for( SCH_ITEM* item : Items().Overlapping( aPosition, aAccuracy ) )
1284 {
1285 if( item->Type() != SCH_LINE_T )
1286 continue;
1287
1288 if( item->GetLayer() != aLayer )
1289 continue;
1290
1291 if( !item->HitTest( aPosition, aAccuracy ) )
1292 continue;
1293
1294 switch( aSearchType )
1295 {
1296 case ENTIRE_LENGTH_T:
1297 return (SCH_LINE*) item;
1298
1300 if( !( (SCH_LINE*) item )->IsEndPoint( aPosition ) )
1301 return (SCH_LINE*) item;
1302 break;
1303
1304 case END_POINTS_ONLY_T:
1305 if( ( (SCH_LINE*) item )->IsEndPoint( aPosition ) )
1306 return (SCH_LINE*) item;
1307 }
1308 }
1309
1310 return nullptr;
1311}
1312
1313
1314std::vector<SCH_LINE*> SCH_SCREEN::GetBusesAndWires( const VECTOR2I& aPosition,
1315 bool aIgnoreEndpoints ) const
1316{
1317 std::vector<SCH_LINE*> retVal;
1318
1319 for( SCH_ITEM* item : Items().Overlapping( SCH_LINE_T, aPosition ) )
1320 {
1321 if( item->IsType( { SCH_ITEM_LOCATE_WIRE_T, SCH_ITEM_LOCATE_BUS_T } ) )
1322 {
1323 SCH_LINE* wire = static_cast<SCH_LINE*>( item );
1324
1325 if( aIgnoreEndpoints && wire->IsEndPoint( aPosition ) )
1326 continue;
1327
1328 if( IsPointOnSegment( wire->GetStartPoint(), wire->GetEndPoint(), aPosition ) )
1329 retVal.push_back( wire );
1330 }
1331 }
1332
1333 return retVal;
1334}
1335
1336
1337std::vector<VECTOR2I> SCH_SCREEN::GetConnections() const
1338{
1339 std::vector<VECTOR2I> retval;
1340
1341 for( SCH_ITEM* item : Items() )
1342 {
1343 // Avoid items that are changing
1344 if( !( item->GetEditFlags() & ( IS_MOVING | IS_DELETED ) ) )
1345 {
1346 std::vector<VECTOR2I> pts = item->GetConnectionPoints();
1347 retval.insert( retval.end(), pts.begin(), pts.end() );
1348 }
1349 }
1350
1351 // We always have some overlapping connection points. Drop duplicates here
1352 std::sort( retval.begin(), retval.end(),
1353 []( const VECTOR2I& a, const VECTOR2I& b ) -> bool
1354 {
1355 return a.x < b.x || ( a.x == b.x && a.y < b.y );
1356 } );
1357
1358 retval.erase( std::unique( retval.begin(), retval.end() ), retval.end() );
1359
1360 return retval;
1361}
1362
1363
1364std::vector<VECTOR2I> SCH_SCREEN::GetNeededJunctions( const std::deque<EDA_ITEM*>& aItems ) const
1365{
1366 std::vector<VECTOR2I> pts;
1367 std::vector<VECTOR2I> connections = GetConnections();
1368
1369 for( const EDA_ITEM* edaItem : aItems )
1370 {
1371 const SCH_ITEM* item = dynamic_cast<const SCH_ITEM*>( edaItem );
1372
1373 if( !item || !item->IsConnectable() )
1374 continue;
1375
1376 std::vector<VECTOR2I> new_pts = item->GetConnectionPoints();
1377 pts.insert( pts.end(), new_pts.begin(), new_pts.end() );
1378
1379 // If the item is a line, we also add any connection points from the rest of the schematic
1380 // that terminate on the line after it is moved.
1381 if( item->Type() == SCH_LINE_T )
1382 {
1383 SCH_LINE* line = (SCH_LINE*) item;
1384
1385 for( const VECTOR2I& pt : connections )
1386 {
1387 if( IsPointOnSegment( line->GetStartPoint(), line->GetEndPoint(), pt ) )
1388 pts.push_back( pt );
1389 }
1390 }
1391 }
1392
1393 // We always have some overlapping connection points. Drop duplicates here
1394 std::sort( pts.begin(), pts.end(),
1395 []( const VECTOR2I& a, const VECTOR2I& b ) -> bool
1396 {
1397 return a.x < b.x || ( a.x == b.x && a.y < b.y );
1398 } );
1399
1400 pts.erase( unique( pts.begin(), pts.end() ), pts.end() );
1401
1402 // We only want the needed junction points, remove all the others
1403 pts.erase( std::remove_if( pts.begin(), pts.end(),
1404 [this]( const VECTOR2I& a ) -> bool
1405 {
1406 return !IsExplicitJunctionNeeded( a );
1407 } ),
1408 pts.end() );
1409
1410 return pts;
1411}
1412
1413
1414SCH_LABEL_BASE* SCH_SCREEN::GetLabel( const VECTOR2I& aPosition, int aAccuracy ) const
1415{
1416 for( SCH_ITEM* item : Items().Overlapping( aPosition, aAccuracy ) )
1417 {
1418 switch( item->Type() )
1419 {
1420 case SCH_LABEL_T:
1421 case SCH_GLOBAL_LABEL_T:
1422 case SCH_HIER_LABEL_T:
1424 if( item->HitTest( aPosition, aAccuracy ) )
1425 return static_cast<SCH_LABEL_BASE*>( item );
1426
1427 break;
1428
1429 default:
1430 ;
1431 }
1432 }
1433
1434 return nullptr;
1435}
1436
1437
1439{
1440 wxCHECK( aLibSymbol, /* void */ );
1441
1442 wxString libSymbolName = aLibSymbol->GetLibId().Format().wx_str();
1443
1444 auto it = m_libSymbols.find( libSymbolName );
1445
1446 if( it != m_libSymbols.end() )
1447 {
1448 delete it->second;
1449 m_libSymbols.erase( it );
1450 }
1451
1452 m_libSymbols[libSymbolName] = aLibSymbol;
1453}
1454
1455
1457{
1458 SCHEMATIC* schematic = Schematic();
1459
1460 const std::vector<wxString>* embeddedFonts = schematic->GetEmbeddedFiles()->UpdateFontFiles();
1461
1462 for( auto& [name, libSym] : m_libSymbols )
1463 {
1464 for( auto& [filename, embeddedFile] : libSym->EmbeddedFileMap() )
1465 {
1466 EMBEDDED_FILES::EMBEDDED_FILE* file = schematic->GetEmbeddedFile( filename );
1467
1468 if( file )
1469 {
1470 embeddedFile->compressedEncodedData = file->compressedEncodedData;
1471 embeddedFile->decompressedData = file->decompressedData;
1472 embeddedFile->data_hash = file->data_hash;
1473 embeddedFile->is_valid = file->is_valid;
1474 }
1475 }
1476
1477 libSym->RunOnChildren(
1478 [&]( SCH_ITEM* aChild )
1479 {
1480 if( EDA_TEXT* textItem = dynamic_cast<EDA_TEXT*>( aChild ) )
1481 textItem->ResolveFont( embeddedFonts );
1482 },
1484 }
1485
1486 std::vector<SCH_ITEM*> items_to_update;
1487
1488 for( SCH_ITEM* item : Items() )
1489 {
1490 bool update = false;
1491
1492 if( EDA_TEXT* textItem = dynamic_cast<EDA_TEXT*>( item ) )
1493 update |= textItem->ResolveFont( embeddedFonts );
1494
1495 item->RunOnChildren(
1496 [&]( SCH_ITEM* aChild )
1497 {
1498 if( EDA_TEXT* textItem = dynamic_cast<EDA_TEXT*>( aChild ) )
1499 update |= textItem->ResolveFont( embeddedFonts );
1500 },
1502
1503 if( update )
1504 items_to_update.push_back( item );
1505 }
1506
1507 for( SCH_ITEM* item : items_to_update )
1508 Update( item );
1509}
1510
1511
1512void SCH_SCREEN::AddBusAlias( std::shared_ptr<BUS_ALIAS> aAlias )
1513{
1514 if( SCHEMATIC* schematic = Schematic() )
1515 schematic->AddBusAlias( aAlias );
1516}
1517
1518
1520{
1521 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1522 {
1523 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1524
1525 // Add missing value and footprint instance data for legacy schematics.
1526 for( const SCH_SYMBOL_INSTANCE& instance : symbol->GetInstances() )
1527 {
1528 symbol->AddHierarchicalReference( instance.m_Path, instance.m_Reference,
1529 instance.m_Unit );
1530 }
1531 }
1532}
1533
1534
1536{
1537 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1538 {
1539 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1540
1541 // Fix pre-8.0 legacy power symbols with invisible pins
1542 // that have mismatched pin names and value fields
1543 if( symbol->GetLibSymbolRef()
1544 && symbol->GetLibSymbolRef()->IsGlobalPower()
1545 && symbol->GetAllLibPins().size() > 0
1546 && symbol->GetAllLibPins()[0]->IsGlobalPower()
1547 && !symbol->GetAllLibPins()[0]->IsVisible() )
1548 {
1549 symbol->SetValueFieldText( symbol->GetAllLibPins()[0]->GetName() );
1550 }
1551 }
1552}
1553
1554
1556 std::vector<wxString>& aMatches )
1557{
1558 wxString searchName = aSymbol.GetLibId().GetUniStringLibId();
1559
1560 if( m_libSymbols.find( searchName ) != m_libSymbols.end() )
1561 aMatches.emplace_back( searchName );
1562
1563 searchName = aSymbol.GetLibId().GetUniStringLibItemName() + wxS( "_" );
1564
1565 long tmp;
1566 wxString suffix;
1567
1568 for( auto& pair : m_libSymbols )
1569 {
1570 if( pair.first.StartsWith( searchName, &suffix ) && suffix.ToLong( &tmp ) )
1571 aMatches.emplace_back( pair.first );
1572 }
1573
1574 return aMatches.size();
1575}
1576
1577
1578void SCH_SCREEN::PruneOrphanedSymbolInstances( const wxString& aProjectName,
1579 const SCH_SHEET_LIST& aValidSheetPaths )
1580{
1581 // The project name cannot be empty. Projects older than 7.0 did not save project names
1582 // when saving instance data. Running this algorithm with an empty project name would
1583 // clobber all instance data for projects other than the current one when a schematic
1584 // file is shared across multiple projects. Because running the schematic editor in
1585 // stand alone mode can result in an empty project name, do not assert here.
1586 if( aProjectName.IsEmpty() )
1587 return;
1588
1589 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1590 {
1591 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1592
1593 wxCHECK2( symbol, continue );
1594
1595 std::set<KIID_PATH> pathsToPrune;
1596 const std::vector<SCH_SYMBOL_INSTANCE> instances = symbol->GetInstances();
1597
1598 for( const SCH_SYMBOL_INSTANCE& instance : instances )
1599 {
1600 // Ignore instance paths from other projects.
1601 if( aProjectName != instance.m_ProjectName )
1602 continue;
1603
1604 std::optional<SCH_SHEET_PATH> pathFound =
1605 aValidSheetPaths.GetSheetPathByKIIDPath( instance.m_Path );
1606
1607 // Check for paths that do not exist in the current project and paths that do
1608 // not contain the current symbol.
1609 if( !pathFound )
1610 pathsToPrune.emplace( instance.m_Path );
1611 else if( pathFound.value().LastScreen() != this )
1612 pathsToPrune.emplace( pathFound.value().Path() );
1613 }
1614
1615 for( const KIID_PATH& sheetPath : pathsToPrune )
1616 {
1617 wxLogTrace( traceSchSheetPaths, wxS( "Pruning project '%s' symbol instance %s." ),
1618 aProjectName, sheetPath.AsString() );
1619 symbol->RemoveInstance( sheetPath );
1620 }
1621 }
1622}
1623
1624
1625void SCH_SCREEN::PruneOrphanedSheetInstances( const wxString& aProjectName,
1626 const SCH_SHEET_LIST& aValidSheetPaths )
1627{
1628 // The project name cannot be empty. Projects older than 7.0 did not save project names
1629 // when saving instance data. Running this algorithm with an empty project name would
1630 // clobber all instance data for projects other than the current one when a schematic
1631 // file is shared across multiple projects. Because running the schematic editor in
1632 // stand alone mode can result in an empty project name, do not assert here.
1633 if( aProjectName.IsEmpty() )
1634 return;
1635
1636 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1637 {
1638 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1639
1640 wxCHECK2( sheet, continue );
1641
1642 std::set<KIID_PATH> pathsToPrune;
1643 const std::vector<SCH_SHEET_INSTANCE> instances = sheet->GetInstances();
1644
1645 for( const SCH_SHEET_INSTANCE& instance : instances )
1646 {
1647 // Ignore instance paths from other projects.
1648 if( aProjectName != instance.m_ProjectName )
1649 continue;
1650
1651 std::optional<SCH_SHEET_PATH> pathFound =
1652 aValidSheetPaths.GetSheetPathByKIIDPath( instance.m_Path );
1653
1654 // Check for paths that do not exist in the current project and paths that do
1655 // not contain the current symbol.
1656 if( !pathFound )
1657 pathsToPrune.emplace( instance.m_Path );
1658 else if( pathFound.value().LastScreen() != this )
1659 pathsToPrune.emplace( pathFound.value().Path() );
1660 }
1661
1662 for( const KIID_PATH& sheetPath : pathsToPrune )
1663 {
1664 wxLogTrace( traceSchSheetPaths, wxS( "Pruning project '%s' sheet instance %s." ),
1665 aProjectName, sheetPath.AsString() );
1666 sheet->RemoveInstance( sheetPath );
1667 }
1668 }
1669}
1670
1671
1673{
1674 wxString trimmedFieldName;
1675
1676 for( const SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1677 {
1678 const SCH_SYMBOL* symbol = static_cast<const SCH_SYMBOL*>( item );
1679
1680 wxCHECK2( symbol, continue );
1681
1682 for( const SCH_FIELD& field : symbol->GetFields() )
1683 {
1684 trimmedFieldName = field.GetName();
1685 trimmedFieldName.Trim();
1686 trimmedFieldName.Trim( false );
1687
1688 if( field.GetName() != trimmedFieldName )
1689 return true;
1690 }
1691 }
1692
1693 return false;
1694}
1695
1696
1697std::set<wxString> SCH_SCREEN::GetSheetNames() const
1698{
1699 std::set<wxString> retv;
1700
1701 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1702 {
1703 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1704
1705 wxCHECK2( sheet, continue );
1706
1707 retv.emplace( sheet->GetName() );
1708 }
1709
1710 return retv;
1711}
1712
1713
1715{
1716 wxCHECK( Schematic(), false );
1717
1718 SCH_SHEET_LIST hierarchy = Schematic()->Hierarchy();
1719
1720 for( const SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1721 {
1722 const SCH_SYMBOL* symbol = static_cast<const SCH_SYMBOL*>( item );
1723
1724 const std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1725
1726 for( const SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1727 {
1728 if( !hierarchy.HasPath( instance.m_Path ) )
1729 return true;
1730 }
1731 }
1732
1733 return false;
1734}
1735
1736
1737wxString SCH_SCREEN::GroupsSanityCheck( bool repair )
1738{
1739 if( repair )
1740 {
1741 while( GroupsSanityCheckInternal( repair ) != wxEmptyString )
1742 {
1743 };
1744
1745 return wxEmptyString;
1746 }
1747 return GroupsSanityCheckInternal( repair );
1748}
1749
1750
1752{
1753 // Cycle detection
1754 //
1755 // Each group has at most one parent group.
1756 // So we start at group 0 and traverse the parent chain, marking groups seen along the way.
1757 // If we ever see a group that we've already marked, that's a cycle.
1758 // If we reach the end of the chain, we know all groups in that chain are not part of any cycle.
1759 //
1760 // Algorithm below is linear in the # of groups because each group is visited only once.
1761 // There may be extra time taken due to the container access calls and iterators.
1762 //
1763 // Groups we know are cycle free
1764 std::unordered_set<EDA_GROUP*> knownCycleFreeGroups;
1765 // Groups in the current chain we're exploring.
1766 std::unordered_set<EDA_GROUP*> currentChainGroups;
1767 // Groups we haven't checked yet.
1768 std::unordered_set<EDA_GROUP*> toCheckGroups;
1769
1770 // Initialize set of groups and generators to check that could participate in a cycle.
1771 for( SCH_ITEM* item : Items().OfType( SCH_GROUP_T ) )
1772 toCheckGroups.insert( static_cast<SCH_GROUP*>( item ) );
1773
1774 while( !toCheckGroups.empty() )
1775 {
1776 currentChainGroups.clear();
1777 EDA_GROUP* group = *toCheckGroups.begin();
1778
1779 while( true )
1780 {
1781 if( currentChainGroups.find( group ) != currentChainGroups.end() )
1782 {
1783 if( repair )
1784 Remove( static_cast<SCH_ITEM*>( group->AsEdaItem() ) );
1785
1786 return "Cycle detected in group membership";
1787 }
1788 else if( knownCycleFreeGroups.find( group ) != knownCycleFreeGroups.end() )
1789 {
1790 // Parent is a group we know does not lead to a cycle
1791 break;
1792 }
1793
1794 currentChainGroups.insert( group );
1795 // We haven't visited currIdx yet, so it must be in toCheckGroups
1796 toCheckGroups.erase( group );
1797
1798 group = group->AsEdaItem()->GetParentGroup();
1799
1800 if( !group )
1801 {
1802 // end of chain and no cycles found in this chain
1803 break;
1804 }
1805 }
1806
1807 // No cycles found in chain, so add it to set of groups we know don't participate
1808 // in a cycle.
1809 knownCycleFreeGroups.insert( currentChainGroups.begin(), currentChainGroups.end() );
1810 }
1811
1812 // Success
1813 return "";
1814}
1815
1816
1818{
1819 wxCHECK( Schematic() && !m_fileName.IsEmpty(), false );
1820
1821 wxFileName thisScreenFn( m_fileName );
1822 wxFileName thisProjectFn( Schematic()->Project().GetProjectFullName() );
1823
1824 wxCHECK( thisProjectFn.IsAbsolute(), false );
1825
1826 if( thisScreenFn.GetDirCount() < thisProjectFn.GetDirCount() )
1827 return false;
1828
1829 while( thisProjectFn.GetDirCount() != thisScreenFn.GetDirCount() )
1830 thisScreenFn.RemoveLastDir();
1831
1832 return thisScreenFn.GetPath() == thisProjectFn.GetPath();
1833}
1834
1835
1836std::set<wxString> SCH_SCREEN::GetVariantNames() const
1837{
1838 std::set<wxString> variantNames;
1839
1840 for( const SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1841 {
1842 const SCH_SYMBOL* symbol = static_cast<const SCH_SYMBOL*>( item );
1843
1844 wxCHECK2( symbol, continue );
1845
1846 const std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1847
1848 for( const SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1849 {
1850 for( const auto& [name, variant] : instance.m_Variants )
1851 variantNames.emplace( name );
1852 }
1853 }
1854
1855 for( const SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1856 {
1857 const SCH_SHEET* sheet = static_cast<const SCH_SHEET*>( item );
1858
1859 wxCHECK2( sheet, continue );
1860
1861 const std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1862
1863 for( const SCH_SHEET_INSTANCE& instance : sheetInstances )
1864 {
1865 for( const auto& [name, variant] : instance.m_Variants )
1866 variantNames.emplace( name );
1867 }
1868 }
1869
1870 return variantNames;
1871}
1872
1873
1874void SCH_SCREEN::DeleteVariant( const wxString& aVariantName, SCH_COMMIT* aCommit )
1875{
1876 wxCHECK( !aVariantName.IsEmpty(), /* void */ );
1877
1878 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1879 {
1880 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1881
1882 wxCHECK2( symbol, continue );
1883
1884 std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1885
1886 for( SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1887 {
1888 if( instance.m_Variants.contains( aVariantName ) )
1889 {
1890 if( aCommit )
1891 aCommit->Modify( item, this );
1892
1893 symbol->DeleteVariant( instance.m_Path, aVariantName );
1894 }
1895 }
1896 }
1897
1898 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1899 {
1900 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1901
1902 wxCHECK2( sheet, continue );
1903
1904 std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1905
1906 for( SCH_SHEET_INSTANCE& instance : sheetInstances )
1907 {
1908 if( instance.m_Variants.contains( aVariantName ) )
1909 {
1910 if( aCommit )
1911 aCommit->Modify( item, this );
1912
1913 sheet->DeleteVariant( instance.m_Path, aVariantName );
1914 }
1915 }
1916 }
1917}
1918
1919
1920void SCH_SCREEN::RenameVariant( const wxString& aOldName, const wxString& aNewName,
1921 SCH_COMMIT* aCommit )
1922{
1923 wxCHECK( !aOldName.IsEmpty() && !aNewName.IsEmpty(), /* void */ );
1924
1925 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1926 {
1927 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1928
1929 wxCHECK2( symbol, continue );
1930
1931 std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1932
1933 for( SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1934 {
1935 if( instance.m_Variants.contains( aOldName ) )
1936 {
1937 if( aCommit )
1938 aCommit->Modify( item, this );
1939
1940 symbol->RenameVariant( instance.m_Path, aOldName, aNewName );
1941 }
1942 }
1943 }
1944
1945 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1946 {
1947 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1948
1949 wxCHECK2( sheet, continue );
1950
1951 std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1952
1953 for( SCH_SHEET_INSTANCE& instance : sheetInstances )
1954 {
1955 if( instance.m_Variants.contains( aOldName ) )
1956 {
1957 if( aCommit )
1958 aCommit->Modify( item, this );
1959
1960 sheet->RenameVariant( instance.m_Path, aOldName, aNewName );
1961 }
1962 }
1963 }
1964}
1965
1966
1967void SCH_SCREEN::CopyVariant( const wxString& aSourceVariant, const wxString& aNewVariant,
1968 SCH_COMMIT* aCommit )
1969{
1970 wxCHECK( !aSourceVariant.IsEmpty() && !aNewVariant.IsEmpty(), /* void */ );
1971
1972 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
1973 {
1974 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
1975
1976 wxCHECK2( symbol, continue );
1977
1978 std::vector<SCH_SYMBOL_INSTANCE> symbolInstances = symbol->GetInstances();
1979
1980 for( SCH_SYMBOL_INSTANCE& instance : symbolInstances )
1981 {
1982 if( instance.m_Variants.contains( aSourceVariant ) )
1983 {
1984 if( aCommit )
1985 aCommit->Modify( item, this );
1986
1987 symbol->CopyVariant( instance.m_Path, aSourceVariant, aNewVariant );
1988 }
1989 }
1990 }
1991
1992 for( SCH_ITEM* item : Items().OfType( SCH_SHEET_T ) )
1993 {
1994 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( item );
1995
1996 wxCHECK2( sheet, continue );
1997
1998 std::vector<SCH_SHEET_INSTANCE> sheetInstances = sheet->GetInstances();
1999
2000 for( SCH_SHEET_INSTANCE& instance : sheetInstances )
2001 {
2002 if( instance.m_Variants.contains( aSourceVariant ) )
2003 {
2004 if( aCommit )
2005 aCommit->Modify( item, this );
2006
2007 sheet->CopyVariant( instance.m_Path, aSourceVariant, aNewVariant );
2008 }
2009 }
2010 }
2011}
2012
2013
2014#if defined(DEBUG)
2015void SCH_SCREEN::Show( int nestLevel, std::ostream& os ) const
2016{
2017 // for now, make it look like XML, expand on this later.
2018 NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() << ">\n";
2019
2020 for( const SCH_ITEM* item : Items() )
2021 item->Show( nestLevel + 1, os );
2022
2023 NestedSpace( nestLevel, os ) << "</" << GetClass().Lower().mb_str() << ">\n";
2024}
2025#endif
2026
2027
2029{
2030 m_index = 0;
2031 buildScreenList( aSheet );
2032}
2033
2034
2038
2039
2041{
2042 m_index = 0;
2043
2044 if( m_screens.size() > 0 )
2045 return m_screens[0];
2046
2047 return nullptr;
2048}
2049
2050
2052{
2053 if( m_index < m_screens.size() )
2054 m_index++;
2055
2056 return GetScreen( m_index );
2057}
2058
2059
2060SCH_SCREEN* SCH_SCREENS::GetScreen( unsigned int aIndex ) const
2061{
2062 if( aIndex < m_screens.size() )
2063 return m_screens[ aIndex ];
2064
2065 return nullptr;
2066}
2067
2068
2069SCH_SHEET* SCH_SCREENS::GetSheet( unsigned int aIndex ) const
2070{
2071 if( aIndex < m_sheets.size() )
2072 return m_sheets[ aIndex ];
2073
2074 return nullptr;
2075}
2076
2077
2079{
2080 if( aScreen == nullptr )
2081 return;
2082
2083 for( const SCH_SCREEN* screen : m_screens )
2084 {
2085 if( screen == aScreen )
2086 return;
2087 }
2088
2089 m_screens.push_back( aScreen );
2090 m_sheets.push_back( aSheet );
2091}
2092
2093
2095{
2096 if( aSheet && aSheet->Type() == SCH_SHEET_T )
2097 {
2098 SCH_SCREEN* screen = aSheet->GetScreen();
2099
2100 if( !screen )
2101 return;
2102
2103 addScreenToList( screen, aSheet );
2104
2105 for( SCH_ITEM* item : screen->Items().OfType( SCH_SHEET_T ) )
2106 buildScreenList( static_cast<SCH_SHEET*>( item ) );
2107 }
2108}
2109
2110
2112{
2113 SCH_SCREEN* first = GetFirst();
2114
2115 if( !first )
2116 return;
2117
2118 SCHEMATIC* sch = first->Schematic();
2119
2120 wxCHECK_RET( sch, "Null schematic in SCH_SCREENS::ClearAnnotationOfNewSheetPaths" );
2121
2122 // Clear the annotation for symbols inside new sheetpaths not already in aInitialSheetList
2123 SCH_SCREENS screensList( sch->Root() ); // The list of screens, shared by sheet paths
2124 screensList.BuildClientSheetPathList(); // build the shared by sheet paths, by screen
2125
2126 // Search for new sheet paths, not existing in aInitialSheetPathList
2127 // and existing in sheetpathList
2128 for( SCH_SHEET_PATH& sheetpath : sch->Hierarchy() )
2129 {
2130 bool path_exists = false;
2131
2132 for( const SCH_SHEET_PATH& existing_sheetpath: aInitialSheetPathList )
2133 {
2134 if( existing_sheetpath.Path() == sheetpath.Path() )
2135 {
2136 path_exists = true;
2137 break;
2138 }
2139 }
2140
2141 if( !path_exists )
2142 {
2143 // A new sheet path is found: clear the annotation corresponding to this new path:
2144 SCH_SCREEN* curr_screen = sheetpath.LastScreen();
2145
2146 // Clear annotation and create the AR for this path, if not exists,
2147 // when the screen is shared by sheet paths.
2148 // Otherwise ClearAnnotation do nothing, because the F1 field is used as
2149 // reference default value and takes the latest displayed value
2150 curr_screen->EnsureAlternateReferencesExist();
2151 curr_screen->ClearAnnotation( &sheetpath, false );
2152 }
2153 }
2154}
2155
2156
2158{
2159 std::vector<SCH_ITEM*> items;
2160 int count = 0;
2161
2162 auto timestamp_cmp = []( const EDA_ITEM* a, const EDA_ITEM* b ) -> bool
2163 {
2164 return a->m_Uuid < b->m_Uuid;
2165 };
2166
2167 std::set<EDA_ITEM*, decltype( timestamp_cmp )> unique_stamps( timestamp_cmp );
2168
2169 // Collect ALL items from all screens to detect duplicate UUIDs.
2170 // This is essential for design blocks where multiple instances of the same content
2171 // are placed on the same sheet - each instance needs unique UUIDs for items like
2172 // wires, junctions, and groups, not just symbols and sheets.
2173 for( SCH_SCREEN* screen : m_screens )
2174 {
2175 for( SCH_ITEM* item : screen->Items() )
2176 items.push_back( item );
2177 }
2178
2179 if( items.size() < 2 )
2180 return 0;
2181
2182 for( EDA_ITEM* item : items )
2183 {
2184 if( !unique_stamps.insert( item ).second )
2185 {
2186 // Reset to fully random UUID. This may lose reference, but better to be
2187 // deterministic about it rather than to have duplicate UUIDs with random
2188 // side-effects.
2189 const_cast<KIID&>( item->m_Uuid ) = KIID();
2190 count++;
2191
2192 // @todo If the item is a sheet, we need to descend the hierarchy from the sheet
2193 // and replace all instances of the changed UUID in sheet paths. Otherwise,
2194 // all instance paths with the sheet's UUID will get clobbered.
2195 }
2196 }
2197
2198 return count;
2199}
2200
2201
2203{
2204 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2205 {
2206 for( SCH_ITEM* item : screen->Items() )
2207 item->ClearEditFlags();
2208 }
2209}
2210
2211
2213{
2214 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2215 {
2216 for( SCH_ITEM* item : screen->Items().OfType( SCH_MARKER_T ) )
2217 {
2218 if( item == aMarker )
2219 {
2220 screen->DeleteItem( item );
2221 return;
2222 }
2223 }
2224 }
2225}
2226
2227
2228void SCH_SCREENS::DeleteMarkers( enum MARKER_BASE::MARKER_T aMarkerType, int aErrorCode,
2229 bool aIncludeExclusions )
2230{
2231 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2232 {
2233 std::vector<SCH_ITEM*> markers;
2234
2235 for( SCH_ITEM* item : screen->Items().OfType( SCH_MARKER_T ) )
2236 {
2237 SCH_MARKER* marker = static_cast<SCH_MARKER*>( item );
2238 std::shared_ptr<RC_ITEM>rcItem = marker->GetRCItem();
2239
2240 if( marker->GetMarkerType() == aMarkerType
2241 && ( aErrorCode == ERCE_UNSPECIFIED || rcItem->GetErrorCode() == aErrorCode )
2242 && ( !marker->IsExcluded() || aIncludeExclusions ) )
2243 {
2244 markers.push_back( item );
2245 }
2246 }
2247
2248 for( SCH_ITEM* marker : markers )
2249 screen->DeleteItem( marker );
2250 }
2251}
2252
2253
2255 bool aIncludeExclusions )
2256{
2257 DeleteMarkers( aMarkerType, ERCE_UNSPECIFIED, aIncludeExclusions );
2258}
2259
2260
2262{
2263 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2264 screen->UpdateSymbolLinks( aReporter );
2265
2266 SCH_SCREEN* first = GetFirst();
2267
2268 if( !first )
2269 return;
2270
2271 SCHEMATIC* sch = first->Schematic();
2272
2273 wxCHECK_RET( sch, "Null schematic in SCH_SCREENS::UpdateSymbolLinks" );
2274
2275 SCH_SHEET_LIST sheets = sch->Hierarchy();
2276
2277 // All of the library symbols have been replaced with copies so the connection graph
2278 // pointers are stale.
2279 if( sch->ConnectionGraph() )
2280 sch->ConnectionGraph()->Recalculate( sheets, true );
2281}
2282
2283
2285{
2286 bool has_symbols = false;
2287
2288 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2289 {
2290 for( SCH_ITEM* item : screen->Items().OfType( SCH_SYMBOL_T ) )
2291 {
2292 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2293 has_symbols = true;
2294
2295 if( !symbol->GetLibId().GetLibNickname().empty() )
2296 return false;
2297 }
2298 }
2299
2300 // return true (i.e. has no fully defined symbol) only if at least one symbol is found
2301 return has_symbols ? true : false;
2302}
2303
2304
2305size_t SCH_SCREENS::GetLibNicknames( wxArrayString& aLibNicknames )
2306{
2307 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2308 {
2309 for( SCH_ITEM* item : screen->Items().OfType( SCH_SYMBOL_T ) )
2310 {
2311 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2312 const UTF8& nickname = symbol->GetLibId().GetLibNickname();
2313
2314 if( !nickname.empty() && ( aLibNicknames.Index( nickname ) == wxNOT_FOUND ) )
2315 aLibNicknames.Add( nickname );
2316 }
2317 }
2318
2319 return aLibNicknames.GetCount();
2320}
2321
2322
2323int SCH_SCREENS::ChangeSymbolLibNickname( const wxString& aFrom, const wxString& aTo )
2324{
2325 SCH_SCREEN* screen;
2326 int cnt = 0;
2327
2328 for( screen = GetFirst(); screen; screen = GetNext() )
2329 {
2330 for( SCH_ITEM* item : screen->Items().OfType( SCH_SYMBOL_T ) )
2331 {
2332 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2333
2334 if( symbol->GetLibId().GetLibNickname().wx_str() != aFrom )
2335 continue;
2336
2337 LIB_ID id = symbol->GetLibId();
2338 id.SetLibNickname( aTo );
2339 symbol->SetLibId( id );
2340 cnt++;
2341 }
2342 }
2343
2344 return cnt;
2345}
2346
2347
2348bool SCH_SCREENS::HasSchematic( const wxString& aSchematicFileName )
2349{
2350 for( const SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2351 {
2352 if( screen->GetFileName() == aSchematicFileName )
2353 return true;
2354 }
2355
2356 return false;
2357}
2358
2359
2361{
2362 SCH_SCREEN* first = GetFirst();
2363
2364 if( !first )
2365 return;
2366
2367 SCHEMATIC* sch = first->Schematic();
2368
2369 wxCHECK_RET( sch, "Null schematic in SCH_SCREENS::BuildClientSheetPathList" );
2370
2371 // Don't build until we have a hierarchy to work with. This can be called before the hierarchy is built.
2372 if( !sch->HasHierarchy() )
2373 return;
2374
2375 for( SCH_SCREEN* curr_screen = GetFirst(); curr_screen; curr_screen = GetNext() )
2376 curr_screen->GetClientSheetPaths().clear();
2377
2378 for( SCH_SHEET_PATH& sheetpath : sch->Hierarchy() )
2379 {
2380 SCH_SCREEN* used_screen = sheetpath.LastScreen();
2381
2382 // Search for the used_screen in list and add this unique sheet path:
2383 for( SCH_SCREEN* curr_screen = GetFirst(); curr_screen; curr_screen = GetNext() )
2384 {
2385 if( used_screen == curr_screen )
2386 {
2387 curr_screen->GetClientSheetPaths().push_back( sheetpath );
2388 break;
2389 }
2390 }
2391 }
2392}
2393
2394
2396{
2397 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2398 screen->SetLegacySymbolInstanceData();
2399}
2400
2401
2403{
2404 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2405 screen->FixLegacyPowerSymbolMismatches();
2406}
2407
2408
2410{
2411 LOCALE_IO toggle;
2412
2413 // V6 schematics may specify model names in Value fields, which we don't do in V7.
2414 // Migrate by adding an equivalent model for these symbols.
2415
2416 for( SCH_ITEM* item : Items().OfType( SCH_SYMBOL_T ) )
2417 {
2418 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
2419 SIM_MODEL::MigrateSimModel<SCH_SYMBOL>( *symbol, &Schematic()->Project() );
2420 }
2421}
2422
2423
2424void SCH_SCREENS::PruneOrphanedSymbolInstances( const wxString& aProjectName,
2425 const SCH_SHEET_LIST& aValidSheetPaths )
2426{
2427 if( aProjectName.IsEmpty() )
2428 return;
2429
2430 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2431 screen->PruneOrphanedSymbolInstances( aProjectName, aValidSheetPaths );
2432}
2433
2434
2435void SCH_SCREENS::PruneOrphanedSheetInstances( const wxString& aProjectName,
2436 const SCH_SHEET_LIST& aValidSheetPaths )
2437{
2438 if( aProjectName.IsEmpty() )
2439 return;
2440
2441 for( SCH_SCREEN* screen = GetFirst(); screen; screen = GetNext() )
2442 screen->PruneOrphanedSheetInstances( aProjectName, aValidSheetPaths );
2443}
2444
2445
2447{
2448 for( const SCH_SCREEN* screen : m_screens )
2449 {
2450 if( screen->HasSymbolFieldNamesWithWhiteSpace() )
2451 return true;
2452 }
2453
2454 return false;
2455}
2456
2457
2458std::set<wxString> SCH_SCREENS::GetVariantNames() const
2459{
2460 std::set<wxString> variantNames;
2461
2462 for( const SCH_SCREEN* screen : m_screens )
2463 {
2464 for( const wxString& variantName : screen->GetVariantNames() )
2465 variantNames.emplace( variantName );
2466 }
2467
2468 return variantNames;
2469}
2470
2471
2472void SCH_SCREENS::DeleteVariant( const wxString& aVariantName, SCH_COMMIT* aCommit )
2473{
2474 wxCHECK( !aVariantName.IsEmpty(), /* void */ );
2475
2476 for( SCH_SCREEN* screen : m_screens )
2477 screen->DeleteVariant( aVariantName, aCommit );
2478}
2479
2480
2481void SCH_SCREENS::RenameVariant( const wxString& aOldName, const wxString& aNewName,
2482 SCH_COMMIT* aCommit )
2483{
2484 wxCHECK( !aOldName.IsEmpty() && !aNewName.IsEmpty(), /* void */ );
2485
2486 for( SCH_SCREEN* screen : m_screens )
2487 screen->RenameVariant( aOldName, aNewName, aCommit );
2488}
2489
2490
2491void SCH_SCREENS::CopyVariant( const wxString& aSourceVariant, const wxString& aNewVariant,
2492 SCH_COMMIT* aCommit )
2493{
2494 wxCHECK( !aSourceVariant.IsEmpty() && !aNewVariant.IsEmpty(), /* void */ );
2495
2496 for( SCH_SCREEN* screen : m_screens )
2497 screen->CopyVariant( aSourceVariant, aNewVariant, aCommit );
2498}
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:965
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:99
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
Definition eda_item.cpp:120
void SetFlags(EDA_ITEM_FLAGS aMask)
Definition eda_item.h:148
const KIID m_Uuid
Definition eda_item.h:527
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:111
EDA_ITEM * GetParent() const
Definition eda_item.h:113
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
Definition eda_item.h:152
virtual void SetParent(EDA_ITEM *aParent)
Definition eda_item.cpp:93
EDA_ITEM(EDA_ITEM *parent, KICAD_T idType, bool isSCH_ITEM=false, bool isBOARD_ITEM=false)
Definition eda_item.cpp:41
bool IsNew() const
Definition eda_item.h:125
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:169
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
Definition eda_shape.h:216
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
Definition eda_shape.h:174
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:152
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
Definition lib_symbol.h:712
wxString GetName() const override
Definition lib_symbol.h:145
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)
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
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
wxString GetCurrentVariant() const
Return the current variant being edited.
EMBEDDED_FILES * GetEmbeddedFiles() override
CONNECTION_GRAPH * ConnectionGraph() const
Definition schematic.h:199
SCH_SHEET & Root() const
Definition schematic.h:132
SCH_SHEET_PATH & CurrentSheet() const
Definition schematic.h:187
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:168
virtual bool IsEndPoint(const VECTOR2I &aPt) const
Test if aPt is an end point of this schematic object.
Definition sch_item.h:518
virtual bool IsConnectable() const
Definition sch_item.h:527
SCH_LAYER_ID GetLayer() const
Return the layer this item is on.
Definition sch_item.h:341
bool IsConnected(const VECTOR2I &aPoint) const
Test the item to see if it is connected to aPoint.
Definition sch_item.cpp:464
virtual std::vector< VECTOR2I > GetConnectionPoints() const
Add all the connection points for this item to aPoints.
Definition sch_item.h:542
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:992
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:880
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:895
std::vector< SCH_SHEET * > m_sheets
Definition sch_screen.h:894
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:893
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:710
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:707
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:188
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:445
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:694
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:698
double m_LastZoomLevel
last value for the zoom level, useful in Eeschema when changing the current displayed sheet to reuse ...
Definition sch_screen.h:676
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:119
int m_fileFormatVersionAtLoad
Definition sch_screen.h:680
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:679
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:451
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:696
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:133
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:701
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:693
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:704
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:137
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:140
const std::vector< SCH_SHEET_INSTANCE > & GetInstances() const
Definition sch_sheet.h:506
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
std::vector< const SCH_PIN * > GetPins(const SCH_SHEET_PATH *aSheet) const
Retrieve a list of the SCH_PINs for the given sheet path.
bool AddSheetPathReferenceEntryIfMissing(const KIID_PATH &aSheetPath)
Add an instance to the alternate references list (m_instances), if this entry does not already exist.
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.
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.
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
#define DEFAULT_LINE_WIDTH_MILS
The default wire width in mils. (can be changed in preference menu)
static bool empty(const wxTextEntryBase *aCtrl)
#define _(s)
@ NO_RECURSE
Definition eda_item.h:53
#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:73
@ ENTIRE_LENGTH_T
Definition sch_screen.h:74
@ EXCLUDE_END_POINTS_T
Definition sch_screen.h:76
@ END_POINTS_ONLY_T
Definition sch_screen.h:75
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