ddnet/src/engine/client/text.cpp

1981 lines
60 KiB
C++
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#include <base/math.h>
#include <base/system.h>
2010-05-29 07:25:38 +00:00
#include <engine/graphics.h>
#include <engine/shared/config.h>
#include <engine/storage.h>
#include <engine/textrender.h>
2010-05-29 07:25:38 +00:00
// ft2 texture
#include <ft2build.h>
#include FT_FREETYPE_H
// TODO: Refactor: clean this up
enum
{
MAX_CHARACTERS = 64,
};
#include <map>
#include <vector>
2010-05-29 07:25:38 +00:00
struct SFontSizeChar
2010-05-29 07:25:38 +00:00
{
int m_ID;
2010-05-29 07:25:38 +00:00
// these values are scaled to the pFont size
// width * font_size == real_size
float m_Width;
float m_Height;
float m_OffsetX;
float m_OffsetY;
float m_AdvanceX;
float m_aUVs[4];
2010-05-29 07:25:38 +00:00
int64 m_TouchTime;
FT_UInt m_GlyphIndex;
2010-05-29 07:25:38 +00:00
};
struct STextCharQuadVertexColor
2010-05-29 07:25:38 +00:00
{
unsigned char m_R, m_G, m_B, m_A;
};
struct STextCharQuadVertex
{
STextCharQuadVertex()
{
m_Color.m_R = m_Color.m_G = m_Color.m_B = m_Color.m_A = 255;
}
float m_X, m_Y;
// do not use normalized floats as coordinates, since the texture might grow
float m_U, m_V;
STextCharQuadVertexColor m_Color;
};
struct STextCharQuad
{
STextCharQuadVertex m_Vertices[4];
};
struct STextureSkyline
{
// the height of each column
std::vector<int> m_CurHeightOfPixelColumn;
};
struct CFontSizeData
{
int m_FontSize;
FT_Face *m_pFace;
2019-04-26 19:36:49 +00:00
std::map<int, SFontSizeChar> m_Chars;
2010-05-29 07:25:38 +00:00
};
#define MIN_FONT_SIZE 6
#define MAX_FONT_SIZE 128
#define NUM_FONT_SIZES MAX_FONT_SIZE - MIN_FONT_SIZE + 1
class CFont
2010-05-29 07:25:38 +00:00
{
public:
2020-09-30 21:38:05 +00:00
~CFont()
{
free(m_pBuf);
delete[] m_TextureData[0];
delete[] m_TextureData[1];
for(size_t i = 0; i < m_FtFallbackFonts.size(); i++)
{
free(m_FtFallbackFonts[i].m_pBuf);
}
}
void InitFontSizes()
{
for(int i = 0; i < NUM_FONT_SIZES; ++i)
{
m_aFontSizes[i].m_FontSize = i + MIN_FONT_SIZE;
m_aFontSizes[i].m_pFace = &this->m_FtFace;
m_aFontSizes[i].m_Chars.clear();
}
}
2019-04-26 19:36:49 +00:00
CFontSizeData *GetFontSize(int Pixelsize)
{
int FontSize = (Pixelsize >= MIN_FONT_SIZE ? (Pixelsize > MAX_FONT_SIZE ? MAX_FONT_SIZE : Pixelsize) : MIN_FONT_SIZE);
return &m_aFontSizes[FontSize - MIN_FONT_SIZE];
}
2020-09-30 21:38:05 +00:00
void *m_pBuf;
2010-10-06 21:07:35 +00:00
char m_aFilename[512];
2010-05-29 07:25:38 +00:00
FT_Face m_FtFace;
2020-08-20 09:22:25 +00:00
struct SFontFallBack
{
2020-09-30 21:38:05 +00:00
void *m_pBuf;
2020-08-20 09:22:25 +00:00
char m_aFilename[512];
FT_Face m_FtFace;
};
std::vector<SFontFallBack> m_FtFallbackFonts;
CFontSizeData m_aFontSizes[NUM_FONT_SIZES];
2019-04-26 19:36:49 +00:00
IGraphics::CTextureHandle m_aTextures[2];
// keep the full texture, because opengl doesn't provide texture copying
unsigned char *m_TextureData[2];
// width and height are the same
int m_CurTextureDimensions[2];
STextureSkyline m_TextureSkyline[2];
};
struct STextString
{
int m_QuadBufferObjectIndex;
int m_QuadBufferContainerIndex;
size_t m_QuadNum;
int m_SelectionQuadContainerIndex;
std::vector<STextCharQuad> m_CharacterQuads;
};
struct STextContainer
{
STextContainer() { Reset(); }
CFont *m_pFont;
int m_FontSize;
STextString m_StringInfo;
// keep these values to calculate offsets
float m_AlignedStartX;
float m_AlignedStartY;
float m_X;
float m_Y;
int m_Flags;
int m_LineCount;
int m_GlyphCount;
int m_CharCount;
int m_MaxLines;
float m_StartX;
float m_StartY;
float m_LineWidth;
float m_UnscaledFontSize;
int m_RenderFlags;
void Reset()
{
m_pFont = NULL;
m_FontSize = 0;
m_StringInfo.m_QuadBufferObjectIndex = m_StringInfo.m_QuadBufferContainerIndex = m_StringInfo.m_SelectionQuadContainerIndex = -1;
m_StringInfo.m_QuadNum = 0;
m_StringInfo.m_CharacterQuads.clear();
m_AlignedStartX = m_AlignedStartY = m_X = m_Y = 0.f;
m_Flags = m_LineCount = m_CharCount = m_GlyphCount = 0;
m_MaxLines = -1;
m_StartX = m_StartY = 0.f;
m_LineWidth = -1.f;
m_UnscaledFontSize = 0.f;
m_RenderFlags = 0;
}
2010-05-29 07:25:38 +00:00
};
class CTextRender : public IEngineTextRender
{
IGraphics *m_pGraphics;
IGraphics *Graphics() { return m_pGraphics; }
unsigned int m_RenderFlags;
std::vector<STextContainer> m_TextContainers;
std::vector<int> m_TextContainerIndices;
int m_FirstFreeTextContainerIndex;
SBufferContainerInfo m_DefaultTextContainerInfo;
2019-04-26 19:36:49 +00:00
std::vector<CFont *> m_Fonts;
CFont *m_pCurFont;
int GetFreeTextContainerIndex()
{
if(m_FirstFreeTextContainerIndex == -1)
{
int Index = (int)m_TextContainerIndices.size();
m_TextContainerIndices.push_back(Index);
return Index;
}
else
{
int Index = m_FirstFreeTextContainerIndex;
m_FirstFreeTextContainerIndex = m_TextContainerIndices[Index];
m_TextContainerIndices[Index] = Index;
return Index;
}
}
void FreeTextContainerIndex(int Index)
{
m_TextContainerIndices[Index] = m_FirstFreeTextContainerIndex;
m_FirstFreeTextContainerIndex = Index;
}
2020-10-13 20:08:52 +00:00
void FreeTextContainer(int Index)
{
m_TextContainers[Index].Reset();
FreeTextContainerIndex(Index);
}
STextContainer &GetTextContainer(int Index)
{
2019-04-26 19:36:49 +00:00
if(Index >= (int)m_TextContainers.size())
{
int Size = (int)m_TextContainers.size();
for(int i = 0; i < (Index + 1) - Size; ++i)
m_TextContainers.push_back(STextContainer());
}
return m_TextContainers[Index];
}
2010-05-29 07:25:38 +00:00
int WordLength(const char *pText)
{
int Length = 0;
2010-05-29 07:25:38 +00:00
while(1)
{
const char *pCursor = (pText + Length);
if(*pCursor == 0)
return Length;
if(*pCursor == '\n' || *pCursor == '\t' || *pCursor == ' ')
return Length + 1;
Length = str_utf8_forward(pText, Length);
2010-05-29 07:25:38 +00:00
}
}
2019-04-26 22:34:20 +00:00
ColorRGBA m_Color;
ColorRGBA m_OutlineColor;
CFont *m_pDefaultFont;
2010-05-29 07:25:38 +00:00
FT_Library m_FTLibrary;
2019-04-26 19:36:49 +00:00
virtual void SetRenderFlags(unsigned int Flags)
{
m_RenderFlags = Flags;
}
2019-04-26 19:36:49 +00:00
2020-09-14 14:42:33 +00:00
void Grow(unsigned char *pIn, unsigned char *pOut, int w, int h, int OutlineCount)
2010-05-29 07:25:38 +00:00
{
for(int y = 0; y < h; y++)
for(int x = 0; x < w; x++)
{
int c = pIn[y * w + x];
2010-05-29 07:25:38 +00:00
2020-09-14 14:42:33 +00:00
for(int sy = -OutlineCount; sy <= OutlineCount; sy++)
for(int sx = -OutlineCount; sx <= OutlineCount; sx++)
2010-05-29 07:25:38 +00:00
{
int GetX = x + sx;
int GetY = y + sy;
if(GetX >= 0 && GetY >= 0 && GetX < w && GetY < h)
2010-05-29 07:25:38 +00:00
{
int Index = GetY * w + GetX;
2010-05-29 07:25:38 +00:00
if(pIn[Index] > c)
c = pIn[Index];
2010-05-29 07:25:38 +00:00
}
}
pOut[y * w + x] = c;
2010-05-29 07:25:38 +00:00
}
}
IGraphics::CTextureHandle InitTexture(int Width, int Height, void *pUploadData = NULL)
2019-04-26 19:36:49 +00:00
{
void *pMem = NULL;
if(pUploadData)
{
pMem = pUploadData;
}
else
{
pMem = calloc((size_t)Width * Height, 1);
}
IGraphics::CTextureHandle Texture = Graphics()->LoadTextureRaw(Width, Height, CImageInfo::FORMAT_ALPHA, pMem, CImageInfo::FORMAT_ALPHA, IGraphics::TEXLOAD_NOMIPMAPS | IGraphics::TEXLOAD_NO_COMPRESSION);
if(!pUploadData)
free(pMem);
return Texture;
}
void UnloadTexture(IGraphics::CTextureHandle Index)
2010-05-29 07:25:38 +00:00
{
Graphics()->UnloadTexture(Index);
}
void IncreaseFontTexture(CFont *pFont, int TextureIndex)
{
int NewDimensions = pFont->m_CurTextureDimensions[TextureIndex] * 2;
unsigned char *pTmpTexBuffer = new unsigned char[NewDimensions * NewDimensions];
mem_zero(pTmpTexBuffer, (size_t)NewDimensions * NewDimensions * sizeof(unsigned char));
for(int y = 0; y < pFont->m_CurTextureDimensions[TextureIndex]; ++y)
{
for(int x = 0; x < pFont->m_CurTextureDimensions[TextureIndex]; ++x)
{
pTmpTexBuffer[x + y * NewDimensions] = pFont->m_TextureData[TextureIndex][x + y * pFont->m_CurTextureDimensions[TextureIndex]];
}
}
UnloadTexture(pFont->m_aTextures[TextureIndex]);
pFont->m_aTextures[TextureIndex] = InitTexture(NewDimensions, NewDimensions, pTmpTexBuffer);
2019-04-26 19:36:49 +00:00
delete[] pFont->m_TextureData[TextureIndex];
pFont->m_TextureData[TextureIndex] = pTmpTexBuffer;
pFont->m_CurTextureDimensions[TextureIndex] = NewDimensions;
pFont->m_TextureSkyline[TextureIndex].m_CurHeightOfPixelColumn.resize(NewDimensions, 0);
2010-05-29 07:25:38 +00:00
}
int AdjustOutlineThicknessToFontSize(int OutlineThickness, int FontSize)
{
if(FontSize > 48)
OutlineThickness *= 4;
else if(FontSize >= 18)
OutlineThickness *= 2;
return OutlineThickness;
}
void UploadGlyph(CFont *pFont, int TextureIndex, int PosX, int PosY, int Width, int Height, const unsigned char *pData)
2010-05-29 07:25:38 +00:00
{
for(int y = 0; y < Height; ++y)
{
for(int x = 0; x < Width; ++x)
{
pFont->m_TextureData[TextureIndex][x + PosX + ((y + PosY) * pFont->m_CurTextureDimensions[TextureIndex])] = pData[x + y * Width];
}
}
Graphics()->LoadTextureRawSub(pFont->m_aTextures[TextureIndex], PosX, PosY, Width, Height, CImageInfo::FORMAT_ALPHA, pData);
2010-05-29 07:25:38 +00:00
}
// 128k * 2 of data used for rendering glyphs
unsigned char ms_aGlyphData[(1024 / 4) * (1024 / 4)];
unsigned char ms_aGlyphDataOutlined[(1024 / 4) * (1024 / 4)];
bool GetCharacterSpace(CFont *pFont, int TextureIndex, int Width, int Height, int &PosX, int &PosY)
2010-05-29 07:25:38 +00:00
{
if(pFont->m_CurTextureDimensions[TextureIndex] < Width)
return false;
if(pFont->m_CurTextureDimensions[TextureIndex] < Height)
return false;
2010-05-29 07:25:38 +00:00
2018-03-26 03:08:21 +00:00
// skyline bottom left algorithm
std::vector<int> &SkylineHeights = pFont->m_TextureSkyline[TextureIndex].m_CurHeightOfPixelColumn;
2018-03-26 03:08:21 +00:00
// search a fitting area with less pixel loss
int SmallestPixelLossAreaX = 0;
int SmallestPixelLossAreaY = pFont->m_CurTextureDimensions[TextureIndex] + 1;
int SmallestPixelLossCurPixelLoss = pFont->m_CurTextureDimensions[TextureIndex] * pFont->m_CurTextureDimensions[TextureIndex];
bool FoundAnyArea = false;
for(size_t i = 0; i < SkylineHeights.size(); i++)
2010-05-29 07:25:38 +00:00
{
int CurHeight = SkylineHeights[i];
int CurPixelLoss = 0;
// find width pixels, and we are happy
int AreaWidth = 1;
for(size_t n = i + 1; n < i + Width && n < SkylineHeights.size(); ++n)
2010-05-29 07:25:38 +00:00
{
2018-03-26 03:08:21 +00:00
++AreaWidth;
if(SkylineHeights[n] <= CurHeight)
{
CurPixelLoss += CurHeight - SkylineHeights[n];
}
// if the height changed, we will use that new height and adjust the pixel loss
else
{
CurPixelLoss = 0;
CurHeight = SkylineHeights[n];
for(size_t l = i; l <= n; ++l)
{
CurPixelLoss += CurHeight - SkylineHeights[l];
}
}
2010-05-29 07:25:38 +00:00
}
// if the area is too high, continue
if(CurHeight + Height > pFont->m_CurTextureDimensions[TextureIndex])
continue;
// if the found area fits our needs, check if we can use it
if(AreaWidth == Width)
2010-05-29 07:25:38 +00:00
{
if(SmallestPixelLossCurPixelLoss >= CurPixelLoss)
{
if(CurHeight < SmallestPixelLossAreaY)
{
SmallestPixelLossCurPixelLoss = CurPixelLoss;
SmallestPixelLossAreaX = (int)i;
SmallestPixelLossAreaY = CurHeight;
FoundAnyArea = true;
if(CurPixelLoss == 0)
break;
}
}
2010-05-29 07:25:38 +00:00
}
}
if(FoundAnyArea)
{
PosX = SmallestPixelLossAreaX;
PosY = SmallestPixelLossAreaY;
for(int i = PosX; i < PosX + Width; ++i)
{
SkylineHeights[i] = PosY + Height;
}
return true;
2010-05-29 07:25:38 +00:00
}
else
return false;
2010-05-29 07:25:38 +00:00
}
2020-08-20 09:22:25 +00:00
void RenderGlyph(CFont *pFont, CFontSizeData *pSizeData, int Chr)
2010-05-29 07:25:38 +00:00
{
FT_Bitmap *pBitmap;
2010-05-29 07:25:38 +00:00
int x = 1;
int y = 1;
unsigned int px, py;
2010-05-29 07:25:38 +00:00
2020-08-20 09:22:25 +00:00
FT_Face FtFace = pFont->m_FtFace;
2020-08-20 09:22:25 +00:00
FT_Set_Pixel_Sizes(FtFace, 0, pSizeData->m_FontSize);
2010-05-29 07:25:38 +00:00
FT_UInt GlyphIndex = 0;
2020-08-20 09:22:25 +00:00
if(FtFace->charmap)
GlyphIndex = FT_Get_Char_Index(FtFace, (FT_ULong)Chr);
if(GlyphIndex == 0)
{
for(CFont::SFontFallBack &FallbackFont : pFont->m_FtFallbackFonts)
{
2020-08-20 09:22:25 +00:00
FtFace = FallbackFont.m_FtFace;
FT_Set_Pixel_Sizes(FtFace, 0, pSizeData->m_FontSize);
if(FtFace->charmap)
GlyphIndex = FT_Get_Char_Index(FtFace, (FT_ULong)Chr);
2020-08-20 09:22:25 +00:00
if(GlyphIndex != 0)
break;
}
if(GlyphIndex == 0)
{
const int ReplacementChr = 0x25a1; // White square to indicate missing glyph
2020-08-20 09:22:25 +00:00
FtFace = pFont->m_FtFace;
GlyphIndex = FT_Get_Char_Index(FtFace, (FT_ULong)ReplacementChr);
if(GlyphIndex == 0)
{
dbg_msg("textrender", "font has no glyph for either %d or replacement char %d", Chr, ReplacementChr);
return;
}
}
}
if(FT_Load_Glyph(FtFace, GlyphIndex, FT_LOAD_RENDER | FT_LOAD_NO_BITMAP))
2010-05-29 07:25:38 +00:00
{
dbg_msg("textrender", "error loading glyph %d", Chr);
return;
2010-05-29 07:25:38 +00:00
}
2020-08-20 09:22:25 +00:00
pBitmap = &FtFace->glyph->bitmap; // ignore_convention
2019-04-26 19:36:49 +00:00
2010-05-29 07:25:38 +00:00
// adjust spacing
int OutlineThickness = AdjustOutlineThicknessToFontSize(1, pSizeData->m_FontSize);
2010-05-29 07:25:38 +00:00
x += OutlineThickness;
y += OutlineThickness;
unsigned int Width = pBitmap->width + x * 2;
unsigned int Height = pBitmap->rows + y * 2;
2010-05-29 07:25:38 +00:00
// prepare glyph data
mem_zero(ms_aGlyphData, Width * Height);
for(py = 0; py < pBitmap->rows; py++) // ignore_convention
for(px = 0; px < pBitmap->width; px++) // ignore_convention
ms_aGlyphData[(py + y) * Width + px + x] = pBitmap->buffer[py * pBitmap->width + px]; // ignore_convention
2019-04-26 19:36:49 +00:00
2010-05-29 07:25:38 +00:00
// upload the glyph
int X = 0;
int Y = 0;
2020-08-20 09:22:25 +00:00
while(!GetCharacterSpace(pFont, 0, (int)Width, (int)Height, X, Y))
{
2020-08-20 09:22:25 +00:00
IncreaseFontTexture(pFont, 0);
}
2020-08-20 09:22:25 +00:00
UploadGlyph(pFont, 0, X, Y, (int)Width, (int)Height, ms_aGlyphData);
2020-09-14 14:42:33 +00:00
Grow(ms_aGlyphData, ms_aGlyphDataOutlined, Width, Height, OutlineThickness);
while(!GetCharacterSpace(pFont, 1, (int)Width, (int)Height, X, Y))
2010-05-29 07:25:38 +00:00
{
2020-09-14 14:42:33 +00:00
IncreaseFontTexture(pFont, 1);
2010-05-29 07:25:38 +00:00
}
2020-09-14 14:42:33 +00:00
UploadGlyph(pFont, 1, X, Y, (int)Width, (int)Height, ms_aGlyphDataOutlined);
2010-05-29 07:25:38 +00:00
// set char info
{
SFontSizeChar *pFontchr = &pSizeData->m_Chars[Chr];
int BMPHeight = pBitmap->rows + y * 2;
int BMPWidth = pBitmap->width + x * 2;
pFontchr->m_ID = Chr;
pFontchr->m_Height = Height;
pFontchr->m_Width = Width;
2020-08-20 09:22:25 +00:00
pFontchr->m_OffsetX = (FtFace->glyph->metrics.horiBearingX >> 6); // ignore_convention
pFontchr->m_OffsetY = -((FtFace->glyph->metrics.height >> 6) - (FtFace->glyph->metrics.horiBearingY >> 6));
pFontchr->m_AdvanceX = (FtFace->glyph->advance.x >> 6); // ignore_convention
pFontchr->m_aUVs[0] = X;
pFontchr->m_aUVs[1] = Y;
pFontchr->m_aUVs[2] = pFontchr->m_aUVs[0] + BMPWidth;
pFontchr->m_aUVs[3] = pFontchr->m_aUVs[1] + BMPHeight;
pFontchr->m_GlyphIndex = GlyphIndex;
2010-05-29 07:25:38 +00:00
}
}
2020-08-20 09:22:25 +00:00
SFontSizeChar *GetChar(CFont *pFont, CFontSizeData *pSizeData, int Chr)
2010-05-29 07:25:38 +00:00
{
std::map<int, SFontSizeChar>::iterator it = pSizeData->m_Chars.find(Chr);
if(it == pSizeData->m_Chars.end())
2010-05-29 07:25:38 +00:00
{
// render and add character
SFontSizeChar &FontSizeChr = pSizeData->m_Chars[Chr];
2019-04-26 19:36:49 +00:00
2020-08-20 09:22:25 +00:00
RenderGlyph(pFont, pSizeData, Chr);
2019-04-26 19:36:49 +00:00
return &FontSizeChr;
2010-05-29 07:25:38 +00:00
}
else
2010-05-29 07:25:38 +00:00
{
return &it->second;
2010-05-29 07:25:38 +00:00
}
}
2019-04-26 19:36:49 +00:00
float Kerning(CFont *pFont, FT_UInt GlyphIndexLeft, FT_UInt GlyphIndexRight)
2010-05-29 07:25:38 +00:00
{
FT_Vector Kerning = {0, 0};
FT_Get_Kerning(pFont->m_FtFace, GlyphIndexLeft, GlyphIndexRight, FT_KERNING_DEFAULT, &Kerning);
return (Kerning.x >> 6);
2010-05-29 07:25:38 +00:00
}
2010-05-29 07:25:38 +00:00
public:
CTextRender()
{
m_pGraphics = 0;
m_Color = ColorRGBA(1, 1, 1, 1);
2019-04-26 22:34:20 +00:00
m_OutlineColor = ColorRGBA(0, 0, 0, 0.3f);
2010-05-29 07:25:38 +00:00
m_pCurFont = 0;
2010-05-29 07:25:38 +00:00
m_pDefaultFont = 0;
2017-07-21 18:45:23 +00:00
m_FTLibrary = 0;
2010-05-29 07:25:38 +00:00
// GL_LUMINANCE can be good for debugging
//m_FontTextureFormat = GL_ALPHA;
m_RenderFlags = 0;
2010-05-29 07:25:38 +00:00
}
virtual ~CTextRender()
{
for(size_t i = 0; i < m_Fonts.size(); ++i)
{
2020-09-30 21:38:05 +00:00
FT_Done_Face(m_Fonts[i]->m_FtFace);
for(CFont::SFontFallBack &FallbackFont : m_Fonts[i]->m_FtFallbackFonts)
{
FT_Done_Face(FallbackFont.m_FtFace);
}
delete m_Fonts[i];
}
2017-07-21 18:45:23 +00:00
2017-07-28 18:44:03 +00:00
if(m_FTLibrary != 0)
2017-07-21 18:45:23 +00:00
FT_Done_FreeType(m_FTLibrary);
}
2010-05-29 07:25:38 +00:00
virtual void Init()
{
m_pGraphics = Kernel()->RequestInterface<IGraphics>();
FT_Init_FreeType(&m_FTLibrary);
2020-03-20 12:48:45 +00:00
// print freetype version
{
int LMajor, LMinor, LPatch;
FT_Library_Version(m_FTLibrary, &LMajor, &LMinor, &LPatch);
dbg_msg("freetype", "freetype version %d.%d.%d (compiled = %d.%d.%d)", LMajor, LMinor, LPatch,
FREETYPE_MAJOR, FREETYPE_MINOR, FREETYPE_PATCH);
2020-03-20 12:48:45 +00:00
}
m_FirstFreeTextContainerIndex = -1;
m_DefaultTextContainerInfo.m_Stride = sizeof(STextCharQuadVertex);
m_DefaultTextContainerInfo.m_Attributes.push_back(SBufferContainerInfo::SAttribute());
SBufferContainerInfo::SAttribute *pAttr = &m_DefaultTextContainerInfo.m_Attributes.back();
pAttr->m_DataTypeCount = 2;
pAttr->m_FuncType = 0;
pAttr->m_Normalized = false;
pAttr->m_pOffset = 0;
pAttr->m_Type = GRAPHICS_TYPE_FLOAT;
pAttr->m_VertBufferBindingIndex = -1;
m_DefaultTextContainerInfo.m_Attributes.push_back(SBufferContainerInfo::SAttribute());
pAttr = &m_DefaultTextContainerInfo.m_Attributes.back();
pAttr->m_DataTypeCount = 2;
pAttr->m_FuncType = 0;
pAttr->m_Normalized = false;
pAttr->m_pOffset = (void *)(sizeof(float) * 2);
pAttr->m_Type = GRAPHICS_TYPE_FLOAT;
pAttr->m_VertBufferBindingIndex = -1;
m_DefaultTextContainerInfo.m_Attributes.push_back(SBufferContainerInfo::SAttribute());
pAttr = &m_DefaultTextContainerInfo.m_Attributes.back();
pAttr->m_DataTypeCount = 4;
pAttr->m_FuncType = 0;
pAttr->m_Normalized = true;
pAttr->m_pOffset = (void *)(sizeof(float) * 2 + sizeof(float) * 2);
pAttr->m_Type = GRAPHICS_TYPE_UNSIGNED_BYTE;
pAttr->m_VertBufferBindingIndex = -1;
IStorage *pStorage = Kernel()->RequestInterface<IStorage>();
char aFilename[512];
const char *pFontFile = "fonts/Icons.ttf";
IOHANDLE File = pStorage->OpenFile(pFontFile, IOFLAG_READ, IStorage::TYPE_ALL, aFilename, sizeof(aFilename));
if(File)
{
size_t Size = io_length(File);
unsigned char *pBuf = (unsigned char *)malloc(Size);
io_read(File, pBuf, Size);
io_close(File);
LoadFont(aFilename, pBuf, Size);
}
2010-05-29 07:25:38 +00:00
}
2019-04-26 19:36:49 +00:00
virtual CFont *LoadFont(const char *pFilename, const unsigned char *pBuf, size_t Size)
2010-05-29 07:25:38 +00:00
{
CFont *pFont = new CFont();
2010-05-29 07:25:38 +00:00
str_copy(pFont->m_aFilename, pFilename, sizeof(pFont->m_aFilename));
if(FT_New_Memory_Face(m_FTLibrary, pBuf, Size, 0, &pFont->m_FtFace))
2010-05-29 07:25:38 +00:00
{
delete pFont;
2010-05-29 07:25:38 +00:00
return NULL;
}
dbg_msg("textrender", "loaded pFont from '%s'", pFilename);
2020-09-30 21:38:05 +00:00
pFont->m_pBuf = (void *)pBuf;
2020-09-03 12:18:44 +00:00
pFont->m_CurTextureDimensions[0] = 1024;
pFont->m_TextureData[0] = new unsigned char[pFont->m_CurTextureDimensions[0] * pFont->m_CurTextureDimensions[0]];
mem_zero(pFont->m_TextureData[0], (size_t)pFont->m_CurTextureDimensions[0] * pFont->m_CurTextureDimensions[0] * sizeof(unsigned char));
2020-09-03 12:18:44 +00:00
pFont->m_CurTextureDimensions[1] = 1024;
pFont->m_TextureData[1] = new unsigned char[pFont->m_CurTextureDimensions[1] * pFont->m_CurTextureDimensions[1]];
mem_zero(pFont->m_TextureData[1], (size_t)pFont->m_CurTextureDimensions[1] * pFont->m_CurTextureDimensions[1] * sizeof(unsigned char));
pFont->m_aTextures[0] = InitTexture(pFont->m_CurTextureDimensions[0], pFont->m_CurTextureDimensions[0]);
pFont->m_aTextures[1] = InitTexture(pFont->m_CurTextureDimensions[1], pFont->m_CurTextureDimensions[1]);
pFont->m_TextureSkyline[0].m_CurHeightOfPixelColumn.resize(pFont->m_CurTextureDimensions[0], 0);
pFont->m_TextureSkyline[1].m_CurHeightOfPixelColumn.resize(pFont->m_CurTextureDimensions[1], 0);
2019-04-26 19:36:49 +00:00
pFont->InitFontSizes();
m_Fonts.push_back(pFont);
2010-05-29 07:25:38 +00:00
return pFont;
2020-08-20 09:22:25 +00:00
}
virtual bool LoadFallbackFont(CFont *pFont, const char *pFilename, const unsigned char *pBuf, size_t Size)
2020-08-20 09:22:25 +00:00
{
CFont::SFontFallBack FallbackFont;
2020-09-30 21:38:05 +00:00
FallbackFont.m_pBuf = (void *)pBuf;
2020-08-20 09:22:25 +00:00
str_copy(FallbackFont.m_aFilename, pFilename, sizeof(FallbackFont.m_aFilename));
if(FT_New_Memory_Face(m_FTLibrary, pBuf, Size, 0, &FallbackFont.m_FtFace) == 0)
2020-08-20 09:22:25 +00:00
{
dbg_msg("textrender", "loaded fallback font from '%s'", pFilename);
pFont->m_FtFallbackFonts.emplace_back(std::move(FallbackFont));
return true;
}
return false;
}
2019-04-26 19:36:49 +00:00
virtual CFont *GetFont(int FontIndex)
{
if(FontIndex >= 0 && FontIndex < (int)m_Fonts.size())
return m_Fonts[FontIndex];
return NULL;
}
CFont *GetFont(const char *pFilename)
{
for(size_t i = 0; i < m_Fonts.size(); ++i)
{
if(str_comp(pFilename, m_Fonts[i]->m_aFilename) == 0)
return m_Fonts[i];
}
return NULL;
}
2010-05-29 07:25:38 +00:00
2020-08-20 09:22:25 +00:00
virtual void SetDefaultFont(CFont *pFont)
2010-05-29 07:25:38 +00:00
{
2020-08-20 09:22:25 +00:00
dbg_msg("textrender", "default pFont set %p", pFont);
2010-05-29 07:25:38 +00:00
m_pDefaultFont = pFont;
m_pCurFont = m_pDefaultFont;
2010-05-29 07:25:38 +00:00
}
virtual void SetCurFont(CFont *pFont)
{
if(pFont == NULL)
m_pCurFont = m_pDefaultFont;
else
m_pCurFont = pFont;
}
2010-05-29 07:25:38 +00:00
virtual void SetCursor(CTextCursor *pCursor, float x, float y, float FontSize, int Flags)
{
mem_zero(pCursor, sizeof(*pCursor));
pCursor->m_FontSize = FontSize;
pCursor->m_StartX = x;
pCursor->m_StartY = y;
pCursor->m_X = x;
pCursor->m_Y = y;
pCursor->m_LineCount = 1;
pCursor->m_LineWidth = -1;
pCursor->m_Flags = Flags;
pCursor->m_GlyphCount = 0;
2010-05-29 07:25:38 +00:00
pCursor->m_CharCount = 0;
2020-10-06 10:25:10 +00:00
pCursor->m_MaxCharacterHeight = 0;
2020-10-13 20:08:52 +00:00
pCursor->m_LongestLineWidth = 0;
}
virtual void MoveCursor(CTextCursor *pCursor, float x, float y)
{
pCursor->m_X += x;
pCursor->m_Y += y;
2010-05-29 07:25:38 +00:00
}
2019-04-26 19:36:49 +00:00
virtual void Text(void *pFontSetV, float x, float y, float Size, const char *pText, float LineWidth)
2010-05-29 07:25:38 +00:00
{
CTextCursor Cursor;
SetCursor(&Cursor, x, y, Size, TEXTFLAG_RENDER);
Cursor.m_LineWidth = LineWidth;
2020-10-06 10:25:10 +00:00
int OldRenderFlags = m_RenderFlags;
if(LineWidth <= 0)
SetRenderFlags(OldRenderFlags | ETextRenderFlags::TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING | ETextRenderFlags::TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE);
2010-05-29 07:25:38 +00:00
TextEx(&Cursor, pText, -1);
2020-10-06 10:25:10 +00:00
SetRenderFlags(OldRenderFlags);
2010-05-29 07:25:38 +00:00
}
2020-10-06 10:25:10 +00:00
virtual float TextWidth(void *pFontSetV, float Size, const char *pText, int StrLength, float LineWidth, float *pAlignedHeight = NULL, float *pMaxCharacterHeightInLine = NULL)
2010-05-29 07:25:38 +00:00
{
CTextCursor Cursor;
SetCursor(&Cursor, 0, 0, Size, 0);
Cursor.m_LineWidth = LineWidth;
2020-10-06 10:25:10 +00:00
int OldRenderFlags = m_RenderFlags;
if(LineWidth <= 0)
SetRenderFlags(OldRenderFlags | ETextRenderFlags::TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING | ETextRenderFlags::TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE);
TextEx(&Cursor, pText, StrLength);
2020-10-06 10:25:10 +00:00
SetRenderFlags(OldRenderFlags);
if(pAlignedHeight != NULL)
*pAlignedHeight = Cursor.m_AlignedFontSize;
2020-10-06 10:25:10 +00:00
if(pMaxCharacterHeightInLine != NULL)
*pMaxCharacterHeightInLine = Cursor.m_MaxCharacterHeight;
2010-05-29 07:25:38 +00:00
return Cursor.m_X;
}
virtual int TextLineCount(void *pFontSetV, float Size, const char *pText, float LineWidth)
2010-05-29 07:25:38 +00:00
{
CTextCursor Cursor;
SetCursor(&Cursor, 0, 0, Size, 0);
Cursor.m_LineWidth = LineWidth;
2020-10-06 10:25:10 +00:00
int OldRenderFlags = m_RenderFlags;
if(LineWidth <= 0)
SetRenderFlags(OldRenderFlags | ETextRenderFlags::TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING | ETextRenderFlags::TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE);
2010-05-29 07:25:38 +00:00
TextEx(&Cursor, pText, -1);
2020-10-06 10:25:10 +00:00
SetRenderFlags(OldRenderFlags);
2010-05-29 07:25:38 +00:00
return Cursor.m_LineCount;
}
virtual void TextColor(float r, float g, float b, float a)
{
2019-04-26 22:34:20 +00:00
m_Color.r = r;
m_Color.g = g;
m_Color.b = b;
m_Color.a = a;
2010-05-29 07:25:38 +00:00
}
2019-04-26 22:34:20 +00:00
virtual void TextColor(ColorRGBA rgb) { m_Color = rgb; };
virtual void TextOutlineColor(float r, float g, float b, float a)
{
2019-04-26 22:34:20 +00:00
m_OutlineColor.r = r;
m_OutlineColor.g = g;
m_OutlineColor.b = b;
m_OutlineColor.a = a;
}
2019-04-26 22:34:20 +00:00
virtual void TextOutlineColor(ColorRGBA rgb) { m_OutlineColor = rgb; };
2010-05-29 07:25:38 +00:00
virtual void TextEx(CTextCursor *pCursor, const char *pText, int Length)
{
2020-04-08 20:40:36 +00:00
dbg_assert(pText != NULL, "null text pointer");
if(!*pText)
2020-04-08 19:29:23 +00:00
return;
2010-05-29 07:25:38 +00:00
CFont *pFont = pCursor->m_pFont;
CFontSizeData *pSizeData = NULL;
2010-05-29 07:25:38 +00:00
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
float FakeToScreenX, FakeToScreenY;
2010-05-29 07:25:38 +00:00
int ActualSize;
int GotNewLine = 0;
2010-11-17 17:36:19 +00:00
float DrawX = 0.0f, DrawY = 0.0f;
int LineCount = 0;
float CursorX, CursorY;
2010-05-29 07:25:38 +00:00
float Size = pCursor->m_FontSize;
// calculate the font size of the displayed glyphs
2010-05-29 07:25:38 +00:00
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
int ActualX = (int)(pCursor->m_X * FakeToScreenX);
int ActualY = (int)(pCursor->m_Y * FakeToScreenY);
CursorX = ActualX / FakeToScreenX;
CursorY = ActualY / FakeToScreenY;
2010-05-29 07:25:38 +00:00
// same with size
ActualSize = (int)(Size * FakeToScreenY);
2010-05-29 07:25:38 +00:00
Size = ActualSize / FakeToScreenY;
pCursor->m_AlignedFontSize = Size;
2010-05-29 07:25:38 +00:00
// fetch pFont data
if(!pFont)
pFont = m_pCurFont;
2010-05-29 07:25:38 +00:00
if(!pFont)
return;
pSizeData = pFont->GetFontSize(ActualSize);
2019-04-26 19:36:49 +00:00
2010-05-29 07:25:38 +00:00
// set length
if(Length < 0)
Length = str_length(pText);
2019-04-26 19:36:49 +00:00
float Scale = 1.0f / pSizeData->m_FontSize;
//the outlined texture is always the same size as the current
float UVScale = 1.0f / pFont->m_CurTextureDimensions[0];
2010-05-29 07:25:38 +00:00
const char *pCurrent = (char *)pText;
const char *pEnd = pCurrent + Length;
if((m_RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) != 0)
{
DrawX = pCursor->m_X;
DrawY = pCursor->m_Y;
}
else
{
DrawX = CursorX;
DrawY = CursorY;
}
LineCount = pCursor->m_LineCount;
2010-05-29 07:25:38 +00:00
if(pCursor->m_Flags & TEXTFLAG_RENDER)
{
// make sure there are no vertices
Graphics()->FlushVertices();
2019-04-26 19:36:49 +00:00
if(Graphics()->IsTextBufferingEnabled())
2010-05-29 07:25:38 +00:00
{
Graphics()->TextureClear();
Graphics()->TextQuadsBegin();
2019-04-26 22:34:20 +00:00
Graphics()->SetColor(m_Color);
}
else
{
Graphics()->TextureSet(pFont->m_aTextures[1]);
2010-05-29 07:25:38 +00:00
Graphics()->QuadsBegin();
Graphics()->SetColor(m_OutlineColor.r, m_OutlineColor.g, m_OutlineColor.b, m_OutlineColor.a * m_Color.a);
2010-05-29 07:25:38 +00:00
}
}
2010-05-29 07:25:38 +00:00
FT_UInt LastCharGlyphIndex = 0;
size_t CharacterCounter = 0;
while(pCurrent < pEnd && (pCursor->m_MaxLines < 1 || LineCount <= pCursor->m_MaxLines))
{
int NewLine = 0;
const char *pBatchEnd = pEnd;
if(pCursor->m_LineWidth > 0 && !(pCursor->m_Flags & TEXTFLAG_STOP_AT_END))
2010-05-29 07:25:38 +00:00
{
int Wlen = minimum(WordLength((char *)pCurrent), (int)(pEnd - pCurrent));
CTextCursor Compare = *pCursor;
Compare.m_X = DrawX;
Compare.m_Y = DrawY;
Compare.m_Flags &= ~TEXTFLAG_RENDER;
Compare.m_LineWidth = -1;
TextEx(&Compare, pCurrent, Wlen);
if(Compare.m_X - DrawX > pCursor->m_LineWidth)
2010-05-29 07:25:38 +00:00
{
// word can't be fitted in one line, cut it
CTextCursor Cutter = *pCursor;
Cutter.m_GlyphCount = 0;
Cutter.m_CharCount = 0;
Cutter.m_X = DrawX;
Cutter.m_Y = DrawY;
Cutter.m_Flags &= ~TEXTFLAG_RENDER;
Cutter.m_Flags |= TEXTFLAG_STOP_AT_END;
TextEx(&Cutter, pCurrent, Wlen);
int WordGlyphs = Cutter.m_GlyphCount;
Wlen = Cutter.m_CharCount;
NewLine = 1;
if(WordGlyphs <= 3) // if we can't place 3 chars of the word on this line, take the next
2010-05-29 07:25:38 +00:00
Wlen = 0;
}
else if(Compare.m_X - pCursor->m_StartX > pCursor->m_LineWidth)
2010-05-29 07:25:38 +00:00
{
NewLine = 1;
Wlen = 0;
}
2011-01-09 22:25:07 +00:00
pBatchEnd = pCurrent + Wlen;
}
2010-05-29 07:25:38 +00:00
const char *pTmp = pCurrent;
int NextCharacter = str_utf8_decode(&pTmp);
while(pCurrent < pBatchEnd)
{
pCursor->m_CharCount += pTmp - pCurrent;
int Character = NextCharacter;
pCurrent = pTmp;
NextCharacter = str_utf8_decode(&pTmp);
if(Character == '\n')
2010-05-29 07:25:38 +00:00
{
++CharacterCounter;
LastCharGlyphIndex = 0;
2010-05-29 07:25:38 +00:00
DrawX = pCursor->m_StartX;
DrawY += Size;
if((m_RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
}
++LineCount;
if(pCursor->m_MaxLines > 0 && LineCount > pCursor->m_MaxLines)
break;
continue;
2010-05-29 07:25:38 +00:00
}
2020-08-20 09:22:25 +00:00
SFontSizeChar *pChr = GetChar(pFont, pSizeData, Character);
if(pChr)
{
bool ApplyBearingX = !(((m_RenderFlags & TEXT_RENDER_FLAG_NO_X_BEARING) != 0) || (CharacterCounter == 0 && (m_RenderFlags & TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING) != 0));
float Advance = ((((m_RenderFlags & TEXT_RENDER_FLAG_ONLY_ADVANCE_WIDTH) != 0) ? (pChr->m_Width) : (pChr->m_AdvanceX + ((!ApplyBearingX) ? (-pChr->m_OffsetX) : 0.f)))) * Scale;
2019-04-26 19:36:49 +00:00
float CharKerning = 0.f;
if((m_RenderFlags & TEXT_RENDER_FLAG_KERNING) != 0)
CharKerning = Kerning(pFont, LastCharGlyphIndex, pChr->m_GlyphIndex) * Scale * Size;
LastCharGlyphIndex = pChr->m_GlyphIndex;
if(pCursor->m_Flags & TEXTFLAG_STOP_AT_END && (DrawX + CharKerning) + Advance * Size - pCursor->m_StartX > pCursor->m_LineWidth)
{
// we hit the end of the line, no more to render or count
pCurrent = pEnd;
break;
}
2010-05-29 07:25:38 +00:00
float BearingX = (!ApplyBearingX ? 0.f : pChr->m_OffsetX) * Scale * Size;
float CharWidth = pChr->m_Width * Scale * Size;
2019-04-26 19:36:49 +00:00
2020-10-06 10:25:10 +00:00
float BearingY = 0.f;
BearingY = (((m_RenderFlags & TEXT_RENDER_FLAG_NO_Y_BEARING) != 0) ? 0.f : (pChr->m_OffsetY * Scale * Size));
float CharHeight = pChr->m_Height * Scale * Size;
if((m_RenderFlags & TEXT_RENDER_FLAG_NO_OVERSIZE) != 0)
{
if(CharHeight + BearingY > Size)
{
BearingY = 0;
float ScaleChar = (CharHeight + BearingY) / Size;
CharHeight = Size;
CharWidth /= ScaleChar;
}
}
if(pCursor->m_Flags & TEXTFLAG_RENDER && m_Color.a != 0.f)
{
if(Graphics()->IsTextBufferingEnabled())
Graphics()->QuadsSetSubset(pChr->m_aUVs[0], pChr->m_aUVs[3], pChr->m_aUVs[2], pChr->m_aUVs[1]);
else
Graphics()->QuadsSetSubset(pChr->m_aUVs[0] * UVScale, pChr->m_aUVs[3] * UVScale, pChr->m_aUVs[2] * UVScale, pChr->m_aUVs[1] * UVScale);
float Y = (DrawY + Size);
2020-10-06 10:25:10 +00:00
IGraphics::CQuadItem QuadItem((DrawX + CharKerning) + BearingX, Y - BearingY, CharWidth, -CharHeight);
Graphics()->QuadsDrawTL(&QuadItem, 1);
}
2020-10-06 10:25:10 +00:00
pCursor->m_MaxCharacterHeight = maximum(pCursor->m_MaxCharacterHeight, CharHeight + BearingY);
2020-10-16 18:00:57 +00:00
if(NextCharacter == 0 && (m_RenderFlags & TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE) != 0 && Character != ' ')
DrawX += BearingX + CharKerning + CharWidth;
else
DrawX += Advance * Size + CharKerning;
pCursor->m_GlyphCount++;
++CharacterCounter;
}
}
if(NewLine)
{
DrawX = pCursor->m_StartX;
DrawY += Size;
if((m_RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
}
GotNewLine = 1;
++LineCount;
}
}
if(pCursor->m_Flags & TEXTFLAG_RENDER)
{
if(Graphics()->IsTextBufferingEnabled())
{
float OutlineColor[4] = {m_OutlineColor.r, m_OutlineColor.g, m_OutlineColor.b, m_OutlineColor.a * m_Color.a};
Graphics()->TextQuadsEnd(pFont->m_CurTextureDimensions[0], pFont->m_aTextures[0], pFont->m_aTextures[1], OutlineColor);
}
else
{
Graphics()->QuadsEndKeepVertices();
Graphics()->TextureSet(pFont->m_aTextures[0]);
2019-04-26 22:34:20 +00:00
Graphics()->ChangeColorOfCurrentQuadVertices(m_Color.r, m_Color.g, m_Color.b, m_Color.a);
// render non outlined
Graphics()->QuadsDrawCurrentVertices(false);
}
}
pCursor->m_X = DrawX;
pCursor->m_LineCount = LineCount;
if(GotNewLine)
pCursor->m_Y = DrawY;
}
2020-10-12 10:29:47 +00:00
virtual int CreateTextContainer(CTextCursor *pCursor, const char *pText, int Length = -1)
{
CFont *pFont = pCursor->m_pFont;
// fetch pFont data
if(!pFont)
pFont = m_pCurFont;
if(!pFont)
return -1;
int ContainerIndex = GetFreeTextContainerIndex();
STextContainer &TextContainer = GetTextContainer(ContainerIndex);
TextContainer.m_pFont = pFont;
CFontSizeData *pSizeData = NULL;
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
float FakeToScreenX, FakeToScreenY;
int ActualSize;
float Size = pCursor->m_FontSize;
// calculate the font size of the displayed glyphs
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
int ActualX = (int)(pCursor->m_X * FakeToScreenX);
int ActualY = (int)(pCursor->m_Y * FakeToScreenY);
TextContainer.m_AlignedStartX = ActualX / FakeToScreenX;
TextContainer.m_AlignedStartY = ActualY / FakeToScreenY;
TextContainer.m_X = pCursor->m_X;
TextContainer.m_Y = pCursor->m_Y;
TextContainer.m_Flags = pCursor->m_Flags;
2020-10-12 15:46:06 +00:00
int OldRenderFlags = m_RenderFlags;
if(pCursor->m_LineWidth <= 0)
SetRenderFlags(OldRenderFlags | ETextRenderFlags::TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING | ETextRenderFlags::TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE);
2020-10-13 20:08:52 +00:00
TextContainer.m_RenderFlags = m_RenderFlags;
2020-10-12 15:46:06 +00:00
SetRenderFlags(OldRenderFlags);
// same with size
ActualSize = (int)(Size * FakeToScreenY);
pSizeData = pFont->GetFontSize(ActualSize);
2019-04-26 19:36:49 +00:00
TextContainer.m_FontSize = pSizeData->m_FontSize;
2019-04-26 19:36:49 +00:00
2020-10-12 10:29:47 +00:00
AppendTextContainer(pCursor, ContainerIndex, pText, Length);
if(TextContainer.m_StringInfo.m_CharacterQuads.size() == 0)
{
FreeTextContainer(ContainerIndex);
return -1;
}
else
{
TextContainer.m_StringInfo.m_QuadNum = TextContainer.m_StringInfo.m_CharacterQuads.size();
if(Graphics()->IsTextBufferingEnabled())
{
size_t DataSize = TextContainer.m_StringInfo.m_CharacterQuads.size() * sizeof(STextCharQuad);
void *pUploadData = &TextContainer.m_StringInfo.m_CharacterQuads[0];
TextContainer.m_StringInfo.m_QuadBufferObjectIndex = Graphics()->CreateBufferObject(DataSize, pUploadData);
for(size_t i = 0; i < m_DefaultTextContainerInfo.m_Attributes.size(); ++i)
m_DefaultTextContainerInfo.m_Attributes[i].m_VertBufferBindingIndex = TextContainer.m_StringInfo.m_QuadBufferObjectIndex;
TextContainer.m_StringInfo.m_QuadBufferContainerIndex = Graphics()->CreateBufferContainer(&m_DefaultTextContainerInfo);
Graphics()->IndicesNumRequiredNotify(TextContainer.m_StringInfo.m_QuadNum * 6);
}
2019-04-26 19:36:49 +00:00
TextContainer.m_LineCount = pCursor->m_LineCount;
TextContainer.m_GlyphCount = pCursor->m_GlyphCount;
TextContainer.m_CharCount = pCursor->m_CharCount;
TextContainer.m_MaxLines = pCursor->m_MaxLines;
TextContainer.m_StartX = pCursor->m_StartX;
TextContainer.m_StartY = pCursor->m_StartY;
TextContainer.m_LineWidth = pCursor->m_LineWidth;
TextContainer.m_UnscaledFontSize = pCursor->m_FontSize;
}
return ContainerIndex;
}
2020-10-12 10:29:47 +00:00
virtual void AppendTextContainer(CTextCursor *pCursor, int TextContainerIndex, const char *pText, int Length = -1)
{
STextContainer &TextContainer = GetTextContainer(TextContainerIndex);
CFontSizeData *pSizeData = NULL;
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
float FakeToScreenX, FakeToScreenY;
int ActualSize;
int GotNewLine = 0;
float DrawX = 0.0f, DrawY = 0.0f;
int LineCount = 0;
float CursorX, CursorY;
float Size = pCursor->m_FontSize;
// calculate the font size of the displayed glyphs
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
int ActualX = (int)(pCursor->m_X * FakeToScreenX);
int ActualY = (int)(pCursor->m_Y * FakeToScreenY);
CursorX = ActualX / FakeToScreenX;
CursorY = ActualY / FakeToScreenY;
// same with size
ActualSize = (int)(Size * FakeToScreenY);
Size = ActualSize / FakeToScreenY;
pCursor->m_AlignedFontSize = Size;
pSizeData = TextContainer.m_pFont->GetFontSize(TextContainer.m_FontSize);
// string length
2020-10-12 10:29:47 +00:00
if(Length < 0)
Length = str_length(pText);
float Scale = 1.0f / pSizeData->m_FontSize;
const char *pCurrent = (char *)pText;
const char *pEnd = pCurrent + Length;
int RenderFlags = TextContainer.m_RenderFlags;
if((RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) != 0)
{
DrawX = pCursor->m_X;
DrawY = pCursor->m_Y;
}
else
{
DrawX = CursorX;
DrawY = CursorY;
}
LineCount = pCursor->m_LineCount;
2019-04-26 19:36:49 +00:00
FT_UInt LastCharGlyphIndex = 0;
size_t CharacterCounter = 0;
while(pCurrent < pEnd && (pCursor->m_MaxLines < 1 || LineCount <= pCursor->m_MaxLines))
{
int NewLine = 0;
const char *pBatchEnd = pEnd;
if(pCursor->m_LineWidth > 0 && !(pCursor->m_Flags & TEXTFLAG_STOP_AT_END))
{
2019-04-26 19:36:49 +00:00
int Wlen = minimum(WordLength((char *)pCurrent), (int)(pEnd - pCurrent));
CTextCursor Compare = *pCursor;
Compare.m_X = DrawX;
Compare.m_Y = DrawY;
Compare.m_Flags &= ~TEXTFLAG_RENDER;
Compare.m_LineWidth = -1;
TextEx(&Compare, pCurrent, Wlen);
if(Compare.m_X - DrawX > pCursor->m_LineWidth)
{
// word can't be fitted in one line, cut it
CTextCursor Cutter = *pCursor;
Cutter.m_GlyphCount = 0;
Cutter.m_CharCount = 0;
Cutter.m_X = DrawX;
Cutter.m_Y = DrawY;
Cutter.m_Flags &= ~TEXTFLAG_RENDER;
Cutter.m_Flags |= TEXTFLAG_STOP_AT_END;
TextEx(&Cutter, pCurrent, Wlen);
int WordGlyphs = Cutter.m_GlyphCount;
Wlen = Cutter.m_CharCount;
NewLine = 1;
if(WordGlyphs <= 3) // if we can't place 3 chars of the word on this line, take the next
Wlen = 0;
}
else if(Compare.m_X - pCursor->m_StartX > pCursor->m_LineWidth)
{
NewLine = 1;
Wlen = 0;
}
pBatchEnd = pCurrent + Wlen;
}
const char *pTmp = pCurrent;
int NextCharacter = str_utf8_decode(&pTmp);
2020-10-13 20:08:52 +00:00
while(pCurrent < pBatchEnd)
{
TextContainer.m_CharCount += pTmp - pCurrent;
int Character = NextCharacter;
pCurrent = pTmp;
NextCharacter = str_utf8_decode(&pTmp);
if(Character == '\n')
{
LastCharGlyphIndex = 0;
++CharacterCounter;
DrawX = pCursor->m_StartX;
DrawY += Size;
if((RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
}
++LineCount;
if(pCursor->m_MaxLines > 0 && LineCount > pCursor->m_MaxLines)
break;
continue;
}
2020-08-20 09:22:25 +00:00
SFontSizeChar *pChr = GetChar(TextContainer.m_pFont, pSizeData, Character);
if(pChr)
{
bool ApplyBearingX = !(((RenderFlags & TEXT_RENDER_FLAG_NO_X_BEARING) != 0) || (CharacterCounter == 0 && (RenderFlags & TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING) != 0));
float Advance = ((((RenderFlags & TEXT_RENDER_FLAG_ONLY_ADVANCE_WIDTH) != 0) ? (pChr->m_Width) : (pChr->m_AdvanceX + ((!ApplyBearingX) ? (-pChr->m_OffsetX) : 0.f)))) * Scale;
2019-04-26 19:36:49 +00:00
float CharKerning = 0.f;
if((RenderFlags & TEXT_RENDER_FLAG_KERNING) != 0)
CharKerning = Kerning(TextContainer.m_pFont, LastCharGlyphIndex, pChr->m_GlyphIndex) * Scale * Size;
LastCharGlyphIndex = pChr->m_GlyphIndex;
if(pCursor->m_Flags & TEXTFLAG_STOP_AT_END && (DrawX + CharKerning) + Advance * Size - pCursor->m_StartX > pCursor->m_LineWidth)
{
// we hit the end of the line, no more to render or count
pCurrent = pEnd;
break;
}
float BearingX = (!ApplyBearingX ? 0.f : pChr->m_OffsetX) * Scale * Size;
float CharWidth = pChr->m_Width * Scale * Size;
2019-04-26 19:36:49 +00:00
2020-10-06 10:25:10 +00:00
float BearingY = (((RenderFlags & TEXT_RENDER_FLAG_NO_Y_BEARING) != 0) ? 0.f : (pChr->m_OffsetY * Scale * Size));
float CharHeight = pChr->m_Height * Scale * Size;
if((RenderFlags & TEXT_RENDER_FLAG_NO_OVERSIZE) != 0)
{
if(CharHeight + BearingY > Size)
{
BearingY = 0;
float ScaleChar = (CharHeight + BearingY) / Size;
CharHeight = Size;
CharWidth /= ScaleChar;
}
}
2018-07-10 09:29:02 +00:00
// don't add text that isn't drawn, the color overwrite is used for that
2019-04-26 22:34:20 +00:00
if(m_Color.a != 0.f)
{
TextContainer.m_StringInfo.m_CharacterQuads.push_back(STextCharQuad());
STextCharQuad &TextCharQuad = TextContainer.m_StringInfo.m_CharacterQuads.back();
float Y = (DrawY + Size);
TextCharQuad.m_Vertices[0].m_X = (DrawX + CharKerning) + BearingX;
TextCharQuad.m_Vertices[0].m_Y = Y - BearingY;
TextCharQuad.m_Vertices[0].m_U = pChr->m_aUVs[0];
TextCharQuad.m_Vertices[0].m_V = pChr->m_aUVs[3];
2019-04-26 22:34:20 +00:00
TextCharQuad.m_Vertices[0].m_Color.m_R = (unsigned char)(m_Color.r * 255.f);
TextCharQuad.m_Vertices[0].m_Color.m_G = (unsigned char)(m_Color.g * 255.f);
TextCharQuad.m_Vertices[0].m_Color.m_B = (unsigned char)(m_Color.b * 255.f);
TextCharQuad.m_Vertices[0].m_Color.m_A = (unsigned char)(m_Color.a * 255.f);
TextCharQuad.m_Vertices[1].m_X = (DrawX + CharKerning) + BearingX + CharWidth;
TextCharQuad.m_Vertices[1].m_Y = Y - BearingY;
TextCharQuad.m_Vertices[1].m_U = pChr->m_aUVs[2];
TextCharQuad.m_Vertices[1].m_V = pChr->m_aUVs[3];
2019-04-26 22:34:20 +00:00
TextCharQuad.m_Vertices[1].m_Color.m_R = (unsigned char)(m_Color.r * 255.f);
TextCharQuad.m_Vertices[1].m_Color.m_G = (unsigned char)(m_Color.g * 255.f);
TextCharQuad.m_Vertices[1].m_Color.m_B = (unsigned char)(m_Color.b * 255.f);
TextCharQuad.m_Vertices[1].m_Color.m_A = (unsigned char)(m_Color.a * 255.f);
TextCharQuad.m_Vertices[2].m_X = (DrawX + CharKerning) + BearingX + CharWidth;
2020-10-06 10:25:10 +00:00
TextCharQuad.m_Vertices[2].m_Y = Y - BearingY - CharHeight;
TextCharQuad.m_Vertices[2].m_U = pChr->m_aUVs[2];
TextCharQuad.m_Vertices[2].m_V = pChr->m_aUVs[1];
2019-04-26 22:34:20 +00:00
TextCharQuad.m_Vertices[2].m_Color.m_R = (unsigned char)(m_Color.r * 255.f);
TextCharQuad.m_Vertices[2].m_Color.m_G = (unsigned char)(m_Color.g * 255.f);
TextCharQuad.m_Vertices[2].m_Color.m_B = (unsigned char)(m_Color.b * 255.f);
TextCharQuad.m_Vertices[2].m_Color.m_A = (unsigned char)(m_Color.a * 255.f);
TextCharQuad.m_Vertices[3].m_X = (DrawX + CharKerning) + BearingX;
2020-10-06 10:25:10 +00:00
TextCharQuad.m_Vertices[3].m_Y = Y - BearingY - CharHeight;
TextCharQuad.m_Vertices[3].m_U = pChr->m_aUVs[0];
TextCharQuad.m_Vertices[3].m_V = pChr->m_aUVs[1];
2019-04-26 22:34:20 +00:00
TextCharQuad.m_Vertices[3].m_Color.m_R = (unsigned char)(m_Color.r * 255.f);
TextCharQuad.m_Vertices[3].m_Color.m_G = (unsigned char)(m_Color.g * 255.f);
TextCharQuad.m_Vertices[3].m_Color.m_B = (unsigned char)(m_Color.b * 255.f);
TextCharQuad.m_Vertices[3].m_Color.m_A = (unsigned char)(m_Color.a * 255.f);
}
2020-10-06 10:25:10 +00:00
pCursor->m_MaxCharacterHeight = maximum(pCursor->m_MaxCharacterHeight, CharHeight + BearingY);
2020-10-16 18:00:57 +00:00
if(NextCharacter == 0 && (RenderFlags & TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE) != 0 && Character != ' ')
DrawX += BearingX + CharKerning + CharWidth;
else
DrawX += Advance * Size + CharKerning;
pCursor->m_GlyphCount++;
++CharacterCounter;
}
2020-10-13 20:08:52 +00:00
if(DrawX > pCursor->m_LongestLineWidth)
pCursor->m_LongestLineWidth = DrawX;
}
if(NewLine)
{
DrawX = pCursor->m_StartX;
DrawY += Size;
if((RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
}
GotNewLine = 1;
++LineCount;
}
}
if(TextContainer.m_StringInfo.m_CharacterQuads.size() != 0)
{
TextContainer.m_StringInfo.m_QuadNum = TextContainer.m_StringInfo.m_CharacterQuads.size();
// setup the buffers
if(Graphics()->IsTextBufferingEnabled())
{
size_t DataSize = TextContainer.m_StringInfo.m_CharacterQuads.size() * sizeof(STextCharQuad);
void *pUploadData = &TextContainer.m_StringInfo.m_CharacterQuads[0];
if(TextContainer.m_StringInfo.m_QuadBufferObjectIndex != -1)
{
Graphics()->RecreateBufferObject(TextContainer.m_StringInfo.m_QuadBufferObjectIndex, DataSize, pUploadData);
Graphics()->IndicesNumRequiredNotify(TextContainer.m_StringInfo.m_QuadNum * 6);
}
}
}
// even if no text is drawn the cursor position will be adjusted
pCursor->m_X = DrawX;
pCursor->m_LineCount = LineCount;
2010-05-29 07:25:38 +00:00
if(GotNewLine)
pCursor->m_Y = DrawY;
}
// just deletes and creates text container
2020-10-12 10:29:47 +00:00
virtual void RecreateTextContainer(CTextCursor *pCursor, int TextContainerIndex, const char *pText, int Length = -1)
{
DeleteTextContainer(TextContainerIndex);
2020-10-12 10:29:47 +00:00
CreateTextContainer(pCursor, pText, Length);
}
2020-10-12 10:29:47 +00:00
virtual void RecreateTextContainerSoft(CTextCursor *pCursor, int TextContainerIndex, const char *pText, int Length = -1)
{
STextContainer &TextContainer = GetTextContainer(TextContainerIndex);
TextContainer.m_StringInfo.m_CharacterQuads.clear();
TextContainer.m_StringInfo.m_QuadNum = 0;
// the text buffer gets then recreated by the appended quads
2020-10-12 10:29:47 +00:00
AppendTextContainer(pCursor, TextContainerIndex, pText, Length);
}
virtual void SetTextContainerSelection(int TextContainerIndex, const char *pText, int CursorPos, int SelectionStart, int SelectionEnd)
{
STextContainer &TextContainer = GetTextContainer(TextContainerIndex);
CFontSizeData *pSizeData = NULL;
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
float FakeToScreenX, FakeToScreenY;
int ActualSize;
float DrawX = 0.0f, DrawY = 0.0f;
int LineCount = 0;
float Size = TextContainer.m_UnscaledFontSize;
// calculate the font size of the displayed glyphs
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
// same with size
ActualSize = (int)(Size * FakeToScreenY);
Size = ActualSize / FakeToScreenY;
pSizeData = TextContainer.m_pFont->GetFontSize(TextContainer.m_FontSize);
FT_Set_Pixel_Sizes(TextContainer.m_pFont->m_FtFace, 0, TextContainer.m_FontSize);
// string length
int Length = str_length(pText);
float Scale = 1.0f / pSizeData->m_FontSize;
float MaxRowHeight = (TextContainer.m_pFont->m_FtFace->size->metrics.height >> 6) * Scale * Size;
const char *pCurrent = (char *)pText;
const char *pCurrentLast = (char *)pText;
const char *pEnd = pCurrent + Length;
int RenderFlags = TextContainer.m_RenderFlags;
if((RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) != 0)
{
DrawX = TextContainer.m_X;
DrawY = TextContainer.m_Y;
}
else
{
DrawX = TextContainer.m_AlignedStartX;
DrawY = TextContainer.m_AlignedStartY;
}
LineCount = TextContainer.m_LineCount;
if(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex == -1)
TextContainer.m_StringInfo.m_SelectionQuadContainerIndex = Graphics()->CreateQuadContainer();
Graphics()->QuadContainerReset(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex);
std::vector<IGraphics::CQuadItem> SelectionQuads;
IGraphics::CQuadItem CursorQuad;
FT_UInt LastCharGlyphIndex = 0;
size_t CharacterCounter = 0;
while(pCurrent < pEnd && (TextContainer.m_MaxLines < 1 || LineCount <= TextContainer.m_MaxLines))
{
int NewLine = 0;
const char *pBatchEnd = pEnd;
if(TextContainer.m_LineWidth > 0 && !(TextContainer.m_Flags & TEXTFLAG_STOP_AT_END))
{
CTextCursor FakeCursor;
SetCursor(&FakeCursor, DrawX, DrawY, TextContainer.m_UnscaledFontSize, TextContainer.m_Flags);
FakeCursor.m_LineCount = TextContainer.m_LineCount;
FakeCursor.m_GlyphCount = TextContainer.m_GlyphCount;
FakeCursor.m_CharCount = TextContainer.m_CharCount;
FakeCursor.m_MaxLines = TextContainer.m_MaxLines;
FakeCursor.m_StartX = TextContainer.m_StartX;
FakeCursor.m_StartY = TextContainer.m_StartY;
FakeCursor.m_LineWidth = TextContainer.m_LineWidth;
FakeCursor.m_pFont = TextContainer.m_pFont;
2019-04-26 19:36:49 +00:00
int Wlen = minimum(WordLength((char *)pCurrent), (int)(pEnd - pCurrent));
CTextCursor Compare = FakeCursor;
Compare.m_X = DrawX;
Compare.m_Y = DrawY;
Compare.m_Flags &= ~TEXTFLAG_RENDER;
Compare.m_LineWidth = -1;
TextEx(&Compare, pCurrent, Wlen);
if(Compare.m_X - DrawX > TextContainer.m_LineWidth)
{
// word can't be fitted in one line, cut it
CTextCursor Cutter = FakeCursor;
Cutter.m_GlyphCount = 0;
Cutter.m_CharCount = 0;
Cutter.m_X = DrawX;
Cutter.m_Y = DrawY;
Cutter.m_Flags &= ~TEXTFLAG_RENDER;
Cutter.m_Flags |= TEXTFLAG_STOP_AT_END;
TextEx(&Cutter, pCurrent, Wlen);
int WordGlyphs = Cutter.m_GlyphCount;
Wlen = Cutter.m_CharCount;
NewLine = 1;
if(WordGlyphs <= 3) // if we can't place 3 chars of the word on this line, take the next
Wlen = 0;
}
else if(Compare.m_X - TextContainer.m_StartX > TextContainer.m_LineWidth)
{
NewLine = 1;
Wlen = 0;
}
pBatchEnd = pCurrent + Wlen;
}
2019-04-26 19:36:49 +00:00
pCurrentLast = pCurrent;
const char *pTmp = pCurrent;
int NextCharacter = str_utf8_decode(&pTmp);
while(pCurrent < pBatchEnd)
{
TextContainer.m_CharCount += pTmp - pCurrent;
int Character = NextCharacter;
pCurrent = pTmp;
NextCharacter = str_utf8_decode(&pTmp);
if(Character == '\n')
{
LastCharGlyphIndex = 0;
++CharacterCounter;
DrawX = TextContainer.m_StartX;
DrawY += Size;
if((RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
}
++LineCount;
if(TextContainer.m_MaxLines > 0 && LineCount > TextContainer.m_MaxLines)
break;
continue;
}
2020-08-20 09:22:25 +00:00
SFontSizeChar *pChr = GetChar(TextContainer.m_pFont, pSizeData, Character);
if(pChr)
{
bool ApplyBearingX = !(((RenderFlags & TEXT_RENDER_FLAG_NO_X_BEARING) != 0) || (CharacterCounter == 0 && (RenderFlags & TEXT_RENDER_FLAG_NO_FIRST_CHARACTER_X_BEARING) != 0));
float Advance = ((((RenderFlags & TEXT_RENDER_FLAG_ONLY_ADVANCE_WIDTH) != 0) ? (pChr->m_Width) : (pChr->m_AdvanceX + (!ApplyBearingX ? (-pChr->m_OffsetX) : 0.f)))) * Scale;
float CharKerning = 0.f;
if((RenderFlags & TEXT_RENDER_FLAG_KERNING) != 0)
CharKerning = Kerning(TextContainer.m_pFont, LastCharGlyphIndex, pChr->m_GlyphIndex) * Scale * Size;
LastCharGlyphIndex = pChr->m_GlyphIndex;
if(TextContainer.m_Flags & TEXTFLAG_STOP_AT_END && (DrawX + CharKerning) + Advance * Size - TextContainer.m_StartX > TextContainer.m_LineWidth)
{
// we hit the end of the line, no more to render or count
pCurrent = pEnd;
break;
}
int CharBytePos = (int)((size_t)(pCurrentLast - pText));
if(CharBytePos == CursorPos)
{
CursorQuad.Set((DrawX + CharKerning), DrawY, 2.f * Scale * Size, MaxRowHeight);
}
if(CharBytePos >= SelectionStart && CharBytePos < SelectionEnd)
{
SelectionQuads.push_back(IGraphics::CQuadItem((DrawX + CharKerning), DrawY, Advance * Size, MaxRowHeight));
}
float BearingX = (!ApplyBearingX ? 0.f : pChr->m_OffsetX) * Scale * Size;
float CharWidth = pChr->m_Width * Scale * Size;
2019-04-26 19:36:49 +00:00
if(NextCharacter == 0 && (RenderFlags & TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE) != 0)
DrawX += BearingX + CharKerning + CharWidth;
else
DrawX += Advance * Size + CharKerning;
TextContainer.m_GlyphCount++;
++CharacterCounter;
}
pCurrentLast = pCurrent;
}
if(NewLine)
{
DrawX = TextContainer.m_StartX;
DrawY += Size;
if((RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
}
++LineCount;
}
}
int CharBytePos = (int)((size_t)(pCurrentLast - pText));
if(CharBytePos == CursorPos)
{
CursorQuad.Set(DrawX, DrawY, 2.f * Scale * Size, MaxRowHeight);
}
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
Graphics()->QuadContainerAddQuads(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex, &CursorQuad, 1);
Graphics()->SetColor(0.f, 0.f, 1.f, 0.8f);
if(SelectionQuads.size() > 0)
Graphics()->QuadContainerAddQuads(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex, &SelectionQuads[0], (int)SelectionQuads.size());
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
}
virtual void DeleteTextContainer(int TextContainerIndex)
{
STextContainer &TextContainer = GetTextContainer(TextContainerIndex);
if(Graphics()->IsTextBufferingEnabled())
{
if(TextContainer.m_StringInfo.m_QuadBufferContainerIndex != -1)
Graphics()->DeleteBufferContainer(TextContainer.m_StringInfo.m_QuadBufferContainerIndex, true);
if(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex != -1)
Graphics()->DeleteQuadContainer(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex);
}
FreeTextContainer(TextContainerIndex);
}
virtual void RenderTextContainer(int TextContainerIndex, STextRenderColor *pTextColor, STextRenderColor *pTextOutlineColor)
{
STextContainer &TextContainer = GetTextContainer(TextContainerIndex);
CFont *pFont = TextContainer.m_pFont;
if(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex != -1)
{
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
Graphics()->RenderQuadContainer(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex, 1, -1);
static int64 s_CursorRenderTime = time_get_microseconds();
if((time_get_microseconds() - s_CursorRenderTime) > 500000)
Graphics()->RenderQuadContainer(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex, 0, 1);
if((time_get_microseconds() - s_CursorRenderTime) > 1000000)
s_CursorRenderTime = time_get_microseconds();
}
if(Graphics()->IsTextBufferingEnabled())
{
Graphics()->TextureClear();
// render buffered text
Graphics()->RenderText(TextContainer.m_StringInfo.m_QuadBufferContainerIndex, TextContainer.m_StringInfo.m_QuadNum, pFont->m_CurTextureDimensions[0], pFont->m_aTextures[0], pFont->m_aTextures[1], (float *)pTextColor, (float *)pTextOutlineColor);
}
else
{
// render tiles
float UVScale = 1.0f / pFont->m_CurTextureDimensions[0];
Graphics()->FlushVertices();
Graphics()->TextureSet(pFont->m_aTextures[1]);
2019-04-26 19:36:49 +00:00
Graphics()->QuadsBegin();
for(size_t i = 0; i < TextContainer.m_StringInfo.m_QuadNum; ++i)
{
STextCharQuad &TextCharQuad = TextContainer.m_StringInfo.m_CharacterQuads[i];
Graphics()->SetColor(TextCharQuad.m_Vertices[0].m_Color.m_R / 255.f * pTextOutlineColor->m_R, TextCharQuad.m_Vertices[0].m_Color.m_G / 255.f * pTextOutlineColor->m_G, TextCharQuad.m_Vertices[0].m_Color.m_B / 255.f * pTextOutlineColor->m_B, TextCharQuad.m_Vertices[0].m_Color.m_A / 255.f * pTextOutlineColor->m_A);
2019-04-26 19:36:49 +00:00
Graphics()->QuadsSetSubset(TextCharQuad.m_Vertices[0].m_U * UVScale, TextCharQuad.m_Vertices[0].m_V * UVScale, TextCharQuad.m_Vertices[2].m_U * UVScale, TextCharQuad.m_Vertices[2].m_V * UVScale);
IGraphics::CQuadItem QuadItem(TextCharQuad.m_Vertices[0].m_X, TextCharQuad.m_Vertices[0].m_Y, TextCharQuad.m_Vertices[1].m_X - TextCharQuad.m_Vertices[0].m_X, TextCharQuad.m_Vertices[2].m_Y - TextCharQuad.m_Vertices[0].m_Y);
Graphics()->QuadsDrawTL(&QuadItem, 1);
}
2019-04-26 19:36:49 +00:00
if(pTextColor->m_A != 0)
{
Graphics()->QuadsEndKeepVertices();
Graphics()->TextureSet(pFont->m_aTextures[0]);
2019-04-26 19:36:49 +00:00
2018-04-03 15:40:21 +00:00
for(size_t i = 0; i < TextContainer.m_StringInfo.m_QuadNum; ++i)
{
STextCharQuad &TextCharQuad = TextContainer.m_StringInfo.m_CharacterQuads[i];
2018-04-03 15:40:21 +00:00
unsigned char CR = (unsigned char)((float)(TextCharQuad.m_Vertices[0].m_Color.m_R) * pTextColor->m_R);
unsigned char CG = (unsigned char)((float)(TextCharQuad.m_Vertices[0].m_Color.m_G) * pTextColor->m_G);
unsigned char CB = (unsigned char)((float)(TextCharQuad.m_Vertices[0].m_Color.m_B) * pTextColor->m_B);
unsigned char CA = (unsigned char)((float)(TextCharQuad.m_Vertices[0].m_Color.m_A) * pTextColor->m_A);
Graphics()->ChangeColorOfQuadVertices((int)i, CR, CG, CB, CA);
}
2019-04-26 19:36:49 +00:00
// render non outlined
Graphics()->QuadsDrawCurrentVertices(false);
}
else
Graphics()->QuadsEnd();
2018-04-09 20:02:16 +00:00
// reset
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
}
}
virtual void RenderTextContainer(int TextContainerIndex, STextRenderColor *pTextColor, STextRenderColor *pTextOutlineColor, float X, float Y)
{
STextContainer &TextContainer = GetTextContainer(TextContainerIndex);
// remap the current screen, after render revert the change again
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
2019-04-26 19:36:49 +00:00
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
if((TextContainer.m_RenderFlags & TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
{
float FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
float FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
int ActualX = (int)((TextContainer.m_X + X) * FakeToScreenX);
int ActualY = (int)((TextContainer.m_Y + Y) * FakeToScreenY);
float AlignedX = ActualX / FakeToScreenX;
float AlignedY = ActualY / FakeToScreenY;
X = AlignedX - TextContainer.m_AlignedStartX;
Y = AlignedY - TextContainer.m_AlignedStartY;
}
2019-04-26 19:36:49 +00:00
Graphics()->MapScreen(ScreenX0 - X, ScreenY0 - Y, ScreenX1 - X, ScreenY1 - Y);
RenderTextContainer(TextContainerIndex, pTextColor, pTextOutlineColor);
Graphics()->MapScreen(ScreenX0, ScreenY0, ScreenX1, ScreenY1);
}
2020-09-14 14:39:05 +00:00
virtual void UploadEntityLayerText(void *pTexBuff, int ImageColorChannelCount, int TexWidth, int TexHeight, int TexSubWidth, int TexSubHeight, const char *pText, int Length, float x, float y, int FontSize)
2017-09-12 18:10:27 +00:00
{
if(FontSize < 1)
2019-05-11 15:59:47 +00:00
return;
const char *pCurrent = (char *)pText;
const char *pEnd = pCurrent + Length;
2017-09-12 18:10:27 +00:00
CFont *pFont = m_pDefaultFont;
FT_Bitmap *pBitmap;
int WidthLastChars = 0;
2019-04-26 19:36:49 +00:00
while(pCurrent < pEnd)
2019-04-26 19:36:49 +00:00
{
2017-09-12 18:10:27 +00:00
const char *pTmp = pCurrent;
int NextCharacter = str_utf8_decode(&pTmp);
2019-04-26 19:36:49 +00:00
2017-09-13 18:33:58 +00:00
if(NextCharacter)
{
2017-09-12 18:10:27 +00:00
unsigned int px, py;
2019-04-26 19:36:49 +00:00
2019-05-11 15:59:47 +00:00
FT_Set_Pixel_Sizes(pFont->m_FtFace, 0, FontSize);
2017-09-12 18:10:27 +00:00
if(FT_Load_Char(pFont->m_FtFace, NextCharacter, FT_LOAD_RENDER | FT_LOAD_NO_BITMAP))
2017-09-12 18:10:27 +00:00
{
dbg_msg("textrender", "error loading glyph %d", NextCharacter);
2017-09-12 18:10:27 +00:00
pCurrent = pTmp;
continue;
}
2019-04-26 19:36:49 +00:00
2017-09-12 18:10:27 +00:00
pBitmap = &pFont->m_FtFace->glyph->bitmap; // ignore_convention
2020-03-20 12:48:45 +00:00
int SlotW = pBitmap->width;
int SlotH = pBitmap->rows;
int SlotSize = SlotW * SlotH;
2020-03-20 12:48:45 +00:00
// prepare glyph data
mem_zero(ms_aGlyphData, SlotSize);
if(pBitmap->pixel_mode == FT_PIXEL_MODE_GRAY) // ignore_convention
{
for(py = 0; py < (unsigned)SlotH; py++) // ignore_convention
for(px = 0; px < (unsigned)SlotW; px++)
{
ms_aGlyphData[(py)*SlotW + px] = pBitmap->buffer[py * pBitmap->width + px]; // ignore_convention
}
}
uint8_t *pImageBuff = (uint8_t *)pTexBuff;
for(int OffY = 0; OffY < SlotH; ++OffY)
{
for(int OffX = 0; OffX < SlotW; ++OffX)
{
2020-09-14 14:39:05 +00:00
int ImgOffX = clamp(x + OffX + WidthLastChars, x, (x + TexSubWidth) - 1);
int ImgOffY = clamp(y + OffY, y, (y + TexSubHeight) - 1);
size_t ImageOffset = ImgOffY * (TexWidth * ImageColorChannelCount) + ImgOffX * ImageColorChannelCount;
size_t GlyphOffset = (OffY)*SlotW + OffX;
for(size_t i = 0; i < (size_t)ImageColorChannelCount; ++i)
{
if(i != (size_t)ImageColorChannelCount - 1)
{
*(pImageBuff + ImageOffset + i) = 255;
}
else
{
*(pImageBuff + ImageOffset + i) = *(ms_aGlyphData + GlyphOffset);
}
}
}
}
2020-03-20 12:48:45 +00:00
WidthLastChars += (SlotW + 1);
}
pCurrent = pTmp;
}
}
2020-03-20 12:48:45 +00:00
virtual int AdjustFontSize(const char *pText, int TextLength, int MaxSize, int MaxWidth)
{
int WidthOfText = CalculateTextWidth(pText, TextLength, 0, 100);
int FontSize = 100.f / ((float)WidthOfText / (float)MaxWidth);
if(MaxSize > 0 && FontSize > MaxSize)
FontSize = MaxSize;
return FontSize;
}
2020-10-16 18:00:57 +00:00
virtual float GetGlyphOffsetX(int FontSize, char TextCharacter)
{
CFont *pFont = m_pDefaultFont;
FT_Set_Pixel_Sizes(pFont->m_FtFace, 0, FontSize);
const char *pTmp = &TextCharacter;
int NextCharacter = str_utf8_decode(&pTmp);
if(NextCharacter)
{
FT_Int32 FTFlags = 0;
#if FREETYPE_MAJOR >= 2 && FREETYPE_MINOR >= 7 && (FREETYPE_MINOR > 7 || FREETYPE_PATCH >= 1)
FTFlags = FT_LOAD_BITMAP_METRICS_ONLY | FT_LOAD_NO_BITMAP;
#else
FTFlags = FT_LOAD_RENDER | FT_LOAD_NO_BITMAP;
#endif
if(FT_Load_Char(pFont->m_FtFace, NextCharacter, FTFlags))
{
dbg_msg("textrender", "error loading glyph %d in GetGlyphOffsetX", NextCharacter);
2020-10-16 18:00:57 +00:00
return -1;
}
return (float)(pFont->m_FtFace->glyph->metrics.horiBearingX >> 6);
}
return 0;
}
virtual int CalculateTextWidth(const char *pText, int TextLength, int FontWidth, int FontHeight)
{
CFont *pFont = m_pDefaultFont;
const char *pCurrent = (char *)pText;
const char *pEnd = pCurrent + TextLength;
2019-04-26 19:36:49 +00:00
int WidthOfText = 0;
FT_Set_Pixel_Sizes(pFont->m_FtFace, FontWidth, FontHeight);
while(pCurrent < pEnd)
{
const char *pTmp = pCurrent;
int NextCharacter = str_utf8_decode(&pTmp);
if(NextCharacter)
{
FT_Int32 FTFlags = 0;
#if FREETYPE_MAJOR >= 2 && FREETYPE_MINOR >= 7 && (FREETYPE_MINOR > 7 || FREETYPE_PATCH >= 1)
FTFlags = FT_LOAD_BITMAP_METRICS_ONLY | FT_LOAD_NO_BITMAP;
#else
FTFlags = FT_LOAD_RENDER | FT_LOAD_NO_BITMAP;
#endif
if(FT_Load_Char(pFont->m_FtFace, NextCharacter, FTFlags))
{
dbg_msg("textrender", "error loading glyph %d in CalculateTextWidth", NextCharacter);
pCurrent = pTmp;
continue;
2017-09-12 18:10:27 +00:00
}
WidthOfText += (pFont->m_FtFace->glyph->metrics.width >> 6) + 1;
2017-09-12 18:10:27 +00:00
}
pCurrent = pTmp;
}
return WidthOfText;
}
2020-03-20 12:48:45 +00:00
virtual void OnWindowResize()
{
bool FoundTextContainer = false;
for(size_t i = 0; i < m_TextContainers.size(); ++i)
if(m_TextContainers[i].m_StringInfo.m_QuadBufferContainerIndex != -1)
FoundTextContainer = true;
if(FoundTextContainer)
2018-03-21 15:07:03 +00:00
{
dbg_msg("textrender", "%s", "Found non empty text container");
2018-03-21 15:07:03 +00:00
dbg_assert(false, "text container was not empty");
}
for(size_t i = 0; i < m_Fonts.size(); ++i)
{
// reset the skylines
for(int j = 0; j < 2; ++j)
{
2018-03-21 15:07:03 +00:00
for(size_t k = 0; k < m_Fonts[i]->m_TextureSkyline[j].m_CurHeightOfPixelColumn.size(); ++k)
m_Fonts[i]->m_TextureSkyline[j].m_CurHeightOfPixelColumn[k] = 0;
mem_zero(m_Fonts[i]->m_TextureData[j], (size_t)m_Fonts[i]->m_CurTextureDimensions[j] * m_Fonts[i]->m_CurTextureDimensions[j] * sizeof(unsigned char));
2018-05-07 04:02:44 +00:00
Graphics()->LoadTextureRawSub(m_Fonts[i]->m_aTextures[j], 0, 0, m_Fonts[i]->m_CurTextureDimensions[j], m_Fonts[i]->m_CurTextureDimensions[j], CImageInfo::FORMAT_ALPHA, m_Fonts[i]->m_TextureData[j]);
}
m_Fonts[i]->InitFontSizes();
}
}
2010-05-29 07:25:38 +00:00
};
IEngineTextRender *CreateEngineTextRender() { return new CTextRender; }