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