2006-11-16 22:05:33 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 21:21:05 +01: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 16:11:33 +01: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
|
|
|
|
|
2009-10-04 19:13:56 +01:00
|
|
|
#include "spritecache.h"
|
2007-12-22 23:30:28 +00:00
|
|
|
|
2013-06-23 16:24:36 +01: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-23 16:32:09 +01:00
|
|
|
int height; ///< The height of the font;
|
2013-06-23 16:24:36 +01:00
|
|
|
public:
|
|
|
|
FontCache(FontSize fs);
|
|
|
|
virtual ~FontCache();
|
|
|
|
|
2013-06-23 16:32:09 +01:00
|
|
|
/**
|
|
|
|
* Get the height of the font.
|
|
|
|
* @return The height of the font.
|
|
|
|
*/
|
|
|
|
inline int GetHeight() { return this->height; }
|
|
|
|
|
2013-06-23 16:24:36 +01:00
|
|
|
/**
|
|
|
|
* Get the SpriteID mapped to the given key
|
|
|
|
* @param key The key to get the sprite for.
|
|
|
|
* @return The sprite.
|
|
|
|
*/
|
|
|
|
virtual SpriteID GetUnicodeGlyph(uint32 key) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Map a SpriteID to the key
|
|
|
|
* @param key The key to map to.
|
|
|
|
* @param sprite The sprite that is being mapped.
|
|
|
|
*/
|
|
|
|
virtual void SetUnicodeGlyph(uint32 key, SpriteID sprite) = 0;
|
|
|
|
|
|
|
|
/** 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.
|
|
|
|
*/
|
|
|
|
virtual const Sprite *GetGlyph(uint32 key) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the width of the glyph with the given key.
|
|
|
|
* @param key The key to look up.
|
|
|
|
* @return The width.
|
|
|
|
*/
|
|
|
|
virtual uint GetGlyphWidth(uint32 key) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do we need to draw a glyph shadow?
|
|
|
|
* @return True if it has to be done, otherwise false.
|
|
|
|
*/
|
|
|
|
virtual bool GetDrawGlyphShadow() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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()
|
|
|
|
{
|
|
|
|
return this->parent != NULL;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-11-16 22:05:33 +00:00
|
|
|
/** Get the SpriteID mapped to the given font size and key */
|
2013-06-23 16:24:36 +01:00
|
|
|
static inline SpriteID GetUnicodeGlyph(FontSize size, uint32 key)
|
|
|
|
{
|
|
|
|
return FontCache::Get(size)->GetUnicodeGlyph(key);
|
|
|
|
}
|
2006-11-16 22:05:33 +00:00
|
|
|
|
|
|
|
/** Map a SpriteID to the font size and key */
|
2013-06-23 16:24:36 +01:00
|
|
|
static inline void SetUnicodeGlyph(FontSize size, uint32 key, SpriteID sprite)
|
|
|
|
{
|
|
|
|
FontCache::Get(size)->SetUnicodeGlyph(key, sprite);
|
|
|
|
}
|
2006-11-16 22:05:33 +00:00
|
|
|
|
|
|
|
/** Initialize the glyph map */
|
2013-06-23 16:24:36 +01:00
|
|
|
static inline void InitializeUnicodeGlyphMap()
|
|
|
|
{
|
|
|
|
for (FontSize fs = FS_BEGIN; fs < FS_END; fs++) {
|
|
|
|
FontCache::Get(fs)->InitializeUnicodeGlyphMap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ClearFontCache() {
|
|
|
|
for (FontSize fs = FS_BEGIN; fs < FS_END; fs++) {
|
|
|
|
FontCache::Get(fs)->ClearFontCache();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the Sprite for a glyph */
|
|
|
|
static inline const Sprite *GetGlyph(FontSize size, uint32 key)
|
|
|
|
{
|
|
|
|
return FontCache::Get(size)->GetGlyph(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the width of a glyph */
|
|
|
|
static inline uint GetGlyphWidth(FontSize size, uint32 key)
|
|
|
|
{
|
|
|
|
return FontCache::Get(size)->GetGlyphWidth(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool GetDrawGlyphShadow(FontSize size)
|
|
|
|
{
|
|
|
|
return FontCache::Get(size)->GetDrawGlyphShadow();
|
|
|
|
}
|
2006-11-16 22:05:33 +00:00
|
|
|
|
|
|
|
#ifdef WITH_FREETYPE
|
|
|
|
|
2013-06-23 16:23:22 +01:00
|
|
|
/** Settings for a single freetype font. */
|
|
|
|
struct FreeTypeSubSetting {
|
|
|
|
char font[MAX_PATH]; ///< 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.
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Settings for the freetype fonts. */
|
2007-03-07 12:11:48 +00:00
|
|
|
struct FreeTypeSettings {
|
2013-06-23 16:23:22 +01:00
|
|
|
FreeTypeSubSetting small; ///< The smallest font; mostly used for zoomed out view.
|
|
|
|
FreeTypeSubSetting medium; ///< The normal font size.
|
|
|
|
FreeTypeSubSetting large; ///< The largest font; mostly used for newspapers.
|
|
|
|
FreeTypeSubSetting 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
|
|
|
|
|
|
|
extern FreeTypeSettings _freetype;
|
|
|
|
|
2013-06-23 16:37:18 +01:00
|
|
|
#endif /* WITH_FREETYPE */
|
|
|
|
|
2011-11-20 11:59:36 +00:00
|
|
|
void InitFreeType(bool monospace);
|
2008-11-24 18:53:17 +00:00
|
|
|
void UninitFreeType();
|
2006-11-16 22:05:33 +00:00
|
|
|
|
|
|
|
#endif /* FONTCACHE_H */
|