2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file fontcache.h Functions to read fonts from files and cache them. */
|
|
|
|
|
2006-11-16 22:05:33 +00:00
|
|
|
#ifndef FONTCACHE_H
|
|
|
|
#define FONTCACHE_H
|
|
|
|
|
2013-06-25 20:20:15 +00:00
|
|
|
#include "string_type.h"
|
2009-10-04 18:13:56 +00:00
|
|
|
#include "spritecache.h"
|
2007-12-22 23:30:28 +00:00
|
|
|
|
2013-06-25 20:20:15 +00:00
|
|
|
/** Glyphs are characters from a font. */
|
|
|
|
typedef uint32 GlyphID;
|
|
|
|
static const GlyphID SPRITE_GLYPH = 1U << 30;
|
|
|
|
|
2016-01-01 21:47:34 +00:00
|
|
|
extern int font_height_cache[FS_END]; ///< Cache of font heights
|
|
|
|
|
2016-01-03 14:52:30 +00:00
|
|
|
void UpdateFontHeightCache();
|
|
|
|
|
2013-06-23 15:24:36 +00:00
|
|
|
/** Font cache for basic fonts. */
|
|
|
|
class FontCache {
|
|
|
|
private:
|
|
|
|
static FontCache *caches[FS_END]; ///< All the font caches.
|
|
|
|
protected:
|
|
|
|
FontCache *parent; ///< The parent of this font cache.
|
|
|
|
const FontSize fs; ///< The size of the font.
|
2013-06-25 20:21:21 +00:00
|
|
|
int height; ///< The height of the font.
|
|
|
|
int ascender; ///< The ascender value of the font.
|
|
|
|
int descender; ///< The descender value of the font.
|
|
|
|
int units_per_em; ///< The units per EM value of the font.
|
2021-02-13 16:34:22 +00:00
|
|
|
|
2013-06-23 15:24:36 +00:00
|
|
|
public:
|
|
|
|
FontCache(FontSize fs);
|
|
|
|
virtual ~FontCache();
|
|
|
|
|
2022-12-17 23:34:19 +00:00
|
|
|
static int GetDefaultFontHeight(FontSize fs);
|
|
|
|
|
2013-06-25 20:21:21 +00:00
|
|
|
/**
|
|
|
|
* Get the FontSize of the font.
|
|
|
|
* @return The FontSize.
|
|
|
|
*/
|
|
|
|
inline FontSize GetSize() const { return this->fs; }
|
|
|
|
|
2013-06-23 15:32:09 +00:00
|
|
|
/**
|
|
|
|
* Get the height of the font.
|
|
|
|
* @return The height of the font.
|
|
|
|
*/
|
2021-05-01 07:54:05 +00:00
|
|
|
inline int GetHeight() const { return this->height; }
|
2013-06-25 20:21:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the ascender value of the font.
|
|
|
|
* @return The ascender value of the font.
|
|
|
|
*/
|
|
|
|
inline int GetAscender() const { return this->ascender; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the descender value of the font.
|
|
|
|
* @return The descender value of the font.
|
|
|
|
*/
|
|
|
|
inline int GetDescender() const{ return this->descender; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the units per EM value of the font.
|
|
|
|
* @return The units per EM value of the font.
|
|
|
|
*/
|
|
|
|
inline int GetUnitsPerEM() const { return this->units_per_em; }
|
2013-06-23 15:32:09 +00:00
|
|
|
|
2018-10-28 22:30:49 +00:00
|
|
|
/**
|
|
|
|
* Get the nominal font size of the font.
|
|
|
|
* @return The nominal font size.
|
|
|
|
*/
|
|
|
|
virtual int GetFontSize() const { return this->height; }
|
|
|
|
|
2013-06-23 15:24:36 +00:00
|
|
|
/**
|
|
|
|
* Map a SpriteID to the key
|
|
|
|
* @param key The key to map to.
|
|
|
|
* @param sprite The sprite that is being mapped.
|
|
|
|
*/
|
2013-06-25 20:20:15 +00:00
|
|
|
virtual void SetUnicodeGlyph(WChar key, SpriteID sprite) = 0;
|
2013-06-23 15:24:36 +00:00
|
|
|
|
|
|
|
/** Initialize the glyph map */
|
|
|
|
virtual void InitializeUnicodeGlyphMap() = 0;
|
|
|
|
|
|
|
|
/** Clear the font cache. */
|
|
|
|
virtual void ClearFontCache() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the glyph (sprite) of the given key.
|
|
|
|
* @param key The key to look up.
|
|
|
|
* @return The sprite.
|
|
|
|
*/
|
2013-06-25 20:20:15 +00:00
|
|
|
virtual const Sprite *GetGlyph(GlyphID key) = 0;
|
2013-06-23 15:24:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the width of the glyph with the given key.
|
|
|
|
* @param key The key to look up.
|
|
|
|
* @return The width.
|
|
|
|
*/
|
2013-06-25 20:20:15 +00:00
|
|
|
virtual uint GetGlyphWidth(GlyphID key) = 0;
|
2013-06-23 15:24:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Do we need to draw a glyph shadow?
|
|
|
|
* @return True if it has to be done, otherwise false.
|
|
|
|
*/
|
|
|
|
virtual bool GetDrawGlyphShadow() = 0;
|
|
|
|
|
2013-06-25 20:20:15 +00:00
|
|
|
/**
|
|
|
|
* Map a character into a glyph.
|
|
|
|
* @param key The character.
|
|
|
|
* @return The glyph ID used to draw the character.
|
|
|
|
*/
|
|
|
|
virtual GlyphID MapCharToGlyph(WChar key) = 0;
|
|
|
|
|
2013-06-25 20:39:58 +00:00
|
|
|
/**
|
|
|
|
* Read a font table from the font.
|
|
|
|
* @param tag The of the table to load.
|
2013-06-27 21:21:47 +00:00
|
|
|
* @param length The length of the read data.
|
2013-06-25 20:39:58 +00:00
|
|
|
* @return The loaded table data.
|
|
|
|
*/
|
2013-06-27 21:21:47 +00:00
|
|
|
virtual const void *GetFontTable(uint32 tag, size_t &length) = 0;
|
2013-06-25 20:39:58 +00:00
|
|
|
|
2018-11-25 01:02:20 +00:00
|
|
|
/**
|
|
|
|
* Get the native OS font handle, if there is one.
|
|
|
|
* @return Opaque OS font handle.
|
|
|
|
*/
|
2021-01-06 21:56:44 +00:00
|
|
|
virtual const void *GetOSHandle()
|
2018-11-25 01:02:20 +00:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:46:27 +00:00
|
|
|
/**
|
|
|
|
* Get the name of this font.
|
|
|
|
* @return The name of the font.
|
|
|
|
*/
|
|
|
|
virtual const char *GetFontName() = 0;
|
|
|
|
|
2013-06-23 15:24:36 +00:00
|
|
|
/**
|
|
|
|
* Get the font cache of a given font size.
|
|
|
|
* @param fs The font size to look up.
|
|
|
|
* @return The font cache.
|
|
|
|
*/
|
|
|
|
static inline FontCache *Get(FontSize fs)
|
|
|
|
{
|
|
|
|
assert(fs < FS_END);
|
|
|
|
return FontCache::caches[fs];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the font cache has a parent.
|
|
|
|
*/
|
|
|
|
inline bool HasParent()
|
|
|
|
{
|
2019-04-10 21:07:06 +00:00
|
|
|
return this->parent != nullptr;
|
2013-06-23 15:24:36 +00:00
|
|
|
}
|
2018-06-25 17:39:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Is this a built-in sprite font?
|
|
|
|
*/
|
|
|
|
virtual bool IsBuiltInFont() = 0;
|
2013-06-23 15:24:36 +00:00
|
|
|
};
|
|
|
|
|
2006-11-16 22:05:33 +00:00
|
|
|
/** Map a SpriteID to the font size and key */
|
2013-06-25 20:20:15 +00:00
|
|
|
static inline void SetUnicodeGlyph(FontSize size, WChar key, SpriteID sprite)
|
2013-06-23 15:24:36 +00:00
|
|
|
{
|
|
|
|
FontCache::Get(size)->SetUnicodeGlyph(key, sprite);
|
|
|
|
}
|
2006-11-16 22:05:33 +00:00
|
|
|
|
|
|
|
/** Initialize the glyph map */
|
2013-06-23 15:24:36 +00:00
|
|
|
static inline void InitializeUnicodeGlyphMap()
|
|
|
|
{
|
|
|
|
for (FontSize fs = FS_BEGIN; fs < FS_END; fs++) {
|
|
|
|
FontCache::Get(fs)->InitializeUnicodeGlyphMap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-13 13:28:06 +00:00
|
|
|
static inline void ClearFontCache()
|
|
|
|
{
|
2013-06-23 15:24:36 +00:00
|
|
|
for (FontSize fs = FS_BEGIN; fs < FS_END; fs++) {
|
|
|
|
FontCache::Get(fs)->ClearFontCache();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the Sprite for a glyph */
|
2013-06-25 20:20:15 +00:00
|
|
|
static inline const Sprite *GetGlyph(FontSize size, WChar key)
|
2013-06-23 15:24:36 +00:00
|
|
|
{
|
2013-06-25 20:20:15 +00:00
|
|
|
FontCache *fc = FontCache::Get(size);
|
|
|
|
return fc->GetGlyph(fc->MapCharToGlyph(key));
|
2013-06-23 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the width of a glyph */
|
2013-06-25 20:20:15 +00:00
|
|
|
static inline uint GetGlyphWidth(FontSize size, WChar key)
|
2013-06-23 15:24:36 +00:00
|
|
|
{
|
2013-06-25 20:20:15 +00:00
|
|
|
FontCache *fc = FontCache::Get(size);
|
|
|
|
return fc->GetGlyphWidth(fc->MapCharToGlyph(key));
|
2013-06-23 15:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool GetDrawGlyphShadow(FontSize size)
|
|
|
|
{
|
|
|
|
return FontCache::Get(size)->GetDrawGlyphShadow();
|
|
|
|
}
|
2006-11-16 22:05:33 +00:00
|
|
|
|
2022-09-15 17:21:27 +00:00
|
|
|
/** Settings for a single font. */
|
|
|
|
struct FontCacheSubSetting {
|
2021-04-28 15:10:15 +00:00
|
|
|
std::string font; ///< The name of the font, or path to the font.
|
|
|
|
uint size; ///< The (requested) size of the font.
|
|
|
|
bool aa; ///< Whether to do anti aliasing or not.
|
2018-11-25 01:02:20 +00:00
|
|
|
|
2021-01-04 14:20:34 +00:00
|
|
|
const void *os_handle = nullptr; ///< Optional native OS font info. Only valid during font search.
|
2013-06-23 15:23:22 +00:00
|
|
|
};
|
|
|
|
|
2022-09-15 17:21:27 +00:00
|
|
|
/** Settings for the four different fonts. */
|
|
|
|
struct FontCacheSettings {
|
|
|
|
FontCacheSubSetting small; ///< The smallest font; mostly used for zoomed out view.
|
|
|
|
FontCacheSubSetting medium; ///< The normal font size.
|
|
|
|
FontCacheSubSetting large; ///< The largest font; mostly used for newspapers.
|
|
|
|
FontCacheSubSetting mono; ///< The mono space font used for license/readme viewers.
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-11-16 22:05:33 +00:00
|
|
|
|
2022-09-15 17:21:27 +00:00
|
|
|
extern FontCacheSettings _fcsettings;
|
2006-11-16 22:05:33 +00:00
|
|
|
|
2022-12-22 18:41:58 +00:00
|
|
|
/**
|
|
|
|
* Get the settings of a given font size.
|
|
|
|
* @param fs The font size to look up.
|
|
|
|
* @return The settings.
|
|
|
|
*/
|
|
|
|
static inline FontCacheSubSetting *GetFontCacheSubSetting(FontSize fs)
|
|
|
|
{
|
|
|
|
switch (fs) {
|
|
|
|
default: NOT_REACHED();
|
|
|
|
case FS_SMALL: return &_fcsettings.small;
|
|
|
|
case FS_NORMAL: return &_fcsettings.medium;
|
|
|
|
case FS_LARGE: return &_fcsettings.large;
|
|
|
|
case FS_MONO: return &_fcsettings.mono;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-15 17:21:27 +00:00
|
|
|
void InitFontCache(bool monospace);
|
|
|
|
void UninitFontCache();
|
2021-02-23 19:54:50 +00:00
|
|
|
bool HasAntialiasedFonts();
|
2006-11-16 22:05:33 +00:00
|
|
|
|
2022-09-15 18:57:10 +00:00
|
|
|
bool GetFontAAState(FontSize size, bool check_blitter = true);
|
2022-12-22 21:54:24 +00:00
|
|
|
void SetFont(FontSize fontsize, const std::string &font, uint size, bool aa);
|
2022-09-15 18:57:10 +00:00
|
|
|
|
2006-11-16 22:05:33 +00:00
|
|
|
#endif /* FONTCACHE_H */
|