2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_drawsegment.cpp
|
|
|
|
* @brief Class and functions to handle a graphic segments.
|
|
|
|
*/
|
2008-01-16 18:48:04 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "macros.h"
|
2008-01-16 18:48:04 +00:00
|
|
|
#include "wxstruct.h"
|
|
|
|
#include "gr_basic.h"
|
2009-06-25 20:45:27 +00:00
|
|
|
#include "bezier_curves.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "kicad_string.h"
|
2010-01-29 20:36:12 +00:00
|
|
|
#include "colors_selection.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
#include "trigo.h"
|
|
|
|
#include "richio.h"
|
|
|
|
#include "pcbcommon.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2008-01-16 18:48:04 +00:00
|
|
|
#include "pcbnew.h"
|
2009-08-01 19:26:05 +00:00
|
|
|
#include "protos.h"
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
#include "class_board.h"
|
|
|
|
#include "class_module.h"
|
|
|
|
#include "class_drawsegment.h"
|
|
|
|
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2008-12-04 04:28:11 +00:00
|
|
|
DRAWSEGMENT::DRAWSEGMENT( BOARD_ITEM* aParent, KICAD_T idtype ) :
|
|
|
|
BOARD_ITEM( aParent, idtype )
|
2008-01-16 18:48:04 +00:00
|
|
|
{
|
2011-08-08 23:50:55 +00:00
|
|
|
m_Width = m_Flags = m_Type = m_Angle = 0;
|
|
|
|
m_Shape = S_SEGMENT;
|
2008-01-16 18:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
DRAWSEGMENT::~DRAWSEGMENT()
|
2008-01-16 18:48:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
const DRAWSEGMENT& DRAWSEGMENT::operator = ( const DRAWSEGMENT& rhs )
|
|
|
|
{
|
|
|
|
// skip the linked list stuff, and parent
|
|
|
|
|
|
|
|
m_Type = rhs.m_Type;
|
|
|
|
m_Layer = rhs.m_Layer;
|
|
|
|
m_Width = rhs.m_Width;
|
|
|
|
m_Start = rhs.m_Start;
|
|
|
|
m_End = rhs.m_End;
|
|
|
|
m_Shape = rhs.m_Shape;
|
|
|
|
m_Angle = rhs.m_Angle;
|
|
|
|
m_TimeStamp = rhs.m_TimeStamp;
|
|
|
|
m_BezierC1 = rhs.m_BezierC1;
|
|
|
|
m_BezierC2 = rhs.m_BezierC1;
|
|
|
|
m_BezierPoints = rhs.m_BezierPoints;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-16 18:48:04 +00:00
|
|
|
void DRAWSEGMENT::Copy( DRAWSEGMENT* source )
|
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
if( source == NULL ) // who would do this?
|
2011-08-08 23:50:55 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
*this = *source; // operator = ()
|
2008-01-16 18:48:04 +00:00
|
|
|
}
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void DRAWSEGMENT::Rotate( const wxPoint& aRotCentre, double aAngle )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
RotatePoint( &m_Start, aRotCentre, aAngle );
|
|
|
|
RotatePoint( &m_End, aRotCentre, aAngle );
|
|
|
|
}
|
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
|
|
|
|
void DRAWSEGMENT::Flip( const wxPoint& aCentre )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
m_Start.y = aCentre.y - (m_Start.y - aCentre.y);
|
|
|
|
m_End.y = aCentre.y - (m_End.y - aCentre.y);
|
|
|
|
if( m_Shape == S_ARC )
|
|
|
|
{
|
|
|
|
NEGATE( m_Angle );
|
|
|
|
}
|
|
|
|
SetLayer( ChangeSideNumLayer( GetLayer() ) );
|
|
|
|
}
|
|
|
|
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
const wxPoint DRAWSEGMENT::GetArcEnd() const
|
|
|
|
{
|
|
|
|
wxPoint endPoint; // start of arc
|
|
|
|
|
|
|
|
switch( m_Shape )
|
|
|
|
{
|
|
|
|
case S_ARC:
|
|
|
|
// rotate the starting point of the arc, given by m_End, through the
|
|
|
|
// angle m_Angle to get the ending point of the arc.
|
|
|
|
// m_Start is the arc centre
|
|
|
|
endPoint = m_End; // m_End = start point of arc
|
|
|
|
RotatePoint( &endPoint, m_Start, -m_Angle );
|
|
|
|
}
|
|
|
|
|
|
|
|
return endPoint; // after rotation, the end of the arc.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* use GetArcStart() now
|
|
|
|
const wxPoint DRAWSEGMENT::GetStart() const
|
2008-05-05 19:46:54 +00:00
|
|
|
{
|
|
|
|
switch( m_Shape )
|
|
|
|
{
|
|
|
|
case S_ARC:
|
|
|
|
return m_End; // the start of the arc is held in field m_End, center point is in m_Start.
|
|
|
|
|
|
|
|
case S_SEGMENT:
|
|
|
|
default:
|
|
|
|
return m_Start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
const wxPoint DRAWSEGMENT::GetEnd() const
|
2008-05-05 19:46:54 +00:00
|
|
|
{
|
2011-02-27 19:54:01 +00:00
|
|
|
wxPoint endPoint; // start of arc
|
2009-01-29 14:26:20 +00:00
|
|
|
|
2008-05-05 19:46:54 +00:00
|
|
|
switch( m_Shape )
|
|
|
|
{
|
|
|
|
case S_ARC:
|
2009-01-29 14:26:20 +00:00
|
|
|
// rotate the starting point of the arc, given by m_End, through the
|
|
|
|
// angle m_Angle to get the ending point of the arc.
|
2011-02-27 19:54:01 +00:00
|
|
|
// m_Start is the arc centre
|
|
|
|
endPoint = m_End; // m_End = start point of arc
|
|
|
|
RotatePoint( &endPoint, m_Start, -m_Angle );
|
|
|
|
return endPoint; // after rotation, the end of the arc.
|
2008-05-05 19:46:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case S_SEGMENT:
|
|
|
|
default:
|
|
|
|
return m_End;
|
|
|
|
}
|
|
|
|
}
|
2011-12-14 04:29:25 +00:00
|
|
|
*/
|
2008-05-05 19:46:54 +00:00
|
|
|
|
|
|
|
|
2011-12-02 21:56:47 +00:00
|
|
|
void DRAWSEGMENT::SetAngle( double aAngle )
|
|
|
|
{
|
|
|
|
NORMALIZE_ANGLE_360( aAngle );
|
|
|
|
|
|
|
|
m_Angle = (int) aAngle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
MODULE* DRAWSEGMENT::GetParentModule() const
|
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( m_Parent->Type() != PCB_MODULE_T )
|
2011-08-08 23:50:55 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return (MODULE*) m_Parent;
|
|
|
|
}
|
|
|
|
|
2008-05-05 19:46:54 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void DRAWSEGMENT::Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int draw_mode, const wxPoint& aOffset )
|
2008-04-01 06:07:00 +00:00
|
|
|
{
|
|
|
|
int ux0, uy0, dx, dy;
|
2011-09-07 19:41:04 +00:00
|
|
|
int l_trace;
|
2008-04-01 06:07:00 +00:00
|
|
|
int color, mode;
|
2011-09-07 19:41:04 +00:00
|
|
|
int radius;
|
2008-04-01 06:07:00 +00:00
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
BOARD * brd = GetBoard( );
|
2011-08-08 23:50:55 +00:00
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
if( brd->IsLayerVisible( GetLayer() ) == false )
|
2008-04-01 06:07:00 +00:00
|
|
|
return;
|
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
color = brd->GetLayerColor( GetLayer() );
|
2009-10-10 01:25:53 +00:00
|
|
|
|
2008-04-01 06:07:00 +00:00
|
|
|
GRSetDrawMode( DC, draw_mode );
|
2011-09-07 19:41:04 +00:00
|
|
|
l_trace = m_Width >> 1; /* half trace width */
|
2008-04-01 06:07:00 +00:00
|
|
|
|
2010-10-25 07:43:50 +00:00
|
|
|
// Line start point or Circle and Arc center
|
2010-11-11 21:46:55 +00:00
|
|
|
ux0 = m_Start.x + aOffset.x;
|
|
|
|
uy0 = m_Start.y + aOffset.y;
|
2008-04-01 06:07:00 +00:00
|
|
|
|
2010-10-25 07:43:50 +00:00
|
|
|
// Line end point or circle and arc start point
|
2010-11-11 21:46:55 +00:00
|
|
|
dx = m_End.x + aOffset.x;
|
|
|
|
dy = m_End.y + aOffset.y;
|
2008-04-01 06:07:00 +00:00
|
|
|
|
|
|
|
mode = DisplayOpt.DisplayDrawItems;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-04-01 06:07:00 +00:00
|
|
|
if( m_Flags & FORCE_SKETCH )
|
|
|
|
mode = SKETCH;
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2011-09-24 18:33:28 +00:00
|
|
|
if( l_trace < DC->DeviceToLogicalXRel( MIN_DRAW_WIDTH ) )
|
2008-04-01 06:07:00 +00:00
|
|
|
mode = FILAIRE;
|
|
|
|
|
|
|
|
switch( m_Shape )
|
|
|
|
{
|
|
|
|
case S_CIRCLE:
|
2011-09-07 19:41:04 +00:00
|
|
|
radius = (int) hypot( (double) (dx - ux0), (double) (dy - uy0) );
|
|
|
|
|
2008-04-01 06:07:00 +00:00
|
|
|
if( mode == FILAIRE )
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
GRCircle( &panel->m_ClipBox, DC, ux0, uy0, radius, color );
|
2008-04-01 06:07:00 +00:00
|
|
|
}
|
|
|
|
else if( mode == SKETCH )
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
GRCircle( &panel->m_ClipBox, DC, ux0, uy0, radius - l_trace, color );
|
|
|
|
GRCircle( &panel->m_ClipBox, DC, ux0, uy0, radius + l_trace, color );
|
2008-04-01 06:07:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
GRCircle( &panel->m_ClipBox, DC, ux0, uy0, radius, m_Width, color );
|
2008-04-01 06:07:00 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-04-01 06:07:00 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case S_ARC:
|
2009-01-29 14:26:20 +00:00
|
|
|
int StAngle, EndAngle;
|
2011-09-07 19:41:04 +00:00
|
|
|
radius = (int) hypot( (double) (dx - ux0), (double) (dy - uy0) );
|
2009-01-29 14:26:20 +00:00
|
|
|
StAngle = (int) ArcTangente( dy - uy0, dx - ux0 );
|
|
|
|
EndAngle = StAngle + m_Angle;
|
2008-04-01 06:07:00 +00:00
|
|
|
|
2011-09-23 22:40:36 +00:00
|
|
|
if( !panel->m_PrintIsMirrored )
|
2009-01-29 14:26:20 +00:00
|
|
|
{
|
|
|
|
if( StAngle > EndAngle )
|
|
|
|
EXCHG( StAngle, EndAngle );
|
|
|
|
}
|
2009-11-12 15:43:38 +00:00
|
|
|
else // Mirrored mode: arc orientation is reversed
|
2009-01-29 14:26:20 +00:00
|
|
|
{
|
|
|
|
if( StAngle < EndAngle )
|
|
|
|
EXCHG( StAngle, EndAngle );
|
|
|
|
}
|
2008-11-02 19:52:57 +00:00
|
|
|
|
2008-04-01 06:07:00 +00:00
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
if( mode == FILAIRE )
|
|
|
|
GRArc( &panel->m_ClipBox, DC, ux0, uy0, StAngle, EndAngle,
|
2011-09-07 19:41:04 +00:00
|
|
|
radius, color );
|
2008-04-01 06:07:00 +00:00
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
else if( mode == SKETCH )
|
|
|
|
{
|
|
|
|
GRArc( &panel->m_ClipBox, DC, ux0, uy0, StAngle, EndAngle,
|
2011-09-07 19:41:04 +00:00
|
|
|
radius - l_trace, color );
|
2009-01-29 14:26:20 +00:00
|
|
|
GRArc( &panel->m_ClipBox, DC, ux0, uy0, StAngle, EndAngle,
|
2011-09-07 19:41:04 +00:00
|
|
|
radius + l_trace, color );
|
2009-01-29 14:26:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GRArc( &panel->m_ClipBox, DC, ux0, uy0, StAngle, EndAngle,
|
2011-09-07 19:41:04 +00:00
|
|
|
radius, m_Width, color );
|
2008-04-01 06:07:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2009-06-25 20:45:27 +00:00
|
|
|
case S_CURVE:
|
|
|
|
m_BezierPoints = Bezier2Poly(m_Start,m_BezierC1, m_BezierC2, m_End);
|
|
|
|
|
|
|
|
for (unsigned int i=1; i < m_BezierPoints.size(); i++) {
|
|
|
|
if( mode == FILAIRE )
|
|
|
|
GRLine( &panel->m_ClipBox, DC,
|
2009-11-12 15:43:38 +00:00
|
|
|
m_BezierPoints[i].x, m_BezierPoints[i].y,
|
|
|
|
m_BezierPoints[i-1].x, m_BezierPoints[i-1].y, 0,
|
|
|
|
color );
|
2009-06-25 20:45:27 +00:00
|
|
|
else if( mode == SKETCH )
|
|
|
|
{
|
|
|
|
GRCSegm( &panel->m_ClipBox, DC,
|
2009-11-12 15:43:38 +00:00
|
|
|
m_BezierPoints[i].x, m_BezierPoints[i].y,
|
|
|
|
m_BezierPoints[i-1].x, m_BezierPoints[i-1].y,
|
2009-06-25 20:45:27 +00:00
|
|
|
m_Width, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GRFillCSegm( &panel->m_ClipBox, DC,
|
2011-09-07 19:41:04 +00:00
|
|
|
m_BezierPoints[i].x, m_BezierPoints[i].y,
|
|
|
|
m_BezierPoints[i-1].x, m_BezierPoints[i-1].y,
|
2009-06-25 20:45:27 +00:00
|
|
|
m_Width, color );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-04-01 06:07:00 +00:00
|
|
|
default:
|
|
|
|
if( mode == FILAIRE )
|
2011-09-07 19:41:04 +00:00
|
|
|
{
|
2008-04-01 06:07:00 +00:00
|
|
|
GRLine( &panel->m_ClipBox, DC, ux0, uy0, dx, dy, 0, color );
|
2011-09-07 19:41:04 +00:00
|
|
|
}
|
2008-04-01 06:07:00 +00:00
|
|
|
else if( mode == SKETCH )
|
|
|
|
{
|
|
|
|
GRCSegm( &panel->m_ClipBox, DC, ux0, uy0, dx, dy,
|
|
|
|
m_Width, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GRFillCSegm( &panel->m_ClipBox, DC, ux0, uy0, dx, dy,
|
|
|
|
m_Width, color );
|
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-04-01 06:07:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-16 18:48:04 +00:00
|
|
|
// see pcbstruct.h
|
2011-01-21 19:30:59 +00:00
|
|
|
void DRAWSEGMENT::DisplayInfo( EDA_DRAW_FRAME* frame )
|
2008-01-16 18:48:04 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2008-05-05 19:46:54 +00:00
|
|
|
wxString coords;
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
BOARD* board = (BOARD*) m_Parent;
|
|
|
|
wxASSERT( board );
|
|
|
|
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->ClearMsgPanel();
|
2008-01-16 18:48:04 +00:00
|
|
|
|
|
|
|
msg = wxT( "DRAWING" );
|
|
|
|
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( _( "Type" ), msg, DARKCYAN );
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2008-05-05 19:46:54 +00:00
|
|
|
wxString shape = _( "Shape" );
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2009-06-25 20:45:27 +00:00
|
|
|
switch( m_Shape ) {
|
|
|
|
case S_CIRCLE:
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( shape, _( "Circle" ), RED );
|
2009-06-25 20:45:27 +00:00
|
|
|
break;
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2009-06-25 20:45:27 +00:00
|
|
|
case S_ARC:
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( shape, _( "Arc" ), RED );
|
2008-05-05 19:46:54 +00:00
|
|
|
|
2010-05-05 09:21:28 +00:00
|
|
|
msg.Printf( wxT( "%.1f" ), (double)m_Angle/10 );
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( _("Angle"), msg, RED );
|
2009-06-25 20:45:27 +00:00
|
|
|
break;
|
|
|
|
case S_CURVE:
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( shape, _( "Curve" ), RED );
|
2009-06-25 20:45:27 +00:00
|
|
|
break;
|
2008-05-05 19:46:54 +00:00
|
|
|
|
2009-06-25 20:45:27 +00:00
|
|
|
default:
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( shape, _( "Segment" ), RED );
|
2009-06-25 20:45:27 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2008-05-05 19:46:54 +00:00
|
|
|
wxString start;
|
|
|
|
start << GetStart();
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2008-05-05 19:46:54 +00:00
|
|
|
wxString end;
|
|
|
|
end << GetEnd();
|
|
|
|
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( start, end, DARKGREEN );
|
2008-05-05 19:46:54 +00:00
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
frame->AppendMsgPanel( _( "Layer" ), board->GetLayerName( m_Layer ), DARKBROWN );
|
2008-01-16 18:48:04 +00:00
|
|
|
|
|
|
|
valeur_param( (unsigned) m_Width, msg );
|
2009-10-16 17:18:23 +00:00
|
|
|
frame->AppendMsgPanel( _( "Width" ), msg, DARKCYAN );
|
2008-01-16 18:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
EDA_RECT DRAWSEGMENT::GetBoundingBox() const
|
2008-01-16 18:48:04 +00:00
|
|
|
{
|
2011-08-08 23:50:55 +00:00
|
|
|
EDA_RECT bbox;
|
|
|
|
|
|
|
|
bbox.SetOrigin( m_Start );
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
switch( m_Shape )
|
2011-02-27 19:54:01 +00:00
|
|
|
{
|
2011-08-08 23:50:55 +00:00
|
|
|
case S_SEGMENT:
|
|
|
|
bbox.SetEnd( m_End );
|
|
|
|
bbox.Inflate( (m_Width / 2) + 1 );
|
|
|
|
break;
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
case S_CIRCLE:
|
|
|
|
bbox.Inflate( GetRadius() + 1 );
|
|
|
|
break;
|
2009-06-25 20:45:27 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
case S_ARC:
|
|
|
|
{
|
2011-09-23 22:40:36 +00:00
|
|
|
bbox.Merge( m_End );
|
|
|
|
wxPoint end = m_End;
|
|
|
|
RotatePoint( &end, m_Start, -m_Angle );
|
|
|
|
bbox.Merge( end );
|
2011-08-08 23:50:55 +00:00
|
|
|
}
|
|
|
|
break;
|
2009-06-25 20:45:27 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
case S_POLYGON:
|
|
|
|
{
|
|
|
|
wxPoint p_end;
|
|
|
|
MODULE* module = GetParentModule();
|
2009-06-25 20:45:27 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
for( unsigned ii = 0; ii < m_PolyPoints.size(); ii++ )
|
|
|
|
{
|
|
|
|
wxPoint pt = m_PolyPoints[ii];
|
|
|
|
|
|
|
|
if( module ) // Transform, if we belong to a module
|
|
|
|
{
|
2011-11-29 17:25:30 +00:00
|
|
|
RotatePoint( &pt, module->GetOrientation() );
|
2011-08-08 23:50:55 +00:00
|
|
|
pt += module->m_Pos;
|
2008-01-16 18:48:04 +00:00
|
|
|
}
|
2011-08-08 23:50:55 +00:00
|
|
|
|
|
|
|
if( ii == 0 )
|
|
|
|
p_end = pt;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
bbox.m_Pos.x = MIN( bbox.m_Pos.x, pt.x );
|
|
|
|
bbox.m_Pos.y = MIN( bbox.m_Pos.y, pt.y );
|
|
|
|
p_end.x = MAX( p_end.x, pt.x );
|
|
|
|
p_end.y = MAX( p_end.y, pt.y );
|
2011-02-27 19:54:01 +00:00
|
|
|
}
|
2008-01-16 18:48:04 +00:00
|
|
|
|
2011-09-23 22:40:36 +00:00
|
|
|
bbox.SetEnd( p_end );
|
2011-08-08 23:50:55 +00:00
|
|
|
bbox.Inflate( 1 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bbox.Inflate( (m_Width+1) / 2 );
|
|
|
|
return bbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool DRAWSEGMENT::HitTest( const wxPoint& aRefPos )
|
|
|
|
{
|
|
|
|
/* Calculate coordinates to test relative to segment origin. */
|
|
|
|
wxPoint relPos = aRefPos - m_Start;
|
|
|
|
|
|
|
|
switch( m_Shape )
|
|
|
|
{
|
|
|
|
case S_CIRCLE:
|
|
|
|
case S_ARC:
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
int radius = GetRadius();
|
2011-08-08 23:50:55 +00:00
|
|
|
int dist = (int) hypot( (double) relPos.x, (double) relPos.y );
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
if( abs( radius - dist ) <= ( m_Width / 2 ) )
|
2011-08-08 23:50:55 +00:00
|
|
|
{
|
|
|
|
if( m_Shape == S_CIRCLE )
|
|
|
|
return true;
|
|
|
|
|
2011-09-23 22:40:36 +00:00
|
|
|
wxPoint startVec = wxPoint( m_End.x - m_Start.x, m_End.y - m_Start.y );
|
|
|
|
wxPoint endVec = m_End - m_Start;
|
|
|
|
RotatePoint( &endVec, -m_Angle );
|
2011-08-08 23:50:55 +00:00
|
|
|
|
2011-09-23 22:40:36 +00:00
|
|
|
// Check dot products
|
|
|
|
if( (long long)relPos.x*startVec.x + (long long)relPos.y*startVec.y < 0 )
|
|
|
|
return false;
|
2011-02-27 19:54:01 +00:00
|
|
|
|
2011-09-23 22:40:36 +00:00
|
|
|
if( (long long)relPos.x*endVec.x + (long long)relPos.y*endVec.y < 0 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2011-08-08 23:50:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_CURVE:
|
|
|
|
for( unsigned int i= 1; i < m_BezierPoints.size(); i++)
|
|
|
|
{
|
2011-09-07 19:41:04 +00:00
|
|
|
if( TestSegmentHit( aRefPos,m_BezierPoints[i-1], m_BezierPoints[i-1], m_Width / 2 ) )
|
2008-01-16 18:48:04 +00:00
|
|
|
return true;
|
2011-08-08 23:50:55 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case S_SEGMENT:
|
|
|
|
if( TestSegmentHit( aRefPos, m_Start, m_End, m_Width / 2 ) )
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
wxASSERT( 0 );
|
|
|
|
break;
|
2008-01-16 18:48:04 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
bool DRAWSEGMENT::HitTest( EDA_RECT& refArea )
|
2008-01-16 18:48:04 +00:00
|
|
|
{
|
2011-08-08 23:50:55 +00:00
|
|
|
switch( m_Shape )
|
2011-02-27 19:54:01 +00:00
|
|
|
{
|
|
|
|
case S_CIRCLE:
|
|
|
|
{
|
|
|
|
int radius = GetRadius();
|
|
|
|
// Text if area intersects the circle:
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT area = refArea;
|
2011-08-08 23:50:55 +00:00
|
|
|
area.Inflate( radius );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
if( area.Contains( m_Start ) )
|
2011-02-27 19:54:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-08-08 23:50:55 +00:00
|
|
|
break;
|
2011-02-27 19:54:01 +00:00
|
|
|
|
|
|
|
case S_ARC:
|
|
|
|
case S_SEGMENT:
|
|
|
|
if( refArea.Contains( GetStart() ) )
|
|
|
|
return true;
|
|
|
|
if( refArea.Contains( GetEnd() ) )
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
2008-01-16 18:48:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-01-22 20:36:46 +00:00
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString DRAWSEGMENT::GetSelectMenuText() const
|
|
|
|
{
|
|
|
|
wxString text;
|
|
|
|
wxString temp;
|
|
|
|
|
2011-10-22 18:21:57 +00:00
|
|
|
text.Printf( _( "Pcb Graphic: %s length: %s on %s" ),
|
2011-12-01 22:50:41 +00:00
|
|
|
GetChars( ShowShape( (STROKE_T) m_Shape ) ),
|
2011-10-22 18:21:57 +00:00
|
|
|
GetChars( valeur_param( GetLength(), temp ) ),
|
|
|
|
GetChars( GetLayerName() ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-22 20:36:46 +00:00
|
|
|
#if defined(DEBUG)
|
2011-12-14 17:25:42 +00:00
|
|
|
void DRAWSEGMENT::Show( int nestLevel, std::ostream& os ) const
|
2008-01-22 20:36:46 +00:00
|
|
|
{
|
|
|
|
NestedSpace( nestLevel, os ) << '<' << GetClass().Lower().mb_str() <<
|
|
|
|
|
2008-05-05 19:46:54 +00:00
|
|
|
" shape=\"" << m_Shape << '"' <<
|
|
|
|
/*
|
2008-01-22 20:36:46 +00:00
|
|
|
" layer=\"" << GetLayer() << '"' <<
|
|
|
|
" width=\"" << m_Width << '"' <<
|
2008-05-05 19:46:54 +00:00
|
|
|
" angle=\"" << m_Angle << '"' << // Used only for Arcs: Arc angle in 1/10 deg
|
|
|
|
*/
|
|
|
|
'>' <<
|
2008-01-22 20:36:46 +00:00
|
|
|
"<start" << m_Start << "/>" <<
|
2008-05-05 19:46:54 +00:00
|
|
|
"<end" << m_End << "/>"
|
|
|
|
"<GetStart" << GetStart() << "/>" <<
|
|
|
|
"<GetEnd" << GetEnd() << "/>"
|
|
|
|
;
|
2008-01-22 20:36:46 +00:00
|
|
|
|
|
|
|
os << "</" << GetClass().Lower().mb_str() << ">\n";
|
|
|
|
}
|
|
|
|
#endif
|