kicad/eeschema/erc.cpp

832 lines
25 KiB
C++
Raw Normal View History

2007-09-20 21:06:49 +00:00
/**************************************************/
/* Module de tst "ERC" ( Electrical Rules Check ) */
/**************************************************/
2007-05-06 16:03:28 +00:00
#include "fctsys.h"
#include "common.h"
#include "program.h"
#include "libcmp.h"
#include "general.h"
#include "netlist.h"
#include "protos.h"
#include "bitmaps.h"
2007-05-06 16:03:28 +00:00
#include "dialog_erc.h"
/* On teste
2007-09-20 21:06:49 +00:00
* 1 - conflits entre pins connectees ( ex: 2 sorties connectees )
* 2 - les imperatifs minimaux ( 1 entree doit etre connectee a une sortie )
*/
2007-05-06 16:03:28 +00:00
/* fonctions exportees */
/* fonctions importees */
/* fonctions locales */
2007-09-20 21:06:49 +00:00
static bool WriteDiagnosticERC( const wxString& FullFileName );
static void Diagnose( WinEDA_DrawPanel* panel, wxDC* DC,
ObjetNetListStruct* NetItemRef,
ObjetNetListStruct* NetItemTst, int MinConnexion, int Diag );
static void TestOthersItems( WinEDA_DrawPanel* panel,
wxDC* DC, ObjetNetListStruct* NetItemRef,
ObjetNetListStruct* NetStart,
int* NetNbItems, int* MinConnexion );
static void TestLabel( WinEDA_DrawPanel* panel, wxDC* DC,
ObjetNetListStruct* NetItemRef,
ObjetNetListStruct* StartNet );
2007-05-06 16:03:28 +00:00
/* Variable locales */
int WriteFichierERC = FALSE;
/* Tableau des types de conflit :
2007-09-20 21:06:49 +00:00
* PIN_INPUT, PIN_OUTPUT, PIN_BIDI, PIN_TRISTATE, PIN_PASSIVE,
* PIN_UNSPECIFIED, PIN_POWER_IN, PIN_POWER_OUT, PIN_OPENCOLLECTOR,
* PIN_OPENEMITTER, PIN_NC
*/
#define OK 0
#define WAR 1 // utilis<69> aussi dans eeredraw
2007-05-06 16:03:28 +00:00
#define ERR 2
#define UNC 3
2007-09-20 21:06:49 +00:00
static const wxChar* CommentERC_H[] =
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
wxT( "Input Pin...." ),
wxT( "Output Pin..." ),
wxT( "BiDi Pin....." ),
wxT( "3 State Pin.." ),
wxT( "Passive Pin.." ),
wxT( "Unspec Pin..." ),
wxT( "Power IN Pin." ),
wxT( "PowerOUT Pin." ),
wxT( "Open Coll...." ),
wxT( "Open Emit...." ),
wxT( "No Conn......" ),
NULL
2007-05-06 16:03:28 +00:00
};
2007-09-20 21:06:49 +00:00
static const wxChar* CommentERC_V[] =
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
wxT( "Input Pin" ),
wxT( "Output Pin" ),
wxT( "BiDi Pin" ),
wxT( "3 State Pin" ),
wxT( "Passive Pin" ),
wxT( "Unspec Pin" ),
wxT( "Power IN Pin" ),
wxT( "PowerOUT Pin" ),
wxT( "Open Coll" ),
wxT( "Open Emit" ),
wxT( "No Conn" ),
NULL
2007-05-06 16:03:28 +00:00
};
/* Look up table which gives the diag for a pair of connected pins
2007-09-20 21:06:49 +00:00
* Can be modified by ERC options.
* at start up: must be loaded by DefaultDiagErc
*/
2007-05-06 16:03:28 +00:00
static int DiagErc[PIN_NMAX][PIN_NMAX];
2007-09-20 21:06:49 +00:00
bool DiagErcTableInit; // go to TRUE after DiagErc init
2007-05-06 16:03:28 +00:00
/* Default Look up table which gives the diag for a pair of connected pins
2007-09-20 21:06:49 +00:00
* Same as DiagErc, but cannot be modified
* Used to init or reset DiagErc
*/
2007-05-06 16:03:28 +00:00
static int DefaultDiagErc[PIN_NMAX][PIN_NMAX] =
{ /* I, O, Bi, 3S, Pas, UnS,PwrI,PwrO, OC, OE, NC */
2008-03-13 05:04:59 +00:00
/* I */
{ OK, OK, OK, OK, OK, WAR, OK, OK, OK, OK, WAR },
/* O */ { OK, ERR, OK, WAR, OK, WAR, OK, ERR, ERR, ERR, WAR },
/* Bi*/ { OK, OK, OK, OK, OK, WAR, OK, WAR, OK, WAR, WAR },
/* 3S*/ { OK, WAR, OK, OK, OK, WAR, WAR, ERR, WAR, WAR, WAR },
/*Pas*/ { OK, OK, OK, OK, OK, WAR, OK, OK, OK, OK, WAR },
2007-09-20 21:06:49 +00:00
/*UnS */ { WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR },
2008-03-13 05:04:59 +00:00
/*PwrI*/ { OK, OK, OK, WAR, OK, WAR, OK, OK, OK, OK, ERR },
/*PwrO*/ { OK, ERR, WAR, ERR, OK, WAR, OK, ERR, ERR, ERR, WAR },
/* OC */ { OK, ERR, OK, WAR, OK, WAR, OK, ERR, OK, OK, WAR },
/* OE */ { OK, ERR, WAR, WAR, OK, WAR, OK, ERR, OK, OK, WAR },
2007-09-20 21:06:49 +00:00
/* NC */ { WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR, WAR }
};
2007-05-06 16:03:28 +00:00
/* Minimal connection table */
2007-09-20 21:06:49 +00:00
#define DRV 3 /* Net driven by a signal (a pin output for instance) */
#define NET_NC 2 /* Net "connected" to a "NoConnect symbol" */
#define NOD 1 /* Net not driven ( Such as 2 or more connected inputs )*/
#define NOC 0 /* Pin isolee, non connectee */
2007-05-06 16:03:28 +00:00
/* Look up table which gives the minimal drive for a pair of connected pins on a net
2007-09-20 21:06:49 +00:00
* Initial state of a net is NOC (No Connection)
* Can be updated to NET_NC, or NOD (Not Driven) or DRV (DRIven)
2008-03-13 05:04:59 +00:00
*
2007-09-20 21:06:49 +00:00
* Can be updated to NET_NC only if the previous state is NOC
2008-03-13 05:04:59 +00:00
*
2007-09-20 21:06:49 +00:00
* Nets are OK when their final state is NET_NC or DRV
* Nets with the state NOD have no source signal
*/
2007-05-06 16:03:28 +00:00
static int MinimalReq[PIN_NMAX][PIN_NMAX] =
2007-09-20 21:06:49 +00:00
{ /* In, Out, Bi, 3S, Pas, UnS,PwrI,PwrO, OC, OE, NC */
2008-03-13 05:04:59 +00:00
/* In*/
{ NOD, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
/*Out*/ { DRV, DRV, DRV, DRV, DRV, DRV, DRV, DRV, DRV, DRV, NOC },
/* Bi*/ { DRV, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
/* 3S*/ { DRV, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
/*Pas*/ { DRV, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
/*UnS*/ { DRV, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
2007-09-20 21:06:49 +00:00
/*PwrI*/ { NOD, DRV, NOD, NOD, NOD, NOD, NOD, DRV, NOD, NOD, NOC },
/*PwrO*/ { DRV, DRV, DRV, DRV, DRV, DRV, DRV, DRV, DRV, DRV, NOC },
2008-03-13 05:04:59 +00:00
/* OC*/ { DRV, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
/* OE*/ { DRV, DRV, DRV, DRV, DRV, DRV, NOD, DRV, DRV, DRV, NOC },
/* NC*/ { NOC, NOC, NOC, NOC, NOC, NOC, NOC, NOC, NOC, NOC, NOC }
2007-09-20 21:06:49 +00:00
};
2007-05-06 16:03:28 +00:00
/*********************************************/
void WinEDA_ErcFrame::ReBuildMatrixPanel()
2007-05-06 16:03:28 +00:00
/*********************************************/
2007-09-20 21:06:49 +00:00
/* Build or rebuild the panel showing the ERC matrix
2007-09-20 21:06:49 +00:00
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
int ii, jj, event_id, text_height;
wxPoint pos, BoxMatrixPosition;
2007-05-06 16:03:28 +00:00
#define BITMAP_SIZE 19
2007-09-20 21:06:49 +00:00
int bitmap_size = BITMAP_SIZE;
wxStaticText* text;
int x, y;
wxSize BoxMatrixMinSize;
if( !DiagErcTableInit )
{
memcpy( DiagErc, DefaultDiagErc, sizeof(DefaultDiagErc) );
DiagErcTableInit = TRUE;
}
// Get the current text size :
text = new wxStaticText( m_PanelERCOptions, -1, wxT( "W" ), pos ); // this is a dummy text
text_height = text->GetRect().GetHeight();
bitmap_size = MAX( bitmap_size, text_height );
2008-03-13 05:04:59 +00:00
SAFE_DELETE( text );
2007-09-20 21:06:49 +00:00
// compute the Y pos interval:
BoxMatrixMinSize.y = ( bitmap_size * (PIN_NMAX + 1) ) + 5;
GetSizer()->Fit( this );
GetSizer()->SetSizeHints( this );
pos = m_MatrixSizer->GetPosition();
// Size computation is not made in constructor, in some wxWidgets version,
// and m_BoxSizerForERC_Opt position is always 0,0. and we can't use it
pos.x = MAX( pos.x, 5 );
pos.y = MAX( pos.y, m_ResetOptButton->GetRect().GetHeight() + 30 );
BoxMatrixPosition = pos;
pos.y += text_height;
if( m_Initialized == FALSE )
{
for( ii = 0; ii < PIN_NMAX; ii++ )
{
y = pos.y + (ii * bitmap_size);
text = new wxStaticText( m_PanelERCOptions, -1, CommentERC_H[ii], wxPoint( 5, y ) );
x = text->GetRect().GetRight();
pos.x = MAX( pos.x, x );
}
pos.x += 5;
}
else
pos = m_ButtonList[0][0]->GetPosition();
for( ii = 0; ii < PIN_NMAX; ii++ )
{
y = pos.y + (ii * bitmap_size);
for( jj = 0; jj <= ii; jj++ )
{
int diag = DiagErc[ii][jj];
x = pos.x + (jj * bitmap_size);
if( (ii == jj) && !m_Initialized )
{
wxPoint txtpos;
txtpos.x = x + 4; txtpos.y = y - bitmap_size;
text = new wxStaticText( m_PanelERCOptions, -1, CommentERC_V[ii], txtpos );
BoxMatrixMinSize.x = MAX( BoxMatrixMinSize.x, text->GetRect().GetRight() );
}
event_id = ID_MATRIX_0 + ii + (jj * PIN_NMAX);
delete m_ButtonList[ii][jj];
switch( diag )
{
case OK:
m_ButtonList[ii][jj] = new wxBitmapButton( m_PanelERCOptions,
event_id,
wxBitmap (green_xpm),
wxPoint (x, y) );
break;
case WAR:
m_ButtonList[ii][jj] = new wxBitmapButton( m_PanelERCOptions,
event_id,
wxBitmap (warning_xpm),
wxPoint (x, y) );
break;
case ERR:
m_ButtonList[ii][jj] = new wxBitmapButton( m_PanelERCOptions,
event_id,
wxBitmap (error_xpm),
wxPoint (x, y) );
break;
}
}
}
if( !m_Initialized )
{
BoxMatrixMinSize.x += 5;
m_MatrixSizer->SetMinSize( BoxMatrixMinSize );
BoxMatrixMinSize.y += BoxMatrixPosition.y;
m_PanelMatrixSizer->SetMinSize( BoxMatrixMinSize );
}
m_Initialized = TRUE;
2007-05-06 16:03:28 +00:00
}
/**************************************************/
2007-09-20 21:06:49 +00:00
void WinEDA_ErcFrame::TestErc( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
/**************************************************/
{
2007-09-20 21:06:49 +00:00
ObjetNetListStruct* NetItemRef;
ObjetNetListStruct* OldItem;
ObjetNetListStruct* StartNet;
ObjetNetListStruct* Lim;
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
int NetNbItems, MinConn;
if( !DiagErcTableInit )
{
memcpy( DiagErc, DefaultDiagErc, sizeof(DefaultDiagErc) );
DiagErcTableInit = TRUE;
}
WriteFichierERC = m_WriteResultOpt->GetValue();
ReAnnotatePowerSymbolsOnly();
if( CheckAnnotate( m_Parent, 0 ) )
{
DisplayError( this, _( "Annotation Required!" ) );
return;
}
/* Effacement des anciens marqueurs DRC */
DelERCMarkers( event );
wxClientDC dc( m_Parent->DrawPanel );
m_Parent->DrawPanel->PrepareGraphicContext( &dc );
g_EESchemaVar.NbErrorErc = 0;
g_EESchemaVar.NbWarningErc = 0;
/* Cleanup the entire hierarchy */
EDA_ScreenList ScreenList;
2007-09-20 21:06:49 +00:00
for( SCH_SCREEN* Screen = ScreenList.GetFirst(); Screen != NULL; Screen = ScreenList.GetNext() )
{
bool ModifyWires;
ModifyWires = Screen->SchematicCleanUp( NULL );
/* if wire list has changed, delete Udo Redo list to avoid
* pointers on deleted data problems */
if( ModifyWires )
Screen->ClearUndoRedoList();
}
m_Parent->BuildNetListBase();
/* Analyse de la table des connexions : */
Lim = g_TabObjNet + g_NbrObjNet;
/* Reset du flag m_FlagOfConnection, utilise par la suite */
for( NetItemRef = g_TabObjNet; NetItemRef < Lim; NetItemRef++ )
NetItemRef->m_FlagOfConnection = UNCONNECTED;
2007-09-20 21:06:49 +00:00
2008-03-13 05:04:59 +00:00
NetNbItems = 0;
MinConn = NOC;
2007-09-20 21:06:49 +00:00
StartNet = OldItem = NetItemRef = g_TabObjNet;
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
for( ; NetItemRef < Lim; NetItemRef++ )
{
/* Tst changement de net */
2007-10-13 06:18:44 +00:00
if( OldItem->GetNet() != NetItemRef->GetNet() )
2007-09-20 21:06:49 +00:00
{
2008-03-13 05:04:59 +00:00
MinConn = NOC;
NetNbItems = 0;
StartNet = NetItemRef;
2007-09-20 21:06:49 +00:00
}
switch( NetItemRef->m_Type )
{
case NET_SEGMENT:
case NET_BUS:
case NET_JONCTION:
case NET_LABEL:
case NET_BUSLABELMEMBER:
case NET_PINLABEL:
2008-03-13 05:04:59 +00:00
case NET_GLOBLABEL: //not sure how to handle global labels -- they should be treated like other nets (just global!0
case NET_GLOBBUSLABELMEMBER:
2007-09-20 21:06:49 +00:00
break;
case NET_HIERLABEL:
case NET_HIERBUSLABELMEMBER:
2007-09-20 21:06:49 +00:00
case NET_SHEETLABEL:
case NET_SHEETBUSLABELMEMBER:
TestLabel( m_Parent->DrawPanel, &dc, NetItemRef, StartNet );
break;
case NET_NOCONNECT:
MinConn = NET_NC;
if( NetNbItems != 0 )
Diagnose( m_Parent->DrawPanel, &dc, NetItemRef, NULL, MinConn, UNC );
break;
case NET_PIN:
TestOthersItems( m_Parent->DrawPanel, &dc,
2008-03-13 05:04:59 +00:00
NetItemRef, StartNet, &NetNbItems, &MinConn );
2007-09-20 21:06:49 +00:00
break;
}
OldItem = NetItemRef;
}
FreeTabNetList( g_TabObjNet, g_NbrObjNet );
wxString num;
num.Printf( wxT( "%d" ), g_EESchemaVar.NbErrorErc );
m_TotalErrCount->SetLabel( num );
num.Printf( wxT( "%d" ), g_EESchemaVar.NbErrorErc - g_EESchemaVar.NbWarningErc );
m_LastErrCount->SetLabel( num );
num.Printf( wxT( "%d" ), g_EESchemaVar.NbWarningErc );
m_LastWarningCount->SetLabel( num );
/* Generation ouverture fichier diag */
if( WriteFichierERC == TRUE )
{
wxString ErcFullFileName;
2008-03-13 05:04:59 +00:00
ErcFullFileName = g_RootSheet->m_AssociatedScreen->m_FileName;
2007-09-20 21:06:49 +00:00
ChangeFileNameExt( ErcFullFileName, wxT( ".erc" ) );
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
ErcFullFileName = EDA_FileSelector( _( "ERC file:" ),
2008-03-13 05:04:59 +00:00
wxEmptyString, /* Chemin par defaut */
ErcFullFileName, /* nom fichier par defaut */
wxT( ".erc" ), /* extension par defaut */
wxT( "*.erc" ), /* Masque d'affichage */
this,
wxFD_SAVE,
TRUE
);
2007-09-20 21:06:49 +00:00
if( ErcFullFileName.IsEmpty() )
return;
if( WriteDiagnosticERC( ErcFullFileName ) )
{
Close( TRUE );
wxString editorname = GetEditorName();
AddDelimiterString( ErcFullFileName );
ExecuteFile( this, editorname, ErcFullFileName );
}
}
2007-05-06 16:03:28 +00:00
}
/***********************************************************/
2007-09-20 21:06:49 +00:00
void WinEDA_ErcFrame::DelERCMarkers( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
/***********************************************************/
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/* Delete the old ERC markers, over the whole hierarchy
2007-09-20 21:06:49 +00:00
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
EDA_BaseStruct* DrawStruct;
DrawMarkerStruct* Marker;
wxClientDC dc( m_Parent->DrawPanel );
m_Parent->DrawPanel->PrepareGraphicContext( &dc );
// Delete markers for the current screen
DrawStruct = m_Parent->GetScreen()->EEDrawList;
for( ; DrawStruct != NULL; DrawStruct = DrawStruct->Next() )
2007-09-20 21:06:49 +00:00
{
if( DrawStruct->Type() != DRAW_MARKER_STRUCT_TYPE )
continue;
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
/* Marqueur trouve */
Marker = (DrawMarkerStruct*) DrawStruct;
if( Marker->m_Type == MARQ_ERC )
RedrawOneStruct( m_Parent->DrawPanel, &dc, Marker, g_XorMode );
}
/* Suppression en memoire des marqueurs ERC */
DeleteAllMarkers( MARQ_ERC );
2007-05-06 16:03:28 +00:00
}
/**************************************************************/
2007-09-20 21:06:49 +00:00
void WinEDA_ErcFrame::ResetDefaultERCDiag( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
/**************************************************************/
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/* Remet aux valeurs par defaut la matrice de diagnostic
2007-09-20 21:06:49 +00:00
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
memcpy( DiagErc, DefaultDiagErc, sizeof(DiagErc) );
ReBuildMatrixPanel();
2007-05-06 16:03:28 +00:00
}
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/************************************************************/
2007-09-20 21:06:49 +00:00
void WinEDA_ErcFrame::ChangeErrorLevel( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
/************************************************************/
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/* Change the error level for the pressed button, on the matrix table
2007-09-20 21:06:49 +00:00
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
int id, level, ii, x, y;
wxBitmapButton* Butt;
2008-03-13 05:04:59 +00:00
const char** new_bitmap_xpm = NULL;
2007-09-20 21:06:49 +00:00
wxPoint pos;
id = event.GetId();
ii = id - ID_MATRIX_0;
Butt = (wxBitmapButton*) event.GetEventObject();
pos = Butt->GetPosition();
x = ii / PIN_NMAX; y = ii % PIN_NMAX;
level = DiagErc[y][x];
switch( level )
{
case OK:
level = WAR;
new_bitmap_xpm = warning_xpm;
break;
case WAR:
level = ERR;
new_bitmap_xpm = error_xpm;
break;
case ERR:
level = OK;
new_bitmap_xpm = green_xpm;
break;
}
if( new_bitmap_xpm )
{
delete Butt;
Butt = new wxBitmapButton( m_PanelERCOptions, id,
wxBitmap (new_bitmap_xpm), pos );
m_ButtonList[y][x] = Butt;
DiagErc[y][x] = DiagErc[x][y] = level;
}
2007-05-06 16:03:28 +00:00
}
/********************************************************/
2007-09-20 21:06:49 +00:00
static void Diagnose( WinEDA_DrawPanel* panel, wxDC* DC,
ObjetNetListStruct* NetItemRef,
ObjetNetListStruct* NetItemTst,
int MinConn, int Diag )
2007-05-06 16:03:28 +00:00
/********************************************************/
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/* Routine de creation du marqueur ERC correspondant au conflit electrique
2007-09-20 21:06:49 +00:00
* entre NetItemRef et NetItemTst
* si MinConn < 0: Traitement des erreurs sur labels
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
DrawMarkerStruct* Marker = NULL;
wxString DiagLevel;
SCH_SCREEN* screen;
int ii, jj;
if( Diag == OK )
return;
/* Creation du nouveau marqueur type Erreur ERC */
Marker = new DrawMarkerStruct( NetItemRef->m_Start, wxEmptyString );
Marker->m_Type = MARQ_ERC;
Marker->m_MarkFlags = WAR;
screen = NetItemRef->m_SheetList.LastScreen();
Marker->SetNext( screen->EEDrawList );
2007-09-20 21:06:49 +00:00
screen->EEDrawList = Marker;
g_EESchemaVar.NbErrorErc++;
g_EESchemaVar.NbWarningErc++;
if( MinConn < 0 ) // Traitement des erreurs sur labels
{
if( (NetItemRef->m_Type == NET_HIERLABEL)
|| (NetItemRef->m_Type == NET_HIERBUSLABELMEMBER) )
2007-09-20 21:06:49 +00:00
{
Marker->m_Comment.Printf( _( "Warning HLabel %s not connected to SheetLabel" ),
2008-03-13 05:04:59 +00:00
NetItemRef->m_Label->GetData() );
2007-09-20 21:06:49 +00:00
}
else
Marker->m_Comment.Printf( _( "Warning SheetLabel %s not connected to HLabel" ),
2008-03-13 05:04:59 +00:00
NetItemRef->m_Label->GetData() );
2007-09-20 21:06:49 +00:00
if( screen == panel->GetScreen() )
RedrawOneStruct( panel, DC, Marker, GR_COPY );
return;
}
ii = NetItemRef->m_ElectricalType;
if( NetItemTst == NULL )
{
if( MinConn == NOC ) /* 1 seul element dans le net */
{
Marker->m_Comment.Printf( _( "Warning Pin %s Unconnected" ), MsgPinElectricType[ii] );
if( screen == panel->GetScreen() )
RedrawOneStruct( panel, DC, Marker, GR_COPY );
return;
}
if( MinConn == NOD ) /* pas de pilotage du net */
{
Marker->m_Comment.Printf(
_( "Warning Pin %s not driven (Net %d)" ),
2007-10-13 06:18:44 +00:00
MsgPinElectricType[ii], NetItemRef->GetNet() );
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
if( screen == panel->GetScreen() )
RedrawOneStruct( panel, DC, Marker, GR_COPY );
return;
}
if( Diag == UNC )
{
Marker->m_Comment.Printf(
_( "Warning More than 1 Pin connected to UnConnect symbol" ) );
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
if( screen == panel->GetScreen() )
RedrawOneStruct( panel, DC, Marker, GR_COPY );
return;
}
}
if( NetItemTst ) /* Erreur entre 2 pins */
{
jj = NetItemTst->m_ElectricalType;
DiagLevel = _( "Warning" );
if( Diag == ERR )
{
DiagLevel = _( "Error" );
Marker->m_MarkFlags = ERR;
g_EESchemaVar.NbWarningErc--;
}
Marker->m_Comment.Printf( _(
2008-03-13 05:04:59 +00:00
"%s: Pin %s connected to Pin %s (net %d)" ),
DiagLevel.GetData(),
MsgPinElectricType[ii],
MsgPinElectricType[jj], NetItemRef->GetNet() );
2007-09-20 21:06:49 +00:00
if( screen == panel->GetScreen() )
RedrawOneStruct( panel, DC, Marker, GR_COPY );
}
2007-05-06 16:03:28 +00:00
}
/********************************************************************/
2007-09-20 21:06:49 +00:00
static void TestOthersItems( WinEDA_DrawPanel* panel, wxDC* DC,
ObjetNetListStruct* NetItemRef,
ObjetNetListStruct* netstart,
int* NetNbItems, int* MinConnexion )
2007-05-06 16:03:28 +00:00
/********************************************************************/
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/* Routine testant les conflits electriques entre
2007-09-20 21:06:49 +00:00
* NetItemRef
* et les autres items du meme net
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
ObjetNetListStruct* NetItemTst;
ObjetNetListStruct* Lim;
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
int ref_elect_type, jj, erc = OK, local_minconn;
/* Analyse de la table des connexions : */
Lim = g_TabObjNet + g_NbrObjNet; // pointe la fin de la liste
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
ref_elect_type = NetItemRef->m_ElectricalType;
NetItemTst = netstart;
local_minconn = NOC;
/* Examen de la liste des Pins connectees a NetItemRef */
for( ; ; NetItemTst++ )
{
if( NetItemRef == NetItemTst )
continue;
/* Est - on toujours dans le meme net ? */
if( (NetItemTst >= Lim) // fin de liste (donc fin de net)
2008-03-13 05:04:59 +00:00
|| ( NetItemRef->GetNet() != NetItemTst->GetNet() ) ) // fin de net
2007-09-20 21:06:49 +00:00
{ /* Fin de netcode trouve: Tst connexion minimum */
if( (*MinConnexion < NET_NC )
&& (local_minconn < NET_NC ) ) /* pin non connect<63>e ou non pilotee */
2007-09-20 21:06:49 +00:00
{
Diagnose( panel, DC, NetItemRef, NULL, local_minconn, WAR );
*MinConnexion = DRV; // inhibition autres messages de ce type pour ce net
}
return;
}
switch( NetItemTst->m_Type )
{
case NET_SEGMENT:
case NET_BUS:
case NET_JONCTION:
case NET_LABEL:
case NET_HIERLABEL:
2007-09-20 21:06:49 +00:00
case NET_BUSLABELMEMBER:
case NET_HIERBUSLABELMEMBER:
2007-09-20 21:06:49 +00:00
case NET_SHEETBUSLABELMEMBER:
case NET_SHEETLABEL:
2008-03-13 05:04:59 +00:00
case NET_GLOBLABEL:
case NET_GLOBBUSLABELMEMBER:
2007-09-20 21:06:49 +00:00
case NET_PINLABEL:
break;
case NET_NOCONNECT:
local_minconn = MAX( NET_NC, local_minconn );
break;
case NET_PIN:
jj = NetItemTst->m_ElectricalType;
local_minconn = MAX( MinimalReq[ref_elect_type][jj], local_minconn );
if( NetItemTst <= NetItemRef )
break;
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
*NetNbItems += 1;
if( erc == OK ) // 1 marqueur par pin maxi
{
erc = DiagErc[ref_elect_type][jj];
if( erc != OK )
{
if( NetItemTst->m_FlagOfConnection == 0 )
{
Diagnose( panel, DC, NetItemRef, NetItemTst, 0, erc );
NetItemTst->m_FlagOfConnection = NOCONNECT;
2007-09-20 21:06:49 +00:00
}
}
}
break;
}
}
2007-05-06 16:03:28 +00:00
}
/********************************************************/
2007-09-20 21:06:49 +00:00
static bool WriteDiagnosticERC( const wxString& FullFileName )
2007-05-06 16:03:28 +00:00
/*********************************************************/
2007-09-20 21:06:49 +00:00
/* Create the Diagnostic file (<xxx>.erc file)
2007-09-20 21:06:49 +00:00
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
EDA_BaseStruct* DrawStruct;
DrawMarkerStruct* Marker;
char Line[256];
static FILE* OutErc;
2008-03-13 05:04:59 +00:00
DrawSheetPath* Sheet;
2007-09-20 21:06:49 +00:00
wxString msg;
if( ( OutErc = wxFopen( FullFileName, wxT( "wt" ) ) ) == NULL )
return FALSE;
DateAndTime( Line );
msg = _( "ERC control" );
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
fprintf( OutErc, "%s (%s)\n", CONV_TO_UTF8( msg ), Line );
EDA_SheetList SheetList( NULL );
2007-09-20 21:06:49 +00:00
for( Sheet = SheetList.GetFirst(); Sheet != NULL; Sheet = SheetList.GetNext() )
2007-09-20 21:06:49 +00:00
{
2008-03-13 05:04:59 +00:00
if( Sheet->Last() == g_RootSheet )
{
msg.Printf( _( "\n***** Sheet / (Root) \n" ) );
}
else
{
wxString str = Sheet->PathHumanReadable();
msg.Printf( _( "\n***** Sheet %s\n" ), str.GetData() );
}
2007-09-20 21:06:49 +00:00
fprintf( OutErc, "%s", CONV_TO_UTF8( msg ) );
2008-03-13 05:04:59 +00:00
DrawStruct = Sheet->LastDrawList();
for( ; DrawStruct != NULL; DrawStruct = DrawStruct->Next() )
2007-09-20 21:06:49 +00:00
{
if( DrawStruct->Type() != DRAW_MARKER_STRUCT_TYPE )
continue;
/* Marqueur trouve */
Marker = (DrawMarkerStruct*) DrawStruct;
if( Marker->m_Type != MARQ_ERC )
continue;
2008-03-13 05:04:59 +00:00
2007-09-20 21:06:49 +00:00
/* Write diag marqueur */
msg.Printf( _( "ERC: %s (X= %2.3f inches, Y= %2.3f inches\n" ),
2008-03-13 05:04:59 +00:00
Marker->GetComment().GetData(),
(float) Marker->m_Pos.x / 1000,
(float) Marker->m_Pos.y / 1000 );
2007-09-20 21:06:49 +00:00
fprintf( OutErc, "%s", CONV_TO_UTF8( msg ) );
}
}
msg.Printf( _( "\n >> Errors ERC: %d\n" ), g_EESchemaVar.NbErrorErc );
fprintf( OutErc, "%s", CONV_TO_UTF8( msg ) );
fclose( OutErc );
return TRUE;
2007-05-06 16:03:28 +00:00
}
2008-03-13 05:04:59 +00:00
bool TestLabel_( ObjetNetListStruct* a, ObjetNetListStruct* b )
{
2008-03-13 05:04:59 +00:00
int at = a->m_Type;
int bt = b->m_Type;
if( (at == NET_HIERLABEL || at == NET_HIERBUSLABELMEMBER)
&&(bt == NET_SHEETLABEL || bt == NET_SHEETBUSLABELMEMBER) )
{
if( a->m_SheetList == b->m_SheetListInclude )
{
return true; //connected!
}
}
return false; //these two are unconnected
}
2008-03-13 05:04:59 +00:00
2007-05-06 16:03:28 +00:00
/***********************************************************************/
2007-09-20 21:06:49 +00:00
void TestLabel( WinEDA_DrawPanel* panel, wxDC* DC,
ObjetNetListStruct* NetItemRef, ObjetNetListStruct* StartNet )
2007-05-06 16:03:28 +00:00
/***********************************************************************/
2007-09-20 21:06:49 +00:00
2007-05-06 16:03:28 +00:00
/* Routine controlant qu'un sheetLabel est bien connecte a un Glabel de la
2007-09-20 21:06:49 +00:00
* sous-feuille correspondante
*/
2007-05-06 16:03:28 +00:00
{
2007-09-20 21:06:49 +00:00
ObjetNetListStruct* NetItemTst, * Lim;
int erc = 1;
/* Analyse de la table des connexions : */
Lim = g_TabObjNet + g_NbrObjNet;
NetItemTst = StartNet;
/* Examen de la liste des Labels connectees a NetItemRef */
for( ; ; NetItemTst++ )
{
if( NetItemTst == NetItemRef )
continue;
/* Est - on toujours dans le meme net ? */
if( ( NetItemTst == Lim )
2007-10-13 06:18:44 +00:00
|| ( NetItemRef->GetNet() != NetItemTst->GetNet() ) )
2008-03-13 05:04:59 +00:00
{
2007-09-20 21:06:49 +00:00
/* Fin de netcode trouve */
2008-03-13 05:04:59 +00:00
if( erc )
{
2007-09-20 21:06:49 +00:00
/* GLabel ou SheetLabel orphelin */
Diagnose( panel, DC, NetItemRef, NULL, -1, WAR );
}
return;
}
2008-03-13 05:04:59 +00:00
if( TestLabel_( NetItemRef, NetItemTst ) )
erc = 0;
//same thing, different order.
if( TestLabel_( NetItemTst, NetItemRef ) )
erc = 0;
2007-09-20 21:06:49 +00:00
}
2007-05-06 16:03:28 +00:00
}