2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-11-14 08:20:17 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-10-06 18:07:43 +00:00
|
|
|
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
2022-11-25 14:25:39 +00:00
|
|
|
* Copyright (C) 2004-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-19 20:32:21 +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
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2013-02-02 17:39:59 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2016-02-15 20:16:54 +00:00
|
|
|
#include <sch_sheet_path.h>
|
2021-02-24 13:48:02 +00:00
|
|
|
#include <sch_symbol.h>
|
2015-02-21 08:11:58 +00:00
|
|
|
#include <sch_reference_list.h>
|
2020-05-13 02:00:37 +00:00
|
|
|
#include <schematic.h>
|
2014-07-07 04:12:04 +00:00
|
|
|
#include <dsnlexer.h>
|
|
|
|
#include <ptree.h>
|
|
|
|
#include <boost/property_tree/ptree.hpp>
|
2019-06-16 16:07:15 +00:00
|
|
|
#include <tools/sch_editor_control.h>
|
2008-05-07 15:08:16 +00:00
|
|
|
|
2021-05-01 07:50:29 +00:00
|
|
|
#include <wx/choicdlg.h>
|
|
|
|
#include <wx/filedlg.h>
|
|
|
|
|
2008-05-08 20:34:39 +00:00
|
|
|
|
2020-10-14 19:20:54 +00:00
|
|
|
void SCH_EDITOR_CONTROL::AssignFootprints( const std::string& aChangedSetOfReferences )
|
2014-07-07 04:12:04 +00:00
|
|
|
{
|
2021-06-10 14:10:55 +00:00
|
|
|
// Build a flat list of symbols in schematic:
|
2024-06-06 16:58:48 +00:00
|
|
|
SCH_REFERENCE_LIST refs;
|
|
|
|
bool isChanged = false;
|
|
|
|
bool appendToUndoList = false;
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2024-06-06 16:58:48 +00:00
|
|
|
m_frame->Schematic().BuildUnorderedSheetList().GetSymbols( refs, false );
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2023-09-09 04:10:57 +00:00
|
|
|
DSNLEXER lexer( aChangedSetOfReferences, From_UTF8( __func__ ) );
|
2019-06-16 16:07:15 +00:00
|
|
|
PTREE doc;
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2014-07-07 19:49:14 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Scan( &doc, &lexer );
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2020-10-14 19:20:54 +00:00
|
|
|
CPTREE& back_anno = doc.get_child( "cvpcb_netlist" );
|
2014-07-28 09:24:15 +00:00
|
|
|
wxString footprint;
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2014-07-07 19:49:14 +00:00
|
|
|
for( PTREE::const_iterator ref = back_anno.begin(); ref != back_anno.end(); ++ref )
|
|
|
|
{
|
|
|
|
wxASSERT( ref->first == "ref" );
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2014-07-07 19:49:14 +00:00
|
|
|
wxString reference = (UTF8&) ref->second.front().first;
|
2014-07-28 09:24:15 +00:00
|
|
|
|
2020-08-29 13:41:47 +00:00
|
|
|
// Ensure the "fpid" node contains a footprint name, and get it if exists
|
2014-07-28 09:24:15 +00:00
|
|
|
if( ref->second.get_child( "fpid" ).size() )
|
|
|
|
{
|
|
|
|
wxString tmp = (UTF8&) ref->second.get_child( "fpid" ).front().first;
|
|
|
|
footprint = tmp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
footprint.Empty();
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
// Search the symbol in the flat list
|
2014-07-07 19:49:14 +00:00
|
|
|
for( unsigned ii = 0; ii < refs.GetCount(); ++ii )
|
2014-07-07 04:12:04 +00:00
|
|
|
{
|
2016-06-11 03:15:02 +00:00
|
|
|
if( reference == refs[ii].GetRef() )
|
2014-07-07 04:12:04 +00:00
|
|
|
{
|
2014-07-07 19:49:14 +00:00
|
|
|
// We have found a candidate.
|
|
|
|
// Note: it can be not unique (multiple parts per package)
|
|
|
|
// So we *do not* stop the search here
|
2021-06-10 14:10:55 +00:00
|
|
|
SCH_SYMBOL* symbol = refs[ ii ].GetSymbol();
|
|
|
|
|
2020-09-06 12:05:07 +00:00
|
|
|
// For backwards-compatibility CvPcb currently updates all instances of a
|
2021-06-10 14:10:55 +00:00
|
|
|
// symbol (even though it lists these instances separately).
|
2020-08-29 13:41:47 +00:00
|
|
|
wxString oldfp = refs[ii].GetFootprint();
|
2014-07-07 19:49:14 +00:00
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
if( oldfp.IsEmpty() && symbol->GetField( FOOTPRINT_FIELD )->IsVisible() )
|
|
|
|
symbol->GetField( FOOTPRINT_FIELD )->SetVisible( false );
|
2014-07-07 19:49:14 +00:00
|
|
|
|
|
|
|
if( oldfp != footprint )
|
2020-08-29 13:41:47 +00:00
|
|
|
{
|
2014-07-07 19:49:14 +00:00
|
|
|
isChanged = true;
|
2022-05-02 10:49:14 +00:00
|
|
|
SCH_SCREEN* screen = refs[ii].GetSheetPath().LastScreen();
|
|
|
|
|
|
|
|
m_frame->SaveCopyInUndoList( screen, symbol, UNDO_REDO::CHANGED,
|
|
|
|
appendToUndoList, false );
|
|
|
|
appendToUndoList = true;
|
|
|
|
|
2022-11-25 14:25:39 +00:00
|
|
|
symbol->SetFootprintFieldText( footprint );
|
2020-08-29 13:41:47 +00:00
|
|
|
}
|
2014-07-07 04:12:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-07 19:49:14 +00:00
|
|
|
catch( const PTREE_ERROR& ex )
|
|
|
|
{
|
|
|
|
// remap the exception to something the caller is likely to understand.
|
|
|
|
THROW_IO_ERROR( ex.what() );
|
|
|
|
}
|
2014-07-07 04:12:04 +00:00
|
|
|
|
|
|
|
if( isChanged )
|
2018-10-18 09:50:43 +00:00
|
|
|
{
|
2019-06-16 16:07:15 +00:00
|
|
|
m_frame->SyncView();
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
|
|
|
m_frame->OnModify();
|
2018-10-18 09:50:43 +00:00
|
|
|
}
|
2014-07-07 04:12:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
bool SCH_EDITOR_CONTROL::processCmpToFootprintLinkFile( const wxString& aFullFilename,
|
|
|
|
bool aForceVisibilityState,
|
|
|
|
bool aVisibilityState )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2021-06-10 14:10:55 +00:00
|
|
|
// Build a flat list of symbols in schematic:
|
2024-06-06 16:58:48 +00:00
|
|
|
SCH_REFERENCE_LIST referencesList;
|
|
|
|
m_frame->Schematic().BuildUnorderedSheetList().GetSymbols( referencesList, false );
|
2011-08-05 19:53:42 +00:00
|
|
|
|
2013-02-02 17:39:59 +00:00
|
|
|
FILE* cmpFile = wxFopen( aFullFilename, wxT( "rt" ) );
|
2014-08-28 23:44:28 +00:00
|
|
|
|
2021-07-16 20:13:26 +00:00
|
|
|
if( cmpFile == nullptr )
|
2013-02-02 17:39:59 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// cmpFileReader dtor will close cmpFile
|
|
|
|
FILE_LINE_READER cmpFileReader( cmpFile, aFullFilename );
|
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
// Now, for each symbol found in file,
|
2011-08-19 13:08:24 +00:00
|
|
|
// replace footprint field value by the new value:
|
2013-02-02 17:39:59 +00:00
|
|
|
wxString reference;
|
|
|
|
wxString footprint;
|
|
|
|
wxString buffer;
|
|
|
|
wxString value;
|
|
|
|
|
|
|
|
while( cmpFileReader.ReadLine() )
|
2008-05-07 23:41:05 +00:00
|
|
|
{
|
2023-09-09 04:10:57 +00:00
|
|
|
buffer = From_UTF8( cmpFileReader.Line() );
|
2013-02-02 17:39:59 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
if( !buffer.StartsWith( wxT( "BeginCmp" ) ) )
|
2013-02-02 17:39:59 +00:00
|
|
|
continue;
|
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
// Begin symbol description.
|
2013-02-02 17:39:59 +00:00
|
|
|
reference.Empty();
|
|
|
|
footprint.Empty();
|
|
|
|
|
|
|
|
while( cmpFileReader.ReadLine() )
|
2008-05-07 23:41:05 +00:00
|
|
|
{
|
2023-09-09 04:10:57 +00:00
|
|
|
buffer = From_UTF8( cmpFileReader.Line() );
|
2008-05-07 23:41:05 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
if( buffer.StartsWith( wxT( "EndCmp" ) ) )
|
2013-02-02 17:39:59 +00:00
|
|
|
break;
|
2008-05-07 23:41:05 +00:00
|
|
|
|
2013-02-02 17:39:59 +00:00
|
|
|
// store string value, stored between '=' and ';' delimiters.
|
|
|
|
value = buffer.AfterFirst( '=' );
|
2014-07-07 04:12:04 +00:00
|
|
|
value = value.BeforeLast( ';' );
|
2013-02-02 17:39:59 +00:00
|
|
|
value.Trim(true);
|
|
|
|
value.Trim(false);
|
2011-08-05 19:53:42 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
if( buffer.StartsWith( wxT( "Reference" ) ) )
|
2013-02-02 17:39:59 +00:00
|
|
|
reference = value;
|
2015-11-14 08:20:17 +00:00
|
|
|
else if( buffer.StartsWith( wxT( "IdModule" ) ) )
|
2013-02-02 17:39:59 +00:00
|
|
|
footprint = value;
|
|
|
|
}
|
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
// A block is read: initialize the footprint field of the corresponding symbol
|
2013-02-02 17:39:59 +00:00
|
|
|
// if the footprint name is not empty
|
|
|
|
if( reference.IsEmpty() )
|
|
|
|
continue;
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
// Search the symbol in the flat list
|
2014-07-07 04:12:04 +00:00
|
|
|
for( unsigned ii = 0; ii < referencesList.GetCount(); ii++ )
|
2013-02-02 17:39:59 +00:00
|
|
|
{
|
2016-06-11 03:15:02 +00:00
|
|
|
if( reference == referencesList[ii].GetRef() )
|
2013-02-02 17:39:59 +00:00
|
|
|
{
|
|
|
|
// We have found a candidate.
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// Note: it can be not unique (multiple units per part)
|
2013-02-02 17:39:59 +00:00
|
|
|
// So we *do not* stop the search here
|
2022-11-25 14:25:39 +00:00
|
|
|
SCH_SYMBOL* symbol = referencesList[ ii ].GetSymbol();
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2022-11-25 14:25:39 +00:00
|
|
|
symbol->SetFootprintFieldText( footprint );
|
2013-02-02 17:39:59 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
if( aForceVisibilityState )
|
2020-11-15 16:08:31 +00:00
|
|
|
symbol->GetField( FOOTPRINT_FIELD )->SetVisible( aVisibilityState );
|
2011-08-05 19:53:42 +00:00
|
|
|
}
|
2008-05-07 23:41:05 +00:00
|
|
|
}
|
2008-05-07 15:08:16 +00:00
|
|
|
}
|
2014-07-07 04:12:04 +00:00
|
|
|
|
2008-05-07 15:08:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-05-07 23:41:05 +00:00
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
int SCH_EDITOR_CONTROL::ImportFPAssignments( const TOOL_EVENT& aEvent )
|
2009-12-02 21:44:03 +00:00
|
|
|
{
|
2019-06-16 16:07:15 +00:00
|
|
|
wxString path = wxPathOnly( m_frame->Prj().GetProjectFullName() );
|
2011-03-28 18:23:01 +00:00
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
wxFileDialog dlg( m_frame, _( "Load Symbol Footprint Link File" ),
|
2013-02-11 18:50:55 +00:00
|
|
|
path, wxEmptyString,
|
2023-12-28 02:10:01 +00:00
|
|
|
FILEEXT::FootprintAssignmentFileWildcard(),
|
2013-02-02 17:39:59 +00:00
|
|
|
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
2011-03-28 18:23:01 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
2019-06-16 16:07:15 +00:00
|
|
|
return 0;
|
2008-05-16 09:21:01 +00:00
|
|
|
|
2013-02-11 18:50:55 +00:00
|
|
|
wxString filename = dlg.GetPath();
|
2011-03-28 18:23:01 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
wxArrayString choices;
|
|
|
|
choices.Add( _( "Keep existing footprint field visibility" ) );
|
|
|
|
choices.Add( _( "Show all footprint fields" ) );
|
|
|
|
choices.Add( _( "Hide all footprint fields" ) );
|
2011-03-28 18:23:01 +00:00
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
wxSingleChoiceDialog choiceDlg( m_frame, _( "Select the footprint field visibility setting." ),
|
2014-08-28 23:44:28 +00:00
|
|
|
_( "Change Visibility" ), choices );
|
2011-03-28 18:23:01 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
if( choiceDlg.ShowModal() == wxID_CANCEL )
|
2019-06-16 16:07:15 +00:00
|
|
|
return 0;
|
2013-02-11 18:50:55 +00:00
|
|
|
|
2014-08-28 23:44:28 +00:00
|
|
|
bool forceVisibility = (choiceDlg.GetSelection() != 0 );
|
|
|
|
bool visibilityState = (choiceDlg.GetSelection() == 1 );
|
2011-03-28 18:23:01 +00:00
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
if( !processCmpToFootprintLinkFile( filename, forceVisibility, visibilityState ) )
|
2008-05-07 23:41:05 +00:00
|
|
|
{
|
2021-06-28 23:44:07 +00:00
|
|
|
wxString msg = wxString::Format( _( "Failed to open symbol-footprint link file '%s'." ),
|
2014-08-28 23:44:28 +00:00
|
|
|
filename.GetData() );
|
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
DisplayError( m_frame, msg );
|
|
|
|
return 0;
|
2008-05-07 15:08:16 +00:00
|
|
|
}
|
2008-05-07 23:41:05 +00:00
|
|
|
|
2019-06-16 16:07:15 +00:00
|
|
|
m_frame->SyncView();
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
|
|
|
m_frame->OnModify();
|
|
|
|
return 0;
|
2008-05-07 15:08:16 +00:00
|
|
|
}
|