bgfx/examples/common/font/font_manager.h

225 lines
7.2 KiB
C
Raw Normal View History

2013-05-15 17:07:04 +04:00
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
2013-04-23 00:42:11 +04:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
2013-05-15 17:07:04 +04:00
*/
2013-05-15 17:01:38 +04:00
#ifndef __FONT_MANAGER_H__
#define __FONT_MANAGER_H__
2013-04-23 00:42:11 +04:00
#include <bgfx.h>
#include <bx/handlealloc.h>
class Atlas;
2013-04-23 00:42:11 +04:00
enum FontType
{
2013-05-15 17:21:23 +04:00
FONT_TYPE_ALPHA = 0x00000100, // L8
2013-04-23 00:42:11 +04:00
//FONT_TYPE_LCD = 0x00000200, // BGRA8
//FONT_TYPE_RGBA = 0x00000300, // BGRA8
FONT_TYPE_DISTANCE = 0x00000400, // L8
FONT_TYPE_DISTANCE_SUBPIXEL = 0x00000500 // L8
};
struct FontInfo
{
2013-05-17 07:54:25 +04:00
/// The font height in pixel.
uint16_t pixelSize;
2013-05-17 07:54:25 +04:00
/// Rendering type used for the font.
int16_t fontType;
2013-04-23 00:42:11 +04:00
2013-05-17 07:54:25 +04:00
/// The pixel extents above the baseline in pixels (typically positive).
float ascender;
2013-05-17 07:54:25 +04:00
/// The extents below the baseline in pixels (typically negative).
float descender;
2013-05-17 07:54:25 +04:00
/// The spacing in pixels between one row's descent and the next row's ascent.
float lineGap;
2013-05-17 07:54:25 +04:00
/// The thickness of the under/hover/strike-trough line in pixels.
float underlineThickness;
/// The position of the underline relatively to the baseline.
float underlinePosition;
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Scale to apply to glyph data.
float scale;
2013-04-23 00:42:11 +04:00
};
// Glyph metrics:
// --------------
//
// xmin xmax
// | |
// |<-------- width -------->|
2013-05-15 17:21:23 +04:00
// | |
2013-04-23 00:42:11 +04:00
// | +-------------------------+----------------- ymax
// | | ggggggggg ggggg | ^ ^
2013-05-15 17:21:23 +04:00
// | | g:::::::::ggg::::g | | |
// | | g:::::::::::::::::g | | |
// | | g::::::ggggg::::::gg | | |
// | | g:::::g g:::::g | | |
// offset_x -|-------->| g:::::g g:::::g | offset_y |
// | | g:::::g g:::::g | | |
// | | g::::::g g:::::g | | |
// | | g:::::::ggggg:::::g | | |
2013-04-23 00:42:11 +04:00
// | | g::::::::::::::::g | | height
2013-05-15 17:21:23 +04:00
// | | gg::::::::::::::g | | |
2013-04-23 00:42:11 +04:00
// baseline ---*---------|---- gggggggg::::::g-----*-------- |
2013-05-15 17:21:23 +04:00
// / | | g:::::g | |
// origin | | gggggg g:::::g | |
// | | g:::::gg gg:::::g | |
// | | g::::::ggg:::::::g | |
// | | gg:::::::::::::g | |
// | | ggg::::::ggg | |
2013-04-23 00:42:11 +04:00
// | | gggggg | v
// | +-------------------------+----------------- ymin
// | |
// |------------- advance_x ---------->|
/// Unicode value of a character
typedef int32_t CodePoint_t;
2013-05-15 17:21:23 +04:00
/// A structure that describe a glyph.
2013-04-23 00:42:11 +04:00
struct GlyphInfo
{
2013-05-17 07:54:25 +04:00
/// Index for faster retrieval.
int32_t glyphIndex;
2013-05-15 17:21:23 +04:00
2013-04-23 00:42:11 +04:00
/// Glyph's width in pixels.
float width;
2013-04-23 00:42:11 +04:00
/// Glyph's height in pixels.
float height;
2013-05-15 17:21:23 +04:00
2013-04-23 00:42:11 +04:00
/// Glyph's left offset in pixels
float offset_x;
2013-04-23 00:42:11 +04:00
2013-05-17 07:54:25 +04:00
/// Glyph's top offset in pixels.
///
/// @remark This is the distance from the baseline to the top-most glyph
/// scan line, upwards y coordinates being positive.
float offset_y;
2013-04-23 00:42:11 +04:00
2013-05-17 07:54:25 +04:00
/// For horizontal text layouts, this is the unscaled horizontal
/// distance in pixels used to increment the pen position when the
/// glyph is drawn as part of a string of text.
float advance_x;
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// For vertical text layouts, this is the unscaled vertical distance
/// in pixels used to increment the pen position when the glyph is
/// drawn as part of a string of text.
float advance_y;
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Region index in the atlas storing textures.
uint16_t regionIndex;
2013-04-23 00:42:11 +04:00
};
BGFX_HANDLE(TrueTypeHandle);
BGFX_HANDLE(FontHandle);
class FontManager
{
public:
2013-05-17 07:54:25 +04:00
/// Create the font manager using an external cube atlas (doesn't take
/// ownership of the atlas).
2013-05-16 06:42:39 +04:00
FontManager(Atlas* _atlas);
2013-05-17 07:54:25 +04:00
/// Create the font manager and create the texture cube as BGRA8 with
/// linear filtering.
2013-05-16 06:42:39 +04:00
FontManager(uint32_t _textureSideWidth = 512);
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
~FontManager();
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Retrieve the atlas used by the font manager (e.g. to add stuff to it)
2013-05-16 06:42:39 +04:00
Atlas* getAtlas()
{
return m_atlas;
}
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Load a TrueType font from a file path.
///
/// @return INVALID_HANDLE if the loading fail.
2013-05-16 06:42:39 +04:00
TrueTypeHandle loadTrueTypeFromFile(const char* _fontPath);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Load a TrueType font from a given buffer. The buffer is copied and
/// thus can be freed or reused after this call.
///
2013-05-16 06:42:39 +04:00
/// @return invalid handle if the loading fail
TrueTypeHandle loadTrueTypeFromMemory(const uint8_t* _buffer, uint32_t _size);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Unload a TrueType font (free font memory) but keep loaded glyphs.
2013-05-16 06:42:39 +04:00
void unloadTrueType(TrueTypeHandle _handle);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Return a font whose height is a fixed pixel size.
2013-05-16 06:42:39 +04:00
FontHandle createFontByPixelSize(TrueTypeHandle _handle, uint32_t _typefaceIndex, uint32_t _pixelSize, FontType _fontType = FONT_TYPE_ALPHA);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Return a scaled child font whose height is a fixed pixel size.
2013-05-16 06:42:39 +04:00
FontHandle createScaledFontToPixelSize(FontHandle _baseFontHandle, uint32_t _pixelSize);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Load a baked font (the set of glyph is fixed).
///
/// @return INVALID_HANDLE if the loading fail.
2013-05-16 06:42:39 +04:00
FontHandle loadBakedFontFromFile(const char* _imagePath, const char* _descriptorPath);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Load a baked font (the set of glyph is fixed).
///
/// @return INVALID_HANDLE if the loading fail.
2013-05-16 06:42:39 +04:00
FontHandle loadBakedFontFromMemory(const uint8_t* _imageBuffer, uint32_t _imageSize, const uint8_t* _descriptorBuffer, uint32_t _descriptorSize);
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
/// destroy a font (truetype or baked)
void destroyFont(FontHandle _handle);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Preload a set of glyphs from a TrueType file.
///
/// @return True if every glyph could be preloaded, false otherwise if
/// the Font is a baked font, this only do validation on the characters.
2013-05-16 06:42:39 +04:00
bool preloadGlyph(FontHandle _handle, const wchar_t* _string);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Preload a single glyph, return true on success.
2013-05-16 06:42:39 +04:00
bool preloadGlyph(FontHandle _handle, CodePoint_t _character);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Bake a font to disk (the set of preloaded glyph).
///
2013-05-16 06:42:39 +04:00
/// @return true if the baking succeed, false otherwise
bool saveBakedFont(FontHandle _handle, const char* _fontDirectory, const char* _fontName);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Return the font descriptor of a font.
///
2013-05-16 06:42:39 +04:00
/// @remark the handle is required to be valid
const FontInfo& getFontInfo(FontHandle _handle);
2013-05-15 17:21:23 +04:00
2013-05-17 07:54:25 +04:00
/// Return the rendering informations about the glyph region. Load the
/// glyph from a TrueType font if possible
///
/// @return True if the Glyph is available.
2013-05-16 06:42:39 +04:00
bool getGlyphInfo(FontHandle _handle, CodePoint_t _codePoint, GlyphInfo& _outInfo);
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
GlyphInfo& getBlackGlyph()
{
return m_blackGlyph;
}
2013-05-15 17:21:23 +04:00
2013-04-23 00:42:11 +04:00
private:
2013-05-16 06:42:39 +04:00
struct CachedFont;
struct CachedFile
{
uint8_t* buffer;
uint32_t bufferSize;
};
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
void init();
bool addBitmap(GlyphInfo& _glyphInfo, const uint8_t* _data);
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
bool m_ownAtlas;
Atlas* m_atlas;
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
bx::HandleAlloc m_fontHandles;
CachedFont* m_cachedFonts;
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
bx::HandleAlloc m_filesHandles;
CachedFile* m_cachedFiles;
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
GlyphInfo m_blackGlyph;
2013-05-15 17:21:23 +04:00
2013-05-16 06:42:39 +04:00
//temporary buffer to raster glyph
uint8_t* m_buffer;
2013-04-23 00:42:11 +04:00
};
2013-05-15 17:01:38 +04:00
#endif // __FONT_MANAGER_H__