1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0028915: Configuration, Font_BRepFont - do not include FreeType headers within OCCT headers

This commit is contained in:
kgv 2017-07-17 11:12:48 +03:00
parent 365a640d07
commit f9801cf97a
7 changed files with 96 additions and 55 deletions

View File

@ -18,6 +18,7 @@
#include <BRepBuilderAPI_MakeFace.hxx> #include <BRepBuilderAPI_MakeFace.hxx>
#include <BRepBuilderAPI_MakeWire.hxx> #include <BRepBuilderAPI_MakeWire.hxx>
#include <BRepLib_MakeEdge.hxx> #include <BRepLib_MakeEdge.hxx>
#include <Font_FTLibrary.hxx>
#include <Font_TextFormatter.hxx> #include <Font_TextFormatter.hxx>
#include <GCE2d_MakeSegment.hxx> #include <GCE2d_MakeSegment.hxx>
#include <GC_MakeSegment.hxx> #include <GC_MakeSegment.hxx>
@ -45,9 +46,10 @@
#include <TopoDS_Compound.hxx> #include <TopoDS_Compound.hxx>
#include <TopoDS_Vertex.hxx> #include <TopoDS_Vertex.hxx>
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_OUTLINE_H #include FT_OUTLINE_H
IMPLEMENT_STANDARD_RTTIEXT(Font_BRepFont,Font_FTFont) IMPLEMENT_STANDARD_RTTIEXT(Font_BRepFont,Font_FTFont)
namespace namespace
@ -62,6 +64,13 @@ namespace
return theSize / Standard_Real(THE_FONT_SIZE) * 72.0 / Standard_Real(THE_RESOLUTION_DPI); return theSize / Standard_Real(THE_FONT_SIZE) * 72.0 / Standard_Real(THE_RESOLUTION_DPI);
} }
//! Auxiliary method to convert FT_Vector to gp_XY
static gp_XY readFTVec (const FT_Vector& theVec,
const Standard_Real theScaleUnits)
{
return gp_XY (theScaleUnits * Standard_Real(theVec.x) / 64.0, theScaleUnits * Standard_Real(theVec.y) / 64.0);
}
} }
// ======================================================================= // =======================================================================
@ -277,8 +286,8 @@ Standard_Boolean Font_BRepFont::renderGlyph (const Standard_Utf32Char theChar,
BRepBuilderAPI_MakeWire aWireMaker; BRepBuilderAPI_MakeWire aWireMaker;
gp_XY aPntPrev; gp_XY aPntPrev;
gp_XY aPntCurr = readFTVec (aPntList[aPntsNb - 1]); gp_XY aPntCurr = readFTVec (aPntList[aPntsNb - 1], myScaleUnits);
gp_XY aPntNext = readFTVec (aPntList[0]); gp_XY aPntNext = readFTVec (aPntList[0], myScaleUnits);
Standard_Integer aLinePnts = (FT_CURVE_TAG(aTags[aPntsNb - 1]) == FT_Curve_Tag_On) ? 1 : 0; Standard_Integer aLinePnts = (FT_CURVE_TAG(aTags[aPntsNb - 1]) == FT_Curve_Tag_On) ? 1 : 0;
gp_XY aPntLine1 = aPntCurr; gp_XY aPntLine1 = aPntCurr;
@ -289,7 +298,7 @@ Standard_Boolean Font_BRepFont::renderGlyph (const Standard_Utf32Char theChar,
{ {
aPntPrev = aPntCurr; aPntPrev = aPntCurr;
aPntCurr = aPntNext; aPntCurr = aPntNext;
aPntNext = readFTVec (aPntList[(aPntId + 1) % aPntsNb]); aPntNext = readFTVec (aPntList[(aPntId + 1) % aPntsNb], myScaleUnits);
// process tags // process tags
if (FT_CURVE_TAG(aTags[aPntId]) == FT_Curve_Tag_On) if (FT_CURVE_TAG(aTags[aPntId]) == FT_Curve_Tag_On)
@ -373,7 +382,7 @@ Standard_Boolean Font_BRepFont::renderGlyph (const Standard_Utf32Char theChar,
my4Poles.SetValue (1, aPntPrev); my4Poles.SetValue (1, aPntPrev);
my4Poles.SetValue (2, aPntCurr); my4Poles.SetValue (2, aPntCurr);
my4Poles.SetValue (3, aPntNext); my4Poles.SetValue (3, aPntNext);
my4Poles.SetValue (4, gp_Pnt2d(readFTVec (aPntList[(aPntId + 2) % aPntsNb]))); my4Poles.SetValue (4, gp_Pnt2d(readFTVec (aPntList[(aPntId + 2) % aPntsNb], myScaleUnits)));
Handle(Geom2d_BezierCurve) aBezier = new Geom2d_BezierCurve (my4Poles); Handle(Geom2d_BezierCurve) aBezier = new Geom2d_BezierCurve (my4Poles);
if (myIsCompositeCurve) if (myIsCompositeCurve)
{ {

View File

@ -183,12 +183,6 @@ private:
const GeomAbs_Shape theContinuity, const GeomAbs_Shape theContinuity,
Handle(Geom_Curve)& theCurve3d); Handle(Geom_Curve)& theCurve3d);
//! Auxiliary method to convert FT_Vector to gp_XY
gp_XY readFTVec (const FT_Vector& theVec) const
{
return gp_XY (myScaleUnits * Standard_Real(theVec.x) / 64.0, myScaleUnits * Standard_Real(theVec.y) / 64.0);
}
protected: //! @name Protected fields protected: //! @name Protected fields
NCollection_DataMap<Standard_Utf32Char, TopoDS_Shape> NCollection_DataMap<Standard_Utf32Char, TopoDS_Shape>

View File

@ -14,12 +14,13 @@
// commercial license or contractual agreement. // commercial license or contractual agreement.
#include <Font_FTFont.hxx> #include <Font_FTFont.hxx>
#include <Font_FTLibrary.hxx>
#include <Font_FontMgr.hxx> #include <Font_FontMgr.hxx>
#include <Font_TextFormatter.hxx> #include <Font_TextFormatter.hxx>
#include <TCollection_AsciiString.hxx> #include <ft2build.h>
#include <TCollection_HAsciiString.hxx> #include FT_FREETYPE_H
IMPLEMENT_STANDARD_RTTIEXT(Font_FTFont,Standard_Transient) IMPLEMENT_STANDARD_RTTIEXT(Font_FTFont,Standard_Transient)
@ -32,6 +33,7 @@ Font_FTFont::Font_FTFont (const Handle(Font_FTLibrary)& theFTLib)
myFTFace (NULL), myFTFace (NULL),
myPointSize (0U), myPointSize (0U),
myLoadFlags (FT_LOAD_NO_HINTING | FT_LOAD_TARGET_NORMAL), myLoadFlags (FT_LOAD_NO_HINTING | FT_LOAD_TARGET_NORMAL),
myKernAdvance(new FT_Vector()),
myUChar (0U) myUChar (0U)
{ {
if (myFTLib.IsNull()) if (myFTLib.IsNull())
@ -47,10 +49,11 @@ Font_FTFont::Font_FTFont (const Handle(Font_FTLibrary)& theFTLib)
Font_FTFont::~Font_FTFont() Font_FTFont::~Font_FTFont()
{ {
Release(); Release();
delete myKernAdvance;
} }
// ======================================================================= // =======================================================================
// function : Font_FTFont // function : Release
// purpose : // purpose :
// ======================================================================= // =======================================================================
void Font_FTFont::Release() void Font_FTFont::Release()
@ -134,7 +137,7 @@ bool Font_FTFont::loadGlyph (const Standard_Utf32Char theUChar)
myGlyphImg.Clear(); myGlyphImg.Clear();
myUChar = 0; myUChar = 0;
if (theUChar == 0 if (theUChar == 0
|| FT_Load_Char (myFTFace, theUChar, myLoadFlags) != 0 || FT_Load_Char (myFTFace, theUChar, FT_Int32(myLoadFlags)) != 0
|| myFTFace->glyph == NULL) || myFTFace->glyph == NULL)
{ {
return false; return false;
@ -153,7 +156,7 @@ bool Font_FTFont::RenderGlyph (const Standard_Utf32Char theUChar)
myGlyphImg.Clear(); myGlyphImg.Clear();
myUChar = 0; myUChar = 0;
if (theUChar == 0 if (theUChar == 0
|| FT_Load_Char (myFTFace, theUChar, myLoadFlags | FT_LOAD_RENDER) != 0 || FT_Load_Char (myFTFace, theUChar, FT_Int32(myLoadFlags | FT_LOAD_RENDER)) != 0
|| myFTFace->glyph == NULL || myFTFace->glyph == NULL
|| myFTFace->glyph->format != FT_GLYPH_FORMAT_BITMAP) || myFTFace->glyph->format != FT_GLYPH_FORMAT_BITMAP)
{ {
@ -200,6 +203,33 @@ unsigned int Font_FTFont::GlyphMaxSizeY() const
return (unsigned int)(aHeight + 0.5f); return (unsigned int)(aHeight + 0.5f);
} }
// =======================================================================
// function : Ascender
// purpose :
// =======================================================================
float Font_FTFont::Ascender() const
{
return float(myFTFace->ascender) * (float(myFTFace->size->metrics.y_ppem) / float(myFTFace->units_per_EM));
}
// =======================================================================
// function : Descender
// purpose :
// =======================================================================
float Font_FTFont::Descender() const
{
return float(myFTFace->descender) * (float(myFTFace->size->metrics.y_ppem) / float(myFTFace->units_per_EM));
}
// =======================================================================
// function : LineSpacing
// purpose :
// =======================================================================
float Font_FTFont::LineSpacing() const
{
return float(myFTFace->height) * (float(myFTFace->size->metrics.y_ppem) / float(myFTFace->units_per_EM));
}
// ======================================================================= // =======================================================================
// function : AdvanceX // function : AdvanceX
// purpose : // purpose :
@ -234,11 +264,11 @@ float Font_FTFont::AdvanceX (const Standard_Utf32Char theUCharNext)
} }
if (FT_HAS_KERNING (myFTFace) == 0 || theUCharNext == 0 if (FT_HAS_KERNING (myFTFace) == 0 || theUCharNext == 0
|| FT_Get_Kerning (myFTFace, myUChar, theUCharNext, FT_KERNING_UNFITTED, &myKernAdvance) != 0) || FT_Get_Kerning (myFTFace, myUChar, theUCharNext, FT_KERNING_UNFITTED, myKernAdvance) != 0)
{ {
return fromFTPoints<float> (myFTFace->glyph->advance.x); return fromFTPoints<float> (myFTFace->glyph->advance.x);
} }
return fromFTPoints<float> (myKernAdvance.x + myFTFace->glyph->advance.x); return fromFTPoints<float> (myKernAdvance->x + myFTFace->glyph->advance.x);
} }
// ======================================================================= // =======================================================================
@ -253,11 +283,33 @@ float Font_FTFont::AdvanceY (const Standard_Utf32Char theUCharNext)
} }
if (FT_HAS_KERNING (myFTFace) == 0 || theUCharNext == 0 if (FT_HAS_KERNING (myFTFace) == 0 || theUCharNext == 0
|| FT_Get_Kerning (myFTFace, myUChar, theUCharNext, FT_KERNING_UNFITTED, &myKernAdvance) != 0) || FT_Get_Kerning (myFTFace, myUChar, theUCharNext, FT_KERNING_UNFITTED, myKernAdvance) != 0)
{ {
return fromFTPoints<float> (myFTFace->glyph->advance.y); return fromFTPoints<float> (myFTFace->glyph->advance.y);
} }
return fromFTPoints<float> (myKernAdvance.y + myFTFace->glyph->advance.y); return fromFTPoints<float> (myKernAdvance->y + myFTFace->glyph->advance.y);
}
// =======================================================================
// function : GlyphsNumber
// purpose :
// =======================================================================
Standard_Integer Font_FTFont::GlyphsNumber() const
{
return myFTFace->num_glyphs;
}
// =======================================================================
// function : theRect
// purpose :
// =======================================================================
void Font_FTFont::GlyphRect (Font_Rect& theRect) const
{
const FT_Bitmap& aBitmap = myFTFace->glyph->bitmap;
theRect.Left = float(myFTFace->glyph->bitmap_left);
theRect.Top = float(myFTFace->glyph->bitmap_top);
theRect.Right = float(myFTFace->glyph->bitmap_left + (int )aBitmap.width);
theRect.Bottom = float(myFTFace->glyph->bitmap_top - (int )aBitmap.rows);
} }
// ======================================================================= // =======================================================================

View File

@ -17,13 +17,17 @@
#define _Font_FTFont_H__ #define _Font_FTFont_H__
#include <Font_FontAspect.hxx> #include <Font_FontAspect.hxx>
#include <Font_FTLibrary.hxx>
#include <Font_Rect.hxx> #include <Font_Rect.hxx>
#include <Graphic3d_HorizontalTextAlignment.hxx> #include <Graphic3d_HorizontalTextAlignment.hxx>
#include <Graphic3d_VerticalTextAlignment.hxx> #include <Graphic3d_VerticalTextAlignment.hxx>
#include <Image_PixMap.hxx> #include <Image_PixMap.hxx>
#include <NCollection_String.hxx> #include <NCollection_String.hxx>
// forward declarations to avoid including of FreeType headers
typedef struct FT_FaceRec_* FT_Face;
typedef struct FT_Vector_ FT_Vector;
class Font_FTLibrary;
//! Wrapper over FreeType font. //! Wrapper over FreeType font.
//! Notice that this class uses internal buffers for loaded glyphs //! Notice that this class uses internal buffers for loaded glyphs
//! and it is absolutely UNSAFE to load/read glyph from concurrent threads! //! and it is absolutely UNSAFE to load/read glyph from concurrent threads!
@ -32,7 +36,7 @@ class Font_FTFont : public Standard_Transient
public: public:
//! Create uninitialized instance. //! Create uninitialized instance.
Standard_EXPORT Font_FTFont (const Handle(Font_FTLibrary)& theFTLib = NULL); Standard_EXPORT Font_FTFont (const Handle(Font_FTLibrary)& theFTLib = Handle(Font_FTLibrary)());
//! Destructor. //! Destructor.
Standard_EXPORT virtual ~Font_FTFont(); Standard_EXPORT virtual ~Font_FTFont();
@ -82,22 +86,13 @@ public:
Standard_EXPORT unsigned int GlyphMaxSizeY() const; Standard_EXPORT unsigned int GlyphMaxSizeY() const;
//! @return vertical distance from the horizontal baseline to the highest character coordinate. //! @return vertical distance from the horizontal baseline to the highest character coordinate.
inline float Ascender() const Standard_EXPORT float Ascender() const;
{
return float(myFTFace->ascender) * (float(myFTFace->size->metrics.y_ppem) / float(myFTFace->units_per_EM));
}
//! @return vertical distance from the horizontal baseline to the lowest character coordinate. //! @return vertical distance from the horizontal baseline to the lowest character coordinate.
inline float Descender() const Standard_EXPORT float Descender() const;
{
return float(myFTFace->descender) * (float(myFTFace->size->metrics.y_ppem) / float(myFTFace->units_per_EM));
}
//! @return default line spacing (the baseline-to-baseline distance). //! @return default line spacing (the baseline-to-baseline distance).
inline float LineSpacing() const Standard_EXPORT float LineSpacing() const;
{
return float(myFTFace->height) * (float(myFTFace->size->metrics.y_ppem) / float(myFTFace->units_per_EM));
}
//! Configured point size //! Configured point size
unsigned int PointSize() const unsigned int PointSize() const
@ -124,20 +119,10 @@ public:
const Standard_Utf32Char theUCharNext); const Standard_Utf32Char theUCharNext);
//! @return glyphs number in this font. //! @return glyphs number in this font.
inline Standard_Integer GlyphsNumber() const Standard_EXPORT Standard_Integer GlyphsNumber() const;
{
return myFTFace->num_glyphs;
}
//! Retrieve glyph bitmap rectangle //! Retrieve glyph bitmap rectangle
inline void GlyphRect (Font_Rect& theRect) const Standard_EXPORT void GlyphRect (Font_Rect& theRect) const;
{
const FT_Bitmap& aBitmap = myFTFace->glyph->bitmap;
theRect.Left = float(myFTFace->glyph->bitmap_left);
theRect.Top = float(myFTFace->glyph->bitmap_top);
theRect.Right = float(myFTFace->glyph->bitmap_left + (int )aBitmap.width);
theRect.Bottom = float(myFTFace->glyph->bitmap_top - (int )aBitmap.rows);
}
//! Computes bounding box of the given text using plain-text formatter (Font_TextFormatter). //! Computes bounding box of the given text using plain-text formatter (Font_TextFormatter).
//! Note that bounding box takes into account the text alignment options. //! Note that bounding box takes into account the text alignment options.
@ -150,9 +135,9 @@ protected:
//! Convert value to 26.6 fixed-point format for FT library API. //! Convert value to 26.6 fixed-point format for FT library API.
template <typename theInput_t> template <typename theInput_t>
inline FT_F26Dot6 toFTPoints (const theInput_t thePointSize) const int32_t toFTPoints (const theInput_t thePointSize) const
{ {
return (FT_F26Dot6)thePointSize * 64; return (int32_t)thePointSize * 64;
} }
//! Convert value from 26.6 fixed-point format for FT library API. //! Convert value from 26.6 fixed-point format for FT library API.
@ -173,10 +158,10 @@ protected:
FT_Face myFTFace; //!< FT face object FT_Face myFTFace; //!< FT face object
NCollection_String myFontPath; //!< font path NCollection_String myFontPath; //!< font path
unsigned int myPointSize; //!< point size set by FT_Set_Char_Size unsigned int myPointSize; //!< point size set by FT_Set_Char_Size
FT_Int32 myLoadFlags; //!< default load flags int32_t myLoadFlags; //!< default load flags
Image_PixMap myGlyphImg; //!< cached glyph plane Image_PixMap myGlyphImg; //!< cached glyph plane
FT_Vector myKernAdvance; //!< buffer variable FT_Vector* myKernAdvance; //!< buffer variable
Standard_Utf32Char myUChar; //!< currently loaded unicode character Standard_Utf32Char myUChar; //!< currently loaded unicode character
public: public:

