62 wxString libName = aFileName.GetName();
64 if( libName.IsEmpty() && aRootSheet )
67 libName = fn.GetName();
70 if( libName.IsEmpty() )
89 THROW_IO_ERROR(
_(
"File does not appear to be a CADSTAR parts Library file" ) );
101 std::vector<LIB_SYMBOL*> retVal;
105 std::unique_ptr<LIB_SYMBOL> loadedPart =
loadLibPart( part );
110 retVal.push_back( loadedPart.release() );
117std::unique_ptr<LIB_SYMBOL>
121 std::unique_ptr<LIB_SYMBOL> retSym;
131 if( !
Library.SymbolDefinitions.count( symbolID ) )
133 m_reporter->Report( wxString::Format(
_(
"Unable to find symbol %s, referenced by part "
134 "%s. The part was not loaded." ),
143 std::unique_ptr<LIB_SYMBOL> kiSymDef(
loadSymdef( symbolID )->Duplicate() );
145 if( (
int)sym.
m_Pins.size() != kiSymDef->GetPinCount() )
147 m_reporter->Report( wxString::Format(
_(
"Inconsistent pin numbers in symbol %s "
148 "compared to the one defined in part %s. The "
149 "part was not loaded." ),
163 wxCHECK( termID > 0 && sym.
m_Pins.size() >=
size_t( termID ),
nullptr );
164 std::vector<SCH_PIN*> pins = kiSymDef->GetPinsByNumber( storedPinNum );
165 size_t termIdx = size_t( termID ) - 1;
174 wxString partPinNum = wxString::Format(
"%ld", sym.
m_Pins[termIdx].m_Identifier );
178 pin->SetNumber( partPinNum );
193 wxCHECK( kiSymDef->GetUnitCount() == 1,
nullptr );
195 retSym = std::move( kiSymDef );
197 retSym->SetUnitCount( aPart.
m_Symbols.size(),
true );
199 retSym->SetName( escapedPartName );
201 retSym->GetValueField().SetText( aPart.
m_Value.value_or(
"" ) );
203 retSym->SetDescription( aPart.
m_Description.value_or(
"" ) );
205 auto addFieldIfHasValue =
206 [&](
const wxString&
name,
const std::optional<std::string>& value )
208 if( value.has_value() )
221 wxString modelVal = wxString::Format(
"model=\"%s\"", aPart.
m_SpiceModel.value() );
248 VECTOR2I symCenter = retSym->GetBodyBoundingBox( unit, 0,
false,
false ).GetCenter();
249 symCenter.
y = -symCenter.
y;
255 for(
auto& [signalName, csPinVector] : aPart.
m_HiddenPins )
259 std::unique_ptr<SCH_PIN>
pin = std::make_unique<SCH_PIN>( retSym.get() );
261 long pinNum = csPin.m_Identifier;
262 pin->SetNumber( wxString::Format(
"%ld", pinNum ) );
263 pin->SetName( signalName );
266 pin->SetVisible(
false );
276 direction = { -direction.
y, direction.
x };
281 pin->SetPosition( symCenter + offset );
284 pin->SetUnit( unit );
285 retSym->AddDrawItem(
pin.release() );
305 int aDestUnit,
bool aOverrideFields )
316 itemCopy->
SetUnit( aDestUnit );
321 if( aOverrideFields )
323 std::vector<SCH_FIELD*> fieldsToCopy;
326 for(
SCH_FIELD* templateField : fieldsToCopy )
329 templateField->Copy( appliedField );
337 wxCHECK( aSchematic, );
358 numSteps +=
Parts.PartDefinitions.size();
385 if(
Schematic.VariantHierarchy.Variants.size() > 0 )
387 m_reporter->Report( wxString::Format(
_(
"The CADSTAR design contains variants which has "
388 "no KiCad equivalent. Only the master variant "
389 "('%s') was loaded." ),
390 Schematic.VariantHierarchy.Variants.at(
"V0" ).Name ),
396 m_reporter->Report(
_(
"The CADSTAR design contains grouped items which has no KiCad "
397 "equivalent. Any grouped items have been ungrouped." ),
403 m_reporter->Report(
_(
"The CADSTAR design contains re-use blocks which has no KiCad "
404 "equivalent. The re-use block information has been discarded during "
411 for( std::pair<LAYER_ID, SCH_SHEET*> sheetPair :
m_sheetMap )
416 BOX2I sheetBoundingBox;
427 bbox =
comp->GetBodyAndPinsBoundingBox();
431 if( field.IsVisible() )
432 bbox.
Merge( field.GetBoundingBox() );
438 wxString txt = txtItem->
GetText();
440 if( txt.Contains(
"${" ) )
447 bbox = item->GetBoundingBox();
450 sheetBoundingBox.
Merge( bbox );
463 auto roundToNearestGrid =
464 [&](
int aNumber ) ->
int
466 int error = aNumber %
grid;
467 int absError =
sign( error ) * error;
469 if( absError > (
grid / 2 ) )
470 return aNumber + (
sign( error ) *
grid ) - error;
472 return aNumber - error;
479 int longestSide = std::max( targetSheetSize.
x, targetSheetSize.
y );
480 int margin = ( (double) longestSide * 0.03 );
481 margin = roundToNearestGrid( margin );
482 targetSheetSize += margin * 2;
493 VECTOR2I sheetcentre( pageSizeIU.
x / 2, pageSizeIU.
y / 2 );
497 VECTOR2I translation = sheetcentre - itemsCentre;
498 translation.
x = roundToNearestGrid( translation.
x );
499 translation.
y = roundToNearestGrid( translation.
y );
502 std::vector<SCH_ITEM*> allItems;
505 std::back_inserter( allItems ) );
509 item->Move( translation );
517 m_reporter->Report(
_(
"CADSTAR fonts are different to the ones in KiCad. This will likely "
518 "result in alignment issues. Please review the imported text elements "
519 "carefully and correct manually if required." ),
522 m_reporter->Report(
_(
"The CADSTAR design has been imported successfully.\n"
523 "Please review the import errors and warnings (if any)." ) );
536 constexpr long long maxDesignSizekicad = std::numeric_limits<int>::max();
538 if( designSizeXkicad > maxDesignSizekicad || designSizeYkicad > maxDesignSizekicad )
540 THROW_IO_ERRORF(
_(
"The design is too large and cannot be imported into KiCad. \n"
541 "Please reduce the maximum design size in CADSTAR by navigating to: \n"
542 "Design Tab -> Properties -> Design Options -> Maximum Design Size. \n"
543 "Current Design size: %.2f, %.2f millimeters. \n"
544 "Maximum permitted design size: %.2f, %.2f millimeters.\n" ),
560 if( orphanSheets.size() > 1 )
565 for(
LAYER_ID sheetID : orphanSheets )
581 else if( orphanSheets.size() > 0 )
583 LAYER_ID rootSheetID = orphanSheets.at( 0 );
585 wxFileName loadedFilePath = wxFileName(
Filename );
587 std::string filename = wxString::Format(
"%s_%02d", loadedFilePath.GetName(),
593 wxFileName fn(
m_schematic->Project().GetProjectPath() + filename );
594 m_rootSheet->GetScreen()->SetFileName( fn.GetFullPath() );
599 else if(
Header.Format.Type ==
"SYMBOL" )
601 THROW_IO_ERROR(
_(
"The selected file is a CADSTAR symbol library. It does not contain a "
602 "schematic design so cannot be imported/opened in this way." ) );
606 THROW_IO_ERROR(
_(
"The CADSTAR schematic might be corrupt: there is no root sheet." ) );
613 for( std::pair<BLOCK_ID, BLOCK> blockPair :
Schematic.Blocks )
615 BLOCK& block = blockPair.second;
618 if( block.
Type == BLOCK::TYPE::PARENT )
620 else if( block.
Type == BLOCK::TYPE::CHILD )
629 for( std::pair<TERMINAL_ID, TERMINAL> termPair : block.
Terminals )
632 wxString
name =
"YOU SHOULDN'T SEE THIS TEXT. THIS IS A BUG.";
636 if( block.
Type == BLOCK::TYPE::PARENT )
638 else if( block.
Type == BLOCK::TYPE::CHILD )
661 for( std::pair<PART_ID, PART> partPair :
Parts.PartDefinitions )
663 PART_ID partID = partPair.first;
664 PART part = partPair.second;
667 std::unique_ptr<LIB_SYMBOL> kiSym = std::make_unique<LIB_SYMBOL>( escapedPartName );
674 GATE_ID gateID = gatePair.first;
675 PART::DEFINITION::GATE gate = gatePair.second;
678 if( symbolID.IsEmpty() )
680 m_reporter->Report( wxString::Format(
_(
"Part definition '%s' references symbol "
681 "'%s' (alternate '%s') which could not be "
682 "found in the symbol library. The part has "
683 "not been loaded into the KiCad library." ),
703 m_reporter->Report( wxString::Format(
_(
"Part definition '%s' has an incomplete "
704 "definition (no symbol definitions are "
705 "associated with it). The part has not "
706 "been loaded into the KiCad library." ),
720 bool inserted =
m_partMap.insert( { partID, symbol } ).second;
721 wxCHECK2( inserted,
continue );
733 for( std::pair<SYMBOL_ID, SYMBOL> symPair :
Schematic.Symbols )
735 SYMBOL sym = symPair.second;
744 m_reporter->Report( wxString::Format(
_(
"Symbol '%s' references part '%s' which "
745 "could not be found in the library. The "
746 "symbol was not loaded" ),
754 if( sym.
GateID.IsEmpty() )
759 std::unique_ptr<LIB_SYMBOL> kiSymCopy;
767 kiSymCopy = std::make_unique<LIB_SYMBOL>( *kiSym );
768 kiSym = kiSymCopy.get();
773 std::unique_ptr<LIB_SYMBOL> scaledPart(
799 partname.Replace( wxT(
"\n" ), wxT(
"\\n" ) );
800 partname.Replace( wxT(
"\r" ), wxT(
"\\r" ) );
801 partname.Replace( wxT(
"\t" ), wxT(
"\\t" ) );
802 partField->
SetText( partname );
821 wxASSERT( attrField->
GetName() == attrName );
823 attrVal.
Value.Replace( wxT(
"\n" ), wxT(
"\\n" ) );
824 attrVal.
Value.Replace( wxT(
"\r" ), wxT(
"\\r" ) );
825 attrVal.
Value.Replace( wxT(
"\t" ), wxT(
"\\t" ) );
838 THROW_IO_ERRORF(
_(
"Symbol ID '%s' references library symbol '%s' which could not be found "
839 "in the library. Did you export all items of the design?" ),
848 THROW_IO_ERRORF(
_(
"Symbol ID '%s' is a signal reference or global signal but it has too "
849 "many pins. The expected number of pins is 1 but %d were found." ),
862 wxString libraryNetName =
Library.SymbolDefinitions.at( symID ).Alternate;
872 wxString libPartName = libraryNetName;
878 if( libPartName != symbolInstanceNetName )
880 libPartName += wxT(
" (" ) + symbolInstanceNetName + wxT(
")" );
886 wxCHECK( templatePart, );
888 auto ownedPart = std::make_unique<LIB_SYMBOL>( *templatePart );
889 kiPart = ownedPart.get();
893 kiPart->
SetName( libPartName );
899 wxCHECK( pins.size() == 1, );
902 pins.at( 0 )->SetName( symbolInstanceNetName );
931 std::unique_ptr<LIB_SYMBOL> scaledPart(
952 netLabel->
SetText(
"***UNKNOWN NET****" );
966 if( libSymDef.
Alternate.Lower().Contains(
"in" ) )
968 else if( libSymDef.
Alternate.Lower().Contains(
"bi" ) )
970 else if( libSymDef.
Alternate.Lower().Contains(
"out" ) )
980 screen->
Append( netLabel );
985 wxASSERT_MSG(
false,
"Unknown Symbol Variant." );
990 m_reporter->Report( wxString::Format(
_(
"Symbol ID '%s' is of an unknown type. It is "
991 "neither a symbol or a net power / symbol. "
992 "The symbol was not loaded." ),
1001 if( symbolName.empty() )
1002 symbolName = wxString::Format(
"ID: %s", sym.
ID );
1004 symbolName += sym.
GateID;
1006 m_reporter->Report( wxString::Format(
_(
"Symbol '%s' is scaled in the original "
1007 "CADSTAR schematic but this is not supported "
1008 "in KiCad. When the symbol is reloaded from "
1009 "the library, it will revert to the original "
1021 for( std::pair<BUS_ID, BUS> busPair :
Schematic.Buses )
1023 BUS bus = busPair.second;
1024 bool firstPt =
true;
1027 if( bus.
LayerID != wxT(
"NO_SHEET" ) )
1030 std::shared_ptr<BUS_ALIAS> kiBusAlias = std::make_shared<BUS_ALIAS>();
1032 kiBusAlias->SetName( bus.
Name );
1040 label->
SetText( wxT(
"{" ) + busname + wxT(
"}" ) );
1089 label->
SetText( wxT(
"{" ) + busname + wxT(
"}" ) );
1101 for( std::pair<NET_ID, NET_SCH> netPair :
Schematic.Nets )
1104 wxString netName = net.
Name;
1105 std::map<NETELEMENT_ID, SCH_LABEL*> netlabels;
1107 if( netName.IsEmpty() )
1108 netName = wxString::Format(
"$%ld", net.
SignalNum );
1112 for( std::pair<NETELEMENT_ID, NET_SCH::SYM_TERM> terminalPair : net.
Terminals )
1114 NET_SCH::SYM_TERM netTerm = terminalPair.second;
1123 if( netTerm.HasNetLabel )
1128 applyTextSettings( val, netTerm.NetLabel.TextCodeID, netTerm.NetLabel.Alignment,
1129 netTerm.NetLabel.Justification, netTerm.NetLabel.OrientAngle,
1130 netTerm.NetLabel.Mirror );
1147 else if( !net.
Name.IsEmpty() &&
Schematic.Symbols.count( netTerm.SymbolID )
1148 && netTerm.HasNetLabel )
1158 applyTextSettings( label, netTerm.NetLabel.TextCodeID, netTerm.NetLabel.Alignment,
1159 netTerm.NetLabel.Justification );
1161 netlabels.insert( { netTerm.ID, label } );
1164 m_sheetMap.at( sheet )->GetScreen()->Append( label );
1168 auto getHierarchicalLabel =
1171 if( aNode.Contains(
"BLKT" ) )
1174 BLOCK_PIN_ID blockPinID = std::make_pair( blockTerm.BlockID,
1175 blockTerm.TerminalID );
1185 for( std::pair<NETELEMENT_ID, NET_SCH::BLOCK_TERM> blockPair : net.
BlockTerminals )
1187 SCH_HIERLABEL* label = getHierarchicalLabel( blockPair.first );
1194 for( std::pair<NETELEMENT_ID, NET_SCH::BUS_TERM> busPair : net.
BusTerminals )
1196 NET_SCH::BUS_TERM busTerm = busPair.second;
1220 if( busTerm.HasNetLabel )
1222 applyTextSettings( label, busTerm.NetLabel.TextCodeID, busTerm.NetLabel.Alignment,
1223 busTerm.NetLabel.Justification );
1230 netlabels.insert( { busTerm.ID, label } );
1234 for( std::pair<NETELEMENT_ID, NET_SCH::DANGLER> danglerPair : net.
Danglers )
1236 NET_SCH::DANGLER dangler = danglerPair.second;
1242 if( dangler.HasNetLabel )
1244 applyTextSettings( label, dangler.NetLabel.TextCodeID, dangler.NetLabel.Alignment,
1245 dangler.NetLabel.Justification );
1249 netlabels.insert( { dangler.ID, label } );
1251 m_sheetMap.at( dangler.LayerID )->GetScreen()->Append( label );
1254 for( NET_SCH::CONNECTION_SCH conn : net.
Connections )
1256 if( conn.LayerID == wxT(
"NO_SHEET" ) )
1267 if( conn.Path.size() < 1 || conn.Path.front().End != start )
1270 if( conn.Path.size() < 2 || conn.Path.back().End !=
end )
1273 bool firstPt =
true;
1274 bool secondPt =
false;
1285 for(
const VERTEX& vertex : conn.Path )
1293 std::vector<NETELEMENT_ID> nodes;
1294 nodes.push_back( conn.StartNode );
1295 nodes.push_back( conn.EndNode );
1310 int leftSide = sheetPosition.
x;
1311 int rightSide = sheetPosition.
x + sheetSize.
x;
1312 int topSide = sheetPosition.
y;
1313 int botSide = sheetPosition.
y + sheetSize.
y;
1317 sheetEdge.
Append( leftSide, topSide );
1318 sheetEdge.
Append( rightSide, topSide );
1319 sheetEdge.
Append( rightSide, botSide );
1320 sheetEdge.
Append( leftSide, botSide );
1321 sheetEdge.
Append( leftSide, topSide );
1325 if( !wireChain.
Intersect( sheetEdge, wireToSheetIntersects ) )
1330 if( node == conn.StartNode )
1331 wireChain = wireChain.
Reverse();
1335 if( node == conn.StartNode )
1336 wireChain = wireChain.
Reverse();
1342 VECTOR2I intsctPt = wireToSheetIntersects.at( 0 ).p;
1343 int intsctIndx = wireChain.
FindSegment( intsctPt );
1344 wxASSERT_MSG( intsctIndx != -1,
"Can't find intersecting segment" );
1346 if( node == conn.StartNode )
1347 wireChain.
Replace( 0, intsctIndx, intsctPt );
1349 wireChain.
Replace( intsctIndx + 1, -1, intsctPt );
1357 auto fixNetLabelsAndSheetPins =
1362 if( netlabels.find( aNetEleID ) != netlabels.end() )
1363 netlabels.at( aNetEleID )->SetSpinStyle( spin.
MirrorY() );
1365 SCH_HIERLABEL* sheetPin = getHierarchicalLabel( aNetEleID );
1387 fixNetLabelsAndSheetPins( wireAngle, conn.StartNode );
1396 if( !conn.ConnectionLineCode.IsEmpty() )
1401 m_sheetMap.at( conn.LayerID )->GetScreen()->Append( wire );
1408 fixNetLabelsAndSheetPins( wireAngle, conn.EndNode );
1412 for( std::pair<NETELEMENT_ID, NET_SCH::JUNCTION_SCH> juncPair : net.
Junctions )
1414 NET_SCH::JUNCTION_SCH junc = juncPair.second;
1419 m_sheetMap.at( junc.LayerID )->GetScreen()->Append( kiJunc );
1421 if( junc.HasNetLabel )
1435 m_sheetMap.at( junc.LayerID )->GetScreen()->Append( label );
1444 for( std::pair<FIGURE_ID, FIGURE> figPair :
Schematic.Figures )
1446 FIGURE fig = figPair.second;
1455 for( std::pair<TEXT_ID, TEXT> textPair :
Schematic.Texts )
1457 TEXT txt = textPair.second;
1467 for( std::pair<DOCUMENTATION_SYMBOL_ID, DOCUMENTATION_SYMBOL> docSymPair :
1474 m_reporter->Report( wxString::Format(
_(
"Documentation Symbol '%s' refers to symbol "
1475 "definition ID '%s' which does not exist in "
1476 "the library. The symbol was not loaded." ),
1489 bool mirrorInvert = docSym.
Mirror;
1491 for( std::pair<FIGURE_ID, FIGURE> figPair : docSymDef.
Figures )
1493 FIGURE fig = figPair.second;
1496 centreOfTransform, mirrorInvert );
1499 for( std::pair<TEXT_ID, TEXT> textPair : docSymDef.
Texts )
1501 TEXT txt = textPair.second;
1503 txt.
Mirror = ( txt.
Mirror ) ? !mirrorInvert : mirrorInvert;
1509 scalingFactor, centreOfTransform, mirrorInvert );
1528 auto findAndReplaceTextField =
1531 if(
m_context.TextFieldToValuesMap.find( aField ) !=
m_context.TextFieldToValuesMap.end() )
1533 if(
m_context.TextFieldToValuesMap.at( aField ) != aValue )
1535 m_context.TextFieldToValuesMap.at( aField ) = aValue;
1536 m_context.InconsistentTextFields.insert( aField );
1542 m_context.TextFieldToValuesMap.insert( { aField, aValue } );
1552 std::map<wxString, wxString>& txtVars = pj->
GetTextVars();
1555 if(
Schematic.VariantHierarchy.Variants.size() > 0 )
1565 for( std::pair<TEXT_FIELD_NAME, wxString> txtvalue :
m_context.TextFieldToValuesMap )
1568 wxString varValue = txtvalue.second;
1570 txtVars.insert( { varName, varValue } );
1573 for( std::pair<wxString, wxString> txtvalue :
m_context.FilenamesToTextMap )
1575 wxString varName = txtvalue.first;
1576 wxString varValue = txtvalue.second;
1578 txtVars.insert( { varName, varValue } );
1583 m_reporter->Report(
_(
"Text Variables could not be set as there is no project attached." ),
1594 return existingField;
1598 aKiCadSymbol->
AddField( newfield );
1611 wxCHECK(
Library.SymbolDefinitions.find( aSymdefID ) !=
Library.SymbolDefinitions.end(),
nullptr );
1617 std::unique_ptr<LIB_SYMBOL> kiSym = std::make_unique<LIB_SYMBOL>( csSym.
BuildLibName() );
1618 const int gateNumber = 1;
1621 for( std::pair<FIGURE_ID, FIGURE> figPair : csSym.
Figures )
1623 FIGURE fig = figPair.second;
1640 return getKiCadLibraryPoint( aPt, csSym.Origin );
1655 kiSym->AddDrawItem( shape );
1662 for( std::pair<TERMINAL_ID, TERMINAL> termPair : csSym.
Terminals )
1665 wxString pinNum = wxString::Format(
"%ld", term.
ID );
1666 wxString pinName = wxEmptyString;
1667 std::unique_ptr<SCH_PIN>
pin = std::make_unique<SCH_PIN>( kiSym.get() );
1673 pin->SetLength( 0 );
1675 pin->SetUnit( gateNumber );
1676 pin->SetNumber( pinNum );
1677 pin->SetName( pinName );
1695 pin->SetNumberTextSize( pinNumberHeight );
1696 pin->SetNameTextSize( pinNameHeight );
1698 pinNumToTerminals.insert( {
pin->GetNumber(), term.
ID } );
1699 kiSym->AddDrawItem(
pin.release() );
1707 for( std::pair<TEXT_ID, TEXT> textPair : csSym.
Texts )
1709 TEXT csText = textPair.second;
1711 auto libtext = std::make_unique<SCH_TEXT>( pos, csText.
Text,
LAYER_DEVICE );
1713 libtext->SetUnit( gateNumber );
1715 libtext->SetMultilineAllowed(
true );
1721 if( csText.
Text.Contains(
"\n" ) )
1723 wxArrayString strings;
1726 for(
size_t ii = 0; ii < strings.size(); ++ii )
1728 BOX2I bbox = libtext->GetTextBox(
nullptr, ii );
1731 RotatePoint( linePos, libtext->GetTextPos(), -libtext->GetTextAngle() );
1734 textLine->
SetText( strings[ii] );
1741 kiSym->AddDrawItem( textLine );
1747 libtext->SetMultilineAllowed(
false );
1748 kiSym->AddDrawItem( libtext.release() );
1770 wxCHECK( partField,
nullptr );
1786 for(
auto& [attributeId, textLocation] : csSym.
TextLocations )
1811 if( attrValue.HasLocation )
1818 m_symDefMap.insert( { aSymdefID, std::move( kiSym ) } );
1825 const PART& aCadstarPart,
1829 wxCHECK(
Library.SymbolDefinitions.find( aSymdefID ) !=
Library.SymbolDefinitions.end(), );
1831 std::unique_ptr<LIB_SYMBOL> kiSymDef(
loadSymdef( aSymdefID )->Duplicate() );
1832 wxCHECK( kiSymDef, );
1840 std::vector<SCH_PIN*> pins = kiSymDef->GetPinsByNumber( storedPinNum );
1845 if( pinNum.IsEmpty() )
1847 if( !csPin.Identifier.IsEmpty() )
1848 pinNum = csPin.Identifier;
1850 pinNum = wxString::Format(
"%ld", termID );
1852 pinNum = wxString::Format(
"%ld", csPin.ID );
1858 pin->SetNumber( pinNum );
1859 pin->SetName( pinName );
1862 pinNumMap.insert( { termID, pinNum } );
1879 const POINT& symDefOrigin =
Library.SymbolDefinitions.at( aSymdefID ).Origin;
1880 wxString footprintRefName = wxEmptyString;
1881 wxString footprintAlternateName = wxEmptyString;
1888 wxString attributeValue = aAttributeVal.Value;
1889 attributeValue.Replace( wxT(
"\n" ), wxT(
"\\n" ) );
1890 attributeValue.Replace( wxT(
"\r" ), wxT(
"\\r" ) );
1891 attributeValue.Replace( wxT(
"\t" ), wxT(
"\\t" ) );
1897 if( attrName == wxT(
"(PartDefinitionNameStem)" ) )
1900 attributeValue.Replace( wxT(
" " ),
"_" );
1904 else if( attrName == wxT(
"(PartDescription)" ) )
1909 else if( attrName == wxT(
"(PartDefinitionReferenceName)" ) )
1911 footprintRefName = attributeValue;
1914 else if( attrName == wxT(
"(PartDefinitionAlternateName)" ) )
1916 footprintAlternateName = attributeValue;
1920 bool attrIsNew = aSymbol->
GetField( attrName ) ==
nullptr;
1923 wxASSERT( attrField->
GetName() == attrName );
1924 attrField->
SetText( aAttributeVal.Value );
1925 attrField->
SetUnit( gateNumber );
1927 const ATTRIBUTE_ID& attrid = aAttributeVal.AttributeID;
1930 if( aAttributeVal.HasLocation )
1936 else if( attrIsNew )
1946 loadLibraryField( attrVal );
1950 loadLibraryField( attrVal );
1963 const wxString& aFootprintName,
1964 const wxString& aFootprintAlternate )
1966 wxString fpNameInLibrary =
generateLibName( aFootprintName, aFootprintAlternate );
1968 if( !fpNameInLibrary.IsEmpty() )
1970 wxArrayString fpFilters;
1971 fpFilters.Add( aFootprintName );
1973 if( !aFootprintAlternate.IsEmpty() )
1974 fpFilters.Add( fpNameInLibrary );
1988 int aLineThickness )
1990 const VERTEX* prev = &aCadstarVertices.at( 0 );
1995 for(
size_t i = 1; i < aCadstarVertices.size(); i++ )
1997 cur = &aCadstarVertices.at( i );
2008 centerPoint = ( startPoint + endPoint ) / 2;
2038 shape->
SetEnd( startPoint );
2043 shape->
SetEnd( endPoint );
2049 shape->
SetUnit( aGateNumber );
2068 aCadstarAttrLoc.
Mirror );
2096 int compOrientation = 0;
2098 if( aCadstarSymbol.
Mirror )
2100 compAngle = -compAngle;
2106 EDA_ANGLE test2( aComponentOrientation );
2110 m_reporter->Report( wxString::Format(
_(
"Symbol '%s' is rotated by an angle of %.1f "
2111 "degrees in the original CADSTAR design but "
2112 "KiCad only supports rotation angles multiples "
2113 "of 90 degrees. The connecting wires will need "
2124 m_reporter->Report( wxString::Format(
_(
"Symbol '%s' references sheet ID '%s' which does "
2125 "not exist in the design. The symbol was not "
2135 wxString gate = ( aCadstarSymbol.
GateID.IsEmpty() ) ? wxString( wxT(
"A" ) ) : aCadstarSymbol.
GateID;
2136 wxString partGateIndex = aCadstarSymbol.
PartRef.
RefID + gate;
2143 std::map<wxString, std::vector<SCH_PIN*>> pinNumToLibPinsMap;
2145 for(
auto& term : termNumMap )
2147 wxString pinNum = term.second;
2148 std::vector<SCH_PIN*> pins =
2150 pinNumToLibPinsMap.insert( { pinNum, pins } );
2153 auto replacePinNumber =
2154 [&]( wxString aOldPinNum, wxString aNewPinNum )
2156 if( aOldPinNum == aNewPinNum )
2159 for(
SCH_PIN* libpin : pinNumToLibPinsMap.at( aOldPinNum ) )
2164 for(
auto& pinPair : aCadstarSymbol.
PinNumbers )
2166 SYMBOL::PIN_NUM
pin = pinPair.second;
2168 replacePinNumber( termNumMap.at(
pin.TerminalID ),
2169 wxString::Format(
"%ld",
pin.PinNum ) );
2173 for(
auto& pinPair : aCadstarSymbol.
PinNames )
2176 replacePinNumber( termNumMap.at(
pin.TerminalID ),
pin.NameOrLabel );
2206 if( textIsVertical )
2209 alignment =
mirrorX( alignment );
2215 aCadstarAttrLoc.
Mirror );
2230 aReturnedOrientation =
ANGLE_0;
2248 return compOrientation;
2257 auto logUnknownNetElementError =
2260 m_reporter->Report( wxString::Format(
_(
"Net %s references unknown net element %s. "
2261 "The net was not properly loaded and may "
2262 "require manual fixing." ),
2271 if( aNetElementID.Contains(
"J" ) )
2274 return logUnknownNetElementError();
2276 return aNet.
Junctions.at( aNetElementID ).Location;
2278 else if( aNetElementID.Contains(
"P" ) )
2281 return logUnknownNetElementError();
2287 return logUnknownNetElementError();
2293 if(
Library.SymbolDefinitions.find( symdefid ) ==
Library.SymbolDefinitions.end() )
2294 return logUnknownNetElementError();
2297 Library.SymbolDefinitions.at( symdefid ).Terminals.at( termid ).Position;
2300 VECTOR2I pinOffset = libpinPosition - libOrigin;
2304 VECTOR2I pinPosition = symbolOrigin + pinOffset;
2308 pinPosition.
x = ( 2 * symbolOrigin.
x ) - pinPosition.
x;
2313 RotatePoint( pinPosition, symbolOrigin, -adjustedOrientation );
2316 retval.
x = pinPosition.
x;
2317 retval.
y = pinPosition.
y;
2321 else if( aNetElementID.Contains(
"BT" ) )
2324 return logUnknownNetElementError();
2326 return aNet.
BusTerminals.at( aNetElementID ).SecondPoint;
2328 else if( aNetElementID.Contains(
"BLKT" ) )
2331 return logUnknownNetElementError();
2337 return logUnknownNetElementError();
2339 return Schematic.Blocks.at( blockid ).Terminals.at( termid ).Position;
2341 else if( aNetElementID.Contains(
"D" ) )
2344 return logUnknownNetElementError();
2346 return aNet.
Danglers.at( aNetElementID ).Position;
2350 return logUnknownNetElementError();
2357 wxString netname = aNet.
Name;
2359 if( netname.IsEmpty() )
2360 netname = wxString::Format(
"$%ld", aNet.
SignalNum );
2372 const double& aScalingFactor,
2374 const bool& aMirrorInvert )
2379 const VERTEX* prev = &aCadstarVertices.at( 0 );
2383 "First vertex should always be a point vertex" );
2385 auto pointTransform =
2389 aScalingFactor, aTransformCentre, aMirrorInvert );
2392 for(
size_t ii = 1; ii < aCadstarVertices.size(); ii++ )
2394 cur = &aCadstarVertices.at( ii );
2396 VECTOR2I transformedStartPoint = pointTransform( prev->
End );
2397 VECTOR2I transformedEndPoint = pointTransform( cur->
End );
2419 segment->
SetLayer( aKiCadSchLayerID );
2431 wxFAIL_MSG(
"Unknown CADSTAR Vertex type" );
2440 const LAYER_ID& aCadstarSheetIDOverride,
2444 const double& aScalingFactor,
2446 const bool& aMirrorInvert )
2449 aCadstarSheetIDOverride, aKiCadSchLayerID, aMoveVector, aRotation,
2450 aScalingFactor, aTransformCentre, aMirrorInvert );
2455 aKiCadSchLayerID, aMoveVector, aRotation, aScalingFactor,
2456 aTransformCentre, aMirrorInvert );
2467 "Sheet already loaded!" );
2470 aParentSheet.
Last(),
2478 wxString
name =
Sheets.SheetNames.at( aCadstarSheetID );
2483 wxString loadedFilename = wxFileName(
Filename ).GetName();
2484 std::string filename = wxString::Format(
"%s_%02d", loadedFilename, sheetNum ).ToStdString();
2491 wxFileName fn(
m_schematic->Project().GetProjectPath() + filename );
2496 wxString pageNumStr = wxString::Format(
"%d",
getSheetNumber( aCadstarSheetID ) );
2501 m_sheetMap.insert( { aCadstarSheetID, sheet } );
2511 "FIXME! Parent sheet should be loaded before attempting to load subsheets" );
2513 for( std::pair<BLOCK_ID, BLOCK> blockPair :
Schematic.Blocks )
2515 BLOCK& block = blockPair.second;
2517 if( block.
LayerID == aCadstarSheetID && block.
Type == BLOCK::TYPE::CHILD )
2521 if( block.
Figures.size() > 0 )
2523 m_reporter->Report( wxString::Format(
_(
"The block ID %s (Block name: '%s') "
2524 "is drawn on sheet '%s' but is not "
2525 "linked to another sheet in the "
2526 "design. KiCad requires all sheet "
2527 "symbols to be associated to a sheet, "
2528 "so the block was not loaded." ),
2530 Sheets.SheetNames.at( aCadstarSheetID ) ),
2540 std::pair<VECTOR2I, VECTOR2I> blockExtents;
2542 if( block.
Figures.size() > 0 )
2548 THROW_IO_ERROR( wxString::Format(
_(
"The CADSTAR schematic might be corrupt: "
2549 "Block %s references a child sheet but has no "
2550 "Figure defined." ),
2559 std::vector<SCH_FIELD> fields = loadedSheet->
GetFields();
2563 field.SetVisible(
false );
2607 std::vector<LAYER_ID> childSheets, orphanSheets;
2610 for( std::pair<BLOCK_ID, BLOCK> blockPair :
Schematic.Blocks )
2612 BLOCK& block = blockPair.second;
2615 if( block.
Type == BLOCK::TYPE::CHILD )
2616 childSheets.push_back( assocSheetID );
2622 if( std::find( childSheets.begin(), childSheets.end(), sheetID ) == childSheets.end() )
2623 orphanSheets.push_back( sheetID );
2626 return orphanSheets;
2636 if( sheetID == aCadstarSheetID )
2649 wxCHECK_MSG( aItem, , wxT(
"aItem is null" ) );
2651 if( aCadstarSheetID ==
"ALL_SHEETS" )
2655 for( std::pair<LAYER_ID, SHEET_NAME> sheetPair :
Sheets.SheetNames )
2657 LAYER_ID sheetID = sheetPair.first;
2664 aItem = duplicateItem;
2666 else if( aCadstarSheetID ==
"NO_SHEET" )
2668 wxFAIL_MSG( wxT(
"Trying to add an item to NO_SHEET? This might be a documentation symbol." ) );
2674 m_sheetMap.at( aCadstarSheetID )->GetScreen()->Append( aItem );
2679 wxFAIL_MSG( wxT(
"Unknown Sheet ID." ) );
2687 const wxString& aSymDefAlternate )
2696 for(
auto& [
id, symdef] :
Library.SymbolDefinitions )
2698 wxString refKey = symdef.ReferenceName.Lower();
2699 wxString altKey = symdef.Alternate.Lower();
2711 else if( altKey.IsEmpty() )
2719 wxString refKeyToFind = aSymdefName.Lower();
2720 wxString altKeyToFind = aSymDefAlternate.Lower();
2738 if(
AttrColors.AttributeColors.find( aCadstarAttributeID ) !=
AttrColors.AttributeColors.end() )
2739 return AttrColors.AttributeColors.at( aCadstarAttributeID ).IsVisible;
2747 wxCHECK(
Assignments.Codedefs.LineCodes.find( aCadstarLineCodeID )
2757 wxCHECK(
Assignments.Codedefs.LineCodes.find( aCadstarLineCodeID )
2762 switch(
Assignments.Codedefs.LineCodes.at( aCadstarLineCodeID ).Style )
2778 wxCHECK(
Assignments.Codedefs.TextCodes.find( aCadstarTextCodeID )
2782 return Assignments.Codedefs.TextCodes.at( aCadstarTextCodeID );
2796 wxCHECK(
Assignments.Codedefs.AttributeNames.find( aCadstarAttributeID )
2798 aCadstarAttributeID );
2800 return Assignments.Codedefs.AttributeNames.at( aCadstarAttributeID ).Name;
2807 wxCHECK(
Parts.PartDefinitions.find( aCadstarPartID ) !=
Parts.PartDefinitions.end(),
PART() );
2809 return Parts.PartDefinitions.at( aCadstarPartID );
2816 wxCHECK(
Assignments.Codedefs.RouteCodes.find( aCadstarRouteCodeID )
2820 return Assignments.Codedefs.RouteCodes.at( aCadstarRouteCodeID );
2824CADSTAR_SCH_ARCHIVE_LOADER::PART::DEFINITION::PIN
2828 for( std::pair<PART_DEFINITION_PIN_ID, PART::DEFINITION::PIN> pinPair :
2831 PART::DEFINITION::PIN partPin = pinPair.second;
2833 if( partPin.TerminalGate == aGateID && partPin.TerminalPin == aTerminalID )
2837 return PART::DEFINITION::PIN();
2862 if( aCadstarGateID.IsEmpty() )
2865 return (
int) aCadstarGateID.Upper().GetChar( 0 ) - (int) wxUniChar(
'A' ) + 1;
2908 switch( aCadstarAlignment )
2927 default: wxFAIL_MSG(
"Unknown Cadstar Alignment" );
return aCadstarAlignment;
2935 switch( aCadstarAlignment )
2949 default: wxFAIL_MSG(
"Unknown Cadstar Alignment" );
return aCadstarAlignment;
2959 aKiCadTextItem->
SetText( escapedText );
2961 if( !
Assignments.Codedefs.TextCodes.count( aCadstarTextCodeID ) )
2970 if( textWidth == 0 )
2991 const long long aCadstarOrientAngle,
3000 ALIGNMENT textAlignment = aCadstarAlignment;
3006 textAlignment =
mirrorX( aCadstarAlignment );
3011 switch( aAlignment )
3066 wxCHECK( textEdaItem, );
3088 textAlignment =
rotate180( textAlignment );
3092 textAlignment =
rotate180( textAlignment );
3095 wxFAIL_MSG(
"Unknown Quadrant" );
3099 setAlignment( aKiCadTextItem, textAlignment );
3106 setAlignment( aKiCadTextItem, textAlignment );
3108 int off =
static_cast<SCH_TEXT*
>( aKiCadTextItem )->GetTextOffset();
3119 default: wxFAIL_MSG(
"Unexpected Spin Style" );
break;
3147 wxFAIL_MSG(
"Unexpected Spin Style" );
3156 label->SetSpinStyle( spin );
3160 wxFAIL_MSG(
"Unexpected item type" );
3175 aCadstarTextElement.
Mirror );
3182 long long aScalingFactorNumerator,
3183 long long aScalingFactorDenominator )
3187 if( aScalingFactorNumerator == aScalingFactorDenominator )
3191 [&](
int aLength ) ->
int
3193 return( aLength * aScalingFactorNumerator ) / aScalingFactorDenominator;
3199 return VECTOR2I( scaleLen( aCoord.x ), scaleLen( aCoord.y ) );
3205 return VECTOR2I( scaleLen( aSize.x ), scaleLen( aSize.y ) );
3212 switch( item.Type() )
3238 pin.SetPosition( scalePt(
pin.GetPosition() ) );
3239 pin.SetLength( scaleLen(
pin.GetLength() ) );
3279 if( aGateNumber > 0 && shape.
GetUnit() != aGateNumber )
3292 if( pt0 != pt1 && uniqueSegments.count( pt0 ) == 0 && uniqueSegments.count( pt1 ) == 0 )
3295 if( pt0.
x == pt1.
x || pt0.
y == pt1.
y )
3297 uniqueSegments.insert( { pt0, poly } );
3298 uniqueSegments.insert( { pt1, poly } );
3306 auto setPinOrientation =
3322 if( uniqueSegments.count(
pin->GetPosition() ) )
3328 if( otherPt ==
pin->GetPosition() )
3329 otherPt = poly.
CPoint( 1 );
3340std::pair<VECTOR2I, VECTOR2I>
3348 if( upperLeft.
x > v.
End.
x )
3349 upperLeft.
x = v.
End.
x;
3351 if( upperLeft.
y < v.
End.
y )
3352 upperLeft.
y = v.
End.
y;
3354 if( lowerRight.
x < v.
End.
x )
3355 lowerRight.
x = v.
End.
x;
3357 if( lowerRight.
y > v.
End.
y )
3358 lowerRight.
y = v.
End.
y;
3365 if( upperLeft.
x > v.
End.
x )
3366 upperLeft.
x = v.
End.
x;
3368 if( upperLeft.
y < v.
End.
y )
3369 upperLeft.
y = v.
End.
y;
3371 if( lowerRight.
x < v.
End.
x )
3372 lowerRight.
x = v.
End.
x;
3374 if( lowerRight.
y > v.
End.
y )
3375 lowerRight.
y = v.
End.
y;
3382 VECTOR2I size = lowerRightKiCad - upperLeftKiCad;
3384 return { upperLeftKiCad,
VECTOR2I( abs( size.
x ), abs( size.
y ) ) };
3414 const double& aScalingFactor,
3416 const bool& aMirrorInvert )
3420 if( aScalingFactor != 1.0 )
3423 retVal -= aTransformCentre;
3424 retVal.
x =
KiROUND( retVal.
x * aScalingFactor );
3425 retVal.
y =
KiROUND( retVal.
y * aScalingFactor );
3426 retVal += aTransformCentre;
3430 MIRROR( retVal.
x, aTransformCentre.
x );
3432 if( !aRotation.
IsZero() )
3433 RotatePoint( retVal, aTransformCentre, aRotation );
3435 if( aMoveVector !=
VECTOR2I{ 0, 0 } )
3436 retVal += aMoveVector;
3444 return sqrt( ( (
double) aPoint.
x * (
double) aPoint.
x )
3445 + ( (
double) aPoint.
y * (
double) aPoint.
y ) );
constexpr EDA_IU_SCALE schIUScale
constexpr double SCH_IU_PER_MM
Schematic internal units 1=100nm.
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
@ OUTPUT_NOT_OR
Output pin not OR tieable.
@ TRISTATE_DRIVER
Tristate output pin.
@ OUTPUT_OR
Output pin OR tieable.
@ UNCOMMITTED
Uncommitted pin (default)
@ TRISTATE_INPUT
Tristate input pin.
@ TRISTATE_BIDIR
Tristate bi-directional driver pin.
@ OUTPUT_NOT_NORM_OR
Output pin not normally OR tieable.
#define SYMBOL_NAME_ATTRID
Symbol Name attribute ID - used for placement of designators on the schematic.
#define SIGNALNAME_ORIGIN_ATTRID
#define LINK_ORIGIN_ATTRID
const wxString PartAcceptanceFieldName
const wxString PartNumberFieldName
const wxString PartNameFieldName
const wxString PartVersionFieldName
Loads a csa file into a KiCad SCHEMATIC object.
constexpr Vec Centre() const
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
constexpr coord_type GetLeft() const
constexpr coord_type GetRight() const
constexpr const SizeVec & GetSize() const
constexpr coord_type GetTop() const
constexpr coord_type GetBottom() const
@ ANTICLOCKWISE_SEMICIRCLE
static wxString EscapeFieldText(const wxString &aFieldText)
@ FRACTIONALGRID
Param1 = Units, Param2 = Divisor.
static const long FONT_BOLD
static const std::map< TEXT_FIELD_NAME, wxString > CADSTAR_TO_KICAD_FIELDS
Map between CADSTAR fields and KiCad text variables.
long TERMINAL_ID
Terminal is the pin identifier in the schematic.
TEXT_FIELD_NAME
These are special fields in text objects enclosed between the tokens '<@' and '>' such as <@[FIELD_NA...
ALIGNMENT
From CADSTAR Help: "Text Alignment enables you to define the position of an alignment origin for all ...
@ NO_ALIGNMENT
NO_ALIGNMENT has different meaning depending on the object type.
static const long UNDEFINED_VALUE
static wxString generateLibName(const wxString &aRefName, const wxString &aAlternateName)
wxString LAYER_ID
ID of a Sheet (if schematic) or board Layer (if PCB)
static void FixTextPositionNoAlignment(EDA_TEXT *aKiCadTextItem)
Correct the position of a text element that had NO_ALIGNMENT in CADSTAR.
@ OUTLINE
Unfilled closed shape.
@ OPENSHAPE
Unfilled open shape. Cannot have cutouts.
@ SOLID
Filled closed shape (solid fill).
@ HATCHED
Filled closed shape (hatch fill).
static const double TXT_HEIGHT_RATIO
CADSTAR fonts are drawn on a 24x24 integer matrix, where the each axis goes from 0 to 24.
void checkPoint()
Updates m_progressReporter or throws if user canceled.
static wxString HandleTextOverbar(wxString aCadstarString)
Convert a string with CADSTAR overbar characters to equivalent in KiCad.
JUSTIFICATION
From CADSTAR Help: "Multi Line Text can also be justified as Left, Centre or Right.
PROGRESS_REPORTER * m_progressReporter
bool CheckFileHeader(const std::filesystem::path &aPath) const
CADSTAR_PARTS_LIB_MODEL ReadFile(const std::filesystem::path &aPath) const
void loadItemOntoKiCadSheet(const LAYER_ID &aCadstarSheetID, SCH_ITEM *aItem)
void Load(SCHEMATIC *aSchematic, SCH_SHEET *aRootSheet)
Loads a CADSTAR Schematic Archive file into the KiCad SCHEMATIC object given.
ROUTECODE getRouteCode(const ROUTECODE_ID &aCadstarRouteCodeID)
static wxString CreateLibName(const wxFileName &aFileName, const SCH_SHEET *aRootSheet)
std::map< BLOCK_PIN_ID, SCH_HIERLABEL * > m_sheetPinMap
Cadstar->KiCad Sheet Pins.
const int SMALL_LABEL_SIZE
VECTOR2I applyTransform(const VECTOR2I &aPoint, const VECTOR2I &aMoveVector={ 0, 0 }, const EDA_ANGLE &aRotation=ANGLE_0, const double &aScalingFactor=1.0, const VECTOR2I &aTransformCentre={ 0, 0 }, const bool &aMirrorInvert=false)
std::map< SYMBOL_ID, SCH_GLOBALLABEL * > m_globalLabelsMap
Cadstar->KiCad Global Labels.
SCH_SYMBOL * loadSchematicSymbol(const SYMBOL &aCadstarSymbol, const LIB_SYMBOL &aKiCadPart, EDA_ANGLE &aComponentOrientation)
void applyTextSettings(EDA_TEXT *aKiCadTextItem, const TEXTCODE_ID &aCadstarTextCodeID, const ALIGNMENT &aCadstarAlignment, const JUSTIFICATION &aCadstarJustification, const long long aCadstarOrientAngle=0, bool aMirrored=false)
void loadSheetAndChildSheets(const LAYER_ID &aCadstarSheetID, const VECTOR2I &aPosition, const VECTOR2I &aSheetSize, const SCH_SHEET_PATH &aParentSheet)
wxString getAttributeName(const ATTRIBUTE_ID &aCadstarAttributeID)
std::vector< LIB_SYMBOL * > m_loadedSymbols
Loaded symbols so far.
static SCH_FIELD * addNewFieldToSymbol(const wxString &aFieldName, LIB_SYMBOL *aKiCadSymbol)
PART getPart(const PART_ID &aCadstarPartID)
std::vector< LAYER_ID > findOrphanSheets()
void setFootprintOnSymbol(LIB_SYMBOL *aKiCadSymbol, const wxString &aFootprintName, const wxString &aFootprintAlternate)
std::map< BUS_ID, std::shared_ptr< BUS_ALIAS > > m_busesMap
Cadstar->KiCad Buses.
SCH_TEXT * getKiCadSchText(const TEXT &aCadstarTextElement)
std::map< TERMINAL_ID, wxString > TERMINAL_TO_PINNUM_MAP
Map between a terminal ID in a symbol definition to the pin number that should be imported into KiCad...
wxString getNetName(const NET_SCH &aNet)
std::pair< BLOCK_ID, TERMINAL_ID > BLOCK_PIN_ID
std::map< SYMBOL_ID, SCH_SYMBOL * > m_powerSymMap
Cadstar->KiCad Power Symbols.
std::pair< PART_ID, GATE_ID > PART_GATE_ID
void loadDocumentationSymbols()
VECTOR2I getKiCadLibraryPoint(const VECTOR2I &aCadstarPoint, const VECTOR2I &aCadstarCentre)
std::vector< std::unique_ptr< LIB_SYMBOL > > m_ownedSymbols
Owns every LIB_SYMBOL the loader allocates while loading a design.
PART::DEFINITION::PIN getPartDefinitionPin(const PART &aCadstarPart, const GATE_ID &aGateID, const TERMINAL_ID &aTerminalID)
std::map< wxString, TERMINAL_ID > PINNUM_TO_TERMINAL_MAP
std::map< SYMDEF_ID, PINNUM_TO_TERMINAL_MAP > m_symDefTerminalsMap
int getTextHeightFromTextCode(const TEXTCODE_ID &aCadstarTextCodeID)
void loadChildSheets(const LAYER_ID &aCadstarSheetID, const SCH_SHEET_PATH &aSheet)
void applyToLibraryFieldAttribute(const ATTRIBUTE_LOCATION &aCadstarAttrLoc, const VECTOR2I &aSymbolOrigin, SCH_FIELD *aKiCadField)
double getPolarRadius(const VECTOR2I &aPoint)
void applyTextCodeIfExists(EDA_TEXT *aKiCadTextItem, const TEXTCODE_ID &aCadstarTextCodeID)
int getSheetNumber(const LAYER_ID &aCadstarSheetID)
int getLineThickness(const LINECODE_ID &aCadstarLineCodeID)
TEXTCODE getTextCode(const TEXTCODE_ID &aCadstarTextCodeID)
SPIN_STYLE getSpinStyle(const long long &aCadstarOrientation, bool aMirror)
std::map< wxString, LIB_SYMBOL * > m_powerSymLibMap
NetName->KiCad Power Lib Symbol.
std::map< std::pair< wxString, wxString >, SYMDEF_ID > m_SymDefNamesCache
Cache storing symbol names and alternates to symdef IDs.
std::map< PART_ID, TERMINAL_TO_PINNUM_MAP > m_pinNumsMap
Cadstar Part->KiCad Pin number map.
void loadHierarchicalSheetPins()
std::vector< LIB_SYMBOL * > LoadPartsLib(const wxString &aFilename)
ELECTRICAL_PINTYPE getKiCadPinType(const CADSTAR_PIN_TYPE &aPinType)
wxString m_footprintLibName
Name of the footprint library to prepend all footprints with.
int getKiCadLength(long long aCadstarLength)
std::map< PART_ID, LIB_SYMBOL * > m_partMap
Cadstar->KiCad Parts.
bool isAttributeVisible(const ATTRIBUTE_ID &aCadstarAttributeID)
VECTOR2I getKiCadPoint(const VECTOR2I &aCadstarPoint)
EDA_ANGLE getAngle(const long long &aCadstarAngle)
const double ARC_ACCURACY
std::map< wxString, SYMDEF_ID > m_DefaultSymDefNamesCache
Cache storing symbol names (default alternate) to symdef IDs.
void loadSymbolGateAndPartFields(const SYMDEF_ID &aSymdefID, const PART &aCadstarPart, const GATE_ID &aGateID, LIB_SYMBOL *aSymbol)
void loadFigure(const FIGURE &aCadstarFigure, const LAYER_ID &aCadstarSheetIDOverride, SCH_LAYER_ID aKiCadSchLayerID, const VECTOR2I &aMoveVector={ 0, 0 }, const EDA_ANGLE &aRotation=ANGLE_0, const double &aScalingFactor=1.0, const VECTOR2I &aTransformCentre={ 0, 0 }, const bool &aMirrorInvert=false)
std::map< PART_GATE_ID, SYMDEF_ID > m_partSymbolsMap
Map holding the symbols loaded so far for a particular PART_ID and GATE_ID.
LIB_SYMBOL * getScaledLibPart(const LIB_SYMBOL *aSymbol, long long aScalingFactorNumerator, long long aScalingFactorDenominator)
SYMDEF_ID getSymDefFromName(const wxString &aSymdefName, const wxString &aSymDefAlternate)
std::pair< VECTOR2I, VECTOR2I > getFigureExtentsKiCad(const FIGURE &aCadstarFigure)
std::map< LAYER_ID, SCH_SHEET * > m_sheetMap
Cadstar->KiCad Sheets.
void copySymbolItems(LIB_SYMBOL *aSourceSym, LIB_SYMBOL *aDestSym, int aDestUnit, bool aOverrideFields=true)
POINT getLocationOfNetElement(const NET_SCH &aNet, const NETELEMENT_ID &aNetElementID)
void fixUpLibraryPins(LIB_SYMBOL *aSymbolToFix, int aGateNumber)
std::map< SYMDEF_ID, std::unique_ptr< const LIB_SYMBOL > > m_symDefMap
Cadstar->KiCad Lib Symbols loaded so far.
std::unique_ptr< LIB_SYMBOL > loadLibPart(const CADSTAR_PART_ENTRY &aPart)
ALIGNMENT rotate180(const ALIGNMENT &aCadstarAlignment)
long long getCadstarAngle(const EDA_ANGLE &aAngle)
void loadLibrarySymbolShapeVertices(const std::vector< VERTEX > &aCadstarVertices, const VECTOR2I &aSymbolOrigin, LIB_SYMBOL *aSymbol, int aGateNumber, int aLineThickness)
LINE_STYLE getLineStyle(const LINECODE_ID &aCadstarLineCodeID)
VECTOR2I m_designCenter
Required for calculating the offset to apply to the Cadstar design so that it fits in the KiCad canva...
ALIGNMENT mirrorX(const ALIGNMENT &aCadstarAlignment)
int getComponentOrientation(const EDA_ANGLE &aOrientAngle, EDA_ANGLE &aReturnedOrientation)
void loadShapeVertices(const std::vector< VERTEX > &aCadstarVertices, LINECODE_ID aCadstarLineCodeID, LAYER_ID aCadstarSheetID, SCH_LAYER_ID aKiCadSchLayerID, const VECTOR2I &aMoveVector={ 0, 0 }, const EDA_ANGLE &aRotation=ANGLE_0, const double &aScalingFactor=1.0, const VECTOR2I &aTransformCentre={ 0, 0 }, const bool &aMirrorInvert=false)
const LIB_SYMBOL * loadSymdef(const SYMDEF_ID &aSymdefID)
int getKiCadUnitNumberFromGate(const GATE_ID &aCadstarGateID)
void loadSymbolFieldAttribute(const ATTRIBUTE_LOCATION &aCadstarAttrLoc, const EDA_ANGLE &aComponentOrientation, bool aIsMirrored, SCH_FIELD *aKiCadField)
void loadSchematicSymbolInstances()
ASSIGNMENTS_SCM Assignments
CADSTAR_SCHEMATIC Schematic
int KiCadUnitDivider
Use this value to convert units in this CSA file to KiCad units.
PARTNAMECOL SymbolPartNameColor
void Parse()
Parses the file.
A base class for most all the KiCad significant classes used in schematics and boards.
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
KICAD_T Type() const
Returns the type of object.
EDA_ITEM * GetParent() const
virtual void SetParent(EDA_ITEM *aParent)
virtual void SetEnd(const VECTOR2I &aEnd)
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.
void SetArcGeometry(const VECTOR2I &aStart, const VECTOR2I &aMid, const VECTOR2I &aEnd)
Set the three controlling points for an arc.
void SetFillMode(FILL_T aFill)
virtual void SetPolyShape(const SHAPE_POLY_SET &aShape)
virtual void SetStart(const VECTOR2I &aStart)
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.
virtual void SetTextPos(const VECTOR2I &aPoint)
virtual int GetTextHeight() const
void SetVertJustify(GR_TEXT_V_ALIGN_T aType)
virtual int GetTextWidth() const
virtual void SetTextWidth(int aWidth)
virtual void SetVisible(bool aVisible)
virtual void SetTextThickness(int aWidth)
The TextThickness is that set by the user.
virtual void SetTextHeight(int aHeight)
virtual EDA_ANGLE GetTextAngle() const
void SetBold(bool aBold)
Set the text to be bold - this will also update the font if needed.
virtual int GetTextThickness() const
virtual void SetText(const wxString &aText)
virtual void SetTextAngle(const EDA_ANGLE &aAngle)
void SetItalic(bool aItalic)
Set the text to be italic - this will also update the font if needed.
void SetMultilineAllowed(bool aAllow)
void SetHorizJustify(GR_TEXT_H_ALIGN_T aType)
ee_rtree::Iterator begin() const
Return a read/write iterator that points to the first.
ee_rtree::Iterator end() const
Return a read/write iterator that points to one past the last element in the EE_RTREE.
A logical library item identifier and consists of various portions much like a URI.
int SetLibItemName(const UTF8 &aLibItemName)
Override the library item name portion of the LIB_ID to aLibItemName.
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
static UTF8 FixIllegalChars(const UTF8 &aLibItemName, bool aLib)
Replace illegal LIB_ID item name characters with underscores '_'.
Define a library symbol object.
std::vector< const SCH_PIN * > GetGraphicalPins(int aUnit=0, int aBodyStyle=0) const
Graphical pins: Return schematic pin objects as drawn (unexpanded), filtered by unit/body.
void GetFields(std::vector< SCH_FIELD * > &aList, bool aVisibleOnly=false) const override
Populate a std::vector with SCH_FIELDs, sorted in ordinal order.
std::vector< struct LIB_SYMBOL_UNIT > GetUnitDrawItems()
Return a list of SCH_ITEM objects separated by unit and convert number.
SCH_FIELD * GetField(const wxString &aFieldName)
Find a field within this symbol matching aFieldName; return nullptr if not found.
SCH_FIELD & GetFootprintField()
Return reference to the footprint field.
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
wxString GetName() const override
void SetDescription(const wxString &aDescription)
Gets the Description field text value */.
SCH_FIELD & GetValueField()
Return reference to the value field.
void RemoveDrawItem(SCH_ITEM *aItem)
Remove draw aItem from list.
void SetFPFilters(const wxArrayString &aFilters)
std::vector< SCH_PIN * > GetPinsByNumber(const wxString &aNumber, int aUnit=0, int aBodyStyle=0)
Return all pin objects with the requested pin aNumber.
void AddField(SCH_FIELD *aField)
Add a field.
void AddDrawItem(SCH_ITEM *aItem, bool aSort=true)
Add a new draw aItem to the draw object list and sort according to aSort.
virtual void SetName(const wxString &aName)
SCH_FIELD & GetReferenceField()
Return reference to the reference designator field.
ITERATOR_BASE< SCH_ITEM, MULTIVECTOR< SCH_ITEM, FIRST_TYPE_VAL, LAST_TYPE_VAL >, typename ITEM_PTR_VECTOR::iterator > ITERATOR
ITERATOR begin(int aType=UNDEFINED_TYPE)
Describe the page size and margins of a paper page on which to eventually print or plot.
void SetHeightMils(double aHeightInMils)
const VECTOR2D GetSizeIU(double aIUScale) const
Gets the page size in internal units.
void SetWidthMils(double aWidthInMils)
Container for project specific data.
virtual std::map< wxString, wxString > & GetTextVars() const
Holds all the data relating to one schematic.
void SetSize(const VECTOR2I &aSize)
Class for a wire to bus entry.
virtual const wxString & GetText() const override
Return the string associated with the text object.
wxString GetName(bool aUseDefaultName=true) const
Return the field name (not translated).
void SetPosition(const VECTOR2I &aPosition) override
void SetText(const wxString &aText) override
void SetSpinStyle(SPIN_STYLE aSpinStyle) override
void SetSpinStyle(SPIN_STYLE aSpinStyle) override
Base class for any item which can be embedded within the SCHEMATIC container class,...
SCH_ITEM * Duplicate(bool addToParentGroup, SCH_COMMIT *aCommit=nullptr, bool doClone=false) const
Routine to create a new copy of given item.
void SetLayer(SCH_LAYER_ID aLayer)
virtual void SetUnit(int aUnit)
void SetPosition(const VECTOR2I &aPosition) override
void SetShape(LABEL_FLAG_SHAPE aShape)
void SetPosition(const VECTOR2I &aPosition) override
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
virtual void SetSpinStyle(SPIN_STYLE aSpinStyle)
Segment description base class to describe items which have 2 end points (track, wire,...
void SetStartPoint(const VECTOR2I &aPosition)
void SetLineWidth(const int aSize)
VECTOR2I GetEndPoint() const
VECTOR2I GetStartPoint() const
void SetLineStyle(const LINE_STYLE aStyle)
void SetEndPoint(const VECTOR2I &aPosition)
const PAGE_INFO & GetPageSettings() const
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
void AddBusAlias(std::shared_ptr< BUS_ALIAS > aAlias)
Add a bus alias definition.
void SetPageSettings(const PAGE_INFO &aPageSettings)
EE_RTREE & Items()
Get the full RTree, usually for iterating.
void SetFileName(const wxString &aFileName)
Set the file name for this screen to aFileName.
void Update(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Update aItem's bounding box in the tree.
void SetPosition(const VECTOR2I &aPos) override
void SetStroke(const STROKE_PARAMS &aStroke) override
void AddPoint(const VECTOR2I &aPosition)
VECTOR2I GetPosition() const override
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
void SetPageNumber(const wxString &aPageNumber)
Set the sheet instance user definable page number.
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
void push_back(SCH_SHEET *aSheet)
Forwarded method from std::vector.
Define a sheet pin (label) used in sheets to create hierarchical schematics.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
wxString GetFileName() const
Return the filename corresponding to this sheet.
void AddPin(SCH_SHEET_PIN *aSheetPin)
Add aSheetPin to the sheet.
std::vector< SCH_FIELD > & GetFields()
Return a reference to the vector holding the sheet's fields.
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this sheet.
SCH_SCREEN * GetScreen() const
VECTOR2I GetPosition() const override
void SetFields(const std::vector< SCH_FIELD > &aFields)
Set multiple schematic fields.
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
static bool ClassOf(const EDA_ITEM *aItem)
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
void SetPosition(const VECTOR2I &aPosition) override
void UpdatePins()
Updates the cache of SCH_PIN objects for each pin.
void SetRef(const SCH_SHEET_PATH *aSheet, const wxString &aReference)
Set the reference for the given sheet path for this symbol.
void SetOrientation(int aOrientation)
Compute the new transform matrix based on aOrientation for the symbol which is applied to the current...
SCH_FIELD * AddField(const SCH_FIELD &aField)
Add a field to the symbol.
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this symbol.
VECTOR2I GetPosition() const override
void SetPosition(const VECTOR2I &aPosition) override
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
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_LINE_CHAIN Reverse() const
Reverse point order in the line chain.
void SetPoint(int aIndex, const VECTOR2I &aPos)
Move a point to a specific location.
int FindSegment(const VECTOR2I &aP, int aThreshold=1) const
Search for segment containing point aP.
int Intersect(const SEG &aSeg, INTERSECTIONS &aIp) const
Find all intersection points between our line chain and the segment aSeg.
void Replace(int aStartIndex, int aEndIndex, const VECTOR2I &aP)
Replace points with indices in range [start_index, end_index] with a single point aP.
virtual size_t GetPointCount() const override
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
const VECTOR2I & CPoint(int aIndex) const
Return a reference to a given point in the line chain.
const VECTOR2I NearestPoint(const VECTOR2I &aP, bool aAllowInternalShapePoints=true) const
Find a point on the line chain that is closest to point aP.
std::vector< INTERSECTION > INTERSECTIONS
const std::vector< VECTOR2I > & CPoints() const
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
SPIN_STYLE MirrorX()
Mirror the label spin style across the X axis or simply swaps up and bottom.
SPIN_STYLE MirrorY()
Mirror the label spin style across the Y axis or simply swaps left and right.
Simple container to manage line stroke parameters.
virtual void SetShowPinNumbers(bool aShow)
Set or clear the pin number visibility flag.
virtual void SetShowPinNames(bool aShow)
Set or clear the pin name visibility flag.
T EuclideanNorm() const
Compute the Euclidean norm of the vector, which is defined as sqrt(x ** 2 + y ** 2).
#define DEFAULT_WIRE_WIDTH_MILS
The default bus width in mils. (can be changed in preference menu)
static constexpr EDA_ANGLE ANGLE_0
static constexpr EDA_ANGLE ANGLE_90
static constexpr EDA_ANGLE ANGLE_VERTICAL
static constexpr EDA_ANGLE ANGLE_HORIZONTAL
static constexpr EDA_ANGLE ANGLE_45
static constexpr EDA_ANGLE ANGLE_270
static constexpr EDA_ANGLE ANGLE_180
static constexpr EDA_ANGLE ANGLE_135
@ FILLED_WITH_BG_BODYCOLOR
@ FILLED_SHAPE
Fill with object color.
#define IGNORE_PARENT_GROUP
static const std::string KiCadSchematicFileExtension
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
#define THROW_IO_ERRORF(msg,...)
SCH_LAYER_ID
Eeschema drawing layers.
MULTIVECTOR< SCH_ITEM, SCH_SHAPE_T, SCH_PIN_T > LIB_ITEMS_CONTAINER
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
constexpr void MIRROR(T &aPoint, const T &aMirrorRef)
Updates aPoint with the mirror of aPoint relative to the aMirrorRef.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
@ VERTEX
An indexed rectangle corner or polygon outline vertex; pairs with CONSTRAINT_MEMBER::m_index.
ELECTRICAL_PINTYPE
The symbol library pin object electrical types used in ERC tests.
@ PT_INPUT
usual pin input: must be connected
@ PT_BIDI
input or output (like port for a microprocessor)
@ PT_OPENCOLLECTOR
pin type open collector
@ PT_POWER_IN
power input (GND, VCC for ICs). Must be connected to a power output.
@ PT_UNSPECIFIED
unknown electrical properties: creates always a warning when connected
@ PT_PASSIVE
pin for passive symbols: must be connected, and can be connected to any pin.
@ PIN_UP
The pin extends upwards from the connection point: Probably on the bottom side of the symbol.
@ PIN_RIGHT
The pin extends rightwards from the connection point.
@ PIN_LEFT
The pin extends leftwards from the connection point: Probably on the right side of the symbol.
@ PIN_DOWN
The pin extends downwards from the connection: Probably on the top side of the symbol.
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.
void wxStringSplit(const wxString &aText, wxArrayString &aStrings, wxChar aSplitter)
Split aString to a string list separated at aSplitter.
bool ReplaceIllegalFileNameChars(std::string &aName, int aReplaceChar)
Checks aName for illegal file name characters.
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
LINE_STYLE
Dashed line types.
JUSTIFICATION Justification
Note: Justification has no effect on single lines of text.
ALIGNMENT Alignment
In CADSTAR The default alignment for a TEXT object (when "(No Alignment()" is selected) Bottom Left o...
ATTRIBUTE_LOCATION AttributeLocation
bool HasLocation
Flag to know if this ATTRIBUTE_VALUE has a location i.e.
Represent a cutout in a closed shape (e.g.
std::vector< VERTEX > Vertices
long ScaleRatioNumerator
Documentation symbols can be arbitrarily scaled when added to a design.
long ScaleRatioDenominator
Documentation symbols can be arbitrarily scaled when added to a design.
POINT Origin
Origin of the component (this is used as the reference point when placing the component in the design...
LAYER_ID LayerID
Move all objects in the Symdef to this layer.
DOCUMENTATION_SYMBOL_ID ID
SYMDEF_ID SymdefID
Normally documentation symbols only have TEXT, FIGURE and TEXT_LOCATION objects which are all drawn o...
long Modifier1
It seems this is related to weight. 400=Normal, 700=Bold.
wxString Name
This is undefined (wxEmptyString) if the net is unnamed.
long SignalNum
This is undefined if the net has been given a name.
bool HidePinNames
Specifies whether to display the pin names/identifier in the schematic symbol or not.
std::map< GATE_ID, GATE > GateSymbols
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
Some attributes are defined within the part definition, whilst others are defined in the part.
std::map< PART_DEFINITION_PIN_ID, PIN > Pins
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
Some attributes are defined within the part definition, whilst others are defined in the part itself.
Represent a point in x,y coordinates.
SHAPE_POLY_SET ConvertToPolySet(const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback, int aAccuracy) const
std::vector< VERTEX > Vertices
std::vector< CUTOUT > Cutouts
Not Applicable to OPENSHAPE Type.
std::map< FIGURE_ID, FIGURE > Figures
std::map< ATTRIBUTE_ID, TEXT_LOCATION > TextLocations
This contains location of any attributes, including designator position.
POINT Origin
Origin of the component (this is used as the reference point when placing the component in the design...
wxString Alternate
This is in addition to ReferenceName.
std::map< TEXT_ID, TEXT > Texts
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
These attributes might also have a location.
wxString BuildLibName() const
long Width
Defaults to 0 if using system fonts or, if using CADSTAR font, default to equal height (1:1 aspect ra...
Corresponds to CADSTAR "origin".
ALIGNMENT Alignment
In CADSTAR The default alignment for a TEXT object (when "(No Alignment)" is selected) Bottom Left of...
JUSTIFICATION Justification
Note: has no effect on single lines of text.
< Nodename = "VARIANT" or "VMASTER" (master variant
Represents a vertex in a shape.
SHAPE_ARC BuildArc(const VECTOR2I &aPrevPoint, const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback) const
void AppendToChain(SHAPE_LINE_CHAIN *aChainToAppendTo, const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback, int aAccuracy) const
CADSTAR Parts Library (*.lib) model - a data structure describing the contents of the file format.
std::vector< CADSTAR_PART_ENTRY > m_PartEntries
std::string m_ComponentStem
std::map< std::string, std::vector< CADSTAR_PART_PIN > > m_HiddenPins
Pins with an implied electrical connection to a net, not part of any symbol (Note: we probably will n...
std::map< std::string, CADSTAR_ATTRIBUTE_VALUE > m_SchAttributes
Dollar sign ($) line $[!
std::map< std::string, CADSTAR_ATTRIBUTE_VALUE > m_SchAndPcbAttributes
At symbol (@) line [@[!
std::vector< CADSTAR_PART_SYMBOL_ENTRY > m_Symbols
Symbols that form this part.
std::map< std::string, std::string > m_UserAttributes
Star (*) line *<User-defined name> This line is ignored by CADSTAR.
std::map< long, std::string > m_PinNamesMap
Map of pin identifiers to alphanumeric pin names.
std::optional< std::string > m_AcceptancePartName
std::optional< std::string > m_Pcb_alternate
std::optional< std::string > m_Version
std::optional< std::string > m_Description
std::optional< std::string > m_Number
std::string m_Pcb_component
std::optional< std::string > m_SpiceModel
std::map< std::string, CADSTAR_ATTRIBUTE_VALUE > m_PcbAttributes
Percentage sign (%) line %[!
std::optional< std::string > m_Value
std::map< std::string, CADSTAR_ATTRIBUTE_VALUE > m_PartAttributes
Tilde (~) line ~[!
std::map< long, std::string > m_PinLabelsMap
Map of pin identifiers to alphanumeric pin labels.
std::vector< CADSTAR_PART_PIN > m_Pins
std::optional< std::string > m_SymbolAlternateName
TYPE Type
Determines what the associated layer is, whether parent, child or clone.
ATTRIBUTE_LOCATION BlockLabel
LAYER_ID LayerID
The sheet block is on (TODO: verify this is true)
LAYER_ID AssocLayerID
Parent or Child linked sheet.
std::map< TERMINAL_ID, TERMINAL > Terminals
std::map< FIGURE_ID, FIGURE > Figures
LAYER_ID LayerID
Sheet on which bus is located.
ATTRIBUTE_LOCATION AttrLoc
std::map< NETELEMENT_ID, DANGLER > Danglers
std::map< NETELEMENT_ID, SYM_TERM > Terminals
std::vector< CONNECTION_SCH > Connections
std::map< NETELEMENT_ID, BUS_TERM > BusTerminals
std::map< NETELEMENT_ID, BLOCK_TERM > BlockTerminals
std::map< NETELEMENT_ID, JUNCTION_SCH > Junctions
ATTRIBUTE_LOCATION AttrLoc
LAYER_ID LayerID
Sheet on which symbol is located.
SYMBOL_ID VariantParentSymbolID
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
GATE_ID GateID
The gate this symbol represents within the associated Part.
long ScaleRatioNumerator
Symbols can be arbitrarily scaled in CADSTAR.
std::map< TERMINAL_ID, SYMPINNAME_LABEL > PinNames
Identifier of the pin in the PCB Equivalent to KiCad's Pin Number.
std::map< TERMINAL_ID, PIN_NUM > PinNumbers
This seems to only appear in older designs and is similar to PinNames but only allowing numerical val...
long ScaleRatioDenominator
SYMBOLVARIANT SymbolVariant
std::map< TERMINAL_ID, PIN_NUM_LABEL_LOC > PinLabelLocations
std::map< TERMINAL_ID, PIN_NUM_LABEL_LOC > PinNumberLocations
std::map< TERMINAL_ID, TERMINAL > Terminals
POINT Position
Pad position within the component's coordinate frame.
@ USER
The field ID hasn't been set yet; field is invalid.
@ REFERENCE
Field Reference of part, i.e. "IC21".
@ VALUE
Field Value of part, i.e. "3.3K".
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
constexpr int sign(T val)
VECTOR2< int32_t > VECTOR2I
constexpr int LexicographicalCompare(const VECTOR2< T > &aA, const VECTOR2< T > &aB)
Definition of file extensions used in Kicad.