127 bestPosition.
x = pageSize.
x / 2;
128 bestPosition.
y = pageSize.
y / 2;
141 msg.Printf(
_(
"Cannot add %s (no footprint assigned)." ),
150 if( footprint ==
nullptr )
152 msg.Printf(
_(
"Cannot add %s (footprint '%s' not found)." ),
164 msg.Printf(
_(
"Add %s (footprint '%s')." ),
179 pad->SetNetCode( 0 );
194 msg.Printf(
_(
"Added %s (footprint '%s')." ),
207 wxString curClassName, newClassName;
226 if( curClassName == newClassName )
233 if( curClassName == wxEmptyString && newClassName != wxEmptyString )
235 msg.Printf(
_(
"Change %s component class to '%s'." ),
239 else if( curClassName != wxEmptyString && newClassName == wxEmptyString )
241 msg.Printf(
_(
"Remove %s component class (currently '%s')." ),
247 msg.Printf(
_(
"Change %s component class from '%s' to '%s'." ),
255 wxASSERT_MSG( newClass !=
nullptr,
"Component class should not be nullptr" );
259 if( curClassName == wxEmptyString && newClassName != wxEmptyString )
261 msg.Printf(
_(
"Changed %s component class to '%s'." ),
265 else if( curClassName != wxEmptyString && newClassName == wxEmptyString )
267 msg.Printf(
_(
"Removed %s component class (was '%s')." ),
273 msg.Printf(
_(
"Changed %s component class from '%s' to '%s'." ),
291 msg.Printf(
_(
"Cannot update %s (no footprint assigned)." ),
300 if( newFootprint ==
nullptr )
302 msg.Printf(
_(
"Cannot update %s (footprint '%s' not found)." ),
314 msg.Printf(
_(
"Cannot change %s footprint from '%s' to '%s' (footprint is locked)."),
325 msg.Printf(
_(
"Change %s footprint from '%s' to '%s'."),
339 msg.Printf(
_(
"Could not change %s footprint from '%s' to '%s' (footprint is locked)."),
352 msg.Printf(
_(
"Changed %s footprint from '%s' to '%s'."),
375 copy->SetParentGroup(
nullptr );
378 bool changed =
false;
385 msg.Printf(
_(
"Change %s reference designator to %s." ),
391 msg.Printf(
_(
"Changed %s reference designator to %s." ),
407 msg.Printf(
_(
"Change %s value from %s to %s." ),
414 msg.Printf(
_(
"Changed %s value from %s to %s." ),
429 if( !aNetlistComponent->
GetKIIDs().empty() )
430 new_path.push_back( aNetlistComponent->
GetKIIDs().front() );
432 if( aPcbFootprint->
GetPath() != new_path )
436 msg.Printf(
_(
"Update %s symbol association from %s to %s." ),
443 msg.Printf(
_(
"Updated %s symbol association from %s to %s." ),
449 aPcbFootprint->
SetPath( new_path );
455 nlohmann::ordered_map<wxString, wxString> fpFieldsAsMap;
460 if( field->IsReference() || field->IsValue() || field->IsComponentClass() )
465 fpFieldsAsMap[field->GetName()] = field->GetText();
469 nlohmann::ordered_map<wxString, wxString> compFields = aNetlistComponent->
GetFields();
475 compFields.erase( wxT(
"Component Class" ) );
482 for( std::pair<wxString, wxString> field : compFields )
484 if( fpFieldsAsMap.count( field.first ) == 0 || fpFieldsAsMap[field.first] != field.second )
495 msg.Printf(
_(
"Update %s fields." ), aPcbFootprint->
GetReference() );
501 if( field->IsMandatory() )
504 if( compFields.count( field->GetName() ) == 0 )
506 msg.Printf(
_(
"Remove %s footprint fields not in symbol." ),
515 msg.Printf(
_(
"Updated %s fields." ), aPcbFootprint->
GetReference() );
521 for(
auto& [
name, value] : compFields )
530 aPcbFootprint->
Add( newField );
552 if( field->IsMandatory() )
555 if( compFields.count( field->GetName() ) == 0 )
560 msg.Printf(
_(
"Removed %s footprint fields not in symbol." ),
565 aPcbFootprint->
Remove( field );
582 if( !humanSheetPath.empty() )
583 sheetname = humanSheetPath;
584 else if( aNetlistComponent->
GetProperties().count( wxT(
"Sheetname" ) ) > 0 )
585 sheetname = aNetlistComponent->
GetProperties().at( wxT(
"Sheetname" ) );
587 if( aNetlistComponent->
GetProperties().count( wxT(
"Sheetfile" ) ) > 0 )
588 sheetfile = aNetlistComponent->
GetProperties().at( wxT(
"Sheetfile" ) );
590 if( aNetlistComponent->
GetProperties().count( wxT(
"ki_fp_filters" ) ) > 0 )
591 fpFilters = aNetlistComponent->
GetProperties().at( wxT(
"ki_fp_filters" ) );
597 msg.Printf(
_(
"Update %s sheetname to '%s'." ),
604 msg.Printf(
_(
"Updated %s sheetname to '%s'." ),
616 msg.Printf(
_(
"Update %s sheetfile to '%s'." ),
623 msg.Printf(
_(
"Updated %s sheetfile to '%s'." ),
631 if( fpFilters != aPcbFootprint->
GetFilters() )
635 msg.Printf(
_(
"Update %s footprint filters to '%s'." ),
642 msg.Printf(
_(
"Updated %s footprint filters to '%s'." ),
650 if( ( aNetlistComponent->
GetProperties().count( wxT(
"exclude_from_bom" ) ) > 0 )
655 if( aNetlistComponent->
GetProperties().count( wxT(
"exclude_from_bom" ) ) )
657 msg.Printf(
_(
"Add %s 'exclude from BOM' fabrication attribute." ),
662 msg.Printf(
_(
"Remove %s 'exclude from BOM' fabrication attribute." ),
670 if( aNetlistComponent->
GetProperties().count( wxT(
"exclude_from_bom" ) ) )
673 msg.Printf(
_(
"Added %s 'exclude from BOM' fabrication attribute." ),
678 attributes &= ~FP_EXCLUDE_FROM_BOM;
679 msg.Printf(
_(
"Removed %s 'exclude from BOM' fabrication attribute." ),
690 if( ( aNetlistComponent->
GetProperties().count( wxT(
"dnp" ) ) > 0 )
695 if( aNetlistComponent->
GetProperties().count( wxT(
"dnp" ) ) )
697 msg.Printf(
_(
"Add %s 'Do not place' fabrication attribute." ),
702 msg.Printf(
_(
"Remove %s 'Do not place' fabrication attribute." ),
710 if( aNetlistComponent->
GetProperties().count( wxT(
"dnp" ) ) )
713 msg.Printf(
_(
"Added %s 'Do not place' fabrication attribute." ),
718 attributes &= ~FP_DNP;
719 msg.Printf(
_(
"Removed %s 'Do not place' fabrication attribute." ),
730 if( changed &&
copy )
750 copy->SetParentGroup(
nullptr );
753 bool changed =
false;
756 std::deque<PAD*> pads = aFootprint->
Pads();
757 std::set<wxString> padNetnames;
759 std::sort( pads.begin(), pads.end(),
762 return a->m_Uuid < b->m_Uuid;
769 wxString pinFunction;
780 if(
pad->GetPinFunction() != pinFunction )
783 pad->SetPinFunction( pinFunction );
786 if(
pad->GetPinType() != pinType )
789 pad->SetPinType( pinType );
798 if( !net.
IsValid() || !
pad->IsOnCopperLayer() )
800 if( !
pad->GetNetname().IsEmpty() )
804 msg.Printf(
_(
"Disconnect %s pin %s." ),
810 msg.Printf(
_(
"Disconnected %s pin %s." ),
817 else if(
pad->IsOnCopperLayer() && !
pad->GetNumber().IsEmpty() )
820 msg.Printf(
_(
"No net found for component %s pad %s (no pin %s in symbol)." ),
835 if(
pad->GetNetname().IsEmpty() )
836 pad->SetPinFunction( wxEmptyString );
848 if(
pad->IsNoConnectPad() )
850 netName = wxString::Format( wxS(
"%s" ),
853 for(
int jj = 1; !padNetnames.insert( netName ).second; jj++ )
855 netName = wxString::Format( wxS(
"%s_%d" ),
865 if(
pad->GetNetname() != netName )
868 if( netinfo ==
nullptr )
875 if( netinfo ==
nullptr )
887 msg.Printf(
_(
"Add net %s." ),
892 if( !
pad->GetNetname().IsEmpty() )
898 msg.Printf(
_(
"Reconnect %s pin %s from %s to %s."),
906 msg.Printf(
_(
"Reconnected %s pin %s from %s to %s."),
917 msg.Printf(
_(
"Connect %s pin %s to %s."),
924 msg.Printf(
_(
"Connected %s pin %s to %s."),
936 pad->SetNet( netinfo );
946 if( changed &&
copy )
959 if( !zone->IsOnCopperLayer() || zone->GetIsRuleArea() )
970 std::set<wxString> netlistNetnames;
972 for(
int ii = 0; ii < (int) aNetlist.
GetCount(); ii++ )
976 for(
unsigned jj = 0; jj < component->
GetNetCount(); jj++ )
988 if( netlistNetnames.count(
via->GetNetname() ) == 0 )
990 wxString updatedNetname = wxEmptyString;
999 if( !updatedNetname.IsEmpty() )
1003 wxString originalNetname =
via->GetNetname();
1005 msg.Printf(
_(
"Reconnect via from %s to %s." ),
1020 wxString originalNetname =
via->GetNetname();
1023 via->SetNet( netinfo );
1025 msg.Printf(
_(
"Reconnected via from %s to %s." ),
1035 msg.Printf(
_(
"Via connected to unknown net (%s)." ),
1046 if( !zone->IsOnCopperLayer() || zone->GetIsRuleArea() )
1049 if( netlistNetnames.count( zone->GetNetname() ) == 0 )
1054 wxString updatedNetname = wxEmptyString;
1067 if( updatedNetname.IsEmpty() &&
m_oldToNewNets.count( zone->GetNetname() ) )
1072 if( !updatedNetname.IsEmpty() )
1076 wxString originalNetname = zone->GetNetname();
1078 if( !zone->GetZoneName().IsEmpty() )
1080 msg.Printf(
_(
"Reconnect copper zone '%s' from %s to %s." ),
1081 zone->GetZoneName(),
1087 msg.Printf(
_(
"Reconnect copper zone from %s to %s." ),
1103 wxString originalNetname = zone->GetNetname();
1106 zone->SetNet( netinfo );
1108 if( !zone->GetZoneName().IsEmpty() )
1110 msg.Printf(
_(
"Reconnected copper zone '%s' from %s to %s." ),
1117 msg.Printf(
_(
"Reconnected copper zone from %s to %s." ),
1128 if( !zone->GetZoneName().IsEmpty() )
1130 msg.Printf(
_(
"Copper zone '%s' has no pads connected." ),
1136 VECTOR2I pos = zone->GetPosition();
1147 msg.Printf(
_(
"Copper zone on layer %s at (%s, %s) has no pads connected." ),
1164 std::map<COMPONENT*, FOOTPRINT*>& aFootprintMap )
1172 for(
int i = 0; i < (int) aNetlist.
GetCount(); i++ )
1175 FOOTPRINT* footprint = aFootprintMap[component];
1181 for(
unsigned jj = 0; jj < component->
GetNetCount(); jj++ )
1185 if( padNumber.IsEmpty() )
1188 msg.Printf(
_(
"Symbol %s has pins with no number. These pins can not be matched "
1198 msg.Printf(
_(
"%s pad %s not found in %s." ),
1214 FOOTPRINT* lastPreexistingFootprint =
nullptr;
1222 std::map<COMPONENT*, FOOTPRINT*> footprintMap;
1235 net->SetIsCurrent( net->GetNetCode() == 0 );
1243 for(
unsigned i = 0; i < aNetlist.
GetCount(); i++ )
1247 if( component->
GetProperties().count( wxT(
"exclude_from_board" ) ) )
1250 msg.Printf(
_(
"Processing symbol '%s:%s'." ),
1266 base.push_back( uuid );
1268 if( footprint->GetPath() == base )
1277 match = footprint->GetReference().CmpNoCase( component->
GetReference() ) == 0;
1292 footprintMap[ component ] = tmp;
1302 if( footprint == lastPreexistingFootprint )
1309 if( matchCount == 0 )
1315 footprintMap[ component ] = footprint;
1322 else if( matchCount > 1 )
1324 msg.Printf(
_(
"Multiple footprints found for %s." ),
1338 bool matched =
false;
1349 if( component && component->
GetProperties().count( wxT(
"exclude_from_board" ) ) == 0 )
1352 if( doDelete && !matched && footprint->IsLocked() && !
m_overrideLocks )
1356 msg.Printf(
_(
"Cannot remove unused footprint %s (footprint is locked)." ),
1357 footprint->GetReference() );
1361 msg.Printf(
_(
"Could not remove unused footprint %s (footprint is locked)." ),
1362 footprint->GetReference() );
1370 if( doDelete && !matched )
1374 msg.Printf(
_(
"Remove unused footprint %s." ),
1375 footprint->GetReference() );
1379 if( footprint->GetParentGroup() )
1383 msg.Printf(
_(
"Removed unused footprint %s." ),
1384 footprint->GetReference() );
1394 for(
PAD*
pad : footprint->Pads() )
1397 pad->GetNet()->SetIsCurrent(
true );
1412 if( !net->IsCurrent() )
1414 msg.Printf(
_(
"Removed unused net %s." ),
1439 for(
const std::pair<const wxString, NETINFO_ITEM*>& addedNet :
m_addedNets )
1440 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.
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 * GetEffectiveComponentClass(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.
const wxString & GetFullName() 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
const LIB_ID & GetFPID() const
unsigned GetNetCount() const
std::unordered_set< wxString > & GetComponentClassNames()
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 & ReportTail(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Places the report at the end of the list, for objects that support report ordering.
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)=0
Report a string with a given severity.
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)