26#include <api/board/board_types.pb.h>
29#include <magic_enum.hpp>
75 for( std::shared_ptr<PCB_SHAPE>& shape :
CopperLayer( aLayer ).custom_shapes )
170 bool copperMatches =
true;
176 copperMatches =
false;
179 return copperMatches;
206 if( aProto.chamfered_corners().top_left() )
209 if( aProto.chamfered_corners().top_right() )
212 if( aProto.chamfered_corners().bottom_left() )
215 if( aProto.chamfered_corners().bottom_right() )
219 google::protobuf::Any a;
221 for(
const BoardGraphicShape& shapeProto : aProto.custom_shapes() )
223 a.PackFrom( shapeProto );
224 std::unique_ptr<PCB_SHAPE> shape = std::make_unique<PCB_SHAPE>(
m_parent );
226 if( shape->Deserialize( a ) )
239 auto unpackOptional = []<
typename ProtoEnum>(
const ProtoEnum& aProto,
240 std::optional<bool>& aDest, ProtoEnum aTrueValue,
241 ProtoEnum aFalseValue )
243 if( aProto == aTrueValue )
245 else if( aProto == aFalseValue )
248 aDest = std::nullopt;
251 auto unpackPostMachining = [](
const PostMachiningProperties& aProto,
254 switch( aProto.mode() )
259 default: aDest.mode = std::nullopt;
break;
262 aDest.size = aProto.size();
263 aDest.depth = aProto.depth();
264 aDest.angle = aProto.angle();
267 if( !aContainer.UnpackTo( &padstack ) )
277 unpackOptional( padstack.drill().capped(),
Drill().is_capped, VDCM_CAPPED, VDCM_UNCAPPED );
278 unpackOptional( padstack.drill().filled(),
Drill().is_filled, VDFM_FILLED, VDFM_UNFILLED );
280 if( padstack.has_front_post_machining() )
283 if( padstack.has_back_post_machining() )
288 if( padstack.has_secondary_drill() )
290 const DrillProperties& secondary = padstack.secondary_drill();
297 unpackOptional( secondary.capped(),
SecondaryDrill().is_capped, VDCM_CAPPED, VDCM_UNCAPPED );
298 unpackOptional( secondary.filled(),
SecondaryDrill().is_filled, VDFM_FILLED, VDFM_UNFILLED );
310 if( padstack.has_tertiary_drill() )
312 const DrillProperties& tertiary = padstack.tertiary_drill();
319 unpackOptional( tertiary.capped(),
TertiaryDrill().is_capped, VDCM_CAPPED, VDCM_UNCAPPED );
320 unpackOptional( tertiary.filled(),
TertiaryDrill().is_filled, VDFM_FILLED, VDFM_UNFILLED );
332 for(
const PadStackLayer& layer : padstack.copper_layers() )
341 if( padstack.has_zone_settings() )
346 if( padstack.zone_settings().has_thermal_spokes() )
348 const ThermalSpokeSettings& thermals = padstack.zone_settings().thermal_spokes();
350 if( thermals.has_gap() )
353 if( thermals.has_width() )
368 unpackOptional( padstack.front_outer_layers().solder_mask_mode(),
371 unpackOptional( padstack.back_outer_layers().solder_mask_mode(),
374 unpackOptional( padstack.front_outer_layers().covering_mode(),
FrontOuterLayers().has_covering,
375 VCM_COVERED, VCM_UNCOVERED );
377 unpackOptional( padstack.back_outer_layers().covering_mode(),
BackOuterLayers().has_covering,
378 VCM_COVERED, VCM_UNCOVERED );
380 unpackOptional( padstack.front_outer_layers().plugging_mode(),
FrontOuterLayers().has_plugging,
381 VPM_PLUGGED, VPM_UNPLUGGED );
383 unpackOptional( padstack.back_outer_layers().plugging_mode(),
BackOuterLayers().has_plugging,
384 VPM_PLUGGED, VPM_UNPLUGGED );
386 unpackOptional( padstack.front_outer_layers().solder_paste_mode(),
389 unpackOptional( padstack.back_outer_layers().solder_paste_mode(),
392 if( padstack.front_outer_layers().has_solder_mask_settings()
393 && padstack.front_outer_layers().solder_mask_settings().has_solder_mask_margin() )
396 padstack.front_outer_layers().solder_mask_settings().solder_mask_margin().value_nm();
403 if( padstack.back_outer_layers().has_solder_mask_settings()
404 && padstack.back_outer_layers().solder_mask_settings().has_solder_mask_margin() )
407 padstack.back_outer_layers().solder_mask_settings().solder_mask_margin().value_nm();
414 if( padstack.front_outer_layers().has_solder_paste_settings()
415 && padstack.front_outer_layers().solder_paste_settings().has_solder_paste_margin() )
418 padstack.front_outer_layers().solder_paste_settings().solder_paste_margin().value_nm();
425 if( padstack.back_outer_layers().has_solder_paste_settings()
426 && padstack.back_outer_layers().solder_paste_settings().has_solder_paste_margin() )
429 padstack.back_outer_layers().solder_paste_settings().solder_paste_margin().value_nm();
436 if( padstack.front_outer_layers().has_solder_paste_settings()
437 && padstack.front_outer_layers().solder_paste_settings().has_solder_paste_margin_ratio() )
440 padstack.front_outer_layers().solder_paste_settings().solder_paste_margin_ratio().value();
447 if( padstack.back_outer_layers().has_solder_paste_settings()
448 && padstack.back_outer_layers().solder_paste_settings().has_solder_paste_margin_ratio() )
451 padstack.back_outer_layers().solder_paste_settings().solder_paste_margin_ratio().value();
468 if( !hasSecondary && !hasTertiary )
471 if( hasSecondary && hasTertiary )
498 if( aDrill.
size.
x <= 0 )
502 aDrill.
start = aStart;
507 aDrill.
start = aStart;
581 if( aSize.has_value() )
583 target->
size = { *aSize, *aSize };
590 target->
size = { 0, 0 };
628 target->
end = aLayer;
639 padstack.mutable_angle()->set_value_degrees(
m_orientation.AsDegrees() );
646 if(
m_drill.is_capped.has_value() )
647 padstack.mutable_drill()->set_capped(
m_drill.is_capped.value() ? VDCM_CAPPED : VDCM_UNCAPPED );
649 if(
m_drill.is_filled.has_value() )
650 padstack.mutable_drill()->set_filled(
m_drill.is_filled.value() ? VDFM_FILLED : VDFM_UNFILLED );
654 DrillProperties* secondary = padstack.mutable_secondary_drill();
661 secondary->set_capped(
m_secondaryDrill.is_capped.value() ? VDCM_CAPPED : VDCM_UNCAPPED );
664 secondary->set_filled(
m_secondaryDrill.is_filled.value() ? VDFM_FILLED : VDFM_UNFILLED );
669 DrillProperties* tertiary = padstack.mutable_tertiary_drill();
676 tertiary->set_capped(
m_tertiaryDrill.is_capped.value() ? VDCM_CAPPED : VDCM_UNCAPPED );
679 tertiary->set_filled(
m_tertiaryDrill.is_filled.value() ? VDFM_FILLED : VDFM_UNFILLED );
683 PostMachiningProperties* aProto )
685 if( aProps.
mode.has_value() )
687 switch( aProps.
mode.value() )
696 aProto->set_size( aProps.
size );
697 aProto->set_depth( aProps.
depth );
698 aProto->set_angle( aProps.
angle );
710 PadStackLayer* layer = padstack.add_copper_layers();
725 layer->mutable_chamfered_corners()->set_top_left(
true );
728 layer->mutable_chamfered_corners()->set_top_right(
true );
731 layer->mutable_chamfered_corners()->set_bottom_left(
true );
734 layer->mutable_chamfered_corners()->set_bottom_right(
true );
736 for(
const std::shared_ptr<PCB_SHAPE>& shape : props.
custom_shapes )
738 google::protobuf::Any a;
739 shape->Serialize( a );
740 a.UnpackTo( layer->add_custom_shapes() );
746 padstack.mutable_zone_settings()->set_zone_connection(
752 padstack.mutable_zone_settings()->mutable_thermal_spokes()->mutable_gap()->set_value_nm(
758 padstack.mutable_zone_settings()->mutable_thermal_spokes()->mutable_width()->set_value_nm(
764 padstack.mutable_zone_settings()->mutable_thermal_spokes()->mutable_angle()->set_value_degrees(
773 padstack.mutable_front_outer_layers()->set_solder_mask_mode(
779 padstack.mutable_back_outer_layers()->set_solder_mask_mode(
780 BackOuterLayers().has_solder_mask.value() ? SMM_MASKED : SMM_UNMASKED );
785 padstack.mutable_front_outer_layers()->set_covering_mode(
791 padstack.mutable_back_outer_layers()->set_covering_mode(
792 BackOuterLayers().has_covering.value() ? VCM_COVERED : VCM_UNCOVERED );
797 padstack.mutable_front_outer_layers()->set_plugging_mode(
803 padstack.mutable_back_outer_layers()->set_plugging_mode(
804 BackOuterLayers().has_plugging.value() ? VPM_PLUGGED : VPM_UNPLUGGED );
809 padstack.mutable_front_outer_layers()->set_solder_paste_mode(
815 padstack.mutable_back_outer_layers()->set_solder_paste_mode(
816 BackOuterLayers().has_solder_paste.value() ? SPM_PASTE : SPM_NO_PASTE );
821 padstack.mutable_front_outer_layers()->mutable_solder_mask_settings()->mutable_solder_mask_margin()->set_value_nm(
827 padstack.mutable_back_outer_layers()->mutable_solder_mask_settings()->mutable_solder_mask_margin()->set_value_nm(
833 padstack.mutable_front_outer_layers()->mutable_solder_paste_settings()->mutable_solder_paste_margin()->set_value_nm(
839 padstack.mutable_back_outer_layers()->mutable_solder_paste_settings()->mutable_solder_paste_margin()->set_value_nm(
845 padstack.mutable_front_outer_layers()->mutable_solder_paste_settings()->mutable_solder_paste_margin_ratio()->set_value(
851 padstack.mutable_back_outer_layers()->mutable_solder_paste_settings()->mutable_solder_paste_margin_ratio()->set_value(
855 aContainer.PackFrom( padstack );
961 int min_r = std::min( size.
x, size.
y );
1126 if(
CopperLayer( aLayer ).thermal_spoke_angle.has_value() )
1162 for(
const std::shared_ptr<PCB_SHAPE>& item : aList )
1166 list.emplace_back( new_shape );
1247 std::vector<PCB_LAYER_ID> layers;
1252 layers.push_back( layer );
1294 layers.
set( layer );
1299 layers.
set( layer );
1314 return std::nullopt;
1325 return std::nullopt;
1336 return std::nullopt;
1352#define TEST( a, b ) { if( a != b ) return a - b; }
1417 double similarity = 1.0;
1470 std::unordered_map<PCB_LAYER_ID, COPPER_LAYER_PROPS> oldCopperProps =
m_copperProps;
1473 for(
const auto& [layer, props] : oldCopperProps )
1561 if( !(
shape == aOther.
shape ) )
return false;
1578 double similarity = 1.0;
1605#define TEST_OPT( a, b, v ) \
1607 if( a.has_value() != b.has_value() ) \
1608 return a.has_value() - b.has_value(); \
1609 if( (int) a.value_or( v ) - (int) b.value_or( v ) != 0 ) \
1610 return (int) a.value_or( v ) - (int) b.value_or( v ); \
1613#define TEST_OPT_ANGLE( a, b, v ) \
1615 if( a.has_value() != b.has_value() ) \
1616 return a.has_value() - b.has_value(); \
1617 if( abs( a.value_or( v ).AsDegrees() - b.value_or( v ).AsDegrees() ) > 0.001 ) \
1618 return a.value_or( v ).AsDegrees() > b.value_or( v ).AsDegrees() ? 1 : -1; \
1626 if( ( diff =
shape.Compare( aOther.
shape ) ) != 0 )
types::KiCadObjectType ToProtoEnum(KICAD_T aValue)
KICAD_T FromProtoEnum(types::KiCadObjectType aValue)
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
BASE_SET & set(size_t pos)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Information pertinent to a Pcbnew printed circuit board.
PCB_LAYER_ID FlipLayer(PCB_LAYER_ID aLayer) const
int AsTenthsOfADegree() const
virtual void SetParent(EDA_ITEM *aParent)
LSET is a set of PCB_LAYER_IDs.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
std::optional< bool > IsFilled() const
bool operator==(const PADSTACK &aOther) const
std::optional< int > & Clearance(PCB_LAYER_ID aLayer=F_Cu)
void AddPrimitive(PCB_SHAPE *aShape, PCB_LAYER_ID aLayer)
Adds a custom shape primitive to the padstack.
void ReplacePrimitives(const std::vector< std::shared_ptr< PCB_SHAPE > > &aPrimitivesList, PCB_LAYER_ID aLayer)
Clears the existing primitive list (freeing the owned shapes) and adds copies of the given shapes to ...
void SetBackdrillMode(BACKDRILL_MODE aMode)
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
MASK_LAYER_PROPS & FrontOuterLayers()
double Similarity(const PADSTACK &aOther) const
Return a measure of how likely the other object is to represent the same object.
int RoundRectRadius(PCB_LAYER_ID aLayer) const
void SetDrillShape(PAD_DRILL_SHAPE aShape)
std::optional< double > & SolderPasteMarginRatio(PCB_LAYER_ID aLayer=F_Cu)
wxString m_customName
! An override for the IPC-7351 padstack name
void SetBackdrillSize(bool aTop, std::optional< int > aSize)
void ForEachUniqueLayer(const std::function< void(PCB_LAYER_ID)> &aMethod) const
Runs the given callable for each active unique copper layer in this padstack, meaning F_Cu for MODE::...
void SetThermalSpokeAngle(EDA_ANGLE aAngle, PCB_LAYER_ID aLayer=F_Cu)
void SetRoundRectRadiusRatio(double aRatio, PCB_LAYER_ID aLayer)
UNCONNECTED_LAYER_MODE m_unconnectedLayerMode
void ClearPrimitives(PCB_LAYER_ID aLayer)
void SetUnconnectedLayerMode(UNCONNECTED_LAYER_MODE aMode)
bool HasExplicitDefinitionForLayer(PCB_LAYER_ID aLayer) const
Check if the padstack has an explicit definition for the given layer.
std::optional< bool > IsTented(PCB_LAYER_ID aSide) const
Checks if this padstack is tented (covered in soldermask) on the given side.
std::optional< int > & ThermalSpokeWidth(PCB_LAYER_ID aLayer=F_Cu)
std::optional< int > & SolderPasteMargin(PCB_LAYER_ID aLayer=F_Cu)
void FlipLayers(BOARD *aBoard)
Flips the padstack layers in the case that the pad's parent footprint is flipped to the other side of...
POST_MACHINING_PROPS m_backPostMachining
std::optional< int > & SolderMaskMargin(PCB_LAYER_ID aLayer=F_Cu)
void SetChamferRatio(double aRatio, PCB_LAYER_ID aLayer)
PCB_LAYER_ID EffectiveLayerFor(PCB_LAYER_ID aLayer) const
Determines which geometry layer should be used for the given input layer.
PADSTACK & operator=(const PADSTACK &aOther)
void SetShape(PAD_SHAPE aShape, PCB_LAYER_ID aLayer)
EDA_ANGLE DefaultThermalSpokeAngleForShape(PCB_LAYER_ID aLayer=F_Cu) const
VECTOR2I & TrapezoidDeltaSize(PCB_LAYER_ID aLayer)
DRILL_PROPS m_secondaryDrill
! Secondary drill, used to define back-drilling starting from the bottom side
VECTOR2I & Offset(PCB_LAYER_ID aLayer)
MASK_LAYER_PROPS m_backMaskProps
! The overrides applied to back outer technical layers
COPPER_LAYER_PROPS & CopperLayer(PCB_LAYER_ID aLayer)
EDA_ANGLE ThermalSpokeAngle(PCB_LAYER_ID aLayer=F_Cu) const
CUSTOM_SHAPE_ZONE_MODE m_customShapeInZoneMode
How to build the custom shape in zone, to create the clearance area: CUSTOM_SHAPE_ZONE_MODE::OUTLINE ...
bool unpackCopperLayer(const kiapi::board::types::PadStackLayer &aProto)
PAD_DRILL_SHAPE DrillShape() const
void SetChamferPositions(int aPositions, PCB_LAYER_ID aLayer)
POST_MACHINING_PROPS & FrontPostMachining()
DRILL_PROPS m_tertiaryDrill
! Tertiary drill, used to define back-drilling starting from the top side
void SetRoundRectRadius(double aRadius, PCB_LAYER_ID aLayer)
std::optional< bool > IsPlugged(PCB_LAYER_ID aSide) const
LSET RelevantShapeLayers(const PADSTACK &aOther) const
Returns the set of layers that must be considered if checking one padstack against another.
std::optional< int > & ThermalGap(PCB_LAYER_ID aLayer=F_Cu)
DRILL_PROPS & TertiaryDrill()
PAD_SHAPE Shape(PCB_LAYER_ID aLayer) const
void SetAnchorShape(PAD_SHAPE aShape, PCB_LAYER_ID aLayer)
BOARD_ITEM * m_parent
! The BOARD_ITEM this PADSTACK belongs to; will be used as the parent for owned shapes
PADSTACK(BOARD_ITEM *aParent)
std::optional< bool > IsCapped() const
std::vector< PCB_LAYER_ID > UniqueLayers() const
void SetBackdrillEndLayer(bool aTop, PCB_LAYER_ID aLayer)
LSET m_layerSet
! The board layers that this padstack is active on
std::optional< int > GetBackdrillSize(bool aTop) const
std::unordered_map< PCB_LAYER_ID, COPPER_LAYER_PROPS > m_copperProps
! The properties applied to copper layers if they aren't overridden
BACKDRILL_MODE GetBackdrillMode() const
static int Compare(const PADSTACK *aPadstackRef, const PADSTACK *aPadstackCmp)
Compare two padstacks and return 0 if they are equal.
PCB_LAYER_ID EndLayer() const
std::optional< bool > IsCovered(PCB_LAYER_ID aSide) const
int & ChamferPositions(PCB_LAYER_ID aLayer)
MASK_LAYER_PROPS m_frontMaskProps
! The overrides applied to front outer technical layers
const VECTOR2I & Size(PCB_LAYER_ID aLayer) const
MODE
! Copper geometry mode: controls how many unique copper layer shapes this padstack has
@ NORMAL
Shape is the same on all layers.
@ CUSTOM
Shapes can be defined on arbitrary layers.
@ FRONT_INNER_BACK
Up to three shapes can be defined (F_Cu, inner copper layers, B_Cu)
void AppendPrimitives(const std::vector< std::shared_ptr< PCB_SHAPE > > &aPrimitivesList, PCB_LAYER_ID aLayer)
Appends a copy of each shape in the given list to this padstack's custom shape list.
DRILL_PROPS & SecondaryDrill()
double RoundRectRadiusRatio(PCB_LAYER_ID aLayer) const
PCB_LAYER_ID GetBackdrillEndLayer(bool aTop) const
PCB_LAYER_ID StartLayer() const
POST_MACHINING_PROPS & BackPostMachining()
POST_MACHINING_PROPS m_frontPostMachining
PAD_SHAPE AnchorShape(PCB_LAYER_ID aLayer) const
MASK_LAYER_PROPS & BackOuterLayers()
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
wxString Name() const
! Returns the name of this padstack in IPC-7351 format
void SetSize(const VECTOR2I &aSize, PCB_LAYER_ID aLayer)
double ChamferRatio(PCB_LAYER_ID aLayer) const
static constexpr PCB_LAYER_ID ALL_LAYERS
! Temporary layer identifier to identify code that is not padstack-aware
static constexpr PCB_LAYER_ID INNER_LAYERS
! The layer identifier to use for "inner layers" on top/inner/bottom padstacks
void SetLayerSet(const LSET &aSet)
std::optional< ZONE_CONNECTION > & ZoneConnection(PCB_LAYER_ID aLayer=F_Cu)
@ NORMAL
Padstack for a footprint pad.
MODE m_mode
! The copper layer variation mode this padstack is in
EDA_ANGLE m_orientation
! The rotation of the pad relative to an outer reference frame
std::vector< std::shared_ptr< PCB_SHAPE > > & Primitives(PCB_LAYER_ID aLayer)
@ RECT_CHAMFER_BOTTOM_RIGHT
@ RECT_CHAMFER_BOTTOM_LEFT
static constexpr EDA_ANGLE ANGLE_0
static constexpr EDA_ANGLE ANGLE_90
static constexpr EDA_ANGLE ANGLE_45
bool IsFrontLayer(PCB_LAYER_ID aLayerId)
Layer classification: check if it's a front layer.
bool IsBackLayer(PCB_LAYER_ID aLayerId)
Layer classification: check if it's a back layer.
PCB_LAYER_ID
A quick note on layer IDs:
This file contains miscellaneous commonly used macros and functions.
void PackLayerSet(google::protobuf::RepeatedField< int > &aOutput, const LSET &aLayerSet)
LSET UnpackLayerSet(const google::protobuf::RepeatedField< int > &aProtoLayerSet)
KICOMMON_API VECTOR2I UnpackVector2(const types::Vector2 &aInput)
KICOMMON_API void PackVector2(types::Vector2 &aOutput, const VECTOR2I &aInput)
#define TEST_OPT_ANGLE(a, b, v)
#define TEST_OPT(a, b, v)
PAD_DRILL_POST_MACHINING_MODE
PAD_DRILL_SHAPE
The set of pad drill shapes, used with PAD::{Set,Get}DrillShape()
PAD_SHAPE
The set of pad shapes, used with PAD::{Set,Get}Shape()
#define IMPLEMENT_ENUM_TO_WXANY(type)
The features of a padstack that can vary between copper layers All parameters are optional; leaving t...
double Similarity(const COPPER_LAYER_PROPS &aOther) const
std::optional< ZONE_CONNECTION > zone_connection
int Compare(const COPPER_LAYER_PROPS &aOther) const
std::optional< int > thermal_spoke_width
std::vector< std::shared_ptr< PCB_SHAPE > > custom_shapes
bool operator==(const COPPER_LAYER_PROPS &aOther) const
std::optional< EDA_ANGLE > thermal_spoke_angle
std::optional< int > clearance
std::optional< int > thermal_gap
! The properties of a padstack drill. Drill position is always the pad position (origin).
bool operator==(const DRILL_PROPS &aOther) const
VECTOR2I size
Drill diameter (x == y) or slot dimensions (x != y)
std::optional< bool > is_capped
True if the drill hole should be capped.
std::optional< bool > is_filled
True if the drill hole should be filled completely.
int Compare(const DRILL_PROPS &aOther) const
bool operator==(const MASK_LAYER_PROPS &aOther) const
std::optional< int > solder_mask_margin
int Compare(const MASK_LAYER_PROPS &aOther) const
std::optional< bool > has_covering
True if the pad on this side should have covering.
std::optional< int > solder_paste_margin
std::optional< double > solder_paste_margin_ratio
std::optional< bool > has_solder_mask
True if this outer layer has mask (is not tented)
std::optional< bool > has_solder_paste
True if this outer layer has solder paste.
std::optional< bool > has_plugging
True if the drill hole should be plugged on this side.
std::optional< PAD_DRILL_POST_MACHINING_MODE > mode
bool operator==(const POST_MACHINING_PROPS &aOther) const
int Compare(const POST_MACHINING_PROPS &aOther) const
int chamfered_rect_positions
VECTOR2I trapezoid_delta_size
Delta for PAD_SHAPE::TRAPEZOID; half the delta squeezes one end and half expands the other.
int Compare(const SHAPE_PROPS &aOther) const
VECTOR2I offset
Offset of the shape center from the pad center.
bool operator==(const SHAPE_PROPS &aOther) const
VECTOR2I size
Size of the shape, or of the anchor pad for custom shape pads.
double chamfered_rect_ratio
Size of chamfer: ratio of smallest of X,Y size.
double round_rect_radius_ratio
PAD_SHAPE shape
Shape of the pad.
PAD_SHAPE anchor_shape
Shape of the anchor when shape == PAD_SHAPE::CUSTOM.
VECTOR2< int32_t > VECTOR2I
@ NONE
Pads are not covered.