kicad/pcbnew/class_netinfo_item.cpp

214 lines
5.6 KiB
C++
Raw Normal View History

/*************************************************************************/
/* NETINFO_ITEM class, to handle info on nets (netnames, net constraints */
/*************************************************************************/
#include "fctsys.h"
#include "class_drawpanel.h"
2009-05-21 14:59:54 +00:00
#include "common.h"
#include "kicad_string.h"
#include "pcbnew.h"
2009-10-28 11:48:47 +00:00
#include "class_board_design_settings.h"
#include "colors_selection.h"
#include "richio.h"
2007-08-08 03:50:44 +00:00
/*********************************************************/
/* class NETINFO_ITEM: handle data relative to a given net */
2007-08-08 03:50:44 +00:00
/*********************************************************/
NETINFO_ITEM::NETINFO_ITEM( BOARD_ITEM* aParent )
{
2007-10-13 06:18:44 +00:00
SetNet( 0 );
m_NbNodes = 0;
m_NbLink = 0;
m_NbNoconn = 0;
m_Flag = 0;
m_RatsnestStartIdx = 0; // Starting point of ratsnests of this net in a
// general buffer of ratsnest
m_RatsnestEndIdx = 0; // Ending point of ratsnests of this net
2009-08-17 02:59:38 +00:00
m_NetClassName = NETCLASS::Default;
m_NetClass = 0;
}
2007-08-08 03:50:44 +00:00
NETINFO_ITEM::~NETINFO_ITEM()
{
2009-08-17 02:59:38 +00:00
// m_NetClass is not owned by me.
}
2007-08-08 03:50:44 +00:00
/* Read NETINFO_ITEM from file.
* Returns 0 if OK
* 1 if incomplete reading
2007-08-08 03:50:44 +00:00
*/
int NETINFO_ITEM::ReadDescr( LINE_READER* aReader )
{
char* Line;
char Ltmp[1024];
int tmp;
2007-08-08 03:50:44 +00:00
while( aReader->ReadLine() )
2007-08-08 03:50:44 +00:00
{
Line = aReader->Line();
2007-08-08 03:50:44 +00:00
if( strnicmp( Line, "$End", 4 ) == 0 )
return 0;
if( strncmp( Line, "Na", 2 ) == 0 )
2007-08-08 03:50:44 +00:00
{
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 = FROM_UTF8( Ltmp );
2007-08-08 03:50:44 +00:00
continue;
}
}
return 1;
}
/** Note: the old name of class NETINFO_ITEM was EQUIPOT
* so in Save (and read) functions, for compatibility, we use EQUIPOT as
* keyword
*/
bool NETINFO_ITEM::Save( FILE* aFile ) const
2007-10-30 21:30:58 +00:00
{
bool success = false;
2007-10-30 21:30:58 +00:00
fprintf( aFile, "$EQUIPOT\n" );
2011-03-25 20:07:27 +00:00
fprintf( aFile, "Na %d %s\n", GetNet(), EscapedUTF8( m_Netname ).c_str() );
2007-10-30 21:30:58 +00:00
fprintf( aFile, "St %s\n", "~" );
if( fprintf( aFile, "$EndEQUIPOT\n" ) != sizeof("$EndEQUIPOT\n") - 1 )
2007-10-30 21:30:58 +00:00
goto out;
success = true;
out:
return success;
}
/**
* Function SetNetname
2010-12-29 17:47:32 +00:00
* @param aNetname : the new netname
*/
void NETINFO_ITEM::SetNetname( const wxString& aNetname )
{
m_Netname = aNetname;
m_ShortNetname = m_Netname.AfterLast( '/' );
}
/**
* Function Draw (TODO)
*/
void NETINFO_ITEM::Draw( EDA_DRAW_PANEL* panel,
wxDC* DC,
int aDrawMode,
const wxPoint& aOffset )
{
2007-10-30 21:30:58 +00:00
}
2007-08-09 01:41:30 +00:00
2009-05-21 14:59:54 +00:00
/**
* Function DisplayInfo
* has knowledge about the frame and how and where to put status information
* about this object into the frame's message panel.
* Is virtual from EDA_ITEM.
* @param frame A EDA_DRAW_FRAME in which to print status information.
2009-05-21 14:59:54 +00:00
*/
void NETINFO_ITEM::DisplayInfo( EDA_DRAW_FRAME* frame )
2009-05-21 14:59:54 +00:00
{
int count;
EDA_ITEM* Struct;
wxString txt;
MODULE* module;
D_PAD* pad;
double lengthnet = 0;
double lengthdie = 0;
2009-05-21 14:59:54 +00:00
frame->ClearMsgPanel();
2009-05-21 14:59:54 +00:00
frame->AppendMsgPanel( _( "Net Name" ), GetNetname(), RED );
2009-05-21 14:59:54 +00:00
txt.Printf( wxT( "%d" ), GetNet() );
frame->AppendMsgPanel( _( "Net Code" ), txt, RED );
2009-05-21 14:59:54 +00:00
count = 0;
module = ( (PCB_BASE_FRAME*) frame )->GetBoard()->m_Modules;
2009-05-21 14:59:54 +00:00
for( ; module != 0; module = module->Next() )
{
for( pad = module->m_Pads; pad != 0; pad = pad->Next() )
{
if( pad->GetNet() == GetNet() )
{
2009-05-21 14:59:54 +00:00
count++;
lengthdie += pad->m_LengthDie;
}
2009-05-21 14:59:54 +00:00
}
}
txt.Printf( wxT( "%d" ), count );
frame->AppendMsgPanel( _( "Pads" ), txt, DARKGREEN );
2009-05-21 14:59:54 +00:00
count = 0;
Struct = ( (PCB_BASE_FRAME*) frame )->GetBoard()->m_Track;
2009-05-21 14:59:54 +00:00
for( ; Struct != NULL; Struct = Struct->Next() )
{
if( Struct->Type() == TYPE_VIA )
if( ( (SEGVIA*) Struct )->GetNet() == GetNet() )
count++;
if( Struct->Type() == TYPE_TRACK )
if( ( (TRACK*) Struct )->GetNet() == GetNet() )
lengthnet += ( (TRACK*) Struct )->GetLength();
2009-05-21 14:59:54 +00:00
}
txt.Printf( wxT( "%d" ), count );
frame->AppendMsgPanel( _( "Vias" ), txt, BLUE );
2009-05-21 14:59:54 +00:00
valeur_param( (int) (lengthnet + lengthdie), txt );
frame->AppendMsgPanel( _( "Net Length:" ), txt, RED );
2009-05-21 14:59:54 +00:00
valeur_param( (int) lengthnet, txt );
frame->AppendMsgPanel( _( "on pcb" ), txt, RED );
valeur_param( (int) lengthdie, txt );
frame->AppendMsgPanel( _( "on die" ), txt, RED );
2009-05-21 14:59:54 +00:00
}
/***********************/
/* class RATSNEST_ITEM */
/***********************/
RATSNEST_ITEM::RATSNEST_ITEM()
{
m_NetCode = 0; // netcode ( = 1.. n , 0 is the value used for not
// connected items)
m_Status = 0; // state
m_PadStart = NULL; // pointer to the starting pad
m_PadEnd = NULL; // pointer to ending pad
m_Lenght = 0; // length of the line (temporary used in some
// calculations)
}
/**
* Function Draw
* Draws a line (a ratsnest) from the starting pad to the ending pad
*/
void RATSNEST_ITEM::Draw( EDA_DRAW_PANEL* panel,
wxDC* DC,
int aDrawMode,
const wxPoint& aOffset )
{
GRSetDrawMode( DC, aDrawMode );
int color = g_ColorsSettings.GetItemColor(RATSNEST_VISIBLE);
2009-05-25 16:07:33 +00:00
GRLine( &panel->m_ClipBox, DC, m_PadStart->m_Pos - aOffset,
m_PadEnd->m_Pos - aOffset, 0, color );
}