/*********************/ /* cross-probing.cpp */ /*********************/ #include "fctsys.h" #include "appl_wxstruct.h" #include "common.h" #include "program.h" #include "libcmp.h" #include "general.h" #include "eda_dde.h" #include "id.h" #include "protos.h" /***************************************************************/ void RemoteCommand( const char* cmdline ) /***************************************************************/ /** Read a remote command sent by pcbnew (via a socket connection) , * so when user selects a module or pin in pcbnew, * eeschema shows that same component or pin. * The cursor is put on the item * port KICAD_SCH_PORT_SERVICE_NUMBER (currently 4243) * @param cmdline = received command from pcbnew * commands are: * $PART: "reference" put cursor on component * $PART: "reference" $REF: "ref" put cursor on reference component * $PART: "reference" $VAL: "value" put cursor on value component * $PART: "reference" $PAD: "pin name" put cursor on the component pin */ { char line[1024]; char* idcmd; char* text; wxString part_ref, msg; WinEDA_SchematicFrame* frame; frame = (WinEDA_SchematicFrame*)wxGetApp().GetTopWindow(); strncpy( line, cmdline, sizeof(line) - 1 ); idcmd = strtok( line, " \n\r" ); text = strtok( NULL, "\"\n\r" ); if( (idcmd == NULL) || (text == NULL) ) return; if( strcmp( idcmd, "$PART:" ) != 0 ) return; part_ref = CONV_FROM_UTF8( text ); /* look for a complement */ idcmd = strtok( NULL, " \n\r" ); if( idcmd == NULL ) // component only { frame->FindComponentAndItem( part_ref, true, 0, wxEmptyString, false ); return; } text = strtok( NULL, "\"\n\r" ); if( text == NULL ) return; msg = CONV_FROM_UTF8( text ); if( strcmp( idcmd, "$REF:" ) == 0 ) { frame->FindComponentAndItem( part_ref, true, 2, msg, false ); } else if( strcmp( idcmd, "$VAL:" ) == 0 ) { frame->FindComponentAndItem( part_ref, true, 3, msg, false ); } else if( strcmp( idcmd, "$PAD:" ) == 0 ) { frame->FindComponentAndItem( part_ref, true, 1, msg, false ); } else frame->FindComponentAndItem( part_ref, true, 0, wxEmptyString, false ); } /*****************************************************************************/ void WinEDA_SchematicFrame::SendMessageToPCBNEW( EDA_BaseStruct* objectToSync, SCH_COMPONENT* LibItem ) /*****************************************************************************/ /** Send a remote command to eeschema via a socket, * @param objectToSync = item to be located on board (footprint, pad or text) * @param LibItem = component in lib if objectToSync is a sub item of a component * Commands are * $PART: reference put cursor on footprint anchor * $PIN: number $PART: reference put cursor on the footprint pad */ { if( objectToSync == NULL ) return; LibDrawPin* Pin = NULL; char Line[1024]; /* Cross probing to pcbnew if a pin or a component is found */ switch( objectToSync->Type() ) { case DRAW_PART_TEXT_STRUCT_TYPE: case COMPONENT_FIELD_DRAW_TYPE: { if( LibItem == NULL ) break; sprintf( Line, "$PART: %s", CONV_TO_UTF8( LibItem->GetField( REFERENCE )->m_Text ) ); SendCommand( MSG_TO_PCB, Line ); } break; case TYPE_SCH_COMPONENT: LibItem = (SCH_COMPONENT*) objectToSync; sprintf( Line, "$PART: %s", CONV_TO_UTF8( LibItem->GetField( REFERENCE )->m_Text ) ); SendCommand( MSG_TO_PCB, Line ); break; case COMPONENT_PIN_DRAW_TYPE: if( LibItem == NULL ) break; Pin = (LibDrawPin*) objectToSync; if( Pin->m_PinNum ) { wxString pinnum; Pin->ReturnPinStringNum( pinnum ); sprintf( Line, "$PIN: %s $PART: %s", CONV_TO_UTF8( pinnum ), CONV_TO_UTF8( LibItem->GetField( REFERENCE )->m_Text ) ); } else sprintf( Line, "$PART: %s", CONV_TO_UTF8( LibItem->GetField( REFERENCE )->m_Text ) ); SendCommand( MSG_TO_PCB, Line ); break; default: break; } }