2011-10-13 19:56:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2012-06-08 09:56:42 +00:00
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-13 19:56:32 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_track.h
|
|
|
|
* @brief Functions relatives to tracks, vias and segments used to fill zones.
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <trigo.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <class_pcb_screen.h>
|
|
|
|
#include <drawtxt.h>
|
|
|
|
#include <pcbcommon.h>
|
|
|
|
#include <colors_selection.h>
|
|
|
|
#include <wxstruct.h>
|
|
|
|
#include <wxBasePcbFrame.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_track.h>
|
|
|
|
#include <pcbnew.h>
|
2012-04-27 14:15:11 +00:00
|
|
|
#include <base_units.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
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 )
|
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
// maybe return true for tracks and vias, not for zone segments
|
2013-04-09 16:00:46 +00:00
|
|
|
return IsCopperLayer( aTrack->GetLayer() )
|
2011-10-01 19:24:27 +00:00
|
|
|
&& ( aTrack->Type() == PCB_TRACE_T || aTrack->Type() == PCB_VIA_T )
|
2011-09-30 08:24:10 +00:00
|
|
|
&& ( ( DisplayOpt.ShowTrackClearanceMode == SHOW_CLEARANCE_NEW_AND_EDITED_TRACKS_AND_VIA_AREAS
|
2011-12-21 13:42:02 +00:00
|
|
|
&& ( aTrack->IsDragging() || aTrack->IsMoving() || aTrack->IsNew() ) )
|
2011-09-30 08:24:10 +00:00
|
|
|
|| ( DisplayOpt.ShowTrackClearanceMode == SHOW_CLEARANCE_ALWAYS )
|
|
|
|
);
|
|
|
|
|
2008-03-11 01:19:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-16 14:13:02 +00:00
|
|
|
/*
|
|
|
|
* return true if the dist between p1 and p2 < max_dist
|
2012-04-01 20:51:56 +00:00
|
|
|
* Currently in test (currently ratsnest algos work only if p1 == p2)
|
2011-09-16 14:13:02 +00:00
|
|
|
*/
|
|
|
|
inline bool IsNear( wxPoint& p1, wxPoint& p2, int max_dist )
|
|
|
|
{
|
|
|
|
#if 0 // Do not change it: does not work
|
|
|
|
int dist;
|
|
|
|
dist = abs( p1.x - p2.x ) + abs( p1.y - p2.y );
|
|
|
|
dist *= 7;
|
|
|
|
dist /= 10;
|
|
|
|
|
|
|
|
if ( dist < max_dist )
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
if ( p1 == p2 )
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-09 16:00:46 +00:00
|
|
|
TRACK* GetTrace( TRACK* aStartTrace, TRACK* aEndTrace, const wxPoint& aPosition,
|
|
|
|
LAYER_MSK aLayerMask )
|
2011-09-16 14:13:02 +00:00
|
|
|
{
|
|
|
|
TRACK* PtSegm;
|
|
|
|
|
|
|
|
if( aStartTrace == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for( PtSegm = aStartTrace; PtSegm != NULL; PtSegm = PtSegm->Next() )
|
|
|
|
{
|
|
|
|
if( PtSegm->GetState( IS_DELETED | BUSY ) == 0 )
|
|
|
|
{
|
2013-01-13 00:04:00 +00:00
|
|
|
if( aPosition == PtSegm->GetStart() )
|
2011-09-16 14:13:02 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( aLayerMask & PtSegm->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return PtSegm;
|
|
|
|
}
|
|
|
|
|
2013-01-13 00:04:00 +00:00
|
|
|
if( aPosition == PtSegm->GetEnd() )
|
2011-09-16 14:13:02 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( aLayerMask & PtSegm->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return PtSegm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( PtSegm == aEndTrace )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
TRACK::TRACK( BOARD_ITEM* aParent, KICAD_T idtype ) :
|
|
|
|
BOARD_CONNECTED_ITEM( aParent, idtype )
|
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
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* TRACK::Clone() const
|
2012-01-14 19:50:32 +00:00
|
|
|
{
|
|
|
|
return new TRACK( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString TRACK::ShowWidth() const
|
2007-10-11 00:11:59 +00:00
|
|
|
{
|
2012-04-27 14:15:11 +00:00
|
|
|
wxString msg = ::CoordinateToString( m_Width );
|
2007-10-11 00:11:59 +00:00
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
SEGZONE::SEGZONE( BOARD_ITEM* aParent ) :
|
2011-10-01 19:24:27 +00:00
|
|
|
TRACK( aParent, PCB_ZONE_T )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* SEGZONE::Clone() const
|
2012-01-14 19:50:32 +00:00
|
|
|
{
|
|
|
|
return new SEGZONE( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString SEGZONE::GetSelectMenuText() const
|
|
|
|
{
|
2013-04-09 17:49:01 +00:00
|
|
|
wxString text, nettxt;
|
2011-07-14 15:42:44 +00:00
|
|
|
NETINFO_ITEM* net;
|
|
|
|
BOARD* board = GetBoard();
|
|
|
|
|
2012-02-10 22:26:42 +00:00
|
|
|
text << _( "Zone" ) << wxT( " " ) << wxString::Format( wxT( "(%08lX)" ), m_TimeStamp );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
if( board )
|
|
|
|
{
|
|
|
|
net = board->FindNet( GetNet() );
|
|
|
|
|
|
|
|
if( net )
|
2013-04-09 17:49:01 +00:00
|
|
|
nettxt = net->GetNetname();
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
wxFAIL_MSG( wxT( "SEGZONE::GetSelectMenuText: BOARD is NULL" ) );
|
2013-04-09 17:49:01 +00:00
|
|
|
nettxt = wxT( "???" );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 17:49:01 +00:00
|
|
|
text.Printf( _( "Zone (%08lX) [%s] on %s" ),
|
|
|
|
m_TimeStamp, GetChars( nettxt ), GetChars( GetLayerName() ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
SEGVIA::SEGVIA( BOARD_ITEM* aParent ) :
|
2011-10-01 19:24:27 +00:00
|
|
|
TRACK( aParent, PCB_VIA_T )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2012-06-16 22:49:24 +00:00
|
|
|
SetShape( VIA_THROUGH );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* SEGVIA::Clone() const
|
2012-01-14 19:50:32 +00:00
|
|
|
{
|
|
|
|
return new SEGVIA( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString SEGVIA::GetSelectMenuText() const
|
|
|
|
{
|
|
|
|
wxString text;
|
2013-04-08 07:13:26 +00:00
|
|
|
wxString format;
|
2011-07-14 15:42:44 +00:00
|
|
|
NETINFO_ITEM* net;
|
|
|
|
BOARD* board = GetBoard();
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
int shape = GetShape();
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
if( shape == VIA_BLIND_BURIED )
|
2013-04-08 07:13:26 +00:00
|
|
|
format = _( "Blind/Buried Via %s, net[%s] (%d) on layers %s/%s" );
|
2011-07-14 15:42:44 +00:00
|
|
|
else if( shape == VIA_MICROVIA )
|
2013-04-08 07:13:26 +00:00
|
|
|
format = _( "Micro Via %s, Net [%s] (%d) on layers %s/%s" );
|
2011-07-14 15:42:44 +00:00
|
|
|
// else say nothing about normal (through) vias
|
2013-04-08 07:13:26 +00:00
|
|
|
else format = _( "Via %s net [%s] (%d) on layers %s/%s" );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
if( board )
|
|
|
|
{
|
|
|
|
net = board->FindNet( GetNet() );
|
2013-04-08 07:13:26 +00:00
|
|
|
wxString netname;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
if( net )
|
2013-04-08 07:13:26 +00:00
|
|
|
netname = net->GetNetname();
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
// say which layers, only two for now
|
|
|
|
LAYER_NUM topLayer;
|
|
|
|
LAYER_NUM botLayer;
|
|
|
|
ReturnLayerPair( &topLayer, &botLayer );
|
2013-04-08 07:13:26 +00:00
|
|
|
text.Printf( format.GetData(), GetChars( ShowWidth() ),
|
|
|
|
GetChars( netname ), GetNet(),
|
|
|
|
GetChars( board->GetLayerName( topLayer ) ),
|
|
|
|
GetChars( board->GetLayerName( botLayer ) ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
wxFAIL_MSG( wxT( "SEGVIA::GetSelectMenuText: BOARD is NULL" ) );
|
2013-04-08 07:13:26 +00:00
|
|
|
text.Printf( format.GetData(), GetChars( ShowWidth() ),
|
|
|
|
wxT( "???" ), 0,
|
|
|
|
wxT( "??" ), wxT( "??" ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-08 11:33:43 +00:00
|
|
|
int TRACK::GetClearance( BOARD_CONNECTED_ITEM* aItem ) const
|
|
|
|
{
|
2011-09-14 20:04:58 +00:00
|
|
|
// Currently tracks have no specific clearance parameter on a per track or per
|
|
|
|
// segment basis. The NETCLASS clearance is used.
|
2010-04-08 11:33:43 +00:00
|
|
|
return BOARD_CONNECTED_ITEM::GetClearance( aItem );
|
|
|
|
}
|
2007-09-01 12:00:30 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-02-09 08:34:45 +00:00
|
|
|
int TRACK::GetDrillValue() const
|
2008-01-12 20:31:56 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() != PCB_VIA_T )
|
2008-02-09 08:34:45 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
if( m_Drill > 0 ) // Use the specific value.
|
2008-02-09 08:34:45 +00:00
|
|
|
return m_Drill;
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
// Use the default value from the Netclass
|
|
|
|
NETCLASS* netclass = GetNetClass();
|
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
if( m_Shape == VIA_MICROVIA )
|
2009-10-21 19:16:25 +00:00
|
|
|
return netclass->GetuViaDrill();
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2009-10-21 19:16:25 +00:00
|
|
|
return netclass->GetViaDrill();
|
2008-01-12 20:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
bool TRACK::IsNull()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( ( Type() != PCB_VIA_T ) && ( m_Start == m_End ) )
|
2009-10-10 17:27:53 +00:00
|
|
|
return true;
|
2007-08-08 20:51:08 +00:00
|
|
|
else
|
2009-10-10 17:27:53 +00:00
|
|
|
return false;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
STATUS_FLAGS TRACK::IsPointOnEnds( const wxPoint& point, int min_dist )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2013-03-28 19:12:46 +00:00
|
|
|
STATUS_FLAGS result = 0;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( min_dist < 0 )
|
|
|
|
min_dist = m_Width / 2;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-09-14 15:08: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
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( min_dist == 0 )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
if( (dx == 0) && (dy == 0 ) )
|
|
|
|
result |= STARTPOINT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-04-14 18:44:46 +00:00
|
|
|
double dist = hypot( (double)dx, (double) dy );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( min_dist >= (int) dist )
|
2007-08-08 20:51:08 +00:00
|
|
|
result |= STARTPOINT;
|
|
|
|
}
|
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
dx = m_End.x - point.x;
|
|
|
|
dy = m_End.y - point.y;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( min_dist == 0 )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
if( (dx == 0) && (dy == 0 ) )
|
|
|
|
result |= ENDPOINT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-04-14 18:44:46 +00:00
|
|
|
double dist = hypot( (double) dx, (double) dy );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
if( min_dist >= (int) dist )
|
2007-08-08 20:51:08 +00:00
|
|
|
result |= ENDPOINT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT TRACK::GetBoundingBox() const
|
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
|
2008-12-14 19:45:05 +00:00
|
|
|
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;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_VIA_T )
|
2008-03-10 15:00:22 +00:00
|
|
|
{
|
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
|
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
radius = ( m_Width + 1 ) / 2;
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2012-09-22 11:19:37 +00:00
|
|
|
ymax = std::max( m_Start.y, m_End.y );
|
|
|
|
xmax = std::max( m_Start.x, m_End.x );
|
2008-03-10 15:00:22 +00:00
|
|
|
|
2012-09-22 11:19:37 +00:00
|
|
|
ymin = std::min( m_Start.y, m_End.y );
|
|
|
|
xmin = std::min( m_Start.x, m_End.x );
|
2008-03-10 15:00:22 +00:00
|
|
|
}
|
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.
|
2009-09-10 15:22:26 +00:00
|
|
|
radius += GetClearance() + 1;
|
2008-03-11 01:19:08 +00:00
|
|
|
}
|
|
|
|
|
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
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT ret( wxPoint( xmin, ymin ), wxSize( xmax - xmin + 1, ymax - ymin + 1 ) );
|
2008-03-11 01:19:08 +00:00
|
|
|
|
|
|
|
return ret;
|
2008-03-05 22:39:33 +00:00
|
|
|
}
|
|
|
|
|
2009-10-10 17:27:53 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void TRACK::Rotate( const wxPoint& aRotCentre, double aAngle )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
RotatePoint( &m_Start, aRotCentre, aAngle );
|
|
|
|
RotatePoint( &m_End, aRotCentre, aAngle );
|
|
|
|
}
|
|
|
|
|
2009-10-10 17:27:53 +00:00
|
|
|
|
|
|
|
void TRACK::Flip( const wxPoint& aCentre )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
2009-10-10 17:27:53 +00:00
|
|
|
m_Start.y = aCentre.y - (m_Start.y - aCentre.y);
|
|
|
|
m_End.y = aCentre.y - (m_End.y - aCentre.y);
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-04-09 16:00:46 +00:00
|
|
|
if( Type() != PCB_VIA_T )
|
2013-04-05 19:04:58 +00:00
|
|
|
SetLayer( FlipLayer( GetLayer() ) );
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2008-03-05 22:39:33 +00:00
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
// see class_track.h
|
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-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
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
bool SEGVIA::IsOnLayer( LAYER_NUM layer_number ) const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
LAYER_MSK TRACK::GetLayerMask() const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_VIA_T )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
int via_type = GetShape();
|
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
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM 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
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
LAYER_MSK layermask = NO_LAYERS;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
while( bottom_layer <= top_layer )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
layermask |= ::GetLayerMask( bottom_layer );
|
|
|
|
++bottom_layer;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return layermask;
|
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
return ::GetLayerMask( m_Layer );
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
void SEGVIA::SetLayerPair( LAYER_NUM top_layer, LAYER_NUM bottom_layer )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
if( GetShape() == VIA_THROUGH )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2009-12-07 03:46:13 +00:00
|
|
|
top_layer = LAYER_N_FRONT;
|
|
|
|
bottom_layer = LAYER_N_BACK;
|
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
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
// XXX EVIL usage of LAYER
|
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
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
void SEGVIA::ReturnLayerPair( LAYER_NUM* top_layer, LAYER_NUM* bottom_layer ) const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM b_layer = LAYER_N_BACK;
|
|
|
|
LAYER_NUM t_layer = LAYER_N_FRONT;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
if( GetShape() != VIA_THROUGH )
|
2009-05-21 12:45:21 +00:00
|
|
|
{
|
2013-03-31 13:27:46 +00:00
|
|
|
// XXX EVIL usage of LAYER
|
2009-05-21 12:45:21 +00:00
|
|
|
b_layer = (m_Layer >> 4) & 15;
|
|
|
|
t_layer = m_Layer & 15;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-21 12:45:21 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-29 17:47:32 +00:00
|
|
|
TRACK* TRACK::GetBestInsertPoint( BOARD* aPcb )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
TRACK* track;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_ZONE_T )
|
2010-12-29 17:47:32 +00:00
|
|
|
track = aPcb->m_Zone;
|
2007-08-08 20:51:08 +00:00
|
|
|
else
|
2010-12-29 17:47:32 +00:00
|
|
|
track = aPcb->m_Track;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
for( ; track; track = track->Next() )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
if( GetNet() <= track->GetNet() )
|
|
|
|
return track;
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
return NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
TRACK* TRACK::GetStartNetCode( int NetCode )
|
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
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
TRACK* TRACK::GetEndNetCode( int NetCode )
|
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;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
void TRACK::Draw( EDA_DRAW_PANEL* panel, wxDC* aDC, GR_DRAWMODE aDrawMode,
|
2012-09-01 13:38:27 +00:00
|
|
|
const wxPoint& aOffset )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
int l_trace;
|
|
|
|
int radius;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM curr_layer = ( (PCB_SCREEN*) panel->GetScreen() )->m_Active_Layer;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_ZONE_T && DisplayOpt.DisplayZonesMode != 0 )
|
2007-08-08 20:51:08 +00:00
|
|
|
return;
|
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
BOARD * brd = GetBoard( );
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = brd->GetLayerColor(m_Layer);
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( brd->IsLayerVisible( m_Layer ) == false && !( aDrawMode & GR_HIGHLIGHT ) )
|
2010-10-16 14:51:22 +00:00
|
|
|
return;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2012-01-10 21:55:07 +00:00
|
|
|
#ifdef USE_WX_OVERLAY
|
|
|
|
// If dragged not draw in OnPaint otherwise remains impressed in wxOverlay
|
2013-04-09 17:16:53 +00:00
|
|
|
if( (m_Flags && IS_DRAGGED) && aDC->IsKindOf(wxCLASSINFO(wxPaintDC)))
|
2012-01-10 21:55:07 +00:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( ( aDrawMode & GR_ALLOW_HIGHCONTRAST ) && DisplayOpt.ContrastModeDisplay )
|
2010-10-16 14:51:22 +00:00
|
|
|
{
|
|
|
|
if( !IsOnLayer( curr_layer ) )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorTurnToDarkDarkGray( &color );
|
2010-10-16 14:51:22 +00:00
|
|
|
}
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDrawMode & GR_HIGHLIGHT )
|
|
|
|
ColorChangeHighlightFlag( &color, !(aDrawMode & GR_AND) );
|
2008-04-02 14:16:14 +00:00
|
|
|
|
2013-04-04 21:35:01 +00:00
|
|
|
ColorApplyHighlightFlag( &color );
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2010-10-16 14:51:22 +00:00
|
|
|
SetAlpha( &color, 150 );
|
2008-12-04 04:28:11 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
2008-04-02 14:16:14 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
l_trace = m_Width >> 1;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
|
|
|
if( m_Shape == S_CIRCLE )
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
radius = (int) hypot( (double) ( m_End.x - m_Start.x ),
|
|
|
|
(double) ( m_End.y - m_Start.y ) );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDC->LogicalToDeviceXRel( l_trace ) <= MIN_DRAW_WIDTH )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_Start.y + aOffset.y, radius, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDC->LogicalToDeviceXRel( l_trace ) <= MIN_DRAW_WIDTH ) // Line mode if too small
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_Start.y + aOffset.y, radius, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
else if( ( !DisplayOpt.DisplayPcbTrackFill) || GetState( FORCE_SKETCH ) )
|
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_Start.y + aOffset.y, radius - l_trace, color );
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_Start.y + aOffset.y, radius + l_trace, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_Start.y + aOffset.y, radius, m_Width, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-14 20:04:58 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDC->LogicalToDeviceXRel( l_trace ) <= MIN_DRAW_WIDTH )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start + aOffset, m_End + aOffset, 0, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
if( !DisplayOpt.DisplayPcbTrackFill || GetState( FORCE_SKETCH ) )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCSegm( panel->GetClipBox(), aDC, m_Start + aOffset, m_End + aOffset, m_Width, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRFillCSegm( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y,
|
|
|
|
m_End.x + aOffset.x, m_End.y + aOffset.y, m_Width, color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
if( panel->GetScreen()->m_IsPrinting )
|
2009-01-15 14:32:29 +00:00
|
|
|
return;
|
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
// Show clearance for tracks, not for zone segments
|
2008-03-11 01:19:08 +00:00
|
|
|
if( ShowClearance( this ) )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCSegm( panel->GetClipBox(), aDC, m_Start + aOffset, m_End + aOffset,
|
2009-09-10 15:22:26 +00:00
|
|
|
m_Width + (GetClearance() * 2), color );
|
2007-08-08 20:51:08 +00:00
|
|
|
}
|
2008-12-16 19:44:57 +00:00
|
|
|
|
2008-12-19 20:40:08 +00:00
|
|
|
/* Display the short netname for tracks, not for zone segments.
|
2008-12-16 19:44:57 +00:00
|
|
|
* we must filter tracks, to avoid a lot of texts.
|
2013-04-09 17:16:53 +00:00
|
|
|
* - only tracks with a length > 10 * thickness are eligible
|
2009-01-14 08:27:16 +00:00
|
|
|
* and, of course, if we are not printing the board
|
2008-12-16 19:44:57 +00:00
|
|
|
*/
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_ZONE_T )
|
2008-12-19 20:40:08 +00:00
|
|
|
return;
|
2008-12-16 19:44:57 +00:00
|
|
|
|
2009-05-21 12:45:21 +00:00
|
|
|
if( DisplayOpt.DisplayNetNamesMode == 0 || DisplayOpt.DisplayNetNamesMode == 1 )
|
2009-03-26 19:27:50 +00:00
|
|
|
return;
|
|
|
|
|
2008-12-16 19:44:57 +00:00
|
|
|
#define THRESHOLD 10
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
int len = int( hypot( (m_End.x - m_Start.x), (m_End.y - m_Start.y) ) );
|
2008-12-16 19:44:57 +00:00
|
|
|
|
|
|
|
if( len < THRESHOLD * m_Width )
|
|
|
|
return;
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
// no room to display a text inside track
|
|
|
|
if( aDC->LogicalToDeviceXRel( m_Width ) < MIN_TEXT_SIZE )
|
2008-12-19 20:40:08 +00:00
|
|
|
return;
|
|
|
|
|
2008-12-16 19:44:57 +00:00
|
|
|
if( GetNet() == 0 )
|
|
|
|
return;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
NETINFO_ITEM* net = ( (BOARD*) GetParent() )->FindNet( GetNet() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-16 19:44:57 +00:00
|
|
|
if( net == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
int textlen = net->GetShortNetname().Len();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-16 19:44:57 +00:00
|
|
|
if( textlen > 0 )
|
|
|
|
{
|
|
|
|
// calculate a good size for the text
|
2012-09-22 11:19:37 +00:00
|
|
|
int tsize = std::min( m_Width, len / textlen );
|
2013-04-09 17:16:53 +00:00
|
|
|
int dx = m_End.x - m_Start.x ;
|
|
|
|
int dy = m_End.y - m_Start.y ;
|
2009-05-21 12:45:21 +00:00
|
|
|
wxPoint tpos = m_Start + m_End;
|
2008-12-16 19:44:57 +00:00
|
|
|
tpos.x /= 2;
|
|
|
|
tpos.y /= 2;
|
|
|
|
|
|
|
|
// Calculate angle: if the track segment is vertical, angle = 90 degrees
|
2013-04-09 17:16:53 +00:00
|
|
|
// If horizontal 0 degrees, otherwise compute it
|
|
|
|
int angle; // angle is in 0.1 degree
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( dy == 0 ) // Horizontal segment
|
|
|
|
{
|
|
|
|
angle = 0;
|
|
|
|
}
|
|
|
|
else
|
2008-12-16 19:44:57 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
if( dx == 0 ) // Vertical segment
|
|
|
|
{
|
|
|
|
angle = 900;
|
|
|
|
}
|
|
|
|
else
|
2009-10-10 17:27:53 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
/* atan2 is *not* the solution here, since can give upside
|
|
|
|
down text. We want to work only in the first and fourth quadrant */
|
|
|
|
angle = 10 * RAD2DEG( -atan( double( dy )/ double( dx ) ) );
|
2009-09-10 15:22:26 +00:00
|
|
|
}
|
2008-12-16 19:44:57 +00:00
|
|
|
}
|
2013-04-09 17:16:53 +00:00
|
|
|
|
|
|
|
if( ( aDC->LogicalToDeviceXRel( tsize ) >= MIN_TEXT_SIZE )
|
|
|
|
&& ( !(!IsOnLayer( curr_layer )&& DisplayOpt.ContrastModeDisplay) ) )
|
|
|
|
{
|
|
|
|
if( (aDrawMode & GR_XOR) == 0 )
|
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
|
|
|
|
2013-04-10 19:09:59 +00:00
|
|
|
tsize = (tsize * 7) / 10; // small reduction to give a better look
|
2013-04-09 17:16:53 +00:00
|
|
|
DrawGraphicHaloText( panel, aDC, tpos,
|
|
|
|
color, BLACK, WHITE, net->GetShortNetname(), angle,
|
|
|
|
wxSize( tsize, tsize ),
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
tsize / 7,
|
|
|
|
false, false );
|
|
|
|
}
|
2008-12-16 19:44:57 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
void SEGVIA::Draw( EDA_DRAW_PANEL* panel, wxDC* aDC, GR_DRAWMODE aDrawMode,
|
2012-09-01 13:38:27 +00:00
|
|
|
const wxPoint& aOffset )
|
2008-11-24 06:53:43 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
int radius;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM curr_layer = ( (PCB_SCREEN*) panel->GetScreen() )->m_Active_Layer;
|
2009-10-10 17:27:53 +00:00
|
|
|
|
2009-10-27 10:55:46 +00:00
|
|
|
int fillvia = 0;
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_BASE_FRAME* frame = (PCB_BASE_FRAME*) panel->GetParent();
|
|
|
|
PCB_SCREEN* screen = frame->GetScreen();
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2009-09-29 04:44:35 +00:00
|
|
|
if( frame->m_DisplayViaFill == FILLED )
|
|
|
|
fillvia = 1;
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
BOARD * brd = GetBoard( );
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T color = brd->GetVisibleElementColor(VIAS_VISIBLE + m_Shape);
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
if( brd->IsElementVisible( PCB_VISIBLE(VIAS_VISIBLE + m_Shape) ) == false
|
2010-12-08 20:12:46 +00:00
|
|
|
&& ( color & HIGHLIGHT_FLAG ) != HIGHLIGHT_FLAG )
|
2008-11-24 06:53:43 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if( DisplayOpt.ContrastModeDisplay )
|
|
|
|
{
|
|
|
|
if( !IsOnLayer( curr_layer ) )
|
2012-09-02 12:06:47 +00:00
|
|
|
ColorTurnToDarkDarkGray( &color );
|
2008-11-24 06:53:43 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDrawMode & GR_HIGHLIGHT )
|
|
|
|
ColorChangeHighlightFlag( &color, !(aDrawMode & GR_AND) );
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2013-04-04 21:35:01 +00:00
|
|
|
ColorApplyHighlightFlag( &color );
|
2008-11-24 06:53:43 +00:00
|
|
|
|
|
|
|
SetAlpha( &color, 150 );
|
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
radius = m_Width >> 1;
|
|
|
|
// for small via size on screen (radius < 4 pixels) draw a simplified shape
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
int radius_in_pixels = aDC->LogicalToDeviceXRel( radius );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2009-10-27 10:55:46 +00:00
|
|
|
bool fast_draw = false;
|
|
|
|
|
|
|
|
// Vias are drawn as a filled circle or a double circle. The hole will be drawn later
|
2011-09-07 19:41:04 +00:00
|
|
|
int drill_radius = GetDrillValue() / 2;
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
int inner_radius = radius - aDC->DeviceToLogicalXRel( 2 );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( radius_in_pixels < MIN_VIA_DRAW_SIZE )
|
2009-01-29 14:26:20 +00:00
|
|
|
{
|
2009-10-27 10:55:46 +00:00
|
|
|
fast_draw = true;
|
|
|
|
fillvia = false;
|
2009-01-29 14:26:20 +00:00
|
|
|
}
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2009-09-29 04:44:35 +00:00
|
|
|
if( fillvia )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRFilledCircle( panel->GetClipBox(), aDC, m_Start + aOffset, radius, color );
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2009-09-29 04:44:35 +00:00
|
|
|
else
|
2009-10-27 10:55:46 +00:00
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start + aOffset, radius, 0, color );
|
2011-12-29 20:11:42 +00:00
|
|
|
|
2009-10-27 10:55:46 +00:00
|
|
|
if ( fast_draw )
|
|
|
|
return;
|
2011-12-29 20:11:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start + aOffset, inner_radius, 0, color );
|
2009-10-27 10:55:46 +00:00
|
|
|
}
|
2008-12-14 19:45:05 +00:00
|
|
|
|
|
|
|
// Draw the via hole if the display option allows it
|
|
|
|
if( DisplayOpt.m_DisplayViaMode != VIA_HOLE_NOT_SHOW )
|
|
|
|
{
|
2011-09-14 20:04:58 +00:00
|
|
|
// Display all drill holes requested or Display non default holes requested
|
|
|
|
if( (DisplayOpt.m_DisplayViaMode == ALL_VIA_HOLE_SHOW)
|
|
|
|
|| ( (drill_radius > 0 ) && !IsDrillDefault() ) )
|
2011-09-14 15:08:44 +00:00
|
|
|
{
|
2009-10-27 10:55:46 +00:00
|
|
|
if( fillvia )
|
2008-11-24 06:53:43 +00:00
|
|
|
{
|
2009-10-27 10:55:46 +00:00
|
|
|
bool blackpenstate = false;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-10-27 10:55:46 +00:00
|
|
|
if( screen->m_IsPrinting )
|
2009-09-29 04:44:35 +00:00
|
|
|
{
|
2009-10-27 10:55:46 +00:00
|
|
|
blackpenstate = GetGRForceBlackPenState();
|
|
|
|
GRForceBlackPen( false );
|
|
|
|
color = g_DrawBgColor;
|
2009-09-29 04:44:35 +00:00
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2009-10-27 10:55:46 +00:00
|
|
|
color = BLACK; // or DARKGRAY;
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2009-10-27 10:55:46 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( (aDrawMode & GR_XOR) == 0)
|
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
2009-10-27 10:55:46 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDC->LogicalToDeviceXRel( drill_radius ) > MIN_DRAW_WIDTH ) // Draw hole if large enough.
|
|
|
|
GRFilledCircle( panel->GetClipBox(), aDC, m_Start.x + aOffset.x,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_Start.y + aOffset.y, drill_radius, 0, color, color );
|
2009-10-27 10:55:46 +00:00
|
|
|
|
|
|
|
if( screen->m_IsPrinting )
|
|
|
|
GRForceBlackPen( blackpenstate );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
if( drill_radius < inner_radius ) // We can show the via hole
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start + aOffset, drill_radius, 0, color );
|
2008-11-24 06:53:43 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-14 19:45:05 +00:00
|
|
|
}
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2012-06-13 13:32:43 +00:00
|
|
|
if( ShowClearance( this ) )
|
|
|
|
{
|
2013-04-09 17:16:53 +00:00
|
|
|
GRCircle( panel->GetClipBox(), aDC, m_Start + aOffset, radius + GetClearance(), 0, color );
|
2012-06-13 13:32:43 +00:00
|
|
|
}
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
// for Micro Vias, draw a partial cross : X on component layer, or + on copper layer
|
2008-12-14 19:45:05 +00:00
|
|
|
// (so we can see 2 superimposed microvias ):
|
2011-12-14 04:29:25 +00:00
|
|
|
if( GetShape() == VIA_MICROVIA )
|
2008-12-14 19:45:05 +00:00
|
|
|
{
|
|
|
|
int ax, ay, bx, by;
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2009-12-07 03:46:13 +00:00
|
|
|
if( IsOnLayer( LAYER_N_BACK ) )
|
2008-12-14 19:45:05 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
ax = radius; ay = 0;
|
|
|
|
bx = drill_radius; by = 0;
|
2008-11-24 06:53:43 +00:00
|
|
|
}
|
2008-12-14 19:45:05 +00:00
|
|
|
else
|
2008-11-24 06:53:43 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
ax = ay = (radius * 707) / 1000;
|
|
|
|
bx = by = (drill_radius * 707) / 1000;
|
2008-11-24 06:53:43 +00:00
|
|
|
}
|
2008-12-14 19:45:05 +00:00
|
|
|
|
|
|
|
/* lines | or \ */
|
2013-04-09 17:16:53 +00:00
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start.x + aOffset.x - ax,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y - ay,
|
|
|
|
m_Start.x + aOffset.x - bx,
|
|
|
|
m_Start.y + aOffset.y - by, 0, color );
|
2013-04-09 17:16:53 +00:00
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start.x + aOffset.x + bx,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y + by,
|
|
|
|
m_Start.x + aOffset.x + ax,
|
|
|
|
m_Start.y + aOffset.y + ay, 0, color );
|
2008-12-14 19:45:05 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
// lines - or /
|
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start.x + aOffset.x + ay,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y - ax,
|
|
|
|
m_Start.x + aOffset.x + by,
|
|
|
|
m_Start.y + aOffset.y - bx, 0, color );
|
2013-04-09 17:16:53 +00:00
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start.x + aOffset.x - by,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y + bx,
|
|
|
|
m_Start.x + aOffset.x - ay,
|
|
|
|
m_Start.y + aOffset.y + ax, 0, color );
|
2008-11-24 06:53:43 +00:00
|
|
|
}
|
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
// for Buried Vias, draw a partial line : orient depending on layer pair
|
2008-12-14 19:45:05 +00:00
|
|
|
// (so we can see superimposed buried vias ):
|
2011-12-14 04:29:25 +00:00
|
|
|
if( GetShape() == VIA_BLIND_BURIED )
|
2008-12-14 19:45:05 +00:00
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
int ax = 0, ay = radius, bx = 0, by = drill_radius;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM layer_top, layer_bottom;
|
2008-12-14 19:45:05 +00:00
|
|
|
|
|
|
|
( (SEGVIA*) this )->ReturnLayerPair( &layer_top, &layer_bottom );
|
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
// lines for the top layer
|
2010-01-31 20:01:46 +00:00
|
|
|
RotatePoint( &ax, &ay, layer_top * 3600 / brd->GetCopperLayerCount( ) );
|
|
|
|
RotatePoint( &bx, &by, layer_top * 3600 / brd->GetCopperLayerCount( ) );
|
2013-04-09 17:16:53 +00:00
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start.x + aOffset.x - ax,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y - ay,
|
|
|
|
m_Start.x + aOffset.x - bx,
|
|
|
|
m_Start.y + aOffset.y - by, 0, color );
|
2008-12-14 19:45:05 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
// lines for the bottom layer
|
2011-09-07 19:41:04 +00:00
|
|
|
ax = 0; ay = radius; bx = 0; by = drill_radius;
|
2010-01-31 20:01:46 +00:00
|
|
|
RotatePoint( &ax, &ay, layer_bottom * 3600 / brd->GetCopperLayerCount( ) );
|
|
|
|
RotatePoint( &bx, &by, layer_bottom * 3600 / brd->GetCopperLayerCount( ) );
|
2013-04-09 17:16:53 +00:00
|
|
|
GRLine( panel->GetClipBox(), aDC, m_Start.x + aOffset.x - ax,
|
2010-11-11 21:46:55 +00:00
|
|
|
m_Start.y + aOffset.y - ay,
|
|
|
|
m_Start.x + aOffset.x - bx,
|
|
|
|
m_Start.y + aOffset.y - by, 0, color );
|
2008-12-14 19:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Display the short netname:
|
|
|
|
if( GetNet() == 0 )
|
|
|
|
return;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-21 12:45:21 +00:00
|
|
|
if( DisplayOpt.DisplayNetNamesMode == 0 || DisplayOpt.DisplayNetNamesMode == 1 )
|
2009-03-26 19:27:50 +00:00
|
|
|
return;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-05-24 18:28:36 +00:00
|
|
|
NETINFO_ITEM* net = ( (BOARD*) GetParent() )->FindNet( GetNet() );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
if( net == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
int len = net->GetShortNetname().Len();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-16 19:44:57 +00:00
|
|
|
if( len > 0 )
|
2008-12-14 19:45:05 +00:00
|
|
|
{
|
2008-12-15 10:24:19 +00:00
|
|
|
// calculate a good size for the text
|
|
|
|
int tsize = m_Width / len;
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2013-04-09 17:16:53 +00:00
|
|
|
if( aDC->LogicalToDeviceXRel( tsize ) >= MIN_TEXT_SIZE )
|
2008-12-15 10:24:19 +00:00
|
|
|
{
|
2013-04-10 19:09:59 +00:00
|
|
|
tsize = (tsize * 7) / 10; // small reduction to give a better look, inside via
|
2013-04-09 17:16:53 +00:00
|
|
|
if( (aDrawMode & GR_XOR) == 0 )
|
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
|
|
|
|
|
|
|
DrawGraphicHaloText( panel, aDC, m_Start,
|
|
|
|
color, WHITE, BLACK, net->GetShortNetname(), 0,
|
|
|
|
wxSize( tsize, tsize ),
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
tsize / 7, false, false );
|
2008-12-15 10:24:19 +00:00
|
|
|
}
|
2008-12-14 19:45:05 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-24 06:53:43 +00:00
|
|
|
|
|
|
|
|
Introduction of Graphics Abstraction Layer based rendering for pcbnew.
New classes:
- VIEW - represents view that is seen by user, takes care of layer ordering & visibility and how it is displayed (which location, how much zoomed, etc.)
- VIEW_ITEM - Base class for every item that can be displayed on VIEW (the biggest change is that now it may be necessary to override ViewBBox & ViewGetLayers method for derived classes).
- EDA_DRAW_PANEL_GAL - Inherits after EDA_DRAW_PANEL, displays VIEW output, right now it is not editable (in opposite to usual EDA_DRAW_PANEL).
- GAL/OPENGL_GAL/CAIRO_GAL - Base Graphics Abstraction Layer class + two different flavours (Cairo is not fully supported yet), that offers methods to draw primitives using different libraries.
- WX_VIEW_CONTROLS - Controller for VIEW, handles user events, allows zooming, panning, etc.
- PAINTER/PCB_PAINTER - Classes that uses GAL interface to draw items (as you may have already guessed - PCB_PAINTER is a class for drawing PCB specific object, PAINTER is an abstract class). Its methods are invoked by VIEW, when an item has to be drawn. To display a new type of item - you need to implement draw(ITEM_TYPE*) method that draws it using GAL methods.
- STROKE_FONT - Implements stroke font drawing using GAL methods.
Most important changes to Kicad original code:
* EDA_ITEM now inherits from VIEW_ITEM, which is a base class for all drawable objects.
* EDA_DRAW_FRAME contains both usual EDA_DRAW_PANEL and new EDA_DRAW_PANEL_GAL, that can be switched anytime.
* There are some new layers for displaying multilayer pads, vias & pads holes (these are not shown yet on the right sidebar in pcbnew)
* Display order of layers is different than in previous versions (if you are curious - you may check m_galLayerOrder@pcbnew/basepcbframe.cpp). Preserving usual order would result in not very natural display, such as showing silkscreen texts on the bottom.
* Introduced new hotkey (Alt+F12) and new menu option (View->Switch canvas) for switching canvas during runtime.
* Some of classes (mostly derived from BOARD_ITEM) now includes ViewBBox & ViewGetLayers methods.
* Removed tools/class_painter.h, as now it is extended and included in source code.
Build changes:
* GAL-based rendering option is turned on by a new compilation CMake option KICAD_GAL.
* When compiling with CMake option KICAD_GAL=ON, GLEW and Cairo libraries are required.
* GAL-related code is compiled into a static library (common/libgal).
* Build with KICAD_GAL=OFF should not need any new libraries and should come out as a standard version of Kicad
Currently most of items in pcbnew can be displayed using OpenGL (to be done are DIMENSIONS and MARKERS).
More details about GAL can be found in: http://www.ohwr.org/attachments/1884/view-spec.pdf
2013-04-02 06:54:03 +00:00
|
|
|
void SEGVIA::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
|
|
|
/*int top_layer, bottom_layer;
|
|
|
|
ReturnLayerPair( &top_layer, &bottom_layer );
|
|
|
|
|
|
|
|
// We can add vias to all layers they belong, but then they are drawn this many times
|
|
|
|
aCount = 0;
|
|
|
|
for( int i = bottom_layer; i <= top_layer; ++i )
|
|
|
|
{
|
|
|
|
aLayers[aCount++] = i;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
// Just show it on common via & via holes layers
|
|
|
|
aLayers[0] = ITEM_GAL_LAYER( VIAS_VISIBLE );
|
|
|
|
aLayers[1] = ITEM_GAL_LAYER( VIA_HOLES_VISIBLE );
|
|
|
|
aCount = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-14 15:08:44 +00:00
|
|
|
// see class_track.h
|
2013-01-12 17:32:24 +00:00
|
|
|
void TRACK::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList )
|
2009-10-14 18:14:58 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2013-01-12 17:32:24 +00:00
|
|
|
BOARD* board = GetBoard();
|
2009-10-16 17:18:23 +00:00
|
|
|
|
2009-10-14 18:14:58 +00:00
|
|
|
// Display basic infos
|
2013-01-12 17:32:24 +00:00
|
|
|
GetMsgPanelInfoBase( aList );
|
2009-10-14 18:14:58 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// Display full track length (in Pcbnew)
|
2013-01-12 17:32:24 +00:00
|
|
|
if( board )
|
2009-10-14 18:14:58 +00:00
|
|
|
{
|
2012-12-12 11:57:17 +00:00
|
|
|
double trackLen = 0;
|
|
|
|
double lenPadToDie = 0;
|
|
|
|
board->MarkTrace( this, NULL, &trackLen, &lenPadToDie, false );
|
2013-01-12 17:32:24 +00:00
|
|
|
msg = ::CoordinateToString( trackLen );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Track Len" ), msg, DARKCYAN ) );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-12-12 11:57:17 +00:00
|
|
|
if( lenPadToDie != 0 )
|
2011-08-20 14:46:48 +00:00
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
msg = ::LengthDoubleToString( trackLen + lenPadToDie );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Full Len" ), msg, DARKCYAN ) );
|
2011-08-20 14:46:48 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
msg = ::LengthDoubleToString( lenPadToDie );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "In Package" ), msg, DARKCYAN ) );
|
2011-08-20 14:46:48 +00:00
|
|
|
}
|
2009-10-14 18:14:58 +00:00
|
|
|
}
|
2011-03-11 15:53:28 +00:00
|
|
|
|
|
|
|
NETCLASS* netclass = GetNetClass();
|
|
|
|
|
|
|
|
if( netclass )
|
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NC Name" ), netclass->GetName(), DARKMAGENTA ) );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NC Clearance" ),
|
|
|
|
::CoordinateToString( netclass->GetClearance(), true ),
|
|
|
|
DARKMAGENTA ) );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NC Width" ),
|
|
|
|
::CoordinateToString( netclass->GetTrackWidth(), true ),
|
|
|
|
DARKMAGENTA ) );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NC Via Size" ),
|
|
|
|
::CoordinateToString( netclass->GetViaDiameter(), true ),
|
|
|
|
DARKMAGENTA ) );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NC Via Drill"),
|
|
|
|
::CoordinateToString( netclass->GetViaDrill(), true ),
|
|
|
|
DARKMAGENTA ) );
|
2011-03-11 15:53:28 +00:00
|
|
|
}
|
2009-10-14 18:14:58 +00:00
|
|
|
}
|
|
|
|
|
2009-10-27 10:55:46 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
void TRACK::GetMsgPanelInfoBase( std::vector< MSG_PANEL_ITEM >& aList )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
wxString msg;
|
2013-01-12 17:32:24 +00:00
|
|
|
BOARD* board = GetBoard();
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
switch( Type() )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_VIA_T:
|
2011-12-14 04:29:25 +00:00
|
|
|
switch( GetShape() )
|
2011-12-06 08:35:13 +00:00
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
default:
|
|
|
|
case 0:
|
2013-04-07 11:55:18 +00:00
|
|
|
msg = wxT( "???" ); // Not used yet, does not exist currently
|
2013-01-12 17:32:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
msg = _( "Micro Via" ); // from external layer (TOP or BOTTOM) from
|
|
|
|
// the near neighbor inner layer only
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
msg = _( "Blind/Buried Via" ); // from inner or external to inner
|
|
|
|
// or external layer (no restriction)
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
msg = _( "Through Via" ); // Usual via (from TOP to BOTTOM layer only )
|
|
|
|
break;
|
2011-12-06 08:35:13 +00:00
|
|
|
}
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_TRACE_T:
|
2007-08-20 19:33:15 +00:00
|
|
|
msg = _( "Track" );
|
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_ZONE_T:
|
|
|
|
msg = _( "Zone" );
|
|
|
|
break;
|
2007-08-20 19:33:15 +00:00
|
|
|
|
|
|
|
default:
|
2013-04-07 11:55:18 +00:00
|
|
|
msg = wxT( "???" );
|
2011-10-01 19:24:27 +00:00
|
|
|
break;
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Type" ), msg, DARKCYAN ) );
|
2008-02-19 00:30:10 +00:00
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// Display Net Name (in Pcbnew)
|
2013-01-12 17:32:24 +00:00
|
|
|
if( board )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2009-05-28 08:42:24 +00:00
|
|
|
NETINFO_ITEM* net = board->FindNet( GetNet() );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2009-05-28 08:42:24 +00:00
|
|
|
if( net )
|
|
|
|
msg = net->GetNetname();
|
2007-08-20 19:33:15 +00:00
|
|
|
else
|
|
|
|
msg = wxT( "<noname>" );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NetName" ), msg, RED ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2011-09-14 20:04:58 +00:00
|
|
|
/* Display net code : (useful in test or debug) */
|
2013-04-07 11:55:18 +00:00
|
|
|
msg.Printf( wxT( "%d.%d" ), GetNet(), GetSubNet() );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "NetCode" ), msg, RED ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
#if defined(DEBUG)
|
|
|
|
|
2011-09-22 19:16:55 +00:00
|
|
|
// Display the flags
|
2008-12-14 19:45:05 +00:00
|
|
|
msg.Printf( wxT( "0x%08X" ), m_Flags );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( wxT( "Flags" ), msg, BLUE ) );
|
2011-09-22 19:16:55 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
// Display start and end pointers:
|
|
|
|
msg.Printf( wxT( "%p" ), start );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( wxT( "start ptr" ), msg, BLUE ) );
|
2011-09-22 19:16:55 +00:00
|
|
|
msg.Printf( wxT( "%p" ), end );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( wxT( "end ptr" ), msg, BLUE ) );
|
2011-09-22 19:16:55 +00:00
|
|
|
// Display this ptr
|
|
|
|
msg.Printf( wxT( "%p" ), this );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( wxT( "this" ), msg, BLUE ) );
|
2011-09-22 19:16:55 +00:00
|
|
|
#endif
|
2008-12-04 04:28:11 +00:00
|
|
|
|
2011-09-22 19:16:55 +00:00
|
|
|
#if 0
|
|
|
|
// Display start and end positions:
|
|
|
|
msg.Printf( wxT( "%d %d" ), m_Start.x, m_Start.y );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( wxT( "Start pos" ), msg, BLUE ) );
|
2011-09-22 19:16:55 +00:00
|
|
|
msg.Printf( wxT( "%d %d" ), m_End.x, m_End.y );
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( wxT( "End pos" ), msg, BLUE ) );
|
2008-12-04 04:28:11 +00:00
|
|
|
#endif
|
|
|
|
|
2011-09-22 19:16:55 +00:00
|
|
|
#endif // defined(DEBUG)
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
/* Display the State member */
|
2007-08-20 19:33:15 +00:00
|
|
|
msg = wxT( ". . " );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( GetState( TRACK_LOCKED ) )
|
2007-08-20 19:33:15 +00:00
|
|
|
msg[0] = 'F';
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( GetState( TRACK_AR ) )
|
2007-08-20 19:33:15 +00:00
|
|
|
msg[2] = 'A';
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Status" ), msg, MAGENTA ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2007-10-19 06:31:17 +00:00
|
|
|
/* Display layer or layer pair) */
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_VIA_T )
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
|
|
|
SEGVIA* Via = (SEGVIA*) this;
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM 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 );
|
2013-04-08 07:13:26 +00:00
|
|
|
msg = board->GetLayerName( top_layer ) + wxT( "/" )
|
2013-04-07 11:55:18 +00:00
|
|
|
+ board->GetLayerName( bottom_layer );
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
else
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2008-02-19 00:30:10 +00:00
|
|
|
msg = board->GetLayerName( m_Layer );
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Layer" ), msg, BROWN ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
// Display width
|
2013-01-12 17:32:24 +00:00
|
|
|
msg = ::CoordinateToString( (unsigned) m_Width );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_VIA_T ) // Display Diam and Drill values
|
2007-08-20 19:33:15 +00:00
|
|
|
{
|
2009-05-21 12:45:21 +00:00
|
|
|
// Display diameter value:
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Diam" ), msg, DARKCYAN ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2009-05-21 12:45:21 +00:00
|
|
|
// Display drill value
|
2008-01-12 20:31:56 +00:00
|
|
|
int drill_value = GetDrillValue();
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
msg = ::CoordinateToString( (unsigned) drill_value );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
wxString title = _( "Drill" );
|
2009-10-10 17:27:53 +00:00
|
|
|
title += wxT( " " );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2009-05-21 12:45:21 +00:00
|
|
|
if( m_Drill >= 0 )
|
|
|
|
title += _( "(Specific)" );
|
|
|
|
else
|
|
|
|
title += _( "(Default)" );
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( title, msg, RED ) );
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
else
|
2009-10-10 17:27:53 +00:00
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Width" ), msg, DARKCYAN ) );
|
2009-10-10 17:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Display segment length
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() != PCB_VIA_T ) // Display Diam and Drill values
|
2009-10-10 17:27:53 +00:00
|
|
|
{
|
2013-01-12 17:32:24 +00:00
|
|
|
msg = ::LengthDoubleToString( GetLength() );
|
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Segment Length" ), msg, DARKCYAN ) );
|
2009-10-10 17:27:53 +00:00
|
|
|
}
|
2007-08-20 19:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool TRACK::HitTest( const wxPoint& aPosition )
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2012-12-27 16:42:41 +00:00
|
|
|
int max_dist = m_Width >> 1;
|
2008-03-05 22:39:33 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_VIA_T )
|
2008-03-05 22:39:33 +00:00
|
|
|
{
|
2012-12-27 16:42:41 +00:00
|
|
|
// rel_pos is aPosition relative to m_Start (or the center of the via)
|
|
|
|
wxPoint rel_pos = aPosition - m_Start;
|
|
|
|
double dist = (double) rel_pos.x * rel_pos.x + (double) rel_pos.y * rel_pos.y;
|
|
|
|
return dist <= (double) max_dist * max_dist;
|
2008-03-05 22:39:33 +00:00
|
|
|
}
|
|
|
|
|
2012-12-27 16:42:41 +00:00
|
|
|
return TestSegmentHit( aPosition, m_Start, m_End, max_dist );
|
2007-10-19 06:31:17 +00:00
|
|
|
}
|
2007-08-09 01:41:30 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool TRACK::HitTest( const EDA_RECT& aRect ) const
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
if( aRect.Contains( m_Start ) )
|
2008-02-09 08:34:45 +00:00
|
|
|
return true;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
if( aRect.Contains( m_End ) )
|
2008-02-09 08:34:45 +00:00
|
|
|
return true;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-02-09 08:34:45 +00:00
|
|
|
return false;
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
|
|
|
|
2007-10-17 14:35:59 +00:00
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
TRACK* TRACK::GetVia( const wxPoint& aPosition, LAYER_NUM aLayer)
|
2011-09-14 20:04:58 +00:00
|
|
|
{
|
|
|
|
TRACK* track;
|
|
|
|
|
|
|
|
for( track = this; track; track = track->Next() )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( track->Type() != PCB_VIA_T )
|
2011-09-14 20:04:58 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !track->HitTest( aPosition ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( track->GetState( BUSY | IS_DELETED ) )
|
|
|
|
continue;
|
|
|
|
|
2013-04-06 12:28:02 +00:00
|
|
|
if( aLayer == UNDEFINED_LAYER )
|
2011-09-14 20:04:58 +00:00
|
|
|
break;
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
if( track->IsOnLayer( aLayer ) )
|
2011-09-14 20:04:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return track;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
TRACK* TRACK::GetVia( TRACK* aEndTrace, const wxPoint& aPosition, LAYER_MSK aLayerMask )
|
2011-09-14 20:04:58 +00:00
|
|
|
{
|
|
|
|
TRACK* trace;
|
|
|
|
|
|
|
|
for( trace = this; trace != NULL; trace = trace->Next() )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( trace->Type() == PCB_VIA_T )
|
2011-09-14 20:04:58 +00:00
|
|
|
{
|
|
|
|
if( aPosition == trace->m_Start )
|
|
|
|
{
|
|
|
|
if( trace->GetState( BUSY | IS_DELETED ) == 0 )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( aLayerMask & trace->GetLayerMask() )
|
2011-09-14 20:04:58 +00:00
|
|
|
return trace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( trace == aEndTrace )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-16 14:13:02 +00:00
|
|
|
TRACK* TRACK::GetTrace( TRACK* aStartTrace, TRACK* aEndTrace, int aEndPoint )
|
|
|
|
{
|
|
|
|
const int NEIGHTBOUR_COUNT_MAX = 50;
|
|
|
|
|
|
|
|
TRACK* previousSegment;
|
|
|
|
TRACK* nextSegment;
|
|
|
|
int Reflayer;
|
|
|
|
wxPoint position;
|
|
|
|
int ii;
|
|
|
|
int max_dist;
|
|
|
|
|
2012-07-25 18:46:25 +00:00
|
|
|
if( aEndPoint == FLG_START )
|
2011-09-16 14:13:02 +00:00
|
|
|
position = m_Start;
|
|
|
|
else
|
|
|
|
position = m_End;
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
Reflayer = GetLayerMask();
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
previousSegment = nextSegment = this;
|
|
|
|
|
2011-09-22 19:16:55 +00:00
|
|
|
// Local search:
|
2011-09-16 14:13:02 +00:00
|
|
|
for( ii = 0; ii < NEIGHTBOUR_COUNT_MAX; ii++ )
|
|
|
|
{
|
|
|
|
if( (nextSegment == NULL) && (previousSegment == NULL) )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if( nextSegment )
|
|
|
|
{
|
|
|
|
if( nextSegment->GetState( BUSY | IS_DELETED ) )
|
|
|
|
goto suite;
|
|
|
|
|
|
|
|
if( nextSegment == this )
|
|
|
|
goto suite;
|
|
|
|
|
|
|
|
/* max_dist is the max distance between 2 track ends which
|
|
|
|
* ensure a copper continuity */
|
|
|
|
max_dist = ( nextSegment->m_Width + this->m_Width ) / 2;
|
|
|
|
|
|
|
|
if( IsNear( position, nextSegment->m_Start, max_dist ) )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( Reflayer & nextSegment->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return nextSegment;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( IsNear( position, nextSegment->m_End, max_dist ) )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( Reflayer & nextSegment->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return nextSegment;
|
|
|
|
}
|
|
|
|
suite:
|
|
|
|
if( nextSegment == aEndTrace )
|
|
|
|
nextSegment = NULL;
|
|
|
|
else
|
|
|
|
nextSegment = nextSegment->Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( previousSegment )
|
|
|
|
{
|
|
|
|
if( previousSegment->GetState( BUSY | IS_DELETED ) )
|
|
|
|
goto suite1;
|
|
|
|
|
|
|
|
if( previousSegment == this )
|
|
|
|
goto suite1;
|
|
|
|
|
|
|
|
max_dist = ( previousSegment->m_Width + m_Width ) / 2;
|
|
|
|
|
|
|
|
if( IsNear( position, previousSegment->m_Start, max_dist ) )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( Reflayer & previousSegment->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return previousSegment;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( IsNear( position, previousSegment->m_End, max_dist ) )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( Reflayer & previousSegment->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return previousSegment;
|
|
|
|
}
|
|
|
|
suite1:
|
|
|
|
if( previousSegment == aStartTrace )
|
|
|
|
previousSegment = NULL;
|
2011-10-01 19:24:27 +00:00
|
|
|
else if( previousSegment->Type() != PCB_T )
|
2011-09-16 14:13:02 +00:00
|
|
|
previousSegment = previousSegment->Back();
|
|
|
|
else
|
|
|
|
previousSegment = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
// General search
|
2011-09-16 14:13:02 +00:00
|
|
|
for( nextSegment = aStartTrace; nextSegment != NULL; nextSegment = nextSegment->Next() )
|
|
|
|
{
|
|
|
|
if( nextSegment->GetState( IS_DELETED | BUSY ) )
|
|
|
|
{
|
|
|
|
if( nextSegment == aEndTrace )
|
|
|
|
break;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nextSegment == this )
|
|
|
|
{
|
|
|
|
if( nextSegment == aEndTrace )
|
|
|
|
break;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_dist = ( nextSegment->m_Width + m_Width ) / 2;
|
|
|
|
|
|
|
|
if( IsNear( position, nextSegment->m_Start, max_dist ) )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( Reflayer & nextSegment->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return nextSegment;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( IsNear( position, nextSegment->m_End, max_dist ) )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
if( Reflayer & nextSegment->GetLayerMask() )
|
2011-09-16 14:13:02 +00:00
|
|
|
return nextSegment;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nextSegment == aEndTrace )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int TRACK::GetEndSegments( int aCount, TRACK** aStartTrace, TRACK** aEndTrace )
|
|
|
|
{
|
|
|
|
TRACK* Track, * via, * segm, * TrackListEnd;
|
2013-03-30 17:24:04 +00:00
|
|
|
int NbEnds, ii, ok = 0;
|
|
|
|
LAYER_MSK layerMask;
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( aCount <= 1 )
|
|
|
|
{
|
|
|
|
*aStartTrace = *aEndTrace = this;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculation of the limit analysis. */
|
|
|
|
*aStartTrace = *aEndTrace = NULL;
|
|
|
|
TrackListEnd = Track = this;
|
|
|
|
ii = 0;
|
|
|
|
|
|
|
|
for( ; ( Track != NULL ) && ( ii < aCount ); ii++, Track = Track->Next() )
|
|
|
|
{
|
|
|
|
TrackListEnd = Track;
|
|
|
|
Track->m_Param = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the extremes. */
|
|
|
|
NbEnds = 0;
|
|
|
|
Track = this;
|
|
|
|
ii = 0;
|
|
|
|
|
|
|
|
for( ; ( Track != NULL ) && ( ii < aCount ); ii++, Track = Track->Next() )
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Track->Type() == PCB_VIA_T )
|
2011-09-16 14:13:02 +00:00
|
|
|
continue;
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
layerMask = Track->GetLayerMask();
|
2011-09-16 14:13:02 +00:00
|
|
|
via = GetVia( TrackListEnd, Track->m_Start, layerMask );
|
|
|
|
|
|
|
|
if( via )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
layerMask |= via->GetLayerMask();
|
2013-03-28 19:12:46 +00:00
|
|
|
via->SetState( BUSY, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BUSY, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
segm = ::GetTrace( this, TrackListEnd, Track->m_Start, layerMask );
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BUSY, false );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( via )
|
2013-03-28 19:12:46 +00:00
|
|
|
via->SetState( BUSY, false );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( segm == NULL )
|
|
|
|
{
|
|
|
|
switch( NbEnds )
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
*aStartTrace = Track; NbEnds++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
int BeginPad, EndPad;
|
|
|
|
*aEndTrace = Track;
|
|
|
|
|
|
|
|
/* Swap ox, oy with fx, fy */
|
|
|
|
BeginPad = Track->GetState( BEGIN_ONPAD );
|
|
|
|
EndPad = Track->GetState( END_ONPAD );
|
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BEGIN_ONPAD | END_ONPAD, false );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( BeginPad )
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( END_ONPAD, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( EndPad )
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BEGIN_ONPAD, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
EXCHG( Track->m_Start, Track->m_End );
|
|
|
|
EXCHG( Track->start, Track->end );
|
|
|
|
ok = 1;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 17:24:04 +00:00
|
|
|
layerMask = Track->GetLayerMask();
|
2011-09-16 14:13:02 +00:00
|
|
|
via = GetVia( TrackListEnd, Track->m_End, layerMask );
|
|
|
|
|
|
|
|
if( via )
|
|
|
|
{
|
2013-03-30 17:24:04 +00:00
|
|
|
layerMask |= via->GetLayerMask();
|
2013-03-28 19:12:46 +00:00
|
|
|
via->SetState( BUSY, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BUSY, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
segm = ::GetTrace( this, TrackListEnd, Track->m_End, layerMask );
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BUSY, false );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( via )
|
2013-03-28 19:12:46 +00:00
|
|
|
via->SetState( BUSY, false );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( segm == NULL )
|
|
|
|
{
|
|
|
|
switch( NbEnds )
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
int BeginPad, EndPad;
|
|
|
|
*aStartTrace = Track;
|
|
|
|
NbEnds++;
|
|
|
|
|
|
|
|
/* Swap ox, oy with fx, fy */
|
|
|
|
BeginPad = Track->GetState( BEGIN_ONPAD );
|
|
|
|
EndPad = Track->GetState( END_ONPAD );
|
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BEGIN_ONPAD | END_ONPAD, false );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( BeginPad )
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( END_ONPAD, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
if( EndPad )
|
2013-03-28 19:12:46 +00:00
|
|
|
Track->SetState( BEGIN_ONPAD, true );
|
2011-09-16 14:13:02 +00:00
|
|
|
|
|
|
|
EXCHG( Track->m_Start, Track->m_End );
|
|
|
|
EXCHG( Track->start, Track->end );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
*aEndTrace = Track;
|
|
|
|
ok = 1;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString TRACK::GetSelectMenuText() const
|
|
|
|
{
|
|
|
|
wxString text;
|
2013-04-08 07:13:26 +00:00
|
|
|
wxString netname;
|
2011-07-14 15:42:44 +00:00
|
|
|
NETINFO_ITEM* net;
|
|
|
|
BOARD* board = GetBoard();
|
|
|
|
|
|
|
|
// deleting tracks requires all the information we can get to
|
|
|
|
// disambiguate all the choices under the cursor!
|
|
|
|
if( board )
|
|
|
|
{
|
|
|
|
net = board->FindNet( GetNet() );
|
|
|
|
|
|
|
|
if( net )
|
2013-04-08 07:13:26 +00:00
|
|
|
netname = net->GetNetname();
|
|
|
|
else
|
|
|
|
netname = _("Not found");
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
wxFAIL_MSG( wxT( "TRACK::GetSelectMenuText: BOARD is NULL" ) );
|
2013-04-08 07:13:26 +00:00
|
|
|
netname = wxT( "???" );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 07:13:26 +00:00
|
|
|
text.Printf( _("Track %s, net [%s] (%d) on layer %s, length: %s" ),
|
|
|
|
GetChars( ShowWidth() ), GetChars( netname ),
|
2013-04-09 02:31:36 +00:00
|
|
|
GetNet(), GetChars( GetLayerName() ),
|
2013-04-08 07:13:26 +00:00
|
|
|
GetChars( ::LengthDoubleToString( GetLength() ) ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 12:45:21 +00:00
|
|
|
#if defined(DEBUG)
|
2007-10-01 04:14:29 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
void TRACK::Show( int nestLevel, std::ostream& os ) const
|
2007-08-09 01:41:30 +00:00
|
|
|
{
|
|
|
|
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 << '"' <<
|
2008-12-04 04:28:11 +00:00
|
|
|
" addr=\"" << std::hex << this << std::dec << '"' <<
|
2007-10-19 06:31:17 +00:00
|
|
|
" layer=\"" << m_Layer << '"' <<
|
|
|
|
" width=\"" << m_Width << '"' <<
|
2008-12-04 04:28:11 +00:00
|
|
|
" flags=\"" << m_Flags << '"' <<
|
2013-03-28 19:12:46 +00:00
|
|
|
" status=\"" << GetStatus( ) << '"' <<
|
2007-10-19 06:31:17 +00:00
|
|
|
|
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
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
void SEGVIA::Show( int nestLevel, std::ostream& os ) const
|
2007-10-01 04:14:29 +00:00
|
|
|
{
|
|
|
|
const char* cp;
|
2007-10-19 06:31:17 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
switch( GetShape() )
|
2007-10-01 04:14:29 +00:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2013-03-31 13:27:46 +00:00
|
|
|
LAYER_NUM topLayer;
|
|
|
|
LAYER_NUM botLayer;
|
2008-12-14 19:45:05 +00:00
|
|
|
BOARD* board = (BOARD*) m_Parent;
|
2008-02-19 00:30:10 +00:00
|
|
|
|
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 )
|
2013-04-07 11:55:18 +00:00
|
|
|
os << " layers=\"" << board->GetLayerName( topLayer ).mb_str() << ","
|
|
|
|
<< board->GetLayerName( botLayer ).mb_str() << '"';
|
2011-09-07 19:41:04 +00:00
|
|
|
|
|
|
|
os << " width=\"" << m_Width << '"'
|
|
|
|
<< " drill=\"" << GetDrillValue() << '"'
|
|
|
|
<< " netcode=\"" << GetNet() << "\">"
|
|
|
|
<< "<pos" << m_Start << "/>";
|
2007-10-19 06:31:17 +00:00
|
|
|
|
|
|
|
os << "</" << GetClass().Lower().mb_str() << ">\n";
|
2007-10-01 04:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
wxString TRACK::ShowState( int stateBits )
|
|
|
|
{
|
|
|
|
wxString ret;
|
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & IS_LINKED )
|
|
|
|
ret << wxT( " | IS_LINKED" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & TRACK_AR )
|
|
|
|
ret << wxT( " | TRACK_AR" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & TRACK_LOCKED )
|
|
|
|
ret << wxT( " | TRACK_LOCKED" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & IN_EDIT )
|
|
|
|
ret << wxT( " | IN_EDIT" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & IS_DRAGGED )
|
|
|
|
ret << wxT( " | IS_DRAGGED" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & DO_NOT_DRAW )
|
|
|
|
ret << wxT( " | DO_NOT_DRAW" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-02-13 17:53:48 +00:00
|
|
|
if( stateBits & IS_DELETED )
|
|
|
|
ret << wxT( " | IS_DELETED" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
if( stateBits & BUSY )
|
2008-12-14 19:45:05 +00:00
|
|
|
ret << wxT( " | BUSY" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
if( stateBits & END_ONPAD )
|
|
|
|
ret << wxT( " | END_ONPAD" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
if( stateBits & BEGIN_ONPAD )
|
|
|
|
ret << wxT( " | BEGIN_ONPAD" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
if( stateBits & FLAG0 )
|
|
|
|
ret << wxT( " | FLAG0" );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
if( stateBits & FLAG1 )
|
2008-12-14 19:45:05 +00:00
|
|
|
ret << wxT( " | FLAG1" );
|
2008-12-04 04:28:11 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-08-09 01:41:30 +00:00
|
|
|
#endif
|