bgfx/examples/common/font/text_buffer_manager.cpp

899 lines
28 KiB
C++
Raw Normal View History

2013-05-15 09:07:04 -04:00
/*
* Copyright 2013 Jeremie Roy. All rights reserved.
2013-04-22 16:42:11 -04:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
2013-05-15 09:07:04 -04:00
*/
2013-05-15 22:42:39 -04:00
#include <bx/bx.h>
#include <stddef.h> // offsetof
#include <memory.h> // memcpy
#include <wchar.h> // wcslen
2013-04-22 16:42:11 -04:00
#include "text_buffer_manager.h"
#include "../cube_atlas.h"
2013-05-08 13:53:47 -04:00
#include "vs_font_basic.bin.h"
#include "fs_font_basic.bin.h"
#include "vs_font_distance_field.bin.h"
#include "fs_font_distance_field.bin.h"
#include "vs_font_distance_field_subpixel.bin.h"
#include "fs_font_distance_field_subpixel.bin.h"
2013-05-15 09:21:23 -04:00
#define MAX_TEXT_BUFFER_COUNT 64
2013-04-24 06:15:40 -04:00
#define MAX_BUFFERED_CHARACTERS 8192
2013-04-22 16:42:11 -04:00
// Table from Flexible and Economical UTF-8 Decoder
// Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
// See http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ for details.
2013-05-15 09:21:23 -04:00
static const uint8_t utf8d[] =
{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 00..1f
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 20..3f
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 40..5f
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 60..7f
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, // 80..9f
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, // a0..bf
8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // c0..df
0xa, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x4, 0x3,0x3, // e0..ef
0xb, 0x6, 0x6, 0x6, 0x5, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8,0x8, // f0..ff
0x0, 0x1, 0x2, 0x3, 0x5, 0x8, 0x7, 0x1, 0x1, 0x1, 0x4, 0x6, 0x1, 0x1, 0x1,0x1, // s0..s0
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, // s1..s2
1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, // s3..s4
1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, // s5..s6
1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // s7..s8
2013-04-22 16:42:11 -04:00
};
#define UTF8_ACCEPT 0
#define UTF8_REJECT 1
2013-05-15 09:21:23 -04:00
inline uint32_t utf8_decode(uint32_t* state, uint32_t* codep, uint32_t byte)
{
uint32_t type = utf8d[byte];
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
*codep = (*state != UTF8_ACCEPT) ?
2013-05-15 22:42:39 -04:00
(byte & 0x3fu) | (*codep << 6) :
(0xff >> type) & (byte);
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
*state = utf8d[256 + *state * 16 + type];
return *state;
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
inline int utf8_strlen(uint8_t* s, size_t* count)
{
uint32_t codepoint;
uint32_t state = 0;
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
for (*count = 0; *s; ++s)
{
if (!utf8_decode(&state, &codepoint, *s) )
{
*count += 1;
}
}
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
return state != UTF8_ACCEPT;
2013-04-22 16:42:11 -04:00
}
class TextBuffer
{
2013-05-15 09:21:23 -04:00
public:
2013-05-15 22:42:39 -04:00
/// TextBuffer is bound to a fontManager for glyph retrieval
/// @remark the ownership of the manager is not taken
TextBuffer(FontManager* _fontManager);
~TextBuffer();
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
void setStyle(uint32_t _flags = STYLE_NORMAL)
{
m_styleFlags = _flags;
}
void setTextColor(uint32_t _rgba = 0x000000FF)
{
m_textColor = toABGR(_rgba);
}
void setBackgroundColor(uint32_t _rgba = 0x000000FF)
{
m_backgroundColor = toABGR(_rgba);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
void setOverlineColor(uint32_t _rgba = 0x000000FF)
{
m_overlineColor = toABGR(_rgba);
}
void setUnderlineColor(uint32_t _rgba = 0x000000FF)
{
m_underlineColor = toABGR(_rgba);
}
void setStrikeThroughColor(uint32_t _rgba = 0x000000FF)
{
m_strikeThroughColor = toABGR(_rgba);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
void setPenPosition(float _x, float _y)
{
m_penX = _x; m_penY = _y;
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
/// return the size of the text
//Rectangle measureText(FontHandle _fontHandle, const char * _string);
//Rectangle measureText(FontHandle _fontHandle, const wchar_t * _string);
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
/// append an ASCII/utf-8 string to the buffer using current pen position and color
void appendText(FontHandle _fontHandle, const char* _string);
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
/// append a wide char unicode string to the buffer using current pen position and color
void appendText(FontHandle _fontHandle, const wchar_t* _string);
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
/// Clear the text buffer and reset its state (pen/color)
void clearTextBuffer();
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
/// get pointer to the vertex buffer to submit it to the graphic card
const uint8_t* getVertexBuffer()
{
return (uint8_t*) m_vertexBuffer;
}
/// number of vertex in the vertex buffer
uint32_t getVertexCount()
{
return m_vertexCount;
}
/// size in bytes of a vertex
uint32_t getVertexSize()
{
return sizeof(TextVertex);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
/// get a pointer to the index buffer to submit it to the graphic
const uint16_t* getIndexBuffer()
{
return m_indexBuffer;
}
/// number of index in the index buffer
uint32_t getIndexCount()
{
return m_indexCount;
}
/// size in bytes of an index
uint32_t getIndexSize()
{
return sizeof(uint16_t);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
uint32_t getTextColor()
{
return toABGR(m_textColor);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
TextRectangle getRectangle() const
{
return m_rectangle;
}
2013-05-08 17:55:54 -04:00
2013-04-22 16:42:11 -04:00
private:
2013-05-15 22:42:39 -04:00
void appendGlyph(CodePoint_t _codePoint, const FontInfo& _font, const GlyphInfo& _glyphInfo);
void verticalCenterLastLine(float _txtDecalY, float _top, float _bottom);
uint32_t toABGR(uint32_t _rgba)
{
return ( ( (_rgba >> 0) & 0xff) << 24) |
( ( (_rgba >> 8) & 0xff) << 16) |
( ( (_rgba >> 16) & 0xff) << 8) |
( ( (_rgba >> 24) & 0xff) << 0);
}
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
uint32_t m_styleFlags;
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
// color states
uint32_t m_textColor;
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
uint32_t m_backgroundColor;
uint32_t m_overlineColor;
uint32_t m_underlineColor;
uint32_t m_strikeThroughColor;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
//position states
float m_penX;
float m_penY;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
float m_originX;
float m_originY;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
float m_lineAscender;
float m_lineDescender;
float m_lineGap;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
TextRectangle m_rectangle;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
///
FontManager* m_fontManager;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
void setVertex(uint32_t _i, float _x, float _y, uint32_t _rgba, uint8_t _style = STYLE_NORMAL)
{
m_vertexBuffer[_i].x = _x;
m_vertexBuffer[_i].y = _y;
m_vertexBuffer[_i].rgba = _rgba;
m_styleBuffer[_i] = _style;
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
struct TextVertex
{
float x, y;
int16_t u, v, w, t;
uint32_t rgba;
};
TextVertex* m_vertexBuffer;
uint16_t* m_indexBuffer;
uint8_t* m_styleBuffer;
uint32_t m_vertexCount;
uint32_t m_indexCount;
uint32_t m_lineStartIndex;
2013-05-15 09:21:23 -04:00
};
2013-04-22 16:42:11 -04:00
TextBuffer::TextBuffer(FontManager* _fontManager)
2013-05-15 09:21:23 -04:00
{
2013-04-22 16:42:11 -04:00
m_styleFlags = STYLE_NORMAL;
//0xAABBGGRR
m_textColor = 0xFFFFFFFF;
m_backgroundColor = 0xFFFFFFFF;
m_backgroundColor = 0xFFFFFFFF;
m_overlineColor = 0xFFFFFFFF;
m_underlineColor = 0xFFFFFFFF;
m_strikeThroughColor = 0xFFFFFFFF;
m_penX = 0;
m_penY = 0;
m_originX = 0;
m_originY = 0;
m_lineAscender = 0;
m_lineDescender = 0;
m_lineGap = 0;
2013-05-15 09:21:23 -04:00
m_fontManager = _fontManager;
2013-05-08 17:55:54 -04:00
m_rectangle.width = 0;
m_rectangle.height = 0;
2013-05-15 09:21:23 -04:00
2013-04-22 16:42:11 -04:00
m_vertexBuffer = new TextVertex[MAX_BUFFERED_CHARACTERS * 4];
m_indexBuffer = new uint16_t[MAX_BUFFERED_CHARACTERS * 6];
m_styleBuffer = new uint8_t[MAX_BUFFERED_CHARACTERS * 4];
m_vertexCount = 0;
m_indexCount = 0;
m_lineStartIndex = 0;
}
TextBuffer::~TextBuffer()
{
delete[] m_vertexBuffer;
delete[] m_indexBuffer;
}
2013-05-15 09:21:23 -04:00
void TextBuffer::appendText(FontHandle _fontHandle, const char* _string)
{
2013-04-22 16:42:11 -04:00
GlyphInfo glyph;
2013-05-15 09:21:23 -04:00
const FontInfo& font = m_fontManager->getFontInfo(_fontHandle);
if (m_vertexCount == 0)
2013-04-22 16:42:11 -04:00
{
m_originX = m_penX;
m_originY = m_penY;
2013-05-15 09:21:23 -04:00
m_lineDescender = 0; // font.m_descender;
m_lineAscender = 0; //font.m_ascender;
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
2013-04-22 16:42:11 -04:00
uint32_t codepoint;
uint32_t state = 0;
for (; *_string; ++_string)
2013-05-15 09:21:23 -04:00
{
if (!utf8_decode(&state, &codepoint, *_string) )
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
if (m_fontManager->getGlyphInfo(_fontHandle, (CodePoint_t)codepoint, glyph) )
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
appendGlyph( (CodePoint_t)codepoint, font, glyph);
}
else
2013-04-22 16:42:11 -04:00
{
2013-04-23 17:14:32 -04:00
BX_CHECK(false, "Glyph not found");
2013-04-22 16:42:11 -04:00
}
}
2013-05-15 09:21:23 -04:00
}
//printf("U+%04X\n", codepoint);
2013-04-22 16:42:11 -04:00
if (state != UTF8_ACCEPT)
{
2013-05-15 09:21:23 -04:00
// assert(false && "The string is not well-formed");
2013-04-22 16:42:11 -04:00
return; //"The string is not well-formed\n"
}
}
2013-05-15 09:21:23 -04:00
void TextBuffer::appendText(FontHandle _fontHandle, const wchar_t* _string)
{
2013-04-22 16:42:11 -04:00
GlyphInfo glyph;
2013-05-15 09:21:23 -04:00
const FontInfo& font = m_fontManager->getFontInfo(_fontHandle);
if (m_vertexCount == 0)
2013-04-22 16:42:11 -04:00
{
m_originX = m_penX;
m_originY = m_penY;
2013-05-15 09:21:23 -04:00
m_lineDescender = 0; // font.m_descender;
m_lineAscender = 0; //font.m_ascender;
2013-04-22 16:42:11 -04:00
m_lineGap = 0;
}
//parse string
2013-05-15 09:21:23 -04:00
for (uint32_t ii = 0, end = wcslen(_string); ii < end; ++ii)
2013-04-22 16:42:11 -04:00
{
//if glyph cached, continue
2013-04-23 16:48:34 -04:00
uint32_t _codePoint = _string[ii];
2013-05-15 09:21:23 -04:00
if (m_fontManager->getGlyphInfo(_fontHandle, _codePoint, glyph) )
2013-04-22 16:42:11 -04:00
{
appendGlyph(_codePoint, font, glyph);
2013-05-15 09:21:23 -04:00
}
else
2013-04-22 16:42:11 -04:00
{
2013-04-23 17:14:32 -04:00
BX_CHECK(false, "Glyph not found");
2013-04-22 16:42:11 -04:00
}
}
}
/*
TextBuffer::Rectangle TextBuffer::measureText(FontHandle _fontHandle, const char * _string)
2013-05-15 09:21:23 -04:00
{
2013-04-22 16:42:11 -04:00
}
TextBuffer::Rectangle TextBuffer::measureText(FontHandle _fontHandle, const wchar_t * _string)
2013-04-22 16:42:11 -04:00
{
}
*/
void TextBuffer::clearTextBuffer()
{
m_vertexCount = 0;
m_indexCount = 0;
m_lineStartIndex = 0;
m_lineAscender = 0;
m_lineDescender = 0;
2013-05-08 17:55:54 -04:00
m_rectangle.width = 0;
m_rectangle.height = 0;
2013-04-22 16:42:11 -04:00
}
void TextBuffer::appendGlyph(CodePoint_t _codePoint, const FontInfo& _font, const GlyphInfo& _glyphInfo)
2013-05-15 09:21:23 -04:00
{
2013-04-22 16:42:11 -04:00
//handle newlines
2013-05-15 09:21:23 -04:00
if (_codePoint == L'\n')
{
m_penX = m_originX;
m_penY -= m_lineDescender;
2013-04-22 16:42:11 -04:00
m_penY += m_lineGap;
m_lineDescender = 0;
m_lineAscender = 0;
2013-05-15 09:21:23 -04:00
m_lineStartIndex = m_vertexCount;
2013-04-22 16:42:11 -04:00
return;
2013-05-15 09:21:23 -04:00
}
if (_font.ascender > m_lineAscender
2013-05-15 22:42:39 -04:00
|| (_font.descender < m_lineDescender) )
2013-05-15 09:21:23 -04:00
{
if (_font.descender < m_lineDescender)
2013-04-22 16:42:11 -04:00
{
m_lineDescender = _font.descender;
m_lineGap = _font.lineGap;
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
float txtDecals = (_font.ascender - m_lineAscender);
m_lineAscender = _font.ascender;
2013-05-15 09:21:23 -04:00
m_lineGap = _font.lineGap;
2013-04-22 16:42:11 -04:00
m_penY += txtDecals;
2013-05-15 09:21:23 -04:00
verticalCenterLastLine( (txtDecals), (m_penY - m_lineAscender), (m_penY - m_lineDescender + m_lineGap) );
}
2013-04-22 16:42:11 -04:00
//handle kerning
float kerning = 0;
2013-05-15 09:21:23 -04:00
/*
if( previous && markup->font->kerning )
{
kerning = texture_glyph_get_kerning( glyph, previous );
}
2013-04-22 16:42:11 -04:00
*/
m_penX += kerning * _font.scale;
2013-04-22 16:42:11 -04:00
GlyphInfo& blackGlyph = m_fontManager->getBlackGlyph();
2013-05-15 09:21:23 -04:00
if (m_styleFlags & STYLE_BACKGROUND
2013-05-15 22:42:39 -04:00
&& m_backgroundColor & 0xFF000000)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
float x0 = (m_penX - kerning);
float y0 = (m_penY - m_lineAscender);
float x1 = ( (float)x0 + (_glyphInfo.advance_x) );
float y1 = (m_penY - m_lineDescender + m_lineGap);
m_fontManager->getAtlas()->packUV(blackGlyph.regionIndex, (uint8_t*)m_vertexBuffer, sizeof(TextVertex) * m_vertexCount + offsetof(TextVertex, u), sizeof(TextVertex) );
setVertex(m_vertexCount + 0, x0, y0, m_backgroundColor, STYLE_BACKGROUND);
setVertex(m_vertexCount + 1, x0, y1, m_backgroundColor, STYLE_BACKGROUND);
setVertex(m_vertexCount + 2, x1, y1, m_backgroundColor, STYLE_BACKGROUND);
setVertex(m_vertexCount + 3, x1, y0, m_backgroundColor, STYLE_BACKGROUND);
m_indexBuffer[m_indexCount + 0] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 1] = m_vertexCount + 1;
m_indexBuffer[m_indexCount + 2] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 3] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 4] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 5] = m_vertexCount + 3;
2013-04-22 16:42:11 -04:00
m_vertexCount += 4;
m_indexCount += 6;
}
2013-05-15 09:21:23 -04:00
if (m_styleFlags & STYLE_UNDERLINE
2013-05-15 22:42:39 -04:00
&& m_underlineColor & 0xFF000000)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
float x0 = (m_penX - kerning);
float y0 = (m_penY - m_lineDescender / 2);
float x1 = ( (float)x0 + (_glyphInfo.advance_x) );
float y1 = y0 + _font.underline_thickness;
m_fontManager->getAtlas()->packUV(blackGlyph.regionIndex, (uint8_t*)m_vertexBuffer, sizeof(TextVertex) * m_vertexCount + offsetof(TextVertex, u), sizeof(TextVertex) );
setVertex(m_vertexCount + 0, x0, y0, m_underlineColor, STYLE_UNDERLINE);
setVertex(m_vertexCount + 1, x0, y1, m_underlineColor, STYLE_UNDERLINE);
setVertex(m_vertexCount + 2, x1, y1, m_underlineColor, STYLE_UNDERLINE);
setVertex(m_vertexCount + 3, x1, y0, m_underlineColor, STYLE_UNDERLINE);
m_indexBuffer[m_indexCount + 0] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 1] = m_vertexCount + 1;
m_indexBuffer[m_indexCount + 2] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 3] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 4] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 5] = m_vertexCount + 3;
2013-04-22 16:42:11 -04:00
m_vertexCount += 4;
m_indexCount += 6;
}
2013-05-15 09:21:23 -04:00
if (m_styleFlags & STYLE_OVERLINE
2013-05-15 22:42:39 -04:00
&& m_overlineColor & 0xFF000000)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
float x0 = (m_penX - kerning);
float y0 = (m_penY - _font.ascender);
float x1 = ( (float)x0 + (_glyphInfo.advance_x) );
float y1 = y0 + _font.underline_thickness;
m_fontManager->getAtlas()->packUV(blackGlyph.regionIndex, (uint8_t*)m_vertexBuffer, sizeof(TextVertex) * m_vertexCount + offsetof(TextVertex, u), sizeof(TextVertex) );
setVertex(m_vertexCount + 0, x0, y0, m_overlineColor, STYLE_OVERLINE);
setVertex(m_vertexCount + 1, x0, y1, m_overlineColor, STYLE_OVERLINE);
setVertex(m_vertexCount + 2, x1, y1, m_overlineColor, STYLE_OVERLINE);
setVertex(m_vertexCount + 3, x1, y0, m_overlineColor, STYLE_OVERLINE);
m_indexBuffer[m_indexCount + 0] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 1] = m_vertexCount + 1;
m_indexBuffer[m_indexCount + 2] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 3] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 4] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 5] = m_vertexCount + 3;
2013-04-22 16:42:11 -04:00
m_vertexCount += 4;
m_indexCount += 6;
}
2013-05-15 09:21:23 -04:00
if (m_styleFlags & STYLE_STRIKE_THROUGH
2013-05-15 22:42:39 -04:00
&& m_strikeThroughColor & 0xFF000000)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
float x0 = (m_penX - kerning);
float y0 = (m_penY - _font.ascender / 3);
float x1 = ( (float)x0 + (_glyphInfo.advance_x) );
2013-05-15 09:21:23 -04:00
float y1 = y0 + _font.underline_thickness;
m_fontManager->getAtlas()->packUV(blackGlyph.regionIndex, (uint8_t*)m_vertexBuffer, sizeof(TextVertex) * m_vertexCount + offsetof(TextVertex, u), sizeof(TextVertex) );
setVertex(m_vertexCount + 0, x0, y0, m_strikeThroughColor, STYLE_STRIKE_THROUGH);
setVertex(m_vertexCount + 1, x0, y1, m_strikeThroughColor, STYLE_STRIKE_THROUGH);
setVertex(m_vertexCount + 2, x1, y1, m_strikeThroughColor, STYLE_STRIKE_THROUGH);
setVertex(m_vertexCount + 3, x1, y0, m_strikeThroughColor, STYLE_STRIKE_THROUGH);
m_indexBuffer[m_indexCount + 0] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 1] = m_vertexCount + 1;
m_indexBuffer[m_indexCount + 2] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 3] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 4] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 5] = m_vertexCount + 3;
2013-04-22 16:42:11 -04:00
m_vertexCount += 4;
m_indexCount += 6;
}
//handle glyph
float x0_precise = m_penX + (_glyphInfo.offset_x);
2013-05-15 09:21:23 -04:00
float x0 = (x0_precise);
float y0 = (m_penY + (_glyphInfo.offset_y) );
float x1 = (x0 + _glyphInfo.width);
float y1 = (y0 + _glyphInfo.height);
m_fontManager->getAtlas()->packUV(_glyphInfo.regionIndex, (uint8_t*)m_vertexBuffer, sizeof(TextVertex) * m_vertexCount + offsetof(TextVertex, u), sizeof(TextVertex) );
setVertex(m_vertexCount + 0, x0, y0, m_textColor);
setVertex(m_vertexCount + 1, x0, y1, m_textColor);
setVertex(m_vertexCount + 2, x1, y1, m_textColor);
setVertex(m_vertexCount + 3, x1, y0, m_textColor);
m_indexBuffer[m_indexCount + 0] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 1] = m_vertexCount + 1;
m_indexBuffer[m_indexCount + 2] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 3] = m_vertexCount + 0;
m_indexBuffer[m_indexCount + 4] = m_vertexCount + 2;
m_indexBuffer[m_indexCount + 5] = m_vertexCount + 3;
2013-04-22 16:42:11 -04:00
m_vertexCount += 4;
m_indexCount += 6;
2013-05-15 09:21:23 -04:00
m_penX += _glyphInfo.advance_x;
2013-05-15 09:21:23 -04:00
if (m_penX > m_rectangle.width)
{
m_rectangle.width = m_penX;
}
if ( (m_penY - m_lineDescender) > m_rectangle.height)
{
m_rectangle.height = (m_penY - m_lineDescender);
}
//if(x1 > m_rectangle.width) m_rectangle.width = x1;
2013-05-08 17:55:54 -04:00
//if(y1 > m_rectangle.height) m_rectangle.height = y1;
2013-04-22 16:42:11 -04:00
}
void TextBuffer::verticalCenterLastLine(float _dy, float _top, float _bottom)
2013-05-15 09:21:23 -04:00
{
for (uint32_t ii = m_lineStartIndex; ii < m_vertexCount; ii += 4)
{
if (m_styleBuffer[ii] == STYLE_BACKGROUND)
{
m_vertexBuffer[ii + 0].y = _top;
m_vertexBuffer[ii + 1].y = _bottom;
m_vertexBuffer[ii + 2].y = _bottom;
m_vertexBuffer[ii + 3].y = _top;
}
else
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
m_vertexBuffer[ii + 0].y += _dy;
m_vertexBuffer[ii + 1].y += _dy;
m_vertexBuffer[ii + 2].y += _dy;
m_vertexBuffer[ii + 3].y += _dy;
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
}
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
TextBufferManager::TextBufferManager(FontManager* _fontManager) : m_fontManager(_fontManager), m_textBufferHandles(MAX_TEXT_BUFFER_COUNT)
2013-04-22 16:42:11 -04:00
{
m_textBuffers = new BufferCache[MAX_TEXT_BUFFER_COUNT];
2013-05-08 13:53:47 -04:00
const bgfx::Memory* vs_font_basic;
const bgfx::Memory* fs_font_basic;
const bgfx::Memory* vs_font_distance_field;
const bgfx::Memory* fs_font_distance_field;
const bgfx::Memory* vs_font_distance_field_subpixel;
const bgfx::Memory* fs_font_distance_field_subpixel;
2013-04-22 16:42:11 -04:00
2013-05-08 13:53:47 -04:00
switch (bgfx::getRendererType() )
{
case bgfx::RendererType::Direct3D9:
2013-05-15 09:21:23 -04:00
vs_font_basic = bgfx::makeRef(vs_font_basic_dx9, sizeof(vs_font_basic_dx9) );
fs_font_basic = bgfx::makeRef(fs_font_basic_dx9, sizeof(fs_font_basic_dx9) );
2013-05-08 13:53:47 -04:00
vs_font_distance_field = bgfx::makeRef(vs_font_distance_field_dx9, sizeof(vs_font_distance_field_dx9) );
fs_font_distance_field = bgfx::makeRef(fs_font_distance_field_dx9, sizeof(fs_font_distance_field_dx9) );
vs_font_distance_field_subpixel = bgfx::makeRef(vs_font_distance_field_subpixel_dx9, sizeof(vs_font_distance_field_subpixel_dx9) );
2013-05-15 09:21:23 -04:00
fs_font_distance_field_subpixel = bgfx::makeRef(fs_font_distance_field_subpixel_dx9, sizeof(fs_font_distance_field_subpixel_dx9) );
2013-05-08 13:53:47 -04:00
break;
case bgfx::RendererType::Direct3D11:
2013-05-15 09:21:23 -04:00
vs_font_basic = bgfx::makeRef(vs_font_basic_dx11, sizeof(vs_font_basic_dx11) );
fs_font_basic = bgfx::makeRef(fs_font_basic_dx11, sizeof(fs_font_basic_dx11) );
2013-05-08 13:53:47 -04:00
vs_font_distance_field = bgfx::makeRef(vs_font_distance_field_dx11, sizeof(vs_font_distance_field_dx11) );
fs_font_distance_field = bgfx::makeRef(fs_font_distance_field_dx11, sizeof(fs_font_distance_field_dx11) );
vs_font_distance_field_subpixel = bgfx::makeRef(vs_font_distance_field_subpixel_dx11, sizeof(vs_font_distance_field_subpixel_dx11) );
fs_font_distance_field_subpixel = bgfx::makeRef(fs_font_distance_field_subpixel_dx11, sizeof(fs_font_distance_field_subpixel_dx11) );
break;
default:
2013-05-15 09:21:23 -04:00
vs_font_basic = bgfx::makeRef(vs_font_basic_glsl, sizeof(vs_font_basic_glsl) );
fs_font_basic = bgfx::makeRef(fs_font_basic_glsl, sizeof(fs_font_basic_glsl) );
2013-05-08 13:53:47 -04:00
vs_font_distance_field = bgfx::makeRef(vs_font_distance_field_glsl, sizeof(vs_font_distance_field_glsl) );
fs_font_distance_field = bgfx::makeRef(fs_font_distance_field_glsl, sizeof(fs_font_distance_field_glsl) );
vs_font_distance_field_subpixel = bgfx::makeRef(vs_font_distance_field_subpixel_glsl, sizeof(vs_font_distance_field_subpixel_glsl) );
fs_font_distance_field_subpixel = bgfx::makeRef(fs_font_distance_field_subpixel_glsl, sizeof(fs_font_distance_field_subpixel_glsl) );
break;
}
2013-04-22 16:42:11 -04:00
2013-05-08 13:53:47 -04:00
bgfx::VertexShaderHandle vsh;
bgfx::FragmentShaderHandle fsh;
2013-05-15 09:21:23 -04:00
vsh = bgfx::createVertexShader(vs_font_basic);
2013-05-08 13:53:47 -04:00
fsh = bgfx::createFragmentShader(fs_font_basic);
m_basicProgram = bgfx::createProgram(vsh, fsh);
bgfx::destroyVertexShader(vsh);
2013-05-15 09:21:23 -04:00
bgfx::destroyFragmentShader(fsh);
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
vsh = bgfx::createVertexShader(vs_font_distance_field);
2013-05-08 13:53:47 -04:00
fsh = bgfx::createFragmentShader(fs_font_distance_field);
m_distanceProgram = bgfx::createProgram(vsh, fsh);
bgfx::destroyVertexShader(vsh);
bgfx::destroyFragmentShader(fsh);
2013-05-15 09:21:23 -04:00
vsh = bgfx::createVertexShader(vs_font_distance_field_subpixel);
2013-05-08 13:53:47 -04:00
fsh = bgfx::createFragmentShader(fs_font_distance_field_subpixel);
m_distanceSubpixelProgram = bgfx::createProgram(vsh, fsh);
bgfx::destroyVertexShader(vsh);
2013-05-15 09:21:23 -04:00
bgfx::destroyFragmentShader(fsh);
m_vertexDecl.begin();
m_vertexDecl.add(bgfx::Attrib::Position, 2, bgfx::AttribType::Float);
m_vertexDecl.add(bgfx::Attrib::TexCoord0, 4, bgfx::AttribType::Int16, true);
m_vertexDecl.add(bgfx::Attrib::Color0, 4, bgfx::AttribType::Uint8, true);
m_vertexDecl.end();
u_texColor = bgfx::createUniform("u_texColor", bgfx::UniformType::Uniform1iv);
u_inverse_gamma = bgfx::createUniform("u_inverse_gamma", bgfx::UniformType::Uniform1f);
}
2013-04-22 16:42:11 -04:00
2013-05-08 13:53:47 -04:00
TextBufferManager::~TextBufferManager()
{
BX_CHECK(m_textBufferHandles.getNumHandles() == 0, "All the text buffers must be destroyed before destroying the manager");
delete[] m_textBuffers;
2013-04-22 16:42:11 -04:00
2013-05-08 13:53:47 -04:00
bgfx::destroyUniform(u_texColor);
bgfx::destroyUniform(u_inverse_gamma);
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
bgfx::destroyProgram(m_basicProgram);
bgfx::destroyProgram(m_distanceProgram);
bgfx::destroyProgram(m_distanceSubpixelProgram);
2013-05-08 13:53:47 -04:00
}
2013-04-22 16:42:11 -04:00
TextBufferHandle TextBufferManager::createTextBuffer(FontType _type, BufferType _bufferType)
2013-05-15 09:21:23 -04:00
{
2013-04-22 16:42:11 -04:00
uint16_t textIdx = m_textBufferHandles.alloc();
BufferCache& bc = m_textBuffers[textIdx];
2013-05-15 09:21:23 -04:00
bc.textBuffer = new TextBuffer(m_fontManager);
bc.fontType = _type;
2013-05-15 09:21:23 -04:00
bc.bufferType = _bufferType;
bc.indexBufferHandle = bgfx::invalidHandle;
bc.vertexBufferHandle = bgfx::invalidHandle;
2013-04-22 16:42:11 -04:00
TextBufferHandle ret = {textIdx};
2013-05-15 09:21:23 -04:00
return ret;
2013-04-22 16:42:11 -04:00
}
void TextBufferManager::destroyTextBuffer(TextBufferHandle _handle)
2013-05-15 09:21:23 -04:00
{
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
BufferCache& bc = m_textBuffers[_handle.idx];
m_textBufferHandles.free(_handle.idx);
delete bc.textBuffer;
bc.textBuffer = NULL;
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
if (bc.vertexBufferHandle == bgfx::invalidHandle)
{
return;
}
switch (bc.bufferType)
2013-04-22 16:42:11 -04:00
{
case STATIC:
2013-05-15 22:42:39 -04:00
{
bgfx::IndexBufferHandle ibh;
bgfx::VertexBufferHandle vbh;
ibh.idx = bc.indexBufferHandle;
vbh.idx = bc.vertexBufferHandle;
bgfx::destroyIndexBuffer(ibh);
bgfx::destroyVertexBuffer(vbh);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
break;
2013-04-22 16:42:11 -04:00
case DYNAMIC:
bgfx::DynamicIndexBufferHandle ibh;
bgfx::DynamicVertexBufferHandle vbh;
ibh.idx = bc.indexBufferHandle;
vbh.idx = bc.vertexBufferHandle;
2013-04-22 16:42:11 -04:00
bgfx::destroyDynamicIndexBuffer(ibh);
bgfx::destroyDynamicVertexBuffer(vbh);
2013-05-15 09:21:23 -04:00
2013-04-22 16:42:11 -04:00
break;
2013-05-15 09:21:23 -04:00
2013-04-22 16:42:11 -04:00
case TRANSIENT: //naturally destroyed
2013-05-15 09:21:23 -04:00
break;
}
2013-04-22 16:42:11 -04:00
}
void TextBufferManager::submitTextBuffer(TextBufferHandle _handle, uint8_t _id, int32_t _depth)
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
uint32_t indexSize = bc.textBuffer->getIndexCount() * bc.textBuffer->getIndexSize();
uint32_t vertexSize = bc.textBuffer->getVertexCount() * bc.textBuffer->getVertexSize();
2013-04-22 16:42:11 -04:00
const bgfx::Memory* mem;
2013-05-15 09:21:23 -04:00
bgfx::setTexture(0, u_texColor, m_fontManager->getAtlas()->getTextureHandle() );
float inverse_gamme = 1.0f / 2.2f;
bgfx::setUniform(u_inverse_gamma, &inverse_gamme);
2013-05-15 09:21:23 -04:00
switch (bc.fontType)
2013-04-22 16:42:11 -04:00
{
case FONT_TYPE_ALPHA:
bgfx::setProgram(m_basicProgram);
2013-05-15 09:21:23 -04:00
bgfx::setState(BGFX_STATE_RGB_WRITE | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_SRC_ALPHA, BGFX_STATE_BLEND_INV_SRC_ALPHA) );
2013-04-22 16:42:11 -04:00
break;
2013-05-15 09:21:23 -04:00
2013-04-22 16:42:11 -04:00
case FONT_TYPE_DISTANCE:
bgfx::setProgram(m_distanceProgram);
2013-05-15 09:21:23 -04:00
bgfx::setState(BGFX_STATE_RGB_WRITE | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_SRC_ALPHA, BGFX_STATE_BLEND_INV_SRC_ALPHA) );
2013-04-22 16:42:11 -04:00
break;
2013-05-15 09:21:23 -04:00
2013-04-22 16:42:11 -04:00
case FONT_TYPE_DISTANCE_SUBPIXEL:
bgfx::setProgram(m_distanceSubpixelProgram);
2013-05-15 09:21:23 -04:00
bgfx::setState(BGFX_STATE_RGB_WRITE | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_FACTOR, BGFX_STATE_BLEND_INV_SRC_COLOR), bc.textBuffer->getTextColor() );
break;
}
2013-04-22 16:42:11 -04:00
2013-05-15 09:21:23 -04:00
switch (bc.bufferType)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
case STATIC:
{
2013-05-15 22:42:39 -04:00
bgfx::IndexBufferHandle ibh;
bgfx::VertexBufferHandle vbh;
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
if (bc.vertexBufferHandle == bgfx::invalidHandle)
{
mem = bgfx::alloc(indexSize);
memcpy(mem->data, bc.textBuffer->getIndexBuffer(), indexSize);
ibh = bgfx::createIndexBuffer(mem);
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
mem = bgfx::alloc(vertexSize);
memcpy(mem->data, bc.textBuffer->getVertexBuffer(), vertexSize);
vbh = bgfx::createVertexBuffer(mem, m_vertexDecl);
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
bc.indexBufferHandle = ibh.idx;
bc.vertexBufferHandle = vbh.idx;
}
else
{
ibh.idx = bc.indexBufferHandle;
vbh.idx = bc.vertexBufferHandle;
}
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
bgfx::setVertexBuffer(vbh, bc.textBuffer->getVertexCount() );
bgfx::setIndexBuffer(ibh, bc.textBuffer->getIndexCount() );
} break;
2013-04-22 16:42:11 -04:00
2013-05-15 22:42:39 -04:00
case DYNAMIC:
2013-05-15 09:21:23 -04:00
{
2013-05-15 22:42:39 -04:00
bgfx::DynamicIndexBufferHandle ibh;
bgfx::DynamicVertexBufferHandle vbh;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
if (bc.vertexBufferHandle == bgfx::invalidHandle)
{
mem = bgfx::alloc(indexSize);
memcpy(mem->data, bc.textBuffer->getIndexBuffer(), indexSize);
ibh = bgfx::createDynamicIndexBuffer(mem);
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
mem = bgfx::alloc(vertexSize);
memcpy(mem->data, bc.textBuffer->getVertexBuffer(), vertexSize);
vbh = bgfx::createDynamicVertexBuffer(mem, m_vertexDecl);
bc.indexBufferHandle = ibh.idx;
bc.vertexBufferHandle = vbh.idx;
}
else
{
ibh.idx = bc.indexBufferHandle;
vbh.idx = bc.vertexBufferHandle;
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
mem = bgfx::alloc(indexSize);
memcpy(mem->data, bc.textBuffer->getIndexBuffer(), indexSize);
bgfx::updateDynamicIndexBuffer(ibh, mem);
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
mem = bgfx::alloc(vertexSize);
memcpy(mem->data, bc.textBuffer->getVertexBuffer(), vertexSize);
bgfx::updateDynamicVertexBuffer(vbh, mem);
}
2013-05-15 09:21:23 -04:00
2013-05-15 22:42:39 -04:00
bgfx::setVertexBuffer(vbh, bc.textBuffer->getVertexCount() );
bgfx::setIndexBuffer(ibh, bc.textBuffer->getIndexCount() );
} break;
2013-05-15 09:21:23 -04:00
case TRANSIENT:
2013-05-15 22:42:39 -04:00
{
bgfx::TransientIndexBuffer tib;
bgfx::TransientVertexBuffer tvb;
bgfx::allocTransientIndexBuffer(&tib, bc.textBuffer->getIndexCount() );
bgfx::allocTransientVertexBuffer(&tvb, bc.textBuffer->getVertexCount(), m_vertexDecl);
memcpy(tib.data, bc.textBuffer->getIndexBuffer(), indexSize);
memcpy(tvb.data, bc.textBuffer->getVertexBuffer(), vertexSize);
bgfx::setVertexBuffer(&tvb, bc.textBuffer->getVertexCount() );
bgfx::setIndexBuffer(&tib, bc.textBuffer->getIndexCount() );
} break;
2013-04-22 16:42:11 -04:00
}
bgfx::submit(_id, _depth);
}
void TextBufferManager::submitTextBufferMask(TextBufferHandle /*_handle*/, uint32_t /*_viewMask*/, int32_t /*_depth*/)
{
//TODO
2013-04-23 17:14:32 -04:00
BX_CHECK(false, "TODO TODO");
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setStyle(TextBufferHandle _handle, uint32_t _flags)
{
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setStyle(_flags);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setTextColor(TextBufferHandle _handle, uint32_t _rgba)
{
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setTextColor(_rgba);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setBackgroundColor(TextBufferHandle _handle, uint32_t _rgba)
{
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setBackgroundColor(_rgba);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setOverlineColor(TextBufferHandle _handle, uint32_t _rgba)
{
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setOverlineColor(_rgba);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setUnderlineColor(TextBufferHandle _handle, uint32_t _rgba)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setUnderlineColor(_rgba);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setStrikeThroughColor(TextBufferHandle _handle, uint32_t _rgba)
{
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setStrikeThroughColor(_rgba);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::setPenPosition(TextBufferHandle _handle, float _x, float _y)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
2013-05-15 09:21:23 -04:00
bc.textBuffer->setPenPosition(_x, _y);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::appendText(TextBufferHandle _handle, FontHandle _fontHandle, const char* _string)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
bc.textBuffer->appendText(_fontHandle, _string);
2013-04-22 16:42:11 -04:00
}
2013-05-15 09:21:23 -04:00
void TextBufferManager::appendText(TextBufferHandle _handle, FontHandle _fontHandle, const wchar_t* _string)
2013-04-22 16:42:11 -04:00
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
bc.textBuffer->appendText(_fontHandle, _string);
2013-04-22 16:42:11 -04:00
}
void TextBufferManager::clearTextBuffer(TextBufferHandle _handle)
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-04-22 16:42:11 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
bc.textBuffer->clearTextBuffer();
2013-04-22 16:42:11 -04:00
}
2013-05-08 17:55:54 -04:00
TextRectangle TextBufferManager::getRectangle(TextBufferHandle _handle) const
{
2013-05-15 09:21:23 -04:00
BX_CHECK(bgfx::invalidHandle != _handle.idx, "Invalid handle used");
2013-05-08 17:55:54 -04:00
BufferCache& bc = m_textBuffers[_handle.idx];
return bc.textBuffer->getRectangle();
2013-05-08 17:55:54 -04:00
}