View File

@ -15,6 +15,8 @@
#include <Font_FTLibrary.hxx> #include <Font_FTLibrary.hxx>
#include <ft2build.h>
#include FT_FREETYPE_H
IMPLEMENT_STANDARD_RTTIEXT(Font_FTLibrary,Standard_Transient) IMPLEMENT_STANDARD_RTTIEXT(Font_FTLibrary,Standard_Transient)

View File

@ -19,9 +19,8 @@
#include <Standard_Type.hxx> #include <Standard_Type.hxx>
#include <Standard_Transient.hxx> #include <Standard_Transient.hxx>
// inclusion template for FreeType // forward declarations to avoid including of FreeType headers
#include <ft2build.h> typedef struct FT_LibraryRec_ *FT_Library;
#include FT_FREETYPE_H
//! Wrapper over FT_Library. Provides access to FreeType library. //! Wrapper over FT_Library. Provides access to FreeType library.
class Font_FTLibrary : public Standard_Transient class Font_FTLibrary : public Standard_Transient

View File

@ -658,7 +658,7 @@ Handle(OpenGl_Font) OpenGl_Text::FindFont (const Handle(OpenGl_Context)& theCtx,
Handle(Font_FTFont) aFontFt; Handle(Font_FTFont) aFontFt;
if (!aRequestedFont.IsNull()) if (!aRequestedFont.IsNull())
{ {
aFontFt = new Font_FTFont (NULL); aFontFt = new Font_FTFont (Handle(Font_FTLibrary)());
if (aFontFt->Init (aRequestedFont->FontPath()->ToCString(), theHeight, theResolution)) if (aFontFt->Init (aRequestedFont->FontPath()->ToCString(), theHeight, theResolution))
{ {