///////////////////////////////////////////////////////////////////////////// // Name: build_BOM.cpp // Author: jean-pierre Charras // License: GPL license ///////////////////////////////////////////////////////////////////////////// #include // to use sort vector #include #include "fctsys.h" #include "common.h" #include "class_sch_screen.h" #include "kicad_string.h" #include "general.h" #include "sch_sheet.h" #include "sch_component.h" #include "template_fieldnames.h" #include "netlist.h" /* Fill aList with labels */ void GenListeGLabels( LABEL_OBJECT_LIST& aList ) { // Build the sheet list SCH_SHEET_LIST sheetList; LABEL_OBJECT label; for( SCH_SHEET_PATH* path = sheetList.GetFirst(); path; path = sheetList.GetNext() ) { SCH_ITEM* schItem = (SCH_ITEM*) path->LastDrawList(); while( schItem ) { switch( schItem->Type() ) { case SCH_HIERARCHICAL_LABEL_T: case SCH_GLOBAL_LABEL_T: label.m_LabelType = schItem->Type(); label.m_SheetPath = *path; label.m_Label = schItem; aList.push_back( label ); break; case SCH_SHEET_T: { SCH_SHEET* sheet = (SCH_SHEET*) schItem; BOOST_FOREACH( SCH_SHEET_PIN& sheetLabel, sheet->GetSheetPins() ) { label.m_LabelType = SCH_SHEET_LABEL_T; label.m_SheetPath = *path; label.m_Label = &sheetLabel; aList.push_back( label ); } } break; default: break; } schItem = schItem->Next(); } } } /* compare function for sorting labels * sort by * value * if same value: by sheet */ bool SortLabelsByValue( const LABEL_OBJECT& obj1, const LABEL_OBJECT& obj2 ) { int ii; wxString* Text1, * Text2; if( obj1.m_LabelType == SCH_SHEET_LABEL_T ) Text1 = &( (SCH_SHEET_PIN*)(obj1.m_Label) )->m_Text; else Text1 = &( (SCH_TEXT*)(obj1.m_Label) )->m_Text; if( obj2.m_LabelType == SCH_SHEET_LABEL_T ) Text2 = &( (SCH_SHEET_PIN*)(obj2.m_Label) )->m_Text; else Text2 = &( (SCH_TEXT*)(obj2.m_Label) )->m_Text; ii = Text1->CmpNoCase( *Text2 ); if( ii == 0 ) { ii = obj1.m_SheetPath.Cmp( obj2.m_SheetPath ); } return ii < 0; } /* compare function for sorting labels * by sheet * in a sheet, by alphabetic order */ bool SortLabelsBySheet( const LABEL_OBJECT& obj1, const LABEL_OBJECT& obj2 ) { int ii; wxString Text1, Text2; ii = obj1.m_SheetPath.Cmp( obj2.m_SheetPath ); if( ii == 0 ) { if( obj1.m_LabelType == SCH_SHEET_LABEL_T ) Text1 = ( (SCH_SHEET_PIN*) obj1.m_Label )->m_Text; else Text1 = ( (SCH_TEXT*) obj1.m_Label )->m_Text; if( obj2.m_LabelType == SCH_SHEET_LABEL_T ) Text2 = ( (SCH_SHEET_PIN*) obj2.m_Label )->m_Text; else Text2 = ( (SCH_TEXT*) obj2.m_Label )->m_Text; ii = Text1.CmpNoCase( Text2 ); } return ii < 0; } int PrintListeGLabel( FILE* f, LABEL_OBJECT_LIST& aList ) { SCH_LABEL* label; SCH_SHEET_PIN* pinsheet; wxString msg, sheetpath; wxString labeltype; for( unsigned ii = 0; ii < aList.size(); ii++ ) { switch( aList[ii].m_LabelType ) { case SCH_HIERARCHICAL_LABEL_T: case SCH_GLOBAL_LABEL_T: label = (SCH_LABEL*)(aList[ii].m_Label); if( aList[ii].m_LabelType == SCH_HIERARCHICAL_LABEL_T ) labeltype = wxT( "Hierarchical" ); else labeltype = wxT( "Global " ); sheetpath = aList[ii].m_SheetPath.PathHumanReadable(); msg.Printf( _( "> %-28.28s %s (Sheet %s) pos: %3.3f, %3.3f\n" ), GetChars( label->m_Text ), GetChars( labeltype ), GetChars( sheetpath ), (float) label->m_Pos.x / 1000, (float) label->m_Pos.y / 1000 ); fputs( CONV_TO_UTF8( msg ), f ); break; case SCH_SHEET_LABEL_T: { pinsheet = (SCH_SHEET_PIN*) aList[ii].m_Label; int jj = pinsheet->m_Shape; if( jj < 0 ) jj = NET_TMAX; if( jj > NET_TMAX ) jj = 4; wxString labtype = CONV_FROM_UTF8( SheetLabelType[jj] ); msg.Printf( _( "> %-28.28s PinSheet %-7.7s (Sheet %s) pos: %3.3f, %3.3f\n" ), GetChars( pinsheet->m_Text ), GetChars( labtype ), GetChars( aList[ii].m_SheetPath.PathHumanReadable() ), (float) pinsheet->m_Pos.x / 1000, (float) pinsheet->m_Pos.y / 1000 ); fputs( CONV_TO_UTF8( msg ), f ); } break; default: break; } } msg = _( "#End labels\n" ); fputs( CONV_TO_UTF8( msg ), f ); return 0; }