128 bestPosition.
x = pageSize.
x / 2;
129 bestPosition.
y = pageSize.
y / 2;
142 msg.Printf(
_(
"Cannot add %s (no footprint assigned)." ),
151 if( footprint ==
nullptr )
153 msg.Printf(
_(
"Cannot add %s (footprint '%s' not found)." ),
166 msg.Printf(
_(
"Add %s (footprint '%s')." ),
181 pad->SetNetCode( 0 );
196 msg.Printf(
_(
"Added %s (footprint '%s')." ),
209 wxString curClassName, newClassName;
213 curClassName = curClass->
GetName();
225 newClassName = newClass->
GetName();
228 if( curClassName == newClassName )
235 if( curClassName == wxEmptyString && newClassName != wxEmptyString )
237 msg.Printf(
_(
"Change %s component class to '%s'." ),
241 else if( curClassName != wxEmptyString && newClassName == wxEmptyString )
243 msg.Printf(
_(
"Remove %s component class (currently '%s')." ),
249 msg.Printf(
_(
"Change %s component class from '%s' to '%s'." ),
257 wxASSERT_MSG( newClass !=
nullptr,
"Component class should not be nullptr" );
261 if( curClassName == wxEmptyString && newClassName != wxEmptyString )
263 msg.Printf(
_(
"Changed %s component class to '%s'." ),
267 else if( curClassName != wxEmptyString && newClassName == wxEmptyString )
269 msg.Printf(
_(
"Removed %s component class (was '%s')." ),
275 msg.Printf(
_(
"Changed %s component class from '%s' to '%s'." ),
293 msg.Printf(
_(
"Cannot update %s (no footprint assigned)." ),
302 if( newFootprint ==
nullptr )
304 msg.Printf(
_(
"Cannot update %s (footprint '%s' not found)." ),
316 msg.Printf(
_(
"Cannot change %s footprint from '%s' to '%s' (footprint is locked)."),
327 msg.Printf(
_(
"Change %s footprint from '%s' to '%s'."),
341 msg.Printf(
_(
"Could not change %s footprint from '%s' to '%s' (footprint is locked)."),
354 msg.Printf(
_(
"Changed %s footprint from '%s' to '%s'."),
377 copy->SetParentGroup(
nullptr );
380 bool changed =
false;
387 msg.Printf(
_(
"Change %s reference designator to %s." ),
393 msg.Printf(
_(
"Changed %s reference designator to %s." ),
409 msg.Printf(
_(
"Change %s value from %s to %s." ),
416 msg.Printf(
_(
"Changed %s value from %s to %s." ),
431 if( !aNetlistComponent->
GetKIIDs().empty() )
432 new_path.push_back( aNetlistComponent->
GetKIIDs().front() );
434 if( aPcbFootprint->
GetPath() != new_path )
438 msg.Printf(
_(
"Update %s symbol association from %s to %s." ),
445 msg.Printf(
_(
"Updated %s symbol association from %s to %s." ),
451 aPcbFootprint->
SetPath( new_path );
457 nlohmann::ordered_map<wxString, wxString> fpFieldsAsMap;
462 if( field->IsReference() || field->IsValue() || field->IsComponentClass() )
467 fpFieldsAsMap[field->GetName()] = field->GetText();
471 nlohmann::ordered_map<wxString, wxString> compFields = aNetlistComponent->
GetFields();
477 compFields.erase( wxT(
"Component Class" ) );
484 for(
const auto& [
name, value] : compFields )
486 if( fpFieldsAsMap.count(
name ) == 0 || fpFieldsAsMap[
name] != value )
493 for(
const auto& [
name, value] : fpFieldsAsMap )
495 if( compFields.count(
name ) == 0 )
506 msg.Printf(
_(
"Update %s fields." ), aPcbFootprint->
GetReference() );
512 if( field->IsMandatory() )
515 if( compFields.count( field->GetName() ) == 0 )
517 msg.Printf(
_(
"Remove %s footprint fields not in symbol." ),
526 msg.Printf(
_(
"Updated %s fields." ), aPcbFootprint->
GetReference() );
532 for(
auto& [
name, value] : compFields )
541 aPcbFootprint->
Add( newField );
561 std::vector<PCB_FIELD*> fieldList;
562 aPcbFootprint->
GetFields( fieldList,
false );
566 if( field->IsMandatory() )
569 if( compFields.count( field->GetName() ) == 0 )
574 msg.Printf(
_(
"Removed %s footprint fields not in symbol." ),
579 aPcbFootprint->
Remove( field );
596 if( !humanSheetPath.empty() )
597 sheetname = humanSheetPath;
598 else if( aNetlistComponent->
GetProperties().count( wxT(
"Sheetname" ) ) > 0 )
599 sheetname = aNetlistComponent->
GetProperties().at( wxT(
"Sheetname" ) );
601 if( aNetlistComponent->
GetProperties().count( wxT(
"Sheetfile" ) ) > 0 )
602 sheetfile = aNetlistComponent->
GetProperties().at( wxT(
"Sheetfile" ) );
604 if( aNetlistComponent->
GetProperties().count( wxT(
"ki_fp_filters" ) ) > 0 )
605 fpFilters = aNetlistComponent->
GetProperties().at( wxT(
"ki_fp_filters" ) );
611 msg.Printf(
_(
"Update %s sheetname to '%s'." ),
618 msg.Printf(
_(
"Updated %s sheetname to '%s'." ),
630 msg.Printf(
_(
"Update %s sheetfile to '%s'." ),
637 msg.Printf(
_(
"Updated %s sheetfile to '%s'." ),
645 if( fpFilters != aPcbFootprint->
GetFilters() )
649 msg.Printf(
_(
"Update %s footprint filters to '%s'." ),
656 msg.Printf(
_(
"Updated %s footprint filters to '%s'." ),
664 if( ( aNetlistComponent->
GetProperties().count( wxT(
"exclude_from_bom" ) ) > 0 )
669 if( aNetlistComponent->
GetProperties().count( wxT(
"exclude_from_bom" ) ) )
671 msg.Printf(
_(
"Add %s 'exclude from BOM' fabrication attribute." ),
676 msg.Printf(
_(
"Remove %s 'exclude from BOM' fabrication attribute." ),
684 if( aNetlistComponent->
GetProperties().count( wxT(
"exclude_from_bom" ) ) )
687 msg.Printf(
_(
"Added %s 'exclude from BOM' fabrication attribute." ),
692 attributes &= ~FP_EXCLUDE_FROM_BOM;
693 msg.Printf(
_(
"Removed %s 'exclude from BOM' fabrication attribute." ),
704 if( ( aNetlistComponent->
GetProperties().count( wxT(
"dnp" ) ) > 0 )
709 if( aNetlistComponent->
GetProperties().count( wxT(
"dnp" ) ) )
711 msg.Printf(
_(
"Add %s 'Do not place' fabrication attribute." ),
716 msg.Printf(
_(
"Remove %s 'Do not place' fabrication attribute." ),
724 if( aNetlistComponent->
GetProperties().count( wxT(
"dnp" ) ) )
727 msg.Printf(
_(
"Added %s 'Do not place' fabrication attribute." ),
732 attributes &= ~FP_DNP;
733 msg.Printf(
_(
"Removed %s 'Do not place' fabrication attribute." ),
756 msg.Printf(
_(
"Added %s 'duplicate pad numbers are jumpers' attribute." ),
761 msg.Printf(
_(
"Removed %s 'duplicate pad numbers are jumpers' attribute." ),
769 msg.Printf(
_(
"Add %s 'duplicate pad numbers are jumpers' attribute." ),
774 msg.Printf(
_(
"Remove %s 'duplicate pad numbers are jumpers' attribute." ),
788 msg.Printf(
_(
"Updated %s jumper pad groups" ), aPcbFootprint->
GetReference() );
792 msg.Printf(
_(
"Update %s jumper pad groups" ), aPcbFootprint->
GetReference() );
798 if( changed &&
copy )
818 copy->SetParentGroup(
nullptr );
821 bool changed =
false;
824 std::deque<PAD*> pads = aFootprint->
Pads();
825 std::set<wxString> padNetnames;
827 std::sort( pads.begin(), pads.end(),
830 return a->m_Uuid < b->m_Uuid;
837 wxString pinFunction;
848 if(
pad->GetPinFunction() != pinFunction )
851 pad->SetPinFunction( pinFunction );
854 if(
pad->GetPinType() != pinType )
857 pad->SetPinType( pinType );
866 if( !net.
IsValid() || !
pad->IsOnCopperLayer() )
868 if( !
pad->GetNetname().IsEmpty() )
872 msg.Printf(
_(
"Disconnect %s pin %s." ),
878 msg.Printf(
_(
"Disconnected %s pin %s." ),
885 else if(
pad->IsOnCopperLayer() && !
pad->GetNumber().IsEmpty() )
888 msg.Printf(
_(
"No net found for component %s pad %s (no pin %s in symbol)." ),
903 if(
pad->GetNetname().IsEmpty() )
904 pad->SetPinFunction( wxEmptyString );
916 if(
pad->IsNoConnectPad() )
918 netName = wxString::Format( wxS(
"%s" ),
921 for(
int jj = 1; !padNetnames.insert( netName ).second; jj++ )
923 netName = wxString::Format( wxS(
"%s_%d" ),
933 if(
pad->GetNetname() != netName )
936 if( netinfo ==
nullptr )
943 if( netinfo ==
nullptr )
955 msg.Printf(
_(
"Add net %s." ),
960 if( !
pad->GetNetname().IsEmpty() )
966 msg.Printf(
_(
"Reconnect %s pin %s from %s to %s."),
974 msg.Printf(
_(
"Reconnected %s pin %s from %s to %s."),
985 msg.Printf(
_(
"Connect %s pin %s to %s."),
992 msg.Printf(
_(
"Connected %s pin %s to %s."),
1004 pad->SetNet( netinfo );
1014 if( changed &&
copy )
1027 if( !zone->IsOnCopperLayer() || zone->GetIsRuleArea() )
1038 std::set<wxString> netlistNetnames;
1040 for(
int ii = 0; ii < (int) aNetlist.
GetCount(); ii++ )
1044 for(
unsigned jj = 0; jj < component->
GetNetCount(); jj++ )
1056 if( netlistNetnames.count(
via->GetNetname() ) == 0 )
1058 wxString updatedNetname = wxEmptyString;
1067 if( !updatedNetname.IsEmpty() )
1071 wxString originalNetname =
via->GetNetname();
1073 msg.Printf(
_(
"Reconnect via from %s to %s." ),
1088 wxString originalNetname =
via->GetNetname();
1091 via->SetNet( netinfo );
1093 msg.Printf(
_(
"Reconnected via from %s to %s." ),
1103 msg.Printf(
_(
"Via connected to unknown net (%s)." ),
1114 if( !zone->IsOnCopperLayer() || zone->GetIsRuleArea() )
1117 if( netlistNetnames.count( zone->GetNetname() ) == 0 )
1122 wxString updatedNetname = wxEmptyString;
1135 if( updatedNetname.IsEmpty() &&
m_oldToNewNets.count( zone->GetNetname() ) )
1140 if( !updatedNetname.IsEmpty() )
1144 wxString originalNetname = zone->GetNetname();
1146 if( !zone->GetZoneName().IsEmpty() )
1148 msg.Printf(
_(
"Reconnect copper zone '%s' from %s to %s." ),
1149 zone->GetZoneName(),
1155 msg.Printf(
_(
"Reconnect copper zone from %s to %s." ),
1171 wxString originalNetname = zone->GetNetname();
1174 zone->SetNet( netinfo );
1176 if( !zone->GetZoneName().IsEmpty() )
1178 msg.Printf(
_(
"Reconnected copper zone '%s' from %s to %s." ),
1185 msg.Printf(
_(
"Reconnected copper zone from %s to %s." ),
1196 if( !zone->GetZoneName().IsEmpty() )
1198 msg.Printf(
_(
"Copper zone '%s' has no pads connected." ),
1204 VECTOR2I pos = zone->GetPosition();
1215 msg.Printf(
_(
"Copper zone on layer %s at (%s, %s) has no pads connected." ),
1232 std::map<COMPONENT*, FOOTPRINT*>& aFootprintMap )
1240 for(
int i = 0; i < (int) aNetlist.
GetCount(); i++ )
1243 FOOTPRINT* footprint = aFootprintMap[component];
1249 for(
unsigned jj = 0; jj < component->
GetNetCount(); jj++ )
1253 if( padNumber.IsEmpty() )
1256 msg.Printf(
_(
"Symbol %s has pins with no number. These pins can not be matched "
1266 msg.Printf(
_(
"%s pad %s not found in %s." ),
1282 FOOTPRINT* lastPreexistingFootprint =
nullptr;
1285 std::unordered_set<wxString> sheetPaths;
1291 std::map<COMPONENT*, FOOTPRINT*> footprintMap;
1304 net->SetIsCurrent( net->GetNetCode() == 0 );
1312 for(
unsigned i = 0; i < aNetlist.
GetCount(); i++ )
1316 if( component->
GetProperties().count( wxT(
"exclude_from_board" ) ) )
1319 msg.Printf(
_(
"Processing symbol '%s:%s'." ),
1335 base.push_back( uuid );
1337 if( footprint->GetPath() == base )
1346 match = footprint->GetReference().CmpNoCase( component->
GetReference() ) == 0;
1361 footprintMap[ component ] = tmp;
1367 sheetPaths.insert( footprint->GetSheetname() );
1373 if( footprint == lastPreexistingFootprint )
1380 if( matchCount == 0 )
1386 footprintMap[ component ] = footprint;
1395 else if( matchCount > 1 )
1397 msg.Printf(
_(
"Multiple footprints found for %s." ),
1411 bool matched =
false;
1422 if( component && component->
GetProperties().count( wxT(
"exclude_from_board" ) ) == 0 )
1425 if( doDelete && !matched && footprint->IsLocked() && !
m_overrideLocks )
1429 msg.Printf(
_(
"Cannot remove unused footprint %s (footprint is locked)." ),
1430 footprint->GetReference() );
1434 msg.Printf(
_(
"Could not remove unused footprint %s (footprint is locked)." ),
1435 footprint->GetReference() );
1443 if( doDelete && !matched )
1447 msg.Printf(
_(
"Remove unused footprint %s." ),
1448 footprint->GetReference() );
1452 if( footprint->GetParentGroup() )
1456 msg.Printf(
_(
"Removed unused footprint %s." ),
1457 footprint->GetReference() );
1467 for(
PAD*
pad : footprint->Pads() )
1470 pad->GetNet()->SetIsCurrent(
true );
1486 if( !net->IsCurrent() )
1488 msg.Printf(
_(
"Removed unused net %s." ),
1513 for(
const std::pair<const wxString, NETINFO_ITEM*>& addedNet :
m_addedNets )
1514 delete addedNet.second;
constexpr EDA_IU_SCALE pcbIUScale
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr) override
Add a change of the item aItem of type aChangeType to the change list.
wxString GetNetname() const
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
std::map< PAD *, wxString > m_padNets
bool m_deleteUnusedFootprints
void cacheNetname(PAD *aPad, const wxString &aNetname)
bool UpdateNetlist(NETLIST &aNetlist)
Update the board's components according to the new netlist.
wxString getNetname(PAD *aPad)
wxString getPinFunction(PAD *aPad)
std::vector< FOOTPRINT * > m_addedFootprints
std::map< wxString, wxString > m_oldToNewNets
void updateComponentClass(FOOTPRINT *aFootprint, COMPONENT *aNewComponent)
bool updateFootprintParameters(FOOTPRINT *aPcbFootprint, COMPONENT *aNetlistComponent)
std::map< wxString, NETINFO_ITEM * > m_addedNets
bool testConnectivity(NETLIST &aNetlist, std::map< COMPONENT *, FOOTPRINT * > &aFootprintMap)
bool updateCopperZoneNets(NETLIST &aNetlist)
void cachePinFunction(PAD *aPad, const wxString &aPinFunction)
BOARD_NETLIST_UPDATER(PCB_EDIT_FRAME *aFrame, BOARD *aBoard)
bool updateComponentPadConnections(FOOTPRINT *aFootprint, COMPONENT *aNewComponent)
VECTOR2I estimateFootprintInsertionPosition()
std::map< PAD *, wxString > m_padPinFunctions
std::map< ZONE *, std::vector< PAD * > > m_zoneConnectionsCache
FOOTPRINT * replaceFootprint(NETLIST &aNetlist, FOOTPRINT *aFootprint, COMPONENT *aNewComponent)
void cacheCopperZoneConnections()
FOOTPRINT * addNewFootprint(COMPONENT *aComponent)
Information pertinent to a Pcbnew printed circuit board.
const NETINFO_LIST & GetNetInfo() const
const BOX2I GetBoardEdgesBoundingBox() const
Return the board bounding box calculated using exclusively the board edges (graphics on Edge....
const PAGE_INFO & GetPageSettings() const
NETINFO_ITEM * FindNet(int aNetcode) const
Search for a net with the given netcode.
const ZONES & Zones() const
bool BuildConnectivity(PROGRESS_REPORTER *aReporter=nullptr)
Build or rebuild the board connectivity database for the board, especially the list of connected item...
void SynchronizeNetsAndNetClasses(bool aResetTrackAndViaSizes)
Copy NETCLASS info to each NET, based on NET membership in a NETCLASS.
void RemoveUnusedNets(BOARD_COMMIT *aCommit)
const FOOTPRINTS & Footprints() const
const TRACKS & Tracks() const
const wxString GetLayerName(PCB_LAYER_ID aLayer) const
Return the name of a aLayer.
COMPONENT_CLASS_MANAGER & GetComponentClassManager()
Gets the component class manager.
bool SynchronizeComponentClasses(const std::unordered_set< wxString > &aNewSheetPaths) const
Copy component class / component class generator information from the project settings.
std::shared_ptr< CONNECTIVITY_DATA > GetConnectivity() const
Return a list of missing connections between components/tracks.
constexpr size_type GetWidth() const
constexpr Vec Centre() const
constexpr size_type GetHeight() const
constexpr coord_type GetBottom() const
COMMIT & Remove(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Remove a new item from the model.
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Modify a given item in the model.
COMMIT & Modified(EDA_ITEM *aItem, EDA_ITEM *aCopy, BASE_SCREEN *aScreen=nullptr)
Create an undo entry for an item that has been already modified.
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Add a new item to the model.
int GetStatus(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Returns status of an item.
COMPONENT_CLASS * GetEffectiveStaticComponentClass(const std::unordered_set< wxString > &classNames)
Gets an effective component class for the given constituent class names.
static wxString GetFullClassNameForConstituents(const std::unordered_set< wxString > &classNames)
Gets the full effective class name for the given set of constituent classes.
void FinishNetlistUpdate()
Cleans up the manager after a board update Must be called after updating the PCB from the netlist.
const COMPONENT_CLASS * GetNoneComponentClass() const
Returns the unassigned component class.
void InitNetlistUpdate()
Prepare the manager for a board update Must be called prior to updating the PCB from the netlist.
A lightweight representation of a component class.
const wxString & GetName() const
Fetches the full name of this component class.
Used to store the component pin name to net name (and pin function) associations stored in a netlist.
const wxString & GetNetName() const
const wxString & GetPinFunction() const
const wxString & GetPinName() const
const wxString & GetPinType() const
Store all of the related footprint information found in a netlist.
const wxString & GetHumanReadablePath() const
const COMPONENT_NET & GetNet(unsigned aIndex) const
const KIID_PATH & GetPath() const
const wxString & GetReference() const
const wxString & GetValue() const
const nlohmann::ordered_map< wxString, wxString > & GetFields() const
const std::map< wxString, wxString > & GetProperties() const
const std::vector< KIID > & GetKIIDs() const
bool GetDuplicatePadNumbersAreJumpers() const
const LIB_ID & GetFPID() const
unsigned GetNetCount() const
std::unordered_set< wxString > & GetComponentClassNames()
std::vector< std::set< wxString > > & JumperPadGroups()
virtual void SetParent(EDA_ITEM *aParent)
virtual void SetVisible(bool aVisible)
virtual void SetText(const wxString &aText)
virtual void Remove(VIEW_ITEM *aItem) override
Remove a VIEW_ITEM from the view.
wxString AsString() const
Handle the data for a net.
void SetIsCurrent(bool isCurrent)
static const int UNCONNECTED
Constant that holds the "unconnected net" number (typically 0) all items "connected" to this net are ...
Store information read from a netlist along with the flags used to update the NETLIST in the BOARD.
unsigned GetCount() const
COMPONENT * GetComponentByPath(const KIID_PATH &aPath)
Return a COMPONENT by aPath.
COMPONENT * GetComponentByReference(const wxString &aReference)
Return a COMPONENT by aReference.
COMPONENT * GetComponent(unsigned aIndex)
Return the COMPONENT at aIndex.
static REPORTER & GetInstance()
const wxString & GetPinFunction() const
const VECTOR2D GetSizeIU(double aIUScale) const
Gets the page size in internal units.
DISPLAY_OPTIONS m_Display
PCBNEW_SETTINGS * GetPcbNewSettings() const
FOOTPRINT * LoadFootprint(const LIB_ID &aFootprintId)
Attempt to load aFootprintId from the footprint library table.
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Return the BOARD_DESIGN_SETTINGS for the open project.
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
The main frame for Pcbnew.
void OnModify() override
Must be called after a board change to set the modified flag.
void ExchangeFootprint(FOOTPRINT *aExisting, FOOTPRINT *aNew, BOARD_COMMIT &aCommit, bool deleteExtraTexts=true, bool resetTextLayers=true, bool resetTextEffects=true, bool resetFabricationAttrs=true, bool resetTextContent=true, bool reset3DModels=true, bool *aUpdated=nullptr)
Replace aExisting footprint by aNew footprint using the Existing footprint settings (position,...
void SetName(const wxString &aName)
void StyleFromSettings(const BOARD_DESIGN_SETTINGS &settings) override
virtual void SetPosition(const VECTOR2I &aPos) override
void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle) override
Rotate this object.
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
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.
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE) const
A lower-precision version of StringFromValue().
Handle a list of polygons defining a copper zone.
PCB_LAYER_ID
A quick note on layer IDs:
wxString EscapeHTML(const wxString &aString)
Return a new wxString escaped for embedding in HTML.
wxString UnescapeString(const wxString &aSource)
constexpr int mmToIU(double mm) const
bool m_DisplayInvertYAxis
bool m_DisplayInvertXAxis
bool m_ShowGlobalRatsnest
wxString GetCanonicalFieldName(FIELD_T aFieldType)
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)