OpenTTD Source  20240919-master-gdf0233f4c2
FreeTypeFontCache Class Reference

Font cache for fonts that are based on a freetype font. More...

Inheritance diagram for FreeTypeFontCache:
TrueTypeFontCache FontCache

Public Member Functions

 FreeTypeFontCache (FontSize fs, FT_Face face, int pixels)
 Create a new FreeTypeFontCache. More...
 
 ~FreeTypeFontCache ()
 Free everything that was allocated for this font cache.
 
void ClearFontCache () override
 Reset cached glyphs.
 
GlyphID MapCharToGlyph (char32_t key, bool allow_fallback=true) override
 Map a character into a glyph. More...
 
std::string GetFontName () override
 Get the name of this font. More...
 
bool IsBuiltInFont () override
 Is this a built-in sprite font?
 
const void * GetOSHandle () override
 Get the native OS font handle, if there is one. More...
 
- Public Member Functions inherited from TrueTypeFontCache
 TrueTypeFontCache (FontSize fs, int pixels)
 Create a new TrueTypeFontCache. More...
 
virtual ~TrueTypeFontCache ()
 Free everything that was allocated for this font cache.
 
int GetFontSize () const override
 Get the nominal font size of the font. More...
 
void SetUnicodeGlyph (char32_t key, SpriteID sprite) override
 Map a SpriteID to the key. More...
 
void InitializeUnicodeGlyphMap () override
 Initialize the glyph map.
 
const SpriteGetGlyph (GlyphID key) override
 Get the glyph (sprite) of the given key. More...
 
void ClearFontCache () override
 Reset cached glyphs.
 
uint GetGlyphWidth (GlyphID key) override
 Get the width of the glyph with the given key. More...
 
bool GetDrawGlyphShadow () override
 Do we need to draw a glyph shadow? More...
 
bool IsBuiltInFont () override
 Is this a built-in sprite font?
 
- Public Member Functions inherited from FontCache
 FontCache (FontSize fs)
 Create a new font cache. More...
 
virtual ~FontCache ()
 Clean everything up.
 
FontSize GetSize () const
 Get the FontSize of the font. More...
 
int GetHeight () const
 Get the height of the font. More...
 
int GetAscender () const
 Get the ascender value of the font. More...
 
int GetDescender () const
 Get the descender value of the font. More...
 
bool HasParent ()
 Check whether the font cache has a parent.
 

Private Member Functions

void SetFontSize (int pixels)
 
const SpriteInternalGetGlyph (GlyphID key, bool aa) override
 

Private Attributes

FT_Face face
 The font face associated with this font.
 

Additional Inherited Members

- Static Public Member Functions inherited from FontCache
static void InitializeFontCaches ()
 
static int GetDefaultFontHeight (FontSize fs)
 
static FontCacheGet (FontSize fs)
 Get the font cache of a given font size. More...
 
static std::string GetName (FontSize fs)
 Get the font name of a given font size. More...
 
- Protected Member Functions inherited from TrueTypeFontCache
GlyphEntryGetGlyphPtr (GlyphID key)
 
GlyphEntrySetGlyphPtr (GlyphID key, GlyphEntry &&glyph)
 
- Protected Attributes inherited from TrueTypeFontCache
int req_size
 Requested font size.
 
int used_size
 Used font size.
 
std::unordered_map< GlyphID, GlyphEntryglyph_to_sprite_map {}
 
- Protected Attributes inherited from FontCache
FontCacheparent
 The parent of this font cache.
 
const FontSize fs
 The size of the font.
 
int height
 The height of the font.
 
int ascender
 The ascender value of the font.
 
int descender
 The descender value of the font.
 
- Static Protected Attributes inherited from TrueTypeFontCache
static constexpr int MAX_GLYPH_DIM = 256
 Maximum glyph dimensions.
 
static constexpr uint MAX_FONT_MIN_REC_SIZE = 20u
 Upper limit for the recommended font size in case a font file contains nonsensical values.
 
- Static Protected Attributes inherited from FontCache
static FontCachecaches [FS_END]
 All the font caches.
 

Detailed Description

Font cache for fonts that are based on a freetype font.

Definition at line 32 of file freetypefontcache.cpp.

Constructor & Destructor Documentation

◆ FreeTypeFontCache()

FreeTypeFontCache::FreeTypeFontCache ( FontSize  fs,
FT_Face  face,
int  pixels 
)

Create a new FreeTypeFontCache.

Parameters
fsThe font size that is going to be cached.
faceThe font that has to be loaded.
pixelsThe number of pixels this font should be high.

Definition at line 58 of file freetypefontcache.cpp.

References face.

Member Function Documentation

◆ GetFontName()

std::string FreeTypeFontCache::GetFontName ( )
inlineoverridevirtual

Get the name of this font.

Returns
The name of the font.

Implements FontCache.

Definition at line 44 of file freetypefontcache.cpp.

References face.

◆ GetOSHandle()

const void* FreeTypeFontCache::GetOSHandle ( )
inlineoverridevirtual

Get the native OS font handle, if there is one.

Returns
Opaque OS font handle.

Reimplemented from FontCache.

Definition at line 46 of file freetypefontcache.cpp.

References face.

◆ MapCharToGlyph()

GlyphID FreeTypeFontCache::MapCharToGlyph ( char32_t  key,
bool  fallback = true 
)
overridevirtual

Map a character into a glyph.

Parameters
keyThe character.
fallbackAllow fallback to the parent font.
Returns
The glyph ID used to draw the character.

Implements FontCache.

Definition at line 287 of file freetypefontcache.cpp.


The documentation for this class was generated from the following file: