pcad2kicadpcb_plugin: use a valid font properties

Use current selected font (Stroke, TrueType) properties.
Import TrueType Font properties: bold, italic.
This commit is contained in:
Eldar Khayrullin 2017-12-10 12:21:43 +03:00 committed by Maciej Suminski
parent 897702b2dc
commit 08b71cd252
4 changed files with 73 additions and 30 deletions

View File

@ -43,6 +43,10 @@ const double TEXT_WIDTH_TO_SIZE_AVERAGE = 0.79;
// PCAD proportions of stroke font // PCAD proportions of stroke font
const double TEXT_HEIGHT_TO_SIZE = 0.656; const double TEXT_HEIGHT_TO_SIZE = 0.656;
const double TEXT_WIDTH_TO_SIZE = 0.656; const double TEXT_WIDTH_TO_SIZE = 0.656;
// True type font
const double TRUETYPE_WIDTH_PER_HEIGHT = 0.073;
const double TRUETYPE_BOLD_WIDTH_MUL = 1.6;
const long TRUETYPE_BOLD_MIN_WEIGHT = 700;
wxString GetWord( wxString* aStr ) wxString GetWord( wxString* aStr )
{ {
@ -289,6 +293,7 @@ void SetDoublePrecisionPosition( wxString aStr,
aActualConversion ); aActualConversion );
} }
TTEXT_JUSTIFY GetJustifyIdentificator( wxString aJustify ) TTEXT_JUSTIFY GetJustifyIdentificator( wxString aJustify )
{ {
TTEXT_JUSTIFY id; TTEXT_JUSTIFY id;
@ -315,6 +320,7 @@ TTEXT_JUSTIFY GetJustifyIdentificator( wxString aJustify )
return id; return id;
} }
void SetTextParameters( XNODE* aNode, void SetTextParameters( XNODE* aNode,
TTEXTVALUE* aTextValue, TTEXTVALUE* aTextValue,
wxString aDefaultMeasurementUnit, wxString aDefaultMeasurementUnit,
@ -382,49 +388,77 @@ void SetFontProperty( XNODE* aNode,
aNode = aNode->GetParent(); aNode = aNode->GetParent();
aNode = FindNode( aNode, wxT( "library" ) ); aNode = FindNode( aNode, wxT( "library" ) );
if( aNode ) if( aNode )
aNode = FindNode( aNode, wxT( "textStyleDef" ) ); aNode = FindNode( aNode, wxT( "textStyleDef" ) );
while( aNode )
{
aNode->GetAttribute( wxT( "Name" ), &propValue );
propValue.Trim( false );
propValue.Trim( true );
if( propValue == n )
break;
aNode = aNode->GetNext();
}
if( aNode ) if( aNode )
{ {
while( true ) bool isTrueType;
{ wxString fontType;
aNode->GetAttribute( wxT( "Name" ), &propValue );
propValue.Trim( false );
propValue.Trim( true );
if( propValue == n ) propValue = FindNodeGetContent( aNode, wxT( "textStyleDisplayTType" ) );
break; isTrueType = ( propValue == wxT( "True" ) );
aNode = FindNode( aNode, wxT( "font" ) );
fontType = FindNodeGetContent( aNode, wxT( "fontType" ) );
if( ( isTrueType && ( fontType != wxT( "TrueType" ) ) ) ||
( !isTrueType && ( fontType != wxT( "Stroke" ) ) ) )
aNode = aNode->GetNext(); aNode = aNode->GetNext();
}
if( aNode ) if( aNode )
{ {
aNode = FindNode( aNode, wxT( "font" ) ); if( isTrueType )
if( aNode )
{ {
if( FindNode( aNode, wxT( "fontHeight" ) ) ) propValue = FindNodeGetContent( aNode, wxT( "fontItalic" ) );
// // SetWidth(iNode.ChildNodes.FindNode('fontHeight').Text, aTextValue->isItalic = ( propValue == wxT( "True" ) );
// // DefaultMeasurementUnit,tv.TextHeight);
// Fixed By Lubo, 02/2008
SetHeight( FindNode( aNode, wxT(
"fontHeight" ) )->GetNodeContent(),
aDefaultMeasurementUnit, &aTextValue->textHeight,
aActualConversion );
if( FindNode( aNode, wxT( "strokeWidth" ) ) ) propValue = FindNodeGetContent( aNode, wxT( "fontWeight" ) );
SetWidth( FindNode( aNode, wxT( if( propValue != wxEmptyString )
"strokeWidth" ) )->GetNodeContent(), {
aDefaultMeasurementUnit, &aTextValue->textstrokeWidth, long fontWeight;
aActualConversion );
propValue.ToLong( &fontWeight );
aTextValue->isBold = ( fontWeight >= TRUETYPE_BOLD_MIN_WEIGHT );
}
}
XNODE* lNode;
lNode = FindNode( aNode, wxT( "fontHeight" ) );
if( lNode )
SetHeight( lNode->GetNodeContent(), aDefaultMeasurementUnit,
&aTextValue->textHeight, aActualConversion );
if( isTrueType )
{
aTextValue->textstrokeWidth = TRUETYPE_WIDTH_PER_HEIGHT * aTextValue->textHeight;
if( aTextValue->isBold )
aTextValue->textstrokeWidth *= TRUETYPE_BOLD_WIDTH_MUL;
}
else
{
lNode = FindNode( aNode, wxT( "strokeWidth" ) );
if( lNode )
SetWidth( lNode->GetNodeContent(), aDefaultMeasurementUnit,
&aTextValue->textstrokeWidth, aActualConversion );
} }
} }
} }
} }
void SetTextJustify( EDA_TEXT* aText, TTEXT_JUSTIFY aJustify ) void SetTextJustify( EDA_TEXT* aText, TTEXT_JUSTIFY aJustify )
{ {
switch( aJustify ) switch( aJustify )
@ -468,12 +502,14 @@ void SetTextJustify( EDA_TEXT* aText, TTEXT_JUSTIFY aJustify )
} }
} }
int CalculateTextLengthSize( TTEXTVALUE* aText ) int CalculateTextLengthSize( TTEXTVALUE* aText )
{ {
return KiROUND( (double) aText->text.Len() * return KiROUND( (double) aText->text.Len() *
(double) aText->textHeight * TEXT_WIDTH_TO_SIZE_AVERAGE ); (double) aText->textHeight * TEXT_WIDTH_TO_SIZE_AVERAGE );
} }
void CorrectTextPosition( TTEXTVALUE* aValue ) void CorrectTextPosition( TTEXTVALUE* aValue )
{ {
int cm = aValue->mirror ? -1 : 1; int cm = aValue->mirror ? -1 : 1;
@ -620,6 +656,8 @@ void InitTTextValue( TTEXTVALUE* aTextValue )
aTextValue->correctedPositionX = 0; aTextValue->correctedPositionX = 0;
aTextValue->correctedPositionY = 0; aTextValue->correctedPositionY = 0;
aTextValue->justify = LowerLeft; aTextValue->justify = LowerLeft;
aTextValue->isBold = false;
aTextValue->isItalic = false;
} }
} // namespace PCAD2KICAD } // namespace PCAD2KICAD

