2007-10-19 06:31:17 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
/* Functions relatives to tracks, vias and zones(see class_track.h */
|
|
|
|
/*******************************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
2007-10-19 16:24:44 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#ifdef CVPCB
|
|
|
|
#include "cvpcb.h"
|
|
|
|
#endif
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
#include "trigo.h"
|
2007-08-20 19:33:15 +00:00
|
|
|
#include "protos.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2007-10-17 14:35:59 +00:00
|
|
|
// #define RATSNET_DEBUG
|
|
|
|
|
|
|
|
#ifdef RATSNET_DEBUG
|
|
|
|
|
|
|
|
/**************************************/
|
2007-10-19 06:31:17 +00:00
|
|
|
void DbgDisplayTrackInfos( TRACK* track )
|
2007-10-17 14:35:59 +00:00
|
|
|
/**************************************/
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-17 14:35:59 +00:00
|
|
|
/* Only for ratsnest debug
|
2007-10-19 06:31:17 +00:00
|
|
|
*/
|
2007-10-17 14:35:59 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
wxString msg;
|
2007-10-17 14:35:59 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
msg << wxT( "Netcode " ) << track->GetNet();
|
|
|
|
msg << wxT( " - " ) << track->GetSubNet();
|
|
|
|
msg << wxT( "\nptrS " ) << (unsigned) track->start;
|
|
|
|
msg << wxT( " ptrE " ) << (unsigned) track->end;
|
|
|
|
msg << wxT( " this " ) << (unsigned) track;
|
2007-10-17 14:35:59 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
wxMessageBox( msg );
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-11 01:19:08 +00:00
|
|
|
/**
|
|
|
|
* Function ShowClearance
|
|
|
|
* tests to see if the clearance border is drawn on the given track.
|
|
|
|
* @return bool - true if should draw clearance, else false.
|
|
|
|
*/
|
|
|
|
static bool ShowClearance( const TRACK* aTrack )
|
|
|
|
{
|
|
|
|
// maybe return true for (for tracks and vias, not for zone segments
|
|
|
|
return ( DisplayOpt.DisplayTrackIsol && ( aTrack->GetLayer() <= LAST_COPPER_LAYER )
|
|
|
|
&& ( aTrack->Type() == TYPETRACK || aTrack->Type() == TYPEVIA) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/**********************************************************/
|
2007-08-24 15:10:46 +00:00
|
|
|
TRACK::TRACK( BOARD_ITEM* StructFather, KICAD_T idtype ) :
|
2008-11-18 18:13:55 +00:00
|
|
|
BOARD_CONNECTED_ITEM( StructFather, idtype )
|
2007-10-19 06:31:17 +00:00
|
|
|
/**********************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
m_Width = 0;
|
|
|
|
m_Shape = S_SEGMENT;
|
|
|
|
start = end = NULL;
|
2008-01-12 20:31:56 +00:00
|
|
|
SetDrillDefault();
|
2007-10-19 06:31:17 +00:00
|
|
|
m_Param = 0;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/***************************/
|
2007-10-11 00:11:59 +00:00
|
|
|
wxString TRACK::ShowWidth()
|
2007-10-19 06:31:17 +00:00
|
|
|
/***************************/
|
2007-10-11 00:11:59 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2007-10-11 00:11:59 +00:00
|
|
|
valeur_param( m_Width, msg );
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
SEGZONE::SEGZONE( BOARD_ITEM* StructFather ) :
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK( StructFather, TYPEZONE )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
SEGVIA::SEGVIA( BOARD_ITEM* StructFather ) :
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK( StructFather, TYPEVIA )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
// Copy constructor
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK::TRACK( const TRACK& Source ) :
|
2008-11-18 18:13:55 +00:00
|
|
|
BOARD_CONNECTED_ITEM( Source )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
m_Shape = Source.m_Shape;
|
2007-10-13 06:18:44 +00:00
|
|
|
SetNet( Source.GetNet() );
|
2007-08-08 20:51:08 +00:00
|
|
|
m_Flags = Source.m_Flags;
|
|
|
|
m_TimeStamp = Source.m_TimeStamp;
|
|
|
|
SetStatus( Source.ReturnStatus() );
|
|
|
|
m_Start = Source.m_Start;
|
|
|
|
m_End = Source.m_End;
|
|
|
|
m_Width = Source.m_Width;
|
|
|
|
m_Drill = Source.m_Drill;
|
2007-10-13 06:18:44 +00:00
|
|
|
SetSubNet( Source.GetSubNet() );
|
2007-08-08 20:51:08 +00:00
|
|
|
m_Param = Source.m_Param;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Because of the way SEGVIA and SEGZONE are derived from TRACK and because there are
|
|
|
|
* virtual functions being used, we can no longer simply copy a TRACK and
|
|
|
|
* expect it to be a via or zone. We must construct a true SEGVIA or SEGZONE so its constructor
|
|
|
|
* can initialize the virtual function table properly. This factory type of
|
|
|
|
* function called Copy() can duplicate either a TRACK, SEGVIA, or SEGZONE.
|
|
|
|
*/
|
2007-09-01 12:00:30 +00:00
|
|
|
TRACK* TRACK::Copy() const
|
|
|
|
{
|
|
|
|
if( Type() == TYPETRACK )
|
2007-10-19 06:31:17 +00:00
|
|
|
return new TRACK( *this );
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEVIA )
|
2007-10-19 06:31:17 +00:00
|
|
|
return new SEGVIA( (const SEGVIA &) * this );
|
2007-09-11 04:14:15 +00:00
|
|
|
|
|
|
|
if( Type() == TYPEZONE )
|
2007-10-19 06:31:17 +00:00
|
|
|
return new SEGZONE( (const SEGZONE &) * this );
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
return NULL; // should never happen
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
/**
|
|
|
|
* Function GetDrillValue
|
|
|
|
* calculate the drill value for vias (m-Drill if > 0, or default drill value for the board
|
|
|
|
* @return real drill_value
|
|
|
|
*/
|
2008-02-09 08:34:45 +00:00
|
|
|
int TRACK::GetDrillValue() const
|
2008-01-12 20:31:56 +00:00
|
|
|
{
|
2008-02-09 08:34:45 +00:00
|
|
|
if ( Type() != TYPEVIA )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ( m_Drill >= 0 )
|
|
|
|
return m_Drill;
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2008-02-09 08:34:45 +00:00
|
|
|
if ( m_Shape == VIA_MICROVIA )
|
|
|
|
return g_DesignSettings.m_MicroViaDrill;
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2008-02-09 08:34:45 +00:00
|
|
|
return g_DesignSettings.m_ViaDrill;
|
2008-01-12 20:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/***********************/
|
2007-08-30 22:20:52 +00:00
|
|
|
bool TRACK::IsNull()
|
2007-06-05 12:10:51 +00:00
|
|
|
/***********************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
// return TRUE if segment length = 0
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
if( ( Type() != TYPEVIA ) && ( m_Start == m_End ) )
|
2007-08-08 20:51:08 +00:00
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*************************************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
int TRACK::IsPointOnEnds( const wxPoint& point, int min_dist )
|
2007-06-05 12:10:51 +00:00
|
|
|
/*************************************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/* Return:
|
2007-08-08 20:51:08 +00:00
|
|
|
* STARTPOINT if point if near (dist = min_dist) star point
|
|
|
|
* ENDPOINT if point if near (dist = min_dist) end point
|
|
|
|
* STARTPOINT|ENDPOINT if point if near (dist = min_dist) both ends
|
|
|
|
* 0 if no
|
|
|
|
* if min_dist < 0: min_dist = track_width/2
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
if( min_dist < 0 )
|
|
|
|
min_dist = m_Width / 2;
|
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
int dx = m_Start.x - point.x;
|
|
|
|
int dy = m_Start.y - point.y;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
if( min_dist == 0 )
|
|
|
|
{
|
|
|
|
if( (dx == 0) && (dy == 0 ) )
|
|
|
|
result |= STARTPOINT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double dist = ( (double) dx * dx ) + ( (double) dy * dy );
|
|
|
|
dist = sqrt( dist );
|
|
|
|
if( min_dist >= (int) dist )
|
|
|
|
result |= STARTPOINT;
|
|
|
|
}
|
|
|
|
|
|
|
|
dx = m_End.x - point.x;
|
|
|
|
dy = m_End.y - point.y;
|
|
|
|
if( min_dist == 0 )
|
|
|
|
{
|
|
|
|
if( (dx == 0) && (dy == 0 ) )
|
|
|
|
result |= ENDPOINT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double dist = ( (double) dx * dx ) + ( (double) dy * dy );
|
|
|
|
dist = sqrt( dist );
|
|
|
|
if( min_dist >= (int) dist )
|
|
|
|
result |= ENDPOINT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2008-03-15 04:18:32 +00:00
|
|
|
EDA_Rect TRACK::GetBoundingBox()
|
2008-03-05 22:39:33 +00:00
|
|
|
{
|
2008-03-10 13:33:12 +00:00
|
|
|
// end of track is round, this is its radius, rounded up
|
|
|
|
int radius = ( m_Width+1 )/2;
|
2008-03-05 22:39:33 +00:00
|
|
|
|
2008-03-10 15:00:22 +00:00
|
|
|
int ymax;
|
|
|
|
int xmax;
|
2008-03-05 22:39:33 +00:00
|
|
|
|
2008-03-10 15:00:22 +00:00
|
|
|
int ymin;
|
|
|
|
int xmin;
|
|
|
|
|
|
|
|
if( Type() == TYPEVIA )
|
|
|
|
{
|
2008-03-10 15:02:27 +00:00
|
|
|
// Because vias are sometimes drawn larger than their m_Width would
|
|
|
|
// provide, erasing them using a dirty rect must also compensate for this
|
|
|
|
// possibility (that the via is larger on screen than its m_Width would provide).
|
|
|
|
// Because it is cheap to return a larger BoundingBox, do it so that
|
2008-03-10 15:00:22 +00:00
|
|
|
// the via gets erased properly. Do not divide width by 2 for this reason.
|
|
|
|
radius = m_Width;
|
|
|
|
|
|
|
|
ymax = m_Start.y;
|
|
|
|
xmax = m_Start.x;
|
|
|
|
|
|
|
|
ymin = m_Start.y;
|
|
|
|
xmin = m_Start.x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
radius = ( m_Width+1 )/2;
|
|
|
|
|
|
|
|
ymax = MAX( m_Start.y, m_End.y );
|
|
|
|
xmax = MAX( m_Start.x, m_End.x );
|
|
|
|
|
|
|
|
ymin = MIN( m_Start.y, m_End.y );
|
|
|
|
xmin = MIN( m_Start.x, m_End.x );
|
|
|
|
}
|
2008-03-05 22:39:33 +00:00
|
|
|
|
2008-03-11 01:19:08 +00:00
|
|
|
if( ShowClearance( this ) )
|
|
|
|
{
|
|
|
|
// + 1 is for the clearance line itself.
|
|
|
|
radius += g_DesignSettings.m_TrackClearence + 1;
|
|
|
|
}
|
|
|
|
|
2008-03-05 22:39:33 +00:00
|
|
|
ymax += radius;
|
|
|
|
xmax += radius;
|
|
|
|
|
|
|
|
ymin -= radius;
|
|
|
|
xmin -= radius;
|
|
|
|
|
2008-03-10 13:33:12 +00:00
|
|
|
// return a rectangle which is [pos,dim) in nature. therefore the +1
|
2008-03-11 01:19:08 +00:00
|
|
|
EDA_Rect ret( wxPoint( xmin, ymin ), wxSize( xmax-xmin+1, ymax-ymin+1 ) );
|
|
|
|
|
|
|
|
return ret;
|
2008-03-05 22:39:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
// see class_track.h
|
|
|
|
// SEGVIA and SEGZONE inherit this version
|
2007-10-19 06:31:17 +00:00
|
|
|
SEARCH_RESULT TRACK::Visit( INSPECTOR* inspector, const void* testData,
|
|
|
|
const KICAD_T scanTypes[] )
|
2007-08-30 22:20:52 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
KICAD_T stype = *scanTypes;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
#if 0 && defined (DEBUG)
|
|
|
|
std::cout << GetClass().mb_str() << ' ';
|
2007-08-30 22:20:52 +00:00
|
|
|
#endif
|
2007-10-16 20:52:49 +00:00
|
|
|
|
2007-08-30 22:20:52 +00:00
|
|
|
// If caller wants to inspect my type
|
2007-09-01 12:00:30 +00:00
|
|
|
if( stype == Type() )
|
2007-08-30 22:20:52 +00:00
|
|
|
{
|
|
|
|
if( SEARCH_QUIT == inspector->Inspect( this, testData ) )
|
|
|
|
return SEARCH_QUIT;
|
|
|
|
}
|
|
|
|
|
2007-10-15 07:50:59 +00:00
|
|
|
return SEARCH_CONTINUE;
|
2007-08-30 22:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/***********************************************/
|
2007-08-30 22:20:52 +00:00
|
|
|
bool SEGVIA::IsOnLayer( int layer_number ) const
|
2007-10-19 06:31:17 +00:00
|
|
|
/***********************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
/**
|
|
|
|
* @param layer_number = layer number to test
|
|
|
|
* @return true if the via is on the layer layer_number
|
|
|
|
*/
|
2007-10-16 20:52:49 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
int bottom_layer, top_layer;
|
2007-10-15 07:50:59 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
ReturnLayerPair( &top_layer, &bottom_layer );
|
2007-10-15 07:50:59 +00:00
|
|
|
|
|
|
|
if( bottom_layer <= layer_number && layer_number <= top_layer )
|
2007-08-30 22:20:52 +00:00
|
|
|
return true;
|
2007-08-08 20:51:08 +00:00
|
|
|
else
|
2007-08-30 22:20:52 +00:00
|
|
|
return false;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************/
|
2007-08-30 22:20:52 +00:00
|
|
|
int TRACK::ReturnMaskLayer()
|
2007-06-05 12:10:51 +00:00
|
|
|
/***********************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Return the mask layer for this.
|
|
|
|
* for a via, there is more than one layer used
|
2007-08-08 20:51:08 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEVIA )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-10-01 13:51:07 +00:00
|
|
|
int via_type = Shape();
|
2007-10-15 07:50:59 +00:00
|
|
|
|
2007-10-19 16:24:44 +00:00
|
|
|
if( via_type == VIA_THROUGH )
|
2007-08-08 20:51:08 +00:00
|
|
|
return ALL_CU_LAYERS;
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
// VIA_BLIND_BURIED or VIA_MICRVIA:
|
2007-10-15 07:50:59 +00:00
|
|
|
|
|
|
|
int bottom_layer, top_layer;
|
2007-10-01 13:51:07 +00:00
|
|
|
|
|
|
|
// ReturnLayerPair() knows how layers are stored
|
2007-10-19 06:31:17 +00:00
|
|
|
( (SEGVIA*) this )->ReturnLayerPair( &top_layer, &bottom_layer );
|
2007-10-15 07:50:59 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
int layermask = 0;
|
|
|
|
while( bottom_layer <= top_layer )
|
|
|
|
{
|
|
|
|
layermask |= g_TabOneLayerMask[bottom_layer++];
|
|
|
|
}
|
|
|
|
|
|
|
|
return layermask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return g_TabOneLayerMask[m_Layer];
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
void SEGVIA::SetLayerPair( int top_layer, int bottom_layer )
|
2007-06-05 12:10:51 +00:00
|
|
|
/*********************************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/** Set the .m_Layer member param:
|
|
|
|
* For a via m_Layer contains the 2 layers :
|
|
|
|
* top layer and bottom layer used by the via.
|
|
|
|
* The via connect all layers from top layer to bottom layer
|
|
|
|
* 4 bits for the first layer and 4 next bits for the secaon layer
|
|
|
|
* @param top_layer = first layer connected by the via
|
|
|
|
* @param bottom_layer = last layer connected by the via
|
2007-08-08 20:51:08 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-01 04:34:11 +00:00
|
|
|
int via_type = Shape();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-19 16:24:44 +00:00
|
|
|
if( via_type == VIA_THROUGH )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-10-15 07:50:59 +00:00
|
|
|
top_layer = LAYER_CMP_N;
|
2007-10-07 18:24:15 +00:00
|
|
|
bottom_layer = COPPER_LAYER_N;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
if( bottom_layer > top_layer )
|
|
|
|
EXCHG( bottom_layer, top_layer );
|
2007-10-16 20:52:49 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
m_Layer = (top_layer & 15) + ( (bottom_layer & 15) << 4 );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-07 18:24:15 +00:00
|
|
|
/*********************************************************************/
|
2007-08-30 22:20:52 +00:00
|
|
|
void SEGVIA::ReturnLayerPair( int* top_layer, int* bottom_layer ) const
|
2007-10-07 18:24:15 +00:00
|
|
|
/*********************************************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2008-01-18 08:54:15 +00:00
|
|
|
/**
|
|
|
|
* Function ReturnLayerPair
|
|
|
|
* Return the 2 layers used by the via (the via actually uses
|
2007-10-19 06:31:17 +00:00
|
|
|
* all layers between these 2 layers)
|
|
|
|
* @param top_layer = pointer to the first layer (can be null)
|
|
|
|
* @param bottom_layer = pointer to the last layer (can be null)
|
2007-08-08 20:51:08 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
int b_layer = (m_Layer >> 4) & 15;
|
|
|
|
int t_layer = m_Layer & 15;
|
|
|
|
|
|
|
|
if( b_layer > t_layer )
|
|
|
|
EXCHG( b_layer, t_layer );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
if( top_layer )
|
|
|
|
*top_layer = t_layer;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
if( bottom_layer )
|
|
|
|
*bottom_layer = b_layer;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-15 10:09:12 +00:00
|
|
|
/* Remove this from the track or zone linked list
|
2007-06-05 12:10:51 +00:00
|
|
|
*/
|
2007-08-30 22:20:52 +00:00
|
|
|
void TRACK::UnLink()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Remove the back link */
|
2007-08-08 20:51:08 +00:00
|
|
|
if( Pback )
|
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Pback->Type() != TYPEPCB )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
Pback->Pnext = Pnext;
|
|
|
|
}
|
|
|
|
else /* Le chainage arriere pointe sur la structure "Pere" */
|
|
|
|
{
|
|
|
|
if( GetState( DELETED ) ) // A REVOIR car Pback = NULL si place en undelete
|
|
|
|
{
|
2007-11-05 07:07:00 +00:00
|
|
|
if( g_UnDeleteStackPtr )
|
2007-10-19 06:31:17 +00:00
|
|
|
g_UnDeleteStack[g_UnDeleteStackPtr - 1] = (BOARD_ITEM*) Pnext;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEZONE )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-09-13 11:28:58 +00:00
|
|
|
( (BOARD*) Pback )->m_Zone = (SEGZONE*) Pnext;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
( (BOARD*) Pback )->m_Track = (TRACK*) Pnext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Remove the forward link */
|
2007-08-08 20:51:08 +00:00
|
|
|
if( Pnext )
|
|
|
|
Pnext->Pback = Pback;
|
|
|
|
|
|
|
|
Pnext = Pback = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/************************************************************/
|
2007-09-01 12:00:30 +00:00
|
|
|
void TRACK::Insert( BOARD* Pcb, BOARD_ITEM* InsertPoint )
|
2007-06-05 12:10:51 +00:00
|
|
|
/************************************************************/
|
2007-10-19 06:31:17 +00:00
|
|
|
|
|
|
|
/* insert this (and its linked segments is exists)
|
|
|
|
* in the track linked list
|
|
|
|
* @param InsertPoint = insert point within the linked list
|
|
|
|
* if NULL: insert as first element of Pcb->m_Tracks
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-09-01 12:00:30 +00:00
|
|
|
TRACK* track;
|
|
|
|
TRACK* NextS;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
if( InsertPoint == NULL )
|
|
|
|
{
|
|
|
|
Pback = Pcb;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEZONE ) // put SEGZONE on front of m_Zone list
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
NextS = Pcb->m_Zone;
|
|
|
|
Pcb->m_Zone = (SEGZONE*) this;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-09-01 12:00:30 +00:00
|
|
|
else // put TRACK or SEGVIA on front of m_Track list
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
NextS = Pcb->m_Track;
|
2007-09-01 12:00:30 +00:00
|
|
|
Pcb->m_Track = this;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NextS = (TRACK*) InsertPoint->Pnext;
|
|
|
|
Pback = InsertPoint;
|
|
|
|
InsertPoint->Pnext = this;
|
|
|
|
}
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Set the forward link */
|
2007-08-08 20:51:08 +00:00
|
|
|
track = this;
|
2007-10-19 06:31:17 +00:00
|
|
|
while( track->Pnext ) // Search the end of added chain
|
2007-08-08 20:51:08 +00:00
|
|
|
track = (TRACK*) track->Pnext;
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Link the end of chain */
|
2007-08-08 20:51:08 +00:00
|
|
|
track->Pnext = NextS;
|
|
|
|
if( NextS )
|
|
|
|
NextS->Pback = track;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK* TRACK::GetBestInsertPoint( BOARD* Pcb )
|
2007-06-05 12:10:51 +00:00
|
|
|
/***********************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/**
|
|
|
|
* Search the "best" insertion point within the track linked list
|
|
|
|
* the best point is the of the corresponding net code section
|
|
|
|
* @return the item found in the linked list (or NULL if no track)
|
2007-08-08 20:51:08 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK* track, * NextTrack;
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEZONE )
|
2007-08-08 20:51:08 +00:00
|
|
|
track = Pcb->m_Zone;
|
|
|
|
else
|
|
|
|
track = Pcb->m_Track;
|
|
|
|
|
|
|
|
/* Traitement du debut de liste */
|
|
|
|
if( track == NULL )
|
2007-10-19 06:31:17 +00:00
|
|
|
return NULL; /* No tracks ! */
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
if( GetNet() < track->GetNet() ) /* no net code or net code = 0 (track not connected) */
|
2007-08-08 20:51:08 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
while( (NextTrack = (TRACK*) track->Pnext) != NULL )
|
|
|
|
{
|
2007-10-13 06:18:44 +00:00
|
|
|
if( NextTrack->GetNet() > this->GetNet() )
|
2007-08-08 20:51:08 +00:00
|
|
|
break;
|
2008-02-09 08:34:45 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
track = NextTrack;
|
|
|
|
}
|
|
|
|
|
|
|
|
return track;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/*******************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK* TRACK::GetStartNetCode( int NetCode )
|
2007-10-19 06:31:17 +00:00
|
|
|
/*******************************************/
|
|
|
|
|
|
|
|
/* Search (within the track linked list) the first segment matching the netcode
|
|
|
|
* ( the linked list is always sorted by net codes )
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK* Track = this;
|
|
|
|
int ii = 0;
|
|
|
|
|
|
|
|
if( NetCode == -1 )
|
2007-10-13 06:18:44 +00:00
|
|
|
NetCode = GetNet();
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
while( Track != NULL )
|
|
|
|
{
|
2007-10-13 06:18:44 +00:00
|
|
|
if( Track->GetNet() > NetCode )
|
2007-08-08 20:51:08 +00:00
|
|
|
break;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
if( Track->GetNet() == NetCode )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
ii++;
|
2007-10-13 06:18:44 +00:00
|
|
|
break;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
Track = (TRACK*) Track->Pnext;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ii )
|
|
|
|
return Track;
|
|
|
|
else
|
|
|
|
return NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/*****************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK* TRACK::GetEndNetCode( int NetCode )
|
2007-10-19 06:31:17 +00:00
|
|
|
/*****************************************/
|
|
|
|
|
|
|
|
/* Search (within the track linked list) the last segment matching the netcode
|
|
|
|
* ( the linked list is always sorted by net codes )
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
TRACK* NextS, * Track = this;
|
|
|
|
int ii = 0;
|
|
|
|
|
|
|
|
if( Track == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if( NetCode == -1 )
|
2007-10-13 06:18:44 +00:00
|
|
|
NetCode = GetNet();
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
while( Track != NULL )
|
|
|
|
{
|
|
|
|
NextS = (TRACK*) Track->Pnext;
|
2007-10-13 06:18:44 +00:00
|
|
|
if( Track->GetNet() == NetCode )
|
2007-08-08 20:51:08 +00:00
|
|
|
ii++;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
if( NextS == NULL )
|
|
|
|
break;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
if( NextS->GetNet() > NetCode )
|
2007-08-08 20:51:08 +00:00
|
|
|
break;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
Track = NextS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ii )
|
|
|
|
return Track;
|
|
|
|
else
|
|
|
|
return NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
bool TRACK::Save( FILE* aFile ) const
|
|
|
|
{
|
|
|
|
int type = 0;
|
|
|
|
|
|
|
|
if( Type() == TYPEVIA )
|
|
|
|
type = 1;
|
|
|
|
|
|
|
|
if( GetState( DELETED ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
fprintf( aFile, "Po %d %d %d %d %d %d %d\n", m_Shape,
|
|
|
|
m_Start.x, m_Start.y, m_End.x, m_End.y, m_Width, m_Drill );
|
|
|
|
|
|
|
|
fprintf( aFile, "De %d %d %d %lX %X\n",
|
|
|
|
m_Layer, type, GetNet(),
|
|
|
|
m_TimeStamp, ReturnStatus() );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-16 20:52:49 +00:00
|
|
|
/*********************************************************************/
|
2008-04-01 05:21:50 +00:00
|
|
|
void TRACK::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, const wxPoint& notUsed )
|
2007-06-05 12:10:51 +00:00
|
|
|
/*********************************************************************/
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/** Draws the segment.
|
|
|
|
* @param panel = current panel
|
|
|
|
* @param DC = current device context
|
|
|
|
* @param draw_mode = GR_XOR, GR_OR..
|
2007-08-08 20:51:08 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
int l_piste;
|
|
|
|
int color;
|
|
|
|
int zoom;
|
|
|
|
int rayon;
|
|
|
|
int curr_layer = ( (PCB_SCREEN*) panel->GetScreen() )->m_Active_Layer;
|
|
|
|
|
2007-10-12 03:24:46 +00:00
|
|
|
if( Type() == TYPEZONE && !DisplayOpt.DisplayZones )
|
2007-08-08 20:51:08 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
GRSetDrawMode( DC, draw_mode );
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
if( Type() == TYPEVIA )
|
2007-08-08 20:51:08 +00:00
|
|
|
color = g_DesignSettings.m_ViaColor[m_Shape];
|
|
|
|
else
|
|
|
|
color = g_DesignSettings.m_LayerColor[m_Layer];
|
|
|
|
|
|
|
|
if( ( color & (ITEM_NOT_SHOW | HIGHT_LIGHT_FLAG) ) == ITEM_NOT_SHOW )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( DisplayOpt.ContrastModeDisplay )
|
|
|
|
{
|
2007-08-30 22:20:52 +00:00
|
|
|
if( !IsOnLayer( curr_layer ) )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
color &= ~MASKCOLOR;
|
|
|
|
color |= DARKDARKGRAY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( draw_mode & GR_SURBRILL )
|
|
|
|
{
|
|
|
|
if( draw_mode & GR_AND )
|
|
|
|
color &= ~HIGHT_LIGHT_FLAG;
|
|
|
|
else
|
|
|
|
color |= HIGHT_LIGHT_FLAG;
|
|
|
|
}
|
2008-04-02 14:16:14 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
if( color & HIGHT_LIGHT_FLAG )
|
|
|
|
color = ColorRefs[color & MASKCOLOR].m_LightColor;
|
|
|
|
|
2008-04-02 14:16:14 +00:00
|
|
|
SetAlpha( &color, 150 );
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
zoom = panel->GetZoom();
|
|
|
|
|
|
|
|
l_piste = m_Width >> 1;
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
if( Type() == TYPEVIA ) /* The via is drawn as a circle */
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
rayon = l_piste;
|
|
|
|
if( rayon < zoom )
|
2007-08-08 20:51:08 +00:00
|
|
|
rayon = zoom;
|
2008-04-02 14:16:14 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, rayon, color );
|
|
|
|
if( rayon > (4 * zoom) )
|
|
|
|
{
|
2008-01-12 20:31:56 +00:00
|
|
|
int drill_rayon = GetDrillValue() / 2;
|
2008-02-09 08:34:45 +00:00
|
|
|
int inner_rayon = rayon - (2 * zoom);
|
2007-08-08 20:51:08 +00:00
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
inner_rayon, color );
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
// Draw the via hole if the display option allows it
|
2007-08-08 20:51:08 +00:00
|
|
|
if( DisplayOpt.m_DisplayViaMode != VIA_HOLE_NOT_SHOW )
|
|
|
|
{
|
2008-01-12 20:31:56 +00:00
|
|
|
if( (DisplayOpt.m_DisplayViaMode == ALL_VIA_HOLE_SHOW) || // Display all drill holes requested
|
2008-02-09 08:34:45 +00:00
|
|
|
( (drill_rayon > 0 ) && ! IsDrillDefault() ) ) // Or Display non default holes requested
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2008-01-12 20:31:56 +00:00
|
|
|
if( drill_rayon < inner_rayon ) // We can show the via hole
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
drill_rayon, color );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( DisplayOpt.DisplayTrackIsol )
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
rayon + g_DesignSettings.m_TrackClearence, color );
|
2008-02-09 08:34:45 +00:00
|
|
|
// for Micro Vias, draw a partial cross :
|
|
|
|
// X on component layer, or + on copper layer
|
|
|
|
// (so we can see 2 superimposed microvias ):
|
|
|
|
if ( Shape() == VIA_MICROVIA )
|
|
|
|
{
|
|
|
|
int ax, ay, bx, by;
|
|
|
|
if ( IsOnLayer(COPPER_LAYER_N) )
|
|
|
|
{
|
|
|
|
ax = rayon; ay = 0;
|
|
|
|
bx = drill_rayon; by = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ax = ay = (rayon * 707) / 1000;
|
|
|
|
bx = by = (drill_rayon * 707) / 1000;
|
|
|
|
}
|
|
|
|
/* lines | or \ */
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x - ax , m_Start.y - ay,
|
|
|
|
m_Start.x - bx , m_Start.y - by, 0, color );
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x + bx , m_Start.y + by,
|
|
|
|
m_Start.x + ax , m_Start.y + ay, 0, color );
|
|
|
|
/* lines - or / */
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x + ay, m_Start.y - ax ,
|
|
|
|
m_Start.x + by, m_Start.y - bx, 0, color );
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x - by, m_Start.y + bx ,
|
|
|
|
m_Start.x - ay, m_Start.y + ax, 0, color );
|
|
|
|
}
|
|
|
|
// for Buried Vias, draw a partial line :
|
|
|
|
// orient depending on layer pair
|
|
|
|
// (so we can see superimposed buried vias ):
|
|
|
|
if ( Shape() == VIA_BLIND_BURIED )
|
|
|
|
{
|
|
|
|
int ax = 0, ay = rayon, bx = 0, by = drill_rayon;
|
|
|
|
int layer_top, layer_bottom ;
|
|
|
|
((SEGVIA*)this)->ReturnLayerPair(&layer_top, &layer_bottom);
|
|
|
|
/* lines for the top layer */
|
|
|
|
RotatePoint( &ax, &ay, layer_top * 3600 / g_DesignSettings.m_CopperLayerCount);
|
|
|
|
RotatePoint( &bx, &by, layer_top * 3600 / g_DesignSettings.m_CopperLayerCount);
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x - ax , m_Start.y - ay,
|
|
|
|
m_Start.x - bx , m_Start.y - by, 0, color );
|
|
|
|
/* lines for the bottom layer */
|
|
|
|
ax = 0; ay = rayon; bx = 0; by = drill_rayon;
|
|
|
|
RotatePoint( &ax, &ay, layer_bottom * 3600 / g_DesignSettings.m_CopperLayerCount);
|
|
|
|
RotatePoint( &bx, &by, layer_bottom * 3600 / g_DesignSettings.m_CopperLayerCount);
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x - ax , m_Start.y - ay,
|
|
|
|
m_Start.x - bx , m_Start.y - by, 0, color );
|
|
|
|
}
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_Shape == S_CIRCLE )
|
|
|
|
{
|
|
|
|
rayon = (int) hypot( (double) (m_End.x - m_Start.x),
|
|
|
|
(double) (m_End.y - m_Start.y) );
|
|
|
|
if( (l_piste / zoom) < L_MIN_DESSIN )
|
|
|
|
{
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, rayon, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-19 06:31:17 +00:00
|
|
|
if( l_piste <= zoom ) /* Sketch mode if l_piste/zoom <= 1 */
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, rayon, color );
|
|
|
|
}
|
|
|
|
else if( ( !DisplayOpt.DisplayPcbTrackFill) || GetState( FORCE_SKETCH ) )
|
|
|
|
{
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, rayon - l_piste, color );
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, rayon + l_piste, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, rayon,
|
|
|
|
m_Width, color );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( (l_piste / zoom) < L_MIN_DESSIN )
|
|
|
|
{
|
|
|
|
GRLine( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
m_End.x, m_End.y, 0, color );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( (!DisplayOpt.DisplayPcbTrackFill) || GetState( FORCE_SKETCH ) )
|
|
|
|
{
|
|
|
|
GRCSegm( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
m_End.x, m_End.y, m_Width, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GRFillCSegm( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
m_End.x, m_End.y, m_Width, color );
|
|
|
|
}
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Shows clearance (for tracks and vias, not for zone segments */
|
2008-03-11 01:19:08 +00:00
|
|
|
if( ShowClearance( this ) )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
GRCSegm( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
|
|
|
|
m_End.x, m_End.y,
|
|
|
|
m_Width + (g_DesignSettings.m_TrackClearence * 2), color );
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
// see class_track.h
|
|
|
|
void TRACK::Display_Infos( WinEDA_DrawFrame* frame )
|
|
|
|
{
|
2008-02-19 00:30:10 +00:00
|
|
|
wxString msg;
|
|
|
|
int text_pos;
|
|
|
|
BOARD* board = ((WinEDA_PcbFrame*)frame)->m_Pcb;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-17 14:35:59 +00:00
|
|
|
#ifdef RATSNET_DEBUG
|
2007-10-19 06:31:17 +00:00
|
|
|
DbgDisplayTrackInfos( this );
|
2007-10-17 14:35:59 +00:00
|
|
|
#endif
|
2007-08-20 19:33:15 +00:00
|
|
|
|
|
|
|
frame->MsgPanel->EraseMsgBox();
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
switch( Type() )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
|
|
|
case TYPEVIA:
|
2007-10-03 19:45:32 +00:00
|
|
|
msg = g_ViaType_Name[Shape()];
|
2007-08-20 19:33:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPETRACK:
|
|
|
|
msg = _( "Track" );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPEZONE:
|
|
|
|
msg = _( "Zone" ); break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
msg = wxT( "????" ); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
text_pos = 1;
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Type" ), msg, DARKCYAN );
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Display NetName pour les segments de piste type cuivre */
|
2007-08-20 19:33:15 +00:00
|
|
|
text_pos += 15;
|
2008-02-19 00:30:10 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
if( Type() == TYPETRACK
|
|
|
|
|| Type() == TYPEZONE
|
|
|
|
|| Type() == TYPEVIA )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2008-02-19 00:30:10 +00:00
|
|
|
EQUIPOT* equipot = board->FindNet( GetNet() );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
if( equipot )
|
|
|
|
msg = equipot->m_Netname;
|
|
|
|
else
|
|
|
|
msg = wxT( "<noname>" );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "NetName" ), msg, RED );
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Display net code : (usefull in test or debug) */
|
2007-10-13 06:18:44 +00:00
|
|
|
msg.Printf( wxT( "%d .%d" ), GetNet(), GetSubNet() );
|
2007-08-20 19:33:15 +00:00
|
|
|
text_pos += 18;
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "NetCode" ), msg, RED );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Segment" ), wxEmptyString, RED );
|
|
|
|
if( m_Shape == S_CIRCLE )
|
|
|
|
Affiche_1_Parametre( frame, -1, wxEmptyString, _( "Circle" ), RED );
|
|
|
|
else
|
|
|
|
Affiche_1_Parametre( frame, -1, wxEmptyString, _( "Standard" ), RED );
|
|
|
|
}
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Display the Status flags */
|
2007-08-20 19:33:15 +00:00
|
|
|
msg = wxT( ". . " );
|
|
|
|
if( GetState( SEGM_FIXE ) )
|
|
|
|
msg[0] = 'F';
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
if( GetState( SEGM_AR ) )
|
|
|
|
msg[2] = 'A';
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
text_pos = 42;
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Stat" ), msg, MAGENTA );
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Display layer or layer pair) */
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEVIA )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
|
|
|
SEGVIA* Via = (SEGVIA*) this;
|
|
|
|
int top_layer, bottom_layer;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
Via->ReturnLayerPair( &top_layer, &bottom_layer );
|
2008-02-19 00:30:10 +00:00
|
|
|
msg = board->GetLayerName( top_layer ) + wxT( "/" )
|
|
|
|
+ board->GetLayerName( bottom_layer );
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
else
|
2008-02-19 00:30:10 +00:00
|
|
|
msg = board->GetLayerName( m_Layer );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
|
|
|
text_pos += 5;
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Layer" ), msg, BROWN );
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Display width */
|
2007-08-20 19:33:15 +00:00
|
|
|
valeur_param( (unsigned) m_Width, msg );
|
|
|
|
text_pos += 11;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
if( Type() == TYPEVIA ) // Display Diam and Drill values
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Diam" ), msg, DARKCYAN );
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
int drill_value = GetDrillValue();
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
valeur_param( (unsigned) drill_value, msg );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
text_pos += 8;
|
|
|
|
wxString title = _( "Drill" );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
if( g_DesignSettings.m_ViaDrill >= 0 )
|
|
|
|
title += wxT( "*" );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Drill" ), msg, RED );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Affiche_1_Parametre( frame, text_pos, _( "Width" ), msg, DARKCYAN );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
/**
|
|
|
|
* Function HitTest
|
|
|
|
* tests if the given wxPoint is within the bounds of this object.
|
|
|
|
* @param ref_pos A wxPoint to test
|
|
|
|
* @return bool - true if a hit, else false
|
|
|
|
*/
|
|
|
|
bool TRACK::HitTest( const wxPoint& ref_pos )
|
|
|
|
{
|
2008-03-05 22:39:33 +00:00
|
|
|
int radius = m_Width >> 1;
|
|
|
|
|
|
|
|
// (dx, dy) is a vector from m_Start to m_End (an origin of m_Start)
|
|
|
|
int dx = m_End.x - m_Start.x;
|
|
|
|
int dy = m_End.y - m_Start.y;
|
|
|
|
|
|
|
|
// (spot_cX, spot_cY) is a vector from m_Start to ref_pos (an origin of m_Start)
|
|
|
|
int spot_cX = ref_pos.x - m_Start.x;
|
|
|
|
int spot_cY = ref_pos.y - m_Start.y;
|
|
|
|
|
|
|
|
if( Type() == TYPEVIA ) /* VIA rencontree */
|
|
|
|
{
|
|
|
|
return (double) spot_cX * spot_cX + (double) spot_cY * spot_cY <=
|
|
|
|
(double) radius * radius;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( DistanceTest( radius, dx, dy, spot_cX, spot_cY ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2007-08-09 01:41:30 +00:00
|
|
|
|
2008-01-06 12:43:57 +00:00
|
|
|
/**
|
|
|
|
* Function HitTest (overlayed)
|
|
|
|
* tests if the given EDA_Rect intersect this object.
|
|
|
|
* For now, an ending point must be inside this rect.
|
|
|
|
* @param refArea : the given EDA_Rect
|
|
|
|
* @return bool - true if a hit, else false
|
|
|
|
*/
|
|
|
|
bool TRACK::HitTest( EDA_Rect& refArea )
|
|
|
|
{
|
2008-02-09 08:34:45 +00:00
|
|
|
if( refArea.Inside( m_Start ) )
|
|
|
|
return true;
|
|
|
|
if( refArea.Inside( m_End ) )
|
|
|
|
return true;
|
|
|
|
return false;
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
|
|
|
|
2007-10-17 14:35:59 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
#if defined (DEBUG)
|
2007-10-01 04:14:29 +00:00
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
/**
|
|
|
|
* Function Show
|
|
|
|
* is used to output the object tree, currently for debugging only.
|
2007-10-19 06:31:17 +00:00
|
|
|
* @param nestLevel An aid to prettier tree indenting, and is the level
|
2007-08-09 01:41:30 +00:00
|
|
|
* of nesting of this object within the overall tree.
|
|
|
|
* @param os The ostream& to output to.
|
|
|
|
*/
|
|
|
|
void TRACK::Show( int nestLevel, std::ostream& os )
|
|
|
|
{
|
|
|
|
NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() <<
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-01 04:14:29 +00:00
|
|
|
// " shape=\"" << m_Shape << '"' <<
|
2007-10-19 06:31:17 +00:00
|
|
|
" layer=\"" << m_Layer << '"' <<
|
|
|
|
" width=\"" << m_Width << '"' <<
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
// " drill=\"" << GetDrillValue() << '"' <<
|
2007-10-19 06:31:17 +00:00
|
|
|
" netcode=\"" << GetNet() << "\">" <<
|
|
|
|
"<start" << m_Start << "/>" <<
|
|
|
|
"<end" << m_End << "/>";
|
|
|
|
|
|
|
|
os << "</" << GetClass().Lower().mb_str() << ">\n";
|
2007-08-09 01:41:30 +00:00
|
|
|
}
|
|
|
|
|
2007-10-01 04:14:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Show
|
|
|
|
* is used to output the object tree, currently for debugging only.
|
2007-10-19 06:31:17 +00:00
|
|
|
* @param nestLevel An aid to prettier tree indenting, and is the level
|
2007-10-01 04:14:29 +00:00
|
|
|
* of nesting of this object within the overall tree.
|
|
|
|
* @param os The ostream& to output to.
|
|
|
|
*/
|
|
|
|
void SEGVIA::Show( int nestLevel, std::ostream& os )
|
|
|
|
{
|
|
|
|
const char* cp;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-01 04:14:29 +00:00
|
|
|
switch( Shape() )
|
|
|
|
{
|
2007-10-19 16:24:44 +00:00
|
|
|
case VIA_THROUGH:
|
2007-10-15 07:50:59 +00:00
|
|
|
cp = "through";
|
|
|
|
break;
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
case VIA_BLIND_BURIED:
|
|
|
|
cp = "blind/buried";
|
2007-10-15 07:50:59 +00:00
|
|
|
break;
|
|
|
|
|
2008-01-12 20:31:56 +00:00
|
|
|
case VIA_MICROVIA:
|
|
|
|
cp = "micro via";
|
2007-10-15 07:50:59 +00:00
|
|
|
break;
|
|
|
|
|
2007-10-01 04:14:29 +00:00
|
|
|
default:
|
2007-10-15 07:50:59 +00:00
|
|
|
case VIA_NOT_DEFINED:
|
|
|
|
cp = "undefined";
|
|
|
|
break;
|
2007-10-01 04:14:29 +00:00
|
|
|
}
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
int topLayer;
|
|
|
|
int botLayer;
|
2008-02-19 00:30:10 +00:00
|
|
|
BOARD* board = (BOARD*) m_Parent;
|
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-01 04:14:29 +00:00
|
|
|
ReturnLayerPair( &topLayer, &botLayer );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-10-01 04:14:29 +00:00
|
|
|
NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() <<
|
2008-02-19 00:30:10 +00:00
|
|
|
" type=\"" << cp << '"';
|
|
|
|
|
|
|
|
if( board )
|
|
|
|
os << " layers=\"" << board->GetLayerName( topLayer ).Trim().mb_str() << ","
|
|
|
|
<< board->GetLayerName( botLayer ).Trim().mb_str() << '"';
|
|
|
|
os <<
|
2007-10-19 06:31:17 +00:00
|
|
|
" width=\"" << m_Width << '"' <<
|
2008-01-12 20:31:56 +00:00
|
|
|
" drill=\"" << GetDrillValue() << '"' <<
|
2007-10-19 06:31:17 +00:00
|
|
|
" netcode=\"" << GetNet() << "\">" <<
|
|
|
|
"<pos" << m_Start << "/>";
|
|
|
|
|
|
|
|
os << "</" << GetClass().Lower().mb_str() << ">\n";
|
2007-10-01 04:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
#endif
|