2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-07-27 13:27:19 +00:00
|
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2011-10-17 20:01:27 +00:00
|
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
2016-07-27 13:27:19 +00:00
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 20:01:27 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file dcode.cpp
|
|
|
|
* @brief D_CODE class implementation
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <trigo.h>
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2014-06-27 17:07:42 +00:00
|
|
|
#include <gerbview_frame.h>
|
2018-01-29 12:26:58 +00:00
|
|
|
#include <gerber_file_image.h>
|
2016-05-25 09:45:55 +00:00
|
|
|
#include <convert_to_biu.h>
|
2017-09-17 22:43:20 +00:00
|
|
|
#include <convert_basic_shapes_to_polygon.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2016-05-25 09:45:55 +00:00
|
|
|
#define DCODE_DEFAULT_SIZE Millimeter2iu( 0.1 )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
/* Format Gerber: NOTES:
|
|
|
|
* Tools and D_CODES
|
|
|
|
* tool number (identification of shapes)
|
|
|
|
* 1 to 999
|
|
|
|
*
|
|
|
|
* D_CODES:
|
2010-09-29 19:00:35 +00:00
|
|
|
* D01 ... D9 = command codes:
|
|
|
|
* D01 = activating light (pen down) while moving
|
|
|
|
* D02 = light extinction (pen up) while moving
|
|
|
|
* D03 = Flash
|
|
|
|
* D04 to D09 = non used
|
2011-10-17 20:01:27 +00:00
|
|
|
* D10 ... D999 = Identification Tool (Shape id)
|
2010-09-28 14:42:05 +00:00
|
|
|
*
|
2010-09-29 19:00:35 +00:00
|
|
|
* For tools defining a shape):
|
2010-09-28 14:42:05 +00:00
|
|
|
* DCode min = D10
|
|
|
|
* DCode max = 999
|
2009-11-09 14:00:22 +00:00
|
|
|
*/
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
/***************/
|
|
|
|
/* Class DCODE */
|
|
|
|
/***************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
D_CODE::D_CODE( int num_dcode )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
m_Num_Dcode = num_dcode;
|
|
|
|
Clear_D_CODE_Data();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-09-13 11:55:46 +00:00
|
|
|
D_CODE::~D_CODE()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-09-13 11:55:46 +00:00
|
|
|
void D_CODE::Clear_D_CODE_Data()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2016-05-25 09:45:55 +00:00
|
|
|
m_Size.x = DCODE_DEFAULT_SIZE;
|
|
|
|
m_Size.y = DCODE_DEFAULT_SIZE;
|
2008-11-08 06:44:07 +00:00
|
|
|
m_Shape = APT_CIRCLE;
|
2008-04-17 16:25:29 +00:00
|
|
|
m_Drill.x = m_Drill.y = 0;
|
2010-09-28 19:34:16 +00:00
|
|
|
m_DrillShape = APT_DEF_NO_HOLE;
|
2012-01-22 17:20:22 +00:00
|
|
|
m_InUse = false;
|
|
|
|
m_Defined = false;
|
2010-09-28 19:34:16 +00:00
|
|
|
m_Macro = NULL;
|
2010-09-28 14:42:05 +00:00
|
|
|
m_Rotation = 0.0;
|
2010-09-28 19:34:16 +00:00
|
|
|
m_EdgesCount = 0;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.RemoveAllContours();
|
2008-11-09 02:57:42 +00:00
|
|
|
}
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
|
2008-11-09 02:57:42 +00:00
|
|
|
const wxChar* D_CODE::ShowApertureType( APERTURE_T aType )
|
|
|
|
{
|
|
|
|
const wxChar* ret;
|
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
2009-11-09 14:00:22 +00:00
|
|
|
case APT_CIRCLE:
|
|
|
|
ret = wxT( "Round" ); break;
|
|
|
|
|
|
|
|
case APT_RECT:
|
|
|
|
ret = wxT( "Rect" ); break;
|
|
|
|
|
|
|
|
case APT_OVAL:
|
|
|
|
ret = wxT( "Oval" ); break;
|
|
|
|
|
|
|
|
case APT_POLYGON:
|
|
|
|
ret = wxT( "Poly" ); break;
|
|
|
|
|
|
|
|
case APT_MACRO:
|
|
|
|
ret = wxT( "Macro" ); break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ret = wxT( "???" ); break;
|
2008-11-09 02:57:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2010-10-23 18:12:11 +00:00
|
|
|
int D_CODE::GetShapeDim( GERBER_DRAW_ITEM* aParent )
|
|
|
|
{
|
|
|
|
int dim = -1;
|
|
|
|
switch( m_Shape )
|
|
|
|
{
|
|
|
|
case APT_CIRCLE:
|
|
|
|
dim = m_Size.x;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case APT_RECT:
|
|
|
|
case APT_OVAL:
|
2012-09-22 11:19:37 +00:00
|
|
|
dim = std::min( m_Size.x, m_Size.y );
|
2010-10-23 18:12:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case APT_POLYGON:
|
2012-09-22 11:19:37 +00:00
|
|
|
dim = std::min( m_Size.x, m_Size.y );
|
2010-10-23 18:12:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case APT_MACRO:
|
|
|
|
if( m_Macro )
|
|
|
|
dim = m_Macro->GetShapeDim( aParent );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dim;
|
|
|
|
}
|
|
|
|
|
2010-10-01 19:11:30 +00:00
|
|
|
|
|
|
|
void D_CODE::DrawFlashedShape( GERBER_DRAW_ITEM* aParent,
|
2017-02-20 16:57:41 +00:00
|
|
|
EDA_RECT* aClipBox, wxDC* aDC, COLOR4D aColor,
|
2010-10-01 19:11:30 +00:00
|
|
|
wxPoint aShapePos, bool aFilledShape )
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
|
|
|
int radius;
|
|
|
|
|
|
|
|
switch( m_Shape )
|
|
|
|
{
|
2010-10-01 19:11:30 +00:00
|
|
|
case APT_MACRO:
|
2016-06-03 16:42:24 +00:00
|
|
|
GetMacro()->DrawApertureMacroShape( aParent, aClipBox, aDC, aColor,
|
2010-10-03 15:39:06 +00:00
|
|
|
aShapePos, aFilledShape);
|
2010-10-01 19:11:30 +00:00
|
|
|
break;
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
case APT_CIRCLE:
|
|
|
|
radius = m_Size.x >> 1;
|
|
|
|
if( !aFilledShape )
|
2011-10-17 20:01:27 +00:00
|
|
|
GRCircle( aClipBox, aDC, aParent->GetABPosition(aShapePos), radius, 0, aColor );
|
2010-09-28 14:42:05 +00:00
|
|
|
else
|
2010-09-28 19:34:16 +00:00
|
|
|
if( m_DrillShape == APT_DEF_NO_HOLE )
|
2011-10-17 20:01:27 +00:00
|
|
|
{
|
2010-10-10 17:57:54 +00:00
|
|
|
GRFilledCircle( aClipBox, aDC, aParent->GetABPosition(aShapePos),
|
|
|
|
radius, aColor );
|
2011-10-17 20:01:27 +00:00
|
|
|
}
|
2017-09-17 22:43:20 +00:00
|
|
|
else if( m_DrillShape == APT_DEF_ROUND_HOLE ) // round hole in shape
|
2008-04-17 16:25:29 +00:00
|
|
|
{
|
2010-09-28 14:42:05 +00:00
|
|
|
int width = (m_Size.x - m_Drill.x ) / 2;
|
2010-10-10 17:57:54 +00:00
|
|
|
GRCircle( aClipBox, aDC, aParent->GetABPosition(aShapePos),
|
|
|
|
radius - (width / 2), width, aColor );
|
2008-04-17 16:25:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
else // rectangular hole
|
2008-04-17 16:25:29 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
if( m_Polygon.OutlineCount() == 0 )
|
2010-09-28 14:42:05 +00:00
|
|
|
ConvertShapeToPolygon();
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
DrawFlashedPolygon( aParent, aClipBox, aDC, aColor, aFilledShape, aShapePos );
|
2008-04-17 16:25:29 +00:00
|
|
|
}
|
2010-09-28 14:42:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case APT_RECT:
|
|
|
|
{
|
|
|
|
wxPoint start;
|
2010-09-28 19:34:16 +00:00
|
|
|
start.x = aShapePos.x - m_Size.x / 2;
|
|
|
|
start.y = aShapePos.y - m_Size.y / 2;
|
2010-09-28 14:42:05 +00:00
|
|
|
wxPoint end = start + m_Size;
|
2010-10-10 17:57:54 +00:00
|
|
|
start = aParent->GetABPosition( start );
|
|
|
|
end = aParent->GetABPosition( end );
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
if( !aFilledShape )
|
|
|
|
{
|
2011-10-17 20:01:27 +00:00
|
|
|
GRRect( aClipBox, aDC, start.x, start.y, end.x, end.y, 0, aColor );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2010-09-28 19:34:16 +00:00
|
|
|
else if( m_DrillShape == APT_DEF_NO_HOLE )
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2011-10-17 20:01:27 +00:00
|
|
|
GRFilledRect( aClipBox, aDC, start.x, start.y, end.x, end.y, 0, aColor, aColor );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
if( m_Polygon.OutlineCount() == 0 )
|
2010-09-28 14:42:05 +00:00
|
|
|
ConvertShapeToPolygon();
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
DrawFlashedPolygon( aParent, aClipBox, aDC, aColor, aFilledShape, aShapePos );
|
2008-04-17 16:25:29 +00:00
|
|
|
}
|
|
|
|
}
|
2010-09-28 19:34:16 +00:00
|
|
|
break;
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
case APT_OVAL:
|
|
|
|
{
|
|
|
|
wxPoint start = aShapePos;
|
|
|
|
wxPoint end = aShapePos;
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
if( m_Size.x > m_Size.y ) // horizontal oval
|
|
|
|
{
|
|
|
|
int delta = (m_Size.x - m_Size.y) / 2;
|
|
|
|
start.x -= delta;
|
|
|
|
end.x += delta;
|
|
|
|
radius = m_Size.y;
|
|
|
|
}
|
|
|
|
else // horizontal oval
|
|
|
|
{
|
|
|
|
int delta = (m_Size.y - m_Size.x) / 2;
|
|
|
|
start.y -= delta;
|
|
|
|
end.y += delta;
|
|
|
|
radius = m_Size.x;
|
|
|
|
}
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
start = aParent->GetABPosition( start );
|
|
|
|
end = aParent->GetABPosition( end );
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
if( !aFilledShape )
|
|
|
|
{
|
2011-10-17 20:01:27 +00:00
|
|
|
GRCSegm( aClipBox, aDC, start.x, start.y, end.x, end.y, radius, aColor );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2010-09-28 19:34:16 +00:00
|
|
|
else if( m_DrillShape == APT_DEF_NO_HOLE )
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2011-10-17 20:01:27 +00:00
|
|
|
GRFillCSegm( aClipBox, aDC, start.x, start.y, end.x, end.y, radius, aColor );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
if( m_Polygon.OutlineCount() == 0 )
|
2010-09-28 14:42:05 +00:00
|
|
|
ConvertShapeToPolygon();
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
DrawFlashedPolygon( aParent, aClipBox, aDC, aColor, aFilledShape, aShapePos );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case APT_POLYGON:
|
2017-09-17 22:43:20 +00:00
|
|
|
if( m_Polygon.OutlineCount() == 0 )
|
2010-09-28 14:42:05 +00:00
|
|
|
ConvertShapeToPolygon();
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
DrawFlashedPolygon( aParent, aClipBox, aDC, aColor, aFilledShape, aShapePos );
|
2010-09-28 14:42:05 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-10 17:57:54 +00:00
|
|
|
void D_CODE::DrawFlashedPolygon( GERBER_DRAW_ITEM* aParent,
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT* aClipBox, wxDC* aDC,
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D aColor, bool aFilled,
|
2010-09-28 14:42:05 +00:00
|
|
|
const wxPoint& aPosition )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
if( m_Polygon.OutlineCount() == 0 )
|
2010-09-28 14:42:05 +00:00
|
|
|
return;
|
2009-11-09 14:00:22 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
int pointCount = m_Polygon.VertexCount();
|
2010-09-28 14:42:05 +00:00
|
|
|
std::vector<wxPoint> points;
|
2017-09-17 22:43:20 +00:00
|
|
|
points.reserve( pointCount );
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
for( int ii = 0; ii < pointCount; ii++ )
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
wxPoint p( m_Polygon.Vertex( ii ).x, m_Polygon.Vertex( ii ).y );
|
|
|
|
points[ii] = p + aPosition;
|
2010-10-10 17:57:54 +00:00
|
|
|
points[ii] = aParent->GetABPosition( points[ii] );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
GRClosedPoly( aClipBox, aDC, pointCount, &points[0], aFilled, aColor, aColor );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
#define SEGS_CNT 64 // number of segments to approximate a circle
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
|
|
|
|
// A helper function for D_CODE::ConvertShapeToPolygon(). Add a hole to a polygon
|
2017-09-17 22:43:20 +00:00
|
|
|
static void addHoleToPolygon( SHAPE_POLY_SET* aPolygon,
|
2010-09-28 19:34:16 +00:00
|
|
|
APERTURE_DEF_HOLETYPE aHoleShape,
|
|
|
|
wxSize aSize,
|
2010-10-01 19:11:30 +00:00
|
|
|
wxPoint aAnchorPos );
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
void D_CODE::ConvertShapeToPolygon()
|
|
|
|
{
|
|
|
|
wxPoint initialpos;
|
2011-03-03 19:08:13 +00:00
|
|
|
wxPoint currpos;
|
2010-10-01 19:11:30 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.RemoveAllContours();
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
switch( m_Shape )
|
2008-04-17 16:25:29 +00:00
|
|
|
{
|
2010-09-28 14:42:05 +00:00
|
|
|
case APT_CIRCLE: // creates only a circle with rectangular hole
|
2017-09-17 22:43:20 +00:00
|
|
|
TransformCircleToPolygon( m_Polygon, initialpos, m_Size.x >> 1, SEGS_CNT );
|
|
|
|
addHoleToPolygon( &m_Polygon, m_DrillShape, m_Drill, initialpos );
|
2010-09-28 14:42:05 +00:00
|
|
|
break;
|
2008-11-08 06:44:07 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
case APT_RECT:
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.NewOutline();
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.x = m_Size.x / 2;
|
|
|
|
currpos.y = m_Size.y / 2;
|
2010-09-28 14:42:05 +00:00
|
|
|
initialpos = currpos;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.x -= m_Size.x;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.y -= m_Size.y;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.x += m_Size.x;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.y += m_Size.y;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) ); // close polygon
|
|
|
|
m_Polygon.Append( VECTOR2I( initialpos ) );
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
addHoleToPolygon( &m_Polygon, m_DrillShape, m_Drill, initialpos );
|
2010-09-28 14:42:05 +00:00
|
|
|
break;
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
case APT_OVAL:
|
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.NewOutline();
|
2010-09-28 14:42:05 +00:00
|
|
|
int delta, radius;
|
|
|
|
|
|
|
|
// we create an horizontal oval shape. then rotate if needed
|
|
|
|
if( m_Size.x > m_Size.y ) // horizontal oval
|
2008-04-17 16:25:29 +00:00
|
|
|
{
|
2010-09-28 19:34:16 +00:00
|
|
|
delta = (m_Size.x - m_Size.y) / 2;
|
2010-09-28 14:42:05 +00:00
|
|
|
radius = m_Size.y / 2;
|
|
|
|
}
|
|
|
|
else // vertical oval
|
|
|
|
{
|
|
|
|
delta = (m_Size.y - m_Size.x) / 2;
|
|
|
|
radius = m_Size.x / 2;
|
|
|
|
}
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.y = radius;
|
|
|
|
initialpos = currpos;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
|
|
|
|
// build the right arc of the shape
|
|
|
|
unsigned ii = 0;
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
for( ; ii <= SEGS_CNT / 2; ii++ )
|
|
|
|
{
|
|
|
|
currpos = initialpos;
|
2013-05-05 07:17:48 +00:00
|
|
|
RotatePoint( &currpos, ii * 3600.0 / SEGS_CNT );
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.x += delta;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// build the left arc of the shape
|
|
|
|
for( ii = SEGS_CNT / 2; ii <= SEGS_CNT; ii++ )
|
|
|
|
{
|
|
|
|
currpos = initialpos;
|
2013-05-05 07:17:48 +00:00
|
|
|
RotatePoint( &currpos, ii * 3600.0 / SEGS_CNT );
|
2010-09-28 14:42:05 +00:00
|
|
|
currpos.x -= delta;
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( initialpos ) ); // close outline
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 19:34:16 +00:00
|
|
|
if( m_Size.y > m_Size.x ) // vertical oval, rotate polygon.
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
for( auto it = m_Polygon.Iterate( 0 ); it; ++it )
|
|
|
|
it->Rotate( -M_PI / 2 );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
addHoleToPolygon( &m_Polygon, m_DrillShape, m_Drill, initialpos );
|
2010-09-28 19:34:16 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case APT_POLYGON:
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.NewOutline();
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.x = m_Size.x >> 1; // first point is on X axis
|
|
|
|
initialpos = currpos;
|
2010-10-01 19:11:30 +00:00
|
|
|
|
2010-09-28 19:34:16 +00:00
|
|
|
// rs274x said: m_EdgesCount = 3 ... 12
|
|
|
|
if( m_EdgesCount < 3 )
|
|
|
|
m_EdgesCount = 3;
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 19:34:16 +00:00
|
|
|
if( m_EdgesCount > 12 )
|
|
|
|
m_EdgesCount = 12;
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
for( int ii = 0; ii < m_EdgesCount; ii++ )
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos = initialpos;
|
2013-05-05 07:17:48 +00:00
|
|
|
RotatePoint( &currpos, ii * 3600.0 / m_EdgesCount );
|
2017-09-17 22:43:20 +00:00
|
|
|
m_Polygon.Append( VECTOR2I( currpos ) );
|
2010-09-28 14:42:05 +00:00
|
|
|
}
|
2010-10-01 19:11:30 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
addHoleToPolygon( &m_Polygon, m_DrillShape, m_Drill, initialpos );
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2018-06-25 08:54:23 +00:00
|
|
|
if( m_Rotation ) // rotate polygonal shape:
|
2010-09-28 14:42:05 +00:00
|
|
|
{
|
2018-06-25 08:54:23 +00:00
|
|
|
double angle = m_Rotation * M_PI / 180;
|
|
|
|
m_Polygon.Rotate( angle, VECTOR2I( 0, 0 ) );
|
2008-04-17 16:25:29 +00:00
|
|
|
}
|
2011-10-17 20:01:27 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
break;
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
case APT_MACRO:
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2010-09-28 14:42:05 +00:00
|
|
|
// TODO
|
|
|
|
break;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2010-09-28 19:34:16 +00:00
|
|
|
|
2010-10-01 19:11:30 +00:00
|
|
|
|
2010-09-28 19:34:16 +00:00
|
|
|
// The helper function for D_CODE::ConvertShapeToPolygon().
|
|
|
|
// Add a hole to a polygon
|
2017-09-17 22:43:20 +00:00
|
|
|
static void addHoleToPolygon( SHAPE_POLY_SET* aPolygon,
|
2010-09-28 19:34:16 +00:00
|
|
|
APERTURE_DEF_HOLETYPE aHoleShape,
|
|
|
|
wxSize aSize,
|
|
|
|
wxPoint aAnchorPos )
|
|
|
|
{
|
|
|
|
wxPoint currpos;
|
2017-09-17 22:43:20 +00:00
|
|
|
SHAPE_POLY_SET holeBuffer;
|
2010-10-01 19:11:30 +00:00
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
if( aHoleShape == APT_DEF_ROUND_HOLE )
|
2010-09-28 19:34:16 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
TransformCircleToPolygon( holeBuffer, wxPoint( 0, 0 ), aSize.x / 2, SEGS_CNT );
|
2010-09-28 19:34:16 +00:00
|
|
|
}
|
2017-09-17 22:43:20 +00:00
|
|
|
else if( aHoleShape == APT_DEF_RECT_HOLE )
|
2010-09-28 19:34:16 +00:00
|
|
|
{
|
2017-09-17 22:43:20 +00:00
|
|
|
holeBuffer.NewOutline();
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.x = aSize.x / 2;
|
|
|
|
currpos.y = aSize.y / 2;
|
2017-09-17 22:43:20 +00:00
|
|
|
holeBuffer.Append( VECTOR2I( currpos ) ); // link to hole and begin hole
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.x -= aSize.x;
|
2017-09-17 22:43:20 +00:00
|
|
|
holeBuffer.Append( VECTOR2I( currpos ) );
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.y -= aSize.y;
|
2017-09-17 22:43:20 +00:00
|
|
|
holeBuffer.Append( VECTOR2I( currpos ) );
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.x += aSize.x;
|
2017-09-17 22:43:20 +00:00
|
|
|
holeBuffer.Append( VECTOR2I( currpos ) );
|
2010-09-28 19:34:16 +00:00
|
|
|
currpos.y += aSize.y;
|
2017-09-17 22:43:20 +00:00
|
|
|
holeBuffer.Append( VECTOR2I( currpos ) ); // close hole
|
2010-09-28 19:34:16 +00:00
|
|
|
}
|
2017-09-17 22:43:20 +00:00
|
|
|
|
|
|
|
aPolygon->BooleanSubtract( holeBuffer, SHAPE_POLY_SET::PM_FAST );
|
|
|
|
|
|
|
|
// Needed for legacy canvas only
|
|
|
|
aPolygon->Fracture( SHAPE_POLY_SET::PM_FAST );
|
2010-09-28 19:34:16 +00:00
|
|
|
}
|