Commit 9880975e authored by charras's avatar charras

LibEdit: fixed a bug (bad format in a Printf) that crashes libedit when...

LibEdit: fixed a bug (bad format in a Printf) that crashes libedit when testing a component with duplicate pins.
Also cleaned and enhanced WinEDA_LibeditFrame::OnCheckComponent() code
parent 502f3160
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include "class_libentry.h" #include "class_libentry.h"
#include "pinedit-dialog.h" #include "pinedit-dialog.h"
#include "dialog_display_info_HTML_base.h"
static int CodeOrient[4] = static int CodeOrient[4] =
{ {
...@@ -22,7 +23,7 @@ static int CodeOrient[4] = ...@@ -22,7 +23,7 @@ static int CodeOrient[4] =
#define NBSHAPES 7 #define NBSHAPES 7
static wxString shape_list[NBSHAPES] = static wxString shape_list[NBSHAPES] =
{ {
_( "line" ), _( "invert" ), _( "clock" ), _( "clock inv" ), _( "line" ), _( "invert" ), _( "clock" ), _( "clock inv" ),
_( "low in" ), _( "low clock" ), _( "low out" ) _( "low in" ), _( "low clock" ), _( "low out" )
}; };
...@@ -43,15 +44,15 @@ static void DrawMovePin( WinEDA_DrawPanel* panel, wxDC* DC, bool erase ); ...@@ -43,15 +44,15 @@ static void DrawMovePin( WinEDA_DrawPanel* panel, wxDC* DC, bool erase );
/* Variables locales */ /* Variables locales */
static wxPoint OldPos, PinPreviousPos; static wxPoint OldPos, PinPreviousPos;
static int LastPinType = PIN_INPUT, static int LastPinType = PIN_INPUT,
LastPinOrient = PIN_RIGHT, LastPinOrient = PIN_RIGHT,
LastPinShape = NONE, LastPinShape = NONE,
LastPinSize = 300, LastPinSize = 300,
LastPinNameSize = 50, LastPinNameSize = 50,
LastPinNumSize = 50, LastPinNumSize = 50,
LastPinCommonConvert = false, LastPinCommonConvert = false,
LastPinCommonUnit = false, LastPinCommonUnit = false,
LastPinNoDraw = false; LastPinNoDraw = false;
#include "pinedit-dialog.cpp" #include "pinedit-dialog.cpp"
...@@ -73,8 +74,8 @@ void WinEDA_PinPropertiesFrame::PinPropertiesAccept( wxCommandEvent& event ) ...@@ -73,8 +74,8 @@ void WinEDA_PinPropertiesFrame::PinPropertiesAccept( wxCommandEvent& event )
LastPinNoDraw = m_NoDraw->GetValue(); LastPinNoDraw = m_NoDraw->GetValue();
msg = m_PinSizeCtrl->GetValue(); msg = m_PinSizeCtrl->GetValue();
LastPinSize = ReturnValueFromString( g_UnitMetric, msg, LastPinSize = ReturnValueFromString( g_UnitMetric, msg,
m_Parent->m_InternalUnits ); m_Parent->m_InternalUnits );
msg = m_PinNameSizeCtrl->GetValue(); msg = m_PinNameSizeCtrl->GetValue();
LastPinNameSize = ReturnValueFromString( g_UnitMetric, msg, LastPinNameSize = ReturnValueFromString( g_UnitMetric, msg,
...@@ -133,14 +134,14 @@ void WinEDA_LibeditFrame::InitEditOnePin() ...@@ -133,14 +134,14 @@ void WinEDA_LibeditFrame::InitEditOnePin()
return; return;
for( Pin = m_component->GetNextPin(); Pin != NULL; for( Pin = m_component->GetNextPin(); Pin != NULL;
Pin = m_component->GetNextPin( Pin ) ) Pin = m_component->GetNextPin( Pin ) )
{ {
if( Pin == CurrentPin ) if( Pin == CurrentPin )
continue; continue;
if( ( Pin->m_Pos == CurrentPin->m_Pos ) if( ( Pin->m_Pos == CurrentPin->m_Pos )
&& ( Pin->m_Orient == CurrentPin->m_Orient ) && ( Pin->m_Orient == CurrentPin->m_Orient )
&& ( !( CurrentPin->m_Flags & IS_NEW ) ) && ( !( CurrentPin->m_Flags & IS_NEW ) )
&& ( g_EditPinByPinIsOn == false ) ) && ( g_EditPinByPinIsOn == false ) )
Pin->m_Flags |= IS_LINKED | IN_EDIT; Pin->m_Flags |= IS_LINKED | IN_EDIT;
else else
Pin->m_Flags = 0; Pin->m_Flags = 0;
...@@ -198,7 +199,7 @@ void WinEDA_LibeditFrame::PlacePin( wxDC* DC ) ...@@ -198,7 +199,7 @@ void WinEDA_LibeditFrame::PlacePin( wxDC* DC )
// Tst for an other pin in same new position: // Tst for an other pin in same new position:
for( Pin = m_component->GetNextPin(); Pin != NULL; for( Pin = m_component->GetNextPin(); Pin != NULL;
Pin = m_component->GetNextPin( Pin ) ) Pin = m_component->GetNextPin( Pin ) )
{ {
if( Pin == CurrentPin || newpos != Pin->m_Pos || Pin->m_Flags ) if( Pin == CurrentPin || newpos != Pin->m_Pos || Pin->m_Flags )
continue; continue;
...@@ -206,7 +207,8 @@ void WinEDA_LibeditFrame::PlacePin( wxDC* DC ) ...@@ -206,7 +207,8 @@ void WinEDA_LibeditFrame::PlacePin( wxDC* DC )
if( ask_for_pin && !g_EditPinByPinIsOn ) if( ask_for_pin && !g_EditPinByPinIsOn )
{ {
DrawPanel->m_IgnoreMouseEvents = true; DrawPanel->m_IgnoreMouseEvents = true;
status = IsOK( this, _( "This position is already occupied by \ status =
IsOK( this, _( "This position is already occupied by \
another pin. Continue?" ) ); another pin. Continue?" ) );
DrawPanel->MouseToCursorSchema(); DrawPanel->MouseToCursorSchema();
DrawPanel->m_IgnoreMouseEvents = false; DrawPanel->m_IgnoreMouseEvents = false;
...@@ -234,7 +236,7 @@ another pin. Continue?" ) ); ...@@ -234,7 +236,7 @@ another pin. Continue?" ) );
/* Put linked pins in new position, and clear flags */ /* Put linked pins in new position, and clear flags */
for( Pin = m_component->GetNextPin(); Pin != NULL; for( Pin = m_component->GetNextPin(); Pin != NULL;
Pin = m_component->GetNextPin( Pin ) ) Pin = m_component->GetNextPin( Pin ) )
{ {
if( Pin->m_Flags == 0 ) if( Pin->m_Flags == 0 )
continue; continue;
...@@ -297,8 +299,8 @@ void WinEDA_LibeditFrame::StartMovePin( wxDC* DC ) ...@@ -297,8 +299,8 @@ void WinEDA_LibeditFrame::StartMovePin( wxDC* DC )
if( Pin == CurrentPin ) if( Pin == CurrentPin )
continue; continue;
if( ( Pin->m_Pos == CurrentPin->m_Pos ) if( ( Pin->m_Pos == CurrentPin->m_Pos )
&& ( Pin->m_Orient == CurrentPin->m_Orient ) && ( Pin->m_Orient == CurrentPin->m_Orient )
&& ( g_EditPinByPinIsOn == false ) ) && ( g_EditPinByPinIsOn == false ) )
Pin->m_Flags |= IS_LINKED | IS_MOVED; Pin->m_Flags |= IS_LINKED | IS_MOVED;
} }
...@@ -368,8 +370,8 @@ void WinEDA_PinPropertiesFrame::SetPinShape( int newshape ) ...@@ -368,8 +370,8 @@ void WinEDA_PinPropertiesFrame::SetPinShape( int newshape )
/**********************************************************/ /**********************************************************/
/* Changement de la forme de la pin courante. /* Changement de la forme de la pin courante.
* Le changement est egalement fait sur les autres pins correspondantes * Le changement est egalement fait sur les autres pins correspondantes
* des autres unites de la seule forme convert courante * des autres unites de la seule forme convert courante
*/ */
{ {
LIB_PIN* Pin; LIB_PIN* Pin;
...@@ -397,8 +399,8 @@ void WinEDA_PinPropertiesFrame::SetPinType( int newtype ) ...@@ -397,8 +399,8 @@ void WinEDA_PinPropertiesFrame::SetPinType( int newtype )
/******************************************************/ /******************************************************/
/* Changement du type electrique de la pin courante. /* Changement du type electrique de la pin courante.
* Le changement est egalement fait sur les autres pins correspondantes * Le changement est egalement fait sur les autres pins correspondantes
* des autres unites du boitier * des autres unites du boitier
*/ */
{ {
LIB_PIN* Pin; LIB_PIN* Pin;
...@@ -425,8 +427,8 @@ void WinEDA_PinPropertiesFrame::SetPinName( const wxString& newname, int newsize ...@@ -425,8 +427,8 @@ void WinEDA_PinPropertiesFrame::SetPinName( const wxString& newname, int newsize
/********************************************************************************/ /********************************************************************************/
/* Met a jour le nom et la taille de ce nom de la pin courante /* Met a jour le nom et la taille de ce nom de la pin courante
* si newname == NULL, pas de changement de nom * si newname == NULL, pas de changement de nom
* si newsize < 0 : pas de changement de taille * si newsize < 0 : pas de changement de taille
*/ */
{ {
LIB_PIN* Pin; LIB_PIN* Pin;
...@@ -464,10 +466,10 @@ void WinEDA_PinPropertiesFrame::SetPinNum( const wxString& newnum, int newsize ) ...@@ -464,10 +466,10 @@ void WinEDA_PinPropertiesFrame::SetPinNum( const wxString& newnum, int newsize )
/******************************************************************************/ /******************************************************************************/
/* Changement du numero de la pin courante. /* Changement du numero de la pin courante.
* Le changement est egalement fait sur les autres pins correspondantes * Le changement est egalement fait sur les autres pins correspondantes
* a la forme convertie * a la forme convertie
* Si newnum == NULL: pas de changement de numero * Si newnum == NULL: pas de changement de numero
* Si newsize < 0 ) pase de changement de taille * Si newsize < 0 ) pase de changement de taille
*/ */
{ {
LIB_PIN* Pin; LIB_PIN* Pin;
...@@ -491,7 +493,7 @@ void WinEDA_PinPropertiesFrame::SetPinNum( const wxString& newnum, int newsize ) ...@@ -491,7 +493,7 @@ void WinEDA_PinPropertiesFrame::SetPinNum( const wxString& newnum, int newsize )
for( ; Pin != NULL; Pin = CurrentPin->GetParent()->GetNextPin( Pin ) ) for( ; Pin != NULL; Pin = CurrentPin->GetParent()->GetNextPin( Pin ) )
{ {
if( ( Pin->m_Flags & IS_LINKED ) == 0 if( ( Pin->m_Flags & IS_LINKED ) == 0
|| Pin->m_Unit != CurrentPin->m_Unit ) || Pin->m_Unit != CurrentPin->m_Unit )
continue; continue;
if( newsize >= 0 ) if( newsize >= 0 )
Pin->m_PinNumSize = newsize; Pin->m_PinNumSize = newsize;
...@@ -507,9 +509,9 @@ void WinEDA_LibeditFrame::DeletePin( wxDC* DC, ...@@ -507,9 +509,9 @@ void WinEDA_LibeditFrame::DeletePin( wxDC* DC,
/*************************************************/ /*************************************************/
/* Routine d'effacement de la pin pointee par la souris /* Routine d'effacement de la pin pointee par la souris
* Si g_EditPinByPinIsOn == false : * Si g_EditPinByPinIsOn == false :
* toutes les pins de meme coordonnee seront effacees. * toutes les pins de meme coordonnee seront effacees.
* Sinon seule la pin de l'unite en convert courante sera effacee * Sinon seule la pin de l'unite en convert courante sera effacee
*/ */
{ {
LIB_PIN* tmp; LIB_PIN* tmp;
...@@ -566,14 +568,14 @@ void WinEDA_LibeditFrame::CreatePin( wxDC* DC ) ...@@ -566,14 +568,14 @@ void WinEDA_LibeditFrame::CreatePin( wxDC* DC )
CurrentPin->m_Unit = m_unit; CurrentPin->m_Unit = m_unit;
CurrentPin->m_Convert = m_convert; CurrentPin->m_Convert = m_convert;
/* Marquage des pins a traiter */ /* Flag pins to consider */
if( g_EditPinByPinIsOn == false ) if( g_EditPinByPinIsOn == false )
CurrentPin->m_Flags |= IS_LINKED; CurrentPin->m_Flags |= IS_LINKED;
CurrentPin->m_Pos.x = GetScreen()->m_Curseur.x; CurrentPin->m_Pos.x = GetScreen()->m_Curseur.x;
CurrentPin->m_Pos.y = -GetScreen()->m_Curseur.y; CurrentPin->m_Pos.y = -GetScreen()->m_Curseur.y;
CurrentPin->m_PinLen = LastPinSize; CurrentPin->m_PinLen = LastPinSize;
CurrentPin->m_Orient = LastPinOrient; CurrentPin->m_Orient = LastPinOrient;
CurrentPin->m_PinType = LastPinType; CurrentPin->m_PinType = LastPinType;
CurrentPin->m_PinShape = LastPinShape; CurrentPin->m_PinShape = LastPinShape;
CurrentPin->m_PinNameSize = LastPinNameSize; CurrentPin->m_PinNameSize = LastPinNameSize;
...@@ -654,7 +656,7 @@ void WinEDA_PinPropertiesFrame::SetPinAttributes( bool draw, bool unit, ...@@ -654,7 +656,7 @@ void WinEDA_PinPropertiesFrame::SetPinAttributes( bool draw, bool unit,
if( Pin->m_Flags == 0 || Pin == CurrentPin ) if( Pin->m_Flags == 0 || Pin == CurrentPin )
continue; continue;
if( CurrentPin->m_Convert if( CurrentPin->m_Convert
&& ( CurrentPin->m_Convert != Pin->m_Convert ) ) && ( CurrentPin->m_Convert != Pin->m_Convert ) )
continue; continue;
if( CurrentPin->m_Pos != Pin->m_Pos ) if( CurrentPin->m_Pos != Pin->m_Pos )
continue; continue;
...@@ -724,8 +726,8 @@ void WinEDA_PinPropertiesFrame::NewSizePin( int newsize ) ...@@ -724,8 +726,8 @@ void WinEDA_PinPropertiesFrame::NewSizePin( int newsize )
/******************************************************/ /******************************************************/
/* Fonction permettant la mise aux dimensions courantes: /* Fonction permettant la mise aux dimensions courantes:
* - longueur, dimension des textes * - longueur, dimension des textes
* de la pin courante * de la pin courante
* *
*/ */
{ {
...@@ -799,7 +801,7 @@ static void CreateImagePins( LIB_PIN* Pin, int unit, int convert, ...@@ -799,7 +801,7 @@ static void CreateImagePins( LIB_PIN* Pin, int unit, int convert,
if( CreateConv == false ) if( CreateConv == false )
continue; continue;
NewPin = (LIB_PIN*)Pin->GenCopy(); NewPin = (LIB_PIN*) Pin->GenCopy();
NewPin->m_Convert = 2; NewPin->m_Convert = 2;
if( Pin->m_Unit != 0 ) if( Pin->m_Unit != 0 )
NewPin->m_Unit = ii; NewPin->m_Unit = ii;
...@@ -819,7 +821,7 @@ void WinEDA_LibeditFrame::GlobalSetPins( wxDC* DC, LIB_PIN* MasterPin, int id ) ...@@ -819,7 +821,7 @@ void WinEDA_LibeditFrame::GlobalSetPins( wxDC* DC, LIB_PIN* MasterPin, int id )
{ {
LIB_PIN* Pin; LIB_PIN* Pin;
bool selected = ( MasterPin->m_Selected & IS_SELECTED ) != 0; bool selected = ( MasterPin->m_Selected & IS_SELECTED ) != 0;
bool showPinText = true; bool showPinText = true;
if( ( m_component == NULL ) || ( MasterPin == NULL ) ) if( ( m_component == NULL ) || ( MasterPin == NULL ) )
...@@ -876,10 +878,10 @@ void WinEDA_LibeditFrame::RepeatPinItem( wxDC* DC, LIB_PIN* SourcePin ) ...@@ -876,10 +878,10 @@ void WinEDA_LibeditFrame::RepeatPinItem( wxDC* DC, LIB_PIN* SourcePin )
|| SourcePin->Type() != COMPONENT_PIN_DRAW_TYPE ) || SourcePin->Type() != COMPONENT_PIN_DRAW_TYPE )
return; return;
Pin = (LIB_PIN*)SourcePin->GenCopy(); Pin = (LIB_PIN*) SourcePin->GenCopy();
m_component->AddDrawItem( Pin ); m_component->AddDrawItem( Pin );
Pin->m_Flags = IS_NEW; Pin->m_Flags = IS_NEW;
Pin->m_Pos.x += g_RepeatStep.x; Pin->m_Pos.x += g_RepeatStep.x;
ox = Pin->m_Pos.x; ox = Pin->m_Pos.x;
Pin->m_Pos.y += -g_RepeatStep.y; Pin->m_Pos.y += -g_RepeatStep.y;
...@@ -912,48 +914,63 @@ void WinEDA_LibeditFrame::RepeatPinItem( wxDC* DC, LIB_PIN* SourcePin ) ...@@ -912,48 +914,63 @@ void WinEDA_LibeditFrame::RepeatPinItem( wxDC* DC, LIB_PIN* SourcePin )
} }
int sort_by_pin_number( const void* ref, const void* tst ) /* helper function to sort pins by pin num */
bool sort_by_pin_number( const LIB_PIN* ref, const LIB_PIN* tst )
{ {
const LIB_PIN* Ref = *(LIB_PIN**) ref; int test = ref->m_PinNum - tst->m_PinNum;
const LIB_PIN* Tst = *(LIB_PIN**) tst;
return Ref->m_PinNum - Tst->m_PinNum; if( test == 0 )
{
test = ref->m_Convert - tst->m_Convert;
}
if( test == 0 )
{
test = ref->m_Unit - tst->m_Unit;
}
return test < 0;
} }
/* Test for duplicate pins:
*/
void WinEDA_LibeditFrame::OnCheckComponent( wxCommandEvent& event ) void WinEDA_LibeditFrame::OnCheckComponent( wxCommandEvent& event )
{ {
int nb_pins, ii, error; int error;
LIB_PIN* Pin; LIB_PIN* Pin;
LIB_PIN** PinList; wxString msg;
wxString msg;
if( m_component == NULL ) if( m_component == NULL )
return; return;
// Construction de la liste des pins: // Build the pin list:
std::vector <LIB_PIN* >PinList;
Pin = m_component->GetNextPin(); Pin = m_component->GetNextPin();
for( nb_pins = 0; Pin != NULL; Pin = m_component->GetNextPin( Pin ) ) for( ; Pin != NULL; Pin = m_component->GetNextPin( Pin ) )
{ {
nb_pins++; if( Pin->Type() == COMPONENT_PIN_DRAW_TYPE )
PinList.push_back( Pin );
} }
PinList = (LIB_PIN**) MyZMalloc( (nb_pins + 1) * sizeof(LIB_PIN*) ); if( PinList.size() == 0 )
Pin = m_component->GetNextPin();
for( ii = 0; Pin != NULL; Pin = m_component->GetNextPin( Pin ) )
{ {
if( Pin->Type() == COMPONENT_PIN_DRAW_TYPE ) DisplayInfoMessage( this, _( "No pins!" ) );
PinList[ii++] = Pin; return;
} }
// Classement des pins par numero de pin // Sort pins by pin num, so 2 duplicate pins
qsort( PinList, nb_pins, sizeof(LIB_PIN*), sort_by_pin_number ); // (pins with the same number) will be consecutive in list
sort( PinList.begin(), PinList.end(), sort_by_pin_number );
// Controle des duplicates: // Test for duplicates:
error = 0; error = 0;
for( ii = 1; ii < nb_pins; ii++ ) DIALOG_DISPLAY_HTML_TEXT_BASE
error_display( this, wxID_ANY, _( "Marker Info" ),
wxDefaultPosition, wxSize( 750, 600 ) );
for( unsigned ii = 1; ii < PinList.size(); ii++ )
{ {
wxString aux_msg, StringPinNum; wxString aux_msg;
wxString stringPinNum, stringCurrPinNum;
LIB_PIN* curr_pin = PinList[ii]; LIB_PIN* curr_pin = PinList[ii];
Pin = PinList[ii - 1]; Pin = PinList[ii - 1];
...@@ -963,14 +980,17 @@ void WinEDA_LibeditFrame::OnCheckComponent( wxCommandEvent& event ) ...@@ -963,14 +980,17 @@ void WinEDA_LibeditFrame::OnCheckComponent( wxCommandEvent& event )
continue; continue;
error++; error++;
curr_pin->ReturnPinStringNum( StringPinNum ); Pin->ReturnPinStringNum( stringPinNum );
msg.Printf( _( "Duplicate pin %s at location (%d, %d) conflicts \ curr_pin->ReturnPinStringNum( stringCurrPinNum );
with pin %s at location (%d, %d)" ), msg.Printf( _(
GetChars( StringPinNum ), "<b>Duplicate pin %s</b> \"%s\" at location <b>(%.3f, %.3f)</b> conflicts \
with pin %s \"%s\" at location <b>(%.3f, %.3f)</b>" ),
GetChars( stringCurrPinNum ),
GetChars( curr_pin->m_PinName ), GetChars( curr_pin->m_PinName ),
curr_pin->m_Pos.x, -curr_pin->m_Pos.y, (float) curr_pin->m_Pos.x / 1000.0, (float) -curr_pin->m_Pos.y / 1000.0,
GetChars( stringPinNum ),
GetChars( Pin->m_PinName ), GetChars( Pin->m_PinName ),
Pin->m_Pos.x, -Pin->m_Pos.y ); (float) Pin->m_Pos.x / 1000.0, (float) -Pin->m_Pos.y / 1000.0 );
if( m_component->GetPartCount() > 1 ) if( m_component->GetPartCount() > 1 )
{ {
...@@ -986,13 +1006,13 @@ with pin %s at location (%d, %d)" ), ...@@ -986,13 +1006,13 @@ with pin %s at location (%d, %d)" ),
msg += _( " of normal" ); msg += _( " of normal" );
} }
msg += wxT( "." ); msg += wxT( ".<br>" );
DisplayError( this, msg ); error_display.m_htmlWindow->AppendToPage( msg );
} }
free( PinList );
if( error == 0 ) if( error == 0 )
DisplayInfoMessage( this, _( "No duplicate pins were found." ) ); DisplayInfoMessage( this, _( "No duplicate pins were found." ) );
else
error_display.ShowModal();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment