25#include <wx/mstream.h>
76using namespace PCB_KEYS_T;
108 std::unique_ptr<FOOTPRINT>& footprint = fpCacheEntry->
GetFootprint();
110 if( aFootprintFilter && footprint.get() != aFootprintFilter )
115 if( footprint->GetAreFontsEmbedded() )
116 footprint->EmbedFonts();
118 footprint->GetEmbeddedFiles()->ClearEmbeddedFonts();
131 m_owner->SetOutputFormatter( &formatter );
132 m_owner->Format( footprint.get() );
143 if( !aFootprintFilter )
155 if( !dir.IsOpened() )
165 if( dir.GetFirst( &fullName, fileSpec ) )
180 wxString fpName = fn.
GetName();
191 if( !cacheError.IsEmpty() )
192 cacheError += wxT(
"\n\n" );
194 cacheError += wxString::Format(
_(
"Warning in file '%s'" ) +
'\n',
196 cacheError += warning;
201 if( !cacheError.IsEmpty() )
202 cacheError += wxT(
"\n\n" );
204 cacheError += wxString::Format(
_(
"Unable to read file '%s'" ) +
'\n',
206 cacheError += ioe.
What();
208 }
while( dir.GetNext( &fullName ) );
212 if( !cacheError.IsEmpty() )
230 wxString fullPath = it->second->GetFileName().GetFullPath();
232 wxRemoveFile( fullPath );
249 footprint.second->SetFilePath( aPath );
290 const std::map<std::string, UTF8>* aProperties )
297 _(
"Internal Group Data Error" ), wxICON_ERROR,
298 wxString::Format(
_(
"Please report this bug. Error validating group "
299 "structure: %s\n\nSave anyway?" ), sanityResult ),
300 _(
"Save Anyway" ) ) )
313 const std::map<std::string, UTF8>* aProperties )
321 if(
m_board->GetAreFontsEmbedded() )
324 m_board->GetEmbeddedFiles()->ClearEmbeddedFonts();
328 m_out->Print(
"(kicad_pcb (version %d) (generator \"pcbnew\") (generator_version %s)",
342 std::string input =
TO_UTF8( aClipboardSourceInput );
349 return parser.
Parse();
363 switch( aItem->
Type() )
402 format(
static_cast<const PAD*
>( aItem ) );
456 wxFAIL_MSG( wxT(
"Cannot format item " ) + aItem->
GetClass() );
512 return KiROUND( aValue / avg );
518 m_out->Print(
"(layer %s %s)",
520 aIsKnockout ?
"knockout" :
"" );
527 m_out->Print(
"(pts" );
529 for(
int ii = 0; ii < outline.
PointCount(); ++ii )
535 m_out->Print(
"(xy %s)",
541 m_out->Print(
"(arc (start %s) (mid %s) (end %s))",
565 m_out->Print(
"(render_cache %s %s",
566 m_out->Quotew( resolvedText ).c_str(),
575 m_out->Print(
"(polygon" );
581 callback_gal.DrawGlyphs( *cache );
590 m_out->Print(
"(setup" );
600 m_out->Print(
"(pad_to_mask_clearance %s)",
605 m_out->Print(
"(solder_mask_min_width %s)",
611 m_out->Print(
"(pad_to_paste_clearance %s)",
617 m_out->Print(
"(pad_to_paste_clearance_ratio %s)",
624 m_out->Print( 0,
" (tenting " );
627 m_out->Print( 0,
")" );
629 m_out->Print( 0,
" (covering " );
632 m_out->Print( 0,
")" );
634 m_out->Print( 0,
" (plugging " );
637 m_out->Print( 0,
")" );
645 m_out->Print( 0,
" (zone_defaults" );
648 format( properties, 0, layer );
650 m_out->Print( 0,
")\n" );
657 m_out->Print(
"(aux_axis_origin %s %s)",
666 m_out->Print(
"(grid_origin %s %s)",
687 aOut->
Print(
" backdrill" );
690 aOut->
Print(
" npth" );
700 if( profile == defaults )
705 m_out->Print(
"(drill_symbol_profile" );
707 if( !profile.
GetName().IsEmpty() )
710 m_out->Print(
"(group_by" );
723 for(
const auto& [key, assignment] : profile.
Assignments() )
725 m_out->Print(
"(assignment (key %s) (mark %s",
m_out->Quotew( wxString::FromUTF8( key ) ).c_str(),
729 m_out->Print(
" %d", assignment.m_ShapeIndex );
731 m_out->Print(
" %s",
m_out->Quotew( assignment.m_Letter ).c_str() );
735 if( !assignment.m_Description.IsEmpty() )
736 m_out->Print(
"(descr %s)",
m_out->Quotew( assignment.m_Description ).c_str() );
749 m_out->Print(
"(general" );
751 m_out->Print(
"(thickness %s)",
765 m_out->Print(
"(layers" );
771 m_out->Print(
"(%d %s %s %s)",
777 :
m_out->Quotew(
m_board->GetLayerName( layer ) ).c_str() );
786 bool print_type =
false;
800 m_out->Print(
"(%d %s %s %s)",
808 :
m_out->Quotew(
m_board->GetLayerName( layer ) ).c_str() );
817 for(
const std::pair<const wxString, wxString>& prop : aBoard->
GetProperties() )
819 m_out->Print(
"(property %s %s)",
820 m_out->Quotew( prop.first ).c_str(),
821 m_out->Quotew( prop.second ).c_str() );
830 if( variantNames.empty() )
833 m_out->Print(
"(variants" );
835 for(
const wxString& variantName : variantNames )
837 m_out->Print(
"(variant (name %s)",
m_out->Quotew( variantName ).c_str() );
841 if( !description.IsEmpty() )
842 m_out->Print(
"(description %s)",
m_out->Quotew( description ).c_str() );
887 m_out->Print(
"(teardrops (best_length_ratio %s) (max_length %s) (best_width_ratio %s) "
896 m_out->Print(
"(filter_ratio %s)",
908 std::set<BOARD_ITEM*, BOARD_ITEM::ptr_cmp> sorted_footprints( aBoard->
Footprints().begin(),
910 std::set<BOARD_ITEM*, BOARD::cmp_drawings> sorted_drawings( aBoard->
Drawings().begin(),
912 std::set<PCB_TRACK*, PCB_TRACK::cmp_tracks> sorted_tracks( aBoard->
Tracks().begin(),
914 std::set<PCB_POINT*, PCB_POINT::cmp_points> sorted_points( aBoard->
Points().begin(),
916 std::set<BOARD_ITEM*, BOARD_ITEM::ptr_cmp> sorted_zones( aBoard->
Zones().begin(),
917 aBoard->
Zones().end() );
918 std::set<BOARD_ITEM*, BOARD_ITEM::ptr_cmp> sorted_groups( aBoard->
Groups().begin(),
920 std::set<BOARD_ITEM*, BOARD_ITEM::ptr_cmp> sorted_generators( aBoard->
Generators().begin(),
922 std::set<BOARD_ITEM*, BOARD_ITEM::ptr_cmp> sorted_constraints( aBoard->
Constraints().begin(),
927 for(
BOARD_ITEM* footprint : sorted_footprints )
945 for(
auto zone : sorted_zones )
957 for(
BOARD_ITEM* constraint : sorted_constraints )
963 std::vector<NETINFO_ITEM*> nets;
964 PAD* pads[2] = {
nullptr,
nullptr };
968 auto cmp = [](
const wxString& a,
const wxString& b )
973 std::map<wxString, CHAIN_INFO,
decltype( cmp )> chains( cmp );
980 if( net->GetNetChain().IsEmpty() && !net->GetTerminalPad( 0 ) && !net->GetTerminalPad( 1 ) )
983 wxString chainName = net->GetNetChain();
985 if( chainName.IsEmpty() && ( net->GetTerminalPad( 0 ) || net->GetTerminalPad( 1 ) ) )
986 chainName = net->GetNetname();
988 CHAIN_INFO&
info = chains[chainName];
989 info.nets.push_back( net );
990 for(
int i = 0; i < 2; ++i )
992 if( net->GetTerminalPad( i ) && !
info.pads[i] )
993 info.pads[i] = net->GetTerminalPad( i );
998 for(
const auto&
kv : chains )
1000 const CHAIN_INFO& si =
kv.second;
1001 const wxString& chainName =
kv.first;
1003 if( si.nets.size() > 1 || si.pads[0] || si.pads[1] || !chainName.IsEmpty() )
1009 m_out->Print(
"(net_chains" );
1010 for(
const auto&
kv : chains )
1012 const wxString&
name =
kv.first;
1013 const CHAIN_INFO& si =
kv.second;
1015 if( si.nets.size() == 1 && !si.pads[0] && !si.pads[1] &&
name.IsEmpty() )
1018 m_out->Print(
" (net_chain (name %s)",
m_out->Quotew(
name ).c_str() );
1019 m_out->Print(
" (members" );
1024 m_out->Print(
")" );
1026 for(
int i = 0; i < 2; ++i )
1029 m_out->Print(
" (terminal_pad %s)",
1030 m_out->Quotew( si.pads[i]->m_Uuid.AsString() ).c_str() );
1033 m_out->Print(
")" );
1035 m_out->Print(
")" );
1044 files_to_write.
AddFile( file.second );
1051 files_to_write.
AddFile( file.second );
1054 m_out->Print(
"(embedded_fonts %s)",
1057 if( !files_to_write.
IsEmpty() )
1073 m_out->Print(
"(dimension" );
1077 m_out->Print(
"(type orthogonal)" );
1079 m_out->Print(
"(type aligned)" );
1081 m_out->Print(
"(type leader)" );
1083 m_out->Print(
"(type center)" );
1085 m_out->Print(
"(type radial)" );
1087 wxFAIL_MSG( wxT(
"Cannot format unknown dimension type!" ) );
1096 m_out->Print(
"(pts (xy %s %s) (xy %s %s))",
1107 m_out->Print(
"(leader_length %s)",
1112 m_out->Print(
"(orientation %d)",
static_cast<int>(
ortho->GetOrientation() ) );
1116 m_out->Print(
"(format (prefix %s) (suffix %s) (units %d) (units_format %d) (precision %d)",
1125 m_out->Print(
"(override_value %s)",
1132 m_out->Print(
")" );
1135 m_out->Print(
"(style (thickness %s) (arrow_length %s) (text_position_mode %d)",
1140 if(
ortho || aligned )
1145 m_out->Print(
"(arrow_direction outward)" );
1148 m_out->Print(
"(arrow_direction inward)" );
1156 m_out->Print(
"(extension_height %s)",
1163 m_out->Print(
"(extension_offset %s)",
1169 m_out->Print(
")" );
1177 m_out->Print(
")" );
1184 std::string prefix = parentFP ?
"fp" :
"gr";
1189 m_out->Print(
"(%s_line (start %s) (end %s)",
1196 m_out->Print(
"(%s_rect (start %s) (end %s)", prefix.c_str(),
1205 m_out->Print(
"(%s_circle (center %s) (end %s)", prefix.c_str(),
1211 m_out->Print(
"(%s_arc (start %s) (mid %s) (end %s)", prefix.c_str(),
1223 m_out->Print(
"(%s_poly", prefix.c_str() );
1234 m_out->Print(
"(%s_curve (pts (xy %s) (xy %s) (xy %s) (xy %s))",
1243 m_out->Print(
"(%s_ellipse (center %s) (major_radius %s) (minor_radius %s) "
1244 "(rotation_angle %s)",
1253 m_out->Print(
"(%s_ellipse_arc (center %s) (major_radius %s) (minor_radius %s) "
1254 "(rotation_angle %s) (start_angle %s) (end_angle %s)",
1285 m_out->Print(
"(fill hatch)" );
1289 m_out->Print(
"(fill reverse_hatch)" );
1293 m_out->Print(
"(fill cross_hatch)" );
1318 m_out->Print(
"(solder_mask_margin %s)",
1327 m_out->Print(
")" );
1333 wxCHECK_RET( aBitmap !=
nullptr &&
m_out !=
nullptr,
"" );
1339 wxCHECK_RET(
image !=
nullptr,
"wxImage* is NULL" );
1341 m_out->Print(
"(image (at %s %s)",
1353 wxMemoryOutputStream ostream;
1360 m_out->Print(
")" );
1373 m_out->Print(
")" );
1379 m_out->Print(
"(target %s (at %s) (size %s)",
1380 ( aTarget->
GetShape() ) ?
"x" :
"plus",
1390 m_out->Print(
")" );
1400 m_out->Print(
"(grid_item %s (at %s)", polar ?
"polar" :
"xy",
1429 m_out->Print(
" (affects (cursor %s) (routing %s) (placement %s))",
1430 aff.
cursor ?
"yes" :
"no",
1439 m_out->Print(
")\n" );
1449 if( initial_comments )
1451 for(
unsigned i = 0; i < initial_comments->GetCount(); ++i )
1452 m_out->Print(
"%s\n",
TO_UTF8( (*initial_comments)[i] ) );
1458 m_out->Print(
"(footprint %s",
1463 m_out->Print(
"(footprint %s",
1469 m_out->Print(
"(version %d) (generator \"pcbnew\") (generator_version %s)",
1487 m_out->Print(
"(transform (translate %s) (rotate %s) (scale %s %s))",
1505 m_out->Print(
"(property %s %s",
1506 m_out->Quotew( field->GetUntranslatedName() ).c_str(),
1507 m_out->Quotew( field->GetText() ).c_str() );
1511 m_out->Print(
")" );
1516 if( !compClass->IsEmpty() )
1518 m_out->Print(
"(component_classes" );
1521 m_out->Print(
"(class %s)",
m_out->Quotew( constituent->GetName() ).c_str() );
1523 m_out->Print(
")" );
1529 m_out->Print(
"(property ki_fp_filters %s)",
1545 m_out->Print(
"(units" );
1549 m_out->Print(
"(unit (name %s)",
m_out->Quotew( u.m_unitName ).c_str() );
1550 m_out->Print(
"(pins" );
1552 for(
const wxString& n : u.m_pins )
1553 m_out->Print(
" %s",
m_out->Quotew( n ).c_str() );
1555 m_out->Print(
")" );
1556 m_out->Print(
")" );
1559 m_out->Print(
")" );
1564 m_out->Print(
"(solder_mask_margin %s)",
1570 m_out->Print(
"(solder_paste_margin %s)",
1576 m_out->Print(
"(solder_paste_margin_ratio %s)",
1582 m_out->Print(
"(clearance %s)",
1588 m_out->Print(
"(zone_connect %d)",
1597 m_out->Print(
"(attr" );
1600 m_out->Print(
" smd" );
1603 m_out->Print(
" through_hole" );
1606 m_out->Print(
" board_only" );
1609 m_out->Print(
" exclude_from_pos_files" );
1612 m_out->Print(
" exclude_from_bom" );
1615 m_out->Print(
" exclude_from_sim" );
1618 m_out->Print(
" allow_missing_courtyard" );
1621 m_out->Print(
" dnp" );
1624 m_out->Print(
" allow_soldermask_bridges" );
1626 m_out->Print(
")" );
1632 m_out->Print(
"(stackup" );
1637 wxString canonicalName(
LSET::Name( layer ) );
1638 m_out->Print(
"(layer %s)",
m_out->Quotew( canonicalName ).c_str() );
1641 m_out->Print(
")" );
1646 m_out->Print(
"(private_layers" );
1650 wxString canonicalName(
LSET::Name( layer ) );
1651 m_out->Print(
" %s",
m_out->Quotew( canonicalName ).c_str() );
1654 m_out->Print(
")" );
1659 m_out->Print(
"(net_tie_pad_groups" );
1664 m_out->Print(
")" );
1670 const std::vector<std::set<wxString>>& jumperGroups = aFootprint->
JumperPadGroups();
1672 if( !jumperGroups.empty() )
1674 m_out->Print(
"(jumper_pad_groups" );
1676 for(
const std::set<wxString>&
group : jumperGroups )
1678 m_out->Print(
"(" );
1680 for(
const wxString& padName :
group )
1681 m_out->Print(
"%s ",
m_out->Quotew( padName ).c_str() );
1683 m_out->Print(
")" );
1686 m_out->Print(
")" );
1692 std::set<PAD*, FOOTPRINT::cmp_pads> sorted_pads( aFootprint->
Pads().begin(),
1693 aFootprint->
Pads().end() );
1694 std::set<BOARD_ITEM*, FOOTPRINT::cmp_drawings> sorted_drawings(
1697 std::set<PCB_POINT*, PCB_POINT::cmp_points> sorted_points(
1698 aFootprint->
Points().begin(),
1699 aFootprint->
Points().end() );
1700 std::set<ZONE*, FOOTPRINT::cmp_zones> sorted_zones( aFootprint->
Zones().begin(),
1701 aFootprint->
Zones().end() );
1702 std::set<BOARD_ITEM*, PCB_GROUP::ptr_cmp> sorted_groups( aFootprint->
Groups().begin(),
1703 aFootprint->
Groups().end() );
1704 std::set<BOARD_ITEM*, PCB_GROUP::ptr_cmp> sorted_constraints( aFootprint->
Constraints().begin(),
1716 for(
PAD*
pad : sorted_pads )
1728 for(
BOARD_ITEM* constraint : sorted_constraints )
1732 const bool baseDnp = aFootprint->
IsDNP();
1737 for(
const auto& [variantName, variant] : aFootprint->
GetVariants() )
1739 m_out->Print(
"(variant (name %s)",
m_out->Quotew( variantName ).c_str() );
1741 if( variant.GetDNP() != baseDnp )
1744 if( variant.GetExcludedFromBOM() != baseExcludedFromBOM )
1747 if( variant.GetExcludedFromSim() != baseExcludedFromSim )
1750 if( variant.GetExcludedFromPosFiles() != baseExcludedFromPosFiles )
1753 variant.GetExcludedFromPosFiles() );
1756 for(
const auto& [fieldName, fieldValue] : variant.GetFields() )
1759 const wxString baseValue = baseField ? baseField->
GetText() : wxString();
1761 if( fieldValue == baseValue )
1764 m_out->Print(
"(field (name %s) (value %s))",
1765 m_out->Quotew( fieldName ).c_str(),
1766 m_out->Quotew( fieldValue ).c_str() );
1769 m_out->Print(
")" );
1781 m_out->Print(
"(model" );
1782 m_out->Print(
"(type extruded)" );
1788 m_out->Print(
"(layer pad_bbox)" );
1792 m_out->Print(
"(layer auto)" );
1795 static const char* matNames[] = {
"plastic",
"matte",
"metal",
"copper" };
1796 m_out->Print(
"(material %s)", matNames[
static_cast<int>( body->m_material )] );
1807 m_out->Print(
"(color unspecified)" );
1819 m_out->Print(
")" );
1823 auto bs3D = aFootprint->
Models().begin();
1824 auto es3D = aFootprint->
Models().end();
1826 while( bs3D != es3D )
1828 if( !bs3D->m_Filename.IsEmpty() )
1830 m_out->Print(
"(model %s",
m_out->Quotew( bs3D->m_Filename ).c_str() );
1835 if( bs3D->m_Opacity != 1.0 )
1836 m_out->Print(
"%s", fmt::format(
"(opacity {:.4f})", bs3D->m_Opacity).c_str() );
1838 m_out->Print(
"(offset (xyz %s %s %s))",
1843 m_out->Print(
"(scale (xyz %s %s %s))",
1848 m_out->Print(
"(rotate (xyz %s %s %s))",
1853 m_out->Print(
")" );
1860 m_out->Print(
")" );
1879 if( !aEnumerateLayers )
1882 if( ( aLayerMask & cu_board_mask ) == cu_board_mask )
1884 output +=
' ' +
m_out->Quotew(
"*.Cu" );
1889 aLayerMask &= ~cu_all;
1891 else if( ( aLayerMask & cu_board_mask ) == fr_bk )
1894 output +=
' ' +
m_out->Quotew(
"F&B.Cu" );
1896 output +=
' ' +
m_out->Quotew(
"*.Cu" );
1898 aLayerMask &= ~fr_bk;
1901 if( ( aLayerMask & adhes ) == adhes )
1903 output +=
' ' +
m_out->Quotew(
"*.Adhes" );
1904 aLayerMask &= ~adhes;
1909 output +=
' ' +
m_out->Quotew(
"*.Paste" );
1913 if( ( aLayerMask & silks ) == silks )
1915 output +=
' ' +
m_out->Quotew(
"*.SilkS" );
1916 aLayerMask &= ~silks;
1919 if( ( aLayerMask & mask ) == mask )
1921 output +=
' ' +
m_out->Quotew(
"*.Mask" );
1922 aLayerMask &= ~mask;
1925 if( ( aLayerMask & crt_yd ) == crt_yd )
1927 output +=
' ' +
m_out->Quotew(
"*.CrtYd" );
1928 aLayerMask &= ~crt_yd;
1931 if( ( aLayerMask & fab ) == fab )
1933 output +=
' ' +
m_out->Quotew(
"*.Fab" );
1941 if( aLayerMask[layer] )
1945 m_out->Print(
"(layers %s)", output.c_str() );
1985 const char*
property =
nullptr;
2003 const char* simElectricalType =
nullptr;
2009 default: simElectricalType =
nullptr;
break;
2012 m_out->Print(
"(pad %s %s %s",
2015 shapeName(
F_Cu ) );
2017 m_out->Print(
"(at %s %s)",
2034 bool forceShapeOffsetOutput =
false;
2039 if( aPad->
GetOffset( layer ) != shapeoffset )
2040 forceShapeOffsetOutput =
true;
2043 if( drill.
x > 0 || drill.
y > 0 || shapeoffset.
x != 0 || shapeoffset.
y != 0 || forceShapeOffsetOutput )
2045 m_out->Print(
"(drill" );
2048 m_out->Print(
" oval" );
2053 if( drill.
y > 0 && drill.
x != drill.
y )
2060 if( shapeoffset.
x != 0 || shapeoffset.
y != 0 || forceShapeOffsetOutput )
2063 m_out->Print(
")" );
2069 m_out->Print(
"(backdrill (size %s) (layers %s %s))",
2077 m_out->Print(
"(tertiary_drill (size %s) (layers %s %s))",
2083 auto formatPostMachining =
2089 m_out->Print(
"(%s %s",
2094 if( aProps.size > 0 )
2097 if( aProps.depth > 0 )
2100 if( aProps.angle > 0 )
2103 m_out->Print(
")" );
2111 m_out->Print(
"(property %s)", property );
2113 if( simElectricalType )
2114 m_out->Print(
"(sim_electrical_type %s)", simElectricalType );
2128 m_out->Print(
"(zone_layer_connections" );
2136 m_out->Print(
")" );
2141 auto formatCornerProperties =
2148 m_out->Print(
"(roundrect_rratio %s)",
2155 m_out->Print(
"(chamfer_ratio %s)",
2158 m_out->Print(
"(chamfer" );
2161 m_out->Print(
" top_left" );
2164 m_out->Print(
" top_right" );
2167 m_out->Print(
" bottom_left" );
2170 m_out->Print(
" bottom_right" );
2172 m_out->Print(
")" );
2179 formatCornerProperties(
F_Cu );
2198 m_out->Print(
"(die_length %s)",
2204 m_out->Print(
"(die_delay %s)",
2210 m_out->Print(
"(solder_mask_margin %s)",
2216 m_out->Print(
"(solder_paste_margin %s)",
2222 m_out->Print(
"(solder_paste_margin_ratio %s)",
2228 m_out->Print(
"(clearance %s)",
2234 m_out->Print(
"(zone_connect %d)",
2240 m_out->Print(
"(thermal_bridge_width %s)",
2246 m_out->Print(
"(thermal_bridge_angle %s)",
2252 m_out->Print(
"(thermal_gap %s)",
2267 auto formatPrimitives =
2270 m_out->Print(
"(primitives" );
2273 for(
const std::shared_ptr<PCB_SHAPE>& primitive : aPad->
GetPrimitives( aLayer ) )
2275 const SHAPE_T libShape = primitive->GetLibraryShape();
2280 if( primitive->IsProxyItem() )
2282 m_out->Print(
"(gr_vector (start %s) (end %s)",
2288 m_out->Print(
"(gr_line (start %s) (end %s)",
2295 if( primitive->IsProxyItem() )
2297 m_out->Print(
"(gr_bbox (start %s) (end %s)",
2303 m_out->Print(
"(gr_rect (start %s) (end %s)",
2307 if( primitive->GetCornerRadius() > 0 )
2309 m_out->Print(
" (radius %s)",
2316 m_out->Print(
"(gr_arc (start %s) (mid %s) (end %s)",
2323 m_out->Print(
"(gr_circle (center %s) (end %s)",
2331 m_out->Print(
"(gr_curve (pts (xy %s) (xy %s) (xy %s) (xy %s))",
2339 if( primitive->IsPolyShapeValid() )
2344 m_out->Print(
"(gr_poly" );
2353 if( !primitive->IsProxyItem() )
2363 m_out->Print(
")" );
2366 m_out->Print(
")" );
2371 m_out->Print(
"(options" );
2374 m_out->Print(
"(clearance convexhull)" );
2376 m_out->Print(
"(clearance outline)" );
2379 m_out->Print(
"(anchor %s)", anchorShape(
F_Cu ) );
2384 formatPrimitives(
F_Cu );
2393 m_out->Print( 0,
" (tenting " );
2398 m_out->Print( 0,
")" );
2404 auto formatPadLayer =
2409 m_out->Print(
"(shape %s)", shapeName( aLayer ) );
2418 shapeoffset = aPad->
GetOffset( aLayer );
2420 if( shapeoffset.
x != 0 || shapeoffset.
y != 0 )
2423 formatCornerProperties( aLayer );
2427 m_out->Print(
"(options" );
2430 m_out->Print(
"(anchor %s)", anchorShape( aLayer ) );
2432 m_out->Print(
")" );
2435 formatPrimitives( aLayer );
2449 if( layerSpokeAngle != defaultLayerAngle )
2451 m_out->Print(
"(thermal_bridge_angle %s)",
2455 if( padstack.
ThermalGap( aLayer ).has_value() )
2457 m_out->Print(
"(thermal_gap %s)",
2463 m_out->Print(
"(thermal_bridge_width %s)",
2467 if( padstack.
Clearance( aLayer ).has_value() )
2469 m_out->Print(
"(clearance %s)",
2475 m_out->Print(
"(zone_connect %d)",
2485 m_out->Print(
"(padstack (mode front_inner_back)" );
2487 m_out->Print(
"(layer \"Inner\"" );
2489 m_out->Print(
")" );
2490 m_out->Print(
"(layer \"B.Cu\"" );
2491 formatPadLayer(
B_Cu );
2492 m_out->Print(
")" );
2496 m_out->Print(
"(padstack (mode custom)" );
2506 formatPadLayer( layer );
2507 m_out->Print(
")" );
2511 m_out->Print(
")" );
2515 m_out->Print(
")" );
2521 wxCHECK_RET( aBarcode !=
nullptr &&
m_out !=
nullptr,
"" );
2523 m_out->Print(
"(barcode" );
2528 m_out->Print(
"(at %s %s)",
2534 m_out->Print(
"(size %s %s)",
2542 const char* typeStr =
"code39";
2553 m_out->Print(
"(type %s)", typeStr );
2558 const char* eccStr =
"L";
2567 m_out->Print(
"(ecc_level %s)", eccStr );
2582 m_out->Print(
")" );
2615 m_out->Print(
"(%s_text %s %s",
2624 m_out->Print(
"(at %s %s)",
2651 if( mutateThickness )
2654 aText->EDA_TEXT::Format(
m_out, ctl_flags );
2658 if( mutateThickness )
2663 aText->EDA_TEXT::Format(
m_out, ctl_flags );
2672 m_out->Print(
")" );
2681 m_out->Print(
"(%s %s",
2683 : parentFP ?
"fp_text_box"
2714 m_out->Print(
"(margins %s %s %s %s)",
2721 m_out->Print(
"(span %d %d)", cell->GetColSpan(), cell->GetRowSpan() );
2738 aTextBox->EDA_TEXT::Format(
m_out, 0 );
2752 m_out->Print(
")" );
2762 m_out->Print(
"(border" );
2769 m_out->Print(
")" );
2771 m_out->Print(
"(separators" );
2778 m_out->Print(
")" );
2780 m_out->Print(
"(column_widths" );
2782 for(
int col = 0; col < aTable->
GetColCount(); ++col )
2785 m_out->Print(
")" );
2787 m_out->Print(
"(row_heights" );
2789 for(
int row = 0; row < aTable->
GetRowCount(); ++row )
2792 m_out->Print(
")" );
2794 m_out->Print(
"(cells" );
2799 m_out->Print(
")" );
2807 wxCHECK_RET( aMap !=
nullptr &&
m_out !=
nullptr,
"" );
2809 m_out->Print(
"(drill_map " );
2825 m_out->Print(
"(span all)" );
2829 m_out->Print(
"(span " );
2831 m_out->Print(
")" );
2837 m_out->Print(
")" );
2843 wxCHECK_RET( aChart !=
nullptr &&
m_out !=
nullptr,
"" );
2845 m_out->Print(
"(drill_chart " );
2861 m_out->Print(
"(filter" );
2868 m_out->Print(
")" );
2887 if( !haveDefaults || col.m_Heading != colDefaults.
m_Heading )
2888 m_out->Print(
"(name %s)",
m_out->Quotew( col.m_Heading ).c_str() );
2890 if( !haveDefaults || col.m_Align != colDefaults.
m_Align )
2893 if( col.m_Width > 0 )
2896 m_out->Print(
")" );
2905 for(
const auto& [row, shapeIndex] : aChart->
RowShapes() )
2906 m_out->Print(
"(shape %d %d)", row, shapeIndex );
2908 m_out->Print(
")" );
2911 if( !aChart->
RowKeys().empty() )
2915 m_out->Print(
"(row_keys" );
2917 for(
const auto& [row, key] : aChart->
RowKeys() )
2918 m_out->Print(
"(key %d %s)", row,
m_out->Quotew( wxString::FromUTF8( key ) ).c_str() );
2920 m_out->Print(
")" );
2926 m_out->Print(
")" );
2932 wxCHECK_RET( aTable !=
nullptr &&
m_out !=
nullptr,
"" );
2934 m_out->Print(
"(table " );
2945 m_out->Print(
")" );
2951 wxArrayString memberIds;
2961 bool validateAgainstBoard =
m_board &&
m_board->IsItemIndexedById( aGroup );
2963 memberIds.Alloc( aGroup->
GetItems().size() );
2967 if( !validateAgainstBoard
2970 memberIds.Add( member->m_Uuid.AsString() );
2974 if( memberIds.empty() )
2989 m_out->Print(
"(members" );
2991 for(
const wxString& memberId : memberIds )
2992 m_out->Print(
" %s",
m_out->Quotew( memberId ).c_str() );
2994 m_out->Print(
")" );
2997 m_out->Print(
")" );
3003 const std::vector<CONSTRAINT_MEMBER>& members = aConstraint->
GetMembers();
3005 if( members.empty() )
3015 m_out->Print(
"(members" );
3022 m_out->Print(
"(member %s %s %d)",
m_out->Quotew( member.m_item.AsString() ).c_str(),
3027 m_out->Print(
"(member %s %s)",
m_out->Quotew( member.m_item.AsString() ).c_str(),
3032 m_out->Print(
")" );
3038 double value = *aConstraint->
GetValue();
3050 m_out->Print(
")" );
3066 m_out->Print(
"(generated" );
3070 m_out->Print(
"(type %s) (name %s) (layer %s)",
3078 for(
const auto& [key, value] : aGenerator->
GetProperties() )
3080 if( value.CheckType<
double>() || value.CheckType<
int>() || value.CheckType<
long>()
3081 || value.CheckType<
long long>() )
3085 if( !value.GetAs( &val ) )
3088 std::string buf = fmt::format(
"{:.10g}", val );
3091 m_out->Print(
"(%s %s)", key.c_str(), buf.c_str() );
3093 else if( value.CheckType<
bool>() )
3096 value.GetAs( &val );
3100 else if( value.CheckType<
VECTOR2I>() )
3103 value.GetAs( &val );
3105 m_out->Print(
"(%s (xy %s))",
3112 value.GetAs( &val );
3114 m_out->Print(
"(%s ", key.c_str() );
3116 m_out->Print(
")" );
3118 else if( value.CheckType<std::vector<VECTOR2I>>() )
3121 std::vector<VECTOR2I> val;
3122 value.GetAs( &val );
3124 m_out->Print(
"(%s (cells", key.c_str() );
3127 m_out->Print(
"(ij %d %d)", cell.x, cell.y );
3129 m_out->Print(
"))" );
3135 if( value.CheckType<wxString>() )
3137 value.GetAs( &val );
3139 else if( value.CheckType<std::string>() )
3142 value.GetAs( &str );
3144 val = wxString::FromUTF8( str );
3147 m_out->Print(
"(%s %s)", key.c_str(),
m_out->Quotew( val ).c_str() );
3151 std::vector<std::pair<wxString, const BOARD_ITEM*>> templateItems = aGenerator->
GetTemplateItems();
3153 if( !templateItems.empty() )
3155 m_out->Print(
"(templates" );
3157 for(
const auto& [
name, item] : templateItems )
3162 m_out->Print(
"(template (name %s)",
m_out->Quotew(
name ).c_str() );
3164 m_out->Print(
")" );
3167 m_out->Print(
")" );
3170 wxArrayString memberIds;
3173 memberIds.Add( member->m_Uuid.AsString() );
3177 m_out->Print(
"(members" );
3179 for(
const wxString& memberId : memberIds )
3180 m_out->Print(
" %s",
m_out->Quotew( memberId ).c_str() );
3182 m_out->Print(
")" );
3185 m_out->Print(
")" );
3196 const BOARD* board =
via->GetBoard();
3198 wxCHECK_RET( board !=
nullptr, wxT(
"Via has no parent." ) );
3200 m_out->Print(
"(via" );
3202 via->LayerPair( &layer1, &layer2 );
3204 switch(
via->GetViaType() )
3210 m_out->Print(
" blind " );
3214 m_out->Print(
" buried " );
3218 m_out->Print(
" micro " );
3225 m_out->Print(
"(at %s) (size %s)",
3239 if(
via->Padstack().SecondaryDrill().size.x > 0 )
3241 m_out->Print(
"(backdrill (size %s) (layers %s %s))",
3247 if(
via->Padstack().TertiaryDrill().size.x > 0 )
3249 m_out->Print(
"(tertiary_drill (size %s) (layers %s %s))",
3260 m_out->Print(
"(%s %s", aName,
3263 if( aProps.size > 0 )
3266 if( aProps.depth > 0 )
3269 if( aProps.angle > 0 )
3272 m_out->Print(
")" );
3275 formatPostMachining(
"front_post_machining",
via->Padstack().FrontPostMachining() );
3276 formatPostMachining(
"back_post_machining",
via->Padstack().BackPostMachining() );
3278 m_out->Print(
"(layers %s %s)",
3282 switch(
via->Padstack().UnconnectedLayerMode() )
3302 if(
via->IsLocked() )
3305 if(
via->GetIsFree() )
3308 if(
via->GetRemoveUnconnected() )
3310 m_out->Print(
"(zone_layer_connections" );
3318 m_out->Print(
")" );
3326 m_out->Print( 0,
" (tenting " );
3331 m_out->Print( 0,
")" );
3340 m_out->Print( 0,
" (covering " );
3345 m_out->Print( 0,
")" );
3351 m_out->Print( 0,
" (plugging " );
3356 m_out->Print( 0,
")" );
3364 m_out->Print(
"(padstack" );
3368 m_out->Print(
"(mode front_inner_back)" );
3370 m_out->Print(
"(layer \"Inner\"" );
3371 m_out->Print(
"(size %s)",
3373 m_out->Print(
")" );
3374 m_out->Print(
"(layer \"B.Cu\"" );
3375 m_out->Print(
"(size %s)",
3377 m_out->Print(
")" );
3381 m_out->Print(
"(mode custom)" );
3389 m_out->Print(
"(size %s)",
3391 m_out->Print(
")" );
3395 m_out->Print(
")" );
3407 m_out->Print(
"(arc (start %s) (mid %s) (end %s) (width %s)",
3415 m_out->Print(
"(segment (start %s) (end %s) (width %s)",
3433 m_out->Print(
"(solder_mask_margin %s)",
3443 m_out->Print(
")" );
3449 m_out->Print(
"(zone" );
3467 if( layers.count() > 1 )
3489 m_out->Print(
"(hatch %s %s)", hatch.c_str(),
3500 m_out->Print(
"(attr (teardrop (type %s)))",
3505 m_out->Print(
"(connect_pads" );
3514 m_out->Print(
" thru_hole_only" );
3518 m_out->Print(
" yes" );
3522 m_out->Print(
" no" );
3526 m_out->Print(
"(clearance %s)",
3529 m_out->Print(
")" );
3531 m_out->Print(
"(min_thickness %s)",
3537 m_out->Print(
"(keepout (tracks %s) (vias %s) (pads %s) (copperpour %s) (footprints %s))",
3545 m_out->Print(
"(placement" );
3564 m_out->Print(
")" );
3567 m_out->Print(
"(fill" );
3571 m_out->Print(
" yes" );
3575 m_out->Print(
"(mode hatch)" );
3577 m_out->Print(
"(mode thieving)" );
3581 m_out->Print(
"(thermal_gap %s) (thermal_bridge_width %s)",
3591 m_out->Print(
"(smoothing chamfer)" );
3595 m_out->Print(
"(smoothing fillet)" );
3606 m_out->Print(
"(island_removal_mode %d)",
3611 m_out->Print(
"(island_area_min %s)",
3617 m_out->Print(
"(hatch_thickness %s) (hatch_gap %s) (hatch_orientation %s)",
3624 m_out->Print(
"(hatch_smoothing_level %d) (hatch_smoothing_value %s)",
3629 m_out->Print(
"(hatch_border_algorithm %s) (hatch_min_hole_area %s)",
3636 const char* patternStr =
"dots";
3643 default: patternStr =
"dots";
break;
3646 m_out->Print(
"(thieving (type %s) (size %s) (gap %s) (width %s) "
3647 "(stagger %s) (orientation %s))",
3652 thieving.
stagger ?
"yes" :
"no",
3656 m_out->Print(
")" );
3660 format( properties, 0, layer );
3669 if(
chain.PointCount() == 0 )
3672 m_out->Print(
"(polygon" );
3674 m_out->Print(
")" );
3683 for(
int ii = 0; ii < fv->OutlineCount(); ++ii )
3685 m_out->Print(
"(filled_polygon" );
3694 m_out->Print(
")" );
3699 m_out->Print(
")" );
3710 m_out->Print( aNestLevel,
"(property\n" );
3715 m_out->Print( aNestLevel,
"(hatch_position (xy %s))",
3719 m_out->Print( aNestLevel,
")\n" );
3725 m_ctl( aControlFlags )
3739 const std::map<std::string, UTF8>* aProperties,
PROJECT* aProject )
3743 unsigned lineCount = 0;
3766 const std::map<std::string, UTF8>* aProperties,
PROGRESS_REPORTER* aProgressReporter,
3767 unsigned aLineCount )
3769 init( aProperties );
3771 bool preserveDestinationStackup =
3775 preserveDestinationStackup, !aIsNewLoad );
3779 std::set<BOARD_ITEM*> itemsBefore;
3780 std::set<NETINFO_ITEM*> netsBefore;
3785 itemsBefore.insert( item );
3788 netsBefore.insert( net );
3791 auto revertPartialAppend = [&]()
3796 std::vector<BOARD_ITEM*> addedItems;
3800 if( !itemsBefore.contains( item ) )
3801 addedItems.push_back( item );
3812 std::vector<NETINFO_ITEM*> addedNets;
3816 if( !netsBefore.contains( net ) )
3817 addedNets.push_back( net );
3827 BOARD* board =
nullptr;
3831 board =
dynamic_cast<BOARD*
>( parser.
Parse() );
3835 revertPartialAppend();
3842 revertPartialAppend();
3851 revertPartialAppend();
3855 if( board != &aBoard )
3859 parser.CurLine(), parser.CurLineNumber(), parser.CurOffset() );
3892 const wxString& aLibPath,
bool aBestEfforts,
3893 const std::map<std::string, UTF8>* aProperties )
3895 wxDir dir( aLibPath );
3898 init( aProperties );
3904 if( !dir.IsOpened() )
3909 errorMsg = ioe.
What();
3915 for(
const auto& footprint :
m_cache->GetFootprints() )
3916 aFootprintNames.Add( footprint.first );
3918 if( !errorMsg.IsEmpty() && !aBestEfforts )
3924 const wxString& aFootprintName,
3925 const std::map<std::string, UTF8>* aProperties,
3926 bool checkModified )
3928 init( aProperties );
3939 auto it =
m_cache->GetFootprints().find( aFootprintName );
3941 if( it ==
m_cache->GetFootprints().end() )
3944 return it->second->GetFootprint().get();
3949 const wxString& aFootprintName,
3950 const std::map<std::string, UTF8>* aProperties )
3952 return getFootprint( aLibraryPath, aFootprintName, aProperties,
false );
3957 const wxString& aFootprintName,
3958 const std::map<std::string, UTF8>* aProperties )
3969 return footprintFile.Exists();
3974 wxString& aFootprintNameOut,
3975 const std::map<std::string, UTF8>* aProperties )
3978 wxFFile f( aFootprintPath );
3986 f.ReadAll( &fcontents );
3988 aFootprintNameOut = wxFileName( aFootprintPath ).GetName();
3990 return std::unique_ptr<FOOTPRINT>(
dynamic_cast<FOOTPRINT*
>(
Parse( fcontents ) ) );
3995 const wxString& aFootprintName,
bool aKeepUUID,
3996 const std::map<std::string, UTF8>* aProperties )
4005 std::unique_ptr<FOOTPRINT>
copy;
4012 copy->SetParent(
nullptr );
4021 const std::map<std::string, UTF8>* aProperties )
4023 init( aProperties );
4031 wxString libPath = aLibraryPath;
4032 wxString singleFileBaseName;
4033 bool saveSingleFile =
false;
4036 wxFileName asFile( aLibraryPath );
4040 saveSingleFile =
true;
4041 libPath = asFile.GetPath();
4042 singleFileBaseName = asFile.GetName();
4046 validateCache( libPath, !aProperties || !aProperties->contains(
"skip_cache_validation" ) );
4052 const wxString msg = wxString::Format(
_(
"Library '%s' does not exist.\n"
4053 "Would you like to create it?"),
4056 if( !
Pgm().IsGUI() || wxMessageBox( msg,
_(
"Library Not Found" ), wxYES_NO | wxICON_QUESTION ) != wxYES )
4069 wxString footprintName = saveSingleFile ? singleFileBaseName
4072 wxString fpName = saveSingleFile ? singleFileBaseName
4083 THROW_IO_ERRORF(
_(
"Footprint file name '%s' is not valid." ), fn.GetFullPath() );
4085 if( fn.FileExists() && !fn.IsFileWritable() )
4086 THROW_IO_ERRORF(
_(
"Insufficient permissions to delete '%s'." ), fn.GetFullPath() );
4088 wxString fullPath = fn.GetFullPath();
4089 wxString fullName = fn.GetFullName();
4090 auto it =
m_cache->GetFootprints().find( footprintName );
4092 if( it !=
m_cache->GetFootprints().end() )
4096 m_cache->GetFootprints().erase( footprintName );
4124 wxLogTrace(
traceKicadPcbPlugin, wxT(
"Creating s-expr footprint file '%s'." ), fullPath );
4125 m_cache->GetFootprints().insert( footprintName,
4133 const wxString& aFootprintName,
4134 const std::map<std::string, UTF8>* aProperties )
4136 init( aProperties );
4141 THROW_IO_ERRORF(
_(
"Library '%s' is read only." ), aLibraryPath.GetData() );
4143 m_cache->Remove( aFootprintName );
4164 const std::map<std::string, UTF8>* aProperties )
4166 if( wxDir::Exists( aLibraryPath ) )
4167 THROW_IO_ERRORF(
_(
"Cannot overwrite library path '%s'." ), aLibraryPath.GetData() );
4169 init( aProperties );
4178 const std::map<std::string, UTF8>* aProperties )
4181 fn.SetPath( aLibraryPath );
4184 if( !fn.DirExists() )
4187 if( !fn.IsDirWritable() )
4188 THROW_IO_ERRORF(
_(
"Insufficient permissions to delete folder '%s'." ), aLibraryPath.GetData() );
4190 wxDir dir( aLibraryPath );
4192 if( dir.HasSubDirs() )
4193 THROW_IO_ERRORF(
_(
"Library folder '%s' has unexpected sub-folders." ), aLibraryPath.GetData() );
4196 if( dir.HasFiles() )
4200 wxArrayString files;
4204 for( i = 0; i < files.GetCount(); i++ )
4212 aLibraryPath.GetData() );
4216 for( i = 0; i < files.GetCount(); i++ )
4217 wxRemoveFile( files[i] );
4221 aLibraryPath.GetData() );
4225 if( !wxRmdir( aLibraryPath ) )
4226 THROW_IO_ERRORF(
_(
"Footprint library '%s' cannot be deleted." ), aLibraryPath.GetData() );
4232 wxMilliSleep( 250L );
constexpr EDA_IU_SCALE pcbIUScale
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
wxString GetMajorMinorVersion()
Get only the major and minor version in a string major.minor.
bool SaveImageData(wxOutputStream &aOutStream) const
Write the bitmap data to aOutStream.
wxString GetNetname() const
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
TEARDROP_PARAMETERS & GetTeardropParams()
Container for design settings for a BOARD object.
std::map< PCB_LAYER_ID, ZONE_LAYER_PROPERTIES > m_ZoneLayerProperties
DRILL_SYMBOL_PROFILE & GetDrillSymbolProfile()
const VECTOR2I & GetGridOrigin() const
int GetBoardThickness() const
The full thickness of the board including copper and masks.
bool m_AllowSoldermaskBridgesInFPs
const VECTOR2I & GetAuxOrigin() const
int m_SolderMaskExpansion
BOARD_STACKUP & GetStackupDescriptor()
double m_SolderPasteMarginRatio
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual bool IsKnockout() const
bool IsLocked() const override
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual const BOARD * GetBoard() const
Return the BOARD in which this BOARD_ITEM resides, or NULL if none.
FOOTPRINT * GetParentFootprint() const
VECTOR2I GetFPRelativePosition() const
Manage layers needed to make a physical board.
void FormatBoardStackup(OUTPUTFORMATTER *aFormatter, const BOARD *aBoard) const
Write the stackup info on board file.
Information pertinent to a Pcbnew printed circuit board.
const NETINFO_LIST & GetNetInfo() const
EMBEDDED_FILES * GetEmbeddedFiles() override
const std::vector< wxString > & GetVariantNames() const
const GENERATORS & Generators() const
const PCB_POINTS & Points() const
const PAGE_INFO & GetPageSettings() const
const ZONES & Zones() const
const GROUPS & Groups() const
The groups must maintain the following invariants.
LAYER_T GetLayerType(PCB_LAYER_ID aLayer) const
Return the type of the copper layer given by aLayer.
TITLE_BLOCK & GetTitleBlock()
int GetCopperLayerCount() const
const std::map< wxString, wxString > & GetProperties() const
const FOOTPRINTS & Footprints() const
const BOARD_ITEM_SET GetItemSet()
Collect every owned item (tracks, zones, generators, footprints, drawings, markers,...
const TRACKS & Tracks() const
const CONSTRAINTS & Constraints() const
Geometric constraints (#2329) owned by this board.
wxString GetVariantDescription(const wxString &aVariantName) const
const PCB_PLOT_PARAMS & GetPlotOptions() const
bool LegacyTeardrops() const
wxString GroupsSanityCheck(bool repair=false)
Consistency check of internal m_groups structure.
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
const LSET & GetEnabledLayers() const
A proxy function that calls the corresponding function in m_BoardSettings.
void Remove(BOARD_ITEM *aBoardItem, REMOVE_MODE aMode=REMOVE_MODE::NORMAL) override
Removes an item from the container.
const DRAWINGS & Drawings() const
A lightweight representation of a component class.
const std::vector< COMPONENT_CLASS * > & GetConstituentClasses() const
Fetches a vector of the constituent classes for this (effective) class.
The column set and formatting a new chart starts from.
DRILL_CHART_UNITS GetUnits() const
static DRILL_CHART_TEMPLATE MakeDefault()
bool GetShowTotals() const
Grouping rules and symbol assignments, shared by reference so a chart and its map can never disagree ...
const wxString & GetName() const
int GetSymbolWidth() const
const std::map< std::string, DRILL_SYMBOL_ASSIGNMENT > & Assignments() const
bool GetFreezeAssignments() const
const std::set< DRILL_GROUP_KEY > & GroupKeys() const
DRILL_MARK_POLICY GetMarkPolicy() const
int GetSymbolSize() const
const LIB_ID & GetDesignBlockLibId() const
std::unordered_set< EDA_ITEM * > & GetItems()
bool HasDesignBlockLink() const
A base class for most all the KiCad significant classes used in schematics and boards.
KICAD_T Type() const
Returns the type of object.
virtual void SetParentGroup(EDA_GROUP *aGroup)
virtual void SetParent(EDA_ITEM *aParent)
const VECTOR2I & GetBezierC2() const
FILL_T GetFillMode() const
SHAPE_POLY_SET & GetPolyShape()
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
const LINE_ENDING & GetStartEnding() const
wxString SHAPE_T_asString() const
const VECTOR2I & GetBezierC1() const
const LINE_ENDING & GetEndEnding() const
int GetCornerRadius() const
bool IsPolyShapeValid() const
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
virtual VECTOR2I GetTextSize() const
virtual void SetTextSize(VECTOR2I aNewSize, bool aEnforceMinTextSize=true)
virtual const wxString & GetText() const
Return the string associated with the text object.
bool IsKeepUpright() const
virtual bool IsVisible() const
KIFONT::FONT * GetFont() const
std::vector< std::unique_ptr< KIFONT::GLYPH > > * GetRenderCache(const KIFONT::FONT *aFont, const wxString &forResolvedText, const VECTOR2I &aOffset={ 0, 0 }) const
virtual EDA_ANGLE GetDrawRotation() const
virtual wxString GetShownText(RESOLUTION_CONTEXT aContext, int aDepth=0) const
Return the string actually shown after processing of the base text.
bool GetAutoThickness() const
virtual void SetTextThickness(int aWidth)
The TextThickness is that set by the user.
virtual int GetTextThickness() const
void WriteEmbeddedFiles(OUTPUTFORMATTER &aOut, bool aWriteData) const
Output formatter for the embedded files.
void ClearEmbeddedFiles(bool aDeleteFiles=true)
EMBEDDED_FILE * AddFile(const wxFileName &aName, bool aOverwrite)
Load a file from disk and adds it to the collection.
const std::map< wxString, std::shared_ptr< EMBEDDED_FILE > > & EmbeddedFileMap() const
Provide an iterable view of the file collection.
bool GetAreFontsEmbedded() const
A LINE_READER that reads from an open file.
void Rewind()
Rewind the file and resets the line number back to zero.
char * ReadLine() override
Read a line of text into the buffer and increments the line number counter.
RAII class to set and restore the fontconfig reporter.
Helper class for creating a footprint library cache.
std::unique_ptr< FOOTPRINT > m_footprint
FP_CACHE_ENTRY(FOOTPRINT *aFootprint, const WX_FILENAME &aFileName)
const WX_FILENAME & GetFileName() const
std::unique_ptr< FOOTPRINT > & GetFootprint()
static long long GetTimestamp(const wxString &aLibPath)
Generate a timestamp representing all source files in the cache (including the parent directory).
boost::ptr_map< wxString, FP_CACHE_ENTRY > m_footprints
PCB_IO_KICAD_SEXPR * m_owner
bool IsModified()
Return true if the cache is not up-to-date.
long long m_cache_timestamp
void SetPath(const wxString &aPath)
bool IsPath(const wxString &aPath) const
Check if aPath is the same as the current cache path.
void Save(FOOTPRINT *aFootprintFilter=nullptr)
Save the footprint cache or a single footprint from it to disk.
FP_CACHE(PCB_IO_KICAD_SEXPR *aOwner, const wxString &aLibraryPath)
boost::ptr_map< wxString, FP_CACHE_ENTRY > & GetFootprints()
void Remove(const wxString &aFootprintName)
PROGRESS_REPORTER * m_progressReporter
Progress reporter to track the progress of the operation, may be nullptr.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
APP_SETTINGS_BASE * KifaceSettings() const
virtual bool IsOutline() const
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
virtual void SetLineWidth(float aLineWidth)
Set the line width.
virtual wxString GetClass() const =0
Return the class name.
wxString AsString() const
LAYER_MAPPING_HANDLER m_layer_mapping_handler
Callback to get layer mapping.
A logical library item identifier and consists of various portions much like a URI.
const wxString GetUniStringLibItemName() const
Get strings for display messages in dialogs.
const UTF8 & GetLibItemName() const
void Format(OUTPUTFORMATTER *aOut, const EDA_IU_SCALE &aIuScale, const char *aToken) const
An abstract class from which implementation specific LINE_READERs may be derived to read single lines...
static LOAD_INFO_REPORTER & GetInstance()
REPORTER & Report(const wxString &aMsg, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED) override
Report a string with a given severity.
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
LSET is a set of PCB_LAYER_IDs.
static const LSET & AllCuMask()
return AllCuMask( MAX_CU_LAYERS );
LSEQ CuStack() const
Return a sequence of copper layers in starting from the front/top and extending to the back/bottom.
LSEQ TechAndUserUIOrder() const
Return the technical and user layers in the order shown in layer widget.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
static LSET AllCuMask(int aCuLayerCount)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
static wxString Name(PCB_LAYER_ID aLayerId)
Return the fixed name association with aLayerId.
Handle the data for a net.
const wxString & GetNetname() const
A PADSTACK defines the characteristics of a single or multi-layer pad, in the IPC sense of the word.
std::optional< int > & Clearance(PCB_LAYER_ID aLayer=F_Cu)
MASK_LAYER_PROPS & FrontOuterLayers()
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::...
std::optional< int > & ThermalSpokeWidth(PCB_LAYER_ID aLayer=F_Cu)
EDA_ANGLE DefaultThermalSpokeAngleForShape(PCB_LAYER_ID aLayer=F_Cu) const
VECTOR2I & Offset(PCB_LAYER_ID aLayer)
EDA_ANGLE ThermalSpokeAngle(PCB_LAYER_ID aLayer=F_Cu) const
POST_MACHINING_PROPS & FrontPostMachining()
std::optional< int > & ThermalGap(PCB_LAYER_ID aLayer=F_Cu)
DRILL_PROPS & TertiaryDrill()
const VECTOR2I & Size(PCB_LAYER_ID aLayer) const
@ NORMAL
Shape is the same on all layers.
@ FRONT_INNER_BACK
Up to three shapes can be defined (F_Cu, inner copper layers, B_Cu)
DRILL_PROPS & SecondaryDrill()
POST_MACHINING_PROPS & BackPostMachining()
MASK_LAYER_PROPS & BackOuterLayers()
static constexpr PCB_LAYER_ID INNER_LAYERS
! The layer identifier to use for "inner layers" on top/inner/bottom padstacks
std::optional< ZONE_CONNECTION > & ZoneConnection(PCB_LAYER_ID aLayer=F_Cu)
PAD_PROP GetProperty() const
bool GetRemoveUnconnected() const
LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
const std::vector< std::shared_ptr< PCB_SHAPE > > & GetPrimitives(PCB_LAYER_ID aLayer) const
Accessor to the basic shape list for custom-shaped pads.
const ZONE_LAYER_OVERRIDE & GetZoneLayerOverride(PCB_LAYER_ID aLayer) const
std::optional< double > GetLocalSolderPasteMarginRatio() const
const wxString & GetPinType() const
PAD_ATTRIB GetAttribute() const
const wxString & GetPinFunction() const
const wxString & GetNumber() const
const VECTOR2I & GetDelta(PCB_LAYER_ID aLayer) const
EDA_ANGLE GetThermalSpokeAngle() const
VECTOR2I GetOffset(PCB_LAYER_ID aLayer) const
VECTOR2I GetDrillSize() const
double GetRoundRectRadiusRatio(PCB_LAYER_ID aLayer) const
PAD_SHAPE GetShape(PCB_LAYER_ID aLayer) const
bool GetKeepTopBottom() const
int GetPadToDieDelay() const
std::optional< int > GetLocalClearance() const override
Return any local clearances set in the "classic" (ie: pre-rule) system.
const PADSTACK & Padstack() const
EDA_ANGLE GetOrientation() const
Return the rotation angle of the pad.
PAD_DRILL_SHAPE GetDrillShape() const
int GetChamferPositions(PCB_LAYER_ID aLayer) const
std::optional< int > GetLocalSolderPasteMargin() const
PAD_SIM_ELECTRICAL_TYPE GetSimElectricalType() const
std::optional< int > GetLocalSolderMaskMargin() const
double GetChamferRectRatio(PCB_LAYER_ID aLayer) const
std::optional< int > GetLocalThermalSpokeWidthOverride() const
ZONE_CONNECTION GetLocalZoneConnection() const
CUSTOM_SHAPE_ZONE_MODE GetCustomShapeInZoneOpt() const
int GetLocalThermalGapOverride(wxString *aSource) const
PAD_SHAPE GetAnchorPadShape(PCB_LAYER_ID aLayer) const
int GetPadToDieLength() const
void Format(OUTPUTFORMATTER *aFormatter) const
Output the page class to aFormatter in s-expression form.
FLIP_DIRECTION m_FlipDirection
const VECTOR2I & GetMid() const
const VECTOR2I & GetMargin() const
Get the barcode margin (in internal units).
VECTOR2I GetPosition() const override
Get the position (center) of the barcode in internal units.
bool IsKnockout() const override
int GetHeight() const
Get the barcode height (in internal units).
BARCODE_ECC_T GetErrorCorrection() const
EDA_ANGLE GetAngle() const
BARCODE_T GetKind() const
Returns the type of the barcode (QR, CODE_39, etc.).
int GetWidth() const
Get the barcode width (in internal units).
A geometric constraint between board items (issue #2329).
const std::vector< CONSTRAINT_MEMBER > & GetMembers() const
std::optional< double > GetValue() const
bool IsDriving() const
A driving constraint forces its value; a reference (non-driving) one only measures it.
PCB_CONSTRAINT_TYPE GetConstraintType() const
wxString GetOverrideText() const
wxString GetSuffix() const
int GetLineThickness() const
DIM_TEXT_POSITION GetTextPositionMode() const
bool GetKeepTextAligned() const
DIM_PRECISION GetPrecision() const
wxString GetPrefix() const
DIM_UNITS_MODE GetUnitsMode() const
DIM_UNITS_FORMAT GetUnitsFormat() const
DIM_ARROW_DIRECTION GetArrowDirection() const
virtual VECTOR2I GetEnd() const
bool GetSuppressZeroes() const
int GetExtensionOffset() const
virtual VECTOR2I GetStart() const
The dimension's origin is the first feature point for the dimension.
int GetArrowLength() const
bool GetOverrideTextEnabled() const
For better understanding of the points that make a dimension:
int GetExtensionHeight() const
Mark the center of a circle or arc with a cross shape.
A leader is a dimension-like object pointing to a specific point.
DIM_TEXT_BORDER GetTextBorder() const
An orthogonal dimension is like an aligned dimension, but the extension lines are locked to the X or ...
A radial dimension indicates either the radius or diameter of an arc or circle.
int GetLeaderLength() const
A drill chart placed on the board, kept in step with the holes.
DRILL_CHART_UNITS GetUnits() const
const std::map< int, int > & RowShapes() const
Curated shape index for each generated row, by table row.
std::vector< DRILL_CHART_COLUMN > & Columns()
const std::map< int, std::string > & RowKeys() const
Drill group each generated row reports on, by table row.
bool GetShowTotals() const
DRILL_CHART_FILTER & Filter()
int GetSymbolColumn() const
Table column the symbol is drawn in, or -1 when the chart has no symbol column.
Turns on drill symbols at the holes, for one layer.
int GetSymbolSize() const
bool GetGuideCross() const
bool GetOutlineSlots() const
const DRILL_SPAN & GetSpan() const
const VECTOR2I & GetOffset() const
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
virtual std::vector< std::pair< wxString, const BOARD_ITEM * > > GetTemplateItems() const
Named template items used by the generator.
virtual const STRING_ANY_MAP GetProperties() const
virtual wxString GetGeneratorType() const
EDA_ANGLE GetPhiExtent() const
VECTOR2I GetSpacing() const
VECTOR2I GetExtent() const
unsigned GetAssignedPriority() const
unsigned GetTickInterval() const
VECTOR2I GetPosition() const override
int GetRadiusSpacing() const
EDA_ANGLE GetOrientation() const
EDA_ANGLE GetPhiSpacing() const
PCB_GRID_AFFECTS & Affects()
int GetRadiusExtent() const
PCB_GRID_TYPE GetGridItemType() const
A set of BOARD_ITEMs (i.e., without duplicates).
Read a Pcbnew s-expression formatted LINE_READER object and returns the appropriate BOARD_ITEM object...
const std::vector< wxString > & GetParseWarnings() const
Return any non-fatal parse warnings that occurred during parsing.
void SetLayerMappingHandler(LAYER_MAPPING_HANDLER aHandler)
Handler to remap an appended board's layers onto the destination board, used on mismatch.
bool IsTooRecent()
Return whether a version number, if any was parsed, was too recent.
bool IsValidBoardHeader()
Partially parse the input and check if it matches expected header.
wxString GetRequiredVersion()
Return a string representing the version of KiCad required to open this file.
A #PLUGIN derivation for saving and loading Pcbnew s-expression formatted files.
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
void loadBoard(const wxString &aFileName, BOARD &aBoard, bool aIsNewLoad, const std::map< std::string, UTF8 > *aProperties=nullptr, PROJECT *aProject=nullptr) override
Parse aFileName into aBoard.
void formatProperties(const BOARD *aBoard) const
formats the Nets and Netclasses
void FootprintDelete(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Delete aFootprintName from the library at aLibraryPath.
void formatTableData(const PCB_TABLE *aTable) const
Geometry and cells with no identity, so an enclosing form owns uuid/layer/locked.
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
bool IsLibraryWritable(const wxString &aLibraryPath) override
Return true if the library at aLibraryPath is writable.
void formatTeardropParameters(const TEARDROP_PARAMETERS &tdParams) const
bool DeleteLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Delete an existing library and returns true, or if library does not exist returns false,...
const FOOTPRINT * GetEnumeratedFootprint(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr) override
A version of FootprintLoad() for use after FootprintEnumerate() for more efficient cache management i...
void CreateLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Create a new empty library at aLibraryPath empty.
void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Return a list of footprint names contained within the library at aLibraryPath.
void formatDrillSymbolProfile(const BOARD_DESIGN_SETTINGS &aSettings) const
void formatPolyPts(const SHAPE_LINE_CHAIN &outline, const FOOTPRINT *aParentFP=nullptr) const
std::unique_ptr< FOOTPRINT > ImportFootprint(const wxString &aFootprintPath, wxString &aFootprintNameOut, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a single footprint from aFootprintPath and put its name in aFootprintNameOut.
FP_CACHE * m_cache
Footprint library cache.
void DoLoad(LINE_READER &aReader, BOARD &aBoard, bool aIsNewLoad, const std::map< std::string, UTF8 > *aProperties, PROGRESS_REPORTER *aProgressReporter, unsigned aLineCount)
void formatBoardLayers(const BOARD *aBoard) const
formats the board layer information
std::unique_ptr< FOOTPRINT > FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PC...
bool FootprintExists(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Check for the existence of a footprint.
void FootprintSave(const wxString &aLibraryPath, const FOOTPRINT *aFootprint, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Write aFootprint to an existing library located at aLibraryPath.
void SaveBoard(const wxString &aFileName, BOARD &aBoard, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Write aBoard to a storage file in a format that this PCB_IO implementation knows about or it can be u...
void format(const BOARD *aBoard) const
void formatLayers(LSET aLayerMask, bool aEnumerateLayers, bool aIsZone=false) const
void formatGeneral(const BOARD *aBoard) const
formats the General section of the file
void formatVariants(const BOARD *aBoard) const
formats the board variant registry
void ClearCachedFootprints(const wxString &aLibraryPath) override
Clear any cached footprint data for the given library path.
void formatSetup(const BOARD *aBoard) const
formats the board setup information
void FormatBoardToFormatter(OUTPUTFORMATTER *aOut, BOARD *aBoard, const std::map< std::string, UTF8 > *aProperties=nullptr)
Serialize a BOARD to an OUTPUTFORMATTER without file I/O or Prettify.
std::function< bool(wxString aTitle, int aIcon, wxString aMsg, wxString aAction)> m_queryUserCallback
BOARD_ITEM * Parse(const wxString &aClipboardSourceInput)
void init(const std::map< std::string, UTF8 > *aProperties)
void Format(const BOARD_ITEM *aItem) const
Output aItem to aFormatter in s-expression format.
void formatLayer(PCB_LAYER_ID aLayer, bool aIsKnockout=false) const
void formatHeader(const BOARD *aBoard) const
writes everything that comes before the board_items, like settings and layers etc
const FOOTPRINT * getFootprint(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties, bool checkModified)
PCB_IO_KICAD_SEXPR(int aControlFlags=CTL_FOR_BOARD)
OUTPUTFORMATTER * m_out
output any Format()s to this, no ownership
void validateCache(const wxString &aLibraryPath, bool checkModified=true)
virtual ~PCB_IO_KICAD_SEXPR()
void formatRenderCache(const EDA_TEXT *aText) const
LINE_READER * m_reader
no ownership
BOARD * m_board
The board BOARD being worked on, no ownership here.
virtual bool CanReadBoard(const wxString &aFileName) const
Checks if this PCB_IO can read the specified board file.
PCB_IO(const wxString &aName)
const std::map< std::string, UTF8 > * m_props
Properties passed via Save() or Load(), no ownership, may be NULL.
void Format(OUTPUTFORMATTER *aFormatter) const
A PCB_POINT is a 0-dimensional point that is used to mark a position on a PCB, or more usually a foot...
VECTOR2I GetLibraryPosition() const
Object to handle a bitmap image that can be inserted in a PCB.
VECTOR2I GetPosition() const override
Get the position of the image (this is the center of the image).
REFERENCE_IMAGE & GetReferenceImage()
EDA_ANGLE GetLibraryEllipseEndAngle() const
std::optional< int > GetLocalSolderMaskMargin() const
bool HasSolderMask() const
int GetLibraryEllipseMinorRadius() const
EDA_ANGLE GetLibraryEllipseStartAngle() const
int GetLibraryEllipseMajorRadius() const
EDA_ANGLE GetLibraryEllipseRotation() const
SHAPE_T GetLibraryShape() const
VECTOR2I GetLibraryEllipseCenter() const
VECTOR2I GetLibraryEnd() const
const SHAPE_POLY_SET & GetLibPoly() const
VECTOR2I GetLibraryStart() const
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
STROKE_PARAMS GetStroke() const override
VECTOR2I GetLibraryArcMid() const
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
bool StrokeHeaderSeparator() const
bool StrokeColumns() const
bool StrokeExternal() const
std::vector< PCB_TABLECELL * > GetCells() const
const STROKE_PARAMS & GetSeparatorsStroke() const
const STROKE_PARAMS & GetBorderStroke() const
int GetColWidth(int aCol) const
int GetRowHeight(int aRow) const
VECTOR2I GetPosition() const override
bool IsBorderEnabled() const
Disables the border, this is done by changing the stroke internally.
int GetMarginBottom() const
EDA_ANGLE GetTextAngle() const override
int GetMarginLeft() const
int GetMarginRight() const
EDA_ANGLE GetTextAngle() const override
VECTOR2I GetTextPos() const override
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
bool HasSolderMask() const
std::optional< int > GetLocalSolderMaskMargin() const
const VECTOR2I & GetStart() const
const VECTOR2I & GetEnd() const
virtual int GetWidth() const
A progress reporter interface for use in multi-threaded environments.
Container for project specific data.
A REFERENCE_IMAGE is a wrapper around a BITMAP_IMAGE that is displayed in an editor as a reference fo...
const BITMAP_BASE & GetImage() const
Get the underlying image.
double GetImageScale() const
const VECTOR2I & GetArcMid() const
const VECTOR2I & GetP1() const
const VECTOR2I & GetP0() const
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
const SHAPE_ARC & Arc(size_t aArc) const
int PointCount() const
Return the number of points (vertices) in this line chain.
ssize_t ArcIndex(size_t aSegment) const
Return the arc index for the given segment index.
const VECTOR2I & CPoint(int aIndex) const
Return a reference to a given point in the line chain.
Represent a set of closed polygons.
POLYGON & Polygon(int aIndex)
Return the aIndex-th subpolygon in the set.
std::vector< SHAPE_LINE_CHAIN > POLYGON
represents a single polygon outline with holes.
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
int OutlineCount() const
Return the number of outlines in the set.
Is a LINE_READER that reads from a multiline 8 bit wide std::string.
Simple container to manage line stroke parameters.
void SetWidth(int aWidth)
void Format(OUTPUTFORMATTER *out, const EDA_IU_SCALE &aIuScale) const
TEARDROP_PARAMETARS is a helper class to handle parameters needed to build teardrops for a board thes...
double m_BestWidthRatio
The height of a teardrop as ratio between height and size of pad/via.
int m_TdMaxLen
max allowed length for teardrops in IU. <= 0 to disable
bool m_AllowUseTwoTracks
True to create teardrops using 2 track segments if the first in too small.
int m_TdMaxWidth
max allowed height for teardrops in IU. <= 0 to disable
double m_BestLengthRatio
The length of a teardrop as ratio between length and size of pad/via.
double m_WidthtoSizeFilterRatio
The ratio (H/D) between the via/pad size and the track width max value to create a teardrop 1....
bool m_TdOnPadsInZones
A filter to exclude pads inside zone fills.
bool m_Enabled
Flag to enable teardrops.
bool m_CurvedEdges
True if the teardrop should be curved.
virtual void Format(OUTPUTFORMATTER *aFormatter) const
Output the object to aFormatter in s-expression form.
const char * c_str() const
A wrapper around a wxFileName which is much more performant with a subset of the API.
void SetFullName(const wxString &aFileNameAndExtension)
static void ResolvePossibleSymlinks(wxFileName &aFilename)
wxString GetFullPath() const
Handle a list of polygons defining a copper zone.
int GetHatchBorderAlgorithm() const
bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
std::optional< int > GetLocalClearance() const override
const THIEVING_SETTINGS & GetThievingSettings() const
bool GetDoNotAllowVias() const
ZONE_LAYER_PROPERTIES & LayerProperties(PCB_LAYER_ID aLayer)
wxString GetPlacementAreaSource() const
std::shared_ptr< SHAPE_POLY_SET > GetFilledPolysList(PCB_LAYER_ID aLayer) const
bool GetDoNotAllowPads() const
PLACEMENT_SOURCE_T GetPlacementAreaSourceType() const
bool GetDoNotAllowTracks() const
ISLAND_REMOVAL_MODE GetIslandRemovalMode() const
SHAPE_POLY_SET * Outline()
bool IsIsland(PCB_LAYER_ID aLayer, int aPolyIdx) const
Check if a given filled polygon is an insulated island.
long long int GetMinIslandArea() const
const wxString & GetZoneName() const
int GetMinThickness() const
ZONE_SETTINGS::CORNER_SMOOTHING GetCornerSmoothingType() const
ZONE_CONNECTION GetPadConnection() const
int GetHatchThickness() const
double GetHatchHoleMinArea() const
bool GetPlacementAreaEnabled() const
bool IsTeardropArea() const
int GetThermalReliefSpokeWidth() const
int GetBorderHatchPitch() const
HatchBorder related methods.
ZONE_BORDER_DISPLAY_STYLE GetHatchStyle() const
EDA_ANGLE GetHatchOrientation() const
bool GetDoNotAllowFootprints() const
ZONE_FILL_MODE GetFillMode() const
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
TEARDROP_TYPE GetTeardropAreaType() const
double GetHatchSmoothingValue() const
bool GetDoNotAllowZoneFills() const
int GetHatchSmoothingLevel() const
unsigned int GetCornerRadius() const
bool IsOnCopperLayer() const override
PCB_LAYER_ID GetFirstLayer() const
int GetThermalReliefGap() const
unsigned GetAssignedPriority() const
int GetNumCorners(void) const
Access to m_Poly parameters.
This file is part of the common library.
@ RECT_CHAMFER_BOTTOM_RIGHT
@ RECT_CHAMFER_BOTTOM_LEFT
#define CTL_OMIT_HYPERLINK
Omit the hyperlink attribute in .kicad_xxx files.
#define CTL_OMIT_UUIDS
Omit component unique ids (useless in library)
#define CTL_OMIT_FOOTPRINT_VERSION
Omit the version string from the (footprint) sexpr group.
#define CTL_OMIT_INITIAL_COMMENTS
Omit FOOTPRINT initial comments.
#define CTL_OMIT_LIBNAME
Omit lib alias when saving (used for board/not library).
#define CTL_OMIT_PATH
Omit component sheet time stamp (useless in library).
#define CTL_OMIT_AT
Omit position and rotation.
#define CTL_OMIT_PAD_NETS
Omit pads net names (useless in library).
#define CTL_OMIT_COLOR
Omit the color attribute in .kicad_xxx files.
const char * DrillChartColumnToken(DRILL_CHART_COLUMN_ID aId)
bool DrillChartDefaultColumn(DRILL_CHART_COLUMN_ID aId, DRILL_CHART_COLUMN &aColumn)
The heading and alignment a column starts with, so the writer can leave them out of the file and the ...
const char * DrillChartUnitsToken(DRILL_CHART_UNITS aUnits)
Stable file tokens, independent of enum ordering so inserting a value later cannot change what an exi...
const char * DrillChartAlignToken(DRILL_CHART_ALIGN aAlign)
const char * DrillGroupKeyToken(DRILL_GROUP_KEY aKey)
Stable file tokens, deliberately independent of enum ordering so a later insertion into the enum cann...
const char * DrillMarkModeToken(DRILL_MARK_MODE aMode)
const char * DrillMarkPolicyToken(DRILL_MARK_POLICY aPolicy)
DRILL_GROUP_KEY
Which properties split holes into separate chart rows and symbols.
static constexpr EDA_ANGLE ANGLE_0
static constexpr EDA_ANGLE ANGLE_90
static constexpr EDA_ANGLE ANGLE_45
@ FILLED_SHAPE
Fill with object color.
#define IGNORE_PARENT_GROUP
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
EDA_DATA_TYPE
The type of unit.
void CollectFilesLoopSafe(const wxString &aRoot, wxArrayString &aFiles, const wxString &aFileSpec, int aFlags)
Recursively collect every file under aRoot, deduplicating subdirectories by their resolved path.
static const std::string KiCadFootprintFileExtension
const wxChar *const traceKicadPcbPlugin
Flag to enable KiCad PCB plugin debug output.
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
#define THROW_IO_ERRORF(msg,...)
#define THROW_IO_CANCELLED()
#define THROW_PARSE_ERROR(aProblem, aSource, aInputLine, aLineNumber, aByteIndex)
bool IsCopperLayer(int aLayerId)
Test whether a layer is a copper layer.
bool IsExternalCopperLayer(int aLayerId)
Test whether a layer is an external (F_Cu or B_Cu) copper layer.
PCB_LAYER_ID
A quick note on layer IDs:
This file contains miscellaneous commonly used macros and functions.
#define UNIMPLEMENTED_FOR(type)
@ TOP_BOTTOM
Flip top to bottom (around the X axis)
KICOMMON_API std::string FormatAngle(const EDA_ANGLE &aAngle)
Convert aAngle from board units to a string appropriate for writing to file.
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.
constexpr char APPEND_PRESERVE_DESTINATION_STACKUP[]
@ NPTH
like PAD_PTH, but not plated mechanical use only, no connection allowed
@ SMD
Smd pad, appears on the solder paste layer (default)
@ PTH
Plated through hole pad.
@ CONN
Like smd, does not appear on the solder paste layer (default) Note: also has a special attribute in G...
@ FIDUCIAL_LOCAL
a fiducial (usually a smd) local to the parent footprint
@ FIDUCIAL_GLBL
a fiducial (usually a smd) for the full board
@ MECHANICAL
a pad used for mechanical support
@ PRESSFIT
a PTH with a hole diameter with tight tolerances for press fit pin
@ HEATSINK
a pad used as heat sink, usually in SMD footprints
@ NONE
no special fabrication property
@ TESTPOINT
a test point pad
@ CASTELLATED
a pad with a castellated through hole
@ BGA
Smd pad, used in BGA footprints.
@ REMOVE_EXCEPT_START_AND_END
BARCODE class definition.
bool ConstraintValueIsLength(PCB_CONSTRAINT_TYPE aType)
True if this type's value is a length in IU (serialized in mm); false for an angle in degrees.
const char * ConstraintTypeToken(PCB_CONSTRAINT_TYPE aType)
Stable file-format token for a constraint type (e.g. "parallel"). Used by serialization.
const char * ConstraintAnchorToken(CONSTRAINT_ANCHOR aAnchor)
Stable file-format token for a member anchor (e.g. "start").
@ VERTEX
An indexed rectangle corner or polygon outline vertex; pairs with CONSTRAINT_MEMBER::m_index.
Class to handle a set of BOARD_ITEMs.
static void formatDrillSpan(OUTPUTFORMATTER *aOut, const DRILL_SPAN &aSpan)
Layers plus the flags that distinguish a backdrill or non-plated span from the primary one that share...
bool isDefaultTeardropParameters(const TEARDROP_PARAMETERS &tdParams)
static VECTOR2I unbakeSize(const VECTOR2I &aSize, const FOOTPRINT *aParentFP)
std::string formatInternalUnits(const int aValue, const EDA_DATA_TYPE aDataType=EDA_DATA_TYPE::DISTANCE)
static int unbakeLinear(int aValue, const FOOTPRINT *aParentFP)
static VECTOR2I unbakeSizeUniform(const VECTOR2I &aSize, const FOOTPRINT *aParentFP)
#define SEXPR_BOARD_FILE_VERSION
Current s-expression file format version. 2 was the last legacy format version.
#define CTL_FOR_BOARD
The zero arg constructor when PCB_PLUGIN is used for PLUGIN::Load() and PLUGIN::Save()ing a BOARD fil...
#define CTL_FOR_LIBRARY
Format output for a footprint library instead of clipboard or BOARD.
Pcbnew s-expression file format parser definition.
#define UNDEFINED_DRILL_DIAMETER
PGM_BASE & Pgm()
The global program "get" accessor.
std::string FormatDouble2Str(double aValue)
Print a float number without using scientific notation and no trailing 0 This function is intended in...
bool ReplaceIllegalFileNameChars(std::string &aName, int aReplaceChar)
Checks aName for illegal file name characters.
int ValueStringCompare(const wxString &strFWord, const wxString &strSWord)
Compare strings like the strcmp function but handle numbers and modifiers within the string text corr...
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
One participant in a constraint: a referenced board item plus the feature of that item that participa...
DRILL_CHART_ALIGN m_Align
Which holes a chart reports on.
PCB_LAYER_ID DrillEndLayer() const
PCB_LAYER_ID DrillStartLayer() 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.
std::optional< bool > has_covering
True if the pad on this side should have covering.
std::optional< bool > has_solder_mask
True if this outer layer has mask (is not tented)
std::optional< bool > has_plugging
True if the drill hole should be plugged on this side.
A filename or source description, a problem input line, a line number, a byte offset,...
bool routing
Used by the router as a local routing frame.
bool cursor
Replace the display grid for cursor snapping inside coverage.
bool placement
Used by edit/move tools for placement snap.
Parameters that drive copper-thieving fill generation.
std::optional< VECTOR2I > hatching_offset
const SHAPE_LINE_CHAIN chain
wxLogTrace helper definitions.
@ PCB_CONSTRAINT_T
a geometric constraint between board items
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_DRILL_MAP_T
class PCB_DRILL_MAP, drill symbols drawn at the holes
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
@ PCB_ZONE_T
class ZONE, a copper pour area
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
@ PCB_REFERENCE_IMAGE_T
class PCB_REFERENCE_IMAGE, bitmap on a layer
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
@ PCB_BARCODE_T
class PCB_BARCODE, a barcode (graphic item)
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
@ PCB_TABLECELL_T
class PCB_TABLECELL, PCB_TEXTBOX for use in tables
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_GRID_ITEM_T
a subgrid placed on a board
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
@ PCB_PAD_T
class PAD, a pad in a footprint
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
@ PCB_POINT_T
class PCB_POINT, a 0-dimensional point
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
@ PCB_DRILL_CHART_T
class PCB_DRILL_CHART, a live drill chart derived from PCB_TABLE
VECTOR2< int32_t > VECTOR2I
Definition of file extensions used in Kicad.
@ THERMAL
Use thermal relief for pads.
@ THT_THERMAL
Thermal relief only for THT pads.
@ NONE
Pads are not covered.
@ FULL
pads are covered by copper