OpenTTD Source 20251213-master-g1091fa6071
spritefontcache.h
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#ifndef SPRITEFONTCACHE_H
11#define SPRITEFONTCACHE_H
12
13#include "../fontcache.h"
14
16class SpriteFontCache : public FontCache {
17public:
19 void ClearFontCache() override;
20 int GetGlyphYOffset() override;
21 const Sprite *GetGlyph(GlyphID key) override;
22 uint GetGlyphWidth(GlyphID key) override;
23 bool GetDrawGlyphShadow() override;
24 GlyphID MapCharToGlyph(char32_t key) override;
25 std::string GetFontName() override { return "sprite"; }
26 bool IsBuiltInFont() override { return true; }
27
28private:
29 void UpdateMetrics();
30 int scaled_ascender;
31};
32
33#endif /* SPRITEFONTCACHE_H */
Font cache for basic fonts.
Definition fontcache.h:32
const FontSize fs
The size of the font.
Definition fontcache.h:45
Font cache for fonts that are based on a freetype font.
uint GetGlyphWidth(GlyphID key) override
Get the width of the glyph with the given key.
GlyphID MapCharToGlyph(char32_t key) override
Map a character into a glyph.
bool GetDrawGlyphShadow() override
Do we need to draw a glyph shadow?
std::string GetFontName() override
Get the name of this font.
void ClearFontCache() override
Clear the font cache.
const Sprite * GetGlyph(GlyphID key) override
Get the glyph (sprite) of the given key.
bool IsBuiltInFont() override
Is this a built-in sprite font?
uint32_t GlyphID
Glyphs are characters from a font.
Definition fontcache.h:18
FontSize
Available font sizes.
Definition gfx_type.h:248
Data structure describing a sprite.