View File

@ -56,12 +56,14 @@ enum TTEXT_JUSTIFY
typedef struct _TTEXTVALUE typedef struct _TTEXTVALUE
{ {
wxString text; wxString text;
int textPositionX, textPositionY, int textPositionX, textPositionY,
textRotation, textHeight, textstrokeWidth; textRotation, textHeight, textstrokeWidth;
int textIsVisible, mirror, textUnit; int textIsVisible, mirror, textUnit;
int correctedPositionX, correctedPositionY; int correctedPositionX, correctedPositionY;
TTEXT_JUSTIFY justify; TTEXT_JUSTIFY justify;
bool isBold;
bool isItalic;
} TTEXTVALUE; } TTEXTVALUE;
extern wxString GetWord( wxString* aStr ); extern wxString GetWord( wxString* aStr );

View File

@ -535,6 +535,7 @@ void PCB_MODULE::AddToBoard()
r = m_name.textRotation - m_rotation; r = m_name.textRotation - m_rotation;
ref_text->SetTextAngle( r ); ref_text->SetTextAngle( r );
ref_text->SetItalic( m_name.isItalic );
ref_text->SetThickness( m_name.textstrokeWidth ); ref_text->SetThickness( m_name.textstrokeWidth );
ref_text->SetMirrored( m_name.mirror ); ref_text->SetMirrored( m_name.mirror );
@ -557,6 +558,7 @@ void PCB_MODULE::AddToBoard()
r = m_value.textRotation - m_rotation; r = m_value.textRotation - m_rotation;
val_text->SetTextAngle( r ); val_text->SetTextAngle( r );
val_text->SetItalic( m_value.isItalic );
val_text->SetThickness( m_value.textstrokeWidth ); val_text->SetThickness( m_value.textstrokeWidth );
val_text->SetMirrored( m_value.mirror ); val_text->SetMirrored( m_value.mirror );

View File

@ -112,6 +112,7 @@ void PCB_TEXT::AddToBoard()
SetTextSizeFromStrokeFontHeight( pcbtxt, m_name.textHeight ); SetTextSizeFromStrokeFontHeight( pcbtxt, m_name.textHeight );
pcbtxt->SetItalic( m_name.isItalic );
pcbtxt->SetThickness( m_name.textstrokeWidth ); pcbtxt->SetThickness( m_name.textstrokeWidth );
pcbtxt->SetTextAngle( m_name.textRotation ); pcbtxt->SetTextAngle( m_name.textRotation );