26#include <harfbuzz/hb.h>
27#include <harfbuzz/hb-ft.h>
34#include FT_SFNT_NAMES_H
35#include FT_TRUETYPE_TABLES_H
52 m_forDrawingSheet( false )
63 TT_OS2* os2 =
reinterpret_cast<TT_OS2*
>( FT_Get_Sfnt_Table(
m_face, FT_SFNT_OS2 ) );
69 if( os2->fsType == FT_FSTYPE_INSTALLABLE_EMBEDDING )
72 if( os2->fsType & FT_FSTYPE_BITMAP_EMBEDDING_ONLY )
75 if( os2->fsType & FT_FSTYPE_EDITABLE_EMBEDDING )
78 if( os2->fsType & FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING )
87 const std::vector<wxString>* aEmbeddedFiles,
88 bool aForDrawingSheet )
90 std::unique_ptr<OUTLINE_FONT> font = std::make_unique<OUTLINE_FONT>();
97 fc::FF_RESULT retval =
Fontconfig()->FindFont( aFontName, fontFile, faceIndex, aBold, aItalic,
100 if( retval == fc::FF_RESULT::FF_ERROR )
103 if( retval == fc::FF_RESULT::FF_MISSING_BOLD || retval == fc::FF_RESULT::FF_MISSING_BOLD_ITAL )
106 if( retval == fc::FF_RESULT::FF_MISSING_ITAL || retval == fc::FF_RESULT::FF_MISSING_BOLD_ITAL )
109 if( font->loadFace( fontFile, faceIndex ) != 0 )
112 font->m_fontName = aFontName;
113 font->m_fontFileName = fontFile;
114 font->m_forDrawingSheet = aForDrawingSheet;
116 return font.release();
124 FT_Error e = FT_New_Face(
m_freeType, aFontFileName.mb_str( wxConvUTF8 ), aFaceIndex, &
m_face );
128 FT_Select_Charmap(
m_face, FT_Encoding::FT_ENCODING_UNICODE );
148 double glyphToFontHeight = 1.0;
153 return aFontMetrics.
GetInterline( aGlyphHeight * glyphToFontHeight );
161 case FT_ORIENTATION_TRUETYPE:
return c.
m_Winding == 1;
162 case FT_ORIENTATION_POSTSCRIPT:
return c.
m_Winding == -1;
163 default:
return false;
181 for(
const std::unique_ptr<KIFONT::GLYPH>& glyph : aGlyphs )
183 BOX2D bbox = glyph->BoundingBox();
186 if( minX > bbox.
GetX() )
189 if( minY > bbox.
GetY() )
207 const wxString& aText,
const VECTOR2I& aPosition,
209 const METRICS& aFontMetrics )
const
211 wxArrayString strings;
212 std::vector<VECTOR2I> positions;
213 std::vector<VECTOR2I> extents;
217 textStyle |= TEXT_STYLE::ITALIC;
219 getLinePositions( aText, aPosition, strings, positions, extents, aAttrs, aFontMetrics );
221 for(
size_t i = 0; i < strings.GetCount(); i++ )
223 (void)
drawMarkup(
nullptr, aGlyphs, strings.Item( i ), positions[i], aAttrs.
m_Size,
230 const wxString& aText,
const VECTOR2I& aSize,
232 bool aMirror,
const VECTOR2I& aOrigin,
237 constexpr double TAB_WIDTH = 4 * 0.6;
245 aBBox->
SetEnd( aPosition );
248 for( wxUniChar c : aText )
253 if( !textRun.IsEmpty() )
255 position =
getTextAsGlyphs( aBBox, aGlyphs, textRun, aSize, position, aAngle,
256 aMirror, aOrigin, aTextStyle );
260 int tabWidth =
KiROUND( aSize.
x * TAB_WIDTH );
261 int currentIntrusion = ( position.
x - aOrigin.
x ) % tabWidth;
263 position.
x += tabWidth - currentIntrusion;
271 if( !textRun.IsEmpty() )
273 position =
getTextAsGlyphs( aBBox, aGlyphs, textRun, aSize, position, aAngle, aMirror,
274 aOrigin, aTextStyle );
282 const wxString& aText,
const VECTOR2I& aSize,
284 bool aMirror,
const VECTOR2I& aOrigin,
290 aOrigin, aTextStyle );
306 return face == rhs.
face
313 && angle == rhs.
angle;
324 return hash<const void*>()( k.
face )
326 ^ hash<double>()( k.
scaler )
338 std::vector<std::unique_ptr<GLYPH>>* aGlyphs,
339 const wxString& aText,
const VECTOR2I& aSize,
341 bool aMirror,
const VECTOR2I& aOrigin,
356 hb_buffer_t* buf = hb_buffer_create();
357 hb_buffer_add_utf8( buf,
UTF8( aText ).c_str(), -1, 0, -1 );
358 hb_buffer_guess_segment_properties( buf );
361 hb_font_t* referencedFont = hb_ft_font_create_referenced( face );
362 hb_ft_font_set_funcs( referencedFont );
363 hb_shape( referencedFont, buf,
nullptr, 0 );
365 unsigned int glyphCount;
366 hb_glyph_info_t* glyphInfo = hb_buffer_get_glyph_infos( buf, &glyphCount );
367 hb_glyph_position_t* glyphPos = hb_buffer_get_glyph_positions( buf, &glyphCount );
375 aGlyphs->reserve( glyphCount );
379 static std::unordered_map<GLYPH_CACHE_KEY, GLYPH_DATA> s_glyphCache;
381 for(
unsigned int i = 0; i < glyphCount; i++ )
384 if( i > 0 && glyphInfo[i].cluster == glyphInfo[i-1].cluster )
399 const float angle = (float)( -M_PI * 12.0f ) / 180.0f;
400 matrix.xx = (FT_Fixed) ( cos( angle ) * 0x10000L );
401 matrix.xy = (FT_Fixed) ( -sin( angle ) * 0x10000L );
402 matrix.yx = (FT_Fixed) ( 0 * 0x10000L );
403 matrix.yy = (FT_Fixed) ( 1 * 0x10000L );
405 FT_Set_Transform( face, &matrix,
nullptr );
408 FT_Load_Glyph( face, glyphInfo[i].codepoint, FT_LOAD_NO_BITMAP );
411 FT_Outline_Embolden( &face->glyph->outline, 1 << 6 );
418 BOX2D tofuBox( { scaler * 0.03, 0.0 },
419 { hb_advance - scaler * 0.02, scaler * 0.72 } );
426 outline.
m_Points.push_back( tofuBox.GetPosition() );
427 outline.
m_Points.push_back( { tofuBox.GetSize().x, tofuBox.GetPosition().y } );
428 outline.
m_Points.push_back( tofuBox.GetSize() );
429 outline.
m_Points.push_back( { tofuBox.GetPosition().x, tofuBox.GetSize().y } );
433 tofuBox.Move( { scaler * 0.06, scaler * 0.06 } );
434 tofuBox.SetSize( { tofuBox.GetWidth() - scaler * 0.06,
435 tofuBox.GetHeight() - scaler * 0.06 } );
438 hole.
m_Points.push_back( tofuBox.GetPosition() );
439 hole.
m_Points.push_back( { tofuBox.GetSize().x, tofuBox.GetPosition().y } );
440 hole.
m_Points.push_back( tofuBox.GetSize() );
441 hole.
m_Points.push_back( { tofuBox.GetPosition().x, tofuBox.GetSize().y } );
446 std::unique_ptr<OUTLINE_GLYPH> glyph = std::make_unique<OUTLINE_GLYPH>();
447 std::vector<SHAPE_LINE_CHAIN> holes;
451 std::vector<VECTOR2D> points = c.
m_Points;
469 pt.
x = aOrigin.
x - ( pt.
x - aOrigin.
x );
480 holes.push_back( std::move( shape ) );
482 glyph->AddOutline( std::move( shape ) );
487 bool added_hole =
false;
489 if( hole.PointCount() )
491 for(
int ii = 0; ii < glyph->OutlineCount(); ++ii )
493 if( glyph->Outline( ii ).PointInside( hole.GetPoint( 0 ) ) )
495 glyph->AddHole( std::move( hole ), ii );
504 glyph->AddOutline( std::move( hole ) );
510 glyph->CacheTriangulation(
false,
false );
518 aGlyphs->push_back( std::move( glyph ) );
521 hb_glyph_position_t& pos = glyphPos[i];
528 VECTOR2I extents(
cursor.x * scaleFactor.
x, ( ascender + descender ) * abs( scaleFactor.
y ) );
530 hb_buffer_destroy( buf );
531 hb_font_destroy( referencedFont );
536 aBBox->
Merge( aPosition + extents );
538 return VECTOR2I( aPosition.
x + cursorDisplacement.
x, aPosition.
y + cursorDisplacement.
y );
542#undef OUTLINEFONT_RENDER_AS_PIXELS
543#ifdef OUTLINEFONT_RENDER_AS_PIXELS
547void OUTLINE_FONT::RenderToOpenGLCanvas(
KIGFX::OPENGL_GAL& aGal,
const wxString& aString,
549 const EDA_ANGLE& aOrientation,
bool aIsMirrored )
const
551 hb_buffer_t* buf = hb_buffer_create();
552 hb_buffer_add_utf8( buf,
UTF8( aString ).c_str(), -1, 0, -1 );
553 hb_buffer_guess_segment_properties( buf );
555 unsigned int glyphCount;
556 hb_glyph_info_t* glyphInfo = hb_buffer_get_glyph_infos( buf, &glyphCount );
557 hb_glyph_position_t* glyphPos = hb_buffer_get_glyph_positions( buf, &glyphCount );
561 hb_font_t* referencedFont = hb_ft_font_create_referenced(
m_face );
563 hb_ft_font_set_funcs( referencedFont );
564 hb_shape( referencedFont, buf,
nullptr, 0 );
566 const double mirror_factor = ( aIsMirrored ? 1 : -1 );
567 const double x_scaleFactor = mirror_factor * aGlyphSize.
x / mScaler;
568 const double y_scaleFactor = aGlyphSize.
y / mScaler;
570 hb_position_t cursor_x = 0;
571 hb_position_t cursor_y = 0;
573 for(
unsigned int i = 0; i < glyphCount; i++ )
575 hb_glyph_position_t& pos = glyphPos[i];
576 int codepoint = glyphInfo[i].codepoint;
578 FT_Error e = FT_Load_Glyph(
m_face, codepoint, FT_LOAD_DEFAULT );
582 e = FT_Get_Glyph(
m_face->glyph, &glyph );
585 wxPoint pt( aPosition );
586 pt.x += ( cursor_x >> 6 ) * x_scaleFactor;
587 pt.y += ( cursor_y >> 6 ) * y_scaleFactor;
589 cursor_x += pos.x_advance;
590 cursor_y += pos.y_advance;
593 hb_buffer_destroy( buf );
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
constexpr void SetOrigin(const Vec &pos)
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
constexpr coord_type GetY() const
constexpr coord_type GetX() 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 GetRight() const
constexpr void SetEnd(coord_type x, coord_type y)
constexpr coord_type GetBottom() const
int AsTenthsOfADegree() const
void getLinePositions(const wxString &aText, const VECTOR2I &aPosition, wxArrayString &aTextLines, std::vector< VECTOR2I > &aPositions, std::vector< VECTOR2I > &aExtents, const TEXT_ATTRIBUTES &aAttrs, const METRICS &aFontMetrics) const
VECTOR2I drawMarkup(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aPosition, const VECTOR2I &aSize, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle, const METRICS &aFontMetrics) const
double GetInterline(double aFontHeight) const
bool OutlineToSegments(std::vector< CONTOUR > *aContours)
Class OUTLINE_FONT implements outline font drawing.
VECTOR2I getTextAsGlyphsUnlocked(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const
static std::mutex m_freeTypeMutex
Mutex for freetype access, FT_Library and FT_Face are not thread safe.
double GetInterline(double aGlyphHeight, const METRICS &aFontMetrics) const override
Compute the distance (interline) between 2 lines of text (for multiline texts).
static FT_Library m_freeType
BOX2I getBoundingBox(const std::vector< std::unique_ptr< GLYPH > > &aGlyphs) const
FT_Error loadFace(const wxString &aFontFileName, int aFaceIndex)
static constexpr double m_superscriptVerticalOffset
VECTOR2I getTextAsGlyphs(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const
VECTOR2I GetTextAsGlyphs(BOX2I *aBoundingBox, std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aSize, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle, bool aMirror, const VECTOR2I &aOrigin, TEXT_STYLE_FLAGS aTextStyle) const override
Convert text string to an array of GLYPHs.
const FT_Face & GetFace() const
void GetLinesAsGlyphs(std::vector< std::unique_ptr< GLYPH > > *aGlyphs, const wxString &aText, const VECTOR2I &aPosition, const TEXT_ATTRIBUTES &aAttrs, const METRICS &aFontMetrics) const
static OUTLINE_FONT * LoadFont(const wxString &aFontFileName, bool aBold, bool aItalic, const std::vector< wxString > *aEmbeddedFiles, bool aForDrawingSheet)
Load an outline font.
static constexpr double m_outlineFontSizeCompensation
EMBEDDING_PERMISSION GetEmbeddingPermission() const
int subscriptSize() const
static constexpr double m_subscriptVerticalOffset
OpenGL implementation of the Graphics Abstraction Layer.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
void SetClosed(bool aClosed)
Mark the line chain as closed (i.e.
void ReservePoints(size_t aSize)
Allocate a number of points all at once (for performance).
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
unsigned int TEXT_STYLE_FLAGS
bool IsSuperscript(TEXT_STYLE_FLAGS aFlags)
bool IsSubscript(TEXT_STYLE_FLAGS aFlags)
FONTCONFIG * Fontconfig()
constexpr int GLYPH_RESOLUTION
constexpr double GLYPH_SIZE_SCALER
static bool contourIsHole(const CONTOUR &c)
static bool contourIsFilled(const CONTOUR &c)
bool operator==(const GLYPH_CACHE_KEY &rhs) const
std::vector< VECTOR2D > m_Points
FT_Orientation m_Orientation
std::vector< CONTOUR > m_Contours
std::vector< std::unique_ptr< SHAPE_POLY_SET::TRIANGULATED_POLYGON > > m_TriangulationData
std::size_t operator()(const GLYPH_CACHE_KEY &k) const
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.
VECTOR2< int32_t > VECTOR2I