2012-05-03 18:37:56 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-11-16 11:45:53 +00:00
|
|
|
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2021-06-08 14:09:24 +00:00
|
|
|
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-05-03 18:37:56 +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
|
|
|
|
*/
|
|
|
|
|
2021-08-18 20:38:14 +00:00
|
|
|
#include <eda_draw_frame.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2021-08-18 20:38:14 +00:00
|
|
|
#include <plotters/plotter.h>
|
2012-05-03 18:37:56 +00:00
|
|
|
#include <trigo.h>
|
|
|
|
#include <base_units.h>
|
2020-10-25 04:49:02 +00:00
|
|
|
#include <widgets/msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/util.h> // for KiROUND
|
2020-04-24 13:36:10 +00:00
|
|
|
#include <eda_draw_frame.h>
|
2012-05-03 18:37:56 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <lib_circle.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2012-05-03 18:37:56 +00:00
|
|
|
#include <transform.h>
|
|
|
|
|
|
|
|
|
2021-06-10 18:51:46 +00:00
|
|
|
LIB_CIRCLE::LIB_CIRCLE( LIB_SYMBOL* aParent ) :
|
2012-05-03 18:37:56 +00:00
|
|
|
LIB_ITEM( LIB_CIRCLE_T, aParent )
|
|
|
|
{
|
|
|
|
m_Width = 0;
|
2021-01-26 22:54:10 +00:00
|
|
|
m_fill = FILL_TYPE::NO_FILL;
|
2012-05-03 18:37:56 +00:00
|
|
|
m_isFillable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool LIB_CIRCLE::HitTest( const wxPoint& aPosRef, int aAccuracy ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
int mindist = std::max( aAccuracy + GetPenWidth() / 2,
|
2019-12-30 18:28:00 +00:00
|
|
|
Mils2iu( MINIMUM_SELECTION_DISTANCE ) );
|
2019-05-05 10:33:34 +00:00
|
|
|
int dist = KiROUND( GetLineLength( aPosRef, DefaultTransform.TransformCoordinate( m_Pos ) ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
if( abs( dist - GetRadius() ) <= mindist )
|
2019-05-05 10:33:34 +00:00
|
|
|
return true;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2021-01-26 22:59:36 +00:00
|
|
|
if( m_fill == FILL_TYPE::NO_FILL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return dist <= GetRadius();
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool LIB_CIRCLE::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2020-11-14 18:11:28 +00:00
|
|
|
if( m_flags & (STRUCT_DELETED | SKIP_STRUCT ) )
|
2019-05-05 10:33:34 +00:00
|
|
|
return false;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2019-05-10 22:24:27 +00:00
|
|
|
wxPoint center = DefaultTransform.TransformCoordinate( GetPosition() );
|
|
|
|
int radius = GetRadius();
|
|
|
|
int lineWidth = GetWidth();
|
|
|
|
EDA_RECT sel = aRect ;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if ( aAccuracy )
|
2019-05-10 22:24:27 +00:00
|
|
|
sel.Inflate( aAccuracy );
|
2019-05-05 10:33:34 +00:00
|
|
|
|
|
|
|
if( aContained )
|
2019-05-10 22:24:27 +00:00
|
|
|
return sel.Contains( GetBoundingBox() );
|
2019-05-05 10:33:34 +00:00
|
|
|
|
2019-05-10 22:24:27 +00:00
|
|
|
// If the rectangle does not intersect the bounding box, this is a much quicker test
|
|
|
|
if( !sel.Intersects( GetBoundingBox() ) )
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return sel.IntersectsCircleEdge( center, radius, lineWidth );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EDA_ITEM* LIB_CIRCLE::Clone() const
|
|
|
|
{
|
|
|
|
return new LIB_CIRCLE( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
int LIB_CIRCLE::compare( const LIB_ITEM& aOther, LIB_ITEM::COMPARE_FLAGS aCompareFlags ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
wxASSERT( aOther.Type() == LIB_CIRCLE_T );
|
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
int retv = LIB_ITEM::compare( aOther, aCompareFlags );
|
|
|
|
|
|
|
|
if( retv )
|
|
|
|
return retv;
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
const LIB_CIRCLE* tmp = ( LIB_CIRCLE* ) &aOther;
|
|
|
|
|
|
|
|
if( m_Pos.x != tmp->m_Pos.x )
|
|
|
|
return m_Pos.x - tmp->m_Pos.x;
|
|
|
|
|
|
|
|
if( m_Pos.y != tmp->m_Pos.y )
|
|
|
|
return m_Pos.y - tmp->m_Pos.y;
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
if( m_EndPos.x != tmp->m_EndPos.x )
|
|
|
|
return m_EndPos.x - tmp->m_EndPos.x;
|
|
|
|
|
|
|
|
if( m_EndPos.y != tmp->m_EndPos.y )
|
|
|
|
return m_EndPos.y - tmp->m_EndPos.y;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 07:57:07 +00:00
|
|
|
void LIB_CIRCLE::Offset( const wxPoint& aOffset )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
m_Pos += aOffset;
|
2019-05-08 18:56:03 +00:00
|
|
|
m_EndPos += aOffset;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 07:57:07 +00:00
|
|
|
void LIB_CIRCLE::MoveTo( const wxPoint& aPosition )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2019-05-09 07:57:07 +00:00
|
|
|
Offset( aPosition - m_Pos );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_CIRCLE::MirrorHorizontal( const wxPoint& aCenter )
|
|
|
|
{
|
|
|
|
m_Pos.x -= aCenter.x;
|
|
|
|
m_Pos.x *= -1;
|
|
|
|
m_Pos.x += aCenter.x;
|
2019-05-11 06:43:58 +00:00
|
|
|
m_EndPos.x -= aCenter.x;
|
|
|
|
m_EndPos.x *= -1;
|
|
|
|
m_EndPos.x += aCenter.x;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_CIRCLE::MirrorVertical( const wxPoint& aCenter )
|
|
|
|
{
|
|
|
|
m_Pos.y -= aCenter.y;
|
|
|
|
m_Pos.y *= -1;
|
|
|
|
m_Pos.y += aCenter.y;
|
2019-05-11 06:43:58 +00:00
|
|
|
m_EndPos.y -= aCenter.y;
|
|
|
|
m_EndPos.y *= -1;
|
|
|
|
m_EndPos.y += aCenter.y;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_CIRCLE::Rotate( const wxPoint& aCenter, bool aRotateCCW )
|
|
|
|
{
|
|
|
|
int rot_angle = aRotateCCW ? -900 : 900;
|
|
|
|
|
|
|
|
RotatePoint( &m_Pos, aCenter, rot_angle );
|
2019-05-11 06:43:58 +00:00
|
|
|
RotatePoint( &m_EndPos, aCenter, rot_angle );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_CIRCLE::Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
2021-03-06 09:27:41 +00:00
|
|
|
const TRANSFORM& aTransform ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
wxPoint pos = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
if( aFill && m_fill == FILL_TYPE::FILLED_WITH_BG_BODYCOLOR )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetColor( aPlotter->RenderSettings()->GetLayerColor( LAYER_DEVICE_BACKGROUND ) );
|
2020-10-15 01:45:20 +00:00
|
|
|
aPlotter->Circle( pos, GetRadius() * 2, FILL_TYPE::FILLED_WITH_BG_BODYCOLOR, 0 );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
bool already_filled = m_fill == FILL_TYPE::FILLED_WITH_BG_BODYCOLOR;
|
2021-08-17 10:59:04 +00:00
|
|
|
int pen_size = GetEffectivePenWidth( aPlotter->RenderSettings() );
|
2019-03-11 06:41:00 +00:00
|
|
|
|
|
|
|
if( !already_filled || pen_size > 0 )
|
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetColor( aPlotter->RenderSettings()->GetLayerColor( LAYER_DEVICE ) );
|
2021-01-26 22:54:10 +00:00
|
|
|
aPlotter->Circle( pos, GetRadius() * 2, already_filled ? FILL_TYPE::NO_FILL : m_fill,
|
|
|
|
pen_size );
|
2019-03-11 06:41:00 +00:00
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
int LIB_CIRCLE::GetPenWidth() const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2021-08-17 10:59:04 +00:00
|
|
|
return m_Width;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-20 18:18:54 +00:00
|
|
|
void LIB_CIRCLE::print( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset,
|
|
|
|
void* aData, const TRANSFORM& aTransform )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2020-04-21 17:12:36 +00:00
|
|
|
bool forceNoFill = static_cast<bool>( aData );
|
2021-08-17 10:59:04 +00:00
|
|
|
int penWidth = GetEffectivePenWidth( aSettings );
|
2020-04-21 17:12:36 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
if( forceNoFill && m_fill != FILL_TYPE::NO_FILL && penWidth == 0 )
|
2020-04-21 17:12:36 +00:00
|
|
|
return;
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
|
|
|
wxPoint pos1 = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
|
|
|
COLOR4D color = aSettings->GetLayerColor( LAYER_DEVICE );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
if( forceNoFill || m_fill == FILL_TYPE::NO_FILL )
|
2020-04-21 17:12:36 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
GRCircle( nullptr, DC, pos1.x, pos1.y, GetRadius(), penWidth, color );
|
2020-04-21 17:12:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-26 22:54:10 +00:00
|
|
|
if( m_fill == FILL_TYPE::FILLED_WITH_BG_BODYCOLOR )
|
2020-04-21 17:12:36 +00:00
|
|
|
color = aSettings->GetLayerColor( LAYER_DEVICE_BACKGROUND );
|
|
|
|
|
|
|
|
GRFilledCircle( nullptr, DC, pos1.x, pos1.y, GetRadius(), 0, color, color );
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_CIRCLE::GetBoundingBox() const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
EDA_RECT rect;
|
2019-05-08 18:56:03 +00:00
|
|
|
int radius = GetRadius();
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
rect.SetOrigin( m_Pos.x - radius, m_Pos.y - radius );
|
|
|
|
rect.SetEnd( m_Pos.x + radius, m_Pos.y + radius );
|
2020-04-14 12:25:00 +00:00
|
|
|
rect.Inflate( ( GetPenWidth() / 2 ) + 1 );
|
2015-06-18 14:56:08 +00:00
|
|
|
|
|
|
|
rect.RevertYAxis();
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-26 23:22:32 +00:00
|
|
|
void LIB_CIRCLE::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aFrame, aList );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2020-10-02 20:51:24 +00:00
|
|
|
msg = MessageTextFromValue( aFrame->GetUserUnits(), m_Width );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2020-11-18 15:36:47 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Line Width" ), msg ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2020-10-02 20:51:24 +00:00
|
|
|
msg = MessageTextFromValue( aFrame->GetUserUnits(), GetRadius() );
|
2020-11-18 15:36:47 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Radius" ), msg ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
msg.Printf( wxT( "(%d, %d, %d, %d)" ),
|
|
|
|
bBox.GetOrigin().x,
|
|
|
|
bBox.GetOrigin().y,
|
|
|
|
bBox.GetEnd().x,
|
|
|
|
bBox.GetEnd().y );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2020-11-18 15:36:47 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Bounding Box" ), msg ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-02 04:50:46 +00:00
|
|
|
int LIB_CIRCLE::GetRadius() const
|
|
|
|
{
|
|
|
|
return KiROUND( GetLineLength( m_EndPos, m_Pos ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString LIB_CIRCLE::GetSelectMenuText( EDA_UNITS aUnits ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2020-09-19 16:12:00 +00:00
|
|
|
return wxString::Format( _( "Circle, radius %s" ),
|
2019-05-08 18:56:03 +00:00
|
|
|
MessageTextFromValue( aUnits, GetRadius() ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS LIB_CIRCLE::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::add_circle;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-08 14:09:24 +00:00
|
|
|
void LIB_CIRCLE::BeginEdit( const wxPoint& aPosition )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2019-07-02 20:09:23 +00:00
|
|
|
m_Pos = aPosition;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
void LIB_CIRCLE::CalcEdit( const wxPoint& aPosition )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
SetEnd( aPosition );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|