OpenTTD Source 20251213-master-g1091fa6071
freetypefontcache.cpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
10#ifdef WITH_FREETYPE
11
12#include "../stdafx.h"
13
14#include "../debug.h"
15#include "../fontcache.h"
16#include "../blitter/factory.hpp"
17#include "../zoom_func.h"
18#include "../fileio_func.h"
19#include "../error_func.h"
20#include "../../os/unix/font_unix.h"
21#include "truetypefontcache.h"
22
23#include "../table/control_codes.h"
24
25#include <ft2build.h>
26#include FT_FREETYPE_H
27#include FT_GLYPH_H
28#include FT_TRUETYPE_TABLES_H
29
30#include "../safeguards.h"
31
34private:
35 FT_Face face;
36
37 void SetFontSize(int pixels);
38 const Sprite *InternalGetGlyph(GlyphID key, bool aa) override;
39
40public:
41 FreeTypeFontCache(FontSize fs, FT_Face face, int pixels);
43 void ClearFontCache() override;
44 GlyphID MapCharToGlyph(char32_t key) override;
45 std::string GetFontName() override { return fmt::format("{}, {}", face->family_name, face->style_name); }
46 bool IsBuiltInFont() override { return false; }
47 const void *GetOSHandle() override { return &face; }
48};
49
56FreeTypeFontCache::FreeTypeFontCache(FontSize fs, FT_Face face, int pixels) : TrueTypeFontCache(fs, pixels), face(face)
57{
58 assert(face != nullptr);
59
60 this->SetFontSize(pixels);
61}
62
63void FreeTypeFontCache::SetFontSize(int pixels)
64{
65 if (pixels == 0) {
66 /* Try to determine a good height based on the minimal height recommended by the font. */
67 int scaled_height = ScaleGUITrad(FontCache::GetDefaultFontHeight(this->fs));
68 pixels = scaled_height;
69
70 TT_Header *head = (TT_Header *)FT_Get_Sfnt_Table(this->face, ft_sfnt_head);
71 if (head != nullptr) {
72 /* Font height is minimum height plus the difference between the default
73 * height for this font size and the small size. */
74 int diff = scaled_height - ScaleGUITrad(FontCache::GetDefaultFontHeight(FS_SMALL));
75 /* Clamp() is not used as scaled_height could be greater than MAX_FONT_SIZE, which is not permitted in Clamp(). */
76 pixels = std::min(std::max(std::min<int>(head->Lowest_Rec_PPEM, MAX_FONT_MIN_REC_SIZE) + diff, scaled_height), MAX_FONT_SIZE);
77 }
78 } else {
79 pixels = ScaleGUITrad(pixels);
80 }
81 this->used_size = pixels;
82
83 FT_Error err = FT_Set_Pixel_Sizes(this->face, 0, pixels);
84 if (err != FT_Err_Ok) {
85
86 /* Find nearest size to that requested */
87 FT_Bitmap_Size *bs = this->face->available_sizes;
88 int i = this->face->num_fixed_sizes;
89 if (i > 0) { // In pathetic cases one might get no fixed sizes at all.
90 int n = bs->height;
91 FT_Int chosen = 0;
92 for (; --i; bs++) {
93 if (abs(pixels - bs->height) >= abs(pixels - n)) continue;
94 n = bs->height;
95 chosen = this->face->num_fixed_sizes - i;
96 }
97
98 /* Don't use FT_Set_Pixel_Sizes here - it might give us another
99 * error, even though the size is available (FS#5885). */
100 err = FT_Select_Size(this->face, chosen);
101 }
102 }
103
104 if (err == FT_Err_Ok) {
105 this->ascender = this->face->size->metrics.ascender >> 6;
106 this->descender = this->face->size->metrics.descender >> 6;
107 this->height = this->ascender - this->descender;
108 } else {
109 /* Both FT_Set_Pixel_Sizes and FT_Select_Size failed. */
110 Debug(fontcache, 0, "Font size selection failed. Using FontCache defaults.");
111 }
112}
113
118{
119 FT_Done_Face(this->face);
120 this->face = nullptr;
121 this->ClearFontCache();
122}
123
128{
129 /* Font scaling might have changed, determine font size anew if it was automatically selected. */
130 if (this->face != nullptr) this->SetFontSize(this->req_size);
131
133}
134
135
136const Sprite *FreeTypeFontCache::InternalGetGlyph(GlyphID key, bool aa)
137{
138 FT_GlyphSlot slot = this->face->glyph;
139
140 FT_Load_Glyph(this->face, key, aa ? FT_LOAD_TARGET_NORMAL : FT_LOAD_TARGET_MONO);
141 FT_Render_Glyph(this->face->glyph, aa ? FT_RENDER_MODE_NORMAL : FT_RENDER_MODE_MONO);
142
143 /* Despite requesting a normal glyph, FreeType may have returned a bitmap */
144 aa = (slot->bitmap.pixel_mode == FT_PIXEL_MODE_GRAY);
145
146 /* Add 1 scaled pixel for the shadow on the medium font. Our sprite must be at least 1x1 pixel */
147 uint shadow = (this->fs == FS_NORMAL) ? ScaleGUITrad(1) : 0;
148 uint width = std::max(1U, (uint)slot->bitmap.width + shadow);
149 uint height = std::max(1U, (uint)slot->bitmap.rows + shadow);
150
151 /* Limit glyph size to prevent overflows later on. */
152 if (width > MAX_GLYPH_DIM || height > MAX_GLYPH_DIM) UserError("Font glyph is too large");
153
154 /* FreeType has rendered the glyph, now we allocate a sprite and copy the image into it */
155 SpriteLoader::SpriteCollection spritecollection;
156 SpriteLoader::Sprite &sprite = spritecollection[ZoomLevel::Min];
157 sprite.AllocateData(ZoomLevel::Min, static_cast<size_t>(width) * height);
159 if (aa) sprite.colours.Set(SpriteComponent::Alpha);
160 sprite.width = width;
161 sprite.height = height;
162 sprite.x_offs = slot->bitmap_left;
163 sprite.y_offs = this->ascender - slot->bitmap_top;
164
165 /* Draw shadow for medium size */
166 if (this->fs == FS_NORMAL && !aa) {
167 for (uint y = 0; y < (uint)slot->bitmap.rows; y++) {
168 for (uint x = 0; x < (uint)slot->bitmap.width; x++) {
169 if (HasBit(slot->bitmap.buffer[(x / 8) + y * slot->bitmap.pitch], 7 - (x % 8))) {
170 sprite.data[shadow + x + (shadow + y) * sprite.width].m = SHADOW_COLOUR;
171 sprite.data[shadow + x + (shadow + y) * sprite.width].a = 0xFF;
172 }
173 }
174 }
175 }
176
177 for (uint y = 0; y < (uint)slot->bitmap.rows; y++) {
178 for (uint x = 0; x < (uint)slot->bitmap.width; x++) {
179 if (aa ? (slot->bitmap.buffer[x + y * slot->bitmap.pitch] > 0) : HasBit(slot->bitmap.buffer[(x / 8) + y * slot->bitmap.pitch], 7 - (x % 8))) {
180 sprite.data[x + y * sprite.width].m = FACE_COLOUR;
181 sprite.data[x + y * sprite.width].a = aa ? slot->bitmap.buffer[x + y * slot->bitmap.pitch] : 0xFF;
182 }
183 }
184 }
185
186 UniquePtrSpriteAllocator allocator;
187 BlitterFactory::GetCurrentBlitter()->Encode(SpriteType::Font, spritecollection, allocator);
188
189 GlyphEntry new_glyph;
190 new_glyph.data = std::move(allocator.data);
191 new_glyph.width = slot->advance.x >> 6;
192
193 return this->SetGlyphPtr(key, std::move(new_glyph)).GetSprite();
194}
195
196
198{
199 assert(IsPrintable(key));
200
201 return FT_Get_Char_Index(this->face, key);
202}
203
204FT_Library _ft_library = nullptr;
205
207public:
208 FreeTypeFontCacheFactory() : FontCacheFactory("freetype", "FreeType font provider") {}
209
211 {
212 FT_Done_FreeType(_ft_library);
213 _ft_library = nullptr;
214 }
215
223 std::unique_ptr<FontCache> LoadFont(FontSize fs, FontType fonttype, bool search, const std::string &font, std::span<const std::byte> os_handle) const override
224 {
225 if (fonttype != FontType::TrueType) return nullptr;
226
227 if (_ft_library == nullptr) {
228 if (FT_Init_FreeType(&_ft_library) != FT_Err_Ok) {
229 ShowInfo("Unable to initialize FreeType, using sprite fonts instead");
230 return nullptr;
231 }
232
233 Debug(fontcache, 2, "Initialized");
234 }
235
236 FT_Face face = nullptr;
237
238 /* If font is an absolute path to a ttf, try loading that first. */
239 int32_t index = 0;
240 if (os_handle.size() == sizeof(index)) {
241 index = *reinterpret_cast<const int32_t *>(os_handle.data());
242 }
243 FT_Error error = FT_New_Face(_ft_library, font.c_str(), index, &face);
244
245 if (error != FT_Err_Ok) {
246 /* Check if font is a relative filename in one of our search-paths. */
247 std::string full_font = FioFindFullPath(BASE_DIR, font);
248 if (!full_font.empty()) {
249 error = FT_New_Face(_ft_library, full_font.c_str(), 0, &face);
250 }
251 }
252
253#ifdef WITH_FONTCONFIG
254 /* If allowed to search, try loading based on font face name (OS-wide fonts). */
255 if (error != FT_Err_Ok && search) error = GetFontByFaceName(font, &face);
256#endif /* WITH_FONTCONFIG */
257
258 if (error != FT_Err_Ok) {
259 FT_Done_Face(face);
260 return nullptr;
261 }
262
263 return LoadFont(fs, face, font, GetFontCacheFontSize(fs));
264 }
265
266 bool FindFallbackFont(const std::string &language_isocode, FontSizes fontsizes, MissingGlyphSearcher *callback) const override
267 {
268#ifdef WITH_FONTCONFIG
269 if (FontConfigFindFallbackFont(language_isocode, fontsizes, callback)) return true;
270#endif /* WITH_FONTCONFIG */
271
272 return false;
273 }
274
275private:
276 static std::unique_ptr<FontCache> LoadFont(FontSize fs, FT_Face face, std::string_view font_name, uint size)
277 {
278 Debug(fontcache, 2, "Requested '{}', using '{} {}'", font_name, face->family_name, face->style_name);
279
280 /* Attempt to select the unicode character map */
281 FT_Error error = FT_Select_Charmap(face, ft_encoding_unicode);
282 if (error == FT_Err_Invalid_CharMap_Handle) {
283 /* Try to pick a different character map instead. We default to
284 * the first map, but platform_id 0 encoding_id 0 should also
285 * be unicode (strange system...) */
286 FT_CharMap found = face->charmaps[0];
287
288 for (int i = 0; i < face->num_charmaps; ++i) {
289 FT_CharMap charmap = face->charmaps[i];
290 if (charmap->platform_id == 0 && charmap->encoding_id == 0) {
291 found = charmap;
292 }
293 }
294
295 if (found != nullptr) {
296 error = FT_Set_Charmap(face, found);
297 }
298 }
299
300 if (error != FT_Err_Ok) {
301 FT_Done_Face(face);
302
303 ShowInfo("Unable to use '{}' for {} font, FreeType reported error 0x{:X}", font_name, FontSizeToName(fs), error);
304 return nullptr;
305 }
306
307 return std::make_unique<FreeTypeFontCache>(fs, face, size);
308 }
309
310private:
311 static FreeTypeFontCacheFactory instance;
312};
313
314/* static */ FreeTypeFontCacheFactory FreeTypeFontCacheFactory::instance;
315
316#endif /* WITH_FREETYPE */
constexpr bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
constexpr Timpl & Set()
Set all bits.
static Blitter * GetCurrentBlitter()
Get the current active blitter (always set by calling SelectBlitter).
Definition factory.hpp:136
Factory for FontCaches.
Definition fontcache.h:304
int height
The height of the font.
Definition fontcache.h:48
const FontSize fs
The size of the font.
Definition fontcache.h:45
int descender
The descender value of the font.
Definition fontcache.h:50
int ascender
The ascender value of the font.
Definition fontcache.h:49
std::unique_ptr< FontCache > LoadFont(FontSize fs, FontType fonttype, bool search, const std::string &font, std::span< const std::byte > os_handle) const override
Loads the freetype font.
Font cache for fonts that are based on a freetype font.
const void * GetOSHandle() override
Get the native OS font handle, if there is one.
FreeTypeFontCache(FontSize fs, FT_Face face, int pixels)
Create a new FreeTypeFontCache.
~FreeTypeFontCache()
Free everything that was allocated for this font cache.
void ClearFontCache() override
Reset cached glyphs.
FT_Face face
The font face associated with this font.
std::string GetFontName() override
Get the name of this font.
bool IsBuiltInFont() override
Is this a built-in sprite font?
GlyphID MapCharToGlyph(char32_t key) override
Map a character into a glyph.
A searcher for missing glyphs.
Map zoom level to data.
virtual Sprite * Encode(SpriteType sprite_type, const SpriteLoader::SpriteCollection &sprite, SpriteAllocator &allocator)=0
Convert a sprite from the loader to our own format.
Font cache for fonts that are based on a TrueType font.
static constexpr int MAX_GLYPH_DIM
Maximum glyph dimensions.
int used_size
Used font size.
int req_size
Requested font size.
void ClearFontCache() override
Reset cached glyphs.
static constexpr uint MAX_FONT_MIN_REC_SIZE
Upper limit for the recommended font size in case a font file contains nonsensical values.
SpriteAllocator that allocates memory via a unique_ptr array.
Definition spritecache.h:20
#define Debug(category, level, format_string,...)
Output a line of debugging information.
Definition debug.h:37
std::string FioFindFullPath(Subdirectory subdir, std::string_view filename)
Find a path to the filename in one of the search directories.
Definition fileio.cpp:144
@ BASE_DIR
Base directory for all subdirectories.
Definition fileio_type.h:89
FT_Error GetFontByFaceName(std::string_view font_name, FT_Face *face)
Load a freetype font face with the given font name.
Definition font_unix.cpp:70
uint GetFontCacheFontSize(FontSize fs)
Get the scalable font size to use for a FontSize.
FontType
Different types of font that can be loaded.
Definition fontcache.h:298
@ TrueType
Scalable TrueType fonts.
uint32_t GlyphID
Glyphs are characters from a font.
Definition fontcache.h:18
@ Font
A sprite used for fonts.
FontSize
Available font sizes.
Definition gfx_type.h:248
@ FS_SMALL
Index of the small font in the font tables.
Definition gfx_type.h:250
@ FS_NORMAL
Index of the normal font in the font tables.
Definition gfx_type.h:249
constexpr T abs(const T a)
Returns the absolute value of (scalar) variable.
Definition math_func.hpp:23
@ Palette
Sprite has palette data.
@ Alpha
Sprite has alpha.
uint8_t m
Remap-channel.
uint8_t a
Alpha-channel.
Structure for passing information from the sprite loader to the blitter.
SpriteComponents colours
The colour components of the sprite with useful information.
void AllocateData(ZoomLevel zoom, size_t size)
Allocate the sprite data of this sprite.
uint16_t width
Width of the sprite.
int16_t x_offs
The x-offset of where the sprite will be drawn.
SpriteLoader::CommonPixel * data
The sprite itself.
uint16_t height
Height of the sprite.
int16_t y_offs
The y-offset of where the sprite will be drawn.
Data structure describing a sprite.
std::byte data[]
Sprite data.
Common base definition for font file based font caches.
static const int MAX_FONT_SIZE
Maximum font size.
static RectPadding ScaleGUITrad(const RectPadding &r)
Scale a RectPadding to GUI zoom level.
Definition widget.cpp:49
@ Min
Minimum zoom level.