/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr * Copyright (C) 2008-2013 Wayne Stambaugh * Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors. * * 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 */ /** * @file backanno.cpp * @brief Functions for backannotating footprint information. */ #include #include #include #include #include #include #include #include #include #include #include #include bool SCH_EDIT_FRAME::ProcessCmpToFootprintLinkFile( wxString& aFullFilename, bool aSetFieldAttributeToVisible ) { // Build a flat list of components in schematic: SCH_REFERENCE_LIST referencesList; SCH_SHEET_LIST SheetList; SheetList.GetComponents( referencesList, false ); FILE* cmpFile = wxFopen( aFullFilename, wxT( "rt" ) ); if( cmpFile == NULL ) return false; // cmpFileReader dtor will close cmpFile FILE_LINE_READER cmpFileReader( cmpFile, aFullFilename ); // Now, for each component found in file, // replace footprint field value by the new value: wxString reference; wxString footprint; wxString buffer; wxString value; while( cmpFileReader.ReadLine() ) { buffer = FROM_UTF8( cmpFileReader.Line() ); if( ! buffer.StartsWith( wxT("BeginCmp") ) ) continue; // Begin component description. reference.Empty(); footprint.Empty(); while( cmpFileReader.ReadLine() ) { buffer = FROM_UTF8( cmpFileReader.Line() ); if( buffer.StartsWith( wxT("EndCmp") ) ) break; // store string value, stored between '=' and ';' delimiters. value = buffer.AfterFirst( '=' ); value = value.BeforeLast( ';'); value.Trim(true); value.Trim(false); if( buffer.StartsWith( wxT("Reference") ) ) { reference = value; continue; } if( buffer.StartsWith( wxT("IdModule =" ) ) ) { footprint = value; continue; } } // A block is read: initialize the footprint field of the correponding component // if the footprint name is not empty if( reference.IsEmpty() ) continue; // Search the component in the flat list for( unsigned ii = 0; ii < referencesList.GetCount(); ii++ ) { if( reference.CmpNoCase( referencesList[ii].GetRef() ) == 0 ) { // We have found a candidate. // Note: it can be not unique (multiple parts per package) // So we *do not* stop the search here SCH_COMPONENT* component = referencesList[ii].GetComponent(); SCH_FIELD * fpfield = component->GetField( FOOTPRINT ); /* Give a reasonable value to the field position and * orientation, if the text is empty at position 0, because * it is probably not yet initialized */ if( fpfield->m_Text.IsEmpty() && ( fpfield->GetPosition() == component->GetPosition() ) ) { fpfield->m_Orient = component->GetField( VALUE )->m_Orient; fpfield->SetPosition( component->GetField( VALUE )->GetPosition() ); fpfield->m_Size = component->GetField( VALUE )->m_Size; if( fpfield->m_Orient == 0 ) fpfield->m_Pos.y += 100; else fpfield->m_Pos.x += 100; } fpfield->m_Text = footprint; if( aSetFieldAttributeToVisible ) component->GetField( FOOTPRINT )->m_Attributs &= ~TEXT_NO_VISIBLE; else component->GetField( FOOTPRINT )->m_Attributs |= TEXT_NO_VISIBLE; } } } return true; } bool SCH_EDIT_FRAME::LoadCmpToFootprintLinkFile() { wxString title, filename; wxString msg; bool visible = false; wxFileDialog dlg( this, _( "Load Component-Footprint Link File" ), wxEmptyString, wxEmptyString, ComponentFileExtensionWildcard, wxFD_OPEN | wxFD_FILE_MUST_EXIST ); if( dlg.ShowModal() == wxID_CANCEL ) return false; filename = dlg.GetPath(); title = wxGetApp().GetAppName() + wxT( " " ) + GetBuildVersion(); title += wxT( " " ) + filename; SetTitle( title ); int response = wxMessageBox( _( "Do you want to make all the foot print fields visible?" ), _( "Field Display Option" ), wxYES_NO | wxICON_QUESTION | wxCANCEL, this ); if( response == wxCANCEL ) return false; if( response == wxYES ) visible = true; if( ! ProcessCmpToFootprintLinkFile( filename, visible ) ) { msg.Printf( _( "Failed to open component-footprint link file <%s>" ), filename.GetData() ); DisplayError( this, msg ); return false; } return true; }