OpenTTD Source 20260218-master-g2123fca5ea
FontCacheFactory Class Referenceabstract

Factory for FontCaches. More...

#include <fontcache.h>

Inheritance diagram for FontCacheFactory:
BaseProvider< FontCacheFactory > CoreTextFontCacheFactory FreeTypeFontCacheFactory SpriteFontCacheFactory Win32FontCacheFactory

Public Member Functions

 FontCacheFactory (std::string_view name, std::string_view description)
virtual std::unique_ptr< FontCacheLoadFont (FontSize fs, FontType fonttype) const =0
 Try loading a font with this factory.
virtual bool FindFallbackFont (struct FontCacheSettings *settings, const std::string &language_isocode, class MissingGlyphSearcher *callback) const =0
 We would like to have a fallback font as the current one doesn't contain all characters we need.
Public Member Functions inherited from BaseProvider< FontCacheFactory >
constexpr BaseProvider (std::string_view name, std::string_view description)
std::string_view GetName () const
std::string_view GetDescription () const

Additional Inherited Members

Protected Attributes inherited from BaseProvider< FontCacheFactory >
const std::string_view name
const std::string_view description

Detailed Description

Factory for FontCaches.

Definition at line 232 of file fontcache.h.

Constructor & Destructor Documentation

◆ FontCacheFactory()

FontCacheFactory::FontCacheFactory ( std::string_view name,
std::string_view description )
inline

Definition at line 234 of file fontcache.h.

◆ ~FontCacheFactory()

FontCacheFactory::~FontCacheFactory ( )
inlineoverride

Definition at line 239 of file fontcache.h.

Member Function Documentation

◆ FindFallbackFont()

virtual bool FontCacheFactory::FindFallbackFont ( struct FontCacheSettings * settings,
const std::string & language_isocode,
class MissingGlyphSearcher * callback ) const
pure virtual

We would like to have a fallback font as the current one doesn't contain all characters we need.

This function must set all fonts of settings.

Parameters
settingsThe settings to overwrite the fontname of.
language_isocodeThe language, e.g. en_GB.
callbackThe function to call to check for missing glyphs.
Returns
true if a font has been set, false otherwise.

Implemented in CoreTextFontCacheFactory, FreeTypeFontCacheFactory, SpriteFontCacheFactory, and Win32FontCacheFactory.

References settings.

◆ LoadFont()

virtual std::unique_ptr< FontCache > FontCacheFactory::LoadFont ( FontSize fs,
FontType fonttype ) const
pure virtual

Try loading a font with this factory.

Parameters
fsFont size to load.
fonttypeFont type requested.
Returns
FontCache of the font if loaded, or nullptr.

Implemented in CoreTextFontCacheFactory, FreeTypeFontCacheFactory, SpriteFontCacheFactory, and Win32FontCacheFactory.


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