Scan actual nets; not assumed nets.

Specctra exporter should not assume that PCB nets are numbered
sequentially without any holes.

Fixes https://gitlab.com/kicad/code/kicad/issues/7249
This commit is contained in:
Jeff Young 2021-01-23 22:50:18 +00:00
parent d5d9372839
commit 25956152c6
1 changed files with 8 additions and 7 deletions

View File

@ -1315,7 +1315,11 @@ void SPECCTRA_DB::FromBOARD( BOARD* aBoard )
std::string componentId;
// find the highest numbered netCode within the board.
int highestNetCode = aBoard->GetNetCount() - 1;
int highestNetCode = 0;
NETINFO_LIST& netInfo = aBoard->GetNetInfo();
for( NETINFO_LIST::iterator i = netInfo.begin(); i != netInfo.end(); ++i )
highestNetCode = std::max( highestNetCode, i->GetNetCode() );
deleteNETs();
@ -1325,13 +1329,10 @@ void SPECCTRA_DB::FromBOARD( BOARD* aBoard )
for( unsigned i = 1 /* skip "No Net" at [0] */; i < m_nets.size(); ++i )
m_nets[i] = new NET( m_pcb->network );
for( unsigned ii = 0; ii < aBoard->GetNetCount(); ii++ )
for( NETINFO_LIST::iterator i = netInfo.begin(); i != netInfo.end(); ++i )
{
NETINFO_ITEM* net = aBoard->FindNet( ii );
int netcode = net->GetNetCode();
if( netcode > 0 )
m_nets[ netcode ]->net_id = TO_UTF8( net->GetNetname() );
if( i->GetNetCode() > 0 )
m_nets[ i->GetNetCode() ] = new NET( m_pcb->network );
}
items.Collect( aBoard, scanMODULEs );