2012-02-11 09:04:26 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-01-28 08:51:28 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jean-pierre.charras
|
2021-07-16 20:13:26 +00:00
|
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@gmail.com>
|
2023-06-17 11:44:36 +00:00
|
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-02-11 09:04:26 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
2019-08-09 21:05:16 +00:00
|
|
|
|
2012-02-11 09:04:26 +00:00
|
|
|
#include <confirm.h>
|
2013-09-14 20:33:22 +00:00
|
|
|
#include <fp_lib_table.h>
|
2021-09-14 18:26:03 +00:00
|
|
|
#include <dialogs/html_message_box.h>
|
2019-07-18 21:47:01 +00:00
|
|
|
#include <kiway.h>
|
|
|
|
#include <lib_id.h>
|
2023-09-09 04:10:57 +00:00
|
|
|
#include <string_utils.h>
|
2012-02-11 09:04:26 +00:00
|
|
|
|
|
|
|
#include <cvpcb_mainframe.h>
|
2014-10-28 15:15:39 +00:00
|
|
|
#include <fp_conflict_assignment_selector.h>
|
2023-09-28 03:15:54 +00:00
|
|
|
#include <project_pcb.h>
|
2012-02-11 09:04:26 +00:00
|
|
|
|
|
|
|
|
2021-07-16 20:13:26 +00:00
|
|
|
/**
|
|
|
|
* Return true if the resultant LIB_ID has a certain nickname.
|
|
|
|
*
|
|
|
|
* The guess is only made if this footprint resides in only one library.
|
|
|
|
*
|
|
|
|
* @return int - 0 on success, 1 on not found, 2 on ambiguous i.e. multiple matches.
|
|
|
|
*/
|
2016-11-20 23:35:08 +00:00
|
|
|
static int guessNickname( FP_LIB_TABLE* aTbl, LIB_ID* aFootprintId )
|
2014-04-09 13:33:04 +00:00
|
|
|
{
|
|
|
|
if( aFootprintId->GetLibNickname().size() )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
wxString nick;
|
2017-07-24 19:02:59 +00:00
|
|
|
wxString fpname = aFootprintId->GetLibItemName();
|
2014-04-09 13:33:04 +00:00
|
|
|
|
|
|
|
std::vector<wxString> nicks = aTbl->GetLogicalLibs();
|
|
|
|
|
|
|
|
// Search each library going through libraries alphabetically.
|
|
|
|
for( unsigned libNdx = 0; libNdx<nicks.size(); ++libNdx )
|
|
|
|
{
|
2017-06-11 20:20:44 +00:00
|
|
|
wxArrayString fpnames;
|
|
|
|
|
2019-08-31 14:18:27 +00:00
|
|
|
aTbl->FootprintEnumerate( fpnames, nicks[libNdx], true );
|
2014-04-09 13:33:04 +00:00
|
|
|
|
|
|
|
for( unsigned nameNdx = 0; nameNdx<fpnames.size(); ++nameNdx )
|
|
|
|
{
|
|
|
|
if( fpname == fpnames[nameNdx] )
|
|
|
|
{
|
|
|
|
if( !nick )
|
|
|
|
nick = nicks[libNdx];
|
|
|
|
else
|
|
|
|
return 2; // duplicate, the guess would not be certain
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nick.size() )
|
|
|
|
{
|
2017-07-24 19:02:59 +00:00
|
|
|
aFootprintId->SetLibNickname( nick );
|
2014-04-09 13:33:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-25 08:12:42 +00:00
|
|
|
bool CVPCB_MAINFRAME::readNetListAndFpFiles( const std::string& aNetlist )
|
2014-04-09 13:33:04 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
bool hasMissingNicks = false;
|
|
|
|
|
2022-07-25 08:12:42 +00:00
|
|
|
readSchematicNetlist( aNetlist );
|
2014-04-09 13:33:04 +00:00
|
|
|
|
2021-07-16 20:13:26 +00:00
|
|
|
if( m_symbolsListBox == nullptr )
|
2014-04-09 13:33:04 +00:00
|
|
|
return false;
|
|
|
|
|
2021-08-06 11:33:14 +00:00
|
|
|
wxSafeYield();
|
|
|
|
|
2014-04-09 13:33:04 +00:00
|
|
|
LoadFootprintFiles();
|
2014-05-09 18:35:48 +00:00
|
|
|
|
2023-06-17 11:44:36 +00:00
|
|
|
BuildFootprintsList();
|
|
|
|
BuildLibrariesList();
|
2014-04-09 13:33:04 +00:00
|
|
|
|
2021-03-29 10:46:05 +00:00
|
|
|
m_symbolsListBox->Clear();
|
2014-04-09 13:33:04 +00:00
|
|
|
|
|
|
|
if( m_netlist.AnyFootprintsLinked() )
|
|
|
|
{
|
|
|
|
for( unsigned i = 0; i < m_netlist.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
COMPONENT* component = m_netlist.GetComponent( i );
|
|
|
|
|
|
|
|
if( component->GetFPID().empty() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( component->GetFPID().IsLegacy() )
|
|
|
|
hasMissingNicks = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if footprint links were generated before the footprint library table was implemented.
|
|
|
|
if( hasMissingNicks )
|
|
|
|
{
|
2020-12-18 00:25:51 +00:00
|
|
|
msg = _( "Some of the assigned footprints are legacy entries with no library names. Would "
|
2021-02-18 15:49:35 +00:00
|
|
|
"you like KiCad to attempt to convert them to the new required LIB_ID format? "
|
2020-12-18 00:25:51 +00:00
|
|
|
"(If you answer no, then these assignments will be cleared and you will need to "
|
|
|
|
"re-assign them manually.)" );
|
2014-04-09 13:33:04 +00:00
|
|
|
|
|
|
|
if( IsOK( this, msg ) )
|
|
|
|
{
|
|
|
|
msg.Clear();
|
|
|
|
|
2014-04-10 21:20:01 +00:00
|
|
|
try
|
2014-04-09 13:33:04 +00:00
|
|
|
{
|
2014-04-10 21:20:01 +00:00
|
|
|
for( unsigned i = 0; i < m_netlist.GetCount(); i++ )
|
2014-04-09 13:33:04 +00:00
|
|
|
{
|
2014-04-10 21:20:01 +00:00
|
|
|
COMPONENT* component = m_netlist.GetComponent( i );
|
2014-04-09 13:33:04 +00:00
|
|
|
|
2014-04-10 21:20:01 +00:00
|
|
|
if( component->GetFPID().IsLegacy() )
|
2014-04-09 13:33:04 +00:00
|
|
|
{
|
2014-05-09 18:35:48 +00:00
|
|
|
// get this first here, it's possibly obsoleted if we get it too soon.
|
2023-09-28 03:15:54 +00:00
|
|
|
FP_LIB_TABLE* tbl = PROJECT_PCB::PcbFootprintLibs( &Prj() );
|
2014-05-09 18:35:48 +00:00
|
|
|
|
2016-11-20 23:35:08 +00:00
|
|
|
int guess = guessNickname( tbl, (LIB_ID*) &component->GetFPID() );
|
2014-04-10 21:20:01 +00:00
|
|
|
|
|
|
|
switch( guess )
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
m_modified = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2021-06-28 23:44:07 +00:00
|
|
|
msg += wxString::Format( _( "Component '%s' footprint '%s' <b>not "
|
|
|
|
"found</b> in any library.\n" ),
|
|
|
|
component->GetReference(),
|
|
|
|
component->GetFPID().GetLibItemName().wx_str() );
|
2014-04-10 21:20:01 +00:00
|
|
|
break;
|
2014-04-09 13:33:04 +00:00
|
|
|
|
2014-04-10 21:20:01 +00:00
|
|
|
case 2:
|
2021-06-28 23:44:07 +00:00
|
|
|
msg += wxString::Format( _( "Component '%s' footprint '%s' was found "
|
|
|
|
"in <b>multiple</b> libraries.\n" ),
|
|
|
|
component->GetReference(),
|
|
|
|
component->GetFPID().GetLibItemName().wx_str() );
|
2014-04-10 21:20:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-09 13:33:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 21:20:01 +00:00
|
|
|
catch( const IO_ERROR& ioe )
|
|
|
|
{
|
2016-09-14 22:36:45 +00:00
|
|
|
msg = ioe.What();
|
2014-04-10 21:20:01 +00:00
|
|
|
msg += wxT( "\n\n" );
|
2015-04-07 18:44:51 +00:00
|
|
|
msg += _( "First check your footprint library table entries." );
|
2014-04-10 21:20:01 +00:00
|
|
|
|
2015-04-07 18:44:51 +00:00
|
|
|
wxMessageBox( msg, _( "Problematic Footprint Library Tables" ) );
|
2014-04-10 21:20:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-09 13:33:04 +00:00
|
|
|
|
|
|
|
if( msg.size() )
|
|
|
|
{
|
|
|
|
HTML_MESSAGE_BOX dlg( this, wxEmptyString );
|
|
|
|
|
2015-04-07 18:44:51 +00:00
|
|
|
dlg.MessageSet( _( "The following errors occurred attempting to convert the "
|
|
|
|
"footprint assignments:\n\n" ) );
|
2014-04-09 13:33:04 +00:00
|
|
|
dlg.ListSet( msg );
|
2015-04-07 18:44:51 +00:00
|
|
|
dlg.MessageSet( _( "\nYou will need to reassign them manually if you want them "
|
|
|
|
"to be updated correctly the next time you import the "
|
|
|
|
"netlist in Pcbnew." ) );
|
2014-04-10 21:20:01 +00:00
|
|
|
|
|
|
|
#if 1
|
2014-04-09 13:33:04 +00:00
|
|
|
dlg.ShowModal();
|
2014-04-10 21:20:01 +00:00
|
|
|
#else
|
|
|
|
dlg.Fit();
|
2021-07-16 20:13:26 +00:00
|
|
|
|
|
|
|
// Modeless lets user watch while fixing the problems, but its not working.
|
|
|
|
dlg.Show( true );
|
2014-04-10 21:20:01 +00:00
|
|
|
#endif
|
2014-04-09 13:33:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Clear the legacy footprint assignments.
|
|
|
|
for( unsigned i = 0; i < m_netlist.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
COMPONENT* component = m_netlist.GetComponent( i );
|
|
|
|
|
|
|
|
if( component->GetFPID().IsLegacy() )
|
|
|
|
{
|
2021-07-16 20:13:26 +00:00
|
|
|
component->SetFPID( LIB_ID() );
|
2014-04-09 13:33:04 +00:00
|
|
|
m_modified = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-28 15:15:39 +00:00
|
|
|
|
|
|
|
// Display a dialog to select footprint selection, if the netlist
|
|
|
|
// and the .cmp file give 2 different valid footprints
|
|
|
|
std::vector <int > m_indexes; // indexes of footprints in netlist
|
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < m_netlist.GetCount(); ii++ )
|
|
|
|
{
|
|
|
|
COMPONENT* component = m_netlist.GetComponent( ii );
|
|
|
|
|
|
|
|
if( component->GetAltFPID().empty() )
|
|
|
|
continue;
|
|
|
|
|
2020-11-24 22:16:41 +00:00
|
|
|
if( component->GetFPID().IsLegacy() || component->GetAltFPID().IsLegacy() )
|
2014-10-28 15:15:39 +00:00
|
|
|
continue;
|
|
|
|
|
2015-01-17 08:01:16 +00:00
|
|
|
m_indexes.push_back( ii );
|
2014-10-28 15:15:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If a n assignment conflict is found,
|
|
|
|
// open a dialog to chose between schematic assignment
|
|
|
|
// and .cmp file assignment:
|
|
|
|
if( m_indexes.size() > 0 )
|
|
|
|
{
|
|
|
|
DIALOG_FP_CONFLICT_ASSIGNMENT_SELECTOR dlg( this );
|
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < m_indexes.size(); ii++ )
|
|
|
|
{
|
|
|
|
COMPONENT* component = m_netlist.GetComponent( m_indexes[ii] );
|
|
|
|
|
2017-07-24 19:02:59 +00:00
|
|
|
wxString cmpfpid = component->GetFPID().Format();
|
|
|
|
wxString schfpid = component->GetAltFPID().Format();
|
2014-10-28 15:15:39 +00:00
|
|
|
|
|
|
|
dlg.Add( component->GetReference(), schfpid, cmpfpid );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
|
|
|
{
|
|
|
|
// Update the fp selection:
|
|
|
|
for( unsigned ii = 0; ii < m_indexes.size(); ii++ )
|
|
|
|
{
|
|
|
|
COMPONENT* component = m_netlist.GetComponent( m_indexes[ii] );
|
|
|
|
|
|
|
|
int choice = dlg.GetSelection( component->GetReference() );
|
|
|
|
|
|
|
|
if( choice == 0 ) // the schematic (alt fpid) is chosen:
|
|
|
|
component->SetFPID( component->GetAltFPID() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-17 11:44:36 +00:00
|
|
|
int firstUnassigned = wxNOT_FOUND;
|
|
|
|
|
2014-10-28 15:15:39 +00:00
|
|
|
// Populates the component list box:
|
2014-04-09 13:33:04 +00:00
|
|
|
for( unsigned i = 0; i < m_netlist.GetCount(); i++ )
|
|
|
|
{
|
|
|
|
COMPONENT* component = m_netlist.GetComponent( i );
|
|
|
|
|
2021-09-27 11:40:07 +00:00
|
|
|
msg = formatSymbolDesc( m_symbolsListBox->GetCount() + 1,
|
|
|
|
component->GetReference(),
|
|
|
|
component->GetValue(),
|
2023-09-09 04:10:57 +00:00
|
|
|
From_UTF8( component->GetFPID().Format().c_str() ) );
|
2014-04-09 13:33:04 +00:00
|
|
|
|
2021-03-29 10:46:05 +00:00
|
|
|
m_symbolsListBox->AppendLine( msg );
|
2022-09-29 19:27:08 +00:00
|
|
|
|
2023-06-17 11:44:36 +00:00
|
|
|
if( firstUnassigned == wxNOT_FOUND && component->GetFPID().empty() )
|
|
|
|
firstUnassigned = i;
|
2022-09-29 19:27:08 +00:00
|
|
|
|
2023-06-17 11:44:36 +00:00
|
|
|
if( !m_FootprintsList->GetFootprintInfo( component->GetFPID().Format().wx_str() ) )
|
2022-09-29 19:27:08 +00:00
|
|
|
m_symbolsListBox->AppendWarning( i );
|
2014-04-09 13:33:04 +00:00
|
|
|
}
|
|
|
|
|
2023-06-17 11:44:36 +00:00
|
|
|
if( firstUnassigned >= 0 )
|
|
|
|
m_symbolsListBox->SetSelection( firstUnassigned, true );
|
2014-04-09 13:33:04 +00:00
|
|
|
|
|
|
|
DisplayStatus();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-11 20:46:03 +00:00
|
|
|
bool CVPCB_MAINFRAME::SaveFootprintAssociation( bool doSaveSchematic )
|
2012-02-11 09:04:26 +00:00
|
|
|
{
|
2019-03-27 22:37:26 +00:00
|
|
|
std::string payload;
|
2015-06-07 18:18:45 +00:00
|
|
|
STRING_FORMATTER sf;
|
2012-02-11 09:04:26 +00:00
|
|
|
|
2020-10-14 19:20:54 +00:00
|
|
|
m_netlist.FormatCvpcbNetlist( &sf );
|
2012-02-11 09:04:26 +00:00
|
|
|
|
2019-03-27 22:37:26 +00:00
|
|
|
payload = sf.GetString();
|
2020-10-14 19:20:54 +00:00
|
|
|
Kiway().ExpressMail( FRAME_SCH, MAIL_ASSIGN_FOOTPRINTS, payload );
|
2012-02-11 09:04:26 +00:00
|
|
|
|
2018-03-24 18:28:35 +00:00
|
|
|
if( doSaveSchematic )
|
2019-03-27 22:37:26 +00:00
|
|
|
{
|
|
|
|
payload = "";
|
|
|
|
Kiway().ExpressMail( FRAME_SCH, MAIL_SCH_SAVE, payload );
|
|
|
|
|
|
|
|
if( payload == "success" )
|
|
|
|
SetStatusText( _( "Schematic saved" ), 1 );
|
|
|
|
}
|
2018-08-11 20:46:03 +00:00
|
|
|
|
2019-07-18 21:47:01 +00:00
|
|
|
// Changes are saved, so reset the flag
|
|
|
|
m_modified = false;
|
|
|
|
|
2019-03-27 22:37:26 +00:00
|
|
|
return true;
|
2012-02-11 09:04:26 +00:00
|
|
|
}
|