2012-01-14 19:50:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-05-02 08:31:10 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2012-06-08 09:56:42 +00:00
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2023-02-05 13:07:30 +00:00
|
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-01-14 19:50: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
|
|
|
|
*/
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <base_units.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2020-11-18 01:21:04 +00:00
|
|
|
#include <core/mirror.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>
|
2020-06-22 19:35:09 +00:00
|
|
|
#include <geometry/shape_circle.h>
|
|
|
|
#include <geometry/shape_segment.h>
|
|
|
|
#include <geometry/shape_simple.h>
|
2020-06-28 22:34:10 +00:00
|
|
|
#include <geometry/shape_rect.h>
|
2020-07-15 16:23:36 +00:00
|
|
|
#include <geometry/shape_compound.h>
|
2022-02-11 00:51:01 +00:00
|
|
|
#include <geometry/shape_null.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2020-10-16 15:51:24 +00:00
|
|
|
#include <i18n_utility.h>
|
2019-05-14 12:39:34 +00:00
|
|
|
#include <view/view.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2021-06-06 19:03:10 +00:00
|
|
|
#include <board_connected_item.h>
|
|
|
|
#include <board_design_settings.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <footprint.h>
|
2021-06-06 19:03:10 +00:00
|
|
|
#include <pad.h>
|
2020-10-04 23:34:59 +00:00
|
|
|
#include <pcb_shape.h>
|
2020-07-27 19:41:50 +00:00
|
|
|
#include <connectivity/connectivity_data.h>
|
2022-09-17 01:07:36 +00:00
|
|
|
#include <eda_units.h>
|
2016-04-06 18:15:49 +00:00
|
|
|
#include <convert_basic_shapes_to_polygon.h>
|
2020-10-25 04:49:02 +00:00
|
|
|
#include <widgets/msgpanel.h>
|
2021-01-30 14:41:31 +00:00
|
|
|
#include <pcb_painter.h>
|
2023-02-11 20:50:30 +00:00
|
|
|
#include <properties/property_validators.h>
|
2021-06-03 12:11:15 +00:00
|
|
|
#include <wx/log.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
#include <memory>
|
2021-12-08 23:12:33 +00:00
|
|
|
#include <macros.h>
|
2022-11-28 13:19:36 +00:00
|
|
|
#include "kiface_base.h"
|
|
|
|
#include "pcbnew_settings.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2021-01-30 14:41:31 +00:00
|
|
|
using KIGFX::PCB_PAINTER;
|
|
|
|
using KIGFX::PCB_RENDER_SETTINGS;
|
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
PAD::PAD( FOOTPRINT* parent ) :
|
2012-02-19 04:02:19 +00:00
|
|
|
BOARD_CONNECTED_ITEM( parent, PCB_PAD_T )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2022-09-16 04:38:10 +00:00
|
|
|
m_size.x = m_size.y = EDA_UNIT_UTILS::Mils2IU( pcbIUScale, 60 ); // Default pad size 60 mils.
|
|
|
|
m_drill.x = m_drill.y = EDA_UNIT_UTILS::Mils2IU( pcbIUScale, 30 ); // Default drill size 30 mils.
|
2022-01-13 17:27:36 +00:00
|
|
|
m_orient = ANGLE_0;
|
2020-07-31 12:37:22 +00:00
|
|
|
m_lengthPadToDie = 0;
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
if( m_parent && m_parent->Type() == PCB_FOOTPRINT_T )
|
2020-07-31 12:37:22 +00:00
|
|
|
m_pos = GetParent()->GetPosition();
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
SetShape( PAD_SHAPE::CIRCLE ); // Default pad shape is PAD_CIRCLE.
|
|
|
|
SetAnchorPadShape( PAD_SHAPE::CIRCLE ); // Default shape for custom shaped pads
|
|
|
|
// is PAD_CIRCLE.
|
|
|
|
SetDrillShape( PAD_DRILL_SHAPE_CIRCLE ); // Default pad drill shape is a circle.
|
|
|
|
m_attribute = PAD_ATTRIB::PTH; // Default pad type is plated through hole
|
|
|
|
SetProperty( PAD_PROP::NONE ); // no special fabrication property
|
2020-07-31 12:37:22 +00:00
|
|
|
m_localClearance = 0;
|
|
|
|
m_localSolderMaskMargin = 0;
|
|
|
|
m_localSolderPasteMargin = 0;
|
|
|
|
m_localSolderPasteMarginRatio = 0.0;
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2016-04-06 18:15:49 +00:00
|
|
|
// Parameters for round rect only:
|
2021-07-19 23:56:05 +00:00
|
|
|
m_roundedCornerScale = 0.25; // from IPC-7351C standard
|
|
|
|
|
2018-08-29 07:13:07 +00:00
|
|
|
// Parameters for chamfered rect only:
|
2021-07-19 23:56:05 +00:00
|
|
|
m_chamferScale = 0.2; // Size of chamfer: ratio of smallest of X,Y size
|
|
|
|
m_chamferPositions = RECT_NO_CHAMFER; // No chamfered corner
|
2016-04-06 18:15:49 +00:00
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
m_zoneConnection = ZONE_CONNECTION::INHERITED; // Use parent setting by default
|
|
|
|
m_thermalSpokeWidth = 0; // Use parent setting by default
|
2022-01-13 13:45:48 +00:00
|
|
|
m_thermalSpokeAngle = ANGLE_45; // Default for circular pads
|
2021-08-08 13:37:14 +00:00
|
|
|
m_thermalGap = 0; // Use parent setting by default
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2017-01-13 17:51:22 +00:00
|
|
|
m_customShapeClearanceArea = CUST_PAD_SHAPE_IN_ZONE_OUTLINE;
|
|
|
|
|
2013-02-12 01:07:04 +00:00
|
|
|
// Set layers mask to default for a standard thru hole pad.
|
2021-10-19 23:36:11 +00:00
|
|
|
m_layerMask = PTHMask();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2013-02-12 01:07:04 +00:00
|
|
|
SetSubRatsnest( 0 ); // used in ratsnest calculations
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2020-06-22 19:35:09 +00:00
|
|
|
m_effectiveBoundingRadius = 0;
|
2020-07-31 12:37:22 +00:00
|
|
|
m_removeUnconnectedLayer = false;
|
|
|
|
m_keepTopBottomLayer = true;
|
2022-10-18 12:00:37 +00:00
|
|
|
|
2023-02-07 22:32:19 +00:00
|
|
|
m_zoneLayerOverrides.fill( ZLO_NONE );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
PAD::PAD( const PAD& aOther ) :
|
2020-07-24 16:02:56 +00:00
|
|
|
BOARD_CONNECTED_ITEM( aOther.GetParent(), PCB_PAD_T )
|
|
|
|
{
|
2021-11-28 13:33:53 +00:00
|
|
|
PAD::operator=( aOther );
|
2020-07-25 06:29:33 +00:00
|
|
|
|
2020-08-24 23:01:55 +00:00
|
|
|
const_cast<KIID&>( m_Uuid ) = aOther.m_Uuid;
|
2020-07-24 16:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
PAD& PAD::operator=( const PAD &aOther )
|
2020-07-24 16:02:56 +00:00
|
|
|
{
|
|
|
|
BOARD_CONNECTED_ITEM::operator=( aOther );
|
|
|
|
|
|
|
|
ImportSettingsFrom( aOther );
|
2020-07-25 06:29:33 +00:00
|
|
|
SetPadToDieLength( aOther.GetPadToDieLength() );
|
2020-07-24 16:02:56 +00:00
|
|
|
SetPosition( aOther.GetPosition() );
|
2021-08-23 23:10:21 +00:00
|
|
|
SetNumber( aOther.GetNumber() );
|
2021-11-28 13:33:53 +00:00
|
|
|
SetPinType( aOther.GetPinType() );
|
2020-07-25 11:28:20 +00:00
|
|
|
SetPinFunction( aOther.GetPinFunction() );
|
2020-07-29 07:21:31 +00:00
|
|
|
SetSubRatsnest( aOther.GetSubRatsnest() );
|
|
|
|
m_effectiveBoundingRadius = aOther.m_effectiveBoundingRadius;
|
2020-08-23 17:11:47 +00:00
|
|
|
m_removeUnconnectedLayer = aOther.m_removeUnconnectedLayer;
|
|
|
|
m_keepTopBottomLayer = aOther.m_keepTopBottomLayer;
|
2020-07-24 16:02:56 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-23 23:10:21 +00:00
|
|
|
bool PAD::CanHaveNumber() const
|
|
|
|
{
|
|
|
|
// Aperture pads don't get a number
|
|
|
|
if( IsAperturePad() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// NPTH pads don't get numbers
|
|
|
|
if( GetAttribute() == PAD_ATTRIB::NPTH )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-15 22:32:02 +00:00
|
|
|
bool PAD::IsLocked() const
|
|
|
|
{
|
2021-10-31 16:32:24 +00:00
|
|
|
if( GetParent() && GetParent()->IsLocked() )
|
2021-01-08 16:32:28 +00:00
|
|
|
return true;
|
2020-12-15 22:32:02 +00:00
|
|
|
|
2021-01-08 16:32:28 +00:00
|
|
|
return BOARD_ITEM::IsLocked();
|
2020-12-15 22:32:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-01-24 11:32:32 +00:00
|
|
|
bool PAD::SharesNetTieGroup( const PAD* aOther ) const
|
|
|
|
{
|
2023-03-30 11:49:23 +00:00
|
|
|
FOOTPRINT* parentFp = GetParentFootprint();
|
2023-01-24 11:32:32 +00:00
|
|
|
|
|
|
|
if( parentFp && parentFp->IsNetTie() && aOther->GetParentFootprint() == parentFp )
|
|
|
|
{
|
|
|
|
std::map<wxString, int> padToNetTieGroupMap = parentFp->MapPadNumbersToNetTieGroups();
|
|
|
|
int thisNetTieGroup = padToNetTieGroupMap[ GetNumber() ];
|
|
|
|
int otherNetTieGroup = padToNetTieGroupMap[ aOther->GetNumber() ];
|
|
|
|
|
|
|
|
return thisNetTieGroup >= 0 && thisNetTieGroup == otherNetTieGroup;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-05 16:23:19 +00:00
|
|
|
bool PAD::IsNoConnectPad() const
|
|
|
|
{
|
|
|
|
return GetShortNetname().StartsWith( wxT( "unconnected-(" ) )
|
|
|
|
&& ( m_pinType == wxT( "no_connect" ) || m_pinType.EndsWith( wxT( "+no_connect" ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PAD::IsFreePad() const
|
|
|
|
{
|
|
|
|
return GetShortNetname().StartsWith( wxT( "unconnected-(" ) )
|
|
|
|
&& m_pinType == wxT( "free" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
LSET PAD::PTHMask()
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
2020-09-08 23:39:33 +00:00
|
|
|
static LSET saved = LSET::AllCuMask() | LSET( 2, F_Mask, B_Mask );
|
2014-06-24 16:17:18 +00:00
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
LSET PAD::SMDMask()
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
|
|
|
static LSET saved( 3, F_Cu, F_Paste, F_Mask );
|
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
LSET PAD::ConnSMDMask()
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
|
|
|
static LSET saved( 2, F_Cu, F_Mask );
|
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
LSET PAD::UnplatedHoleMask()
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
2020-09-08 23:39:33 +00:00
|
|
|
static LSET saved = LSET( 4, F_Cu, B_Cu, F_Mask, B_Mask );
|
2014-06-24 16:17:18 +00:00
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
|
2018-07-24 13:56:20 +00:00
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
LSET PAD::ApertureMask()
|
2018-07-24 13:56:20 +00:00
|
|
|
{
|
2020-05-05 15:40:18 +00:00
|
|
|
static LSET saved( 1, F_Paste );
|
2018-07-24 13:56:20 +00:00
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
bool PAD::IsFlipped() const
|
2016-04-06 18:15:49 +00:00
|
|
|
{
|
2022-07-09 22:30:52 +00:00
|
|
|
FOOTPRINT* parent = GetParent();
|
2022-04-23 20:29:46 +00:00
|
|
|
|
2022-07-09 22:30:52 +00:00
|
|
|
return ( parent && parent->GetLayer() == B_Cu );
|
2016-04-06 18:15:49 +00:00
|
|
|
}
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2022-02-18 10:12:11 +00:00
|
|
|
PCB_LAYER_ID PAD::GetLayer() const
|
|
|
|
{
|
|
|
|
return BOARD_ITEM::GetLayer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-18 14:19:13 +00:00
|
|
|
PCB_LAYER_ID PAD::GetPrincipalLayer() const
|
|
|
|
{
|
2022-06-16 15:20:47 +00:00
|
|
|
if( m_attribute == PAD_ATTRIB::SMD || m_attribute == PAD_ATTRIB::CONN || GetLayerSet().none() )
|
2022-02-18 14:19:13 +00:00
|
|
|
return m_layer;
|
2022-04-23 20:29:46 +00:00
|
|
|
else
|
|
|
|
return GetLayerSet().Seq().front();
|
2022-06-16 15:20:47 +00:00
|
|
|
|
2022-02-18 14:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 21:21:22 +00:00
|
|
|
bool PAD::FlashLayer( LSET aLayers ) const
|
2020-07-27 19:41:50 +00:00
|
|
|
{
|
2022-02-23 15:30:38 +00:00
|
|
|
for( PCB_LAYER_ID layer : aLayers.Seq() )
|
2020-07-27 19:41:50 +00:00
|
|
|
{
|
2021-01-28 21:21:22 +00:00
|
|
|
if( FlashLayer( layer ) )
|
2020-07-27 19:41:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-07 15:20:12 +00:00
|
|
|
bool PAD::FlashLayer( int aLayer, bool aOnlyCheckIfPermitted ) const
|
2020-07-27 19:41:50 +00:00
|
|
|
{
|
2022-04-04 19:24:56 +00:00
|
|
|
if( aLayer == UNDEFINED_LAYER )
|
|
|
|
return true;
|
|
|
|
|
2022-12-24 17:04:34 +00:00
|
|
|
if( !IsOnLayer( static_cast<PCB_LAYER_ID>( aLayer ) ) )
|
|
|
|
return false;
|
|
|
|
|
2022-04-03 22:04:05 +00:00
|
|
|
if( GetAttribute() == PAD_ATTRIB::NPTH && IsCopperLayer( aLayer ) )
|
2021-12-08 23:12:33 +00:00
|
|
|
{
|
|
|
|
if( GetShape() == PAD_SHAPE::CIRCLE && GetDrillShape() == PAD_DRILL_SHAPE_CIRCLE )
|
|
|
|
{
|
2022-01-01 17:11:21 +00:00
|
|
|
if( GetOffset() == VECTOR2I( 0, 0 ) && GetDrillSize().x >= GetSize().x )
|
2021-12-08 23:12:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if( GetShape() == PAD_SHAPE::OVAL && GetDrillShape() == PAD_DRILL_SHAPE_OBLONG )
|
|
|
|
{
|
2022-01-01 17:11:21 +00:00
|
|
|
if( GetOffset() == VECTOR2I( 0, 0 )
|
2021-12-08 23:12:33 +00:00
|
|
|
&& GetDrillSize().x >= GetSize().x && GetDrillSize().y >= GetSize().y )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-03-06 13:35:46 +00:00
|
|
|
}
|
2021-12-08 23:12:33 +00:00
|
|
|
|
2022-03-06 13:35:46 +00:00
|
|
|
if( LSET::FrontBoardTechMask().test( aLayer ) )
|
|
|
|
aLayer = F_Cu;
|
|
|
|
else if( LSET::BackBoardTechMask().test( aLayer ) )
|
|
|
|
aLayer = B_Cu;
|
|
|
|
|
|
|
|
if( GetAttribute() == PAD_ATTRIB::PTH && IsCopperLayer( aLayer ) )
|
|
|
|
{
|
|
|
|
/// Heat sink pads always get copper
|
|
|
|
if( GetProperty() == PAD_PROP::HEATSINK )
|
|
|
|
return true;
|
2021-12-08 23:12:33 +00:00
|
|
|
|
2022-03-06 13:35:46 +00:00
|
|
|
if( !m_removeUnconnectedLayer )
|
2021-12-08 23:12:33 +00:00
|
|
|
return true;
|
|
|
|
|
2022-03-06 13:35:46 +00:00
|
|
|
// Plated through hole pads need copper on the top/bottom layers for proper soldering
|
|
|
|
// Unless the user has removed them in the pad dialog
|
|
|
|
if( m_keepTopBottomLayer && ( aLayer == F_Cu || aLayer == B_Cu ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if( const BOARD* board = GetBoard() )
|
2022-08-21 19:54:07 +00:00
|
|
|
{
|
|
|
|
// Must be static to keep from raising its ugly head in performance profiles
|
|
|
|
static std::initializer_list<KICAD_T> types = { PCB_TRACE_T, PCB_ARC_T, PCB_VIA_T,
|
|
|
|
PCB_PAD_T };
|
|
|
|
|
2023-02-05 13:07:30 +00:00
|
|
|
if( m_zoneLayerOverrides[ aLayer ] == ZLO_FORCE_FLASHED )
|
2022-10-18 12:00:37 +00:00
|
|
|
return true;
|
2023-02-05 13:07:30 +00:00
|
|
|
else if( aOnlyCheckIfPermitted )
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return board->GetConnectivity()->IsConnectedOnLayer( this, aLayer, types );
|
2022-08-21 19:54:07 +00:00
|
|
|
}
|
2021-12-08 23:12:33 +00:00
|
|
|
}
|
2022-03-06 13:35:46 +00:00
|
|
|
|
|
|
|
return true;
|
2020-07-27 19:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
int PAD::GetRoundRectCornerRadius() const
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
return KiROUND( std::min( m_size.x, m_size.y ) * m_roundedCornerScale );
|
2020-06-22 19:35:09 +00:00
|
|
|
}
|
2016-04-06 18:15:49 +00:00
|
|
|
|
2018-08-29 07:13:07 +00:00
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::SetRoundRectCornerRadius( double aRadius )
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
int min_r = std::min( m_size.x, m_size.y );
|
2017-01-13 17:51:22 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
if( min_r > 0 )
|
|
|
|
SetRoundRectRadiusRatio( aRadius / min_r );
|
|
|
|
}
|
2017-01-13 17:51:22 +00:00
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::SetRoundRectRadiusRatio( double aRadiusScale )
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2023-06-03 15:59:00 +00:00
|
|
|
m_roundedCornerScale = alg::clamp( 0.0, aRadiusScale, 0.5 );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::SetChamferRectRatio( double aChamferScale )
|
2016-04-06 18:15:49 +00:00
|
|
|
{
|
2023-06-03 15:59:00 +00:00
|
|
|
m_chamferScale = alg::clamp( 0.0, aChamferScale, 0.5 );
|
2016-04-06 18:15:49 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2016-04-06 18:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
const std::shared_ptr<SHAPE_POLY_SET>& PAD::GetEffectivePolygon() const
|
2020-07-25 11:58:17 +00:00
|
|
|
{
|
2021-01-08 00:26:32 +00:00
|
|
|
if( m_polyDirty )
|
|
|
|
BuildEffectivePolygon();
|
2020-07-25 11:58:17 +00:00
|
|
|
|
|
|
|
return m_effectivePolygon;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-29 11:33:31 +00:00
|
|
|
std::shared_ptr<SHAPE> PAD::GetEffectiveShape( PCB_LAYER_ID aLayer, FLASHING flashPTHPads ) const
|
2020-07-15 16:23:36 +00:00
|
|
|
{
|
2022-08-29 11:33:31 +00:00
|
|
|
if( aLayer == Edge_Cuts )
|
2022-02-11 00:51:01 +00:00
|
|
|
{
|
2022-08-29 11:33:31 +00:00
|
|
|
if( GetAttribute() == PAD_ATTRIB::PTH || GetAttribute() == PAD_ATTRIB::NPTH )
|
2022-07-22 22:05:25 +00:00
|
|
|
return GetEffectiveHoleShape();
|
|
|
|
else
|
|
|
|
return std::make_shared<SHAPE_NULL>();
|
2022-02-11 00:51:01 +00:00
|
|
|
}
|
|
|
|
|
2022-08-29 11:33:31 +00:00
|
|
|
if( GetAttribute() == PAD_ATTRIB::PTH )
|
|
|
|
{
|
|
|
|
bool flash;
|
|
|
|
|
|
|
|
if( flashPTHPads == FLASHING::NEVER_FLASHED )
|
|
|
|
flash = false;
|
|
|
|
else if( flashPTHPads == FLASHING::ALWAYS_FLASHED )
|
|
|
|
flash = true;
|
|
|
|
else
|
|
|
|
flash = FlashLayer( aLayer );
|
|
|
|
|
|
|
|
if( !flash )
|
|
|
|
{
|
|
|
|
if( GetAttribute() == PAD_ATTRIB::PTH )
|
|
|
|
return GetEffectiveHoleShape();
|
|
|
|
else
|
|
|
|
return std::make_shared<SHAPE_NULL>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 16:23:36 +00:00
|
|
|
if( m_shapesDirty )
|
2020-08-12 21:18:13 +00:00
|
|
|
BuildEffectiveShapes( aLayer );
|
2020-07-31 08:54:53 +00:00
|
|
|
|
2020-09-17 16:32:42 +00:00
|
|
|
return m_effectiveShape;
|
2020-07-15 16:23:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-22 22:05:25 +00:00
|
|
|
std::shared_ptr<SHAPE_SEGMENT> PAD::GetEffectiveHoleShape() const
|
2020-04-22 21:50:15 +00:00
|
|
|
{
|
2020-06-22 19:35:09 +00:00
|
|
|
if( m_shapesDirty )
|
2020-08-12 21:18:13 +00:00
|
|
|
BuildEffectiveShapes( UNDEFINED_LAYER );
|
2020-04-22 21:50:15 +00:00
|
|
|
|
2022-07-22 22:05:25 +00:00
|
|
|
return m_effectiveHoleShape;
|
2020-06-22 19:35:09 +00:00
|
|
|
}
|
2020-04-22 21:50:15 +00:00
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
int PAD::GetBoundingRadius() const
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2021-01-08 00:26:32 +00:00
|
|
|
if( m_polyDirty )
|
|
|
|
BuildEffectivePolygon();
|
2020-06-22 19:35:09 +00:00
|
|
|
|
|
|
|
return m_effectiveBoundingRadius;
|
2020-04-22 21:50:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::BuildEffectiveShapes( PCB_LAYER_ID aLayer ) const
|
2008-04-18 13:28:56 +00:00
|
|
|
{
|
2020-12-28 19:47:47 +00:00
|
|
|
std::lock_guard<std::mutex> RAII_lock( m_shapesBuildingLock );
|
|
|
|
|
|
|
|
// If we had to wait for the lock then we were probably waiting for someone else to
|
|
|
|
// finish rebuilding the shapes. So check to see if they're clean now.
|
|
|
|
if( !m_shapesDirty )
|
|
|
|
return;
|
|
|
|
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* board = GetBoard();
|
|
|
|
int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF;
|
2020-10-13 10:55:24 +00:00
|
|
|
|
2020-09-17 16:32:42 +00:00
|
|
|
m_effectiveShape = std::make_shared<SHAPE_COMPOUND>();
|
2020-06-22 19:35:09 +00:00
|
|
|
m_effectiveHoleShape = nullptr;
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
auto add = [this]( SHAPE* aShape )
|
|
|
|
{
|
2020-09-17 16:32:42 +00:00
|
|
|
m_effectiveShape->AddShape( aShape );
|
2020-06-22 19:35:09 +00:00
|
|
|
};
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I shapePos = ShapePos(); // Fetch only once; rotation involves trig
|
2021-05-01 12:22:35 +00:00
|
|
|
PAD_SHAPE effectiveShape = GetShape();
|
2012-02-19 04:02:19 +00:00
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
if( GetShape() == PAD_SHAPE::CUSTOM )
|
2020-06-22 19:35:09 +00:00
|
|
|
effectiveShape = GetAnchorPadShape();
|
|
|
|
|
|
|
|
switch( effectiveShape )
|
2013-07-26 21:29:16 +00:00
|
|
|
{
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::CIRCLE:
|
2020-07-31 12:37:22 +00:00
|
|
|
add( new SHAPE_CIRCLE( shapePos, m_size.x / 2 ) );
|
2013-07-26 21:29:16 +00:00
|
|
|
break;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::OVAL:
|
2020-07-31 12:37:22 +00:00
|
|
|
if( m_size.x == m_size.y ) // the oval pad is in fact a circle
|
2021-07-19 23:56:05 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
add( new SHAPE_CIRCLE( shapePos, m_size.x / 2 ) );
|
2021-07-19 23:56:05 +00:00
|
|
|
}
|
2020-07-31 08:54:53 +00:00
|
|
|
else
|
|
|
|
{
|
2022-01-05 01:42:27 +00:00
|
|
|
VECTOR2I half_size = m_size / 2;
|
2020-07-31 08:54:53 +00:00
|
|
|
int half_width = std::min( half_size.x, half_size.y );
|
2022-01-01 17:11:21 +00:00
|
|
|
VECTOR2I half_len( half_size.x - half_width, half_size.y - half_width );
|
|
|
|
RotatePoint( half_len, m_orient );
|
2020-07-31 08:54:53 +00:00
|
|
|
add( new SHAPE_SEGMENT( shapePos - half_len, shapePos + half_len, half_width * 2 ) );
|
|
|
|
}
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
break;
|
2016-04-06 18:15:49 +00:00
|
|
|
|
2023-06-02 09:10:48 +00:00
|
|
|
case PAD_SHAPE::RECTANGLE:
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::TRAPEZOID:
|
|
|
|
case PAD_SHAPE::ROUNDRECT:
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2022-01-01 17:11:21 +00:00
|
|
|
int r = ( effectiveShape == PAD_SHAPE::ROUNDRECT ) ? GetRoundRectCornerRadius() : 0;
|
|
|
|
VECTOR2I half_size( m_size.x / 2, m_size.y / 2 );
|
2022-01-05 01:42:27 +00:00
|
|
|
VECTOR2I trap_delta( 0, 0 );
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2020-10-14 14:55:06 +00:00
|
|
|
if( r )
|
2020-09-24 09:05:56 +00:00
|
|
|
{
|
2022-01-01 17:11:21 +00:00
|
|
|
half_size -= VECTOR2I( r, r );
|
2020-09-24 09:05:56 +00:00
|
|
|
|
|
|
|
// Avoid degenerated shapes (0 length segments) that always create issues
|
|
|
|
// For roundrect pad very near a circle, use only a circle
|
2022-09-16 11:33:56 +00:00
|
|
|
const int min_len = pcbIUScale.mmToIU( 0.0001);
|
2020-09-24 09:05:56 +00:00
|
|
|
|
|
|
|
if( half_size.x < min_len && half_size.y < min_len )
|
|
|
|
{
|
|
|
|
add( new SHAPE_CIRCLE( shapePos, r ) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-05-01 12:22:35 +00:00
|
|
|
else if( effectiveShape == PAD_SHAPE::TRAPEZOID )
|
2020-10-14 14:55:06 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
trap_delta = m_deltaSize / 2;
|
2020-10-14 14:55:06 +00:00
|
|
|
}
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
SHAPE_LINE_CHAIN corners;
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
corners.Append( -half_size.x - trap_delta.y, half_size.y + trap_delta.x );
|
2020-07-31 12:37:21 +00:00
|
|
|
corners.Append( half_size.x + trap_delta.y, half_size.y - trap_delta.x );
|
|
|
|
corners.Append( half_size.x - trap_delta.y, -half_size.y + trap_delta.x );
|
|
|
|
corners.Append( -half_size.x + trap_delta.y, -half_size.y - trap_delta.x );
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2022-01-20 20:54:22 +00:00
|
|
|
corners.Rotate( m_orient );
|
2020-06-22 19:35:09 +00:00
|
|
|
corners.Move( shapePos );
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2020-10-14 14:55:06 +00:00
|
|
|
// GAL renders rectangles faster than 4-point polygons so it's worth checking if our
|
|
|
|
// body shape is a rectangle.
|
|
|
|
if( corners.PointCount() == 4
|
2021-01-09 20:43:59 +00:00
|
|
|
&&
|
|
|
|
( ( corners.CPoint( 0 ).y == corners.CPoint( 1 ).y
|
|
|
|
&& corners.CPoint( 1 ).x == corners.CPoint( 2 ).x
|
|
|
|
&& corners.CPoint( 2 ).y == corners.CPoint( 3 ).y
|
|
|
|
&& corners.CPoint( 3 ).x == corners.CPoint( 0 ).x )
|
|
|
|
||
|
|
|
|
( corners.CPoint( 0 ).x == corners.CPoint( 1 ).x
|
|
|
|
&& corners.CPoint( 1 ).y == corners.CPoint( 2 ).y
|
|
|
|
&& corners.CPoint( 2 ).x == corners.CPoint( 3 ).x
|
|
|
|
&& corners.CPoint( 3 ).y == corners.CPoint( 0 ).y )
|
|
|
|
)
|
|
|
|
)
|
2020-10-14 14:55:06 +00:00
|
|
|
{
|
2020-10-17 13:46:45 +00:00
|
|
|
int width = std::abs( corners.CPoint( 2 ).x - corners.CPoint( 0 ).x );
|
|
|
|
int height = std::abs( corners.CPoint( 2 ).y - corners.CPoint( 0 ).y );
|
|
|
|
VECTOR2I pos( std::min( corners.CPoint( 2 ).x, corners.CPoint( 0 ).x ),
|
|
|
|
std::min( corners.CPoint( 2 ).y, corners.CPoint( 0 ).y ) );
|
|
|
|
|
|
|
|
add( new SHAPE_RECT( pos, width, height ) );
|
2020-10-14 14:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
add( new SHAPE_SIMPLE( corners ) );
|
|
|
|
}
|
2017-04-24 11:54:53 +00:00
|
|
|
|
2020-10-14 14:55:06 +00:00
|
|
|
if( r )
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
|
|
|
add( new SHAPE_SEGMENT( corners.CPoint( 0 ), corners.CPoint( 1 ), r * 2 ) );
|
|
|
|
add( new SHAPE_SEGMENT( corners.CPoint( 1 ), corners.CPoint( 2 ), r * 2 ) );
|
|
|
|
add( new SHAPE_SEGMENT( corners.CPoint( 2 ), corners.CPoint( 3 ), r * 2 ) );
|
|
|
|
add( new SHAPE_SEGMENT( corners.CPoint( 3 ), corners.CPoint( 0 ), r * 2 ) );
|
|
|
|
}
|
|
|
|
}
|
2013-07-26 21:29:16 +00:00
|
|
|
break;
|
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::CHAMFERED_RECT:
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
|
|
|
SHAPE_POLY_SET outline;
|
|
|
|
|
2022-01-16 01:06:25 +00:00
|
|
|
TransformRoundChamferedRectToPolygon( outline, shapePos, GetSize(), m_orient,
|
2020-06-22 19:35:09 +00:00
|
|
|
GetRoundRectCornerRadius(), GetChamferRectRatio(),
|
2021-07-04 12:48:32 +00:00
|
|
|
GetChamferPositions(), 0, maxError, ERROR_INSIDE );
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
add( new SHAPE_SIMPLE( outline.COutline( 0 ) ) );
|
|
|
|
}
|
|
|
|
break;
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
default:
|
2022-02-04 22:44:59 +00:00
|
|
|
wxFAIL_MSG( wxT( "PAD::buildEffectiveShapes: Unsupported pad shape: " )
|
2020-06-30 12:41:59 +00:00
|
|
|
+ PAD_SHAPE_T_asString( effectiveShape ) );
|
2020-06-22 19:35:09 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
if( GetShape() == PAD_SHAPE::CUSTOM )
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
for( const std::shared_ptr<PCB_SHAPE>& primitive : m_editPrimitives )
|
2020-07-02 16:06:09 +00:00
|
|
|
{
|
|
|
|
for( SHAPE* shape : primitive->MakeEffectiveShapes() )
|
2020-07-07 09:40:35 +00:00
|
|
|
{
|
2022-01-20 20:54:22 +00:00
|
|
|
shape->Rotate( m_orient );
|
2020-07-02 16:06:09 +00:00
|
|
|
shape->Move( shapePos );
|
|
|
|
add( shape );
|
|
|
|
}
|
|
|
|
}
|
2020-06-22 19:35:09 +00:00
|
|
|
}
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
m_effectiveBoundingBox = m_effectiveShape->BBox();
|
2021-01-08 00:26:32 +00:00
|
|
|
|
|
|
|
// Hole shape
|
2022-01-05 01:42:27 +00:00
|
|
|
VECTOR2I half_size = m_drill / 2;
|
2022-01-01 17:11:21 +00:00
|
|
|
int half_width = std::min( half_size.x, half_size.y );
|
|
|
|
VECTOR2I half_len( half_size.x - half_width, half_size.y - half_width );
|
2021-01-08 00:26:32 +00:00
|
|
|
|
2022-01-01 17:11:21 +00:00
|
|
|
RotatePoint( half_len, m_orient );
|
2021-01-08 00:26:32 +00:00
|
|
|
|
|
|
|
m_effectiveHoleShape = std::make_shared<SHAPE_SEGMENT>( m_pos - half_len, m_pos + half_len,
|
|
|
|
half_width * 2 );
|
2022-08-31 09:15:42 +00:00
|
|
|
m_effectiveBoundingBox.Merge( m_effectiveHoleShape->BBox() );
|
2021-01-08 00:26:32 +00:00
|
|
|
|
|
|
|
// All done
|
|
|
|
m_shapesDirty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PAD::BuildEffectivePolygon() const
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> RAII_lock( m_polyBuildingLock );
|
|
|
|
|
|
|
|
// If we had to wait for the lock then we were probably waiting for someone else to
|
|
|
|
// finish rebuilding the shapes. So check to see if they're clean now.
|
|
|
|
if( !m_polyDirty )
|
|
|
|
return;
|
|
|
|
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* board = GetBoard();
|
|
|
|
int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF;
|
2021-01-08 00:26:32 +00:00
|
|
|
|
2020-07-25 11:58:17 +00:00
|
|
|
// Polygon
|
|
|
|
m_effectivePolygon = std::make_shared<SHAPE_POLY_SET>();
|
2022-10-21 12:48:45 +00:00
|
|
|
TransformShapeToPolygon( *m_effectivePolygon, UNDEFINED_LAYER, 0, maxError, ERROR_INSIDE );
|
2020-07-25 11:58:17 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
// Bounding radius
|
2020-06-22 19:35:09 +00:00
|
|
|
//
|
2020-08-12 21:18:13 +00:00
|
|
|
// PADSTACKS TODO: these will both need to cycle through all layers to get the largest
|
|
|
|
// values....
|
2020-07-25 11:58:17 +00:00
|
|
|
m_effectiveBoundingRadius = 0;
|
|
|
|
|
|
|
|
for( int cnt = 0; cnt < m_effectivePolygon->OutlineCount(); ++cnt )
|
|
|
|
{
|
|
|
|
const SHAPE_LINE_CHAIN& poly = m_effectivePolygon->COutline( cnt );
|
|
|
|
|
|
|
|
for( int ii = 0; ii < poly.PointCount(); ++ii )
|
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
int dist = KiROUND( ( poly.CPoint( ii ) - m_pos ).EuclideanNorm() );
|
2020-07-25 11:58:17 +00:00
|
|
|
m_effectiveBoundingRadius = std::max( m_effectiveBoundingRadius, dist );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
// All done
|
2021-01-08 00:26:32 +00:00
|
|
|
m_polyDirty = false;
|
2020-06-22 19:35:09 +00:00
|
|
|
}
|
2017-01-13 17:51:22 +00:00
|
|
|
|
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I PAD::GetBoundingBox() const
|
2020-06-22 19:35:09 +00:00
|
|
|
{
|
2020-07-01 15:23:59 +00:00
|
|
|
if( m_shapesDirty )
|
2020-08-12 21:18:13 +00:00
|
|
|
BuildEffectiveShapes( UNDEFINED_LAYER );
|
2008-07-31 15:30:57 +00:00
|
|
|
|
2020-07-01 15:23:59 +00:00
|
|
|
return m_effectiveBoundingBox;
|
2008-04-18 13:28:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-01 14:46:50 +00:00
|
|
|
void PAD::SetAttribute( PAD_ATTRIB aAttribute )
|
2013-02-13 01:01:22 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
m_attribute = aAttribute;
|
2013-02-13 01:01:22 +00:00
|
|
|
|
2021-05-01 14:46:50 +00:00
|
|
|
if( aAttribute == PAD_ATTRIB::SMD )
|
2022-01-05 01:42:27 +00:00
|
|
|
m_drill = VECTOR2I( 0, 0 );
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2013-02-13 01:01:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-01 14:58:30 +00:00
|
|
|
void PAD::SetProperty( PAD_PROP aProperty )
|
2019-12-11 10:36:45 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
m_property = aProperty;
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2019-12-11 10:36:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-13 13:45:48 +00:00
|
|
|
void PAD::SetOrientation( const EDA_ANGLE& aAngle )
|
2012-02-19 04:02:19 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
m_orient = aAngle;
|
2022-01-13 13:45:48 +00:00
|
|
|
m_orient.Normalize();
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2023-04-03 12:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PAD::SetFPRelativeOrientation( const EDA_ANGLE& aAngle )
|
|
|
|
{
|
|
|
|
if( FOOTPRINT* parentFP = GetParentFootprint() )
|
|
|
|
SetOrientation( aAngle + parentFP->GetOrientation() );
|
|
|
|
else
|
|
|
|
SetOrientation( aAngle );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EDA_ANGLE PAD::GetFPRelativeOrientation()
|
|
|
|
{
|
|
|
|
if( FOOTPRINT* parentFP = GetParentFootprint() )
|
|
|
|
return GetOrientation() - parentFP->GetOrientation();
|
|
|
|
else
|
|
|
|
return GetOrientation();
|
2012-02-19 04:02:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void PAD::Flip( const VECTOR2I& aCentre, bool aFlipLeftRight )
|
2012-02-19 04:02:19 +00:00
|
|
|
{
|
2019-07-12 21:02:10 +00:00
|
|
|
if( aFlipLeftRight )
|
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
MIRROR( m_pos.x, aCentre.x );
|
|
|
|
MIRROR( m_offset.x, 0 );
|
|
|
|
MIRROR( m_deltaSize.x, 0 );
|
2019-07-12 21:02:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
MIRROR( m_pos.y, aCentre.y );
|
|
|
|
MIRROR( m_offset.y, 0 );
|
|
|
|
MIRROR( m_deltaSize.y, 0 );
|
2019-07-12 21:02:10 +00:00
|
|
|
}
|
2012-02-19 04:02:19 +00:00
|
|
|
|
2023-04-03 13:06:35 +00:00
|
|
|
SetFPRelativeOrientation( -GetFPRelativeOrientation() );
|
2012-02-19 04:02:19 +00:00
|
|
|
|
2020-08-01 20:32:21 +00:00
|
|
|
auto mirrorBitFlags = []( int& aBitfield, int a, int b )
|
|
|
|
{
|
|
|
|
bool temp = aBitfield & a;
|
|
|
|
|
|
|
|
if( aBitfield & b )
|
|
|
|
aBitfield |= a;
|
|
|
|
else
|
|
|
|
aBitfield &= ~a;
|
|
|
|
|
|
|
|
if( temp )
|
|
|
|
aBitfield |= b;
|
|
|
|
else
|
|
|
|
aBitfield &= ~b;
|
|
|
|
};
|
|
|
|
|
|
|
|
if( aFlipLeftRight )
|
|
|
|
{
|
|
|
|
mirrorBitFlags( m_chamferPositions, RECT_CHAMFER_TOP_LEFT, RECT_CHAMFER_TOP_RIGHT );
|
|
|
|
mirrorBitFlags( m_chamferPositions, RECT_CHAMFER_BOTTOM_LEFT, RECT_CHAMFER_BOTTOM_RIGHT );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mirrorBitFlags( m_chamferPositions, RECT_CHAMFER_TOP_LEFT, RECT_CHAMFER_BOTTOM_LEFT );
|
|
|
|
mirrorBitFlags( m_chamferPositions, RECT_CHAMFER_TOP_RIGHT, RECT_CHAMFER_BOTTOM_RIGHT );
|
|
|
|
}
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
// flip pads layers
|
2015-12-27 15:51:13 +00:00
|
|
|
// PADS items are currently on all copper layers, or
|
|
|
|
// currently, only on Front or Back layers.
|
|
|
|
// So the copper layers count is not taken in account
|
2014-06-24 16:17:18 +00:00
|
|
|
SetLayerSet( FlipLayerMask( m_layerMask ) );
|
2012-02-19 04:02:19 +00:00
|
|
|
|
2017-01-13 17:51:22 +00:00
|
|
|
// Flip the basic shapes, in custom pads
|
2020-07-25 15:41:36 +00:00
|
|
|
FlipPrimitives( aFlipLeftRight );
|
2017-01-13 17:51:22 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2012-02-19 04:02:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::FlipPrimitives( bool aFlipLeftRight )
|
2017-01-13 17:51:22 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
for( std::shared_ptr<PCB_SHAPE>& primitive : m_editPrimitives )
|
2022-01-01 17:11:21 +00:00
|
|
|
primitive->Flip( VECTOR2I( 0, 0 ), aFlipLeftRight );
|
2019-01-17 04:55:40 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2019-01-17 04:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I PAD::ShapePos() const
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
if( m_offset.x == 0 && m_offset.y == 0 )
|
|
|
|
return m_pos;
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I loc_offset = m_offset;
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
RotatePoint( loc_offset, m_orient );
|
2007-08-30 08:15:05 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I shape_pos = m_pos + loc_offset;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
return shape_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-04-08 14:02:48 +00:00
|
|
|
bool PAD::IsOnCopperLayer() const
|
|
|
|
{
|
|
|
|
if( GetAttribute() == PAD_ATTRIB::NPTH )
|
|
|
|
{
|
|
|
|
// NPTH pads have no plated hole cylinder. If their annular ring size is 0 or
|
|
|
|
// negative, then they have no annular ring either.
|
|
|
|
|
|
|
|
switch( GetShape() )
|
|
|
|
{
|
|
|
|
case PAD_SHAPE::CIRCLE:
|
|
|
|
if( m_offset == VECTOR2I( 0, 0 ) && m_size.x <= m_drill.x )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD_SHAPE::OVAL:
|
|
|
|
if( m_offset == VECTOR2I( 0, 0 ) && m_size.x <= m_drill.x && m_size.y <= m_drill.y )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// We could subtract the hole polygon from the shape polygon for these, but it
|
|
|
|
// would be expensive and we're probably well out of the common use cases....
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ( GetLayerSet() & LSET::AllCuMask() ).any();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
int PAD::GetLocalClearanceOverrides( wxString* aSource ) const
|
2009-11-05 20:59:42 +00:00
|
|
|
{
|
2020-04-26 12:21:37 +00:00
|
|
|
// A pad can have specific clearance that overrides its NETCLASS clearance value
|
2020-05-29 12:36:45 +00:00
|
|
|
if( GetLocalClearance() )
|
|
|
|
return GetLocalClearance( aSource );
|
2009-11-05 20:59:42 +00:00
|
|
|
|
2020-04-26 12:21:37 +00:00
|
|
|
// A footprint can have a specific clearance value
|
2020-05-23 21:48:24 +00:00
|
|
|
if( GetParent() && GetParent()->GetLocalClearance() )
|
2020-05-29 12:36:45 +00:00
|
|
|
return GetParent()->GetLocalClearance( aSource );
|
2009-11-05 20:59:42 +00:00
|
|
|
|
2020-05-29 12:36:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
int PAD::GetLocalClearance( wxString* aSource ) const
|
2020-05-29 12:36:45 +00:00
|
|
|
{
|
|
|
|
if( aSource )
|
2021-08-21 00:58:21 +00:00
|
|
|
*aSource = _( "pad" );
|
2009-11-05 20:59:42 +00:00
|
|
|
|
2020-07-31 12:37:22 +00:00
|
|
|
return m_localClearance;
|
2009-11-05 20:59:42 +00:00
|
|
|
}
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2022-04-03 22:51:03 +00:00
|
|
|
int PAD::GetOwnClearance( PCB_LAYER_ID aLayer, wxString* aSource ) const
|
|
|
|
{
|
|
|
|
DRC_CONSTRAINT c;
|
|
|
|
|
|
|
|
if( GetBoard() && GetBoard()->GetDesignSettings().m_DRCEngine )
|
|
|
|
{
|
|
|
|
BOARD_DESIGN_SETTINGS& bds = GetBoard()->GetDesignSettings();
|
|
|
|
|
|
|
|
if( GetAttribute() == PAD_ATTRIB::NPTH )
|
|
|
|
c = bds.m_DRCEngine->EvalRules( HOLE_CLEARANCE_CONSTRAINT, this, nullptr, aLayer );
|
|
|
|
else
|
|
|
|
c = bds.m_DRCEngine->EvalRules( CLEARANCE_CONSTRAINT, this, nullptr, aLayer );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( c.Value().HasMin() )
|
|
|
|
{
|
|
|
|
if( aSource )
|
|
|
|
*aSource = c.GetName();
|
|
|
|
|
|
|
|
return c.Value().Min();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-22 22:05:47 +00:00
|
|
|
int PAD::GetSolderMaskExpansion() const
|
2009-11-04 19:08:08 +00:00
|
|
|
{
|
2018-05-02 08:31:10 +00:00
|
|
|
// Pads defined only on mask layers (and perhaps on other tech layers) use the shape
|
2023-05-06 20:28:49 +00:00
|
|
|
// defined by the pad settings only. ALL other pads, even those that don't actually have
|
|
|
|
// any copper (such as NPTH pads with holes the same size as the pad) get mask expansion.
|
|
|
|
if( ( m_layerMask & LSET::AllCuMask() ).none() )
|
2018-05-02 08:31:10 +00:00
|
|
|
return 0;
|
|
|
|
|
2021-08-22 22:05:47 +00:00
|
|
|
int margin = m_localSolderMaskMargin;
|
2018-05-02 08:31:10 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* parentFootprint = GetParent();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2020-11-13 02:57:11 +00:00
|
|
|
if( parentFootprint )
|
2009-11-04 19:08:08 +00:00
|
|
|
{
|
2010-01-31 20:01:46 +00:00
|
|
|
if( margin == 0 )
|
|
|
|
{
|
2020-11-13 02:57:11 +00:00
|
|
|
if( parentFootprint->GetLocalSolderMaskMargin() )
|
|
|
|
margin = parentFootprint->GetLocalSolderMaskMargin();
|
2010-01-31 20:01:46 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
if( margin == 0 )
|
|
|
|
{
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* brd = GetBoard();
|
2020-05-07 21:33:50 +00:00
|
|
|
|
2019-01-18 01:50:50 +00:00
|
|
|
if( brd )
|
2021-08-22 22:05:47 +00:00
|
|
|
margin = brd->GetDesignSettings().m_SolderMaskExpansion;
|
2010-01-31 20:01:46 +00:00
|
|
|
}
|
2009-11-04 19:08:08 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
// ensure mask have a size always >= 0
|
2009-11-04 19:08:08 +00:00
|
|
|
if( margin < 0 )
|
|
|
|
{
|
2020-07-31 12:37:22 +00:00
|
|
|
int minsize = -std::min( m_size.x, m_size.y ) / 2;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
if( margin < minsize )
|
2013-07-31 16:41:32 +00:00
|
|
|
margin = minsize;
|
2009-11-04 19:08:08 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
return margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-05 01:42:27 +00:00
|
|
|
VECTOR2I PAD::GetSolderPasteMargin() const
|
2009-11-04 19:08:08 +00:00
|
|
|
{
|
2018-05-02 08:31:10 +00:00
|
|
|
// Pads defined only on mask layers (and perhaps on other tech layers) use the shape
|
2023-05-06 20:28:49 +00:00
|
|
|
// defined by the pad settings only. ALL other pads, even those that don't actually have
|
|
|
|
// any copper (such as NPTH pads with holes the same size as the pad) get paste expansion.
|
|
|
|
if( ( m_layerMask & LSET::AllCuMask() ).none() )
|
2022-01-05 01:42:27 +00:00
|
|
|
return VECTOR2I( 0, 0 );
|
2018-05-02 08:31:10 +00:00
|
|
|
|
2020-07-31 12:37:22 +00:00
|
|
|
int margin = m_localSolderPasteMargin;
|
|
|
|
double mratio = m_localSolderPasteMarginRatio;
|
2018-05-02 08:31:10 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* parentFootprint = GetParent();
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2020-11-13 02:57:11 +00:00
|
|
|
if( parentFootprint )
|
2010-01-31 20:01:46 +00:00
|
|
|
{
|
2012-04-17 01:35:43 +00:00
|
|
|
if( margin == 0 )
|
2020-11-13 02:57:11 +00:00
|
|
|
margin = parentFootprint->GetLocalSolderPasteMargin();
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2019-01-20 03:32:50 +00:00
|
|
|
auto brd = GetBoard();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2019-01-20 03:32:50 +00:00
|
|
|
if( margin == 0 && brd )
|
2020-11-12 22:30:02 +00:00
|
|
|
margin = brd->GetDesignSettings().m_SolderPasteMargin;
|
2010-01-31 20:01:46 +00:00
|
|
|
|
|
|
|
if( mratio == 0.0 )
|
2020-11-13 02:57:11 +00:00
|
|
|
mratio = parentFootprint->GetLocalSolderPasteMarginRatio();
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2019-01-20 03:32:50 +00:00
|
|
|
if( mratio == 0.0 && brd )
|
2010-01-31 20:01:46 +00:00
|
|
|
{
|
2012-04-17 01:35:43 +00:00
|
|
|
mratio = brd->GetDesignSettings().m_SolderPasteMarginRatio;
|
2010-01-31 20:01:46 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2022-01-05 01:42:27 +00:00
|
|
|
VECTOR2I pad_margin;
|
2020-07-31 12:37:22 +00:00
|
|
|
pad_margin.x = margin + KiROUND( m_size.x * mratio );
|
|
|
|
pad_margin.y = margin + KiROUND( m_size.y * mratio );
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
// ensure mask have a size always >= 0
|
2020-07-31 12:37:22 +00:00
|
|
|
if( pad_margin.x < -m_size.x / 2 )
|
|
|
|
pad_margin.x = -m_size.x / 2;
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2020-07-31 12:37:22 +00:00
|
|
|
if( pad_margin.y < -m_size.y / 2 )
|
|
|
|
pad_margin.y = -m_size.y / 2;
|
2009-11-04 19:08:08 +00:00
|
|
|
|
|
|
|
return pad_margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
ZONE_CONNECTION PAD::GetLocalZoneConnectionOverride( wxString* aSource ) const
|
2012-02-24 23:23:46 +00:00
|
|
|
{
|
2021-08-08 13:37:14 +00:00
|
|
|
if( m_zoneConnection != ZONE_CONNECTION::INHERITED && aSource )
|
|
|
|
*aSource = _( "pad" );
|
2020-09-10 18:35:11 +00:00
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
return m_zoneConnection;
|
2012-02-24 23:23:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
int PAD::GetLocalSpokeWidthOverride( wxString* aSource ) const
|
2012-03-08 20:44:03 +00:00
|
|
|
{
|
2021-08-08 13:37:14 +00:00
|
|
|
if( m_thermalSpokeWidth > 0 && aSource )
|
2020-09-10 18:35:11 +00:00
|
|
|
*aSource = _( "pad" );
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
return m_thermalSpokeWidth;
|
2012-03-08 20:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
int PAD::GetLocalThermalGapOverride( wxString* aSource ) const
|
2012-03-08 20:44:03 +00:00
|
|
|
{
|
2021-08-08 13:37:14 +00:00
|
|
|
if( m_thermalGap > 0 && aSource )
|
2020-09-10 18:35:11 +00:00
|
|
|
*aSource = _( "pad" );
|
|
|
|
|
|
|
|
return m_thermalGap;
|
2012-03-08 20:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-11-30 14:35:48 +00:00
|
|
|
wxString msg;
|
|
|
|
FOOTPRINT* parentFootprint = static_cast<FOOTPRINT*>( m_parent );
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-10-31 16:32:24 +00:00
|
|
|
if( aFrame->GetName() == PCB_EDIT_FRAME_NAME )
|
|
|
|
{
|
|
|
|
if( parentFootprint )
|
|
|
|
aList.emplace_back( _( "Footprint" ), parentFootprint->GetReference() );
|
|
|
|
}
|
2009-12-07 03:46:13 +00:00
|
|
|
|
2021-08-23 23:10:21 +00:00
|
|
|
aList.emplace_back( _( "Pad" ), m_number );
|
2019-11-17 09:11:29 +00:00
|
|
|
|
|
|
|
if( !GetPinFunction().IsEmpty() )
|
2020-11-30 14:35:48 +00:00
|
|
|
aList.emplace_back( _( "Pin Name" ), GetPinFunction() );
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2021-01-21 21:46:03 +00:00
|
|
|
if( !GetPinType().IsEmpty() )
|
|
|
|
aList.emplace_back( _( "Pin Type" ), GetPinType() );
|
|
|
|
|
2021-10-31 16:32:24 +00:00
|
|
|
if( aFrame->GetName() == PCB_EDIT_FRAME_NAME )
|
|
|
|
{
|
|
|
|
aList.emplace_back( _( "Net" ), UnescapeString( GetNetname() ) );
|
2020-05-21 17:42:42 +00:00
|
|
|
|
2022-08-14 11:03:18 +00:00
|
|
|
aList.emplace_back( _( "Resolved Netclass" ),
|
|
|
|
UnescapeString( GetEffectiveNetClass()->GetName() ) );
|
2008-02-19 00:30:10 +00:00
|
|
|
|
2021-10-31 16:32:24 +00:00
|
|
|
if( IsLocked() )
|
|
|
|
aList.emplace_back( _( "Status" ), _( "Locked" ) );
|
|
|
|
}
|
2021-04-21 14:40:16 +00:00
|
|
|
|
2021-05-01 14:46:50 +00:00
|
|
|
if( GetAttribute() == PAD_ATTRIB::SMD || GetAttribute() == PAD_ATTRIB::CONN )
|
2021-01-03 23:09:04 +00:00
|
|
|
aList.emplace_back( _( "Layer" ), layerMaskDescribe() );
|
2019-12-11 10:36:45 +00:00
|
|
|
|
|
|
|
// Show the pad shape, attribute and property
|
|
|
|
wxString props = ShowPadAttr();
|
|
|
|
|
2021-05-01 14:58:30 +00:00
|
|
|
if( GetProperty() != PAD_PROP::NONE )
|
2019-12-11 10:36:45 +00:00
|
|
|
props += ',';
|
|
|
|
|
|
|
|
switch( GetProperty() )
|
|
|
|
{
|
2021-10-31 16:32:24 +00:00
|
|
|
case PAD_PROP::NONE: break;
|
|
|
|
case PAD_PROP::BGA: props += _( "BGA" ); break;
|
|
|
|
case PAD_PROP::FIDUCIAL_GLBL: props += _( "Fiducial global" ); break;
|
|
|
|
case PAD_PROP::FIDUCIAL_LOCAL: props += _( "Fiducial local" ); break;
|
|
|
|
case PAD_PROP::TESTPOINT: props += _( "Test point" ); break;
|
|
|
|
case PAD_PROP::HEATSINK: props += _( "Heat sink" ); break;
|
|
|
|
case PAD_PROP::CASTELLATED: props += _( "Castellated" ); break;
|
2019-12-11 10:36:45 +00:00
|
|
|
}
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2020-11-30 14:35:48 +00:00
|
|
|
aList.emplace_back( ShowPadShape(), props );
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2022-09-19 09:25:20 +00:00
|
|
|
if( ( GetShape() == PAD_SHAPE::CIRCLE || GetShape() == PAD_SHAPE::OVAL )
|
|
|
|
&& m_size.x == m_size.y )
|
2020-05-21 17:42:42 +00:00
|
|
|
{
|
2022-09-19 09:25:20 +00:00
|
|
|
aList.emplace_back( _( "Diameter" ), aFrame->MessageTextFromValue( m_size.x ) );
|
2020-05-21 17:42:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-19 09:25:20 +00:00
|
|
|
aList.emplace_back( _( "Width" ), aFrame->MessageTextFromValue( m_size.x ) );
|
|
|
|
aList.emplace_back( _( "Height" ), aFrame->MessageTextFromValue( m_size.y ) );
|
2020-05-21 17:42:42 +00:00
|
|
|
}
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2022-01-15 00:20:02 +00:00
|
|
|
EDA_ANGLE fp_orient = parentFootprint ? parentFootprint->GetOrientation() : ANGLE_0;
|
|
|
|
EDA_ANGLE pad_orient = GetOrientation() - fp_orient;
|
|
|
|
pad_orient.Normalize180();
|
2020-07-06 13:00:36 +00:00
|
|
|
|
2022-01-15 00:20:02 +00:00
|
|
|
if( !fp_orient.IsZero() )
|
|
|
|
msg.Printf( wxT( "%g(+ %g)" ), pad_orient.AsDegrees(), fp_orient.AsDegrees() );
|
2020-07-06 13:00:36 +00:00
|
|
|
else
|
2022-01-15 00:20:02 +00:00
|
|
|
msg.Printf( wxT( "%g" ), GetOrientation().AsDegrees() );
|
2020-07-06 13:00:36 +00:00
|
|
|
|
2020-11-30 14:35:48 +00:00
|
|
|
aList.emplace_back( _( "Rotation" ), msg );
|
2020-07-06 13:00:36 +00:00
|
|
|
|
2020-05-21 17:42:42 +00:00
|
|
|
if( GetPadToDieLength() )
|
|
|
|
{
|
2022-09-19 09:25:20 +00:00
|
|
|
aList.emplace_back( _( "Length in Package" ),
|
|
|
|
aFrame->MessageTextFromValue( GetPadToDieLength() ) );
|
2020-05-21 17:42:42 +00:00
|
|
|
}
|
|
|
|
|
2020-11-30 14:35:48 +00:00
|
|
|
if( m_drill.x > 0 || m_drill.y > 0 )
|
2007-08-07 06:21:19 +00:00
|
|
|
{
|
2020-11-30 14:35:48 +00:00
|
|
|
if( GetDrillShape() == PAD_DRILL_SHAPE_CIRCLE )
|
|
|
|
{
|
2021-01-11 13:46:00 +00:00
|
|
|
aList.emplace_back( _( "Hole" ),
|
2022-02-04 22:44:59 +00:00
|
|
|
wxString::Format( wxT( "%s" ),
|
2022-09-19 09:25:20 +00:00
|
|
|
aFrame->MessageTextFromValue( m_drill.x ) ) );
|
2020-11-30 14:35:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-11 13:46:00 +00:00
|
|
|
aList.emplace_back( _( "Hole X / Y" ),
|
2022-02-04 22:44:59 +00:00
|
|
|
wxString::Format( wxT( "%s / %s" ),
|
2022-09-19 09:25:20 +00:00
|
|
|
aFrame->MessageTextFromValue( m_drill.x ),
|
|
|
|
aFrame->MessageTextFromValue( m_drill.y ) ) );
|
2020-11-30 14:35:48 +00:00
|
|
|
}
|
2007-08-07 06:21:19 +00:00
|
|
|
}
|
|
|
|
|
2020-05-21 17:42:42 +00:00
|
|
|
wxString source;
|
2022-02-18 10:12:11 +00:00
|
|
|
int clearance = GetOwnClearance( UNDEFINED_LAYER, &source );
|
2020-04-30 14:57:24 +00:00
|
|
|
|
2021-10-31 16:32:24 +00:00
|
|
|
if( !source.IsEmpty() )
|
|
|
|
{
|
|
|
|
aList.emplace_back( wxString::Format( _( "Min Clearance: %s" ),
|
2022-09-19 09:25:20 +00:00
|
|
|
aFrame->MessageTextFromValue( clearance ) ),
|
2021-10-31 16:32:24 +00:00
|
|
|
wxString::Format( _( "(from %s)" ),
|
|
|
|
source ) );
|
|
|
|
}
|
2021-03-30 09:38:03 +00:00
|
|
|
#if 0
|
|
|
|
// useful for debug only
|
2022-02-03 21:47:10 +00:00
|
|
|
aList.emplace_back( wxT( "UUID" ), m_Uuid.AsString() );
|
2021-03-30 09:38:03 +00:00
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2007-08-07 06:21:19 +00:00
|
|
|
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool PAD::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
2007-08-08 03:50:44 +00:00
|
|
|
{
|
2020-06-22 19:35:09 +00:00
|
|
|
VECTOR2I delta = aPosition - GetPosition();
|
|
|
|
int boundingRadius = GetBoundingRadius() + aAccuracy;
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
if( delta.SquaredEuclideanNorm() > SEG::Square( boundingRadius ) )
|
2007-08-08 03:50:44 +00:00
|
|
|
return false;
|
|
|
|
|
2020-07-25 11:58:17 +00:00
|
|
|
return GetEffectivePolygon()->Contains( aPosition, -1, aAccuracy );
|
2007-08-08 03:50:44 +00:00
|
|
|
}
|
|
|
|
|
2017-05-10 09:40:49 +00:00
|
|
|
|
2022-08-31 09:33:46 +00:00
|
|
|
bool PAD::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const
|
2017-04-22 06:49:15 +00:00
|
|
|
{
|
2022-08-31 09:33:46 +00:00
|
|
|
BOX2I arect = aRect;
|
2017-04-22 06:49:15 +00:00
|
|
|
arect.Normalize();
|
|
|
|
arect.Inflate( aAccuracy );
|
|
|
|
|
2022-08-31 09:33:46 +00:00
|
|
|
BOX2I bbox = GetBoundingBox();
|
2017-04-22 06:49:15 +00:00
|
|
|
|
2021-06-30 21:35:48 +00:00
|
|
|
if( aContained )
|
|
|
|
{
|
|
|
|
return arect.Contains( bbox );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Fast test: if aRect is outside the polygon bounding box,
|
|
|
|
// rectangles cannot intersect
|
|
|
|
if( !arect.Intersects( bbox ) )
|
|
|
|
return false;
|
2017-04-23 00:06:56 +00:00
|
|
|
|
2021-06-30 21:35:48 +00:00
|
|
|
const std::shared_ptr<SHAPE_POLY_SET>& poly = GetEffectivePolygon();
|
2017-04-22 06:49:15 +00:00
|
|
|
|
2021-06-30 21:35:48 +00:00
|
|
|
int count = poly->TotalVertices();
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2021-06-30 21:35:48 +00:00
|
|
|
for( int ii = 0; ii < count; ii++ )
|
|
|
|
{
|
2022-01-01 17:11:21 +00:00
|
|
|
VECTOR2I vertex = poly->CVertex( ii );
|
|
|
|
VECTOR2I vertexNext = poly->CVertex( ( ii + 1 ) % count );
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2021-06-30 21:35:48 +00:00
|
|
|
// Test if the point is within aRect
|
2022-01-01 17:11:21 +00:00
|
|
|
if( arect.Contains( vertex ) )
|
2021-06-30 21:35:48 +00:00
|
|
|
return true;
|
2017-04-26 09:05:44 +00:00
|
|
|
|
2021-06-30 21:35:48 +00:00
|
|
|
// Test if this edge intersects aRect
|
2022-01-01 17:11:21 +00:00
|
|
|
if( arect.Intersects( vertex, vertexNext ) )
|
2021-06-30 21:35:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2017-04-22 06:49:15 +00:00
|
|
|
}
|
2007-08-08 03:50:44 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
int PAD::Compare( const PAD* aPadRef, const PAD* aPadCmp )
|
2008-01-24 21:50:12 +00:00
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
int diff;
|
2008-01-24 21:50:12 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = static_cast<int>( aPadRef->GetShape() ) -
|
|
|
|
static_cast<int>( aPadCmp->GetShape() ) ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = static_cast<int>( aPadRef->m_attribute ) -
|
|
|
|
static_cast<int>( aPadCmp->m_attribute ) ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_drillShape - aPadCmp->m_drillShape ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_drill.x - aPadCmp->m_drill.x ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_drill.y - aPadCmp->m_drill.y ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_size.x - aPadCmp->m_size.x ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_size.y - aPadCmp->m_size.y ) != 0 )
|
2011-12-02 15:09:57 +00:00
|
|
|
return diff;
|
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_offset.x - aPadCmp->m_offset.x ) != 0 )
|
2011-12-02 15:09:57 +00:00
|
|
|
return diff;
|
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_offset.y - aPadCmp->m_offset.y ) != 0 )
|
2011-12-02 15:09:57 +00:00
|
|
|
return diff;
|
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_deltaSize.x - aPadCmp->m_deltaSize.x ) != 0 )
|
2008-01-24 21:50:12 +00:00
|
|
|
return diff;
|
|
|
|
|
2021-11-24 17:52:17 +00:00
|
|
|
if( ( diff = aPadRef->m_deltaSize.y - aPadCmp->m_deltaSize.y ) != 0 )
|
|
|
|
return diff;
|
|
|
|
|
|
|
|
if( ( diff = aPadRef->m_roundedCornerScale - aPadCmp->m_roundedCornerScale ) != 0 )
|
|
|
|
return diff;
|
|
|
|
|
|
|
|
if( ( diff = aPadRef->m_chamferPositions - aPadCmp->m_chamferPositions ) != 0 )
|
|
|
|
return diff;
|
|
|
|
|
|
|
|
if( ( diff = aPadRef->m_chamferScale - aPadCmp->m_chamferScale ) != 0 )
|
|
|
|
return diff;
|
|
|
|
|
|
|
|
if( ( diff = static_cast<int>( aPadRef->m_editPrimitives.size() ) -
|
|
|
|
static_cast<int>( aPadCmp->m_editPrimitives.size() ) ) != 0 )
|
|
|
|
return diff;
|
|
|
|
|
|
|
|
// @todo: Compare custom pad primitives for pads that have the same number of primitives
|
|
|
|
// here. Currently there is no compare function for PCB_SHAPE objects.
|
2016-04-06 18:15:49 +00:00
|
|
|
|
2011-12-02 16:55:31 +00:00
|
|
|
// Dick: specctra_export needs this
|
|
|
|
// Lorenzo: gencad also needs it to implement padstacks!
|
2014-06-24 16:17:18 +00:00
|
|
|
|
|
|
|
#if __cplusplus >= 201103L
|
2021-11-24 17:52:17 +00:00
|
|
|
long long d = aPadRef->m_layerMask.to_ullong() - aPadCmp->m_layerMask.to_ullong();
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( d < 0 )
|
|
|
|
return -1;
|
|
|
|
else if( d > 0 )
|
|
|
|
return 1;
|
2008-01-24 21:50:12 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-06-24 16:17:18 +00:00
|
|
|
#else
|
|
|
|
// these strings are not typically constructed, since we don't get here often.
|
2021-11-24 17:52:17 +00:00
|
|
|
std::string s1 = aPadRef->m_layerMask.to_string();
|
|
|
|
std::string s2 = aPadCmp->m_layerMask.to_string();
|
2014-06-24 16:17:18 +00:00
|
|
|
return s1.compare( s2 );
|
|
|
|
#endif
|
2008-01-24 21:50:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-13 19:32:00 +00:00
|
|
|
void PAD::Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle )
|
2014-07-09 11:50:27 +00:00
|
|
|
{
|
2022-01-01 06:04:08 +00:00
|
|
|
RotatePoint( m_pos, aRotCentre, aAngle );
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2022-01-13 19:32:00 +00:00
|
|
|
m_orient += aAngle;
|
2022-01-13 13:45:48 +00:00
|
|
|
m_orient.Normalize();
|
2015-02-28 17:39:05 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2014-07-09 11:50:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
wxString PAD::ShowPadShape() const
|
2008-01-24 21:50:12 +00:00
|
|
|
{
|
2014-01-26 14:20:58 +00:00
|
|
|
switch( GetShape() )
|
2008-01-24 21:50:12 +00:00
|
|
|
{
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::CIRCLE: return _( "Circle" );
|
|
|
|
case PAD_SHAPE::OVAL: return _( "Oval" );
|
2023-06-02 09:10:48 +00:00
|
|
|
case PAD_SHAPE::RECTANGLE: return _( "Rect" );
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::TRAPEZOID: return _( "Trap" );
|
|
|
|
case PAD_SHAPE::ROUNDRECT: return _( "Roundrect" );
|
|
|
|
case PAD_SHAPE::CHAMFERED_RECT: return _( "Chamferedrect" );
|
|
|
|
case PAD_SHAPE::CUSTOM: return _( "CustomShape" );
|
2021-07-19 23:56:05 +00:00
|
|
|
default: return wxT( "???" );
|
2008-01-24 21:50:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
wxString PAD::ShowPadAttr() const
|
2008-01-24 21:50:12 +00:00
|
|
|
{
|
2012-02-19 04:02:19 +00:00
|
|
|
switch( GetAttribute() )
|
2008-01-24 21:50:12 +00:00
|
|
|
{
|
2021-05-01 14:46:50 +00:00
|
|
|
case PAD_ATTRIB::PTH: return _( "PTH" );
|
|
|
|
case PAD_ATTRIB::SMD: return _( "SMD" );
|
|
|
|
case PAD_ATTRIB::CONN: return _( "Conn" );
|
|
|
|
case PAD_ATTRIB::NPTH: return _( "NPTH" );
|
2021-07-19 23:56:05 +00:00
|
|
|
default: return wxT( "???" );
|
2008-01-24 21:50:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 03:27:44 +00:00
|
|
|
wxString PAD::GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const
|
2011-07-14 15:42:44 +00:00
|
|
|
{
|
2021-08-23 23:10:21 +00:00
|
|
|
if( GetNumber().IsEmpty() )
|
2013-04-07 11:55:18 +00:00
|
|
|
{
|
2021-05-01 14:46:50 +00:00
|
|
|
if( GetAttribute() == PAD_ATTRIB::SMD || GetAttribute() == PAD_ATTRIB::CONN )
|
2021-01-03 23:09:04 +00:00
|
|
|
{
|
2021-10-28 23:02:49 +00:00
|
|
|
return wxString::Format( _( "Pad %s of %s on %s" ),
|
|
|
|
GetNetnameMsg(),
|
2021-01-03 23:09:04 +00:00
|
|
|
GetParent()->GetReference(),
|
|
|
|
layerMaskDescribe() );
|
|
|
|
}
|
2022-08-29 15:30:06 +00:00
|
|
|
else if( GetAttribute() == PAD_ATTRIB::NPTH )
|
2021-12-08 23:12:33 +00:00
|
|
|
{
|
2022-08-29 15:30:06 +00:00
|
|
|
return wxString::Format( _( "NPTH pad of %s" ), GetParent()->GetReference() );
|
2021-12-08 23:12:33 +00:00
|
|
|
}
|
2021-01-03 23:09:04 +00:00
|
|
|
else
|
|
|
|
{
|
2022-08-29 15:30:06 +00:00
|
|
|
return wxString::Format( _( "PTH pad %s of %s" ),
|
2021-10-28 23:02:49 +00:00
|
|
|
GetNetnameMsg(),
|
2021-01-03 23:09:04 +00:00
|
|
|
GetParent()->GetReference() );
|
|
|
|
}
|
2013-04-07 11:55:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-05-01 14:46:50 +00:00
|
|
|
if( GetAttribute() == PAD_ATTRIB::SMD || GetAttribute() == PAD_ATTRIB::CONN )
|
2021-01-03 23:09:04 +00:00
|
|
|
{
|
2021-10-28 23:02:49 +00:00
|
|
|
return wxString::Format( _( "Pad %s %s of %s on %s" ),
|
2021-08-23 23:10:21 +00:00
|
|
|
GetNumber(),
|
2021-10-28 23:02:49 +00:00
|
|
|
GetNetnameMsg(),
|
2021-01-03 23:09:04 +00:00
|
|
|
GetParent()->GetReference(),
|
|
|
|
layerMaskDescribe() );
|
|
|
|
}
|
2022-08-29 15:30:06 +00:00
|
|
|
else if( GetAttribute() == PAD_ATTRIB::NPTH )
|
2021-12-08 23:12:33 +00:00
|
|
|
{
|
2022-08-29 15:30:06 +00:00
|
|
|
return wxString::Format( _( "NPTH of %s" ), GetParent()->GetReference() );
|
2021-12-08 23:12:33 +00:00
|
|
|
}
|
2021-01-03 23:09:04 +00:00
|
|
|
else
|
|
|
|
{
|
2022-08-29 15:30:06 +00:00
|
|
|
return wxString::Format( _( "PTH pad %s %s of %s" ),
|
2021-08-23 23:10:21 +00:00
|
|
|
GetNumber(),
|
2021-10-28 23:02:49 +00:00
|
|
|
GetNetnameMsg(),
|
2021-01-03 23:09:04 +00:00
|
|
|
GetParent()->GetReference() );
|
|
|
|
}
|
2013-04-07 11:55:18 +00:00
|
|
|
}
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
|
|
|
|
2013-04-25 16:29:35 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS PAD::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::pad;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
EDA_ITEM* PAD::Clone() const
|
2012-01-14 19:50:32 +00:00
|
|
|
{
|
2020-11-12 22:30:02 +00:00
|
|
|
return new PAD( *this );
|
2012-01-14 19:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::ViewGetLayers( int aLayers[], int& aCount ) const
|
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
|
|
|
{
|
2013-07-08 09:30:50 +00:00
|
|
|
aCount = 0;
|
|
|
|
|
2017-11-29 08:48:41 +00:00
|
|
|
// These 2 types of pads contain a hole
|
2021-05-01 14:46:50 +00:00
|
|
|
if( m_attribute == PAD_ATTRIB::PTH )
|
2021-01-30 14:41:31 +00:00
|
|
|
{
|
|
|
|
aLayers[aCount++] = LAYER_PAD_PLATEDHOLES;
|
|
|
|
aLayers[aCount++] = LAYER_PAD_HOLEWALLS;
|
|
|
|
}
|
2017-11-29 08:48:41 +00:00
|
|
|
|
2021-05-01 14:46:50 +00:00
|
|
|
if( m_attribute == PAD_ATTRIB::NPTH )
|
2017-11-29 08:48:41 +00:00
|
|
|
aLayers[aCount++] = LAYER_NON_PLATEDHOLES;
|
2013-07-26 16:15:11 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( IsOnLayer( F_Cu ) && IsOnLayer( B_Cu ) )
|
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
|
|
|
{
|
2013-07-16 11:40:53 +00:00
|
|
|
// Multi layer pad
|
2017-11-29 08:48:41 +00:00
|
|
|
aLayers[aCount++] = LAYER_PADS_TH;
|
2021-01-30 14:41:31 +00:00
|
|
|
aLayers[aCount++] = LAYER_PAD_NETNAMES;
|
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
|
|
|
}
|
2014-06-24 16:17:18 +00:00
|
|
|
else if( IsOnLayer( F_Cu ) )
|
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
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
aLayers[aCount++] = LAYER_PAD_FR;
|
2019-05-27 15:23:40 +00:00
|
|
|
|
|
|
|
// Is this a PTH pad that has only front copper? If so, we need to also display the
|
|
|
|
// net name on the PTH netname layer so that it isn't blocked by the drill hole.
|
2021-05-01 14:46:50 +00:00
|
|
|
if( m_attribute == PAD_ATTRIB::PTH )
|
2021-01-30 14:41:31 +00:00
|
|
|
aLayers[aCount++] = LAYER_PAD_NETNAMES;
|
2019-05-27 15:23:40 +00:00
|
|
|
else
|
|
|
|
aLayers[aCount++] = LAYER_PAD_FR_NETNAMES;
|
2013-07-16 11:40:53 +00:00
|
|
|
}
|
2014-06-24 16:17:18 +00:00
|
|
|
else if( IsOnLayer( B_Cu ) )
|
2013-07-16 11:40:53 +00:00
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
aLayers[aCount++] = LAYER_PAD_BK;
|
2019-05-27 15:23:40 +00:00
|
|
|
|
|
|
|
// Is this a PTH pad that has only back copper? If so, we need to also display the
|
|
|
|
// net name on the PTH netname layer so that it isn't blocked by the drill hole.
|
2021-05-01 14:46:50 +00:00
|
|
|
if( m_attribute == PAD_ATTRIB::PTH )
|
2021-01-30 14:41:31 +00:00
|
|
|
aLayers[aCount++] = LAYER_PAD_NETNAMES;
|
2019-05-27 15:23:40 +00:00
|
|
|
else
|
|
|
|
aLayers[aCount++] = LAYER_PAD_BK_NETNAMES;
|
2014-03-08 19:07:35 +00:00
|
|
|
}
|
2020-05-02 17:10:22 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Internal layers only. (Not yet supported in GUI, but is being used by Python
|
|
|
|
// footprint generators and will be needed anyway once pad stacks are supported.)
|
|
|
|
for ( int internal = In1_Cu; internal < In30_Cu; ++internal )
|
|
|
|
{
|
|
|
|
if( IsOnLayer( (PCB_LAYER_ID) internal ) )
|
|
|
|
aLayers[aCount++] = internal;
|
|
|
|
}
|
|
|
|
}
|
2014-03-08 19:07:35 +00:00
|
|
|
|
2015-05-26 14:33:46 +00:00
|
|
|
// Check non-copper layers. This list should include all the layers that the
|
|
|
|
// footprint editor allows a pad to be placed on.
|
2017-03-13 03:19:33 +00:00
|
|
|
static const PCB_LAYER_ID layers_mech[] = { F_Mask, B_Mask, F_Paste, B_Paste,
|
2015-05-26 14:33:46 +00:00
|
|
|
F_Adhes, B_Adhes, F_SilkS, B_SilkS, Dwgs_User, Eco1_User, Eco2_User };
|
2014-03-08 19:07:35 +00:00
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
for( PCB_LAYER_ID each_layer : layers_mech )
|
2015-05-26 14:33:46 +00:00
|
|
|
{
|
|
|
|
if( IsOnLayer( each_layer ) )
|
|
|
|
aLayers[aCount++] = each_layer;
|
|
|
|
}
|
2014-03-08 19:07:35 +00:00
|
|
|
|
2021-10-13 16:15:48 +00:00
|
|
|
#ifdef DEBUG
|
2014-03-08 19:07:35 +00:00
|
|
|
if( aCount == 0 ) // Should not occur
|
2013-07-16 11:40:53 +00:00
|
|
|
{
|
2015-05-26 14:33:46 +00:00
|
|
|
wxString msg;
|
|
|
|
msg.Printf( wxT( "footprint %s, pad %s: could not find valid layer for pad" ),
|
2023-02-12 21:46:08 +00:00
|
|
|
GetParent() ? GetParent()->GetReference() : wxString( wxT( "<null>" ) ),
|
|
|
|
GetNumber().IsEmpty() ? wxString(wxT( "(unnumbered)" ) ) : GetNumber() );
|
2021-10-13 16:15:48 +00:00
|
|
|
wxLogDebug( msg );
|
2013-07-16 11:40:53 +00:00
|
|
|
}
|
2013-06-21 10:02:17 +00:00
|
|
|
#endif
|
2013-07-08 09:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
double PAD::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const
|
2013-07-08 09:30:50 +00:00
|
|
|
{
|
2021-01-30 14:41:31 +00:00
|
|
|
constexpr double HIDE = std::numeric_limits<double>::max();
|
|
|
|
|
|
|
|
PCB_PAINTER* painter = static_cast<PCB_PAINTER*>( aView->GetPainter() );
|
|
|
|
PCB_RENDER_SETTINGS* renderSettings = painter->GetSettings();
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* board = GetBoard();
|
2018-12-22 12:44:49 +00:00
|
|
|
|
2020-07-11 17:42:00 +00:00
|
|
|
// Meta control for hiding all pads
|
|
|
|
if( !aView->IsLayerVisible( LAYER_PADS ) )
|
|
|
|
return HIDE;
|
|
|
|
|
2018-02-17 18:03:22 +00:00
|
|
|
// Handle Render tab switches
|
2021-05-01 14:46:50 +00:00
|
|
|
if( ( GetAttribute() == PAD_ATTRIB::PTH || GetAttribute() == PAD_ATTRIB::NPTH )
|
2018-02-17 18:03:22 +00:00
|
|
|
&& !aView->IsLayerVisible( LAYER_PADS_TH ) )
|
2021-01-30 14:41:31 +00:00
|
|
|
{
|
2018-02-17 18:03:22 +00:00
|
|
|
return HIDE;
|
2021-01-30 14:41:31 +00:00
|
|
|
}
|
2018-02-17 18:03:22 +00:00
|
|
|
|
|
|
|
if( !IsFlipped() && !aView->IsLayerVisible( LAYER_MOD_FR ) )
|
|
|
|
return HIDE;
|
|
|
|
|
|
|
|
if( IsFlipped() && !aView->IsLayerVisible( LAYER_MOD_BK ) )
|
|
|
|
return HIDE;
|
|
|
|
|
2020-08-23 17:11:47 +00:00
|
|
|
if( IsFrontLayer( (PCB_LAYER_ID) aLayer ) && !aView->IsLayerVisible( LAYER_PAD_FR ) )
|
2018-02-17 18:03:22 +00:00
|
|
|
return HIDE;
|
|
|
|
|
2020-08-23 17:11:47 +00:00
|
|
|
if( IsBackLayer( (PCB_LAYER_ID) aLayer ) && !aView->IsLayerVisible( LAYER_PAD_BK ) )
|
2018-02-17 18:03:22 +00:00
|
|
|
return HIDE;
|
|
|
|
|
2022-10-18 12:00:37 +00:00
|
|
|
LSET visible = board->GetVisibleLayers() & board->GetEnabledLayers();
|
2022-09-22 17:04:17 +00:00
|
|
|
|
2022-10-18 12:00:37 +00:00
|
|
|
if( IsHoleLayer( aLayer ) )
|
2021-02-01 16:03:05 +00:00
|
|
|
{
|
|
|
|
if( !( visible & LSET::PhysicalLayersMask() ).any() )
|
|
|
|
return HIDE;
|
|
|
|
}
|
|
|
|
else if( IsNetnameLayer( aLayer ) )
|
2013-07-08 09:30:50 +00:00
|
|
|
{
|
2021-01-30 14:41:31 +00:00
|
|
|
if( renderSettings->GetHighContrast() )
|
|
|
|
{
|
2021-02-01 16:03:05 +00:00
|
|
|
// Hide netnames unless pad is flashed to a high-contrast layer
|
2021-01-30 14:41:31 +00:00
|
|
|
if( !FlashLayer( renderSettings->GetPrimaryHighContrastLayer() ) )
|
|
|
|
return HIDE;
|
|
|
|
}
|
2021-02-01 16:03:05 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Hide netnames unless pad is flashed to a visible layer
|
|
|
|
if( !FlashLayer( visible ) )
|
|
|
|
return HIDE;
|
|
|
|
}
|
2021-01-30 14:41:31 +00:00
|
|
|
|
|
|
|
// Netnames will be shown only if zoom is appropriate
|
2020-07-01 15:23:59 +00:00
|
|
|
int divisor = std::min( GetBoundingBox().GetWidth(), GetBoundingBox().GetHeight() );
|
2017-02-11 08:18:02 +00:00
|
|
|
|
2022-10-18 12:00:37 +00:00
|
|
|
// Pad sizes can be zero briefly when someone is typing a number like "0.5" in the pad
|
|
|
|
// properties dialog
|
2017-02-11 08:18:02 +00:00
|
|
|
if( divisor == 0 )
|
2018-02-17 18:03:22 +00:00
|
|
|
return HIDE;
|
2014-07-27 19:00:39 +00:00
|
|
|
|
2022-09-16 11:33:56 +00:00
|
|
|
return ( double ) pcbIUScale.mmToIU( 5 ) / divisor;
|
2013-07-08 09:30:50 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 14:41:31 +00:00
|
|
|
// Passed all tests; show.
|
2020-09-24 16:48:49 +00:00
|
|
|
return 0.0;
|
2013-07-08 09:30:50 +00:00
|
|
|
}
|
2013-07-26 16:15:11 +00:00
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
const BOX2I PAD::ViewBBox() const
|
2013-07-26 16:15:11 +00:00
|
|
|
{
|
2022-10-18 12:00:37 +00:00
|
|
|
// Bounding box includes soldermask too. Remember mask and/or paste margins can be < 0
|
2022-08-31 16:17:14 +00:00
|
|
|
int solderMaskMargin = std::max( GetSolderMaskExpansion(), 0 );
|
2013-07-31 12:51:20 +00:00
|
|
|
VECTOR2I solderPasteMargin = VECTOR2D( GetSolderPasteMargin() );
|
2022-08-31 16:17:14 +00:00
|
|
|
BOX2I bbox = GetBoundingBox();
|
2022-11-28 13:19:36 +00:00
|
|
|
int clearance = 0;
|
2013-07-31 12:51:20 +00:00
|
|
|
|
2022-11-28 13:19:36 +00:00
|
|
|
// If we're drawing clearance lines then get the biggest possible clearance
|
|
|
|
if( PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() ) )
|
|
|
|
{
|
|
|
|
if( cfg && cfg->m_Display.m_PadClearance && GetBoard() )
|
|
|
|
clearance = GetBoard()->GetDesignSettings().GetBiggestClearanceValue();
|
|
|
|
}
|
2021-02-24 03:15:39 +00:00
|
|
|
|
2013-07-31 12:51:20 +00:00
|
|
|
// Look for the biggest possible bounding box
|
2021-02-24 03:15:39 +00:00
|
|
|
int xMargin = std::max( solderMaskMargin, solderPasteMargin.x ) + clearance;
|
|
|
|
int yMargin = std::max( solderMaskMargin, solderPasteMargin.y ) + clearance;
|
2013-07-26 16:15:11 +00:00
|
|
|
|
2013-07-31 12:51:20 +00:00
|
|
|
return BOX2I( VECTOR2I( bbox.GetOrigin() ) - VECTOR2I( xMargin, yMargin ),
|
|
|
|
VECTOR2I( bbox.GetSize() ) + VECTOR2I( 2 * xMargin, 2 * yMargin ) );
|
2013-07-26 16:15:11 +00:00
|
|
|
}
|
2016-12-31 11:56:00 +00:00
|
|
|
|
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* PAD::GetParent() const
|
2020-10-20 00:54:58 +00:00
|
|
|
{
|
2022-07-09 22:30:52 +00:00
|
|
|
return dyn_cast<FOOTPRINT*>( m_parent );
|
2020-10-20 00:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
void PAD::ImportSettingsFrom( const PAD& aMasterPad )
|
2017-02-10 19:44:02 +00:00
|
|
|
{
|
|
|
|
SetShape( aMasterPad.GetShape() );
|
|
|
|
SetLayerSet( aMasterPad.GetLayerSet() );
|
|
|
|
SetAttribute( aMasterPad.GetAttribute() );
|
2019-12-11 10:36:45 +00:00
|
|
|
SetProperty( aMasterPad.GetProperty() );
|
2017-02-10 19:44:02 +00:00
|
|
|
|
2022-01-13 13:45:48 +00:00
|
|
|
// I am not sure the m_LengthPadToDie should be imported, because this is a parameter
|
|
|
|
// really specific to a given pad (JPC).
|
2021-10-19 23:36:11 +00:00
|
|
|
#if 0
|
2020-07-25 06:29:33 +00:00
|
|
|
SetPadToDieLength( aMasterPad.GetPadToDieLength() );
|
2021-10-19 23:36:11 +00:00
|
|
|
#endif
|
2020-07-25 06:29:33 +00:00
|
|
|
|
2022-01-13 13:45:48 +00:00
|
|
|
// The pad orientation, for historical reasons is the pad rotation + parent rotation.
|
|
|
|
EDA_ANGLE pad_rot = aMasterPad.GetOrientation();
|
2017-02-10 19:44:02 +00:00
|
|
|
|
|
|
|
if( aMasterPad.GetParent() )
|
2022-01-13 17:27:36 +00:00
|
|
|
pad_rot -= aMasterPad.GetParent()->GetOrientation();
|
2017-02-10 19:44:02 +00:00
|
|
|
|
|
|
|
if( GetParent() )
|
2022-01-13 17:27:36 +00:00
|
|
|
pad_rot += GetParent()->GetOrientation();
|
2017-02-10 19:44:02 +00:00
|
|
|
|
|
|
|
SetOrientation( pad_rot );
|
|
|
|
|
2022-10-20 23:04:33 +00:00
|
|
|
SetRemoveUnconnected( aMasterPad.GetRemoveUnconnected() );
|
|
|
|
SetKeepTopBottom( aMasterPad.GetKeepTopBottom() );
|
|
|
|
|
2017-02-10 19:44:02 +00:00
|
|
|
SetSize( aMasterPad.GetSize() );
|
2022-01-05 01:42:27 +00:00
|
|
|
SetDelta( VECTOR2I( 0, 0 ) );
|
2017-02-10 19:44:02 +00:00
|
|
|
SetOffset( aMasterPad.GetOffset() );
|
|
|
|
SetDrillSize( aMasterPad.GetDrillSize() );
|
|
|
|
SetDrillShape( aMasterPad.GetDrillShape() );
|
|
|
|
SetRoundRectRadiusRatio( aMasterPad.GetRoundRectRadiusRatio() );
|
2019-03-12 10:28:07 +00:00
|
|
|
SetChamferRectRatio( aMasterPad.GetChamferRectRatio() );
|
|
|
|
SetChamferPositions( aMasterPad.GetChamferPositions() );
|
2017-02-10 19:44:02 +00:00
|
|
|
|
|
|
|
switch( aMasterPad.GetShape() )
|
|
|
|
{
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::TRAPEZOID:
|
2017-02-10 19:44:02 +00:00
|
|
|
SetDelta( aMasterPad.GetDelta() );
|
|
|
|
break;
|
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
case PAD_SHAPE::CIRCLE:
|
2017-02-10 19:44:02 +00:00
|
|
|
// ensure size.y == size.x
|
2022-01-05 01:42:27 +00:00
|
|
|
SetSize( VECTOR2I( GetSize().x, GetSize().x ) );
|
2017-02-10 19:44:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( aMasterPad.GetAttribute() )
|
|
|
|
{
|
2021-05-01 14:46:50 +00:00
|
|
|
case PAD_ATTRIB::SMD:
|
|
|
|
case PAD_ATTRIB::CONN:
|
2022-01-13 13:45:48 +00:00
|
|
|
// These pads do not have a hole (they are expected to be on one external copper layer)
|
2022-01-05 01:42:27 +00:00
|
|
|
SetDrillSize( VECTOR2I( 0, 0 ) );
|
2017-02-10 19:44:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
2017-01-13 17:51:22 +00:00
|
|
|
|
2018-07-05 16:14:19 +00:00
|
|
|
// copy also local settings:
|
|
|
|
SetLocalClearance( aMasterPad.GetLocalClearance() );
|
|
|
|
SetLocalSolderMaskMargin( aMasterPad.GetLocalSolderMaskMargin() );
|
|
|
|
SetLocalSolderPasteMargin( aMasterPad.GetLocalSolderPasteMargin() );
|
|
|
|
SetLocalSolderPasteMarginRatio( aMasterPad.GetLocalSolderPasteMarginRatio() );
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
SetZoneConnection( aMasterPad.GetZoneConnection() );
|
2020-09-10 18:35:11 +00:00
|
|
|
SetThermalSpokeWidth( aMasterPad.GetThermalSpokeWidth() );
|
2021-08-08 13:37:14 +00:00
|
|
|
SetThermalSpokeAngle( aMasterPad.GetThermalSpokeAngle() );
|
2018-07-05 16:14:19 +00:00
|
|
|
SetThermalGap( aMasterPad.GetThermalGap() );
|
|
|
|
|
2020-07-29 07:21:31 +00:00
|
|
|
SetCustomShapeInZoneOpt( aMasterPad.GetCustomShapeInZoneOpt() );
|
|
|
|
|
2017-01-13 17:51:22 +00:00
|
|
|
// Add or remove custom pad shapes:
|
2020-07-24 16:02:56 +00:00
|
|
|
ReplacePrimitives( aMasterPad.GetPrimitives() );
|
2017-01-13 17:51:22 +00:00
|
|
|
SetAnchorPadShape( aMasterPad.GetAnchorPadShape() );
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2021-01-08 00:26:32 +00:00
|
|
|
SetDirty();
|
2017-02-10 19:44:02 +00:00
|
|
|
}
|
2017-10-31 13:59:03 +00:00
|
|
|
|
2020-06-22 19:35:09 +00:00
|
|
|
|
2022-11-11 17:09:25 +00:00
|
|
|
void PAD::swapData( BOARD_ITEM* aImage )
|
2017-10-31 13:59:03 +00:00
|
|
|
{
|
|
|
|
assert( aImage->Type() == PCB_PAD_T );
|
|
|
|
|
2022-01-13 13:45:48 +00:00
|
|
|
std::swap( *this, *static_cast<PAD*>( aImage ) );
|
2017-10-31 13:59:03 +00:00
|
|
|
}
|
2020-02-02 18:40:14 +00:00
|
|
|
|
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
bool PAD::TransformHoleToPolygon( SHAPE_POLY_SET& aBuffer, int aClearance, int aError,
|
|
|
|
ERROR_LOC aErrorLoc ) const
|
2021-10-25 19:50:33 +00:00
|
|
|
{
|
2022-01-05 01:42:27 +00:00
|
|
|
VECTOR2I drillsize = GetDrillSize();
|
2021-10-25 19:50:33 +00:00
|
|
|
|
|
|
|
if( !drillsize.x || !drillsize.y )
|
|
|
|
return false;
|
|
|
|
|
2022-07-22 22:05:25 +00:00
|
|
|
std::shared_ptr<SHAPE_SEGMENT> slot = GetEffectiveHoleShape();
|
2021-10-25 19:50:33 +00:00
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
TransformOvalToPolygon( aBuffer, slot->GetSeg().A, slot->GetSeg().B,
|
|
|
|
slot->GetWidth() + aClearance * 2, aError, aErrorLoc );
|
2021-10-25 19:50:33 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
void PAD::TransformShapeToPolygon( SHAPE_POLY_SET& aBuffer, PCB_LAYER_ID aLayer, int aClearance,
|
2023-05-29 14:28:48 +00:00
|
|
|
int aMaxError, ERROR_LOC aErrorLoc, bool ignoreLineWidth ) const
|
2021-10-25 19:50:33 +00:00
|
|
|
{
|
2022-02-04 22:44:59 +00:00
|
|
|
wxASSERT_MSG( !ignoreLineWidth, wxT( "IgnoreLineWidth has no meaning for pads." ) );
|
2021-10-25 19:50:33 +00:00
|
|
|
|
|
|
|
// minimal segment count to approximate a circle to create the polygonal pad shape
|
|
|
|
// This minimal value is mainly for very small pads, like SM0402.
|
|
|
|
// Most of time pads are using the segment count given by aError value.
|
|
|
|
const int pad_min_seg_per_circle_count = 16;
|
2022-01-13 13:45:48 +00:00
|
|
|
int dx = m_size.x / 2;
|
|
|
|
int dy = m_size.y / 2;
|
2021-10-25 19:50:33 +00:00
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
VECTOR2I padShapePos = ShapePos(); // Note: for pad having a shape offset, the pad
|
|
|
|
// position is NOT the shape position
|
2021-10-25 19:50:33 +00:00
|
|
|
|
|
|
|
switch( GetShape() )
|
|
|
|
{
|
|
|
|
case PAD_SHAPE::CIRCLE:
|
|
|
|
case PAD_SHAPE::OVAL:
|
|
|
|
// Note: dx == dy is not guaranteed for circle pads in legacy boards
|
|
|
|
if( dx == dy || ( GetShape() == PAD_SHAPE::CIRCLE ) )
|
|
|
|
{
|
2023-05-29 14:28:48 +00:00
|
|
|
TransformCircleToPolygon( aBuffer, padShapePos, dx + aClearance, aMaxError, aErrorLoc,
|
2022-10-21 12:48:45 +00:00
|
|
|
pad_min_seg_per_circle_count );
|
2021-10-25 19:50:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-01-01 17:11:21 +00:00
|
|
|
int half_width = std::min( dx, dy );
|
|
|
|
VECTOR2I delta( dx - half_width, dy - half_width );
|
2021-10-25 19:50:33 +00:00
|
|
|
|
2022-01-13 13:45:48 +00:00
|
|
|
RotatePoint( delta, m_orient );
|
2021-10-25 19:50:33 +00:00
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
TransformOvalToPolygon( aBuffer, padShapePos - delta, padShapePos + delta,
|
2023-05-29 14:28:48 +00:00
|
|
|
( half_width + aClearance ) * 2, aMaxError, aErrorLoc,
|
2021-10-25 19:50:33 +00:00
|
|
|
pad_min_seg_per_circle_count );
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD_SHAPE::TRAPEZOID:
|
2023-06-02 09:10:48 +00:00
|
|
|
case PAD_SHAPE::RECTANGLE:
|
2021-10-25 19:50:33 +00:00
|
|
|
{
|
|
|
|
int ddx = GetShape() == PAD_SHAPE::TRAPEZOID ? m_deltaSize.x / 2 : 0;
|
|
|
|
int ddy = GetShape() == PAD_SHAPE::TRAPEZOID ? m_deltaSize.y / 2 : 0;
|
|
|
|
|
|
|
|
SHAPE_POLY_SET outline;
|
2022-10-21 12:48:45 +00:00
|
|
|
TransformTrapezoidToPolygon( outline, padShapePos, m_size, m_orient, ddx, ddy, aClearance,
|
2023-05-29 14:28:48 +00:00
|
|
|
aMaxError, aErrorLoc );
|
2022-10-21 12:48:45 +00:00
|
|
|
aBuffer.Append( outline );
|
2021-10-25 19:50:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PAD_SHAPE::CHAMFERED_RECT:
|
|
|
|
case PAD_SHAPE::ROUNDRECT:
|
|
|
|
{
|
|
|
|
bool doChamfer = GetShape() == PAD_SHAPE::CHAMFERED_RECT;
|
|
|
|
|
|
|
|
SHAPE_POLY_SET outline;
|
2022-01-16 01:06:25 +00:00
|
|
|
TransformRoundChamferedRectToPolygon( outline, padShapePos, m_size, m_orient,
|
2021-10-25 19:50:33 +00:00
|
|
|
GetRoundRectCornerRadius(),
|
|
|
|
doChamfer ? GetChamferRectRatio() : 0,
|
|
|
|
doChamfer ? GetChamferPositions() : 0,
|
2023-05-29 14:28:48 +00:00
|
|
|
aClearance, aMaxError, aErrorLoc );
|
2022-10-21 12:48:45 +00:00
|
|
|
aBuffer.Append( outline );
|
2021-10-25 19:50:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PAD_SHAPE::CUSTOM:
|
|
|
|
{
|
|
|
|
SHAPE_POLY_SET outline;
|
|
|
|
MergePrimitivesAsPolygon( &outline, aErrorLoc );
|
2022-01-20 20:54:22 +00:00
|
|
|
outline.Rotate( m_orient );
|
2021-10-25 19:50:33 +00:00
|
|
|
outline.Move( VECTOR2I( m_pos ) );
|
|
|
|
|
2023-05-29 14:28:48 +00:00
|
|
|
if( aClearance > 0 || aErrorLoc == ERROR_OUTSIDE )
|
2021-10-25 19:50:33 +00:00
|
|
|
{
|
|
|
|
if( aErrorLoc == ERROR_OUTSIDE )
|
2023-05-29 14:28:48 +00:00
|
|
|
aClearance += aMaxError;
|
2021-10-25 19:50:33 +00:00
|
|
|
|
2023-05-29 14:28:48 +00:00
|
|
|
outline.Inflate( aClearance, SHAPE_POLY_SET::ROUND_ALL_CORNERS, aMaxError );
|
2021-10-25 19:50:33 +00:00
|
|
|
outline.Fracture( SHAPE_POLY_SET::PM_FAST );
|
|
|
|
}
|
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
aBuffer.Append( outline );
|
2021-10-25 19:50:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2022-10-21 12:48:45 +00:00
|
|
|
wxFAIL_MSG( wxT( "PAD::TransformShapeToPolygon no implementation for " )
|
2021-10-25 19:50:33 +00:00
|
|
|
+ PAD_SHAPE_T_asString( GetShape() ) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-25 03:40:45 +00:00
|
|
|
wxString PAD::GetParentAsString() const
|
|
|
|
{
|
|
|
|
if( FOOTPRINT* fp = dynamic_cast<FOOTPRINT*>( m_parent ) )
|
|
|
|
return fp->GetReference();
|
|
|
|
|
|
|
|
return m_parent->m_Uuid.AsString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-02 18:40:14 +00:00
|
|
|
static struct PAD_DESC
|
|
|
|
{
|
|
|
|
PAD_DESC()
|
|
|
|
{
|
2021-05-01 14:46:50 +00:00
|
|
|
ENUM_MAP<PAD_ATTRIB>::Instance()
|
|
|
|
.Map( PAD_ATTRIB::PTH, _HKI( "Through-hole" ) )
|
|
|
|
.Map( PAD_ATTRIB::SMD, _HKI( "SMD" ) )
|
|
|
|
.Map( PAD_ATTRIB::CONN, _HKI( "Edge connector" ) )
|
|
|
|
.Map( PAD_ATTRIB::NPTH, _HKI( "NPTH, mechanical" ) );
|
2020-09-24 13:39:59 +00:00
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
ENUM_MAP<PAD_SHAPE>::Instance()
|
|
|
|
.Map( PAD_SHAPE::CIRCLE, _HKI( "Circle" ) )
|
2023-06-02 09:10:48 +00:00
|
|
|
.Map( PAD_SHAPE::RECTANGLE, _HKI( "Rectangle" ) )
|
2021-05-01 12:22:35 +00:00
|
|
|
.Map( PAD_SHAPE::OVAL, _HKI( "Oval" ) )
|
|
|
|
.Map( PAD_SHAPE::TRAPEZOID, _HKI( "Trapezoid" ) )
|
|
|
|
.Map( PAD_SHAPE::ROUNDRECT, _HKI( "Rounded rectangle" ) )
|
|
|
|
.Map( PAD_SHAPE::CHAMFERED_RECT, _HKI( "Chamfered rectangle" ) )
|
|
|
|
.Map( PAD_SHAPE::CUSTOM, _HKI( "Custom" ) );
|
2020-09-05 16:00:29 +00:00
|
|
|
|
2021-05-01 14:58:30 +00:00
|
|
|
ENUM_MAP<PAD_PROP>::Instance()
|
|
|
|
.Map( PAD_PROP::NONE, _HKI( "None" ) )
|
|
|
|
.Map( PAD_PROP::BGA, _HKI( "BGA pad" ) )
|
|
|
|
.Map( PAD_PROP::FIDUCIAL_GLBL, _HKI( "Fiducial, global to board" ) )
|
|
|
|
.Map( PAD_PROP::FIDUCIAL_LOCAL, _HKI( "Fiducial, local to footprint" ) )
|
|
|
|
.Map( PAD_PROP::TESTPOINT, _HKI( "Test point pad" ) )
|
|
|
|
.Map( PAD_PROP::HEATSINK, _HKI( "Heatsink pad" ) )
|
|
|
|
.Map( PAD_PROP::CASTELLATED, _HKI( "Castellated pad" ) );
|
2020-02-02 18:40:14 +00:00
|
|
|
|
2022-11-25 23:44:02 +00:00
|
|
|
ENUM_MAP<ZONE_CONNECTION>& zcMap = ENUM_MAP<ZONE_CONNECTION>::Instance();
|
|
|
|
|
|
|
|
if( zcMap.Choices().GetCount() == 0 )
|
|
|
|
{
|
|
|
|
zcMap.Undefined( ZONE_CONNECTION::INHERITED );
|
|
|
|
zcMap.Map( ZONE_CONNECTION::INHERITED, _HKI( "Inherited" ) )
|
|
|
|
.Map( ZONE_CONNECTION::NONE, _HKI( "None" ) )
|
|
|
|
.Map( ZONE_CONNECTION::THERMAL, _HKI( "Thermal reliefs" ) )
|
|
|
|
.Map( ZONE_CONNECTION::FULL, _HKI( "Solid" ) )
|
|
|
|
.Map( ZONE_CONNECTION::THT_THERMAL, _HKI( "Thermal reliefs for PTH" ) );
|
|
|
|
}
|
|
|
|
|
2020-02-02 18:40:14 +00:00
|
|
|
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
|
2020-11-12 22:30:02 +00:00
|
|
|
REGISTER_TYPE( PAD );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( PAD ), TYPE_HASH( BOARD_CONNECTED_ITEM ) );
|
2020-02-02 18:40:14 +00:00
|
|
|
|
2022-12-02 03:22:29 +00:00
|
|
|
propMgr.Mask( TYPE_HASH( PAD ), TYPE_HASH( BOARD_CONNECTED_ITEM ), _HKI( "Layer" ) );
|
|
|
|
|
2022-11-29 23:55:43 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, double>( _HKI( "Orientation" ),
|
|
|
|
&PAD::SetOrientationDegrees, &PAD::GetOrientationDegrees,
|
|
|
|
PROPERTY_DISPLAY::PT_DEGREE ) );
|
|
|
|
|
2022-12-08 22:59:18 +00:00
|
|
|
auto isCopperPad =
|
|
|
|
[]( INSPECTABLE* aItem ) -> bool
|
|
|
|
{
|
|
|
|
if( PAD* pad = dynamic_cast<PAD*>( aItem ) )
|
|
|
|
return pad->GetAttribute() != PAD_ATTRIB::NPTH;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2023-02-11 20:50:30 +00:00
|
|
|
auto padCanHaveHole =
|
|
|
|
[]( INSPECTABLE* aItem ) -> bool
|
|
|
|
{
|
|
|
|
if( PAD* pad = dynamic_cast<PAD*>( aItem ) )
|
|
|
|
{
|
|
|
|
return pad->GetAttribute() == PAD_ATTRIB::PTH
|
|
|
|
|| pad->GetAttribute() == PAD_ATTRIB::NPTH;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2022-12-08 22:59:18 +00:00
|
|
|
propMgr.OverrideAvailability( TYPE_HASH( PAD ), TYPE_HASH( BOARD_CONNECTED_ITEM ),
|
|
|
|
_HKI( "Net" ), isCopperPad );
|
|
|
|
propMgr.OverrideAvailability( TYPE_HASH( PAD ), TYPE_HASH( BOARD_CONNECTED_ITEM ),
|
|
|
|
_HKI( "Net Class" ), isCopperPad );
|
|
|
|
|
2022-12-27 01:10:22 +00:00
|
|
|
const wxString groupPad = _HKI( "Pad Properties" );
|
2022-11-28 03:40:14 +00:00
|
|
|
|
2021-05-01 14:46:50 +00:00
|
|
|
auto padType = new PROPERTY_ENUM<PAD, PAD_ATTRIB>( _HKI( "Pad Type" ),
|
2020-11-12 22:30:02 +00:00
|
|
|
&PAD::SetAttribute, &PAD::GetAttribute );
|
2022-11-28 03:40:14 +00:00
|
|
|
propMgr.AddProperty( padType, groupPad );
|
2020-09-24 13:39:59 +00:00
|
|
|
|
2021-05-01 12:22:35 +00:00
|
|
|
auto shape = new PROPERTY_ENUM<PAD, PAD_SHAPE>( _HKI( "Shape" ),
|
2020-11-12 22:30:02 +00:00
|
|
|
&PAD::SetShape, &PAD::GetShape );
|
2022-11-28 03:40:14 +00:00
|
|
|
propMgr.AddProperty( shape, groupPad );
|
2020-02-02 18:40:14 +00:00
|
|
|
|
2022-11-25 23:44:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, wxString>( _HKI( "Parent" ),
|
2023-02-18 01:40:09 +00:00
|
|
|
NO_SETTER( PAD, wxString ), &PAD::GetParentAsString ), groupPad )
|
|
|
|
.SetIsHiddenFromLibraryEditors();
|
2022-12-08 22:59:18 +00:00
|
|
|
|
|
|
|
auto padNumber = new PROPERTY<PAD, wxString>( _HKI( "Pad Number" ),
|
|
|
|
&PAD::SetNumber, &PAD::GetNumber );
|
|
|
|
padNumber->SetAvailableFunc( isCopperPad );
|
|
|
|
propMgr.AddProperty( padNumber, groupPad );
|
|
|
|
|
2021-01-21 21:46:03 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, wxString>( _HKI( "Pin Name" ),
|
2023-02-16 03:16:49 +00:00
|
|
|
NO_SETTER( PAD, wxString ), &PAD::GetPinFunction ), groupPad )
|
|
|
|
.SetIsHiddenFromLibraryEditors();
|
2021-01-21 21:46:03 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, wxString>( _HKI( "Pin Type" ),
|
2023-02-16 03:16:49 +00:00
|
|
|
NO_SETTER( PAD, wxString ), &PAD::GetPinType ), groupPad )
|
|
|
|
.SetIsHiddenFromLibraryEditors();
|
2022-12-08 22:59:18 +00:00
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Size X" ),
|
|
|
|
&PAD::SetSizeX, &PAD::GetSizeX,
|
2022-11-28 03:40:14 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupPad );
|
2020-11-12 22:30:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Size Y" ),
|
|
|
|
&PAD::SetSizeY, &PAD::GetSizeY,
|
2023-06-22 23:19:33 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupPad )
|
|
|
|
.SetAvailableFunc(
|
|
|
|
[=]( INSPECTABLE* aItem ) -> bool
|
|
|
|
{
|
|
|
|
// Circle pads have no usable y-size
|
|
|
|
if( PAD* pad = dynamic_cast<PAD*>( aItem ) )
|
|
|
|
return pad->GetShape() != PAD_SHAPE::CIRCLE;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
2022-11-25 23:44:02 +00:00
|
|
|
|
2023-05-12 21:03:54 +00:00
|
|
|
auto roundRadiusRatio = new PROPERTY<PAD, double>( _HKI( "Corner Radius Ratio" ),
|
2022-11-25 23:44:02 +00:00
|
|
|
&PAD::SetRoundRectRadiusRatio, &PAD::GetRoundRectRadiusRatio );
|
|
|
|
roundRadiusRatio->SetAvailableFunc(
|
|
|
|
[=]( INSPECTABLE* aItem ) -> bool
|
|
|
|
{
|
2023-05-12 21:03:54 +00:00
|
|
|
if( PAD* pad = dynamic_cast<PAD*>( aItem ) )
|
|
|
|
return pad->GetShape() == PAD_SHAPE::ROUNDRECT;
|
|
|
|
|
|
|
|
return false;
|
2022-11-25 23:44:02 +00:00
|
|
|
} );
|
2022-11-28 03:40:14 +00:00
|
|
|
propMgr.AddProperty( roundRadiusRatio, groupPad );
|
2022-11-25 23:44:02 +00:00
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Hole Size X" ),
|
|
|
|
&PAD::SetDrillSizeX, &PAD::GetDrillSizeX,
|
2023-02-11 20:50:30 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupPad )
|
|
|
|
.SetWriteableFunc( padCanHaveHole )
|
|
|
|
.SetValidator( PROPERTY_VALIDATORS::PositiveIntValidator );
|
|
|
|
|
2020-11-12 22:30:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Hole Size Y" ),
|
|
|
|
&PAD::SetDrillSizeY, &PAD::GetDrillSizeY,
|
2023-02-11 20:50:30 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupPad )
|
|
|
|
.SetWriteableFunc( padCanHaveHole )
|
|
|
|
.SetValidator( PROPERTY_VALIDATORS::PositiveIntValidator );
|
2022-11-25 23:44:02 +00:00
|
|
|
|
|
|
|
propMgr.AddProperty( new PROPERTY_ENUM<PAD, PAD_PROP>( _HKI( "Fabrication Property" ),
|
2022-11-28 03:40:14 +00:00
|
|
|
&PAD::SetProperty, &PAD::GetProperty ), groupPad );
|
2022-12-08 22:59:18 +00:00
|
|
|
|
|
|
|
auto padToDie = new PROPERTY<PAD, int>( _HKI( "Pad To Die Length" ),
|
|
|
|
&PAD::SetPadToDieLength, &PAD::GetPadToDieLength,
|
|
|
|
PROPERTY_DISPLAY::PT_SIZE );
|
|
|
|
padToDie->SetAvailableFunc( isCopperPad );
|
|
|
|
propMgr.AddProperty( padToDie, groupPad );
|
2022-11-28 03:40:14 +00:00
|
|
|
|
2022-12-27 01:10:22 +00:00
|
|
|
const wxString groupOverrides = _HKI( "Overrides" );
|
2022-11-28 03:40:14 +00:00
|
|
|
|
2022-11-25 23:44:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Clearance Override" ),
|
|
|
|
&PAD::SetLocalClearance, &PAD::GetLocalClearance,
|
2022-11-28 03:40:14 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupOverrides );
|
2023-02-11 20:50:30 +00:00
|
|
|
|
2021-05-29 18:12:23 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Soldermask Margin Override" ),
|
2020-11-12 22:30:02 +00:00
|
|
|
&PAD::SetLocalSolderMaskMargin, &PAD::GetLocalSolderMaskMargin,
|
2022-11-28 03:40:14 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupOverrides );
|
2023-02-11 20:50:30 +00:00
|
|
|
|
2021-05-29 18:12:23 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Solderpaste Margin Override" ),
|
2020-11-12 22:30:02 +00:00
|
|
|
&PAD::SetLocalSolderPasteMargin, &PAD::GetLocalSolderPasteMargin,
|
2022-11-28 03:40:14 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupOverrides );
|
2023-02-11 20:50:30 +00:00
|
|
|
|
2021-05-29 18:12:23 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, double>( _HKI( "Solderpaste Margin Ratio Override" ),
|
2022-11-28 03:40:14 +00:00
|
|
|
&PAD::SetLocalSolderPasteMarginRatio, &PAD::GetLocalSolderPasteMarginRatio ),
|
|
|
|
groupOverrides );
|
2023-02-11 20:50:30 +00:00
|
|
|
|
2022-11-25 23:44:02 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY_ENUM<PAD, ZONE_CONNECTION>(
|
|
|
|
_HKI( "Zone Connection Style" ),
|
2022-11-28 03:40:14 +00:00
|
|
|
&PAD::SetZoneConnection, &PAD::GetZoneConnection ), groupOverrides );
|
2023-02-11 20:50:30 +00:00
|
|
|
|
|
|
|
constexpr int minZoneWidth = pcbIUScale.mmToIU( ZONE_THICKNESS_MIN_VALUE_MM );
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Thermal Relief Spoke Width" ),
|
2020-11-12 22:30:02 +00:00
|
|
|
&PAD::SetThermalSpokeWidth, &PAD::GetThermalSpokeWidth,
|
2023-02-11 20:50:30 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupOverrides )
|
|
|
|
.SetValidator( PROPERTY_VALIDATORS::RangeIntValidator<minZoneWidth, INT_MAX> );
|
|
|
|
|
2021-08-08 13:37:14 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, double>( _HKI( "Thermal Relief Spoke Angle" ),
|
2022-01-13 13:45:48 +00:00
|
|
|
&PAD::SetThermalSpokeAngleDegrees, &PAD::GetThermalSpokeAngleDegrees,
|
2022-11-28 03:40:14 +00:00
|
|
|
PROPERTY_DISPLAY::PT_DEGREE ), groupOverrides );
|
2023-02-11 20:50:30 +00:00
|
|
|
|
2021-05-29 18:12:23 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<PAD, int>( _HKI( "Thermal Relief Gap" ),
|
2020-11-12 22:30:02 +00:00
|
|
|
&PAD::SetThermalGap, &PAD::GetThermalGap,
|
2023-02-11 20:50:30 +00:00
|
|
|
PROPERTY_DISPLAY::PT_SIZE ), groupOverrides )
|
|
|
|
.SetValidator( PROPERTY_VALIDATORS::PositiveIntValidator );
|
2021-02-19 21:06:28 +00:00
|
|
|
|
2022-11-25 23:44:02 +00:00
|
|
|
// TODO delta, drill shape offset, layer set
|
2020-02-02 18:40:14 +00:00
|
|
|
}
|
|
|
|
} _PAD_DESC;
|
|
|
|
|
2021-05-01 14:46:50 +00:00
|
|
|
ENUM_TO_WXANY( PAD_ATTRIB );
|
2021-05-01 12:22:35 +00:00
|
|
|
ENUM_TO_WXANY( PAD_SHAPE );
|
2021-05-01 14:58:30 +00:00
|
|
|
ENUM_TO_WXANY( PAD_PROP );
|