2017-02-26 20:08:45 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2022-01-20 16:39:28 +00:00
|
|
|
* Copyright (C) 2017-2022 Kicad Developers, see AUTHORS.txt for contributors.
|
2017-02-26 20:08:45 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <preview_items/arc_assistant.h>
|
|
|
|
|
2019-05-13 13:17:24 +00:00
|
|
|
#include <preview_items/draw_context.h>
|
2017-02-26 20:08:45 +00:00
|
|
|
#include <preview_items/preview_utils.h>
|
2019-05-13 13:17:24 +00:00
|
|
|
|
2017-02-26 20:08:45 +00:00
|
|
|
#include <gal/graphics_abstraction_layer.h>
|
|
|
|
#include <view/view.h>
|
|
|
|
|
|
|
|
#include <base_units.h>
|
2020-10-14 03:37:48 +00:00
|
|
|
#include <trigo.h>
|
2017-02-26 20:08:45 +00:00
|
|
|
|
|
|
|
using namespace KIGFX::PREVIEW;
|
|
|
|
|
2022-09-16 04:38:10 +00:00
|
|
|
ARC_ASSISTANT::ARC_ASSISTANT( const ARC_GEOM_MANAGER& aManager, const EDA_IU_SCALE& aIuScale,
|
|
|
|
EDA_UNITS aUnits ) :
|
2020-11-07 21:21:56 +00:00
|
|
|
EDA_ITEM( NOT_USED ),
|
|
|
|
m_constructMan( aManager ),
|
2022-09-16 04:38:10 +00:00
|
|
|
m_iuScale( aIuScale ),
|
2020-11-07 21:21:56 +00:00
|
|
|
m_units( aUnits )
|
2017-02-26 20:08:45 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const BOX2I ARC_ASSISTANT::ViewBBox() const
|
|
|
|
{
|
|
|
|
BOX2I tmp;
|
|
|
|
|
|
|
|
// no bounding box when no graphic shown
|
|
|
|
if( m_constructMan.IsReset() )
|
|
|
|
return tmp;
|
|
|
|
|
2020-10-01 16:52:01 +00:00
|
|
|
// this is an edit-time artefact; no reason to try and be smart with the bounding box
|
|
|
|
// (besides, we can't tell the text extents without a view to know what the scale is)
|
|
|
|
tmp.SetMaximum();
|
2017-02-26 20:08:45 +00:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ARC_ASSISTANT::ViewDraw( int aLayer, KIGFX::VIEW* aView ) const
|
|
|
|
{
|
2020-11-07 21:21:56 +00:00
|
|
|
KIGFX::GAL& gal = *aView->GetGAL();
|
2017-02-26 20:08:45 +00:00
|
|
|
|
|
|
|
// not in a position to draw anything
|
|
|
|
if( m_constructMan.IsReset() )
|
|
|
|
return;
|
|
|
|
|
2017-03-30 07:44:38 +00:00
|
|
|
gal.ResetTextAttributes();
|
|
|
|
|
2020-11-07 21:21:56 +00:00
|
|
|
const VECTOR2I origin = m_constructMan.GetOrigin();
|
2017-02-26 20:08:45 +00:00
|
|
|
|
2019-05-13 13:17:24 +00:00
|
|
|
KIGFX::PREVIEW::DRAW_CONTEXT preview_ctx( *aView );
|
|
|
|
|
2017-02-26 20:08:45 +00:00
|
|
|
// draw first radius line
|
|
|
|
bool dimFirstLine = m_constructMan.GetStep() > ARC_GEOM_MANAGER::SET_START;
|
|
|
|
|
2020-11-07 21:21:56 +00:00
|
|
|
preview_ctx.DrawLineWithAngleHighlight( origin, m_constructMan.GetStartRadiusEnd(),
|
|
|
|
dimFirstLine );
|
2017-02-26 20:08:45 +00:00
|
|
|
|
|
|
|
std::vector<wxString> cursorStrings;
|
|
|
|
|
|
|
|
if( m_constructMan.GetStep() == ARC_GEOM_MANAGER::SET_START )
|
|
|
|
{
|
|
|
|
// haven't started the angle selection phase yet
|
|
|
|
|
2022-01-20 16:39:28 +00:00
|
|
|
EDA_ANGLE initAngle = m_constructMan.GetStartAngle();
|
2017-02-26 20:08:45 +00:00
|
|
|
|
2018-10-04 15:18:48 +00:00
|
|
|
// draw the radius guide circle
|
2019-05-13 13:17:24 +00:00
|
|
|
preview_ctx.DrawCircle( origin, m_constructMan.GetRadius(), true );
|
2018-10-04 15:18:48 +00:00
|
|
|
|
2022-01-20 16:39:28 +00:00
|
|
|
initAngle.Normalize720();
|
2017-02-26 20:08:45 +00:00
|
|
|
|
2022-09-16 04:38:10 +00:00
|
|
|
cursorStrings.push_back(
|
|
|
|
DimensionLabel( "r", m_constructMan.GetRadius(), m_iuScale, m_units ) );
|
|
|
|
cursorStrings.push_back( DimensionLabel( wxString::FromUTF8( "θ" ), initAngle.AsDegrees(), m_iuScale,
|
2020-10-08 09:58:48 +00:00
|
|
|
EDA_UNITS::DEGREES ) );
|
2017-02-26 20:08:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-05-13 13:17:24 +00:00
|
|
|
preview_ctx.DrawLineWithAngleHighlight( origin, m_constructMan.GetEndRadiusEnd(), false );
|
2017-02-26 20:08:45 +00:00
|
|
|
|
2022-01-20 16:39:28 +00:00
|
|
|
EDA_ANGLE start = m_constructMan.GetStartAngle();
|
|
|
|
EDA_ANGLE subtended = m_constructMan.GetSubtended();
|
2022-10-07 05:35:07 +00:00
|
|
|
EDA_ANGLE normalizedEnd = ( start + subtended ).Normalize180();
|
2017-02-26 20:08:45 +00:00
|
|
|
|
|
|
|
// draw dimmed extender line to cursor
|
2019-05-13 13:17:24 +00:00
|
|
|
preview_ctx.DrawLineWithAngleHighlight( origin, m_constructMan.GetLastPoint(), true );
|
2017-02-26 20:08:45 +00:00
|
|
|
|
2022-01-20 16:39:28 +00:00
|
|
|
cursorStrings.push_back( DimensionLabel( wxString::FromUTF8( "Δθ" ), subtended.AsDegrees(),
|
2022-09-16 04:38:10 +00:00
|
|
|
m_iuScale, EDA_UNITS::DEGREES ) );
|
2022-10-07 05:35:07 +00:00
|
|
|
cursorStrings.push_back( DimensionLabel( wxString::FromUTF8( "θ" ),
|
|
|
|
normalizedEnd.AsDegrees(), m_iuScale,
|
|
|
|
EDA_UNITS::DEGREES ) );
|
2017-02-26 20:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// place the text next to cursor, on opposite side from radius
|
2017-08-04 12:43:02 +00:00
|
|
|
DrawTextNextToCursor( aView, m_constructMan.GetLastPoint(),
|
2020-11-07 21:21:56 +00:00
|
|
|
origin - m_constructMan.GetLastPoint(), cursorStrings,
|
|
|
|
aLayer == LAYER_SELECT_OVERLAY );
|
2017-02-26 20:08:45 +00:00
|
|
|
}
|