32#include <google/protobuf/any.pb.h>
33#include <api/board/board.pb.h>
154 || aDielectricPrmsIdx < 0
182 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
189 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
197 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
205 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
213 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
221 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
229 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
237 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
246 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
255 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
264 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
273 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
282 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
291 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
300 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
309 wxASSERT( aDielectricSubLayer >= 0 && aDielectricSubLayer <
GetSublayersCount() );
457 if( !std::equal( std::begin(
m_list ), std::end(
m_list ), std::begin( aOther.
m_list ),
476 BoardStackupLayer* layer = stackup.mutable_layers()->Add();
478 layer->mutable_thickness()->set_value_nm( item->GetThickness() );
480 layer->set_enabled( item->IsEnabled() );
483 if( item->IsColorEditable() )
485 wxString colorStr = item->GetColor( 0 );
494 switch( item->GetType() )
498 layer->set_material_name(
"copper" );
505 BoardStackupDielectricLayer* dielectric = layer->mutable_dielectric();
507 const wxString& typeName = item->GetTypeName();
510 dielectric->set_type( BoardStackupDielectricType::BSDT_CORE );
512 dielectric->set_type( BoardStackupDielectricType::BSDT_PREPREG );
514 dielectric->set_type( BoardStackupDielectricType::BSDT_NONE );
516 for(
int i = 0; i < item->GetSublayersCount(); ++i )
518 BoardStackupDielectricProperties* props = dielectric->mutable_layer()->Add();
519 props->set_epsilon_r( item->GetEpsilonR( i ) );
520 props->set_loss_tangent( item->GetLossTangent( i ) );
521 props->set_material_name( item->GetMaterial( i ).ToUTF8() );
522 props->mutable_thickness()->set_value_nm( item->GetThickness( i ) );
524 props->set_thickness_locked( item->IsThicknessLocked( i ) );
526 if( item->GetSpecFreq( i ) != 0.0 )
527 props->set_spec_frequency( item->GetSpecFreq( i ) );
529 props->set_dielectric_model(
538 BoardStackupSoldermaskLayer* soldermask = layer->mutable_soldermask();
539 soldermask->set_epsilon_r( item->GetEpsilonR( 0 ) );
540 soldermask->set_loss_tangent( item->GetLossTangent( 0 ) );
541 soldermask->set_material_name( item->GetMaterial( 0 ).ToUTF8() );
542 soldermask->mutable_thickness()->set_value_nm( item->GetThickness( 0 ) );
548 BoardStackupSilkscreenLayer* silkscreen = layer->mutable_silkscreen();
549 silkscreen->set_material_name( item->GetMaterial( 0 ).ToUTF8() );
558 stackup.mutable_finish()->set_type_name(
m_FinishType.ToUTF8() );
561 BoardEdgeSettings* edge = stackup.mutable_edge();
562 edge->mutable_connector()->set_type(
564 edge->mutable_plating()->set_has_edge_plating(
m_EdgePlating );
571 kiapi::board::BoardStackup stackup;
573 aContainer.PackFrom( stackup );
580 kiapi::board::BoardStackup stackup;
582 if( !aContainer.UnpackTo( &stackup ) )
607 if( aIndex < 0 || aIndex >=
GetCount() )
621 if( item->IsThicknessEditable() && item->IsEnabled() )
623 thickness += item->GetThickness();
627 for(
int idx = 1; idx < item->GetSublayersCount(); idx++ )
629 thickness += item->GetThickness( idx );
654 if( item->GetBrdLayerId() == curr_item->GetBrdLayerId() )
665 if( item->GetDielectricLayerId() == curr_item->GetDielectricLayerId() )
689 if( item->GetBrdLayerId() == initial_item->GetBrdLayerId() )
691 *item = *initial_item;
702 if( item->GetDielectricLayerId() == initial_item->GetDielectricLayerId() )
704 *item = *initial_item;
732 int aActiveCopperLayersCount )
745 int activeCuLayerCount = copperLayerCount;
747 if( aSettings ==
nullptr && aActiveCopperLayersCount > 0 )
748 activeCuLayerCount = aActiveCopperLayersCount;
751 int diel_thickness = brd__thickness -
757 diel_thickness /= std::max( 1, activeCuLayerCount - 1 );
759 int dielectric_idx = 0;
778 if( enabledLayer[
F_Mask] )
803 if( (dielectric_idx & 1) == 0 )
819 if( enabledLayer[
B_Mask] )
862 aFormatter->
Print(
"(stackup" );
871 layer_name.Printf( wxT(
"dielectric %d" ), item->GetDielectricLayerId() );
873 layer_name =
LSET::Name( item->GetBrdLayerId() );
875 aFormatter->
Print(
"(layer %s (type %s)",
876 aFormatter->
Quotew( layer_name ).c_str(),
877 aFormatter->
Quotew( item->GetTypeName() ).c_str() );
880 for(
int idx = 0; idx < item->GetSublayersCount(); idx++ )
883 aFormatter->
Print(
" addsublayer" );
885 if( item->IsColorEditable() &&
IsPrmSpecified( item->GetColor( idx ) ) )
887 aFormatter->
Print(
"(color %s)",
888 aFormatter->
Quotew( item->GetColor( idx ) ).c_str() );
891 if( item->IsThicknessEditable() )
893 aFormatter->
Print(
"(thickness %s",
897 aFormatter->
Print(
" locked" );
899 aFormatter->
Print(
")" );
902 if( item->HasMaterialValue( idx ) )
904 aFormatter->
Print(
"(material %s)",
905 aFormatter->
Quotew( item->GetMaterial( idx ) ).c_str() );
908 if( item->HasEpsilonRValue() && item->HasMaterialValue( idx ) )
911 if( item->HasLossTangentValue() && item->HasMaterialValue( idx ) )
913 aFormatter->
Print(
"(loss_tangent %s)",
917 if( item->HasSpecFreqValue() && item->HasMaterialValue( idx ) )
921 wxString modelToken = wxT(
"constant" );
924 modelToken = wxT(
"djordjevic_sarkar" );
926 aFormatter->
Print(
"(dielectric_model %s)", modelToken.ToStdString().c_str() );
930 aFormatter->
Print(
")" );
941 aFormatter->
Print(
"(edge_connector %s)",
948 aFormatter->
Print(
")" );
956 if( aFirstLayer == aSecondLayer )
960 if( aSecondLayer !=
B_Cu && ( aSecondLayer < aFirstLayer || aFirstLayer ==
B_Cu ) )
961 std::swap( aFirstLayer, aSecondLayer );
981 if( aFirstLayer !=
F_Cu && aFirstLayer !=
B_Cu )
991 if( aSecondLayer !=
F_Cu && aSecondLayer !=
B_Cu )
995 for(
int sublayer = 0; sublayer < item->GetSublayersCount(); sublayer++ )
997 const int subThickness = item->GetThickness( sublayer );
998 total += half ? ( subThickness / 2 ) : subThickness;
1015 if( !aPrmValue.IsEmpty()
KICOMMON_API types::KiCadObjectType ToProtoEnum(KICAD_T aValue)
constexpr EDA_IU_SCALE pcbIUScale
bool IsPrmSpecified(const wxString &aPrmValue)
@ BS_ITEM_TYPE_SILKSCREEN
@ BS_ITEM_TYPE_DIELECTRIC
@ BS_ITEM_TYPE_SOLDERPASTE
@ BS_ITEM_TYPE_SOLDERMASK
Container for design settings for a BOARD object.
const LSET & GetEnabledLayers() const
Return a bit-mask of all the layers that are enabled.
int GetBoardThickness() const
The full thickness of the board including copper and masks.
BOARD_STACKUP & GetStackupDescriptor()
int GetCopperLayerCount() const
Manage one layer needed to make a physical board.
void AddDielectricPrms(int aDielectricPrmsIdx)
Add (insert) a DIELECTRIC_PRMS item to m_DielectricPrmsList all values are set to default.
DIELECTRIC_MODEL GetDielectricModel(int aDielectricSubLayer=0) const
PCB_LAYER_ID m_LayerId
type name of layer (copper, silk screen, core, prepreg ...)
int GetSublayersCount() const
void SetDielectricLayerId(int aLayerId)
bool HasSpecFreqValue() const
double GetEpsilonR(int aDielectricSubLayer=0) const
wxString GetColor(int aDielectricSubLayer=0) const
bool HasEpsilonRValue() const
void SetThickness(int aThickness, int aDielectricSubLayer=0)
bool IsMaterialEditable() const
BOARD_STACKUP_ITEM_TYPE m_Type
void SetDielectricModel(DIELECTRIC_MODEL aModel, int aDielectricSubLayer=0)
bool HasMaterialValue(int aDielectricSubLayer=0) const
void SetThicknessLocked(bool aLocked, int aDielectricSubLayer=0)
wxString FormatDielectricLayerName() const
void SetSpecFreq(double aSpecFreq, int aDielectricSubLayer=0)
void SetMaterial(const wxString &aName, int aDielectricSubLayer=0)
BOARD_STACKUP_ITEM(BOARD_STACKUP_ITEM_TYPE aType)
bool HasLossTangentValue() const
bool IsThicknessEditable() const
void SetLossTangent(double aTg, int aDielectricSubLayer=0)
int GetThickness(int aDielectricSubLayer=0) const
void SetEnabled(bool aEnable)
std::vector< DIELECTRIC_PRMS > m_DielectricPrmsList
the "layer" id for dielectric layers, from 1 (top) to 31 (bottom) (only 31 dielectric layers for 32 c...
static int GetMaskDefaultThickness()
wxString GetMaterial(int aDielectricSubLayer=0) const
wxString m_TypeName
name of layer as shown in layer manager. Useful to create reports
void SetBrdLayerId(PCB_LAYER_ID aBrdLayerId)
void SetTypeName(const wxString &aName)
bool IsThicknessLocked(int aDielectricSubLayer=0) const
wxString FormatEpsilonR(int aDielectricSubLayer=0) const
int m_DielectricLayerId
the layer id (F.Cu to B.Cu, F.Silk, B.silk, F.Mask, B.Mask) and UNDEFINED_LAYER (-1) for dielectric l...
void SetColor(const wxString &aColorName, int aDielectricSubLayer=0)
void SetEpsilonR(double aEpsilon, int aDielectricSubLayer=0)
double GetSpecFreq(int aDielectricSubLayer=0) const
void RemoveDielectricPrms(int aDielectricPrmsIdx)
Remove a DIELECTRIC_PRMS item from m_DielectricPrmsList.
int GetDielectricLayerId() const
bool operator==(const BOARD_STACKUP_ITEM &aOther) const
bool IsColorEditable() const
wxString FormatLossTangent(int aDielectricSubLayer=0) const
double GetLossTangent(int aDielectricSubLayer=0) const
static int GetCopperDefaultThickness()
void RemoveAll()
Delete all items in list and clear the list.
const std::vector< BOARD_STACKUP_ITEM * > & GetList() const
static LSET StackupAllowedBrdLayers()
bool SynchronizeWithBoard(BOARD_DESIGN_SETTINGS *aSettings)
Synchronize the BOARD_STACKUP_ITEM* list with the board.
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
bool operator==(const BOARD_STACKUP &aOther) const
int BuildBoardThicknessFromStackup() const
bool m_HasDielectricConstrains
True if some layers have impedance controlled tracks or have specific constrains for micro-wave appli...
void Add(BOARD_STACKUP_ITEM *aItem)
Add a new item in stackup layer.
void BuildDefaultStackupList(const BOARD_DESIGN_SETTINGS *aSettings, int aActiveCopperLayersCount=0)
Create a default stackup, according to the current BOARD_DESIGN_SETTINGS settings.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
BOARD_STACKUP & operator=(const BOARD_STACKUP &aOther)
BOARD_STACKUP_ITEM * GetStackupLayer(int aIndex)
int GetLayerDistance(PCB_LAYER_ID aFirstLayer, PCB_LAYER_ID aSecondLayer) const
Calculate the distance (height) between the two given copper layers.
std::vector< BOARD_STACKUP_ITEM * > m_list
bool m_EdgePlating
True if the edge board is plated.
BS_EDGE_CONNECTOR_CONSTRAINTS m_EdgeConnectorConstraints
If the board has edge connector cards, some constrains can be specified in job file: BS_EDGE_CONNECTO...
void FormatBoardStackup(OUTPUTFORMATTER *aFormatter, const BOARD *aBoard) const
Write the stackup info on board file.
bool m_HasThicknessConstrains
True if some layers (copper and/or dielectric) have specific thickness.
wxString m_FinishType
The name of external copper finish.
Information pertinent to a Pcbnew printed circuit board.
A helper class to manage a dielectric layer set of parameters.
double m_EpsilonR
true for dielectric layers with a fixed thickness (for impedance controlled purposes),...
double m_SpecFreq
For dielectric (and solder mask) the dielectric loss.
int m_Thickness
type of material (for dielectric and solder mask)
bool operator==(const DIELECTRIC_PRMS &aOther) const
wxString m_Color
For dielectric the dielectric frequency correction model.
DIELECTRIC_MODEL m_DielectricModel
For dielectric the frequency (Hz) at which E_R is specified.
bool m_ThicknessLocked
the physical layer thickness in internal units
double m_LossTangent
For dielectric (and solder mask) the dielectric constant.
A color representation with 4 components: red, green, blue, alpha.
LSET is a set of PCB_LAYER_IDs.
LSEQ CuStack() const
Return a sequence of copper layers in starting from the front/top and extending to the back/bottom.
static wxString Name(PCB_LAYER_ID aLayerId)
Return the fixed name association with aLayerId.
Some functions to handle hotkeys in KiCad.
bool IsCopperLayer(int aLayerId)
Test whether a layer is a copper layer.
PCB_LAYER_ID
A quick note on layer IDs:
KICOMMON_API std::string FormatInternalUnits(const EDA_IU_SCALE &aIuScale, int aValue, EDA_DATA_TYPE aDataType=EDA_DATA_TYPE::DISTANCE)
Converts aValue from internal units to a string appropriate for writing to file.
KICOMMON_API void PackColor(types::Color &aOutput, const KIGFX::COLOR4D &aInput)
wxString NotSpecifiedPrm()
#define DEFAULT_EPSILON_R_SILKSCREEN
#define DEFAULT_EPSILON_R_SOLDERMASK
std::string UIDouble2Str(double aValue)
Print a float number without using scientific notation and no trailing 0 We want to avoid scientific ...
std::string FormatDouble2Str(double aValue)
Print a float number without using scientific notation and no trailing 0 This function is intended in...
DIELECTRIC_MODEL
Frequency-domain model used for the substrate dielectric properties.