OpenTTD Source 20250808-master-gc8a07fe90b
SpriteFontCache Class Reference

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

#include <spritefontcache.h>

Inheritance diagram for SpriteFontCache:
FontCache

Public Member Functions

 SpriteFontCache (FontSize fs)
 Create a new sprite font cache.
 
void ClearFontCache () override
 Clear the font cache.
 
const SpriteGetGlyph (GlyphID key) override
 Get the glyph (sprite) of the given key.
 
uint GetGlyphWidth (GlyphID key) override
 Get the width of the glyph with the given key.
 
bool GetDrawGlyphShadow () override
 Do we need to draw a glyph shadow?
 
GlyphID MapCharToGlyph (char32_t key, bool allow_fallback=true) override
 Map a character into a glyph.
 
std::string GetFontName () override
 Get the name of this font.
 
bool IsBuiltInFont () override
 Is this a built-in sprite font?
 
- Public Member Functions inherited from FontCache
FontSize GetSize () const
 Get the FontSize of the font.
 
int GetHeight () const
 Get the height of the font.
 
int GetAscender () const
 Get the ascender value of the font.
 
int GetDescender () const
 Get the descender value of the font.
 
virtual int GetFontSize () const
 Get the nominal font size of the font.
 
virtual const void * GetOSHandle ()
 Get the native OS font handle, if there is one.
 
bool HasParent ()
 Check whether the font cache has a parent.
 

Additional Inherited Members

- Static Public Member Functions inherited from FontCache
static void InitializeFontCaches ()
 Initialise font caches with the base sprite font cache for all sizes.
 
static void UninitializeFontCaches ()
 Free everything allocated w.r.t.
 
static void LoadFontCaches (FontSizes fontsizes)
 (Re)initialize the font cache related things, i.e.
 
static void ClearFontCaches (FontSizes fontsizes)
 Clear cached information for the specified font caches.
 
static int GetDefaultFontHeight (FontSize fs)
 
static FontCacheGet (FontSize fs)
 Get the font cache of a given font size.
 
static std::string GetName (FontSize fs)
 Get the font name of a given font size.
 
- Static Public Attributes inherited from FontCache
static const int DEFAULT_FONT_HEIGHT [FS_END] = {10, 6, 18, 10}
 Default unscaled font heights.
 
static const int DEFAULT_FONT_ASCENDER [FS_END] = {8, 5, 15, 8}
 Default unscaled font ascenders.
 
- Protected Member Functions inherited from FontCache
 FontCache (FontSize fs)
 
- Static Protected Member Functions inherited from FontCache
static void Register (std::unique_ptr< FontCache > &&fc)
 Register a FontCache for its font size.
 
- Protected Attributes inherited from FontCache
std::unique_ptr< FontCacheparent
 The parent of this font cache.
 
const FontSize fs
 The size of the font.
 
int height = 0
 The height of the font.
 
int ascender = 0
 The ascender value of the font.
 
int descender = 0
 The descender value of the font.
 
- Static Protected Attributes inherited from FontCache
static std::array< std::unique_ptr< FontCache >, FS_END > caches {}
 All the font caches.
 

Detailed Description

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

Definition at line 16 of file spritefontcache.h.

Constructor & Destructor Documentation

◆ SpriteFontCache()

SpriteFontCache::SpriteFontCache ( FontSize  fs)

Create a new sprite font cache.

Parameters
fsThe font size to create the cache for.

Definition at line 115 of file spritefontcache.cpp.

References FontCache::ascender, FontCache::height, ScaleFontTrad(), and ScaleGUITrad().

Member Function Documentation

◆ ClearFontCache()

void SpriteFontCache::ClearFontCache ( )
overridevirtual

Clear the font cache.

Implements FontCache.

Definition at line 121 of file spritefontcache.cpp.

References FontCache::ascender, FontCache::fs, FontCache::height, Layouter::ResetFontCache(), ScaleFontTrad(), and ScaleGUITrad().

◆ GetDrawGlyphShadow()

bool SpriteFontCache::GetDrawGlyphShadow ( )
overridevirtual

Do we need to draw a glyph shadow?

Returns
True if it has to be done, otherwise false.

Implements FontCache.

Definition at line 150 of file spritefontcache.cpp.

◆ GetFontName()

std::string SpriteFontCache::GetFontName ( )
inlineoverridevirtual

Get the name of this font.

Returns
The name of the font.

Implements FontCache.

Definition at line 24 of file spritefontcache.h.

◆ GetGlyph()

const Sprite * SpriteFontCache::GetGlyph ( GlyphID  key)
overridevirtual

Get the glyph (sprite) of the given key.

Parameters
keyThe key to look up.
Returns
The sprite.

Implements FontCache.

Definition at line 128 of file spritefontcache.cpp.

References Font, FontCache::fs, and GetUnicodeGlyph().

◆ GetGlyphWidth()

uint SpriteFontCache::GetGlyphWidth ( GlyphID  key)
overridevirtual

Get the width of the glyph with the given key.

Parameters
keyThe key to look up.
Returns
The width.

Implements FontCache.

Definition at line 135 of file spritefontcache.cpp.

References Font, FontCache::fs, FS_NORMAL, GetUnicodeGlyph(), ScaleFontTrad(), and Sprite::width.

◆ IsBuiltInFont()

bool SpriteFontCache::IsBuiltInFont ( )
inlineoverridevirtual

Is this a built-in sprite font?

Implements FontCache.

Definition at line 25 of file spritefontcache.h.

◆ MapCharToGlyph()

GlyphID SpriteFontCache::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 142 of file spritefontcache.cpp.

References FontCache::fs, and GetUnicodeGlyph().


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