2007-06-05 12:10:51 +00:00
|
|
|
|
/*****************************************************************/
|
2007-08-08 03:50:44 +00:00
|
|
|
|
/* fonctions membres de la classe EQUIPOT et fonctions associ<63>s */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*****************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
|
#include "wxstruct.h"
|
|
|
|
|
|
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
|
|
|
|
|
#ifdef CVPCB
|
|
|
|
|
#include "cvpcb.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
/*********************************************************/
|
|
|
|
|
/* classe EQUIPOT: gestion des listes d'equipotentielles */
|
|
|
|
|
/*********************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
/* Constructeur de la classe EQUIPOT */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
EQUIPOT::EQUIPOT( BOARD_ITEM* StructFather ) :
|
|
|
|
|
BOARD_ITEM( StructFather, PCB_EQUIPOT_STRUCT_TYPE )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-10-13 06:18:44 +00:00
|
|
|
|
SetNet( 0 );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
m_NbNodes = m_NbLink = m_NbNoconn = 0;
|
|
|
|
|
m_Masque_Layer = 0;
|
|
|
|
|
m_Masque_Plan = 0;
|
|
|
|
|
m_ForceWidth = 0;
|
|
|
|
|
m_PadzoneStart = NULL; // pointeur sur debut de liste pads du net
|
|
|
|
|
m_PadzoneEnd = NULL; // pointeur sur fin de liste pads du net
|
|
|
|
|
m_RatsnestStart = NULL; // pointeur sur debut de liste ratsnests du net
|
|
|
|
|
m_RatsnestEnd = NULL; // pointeur sur fin de liste ratsnests du net
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
/* destructeut */
|
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
EQUIPOT::~EQUIPOT()
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
2007-12-29 19:15:58 +00:00
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
|
wxPoint& EQUIPOT::GetPosition()
|
|
|
|
|
{
|
|
|
|
|
static wxPoint dummy;
|
|
|
|
|
return dummy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
|
void EQUIPOT::UnLink()
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
|
/* Modification du chainage arriere */
|
|
|
|
|
if( Pback )
|
|
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
|
if( Pback->Type() != TYPEPCB )
|
2007-08-08 03:50:44 +00:00
|
|
|
|
{
|
|
|
|
|
Pback->Pnext = Pnext;
|
|
|
|
|
}
|
|
|
|
|
else /* Le chainage arriere pointe sur la structure "Pere" */
|
|
|
|
|
{
|
|
|
|
|
( (BOARD*) Pback )->m_Equipots = (EQUIPOT*) Pnext;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Modification du chainage avant */
|
|
|
|
|
if( Pnext )
|
|
|
|
|
Pnext->Pback = Pback;
|
|
|
|
|
|
|
|
|
|
Pnext = Pback = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************/
|
2007-08-08 03:50:44 +00:00
|
|
|
|
int EQUIPOT:: ReadEquipotDescr( FILE* File, int* LineNum )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/*********************************************************/
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Routine de lecture de 1 descr Equipotentielle.
|
2007-08-08 03:50:44 +00:00
|
|
|
|
* retourne 0 si OK
|
|
|
|
|
* 1 si lecture incomplete
|
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
2007-08-08 03:50:44 +00:00
|
|
|
|
char Line[1024], Ltmp[1024];
|
|
|
|
|
int tmp;
|
|
|
|
|
|
|
|
|
|
while( GetLine( File, Line, LineNum ) )
|
|
|
|
|
{
|
|
|
|
|
if( strnicmp( Line, "$End", 4 ) == 0 )
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if( strncmp( Line, "Na", 2 ) == 0 ) /* Texte */
|
|
|
|
|
{
|
|
|
|
|
sscanf( Line + 2, " %d", &tmp );
|
2007-10-13 06:18:44 +00:00
|
|
|
|
SetNet( tmp );
|
2007-08-08 03:50:44 +00:00
|
|
|
|
|
|
|
|
|
ReadDelimitedText( Ltmp, Line + 2, sizeof(Ltmp) );
|
|
|
|
|
m_Netname = CONV_FROM_UTF8( Ltmp );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( strncmp( Line, "Lw", 2 ) == 0 ) /* Texte */
|
|
|
|
|
{
|
|
|
|
|
sscanf( Line + 2, " %d", &tmp );
|
|
|
|
|
m_ForceWidth = tmp;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
|
bool EQUIPOT::Save( FILE* aFile ) const
|
|
|
|
|
{
|
|
|
|
|
if( GetState( DELETED ) )
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
bool rc = false;
|
|
|
|
|
|
|
|
|
|
fprintf( aFile, "$EQUIPOT\n" );
|
|
|
|
|
fprintf( aFile, "Na %d \"%.16s\"\n", GetNet(), CONV_TO_UTF8( m_Netname ) );
|
|
|
|
|
fprintf( aFile, "St %s\n", "~" );
|
|
|
|
|
|
|
|
|
|
if( m_ForceWidth )
|
|
|
|
|
fprintf( aFile, "Lw %d\n", m_ForceWidth );
|
|
|
|
|
|
|
|
|
|
if( fprintf( aFile, "$EndEQUIPOT\n" ) != sizeof("$EndEQUIPOT\n")-1 )
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
rc = true;
|
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
|
|
|
|
|
|
#if defined(DEBUG)
|
|
|
|
|
/**
|
|
|
|
|
* Function Show
|
|
|
|
|
* is used to output the object tree, currently for debugging only.
|
|
|
|
|
* @param nestLevel An aid to prettier tree indenting, and is the level
|
|
|
|
|
* of nesting of this object within the overall tree.
|
|
|
|
|
* @param os The ostream& to output to.
|
|
|
|
|
*/
|
|
|
|
|
void EQUIPOT::Show( int nestLevel, std::ostream& os )
|
|
|
|
|
{
|
|
|
|
|
// for now, make it look like XML:
|
|
|
|
|
NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() <<
|
|
|
|
|
" name=\"" << m_Netname.mb_str() << '"' <<
|
2007-10-13 06:18:44 +00:00
|
|
|
|
" netcode=\"" << GetNet() << "\"/>\n";
|
2007-08-09 01:41:30 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2007-12-29 19:15:58 +00:00
|
|
|
|
|
|
|
|
|
|