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/system.h>
|
|
|
|
#include <base/math.h>
|
|
|
|
#include <engine/graphics.h>
|
|
|
|
#include <engine/textrender.h>
|
2018-03-13 20:49:07 +00:00
|
|
|
#include <engine/shared/config.h>
|
|
|
|
#include <engine/storage.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,
|
|
|
|
};
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
struct SFontSizeChar
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2011-02-12 10:40:36 +00:00
|
|
|
int m_ID;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
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;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
float m_aUVs[4];
|
2010-05-29 07:25:38 +00:00
|
|
|
int64 m_TouchTime;
|
2019-01-06 05:42:57 +00:00
|
|
|
FT_UInt m_GlyphIndex;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
struct STextCharQuadVertexColor
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
unsigned char m_R, m_G, m_B, m_A;
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
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;
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
struct STextCharQuad
|
|
|
|
{
|
|
|
|
STextCharQuadVertex m_Vertices[4];
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
struct STextureSkyline
|
|
|
|
{
|
|
|
|
// the height of each column
|
|
|
|
std::vector<int> m_CurHeightOfPixelColumn;
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
struct CFontSizeData
|
|
|
|
{
|
|
|
|
int m_FontSize;
|
|
|
|
FT_Face *m_pFace;
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
std::map<int, SFontSizeChar> m_Chars;
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
#define MIN_FONT_SIZE 6
|
|
|
|
#define MAX_FONT_SIZE 128
|
|
|
|
#define NUM_FONT_SIZES MAX_FONT_SIZE - MIN_FONT_SIZE + 1
|
|
|
|
|
2010-07-05 18:57:07 +00:00
|
|
|
class CFont
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2010-07-05 18:57:07 +00:00
|
|
|
public:
|
2018-03-21 14:43:56 +00:00
|
|
|
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
|
|
|
|
2018-03-21 14:43:56 +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];
|
|
|
|
}
|
|
|
|
|
2010-10-06 21:07:35 +00:00
|
|
|
char m_aFilename[512];
|
2010-05-29 07:25:38 +00:00
|
|
|
FT_Face m_FtFace;
|
2018-03-21 14:43:56 +00:00
|
|
|
CFontSizeData m_aFontSizes[NUM_FONT_SIZES];
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
IGraphics::CTextureHandle m_aTextures[2];
|
2018-03-13 20:49:07 +00:00
|
|
|
// keep the full texture, because opengl doesn't provide texture copying
|
2018-04-09 09:56:39 +00:00
|
|
|
unsigned char *m_TextureData[2];
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
// 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
|
2018-03-21 14:43:56 +00:00
|
|
|
float m_AlignedStartX;
|
|
|
|
float m_AlignedStartY;
|
2018-03-15 02:33:22 +00:00
|
|
|
float m_X;
|
|
|
|
float m_Y;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
int m_Flags;
|
|
|
|
int m_LineCount;
|
|
|
|
int m_CharCount;
|
|
|
|
int m_MaxLines;
|
|
|
|
|
|
|
|
float m_StartX;
|
|
|
|
float m_StartY;
|
|
|
|
float m_LineWidth;
|
|
|
|
float m_UnscaledFontSize;
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
int m_RenderFlags;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
void Reset()
|
|
|
|
{
|
2018-03-21 14:43:56 +00:00
|
|
|
m_pFont = NULL;
|
|
|
|
m_FontSize = 0;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
m_StringInfo.m_QuadBufferObjectIndex = m_StringInfo.m_QuadBufferContainerIndex = m_StringInfo.m_SelectionQuadContainerIndex = -1;
|
|
|
|
m_StringInfo.m_QuadNum = 0;
|
|
|
|
m_StringInfo.m_CharacterQuads.clear();
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
m_AlignedStartX = m_AlignedStartY = m_X = m_Y = 0.f;
|
2018-03-13 20:49:07 +00:00
|
|
|
m_Flags = m_LineCount = m_CharCount = 0;
|
|
|
|
m_MaxLines = -1;
|
|
|
|
m_StartX = m_StartY = 0.f;
|
|
|
|
m_LineWidth = -1.f;
|
|
|
|
m_UnscaledFontSize = 0.f;
|
2018-03-21 14:43:56 +00:00
|
|
|
|
|
|
|
m_RenderFlags = 0;
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CTextRender : public IEngineTextRender
|
|
|
|
{
|
|
|
|
IGraphics *m_pGraphics;
|
|
|
|
IGraphics *Graphics() { return m_pGraphics; }
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
|
|
|
2018-03-13 20:49:07 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
STextContainer& GetTextContainer(int Index)
|
|
|
|
{
|
2019-04-26 19:36:49 +00:00
|
|
|
if(Index >= (int)m_TextContainers.size())
|
2018-03-13 20:49:07 +00:00
|
|
|
{
|
|
|
|
int Size = (int)m_TextContainers.size();
|
|
|
|
for(int i = 0; i < (Index + 1) - Size; ++i)
|
|
|
|
m_TextContainers.push_back(STextContainer());
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_TextContainers[Index];
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeTextContainer(int Index)
|
|
|
|
{
|
|
|
|
m_TextContainers[Index].Reset();
|
|
|
|
FreeTextContainerIndex(Index);
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int WordLength(const char *pText)
|
|
|
|
{
|
|
|
|
int s = 1;
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
if(*pText == 0)
|
|
|
|
return s-1;
|
|
|
|
if(*pText == '\n' || *pText == '\t' || *pText == ' ')
|
|
|
|
return s;
|
|
|
|
pText++;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-26 22:34:20 +00:00
|
|
|
ColorRGBA m_Color;
|
|
|
|
ColorRGBA m_OutlineColor;
|
2010-07-05 18:57:07 +00:00
|
|
|
CFont *m_pDefaultFont;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
FT_Library m_FTLibrary;
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
virtual void SetRenderFlags(unsigned int Flags)
|
|
|
|
{
|
|
|
|
m_RenderFlags = Flags;
|
|
|
|
}
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void Grow(unsigned char *pIn, unsigned char *pOut, int w, int h)
|
|
|
|
{
|
2011-04-13 18:37:12 +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
|
|
|
|
|
|
|
for(int sy = -1; sy <= 1; sy++)
|
|
|
|
for(int sx = -1; sx <= 1; sx++)
|
|
|
|
{
|
|
|
|
int GetX = x+sx;
|
|
|
|
int GetY = y+sy;
|
2018-03-13 20:49:07 +00:00
|
|
|
if(GetX >= 0 && GetY >= 0 && GetX < w && GetY < h)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
int Index = GetY*w+GetX;
|
|
|
|
if(pIn[Index] > c)
|
2011-04-13 18:37:12 +00:00
|
|
|
c = pIn[Index];
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pOut[y*w+x] = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
IGraphics::CTextureHandle InitTexture(int Width, int Height, void *pUploadData = NULL)
|
2019-04-26 19:36:49 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
void *pMem = NULL;
|
|
|
|
if(pUploadData)
|
2018-04-09 09:56:39 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
pMem = pUploadData;
|
2018-04-09 09:56:39 +00:00
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
else
|
|
|
|
{
|
2018-04-09 09:56:39 +00:00
|
|
|
pMem = calloc(Width * Height, 1);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
IGraphics::CTextureHandle Texture = Graphics()->LoadTextureRaw(Width, Height, CImageInfo::FORMAT_ALPHA, pMem, CImageInfo::FORMAT_ALPHA, IGraphics::TEXLOAD_NOMIPMAPS | IGraphics::TEXLOAD_NO_COMPRESSION);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
if(!pUploadData)
|
2018-04-09 09:56:39 +00:00
|
|
|
free(pMem);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
return Texture;
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
void UnloadTexture(IGraphics::CTextureHandle Index)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->UnloadTexture(Index);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IncreaseFontTexture(CFont *pFont, int TextureIndex)
|
|
|
|
{
|
|
|
|
int NewDimensions = pFont->m_CurTextureDimensions[TextureIndex] * 2;
|
|
|
|
|
2018-04-09 09:56:39 +00:00
|
|
|
unsigned char *pTmpTexBuffer = new unsigned char[NewDimensions*NewDimensions];
|
2018-03-13 20:49:07 +00:00
|
|
|
mem_zero(pTmpTexBuffer, NewDimensions * NewDimensions * sizeof(unsigned char));
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
for(int y = 0; y < pFont->m_CurTextureDimensions[TextureIndex]; ++y)
|
2011-12-31 08:40:11 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
for(int x = 0; x < pFont->m_CurTextureDimensions[TextureIndex]; ++x)
|
2011-12-31 08:40:11 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
pTmpTexBuffer[x + y * NewDimensions] = pFont->m_TextureData[TextureIndex][x + y * pFont->m_CurTextureDimensions[TextureIndex]];
|
2011-12-31 08:40:11 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
UnloadTexture(pFont->m_aTextures[TextureIndex]);
|
|
|
|
pFont->m_aTextures[TextureIndex] = InitTexture(NewDimensions, NewDimensions, pTmpTexBuffer);
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +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
|
|
|
}
|
|
|
|
|
2011-01-29 17:48:55 +00:00
|
|
|
int AdjustOutlineThicknessToFontSize(int OutlineThickness, int FontSize)
|
|
|
|
{
|
2018-03-21 14:43:56 +00:00
|
|
|
if(FontSize > 48)
|
2011-01-29 17:48:55 +00:00
|
|
|
OutlineThickness *= 4;
|
|
|
|
else if(FontSize >= 18)
|
|
|
|
OutlineThickness *= 2;
|
|
|
|
return OutlineThickness;
|
2011-01-04 11:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
|
|
{
|
2018-03-13 20:49:07 +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
|
|
|
}
|
|
|
|
|
2018-03-21 14:43:56 +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)];
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
bool GetCharacterSpace(CFont *pFont, int TextureIndex, int Width, int Height, int& PosX, int& PosY)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +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
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
|
|
{
|
2018-03-13 20:49:07 +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;
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +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
|
|
|
{
|
2018-03-13 20:49:07 +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
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +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
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
else
|
|
|
|
return false;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
void RenderGlyph(CFont *pFont, CFontSizeData *pSizeData, int Chr)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
FT_Bitmap *pBitmap;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int x = 1;
|
|
|
|
int y = 1;
|
2017-03-12 15:47:37 +00:00
|
|
|
unsigned int px, py;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
FT_Set_Pixel_Sizes(pFont->m_FtFace, 0, pSizeData->m_FontSize);
|
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
FT_UInt GlyphIndex = 0;
|
|
|
|
if(pFont->m_FtFace->charmap)
|
|
|
|
GlyphIndex = FT_Get_Char_Index(pFont->m_FtFace, (FT_ULong)Chr);
|
|
|
|
|
2019-03-28 21:38:20 +00:00
|
|
|
if(GlyphIndex == 0)
|
|
|
|
{
|
|
|
|
const int ReplacementChr = 0x25a1; // White square to indicate missing glyph
|
|
|
|
GlyphIndex = FT_Get_Char_Index(pFont->m_FtFace, (FT_ULong)ReplacementChr);
|
|
|
|
|
|
|
|
if(GlyphIndex == 0)
|
|
|
|
{
|
|
|
|
dbg_msg("pFont", "font has no glyph for either %d or replacement char %d", Chr, ReplacementChr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(FT_Load_Glyph(pFont->m_FtFace, GlyphIndex, FT_LOAD_RENDER|FT_LOAD_NO_BITMAP))
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
dbg_msg("pFont", "error loading glyph %d", Chr);
|
2018-03-13 20:49:07 +00:00
|
|
|
return;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pBitmap = &pFont->m_FtFace->glyph->bitmap; // ignore_convention
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// adjust spacing
|
2011-01-04 11:30:40 +00:00
|
|
|
int OutlineThickness = AdjustOutlineThicknessToFontSize(1, pSizeData->m_FontSize);
|
2010-05-29 07:25:38 +00:00
|
|
|
x += OutlineThickness;
|
|
|
|
y += OutlineThickness;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
unsigned int Width = pBitmap->width + x * 2;
|
|
|
|
unsigned int Height = pBitmap->rows + y * 2;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:49:07 +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
|
2018-03-13 20:49:07 +00:00
|
|
|
int X = 0;
|
|
|
|
int Y = 0;
|
|
|
|
while(!GetCharacterSpace(pFont, 0, (int)Width, (int)Height, X, Y))
|
|
|
|
{
|
|
|
|
IncreaseFontTexture(pFont, 0);
|
|
|
|
}
|
|
|
|
UploadGlyph(pFont, 0, X, Y, (int)Width, (int)Height, ms_aGlyphData);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(OutlineThickness == 1)
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
Grow(ms_aGlyphData, ms_aGlyphDataOutlined, Width, Height);
|
|
|
|
while(!GetCharacterSpace(pFont, 1, (int)Width, (int)Height, X, Y))
|
|
|
|
{
|
|
|
|
IncreaseFontTexture(pFont, 1);
|
|
|
|
}
|
|
|
|
UploadGlyph(pFont, 1, X, Y, (int)Width, (int)Height, ms_aGlyphDataOutlined);
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-05 11:12:23 +00:00
|
|
|
for(int i = OutlineThickness; i > 0; i-=2)
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
Grow(ms_aGlyphData, ms_aGlyphDataOutlined, Width, Height);
|
|
|
|
Grow(ms_aGlyphDataOutlined, ms_aGlyphData, Width, Height);
|
2011-01-05 11:12:23 +00:00
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
while(!GetCharacterSpace(pFont, 1, (int)Width, (int)Height, X, Y))
|
|
|
|
{
|
|
|
|
IncreaseFontTexture(pFont, 1);
|
|
|
|
}
|
|
|
|
UploadGlyph(pFont, 1, X, Y, (int)Width, (int)Height, ms_aGlyphData);
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// set char info
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
SFontSizeChar *pFontchr = &pSizeData->m_Chars[Chr];
|
|
|
|
int BMPHeight = pBitmap->rows + y * 2;
|
|
|
|
int BMPWidth = pBitmap->width + x * 2;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
pFontchr->m_ID = Chr;
|
2018-03-13 20:49:07 +00:00
|
|
|
pFontchr->m_Height = Height;
|
|
|
|
pFontchr->m_Width = Width;
|
|
|
|
pFontchr->m_OffsetX = (pFont->m_FtFace->glyph->metrics.horiBearingX >> 6); // ignore_convention
|
2018-03-21 14:43:56 +00:00
|
|
|
pFontchr->m_OffsetY = -((pFont->m_FtFace->glyph->metrics.height >> 6) - (pFont->m_FtFace->glyph->metrics.horiBearingY >> 6));
|
2018-03-13 20:49:07 +00:00
|
|
|
pFontchr->m_AdvanceX = (pFont->m_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;
|
2019-01-06 05:42:57 +00:00
|
|
|
pFontchr->m_GlyphIndex = GlyphIndex;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
SFontSizeChar *GetChar(CFont *pFont, CFontSizeData *pSizeData, int Chr)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +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
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
// render and add character
|
|
|
|
SFontSizeChar& FontSizeChr = pSizeData->m_Chars[Chr];
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
RenderGlyph(pFont, pSizeData, Chr);
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
return &FontSizeChr;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
return &it->second;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// must only be called from the rendering function as the pFont must be set to the correct size
|
|
|
|
void RenderSetup(CFont *pFont, int size)
|
|
|
|
{
|
|
|
|
FT_Set_Pixel_Sizes(pFont->m_FtFace, 0, size);
|
|
|
|
}
|
|
|
|
|
2019-01-06 05:42:57 +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};
|
2019-01-06 05:42:57 +00:00
|
|
|
FT_Get_Kerning(pFont->m_FtFace, GlyphIndexLeft, GlyphIndexRight, FT_KERNING_DEFAULT, &Kerning);
|
2010-05-29 07:25:38 +00:00
|
|
|
return (Kerning.x>>6);
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
public:
|
|
|
|
CTextRender()
|
|
|
|
{
|
|
|
|
m_pGraphics = 0;
|
|
|
|
|
2019-04-26 22:34:20 +00:00
|
|
|
m_Color = ColorRGBA(1,1,1,1);
|
|
|
|
m_OutlineColor = ColorRGBA(0, 0, 0, 0.3f);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:49:07 +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
|
2011-12-31 08:40:11 +00:00
|
|
|
//m_FontTextureFormat = GL_ALPHA;
|
2018-03-21 14:43:56 +00:00
|
|
|
|
|
|
|
m_RenderFlags = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2017-07-21 17:10:50 +00:00
|
|
|
virtual ~CTextRender()
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
for(size_t i = 0; i < m_Fonts.size(); ++i)
|
|
|
|
{
|
|
|
|
DestroyFont(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);
|
2017-07-21 17:10:50 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void Init()
|
|
|
|
{
|
|
|
|
m_pGraphics = Kernel()->RequestInterface<IGraphics>();
|
|
|
|
FT_Init_FreeType(&m_FTLibrary);
|
2018-03-13 20:49:07 +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)
|
|
|
|
{
|
|
|
|
io_close(File);
|
|
|
|
LoadFont(aFilename);
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual CFont *LoadFont(const char *pFilename)
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
CFont *pFont = new CFont();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
str_copy(pFont->m_aFilename, pFilename, sizeof(pFont->m_aFilename));
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(FT_New_Face(m_FTLibrary, pFont->m_aFilename, 0, &pFont->m_FtFace))
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
delete pFont;
|
2010-05-29 07:25:38 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dbg_msg("textrender", "loaded pFont from '%s'", pFilename);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
pFont->m_CurTextureDimensions[0] = 256;
|
|
|
|
pFont->m_TextureData[0] = new unsigned char[pFont->m_CurTextureDimensions[0] * pFont->m_CurTextureDimensions[0]];
|
|
|
|
mem_zero(pFont->m_TextureData[0], pFont->m_CurTextureDimensions[0] * pFont->m_CurTextureDimensions[0] * sizeof(unsigned char));
|
|
|
|
pFont->m_CurTextureDimensions[1] = 256;
|
|
|
|
pFont->m_TextureData[1] = new unsigned char[pFont->m_CurTextureDimensions[1] * pFont->m_CurTextureDimensions[1]];
|
|
|
|
mem_zero(pFont->m_TextureData[1], 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
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
pFont->InitFontSizes();
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
m_Fonts.push_back(pFont);
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
return pFont;
|
|
|
|
};
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +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
|
|
|
|
|
|
|
virtual void DestroyFont(CFont *pFont)
|
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
for(size_t i = 0; i < m_Fonts.size(); ++i)
|
|
|
|
{
|
|
|
|
if(m_Fonts[i] == pFont)
|
|
|
|
{
|
|
|
|
m_Fonts[i] = m_Fonts[m_Fonts.size() - 1];
|
|
|
|
m_Fonts.pop_back();
|
|
|
|
|
|
|
|
FT_Done_Face(pFont->m_FtFace);
|
|
|
|
delete pFont;
|
|
|
|
}
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
|
2010-07-05 18:57:07 +00:00
|
|
|
virtual void SetDefaultFont(CFont *pFont)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
dbg_msg("textrender", "default pFont set %p", pFont);
|
|
|
|
m_pDefaultFont = pFont;
|
2018-03-13 20:49:07 +00:00
|
|
|
m_pCurFont = m_pDefaultFont;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
virtual void SetCurFont(CFont *pFont)
|
|
|
|
{
|
|
|
|
if(pFont == NULL)
|
|
|
|
m_pCurFont = m_pDefaultFont;
|
|
|
|
else
|
|
|
|
m_pCurFont = pFont;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
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_CharCount = 0;
|
|
|
|
}
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void Text(void *pFontSetV, float x, float y, float Size, const char *pText, int MaxWidth)
|
|
|
|
{
|
|
|
|
CTextCursor Cursor;
|
|
|
|
SetCursor(&Cursor, x, y, Size, TEXTFLAG_RENDER);
|
|
|
|
Cursor.m_LineWidth = MaxWidth;
|
|
|
|
TextEx(&Cursor, pText, -1);
|
|
|
|
}
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
virtual float TextWidth(void *pFontSetV, float Size, const char *pText, int Length, float *pAlignedHeight = NULL)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
CTextCursor Cursor;
|
|
|
|
SetCursor(&Cursor, 0, 0, Size, 0);
|
|
|
|
TextEx(&Cursor, pText, Length);
|
2018-03-21 14:43:56 +00:00
|
|
|
if(pAlignedHeight != NULL)
|
|
|
|
*pAlignedHeight = Cursor.m_AlignedFontSize;
|
2010-05-29 07:25:38 +00:00
|
|
|
return Cursor.m_X;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-08-16 00:21:18 +00:00
|
|
|
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;
|
|
|
|
TextEx(&Cursor, pText, -1);
|
|
|
|
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; };
|
2011-03-13 11:55:00 +00:00
|
|
|
|
|
|
|
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;
|
2011-03-13 11:55:00 +00:00
|
|
|
}
|
2019-04-26 22:34:20 +00:00
|
|
|
virtual void TextOutlineColor(ColorRGBA rgb) { m_OutlineColor = rgb; };
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void TextEx(CTextCursor *pCursor, const char *pText, int Length)
|
|
|
|
{
|
|
|
|
CFont *pFont = pCursor->m_pFont;
|
|
|
|
CFontSizeData *pSizeData = NULL;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
|
2018-03-21 14:43:56 +00:00
|
|
|
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;
|
2018-03-21 14:43:56 +00:00
|
|
|
float CursorX, CursorY;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
float Size = pCursor->m_FontSize;
|
|
|
|
|
2018-03-15 02:33:22 +00:00
|
|
|
// calculate the font size of the displayed glyphs
|
2010-05-29 07:25:38 +00:00
|
|
|
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
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
|
2010-08-16 00:21:18 +00:00
|
|
|
ActualSize = (int)(Size * FakeToScreenY);
|
2010-05-29 07:25:38 +00:00
|
|
|
Size = ActualSize / FakeToScreenY;
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
pCursor->m_AlignedFontSize = Size;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// fetch pFont data
|
|
|
|
if(!pFont)
|
2018-03-13 20:49:07 +00:00
|
|
|
pFont = m_pCurFont;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!pFont)
|
|
|
|
return;
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
float Scale = 1.0f / pSizeData->m_FontSize;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
//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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
const char *pCurrent = (char *)pText;
|
|
|
|
const char *pEnd = pCurrent+Length;
|
2018-03-15 02:33:22 +00:00
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
if((m_RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) != 0)
|
|
|
|
{
|
|
|
|
DrawX = pCursor->m_X;
|
|
|
|
DrawY = pCursor->m_Y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DrawX = CursorX;
|
|
|
|
DrawY = CursorY;
|
|
|
|
}
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
LineCount = pCursor->m_LineCount;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
if(pCursor->m_Flags&TEXTFLAG_RENDER)
|
|
|
|
{
|
|
|
|
// make sure there are no vertices
|
|
|
|
Graphics()->FlushVertices();
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
if(Graphics()->IsBufferingEnabled())
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->TextQuadsBegin();
|
2019-04-26 22:34:20 +00:00
|
|
|
Graphics()->SetColor(m_Color);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Graphics()->TextureSet(pFont->m_aTextures[1]);
|
2010-05-29 07:25:38 +00:00
|
|
|
Graphics()->QuadsBegin();
|
2019-04-26 22:34:20 +00:00
|
|
|
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
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
FT_UInt LastCharGlyphIndex = 0;
|
|
|
|
size_t CharacterCounter = 0;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
|
|
{
|
2019-04-26 19:36:49 +00:00
|
|
|
int Wlen = minimum(WordLength((char *)pCurrent), (int)(pEnd-pCurrent));
|
2018-03-13 20:49:07 +00:00
|
|
|
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
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
// word can't be fitted in one line, cut it
|
|
|
|
CTextCursor Cutter = *pCursor;
|
|
|
|
Cutter.m_CharCount = 0;
|
|
|
|
Cutter.m_X = DrawX;
|
|
|
|
Cutter.m_Y = DrawY;
|
|
|
|
Cutter.m_Flags &= ~TEXTFLAG_RENDER;
|
|
|
|
Cutter.m_Flags |= TEXTFLAG_STOP_AT_END;
|
|
|
|
|
2019-04-11 10:21:42 +00:00
|
|
|
TextEx(&Cutter, pCurrent, Wlen);
|
2018-03-13 20:49:07 +00:00
|
|
|
Wlen = Cutter.m_CharCount;
|
|
|
|
NewLine = 1;
|
|
|
|
|
|
|
|
if(Wlen <= 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;
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
else if(Compare.m_X-pCursor->m_StartX > pCursor->m_LineWidth)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
NewLine = 1;
|
|
|
|
Wlen = 0;
|
|
|
|
}
|
2011-01-09 22:25:07 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
pBatchEnd = pCurrent + Wlen;
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
const char *pTmp = pCurrent;
|
|
|
|
int NextCharacter = str_utf8_decode(&pTmp);
|
|
|
|
while(pCurrent < pBatchEnd)
|
|
|
|
{
|
|
|
|
int Character = NextCharacter;
|
|
|
|
pCurrent = pTmp;
|
|
|
|
NextCharacter = str_utf8_decode(&pTmp);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
if(Character == '\n')
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
++CharacterCounter;
|
|
|
|
LastCharGlyphIndex = 0;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
DrawX = pCursor->m_StartX;
|
|
|
|
DrawY += Size;
|
2018-03-21 14:43:56 +00:00
|
|
|
if((m_RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
|
|
|
|
{
|
|
|
|
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
|
|
|
|
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
|
|
|
|
}
|
2010-10-11 00:29:30 +00:00
|
|
|
++LineCount;
|
2018-03-13 20:49:07 +00:00
|
|
|
if(pCursor->m_MaxLines > 0 && LineCount > pCursor->m_MaxLines)
|
|
|
|
break;
|
|
|
|
continue;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
SFontSizeChar *pChr = GetChar(pFont, pSizeData, Character);
|
|
|
|
if(pChr)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
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
|
|
|
|
2019-01-06 05:42:57 +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)
|
2018-03-13 20:49:07 +00:00
|
|
|
{
|
|
|
|
// we hit the end of the line, no more to render or count
|
|
|
|
pCurrent = pEnd;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2019-01-06 05:42:57 +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
|
|
|
|
2019-04-26 22:34:20 +00:00
|
|
|
if(pCursor->m_Flags&TEXTFLAG_RENDER && m_Color.a != 0.f)
|
2018-03-13 20:49:07 +00:00
|
|
|
{
|
|
|
|
if(Graphics()->IsBufferingEnabled())
|
|
|
|
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);
|
2019-01-06 05:42:57 +00:00
|
|
|
|
|
|
|
float BearingY = 0.f;
|
|
|
|
BearingY = (((m_RenderFlags&TEXT_RENDER_FLAG_NO_Y_BEARING) != 0) ? 0.f : (pChr->m_OffsetY*Scale*Size));
|
|
|
|
|
2019-01-06 05:45:47 +00:00
|
|
|
if((m_RenderFlags&TEXT_RENDER_FLAG_NO_OVERSIZE) != 0)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
if(pChr->m_Height*Scale*Size + BearingY > Size)
|
|
|
|
BearingY -= pChr->m_Height*Scale*Size - Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
IGraphics::CQuadItem QuadItem((DrawX + CharKerning) + BearingX, Y - BearingY, CharWidth, -pChr->m_Height*Scale*Size);
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->QuadsDrawTL(&QuadItem, 1);
|
|
|
|
}
|
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
if(NextCharacter == 0 && (m_RenderFlags&TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE) != 0)
|
|
|
|
DrawX += BearingX + CharKerning + CharWidth;
|
|
|
|
else
|
|
|
|
DrawX += Advance*Size + CharKerning;
|
2018-03-13 20:49:07 +00:00
|
|
|
pCursor->m_CharCount++;
|
2019-01-06 05:42:57 +00:00
|
|
|
|
|
|
|
++CharacterCounter;
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(NewLine)
|
|
|
|
{
|
|
|
|
DrawX = pCursor->m_StartX;
|
|
|
|
DrawY += Size;
|
2018-03-21 14:43:56 +00:00
|
|
|
if((m_RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
|
|
|
|
{
|
|
|
|
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
|
|
|
|
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
GotNewLine = 1;
|
|
|
|
++LineCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pCursor->m_Flags&TEXTFLAG_RENDER)
|
|
|
|
{
|
|
|
|
if(Graphics()->IsBufferingEnabled())
|
|
|
|
{
|
2019-04-26 22:34:20 +00:00
|
|
|
float OutlineColor[4] = { m_OutlineColor.r, m_OutlineColor.g, m_OutlineColor.b, m_OutlineColor.a*m_Color.a };
|
2018-03-13 20:49:07 +00:00
|
|
|
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);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
// render non outlined
|
|
|
|
Graphics()->QuadsDrawCurrentVertices(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pCursor->m_X = DrawX;
|
|
|
|
pCursor->m_LineCount = LineCount;
|
|
|
|
|
|
|
|
if(GotNewLine)
|
|
|
|
pCursor->m_Y = DrawY;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int CreateTextContainer(CTextCursor *pCursor, const char *pText)
|
|
|
|
{
|
|
|
|
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;
|
2018-03-21 14:43:56 +00:00
|
|
|
float FakeToScreenX, FakeToScreenY;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
int ActualSize;
|
|
|
|
|
|
|
|
float Size = pCursor->m_FontSize;
|
2018-03-15 02:33:22 +00:00
|
|
|
|
|
|
|
// calculate the font size of the displayed glyphs
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
|
2018-03-13 20:49:07 +00:00
|
|
|
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
int ActualX = (int)(pCursor->m_X * FakeToScreenX);
|
|
|
|
int ActualY = (int)(pCursor->m_Y * FakeToScreenY);
|
|
|
|
|
|
|
|
TextContainer.m_AlignedStartX = ActualX / FakeToScreenX;
|
|
|
|
TextContainer.m_AlignedStartY = ActualY / FakeToScreenY;
|
2018-03-15 02:33:22 +00:00
|
|
|
TextContainer.m_X = pCursor->m_X;
|
|
|
|
TextContainer.m_Y = pCursor->m_Y;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
TextContainer.m_Flags = pCursor->m_Flags;
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
TextContainer.m_RenderFlags = m_RenderFlags;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
// same with size
|
|
|
|
ActualSize = (int)(Size * FakeToScreenY);
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
pSizeData = pFont->GetFontSize(ActualSize);
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
TextContainer.m_FontSize = pSizeData->m_FontSize;
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
AppendTextContainer(pCursor, ContainerIndex, pText);
|
|
|
|
|
|
|
|
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()->IsBufferingEnabled())
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
TextContainer.m_LineCount = pCursor->m_LineCount;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void AppendTextContainer(CTextCursor *pCursor, int TextContainerIndex, const char *pText)
|
|
|
|
{
|
|
|
|
STextContainer& TextContainer = GetTextContainer(TextContainerIndex);
|
|
|
|
|
|
|
|
CFontSizeData *pSizeData = NULL;
|
|
|
|
|
|
|
|
float ScreenX0, ScreenY0, ScreenX1, ScreenY1;
|
2018-03-21 14:43:56 +00:00
|
|
|
float FakeToScreenX, FakeToScreenY;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
int ActualSize;
|
|
|
|
int GotNewLine = 0;
|
|
|
|
float DrawX = 0.0f, DrawY = 0.0f;
|
|
|
|
int LineCount = 0;
|
2018-03-21 14:43:56 +00:00
|
|
|
float CursorX, CursorY;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
float Size = pCursor->m_FontSize;
|
|
|
|
|
2018-03-15 02:33:22 +00:00
|
|
|
// calculate the font size of the displayed glyphs
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
|
2018-03-13 20:49:07 +00:00
|
|
|
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
int ActualX = (int)(pCursor->m_X * FakeToScreenX);
|
|
|
|
int ActualY = (int)(pCursor->m_Y * FakeToScreenY);
|
|
|
|
CursorX = ActualX / FakeToScreenX;
|
|
|
|
CursorY = ActualY / FakeToScreenY;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
// same with size
|
|
|
|
ActualSize = (int)(Size * FakeToScreenY);
|
|
|
|
Size = ActualSize / FakeToScreenY;
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
pCursor->m_AlignedFontSize = Size;
|
|
|
|
|
|
|
|
pSizeData = TextContainer.m_pFont->GetFontSize(TextContainer.m_FontSize);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
// string length
|
|
|
|
int Length = str_length(pText);
|
|
|
|
|
|
|
|
float Scale = 1.0f / pSizeData->m_FontSize;
|
|
|
|
|
|
|
|
const char *pCurrent = (char *)pText;
|
|
|
|
const char *pEnd = pCurrent + Length;
|
2018-03-15 02:33:22 +00:00
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
LineCount = pCursor->m_LineCount;
|
2019-04-26 19:36:49 +00:00
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
FT_UInt LastCharGlyphIndex = 0;
|
|
|
|
size_t CharacterCounter = 0;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
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));
|
2018-03-13 20:49:07 +00:00
|
|
|
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_CharCount = 0;
|
|
|
|
Cutter.m_X = DrawX;
|
|
|
|
Cutter.m_Y = DrawY;
|
|
|
|
Cutter.m_Flags &= ~TEXTFLAG_RENDER;
|
|
|
|
Cutter.m_Flags |= TEXTFLAG_STOP_AT_END;
|
|
|
|
|
2019-04-11 10:21:42 +00:00
|
|
|
TextEx(&Cutter, pCurrent, Wlen);
|
2018-03-13 20:49:07 +00:00
|
|
|
Wlen = Cutter.m_CharCount;
|
|
|
|
NewLine = 1;
|
|
|
|
|
|
|
|
if(Wlen <= 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);
|
|
|
|
while(pCurrent < pBatchEnd)
|
|
|
|
{
|
|
|
|
int Character = NextCharacter;
|
|
|
|
pCurrent = pTmp;
|
|
|
|
NextCharacter = str_utf8_decode(&pTmp);
|
|
|
|
|
|
|
|
if(Character == '\n')
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
LastCharGlyphIndex = 0;
|
|
|
|
++CharacterCounter;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
DrawX = pCursor->m_StartX;
|
|
|
|
DrawY += Size;
|
2018-03-21 14:43:56 +00:00
|
|
|
if((RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
|
|
|
|
{
|
|
|
|
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
|
|
|
|
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
++LineCount;
|
|
|
|
if(pCursor->m_MaxLines > 0 && LineCount > pCursor->m_MaxLines)
|
|
|
|
break;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
SFontSizeChar *pChr = GetChar(TextContainer.m_pFont, pSizeData, Character);
|
|
|
|
if(pChr)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
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
|
|
|
|
2019-01-06 05:42:57 +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)
|
2018-03-13 20:49:07 +00:00
|
|
|
{
|
|
|
|
// we hit the end of the line, no more to render or count
|
|
|
|
pCurrent = pEnd;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-01-06 05:42:57 +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
|
|
|
|
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)
|
2018-03-13 20:49:07 +00:00
|
|
|
{
|
|
|
|
TextContainer.m_StringInfo.m_CharacterQuads.push_back(STextCharQuad());
|
|
|
|
STextCharQuad& TextCharQuad = TextContainer.m_StringInfo.m_CharacterQuads.back();
|
|
|
|
|
|
|
|
float Y = (DrawY + Size);
|
2019-01-06 05:42:57 +00:00
|
|
|
|
|
|
|
float BearingY = (((RenderFlags&TEXT_RENDER_FLAG_NO_Y_BEARING) != 0) ? 0.f : (pChr->m_OffsetY*Scale*Size));
|
|
|
|
|
2019-01-06 05:45:47 +00:00
|
|
|
if((RenderFlags&TEXT_RENDER_FLAG_NO_OVERSIZE) != 0)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
if(pChr->m_Height*Scale*Size + BearingY > Size)
|
|
|
|
BearingY -= pChr->m_Height*Scale*Size - Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextCharQuad.m_Vertices[0].m_X = (DrawX + CharKerning) + BearingX;
|
|
|
|
TextCharQuad.m_Vertices[0].m_Y = Y - BearingY;
|
2018-03-13 20:49:07 +00:00
|
|
|
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);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
TextCharQuad.m_Vertices[1].m_X = (DrawX + CharKerning) + BearingX + CharWidth;
|
|
|
|
TextCharQuad.m_Vertices[1].m_Y = Y - BearingY;
|
2018-03-13 20:49:07 +00:00
|
|
|
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);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
TextCharQuad.m_Vertices[2].m_X = (DrawX + CharKerning) + BearingX + CharWidth;
|
|
|
|
TextCharQuad.m_Vertices[2].m_Y = Y - BearingY - pChr->m_Height*Scale*Size;
|
2018-03-13 20:49:07 +00:00
|
|
|
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);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
TextCharQuad.m_Vertices[3].m_X = (DrawX + CharKerning) + BearingX;
|
|
|
|
TextCharQuad.m_Vertices[3].m_Y = Y - BearingY - pChr->m_Height*Scale*Size;
|
2018-03-13 20:49:07 +00:00
|
|
|
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);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
if(NextCharacter == 0 && (RenderFlags&TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE) != 0)
|
|
|
|
DrawX += BearingX + CharKerning + CharWidth;
|
|
|
|
else
|
|
|
|
DrawX += Advance * Size + CharKerning;
|
2018-03-13 20:49:07 +00:00
|
|
|
pCursor->m_CharCount++;
|
2019-01-06 05:42:57 +00:00
|
|
|
++CharacterCounter;
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(NewLine)
|
|
|
|
{
|
|
|
|
DrawX = pCursor->m_StartX;
|
|
|
|
DrawY += Size;
|
2018-03-21 14:43:56 +00:00
|
|
|
if((RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
|
|
|
|
{
|
|
|
|
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
|
|
|
|
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
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()->IsBufferingEnabled())
|
|
|
|
{
|
|
|
|
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;
|
2010-10-11 00:29:30 +00:00
|
|
|
pCursor->m_LineCount = LineCount;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(GotNewLine)
|
|
|
|
pCursor->m_Y = DrawY;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
// just deletes and creates text container
|
|
|
|
virtual void RecreateTextContainer(CTextCursor *pCursor, int TextContainerIndex, const char *pText)
|
|
|
|
{
|
|
|
|
DeleteTextContainer(TextContainerIndex);
|
|
|
|
CreateTextContainer(pCursor, pText);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void RecreateTextContainerSoft(CTextCursor *pCursor, int TextContainerIndex, const char *pText)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
AppendTextContainer(pCursor, TextContainerIndex, pText);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2018-03-21 14:43:56 +00:00
|
|
|
float FakeToScreenX, FakeToScreenY;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
int ActualSize;
|
|
|
|
float DrawX = 0.0f, DrawY = 0.0f;
|
|
|
|
int LineCount = 0;
|
|
|
|
|
|
|
|
float Size = TextContainer.m_UnscaledFontSize;
|
|
|
|
|
2018-03-15 02:33:22 +00:00
|
|
|
// calculate the font size of the displayed glyphs
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->GetScreen(&ScreenX0, &ScreenY0, &ScreenX1, &ScreenY1);
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
FakeToScreenX = (Graphics()->ScreenWidth() / (ScreenX1 - ScreenX0));
|
2018-03-13 20:49:07 +00:00
|
|
|
FakeToScreenY = (Graphics()->ScreenHeight() / (ScreenY1 - ScreenY0));
|
|
|
|
|
|
|
|
// same with size
|
|
|
|
ActualSize = (int)(Size * FakeToScreenY);
|
|
|
|
Size = ActualSize / FakeToScreenY;
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
pSizeData = TextContainer.m_pFont->GetFontSize(TextContainer.m_FontSize);
|
2018-03-13 20:49:07 +00:00
|
|
|
|
|
|
|
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;
|
2018-03-21 14:43:56 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-03-15 02:33:22 +00:00
|
|
|
DrawX = TextContainer.m_X;
|
|
|
|
DrawY = TextContainer.m_Y;
|
2018-03-13 20:49:07 +00:00
|
|
|
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;
|
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
FT_UInt LastCharGlyphIndex = 0;
|
|
|
|
size_t CharacterCounter = 0;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
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_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));
|
2018-03-13 20:49:07 +00:00
|
|
|
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_CharCount = 0;
|
|
|
|
Cutter.m_X = DrawX;
|
|
|
|
Cutter.m_Y = DrawY;
|
|
|
|
Cutter.m_Flags &= ~TEXTFLAG_RENDER;
|
|
|
|
Cutter.m_Flags |= TEXTFLAG_STOP_AT_END;
|
|
|
|
|
2019-04-11 10:21:42 +00:00
|
|
|
TextEx(&Cutter, pCurrent, Wlen);
|
2018-03-13 20:49:07 +00:00
|
|
|
Wlen = Cutter.m_CharCount;
|
|
|
|
NewLine = 1;
|
|
|
|
|
|
|
|
if(Wlen <= 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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
pCurrentLast = pCurrent;
|
|
|
|
const char *pTmp = pCurrent;
|
|
|
|
int NextCharacter = str_utf8_decode(&pTmp);
|
|
|
|
while(pCurrent < pBatchEnd)
|
|
|
|
{
|
|
|
|
int Character = NextCharacter;
|
|
|
|
pCurrent = pTmp;
|
|
|
|
NextCharacter = str_utf8_decode(&pTmp);
|
|
|
|
|
|
|
|
if(Character == '\n')
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
LastCharGlyphIndex = 0;
|
|
|
|
++CharacterCounter;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
DrawX = TextContainer.m_StartX;
|
|
|
|
DrawY += Size;
|
2018-03-21 14:43:56 +00:00
|
|
|
if((RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
|
|
|
|
{
|
|
|
|
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
|
|
|
|
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
++LineCount;
|
|
|
|
if(TextContainer.m_MaxLines > 0 && LineCount > TextContainer.m_MaxLines)
|
|
|
|
break;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
SFontSizeChar *pChr = GetChar(TextContainer.m_pFont, pSizeData, Character);
|
|
|
|
if(pChr)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
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;
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2019-01-06 05:42:57 +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(TextContainer.m_Flags&TEXTFLAG_STOP_AT_END && (DrawX + CharKerning) + Advance * Size - TextContainer.m_StartX > TextContainer.m_LineWidth)
|
2018-03-13 20:49:07 +00:00
|
|
|
{
|
|
|
|
// 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)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
CursorQuad.Set((DrawX + CharKerning), DrawY, 2.f * Scale * Size, MaxRowHeight);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(CharBytePos >= SelectionStart && CharBytePos < SelectionEnd)
|
|
|
|
{
|
2019-01-06 05:42:57 +00:00
|
|
|
SelectionQuads.push_back(IGraphics::CQuadItem((DrawX + CharKerning), DrawY, Advance * Size, MaxRowHeight));
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 05:42:57 +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
|
|
|
|
2019-01-06 05:42:57 +00:00
|
|
|
if(NextCharacter == 0 && (RenderFlags&TEXT_RENDER_FLAG_NO_LAST_CHARACTER_ADVANCE) != 0)
|
|
|
|
DrawX += BearingX + CharKerning + CharWidth;
|
|
|
|
else
|
|
|
|
DrawX += Advance * Size + CharKerning;
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
TextContainer.m_CharCount++;
|
2019-01-06 05:42:57 +00:00
|
|
|
++CharacterCounter;
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
pCurrentLast = pCurrent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(NewLine)
|
|
|
|
{
|
|
|
|
DrawX = TextContainer.m_StartX;
|
|
|
|
DrawY += Size;
|
2018-03-21 14:43:56 +00:00
|
|
|
if((RenderFlags&TEXT_RENDER_FLAG_NO_PIXEL_ALIGMENT) == 0)
|
|
|
|
{
|
|
|
|
DrawX = (int)(DrawX * FakeToScreenX) / FakeToScreenX; // realign
|
|
|
|
DrawY = (int)(DrawY * FakeToScreenY) / FakeToScreenY;
|
|
|
|
}
|
2018-03-13 20:49:07 +00:00
|
|
|
++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()->IsBufferingEnabled())
|
|
|
|
{
|
|
|
|
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()->IsBufferingEnabled())
|
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->TextureClear();
|
2018-03-13 20:49:07 +00:00
|
|
|
// 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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->QuadsBegin();
|
|
|
|
|
|
|
|
for(size_t i = 0; i < TextContainer.m_StringInfo.m_QuadNum; ++i)
|
|
|
|
{
|
|
|
|
STextCharQuad& TextCharQuad = TextContainer.m_StringInfo.m_CharacterQuads[i];
|
|
|
|
|
2018-05-07 03:52:02 +00:00
|
|
|
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
|
|
|
|
2018-03-13 20:49:07 +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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
if(pTextColor->m_A != 0)
|
|
|
|
{
|
2018-05-07 03:52:02 +00:00
|
|
|
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];
|
|
|
|
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
|
|
|
|
2018-05-07 03:52:02 +00:00
|
|
|
// render non outlined
|
|
|
|
Graphics()->QuadsDrawCurrentVertices(false);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
else
|
2018-05-07 03:52:02 +00:00
|
|
|
Graphics()->QuadsEnd();
|
2018-03-13 20:49:07 +00:00
|
|
|
|
2018-04-09 20:02:16 +00:00
|
|
|
|
|
|
|
// reset
|
|
|
|
Graphics()->SetColor(1.f, 1.f, 1.f, 1.f);
|
2018-03-13 20:49:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void RenderTextContainer(int TextContainerIndex, STextRenderColor *pTextColor, STextRenderColor *pTextOutlineColor, float X, float Y)
|
|
|
|
{
|
2018-03-21 14:43:56 +00:00
|
|
|
STextContainer& TextContainer = GetTextContainer(TextContainerIndex);
|
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
// 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);
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
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
|
|
|
|
2018-03-13 20:49:07 +00:00
|
|
|
Graphics()->MapScreen(ScreenX0 - X, ScreenY0 - Y, ScreenX1 - X, ScreenY1 - Y);
|
|
|
|
RenderTextContainer(TextContainerIndex, pTextColor, pTextOutlineColor);
|
|
|
|
Graphics()->MapScreen(ScreenX0, ScreenY0, ScreenX1, ScreenY1);
|
|
|
|
}
|
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
virtual void UploadEntityLayerText(IGraphics::CTextureHandle Texture, const char *pText, int Length, float x, float y, int FontSize)
|
2017-09-12 18:10:27 +00:00
|
|
|
{
|
2019-05-11 15:59:47 +00:00
|
|
|
if (FontSize < 1)
|
|
|
|
{
|
2012-08-12 10:41:50 +00:00
|
|
|
dbg_msg("pFont", "texture with id '%d' will not be updated. Reason - font is too small", (int)Texture);
|
2019-05-11 15:59:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-06 12:19:10 +00:00
|
|
|
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
|
|
|
|
2017-09-27 10:19:39 +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))
|
|
|
|
{
|
|
|
|
dbg_msg("pFont", "error loading glyph %d", NextCharacter);
|
|
|
|
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
|
2019-05-06 12:19:10 +00:00
|
|
|
|
|
|
|
int SlotW = pBitmap->width;
|
|
|
|
int SlotH = pBitmap->rows;
|
|
|
|
int SlotSize = SlotW*SlotH;
|
|
|
|
|
|
|
|
// prepare glyph data
|
|
|
|
mem_zero(ms_aGlyphData, SlotSize);
|
|
|
|
|
|
|
|
if(pBitmap->pixel_mode == FT_PIXEL_MODE_GRAY) // ignore_convention
|
2017-09-15 01:01:26 +00:00
|
|
|
{
|
2018-03-13 20:49:07 +00:00
|
|
|
for(py = 0; py < (unsigned)SlotH; py++) // ignore_convention
|
|
|
|
for(px = 0; px < (unsigned)SlotW; px++)
|
2017-09-15 01:01:26 +00:00
|
|
|
{
|
|
|
|
ms_aGlyphData[(py)*SlotW + px] = pBitmap->buffer[py*pBitmap->width + px]; // ignore_convention
|
|
|
|
}
|
|
|
|
}
|
2019-05-06 12:19:10 +00:00
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
Graphics()->LoadTextureRawSub(Texture, x + WidthLastChars, y, SlotW, SlotH, CImageInfo::FORMAT_ALPHA, ms_aGlyphData);
|
2019-05-06 12:19:10 +00:00
|
|
|
WidthLastChars += (SlotW + 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
pCurrent = pTmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int AdjustFontSize(const char *pText, int TextLength, int MaxSize = -1)
|
|
|
|
{
|
|
|
|
int WidthOfText = CalculateTextWidth(pText, TextLength, 0, 100);
|
|
|
|
|
|
|
|
int FontSize = 100.f / ((float)WidthOfText / (float)MaxSize);
|
|
|
|
|
|
|
|
if (MaxSize > 0 && FontSize > MaxSize)
|
|
|
|
FontSize = MaxSize;
|
|
|
|
|
|
|
|
return FontSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-05-06 12:19:10 +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("pFont", "error loading glyph %d", NextCharacter);
|
|
|
|
pCurrent = pTmp;
|
|
|
|
continue;
|
2017-09-12 18:10:27 +00:00
|
|
|
}
|
2019-05-06 12:19:10 +00:00
|
|
|
|
|
|
|
WidthOfText += (pFont->m_FtFace->glyph->metrics.width >> 6) + 1;
|
2017-09-12 18:10:27 +00:00
|
|
|
}
|
|
|
|
pCurrent = pTmp;
|
|
|
|
}
|
2018-03-21 14:43:56 +00:00
|
|
|
|
2019-05-06 12:19:10 +00:00
|
|
|
return WidthOfText;
|
|
|
|
}
|
|
|
|
|
2018-03-21 14:43:56 +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;
|
2018-03-21 15:07:03 +00:00
|
|
|
if (FoundTextContainer)
|
|
|
|
{
|
|
|
|
dbg_msg("text render", "%s", "Found non empty text container");
|
|
|
|
dbg_assert(false, "text container was not empty");
|
|
|
|
}
|
2018-03-21 14:43:56 +00:00
|
|
|
|
|
|
|
for(size_t i = 0; i < m_Fonts.size(); ++i)
|
|
|
|
{
|
|
|
|
// reset the skylines
|
|
|
|
for(int j = 0; j < 2; ++j)
|
2018-05-07 03:52:02 +00:00
|
|
|
{
|
2018-03-21 15:07:03 +00:00
|
|
|
for(size_t k = 0; k < m_Fonts[i]->m_TextureSkyline[j].m_CurHeightOfPixelColumn.size(); ++k)
|
2018-03-21 14:43:56 +00:00
|
|
|
m_Fonts[i]->m_TextureSkyline[j].m_CurHeightOfPixelColumn[k] = 0;
|
|
|
|
|
2018-05-07 03:52:02 +00:00
|
|
|
mem_zero(m_Fonts[i]->m_TextureData[j], 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]);
|
2018-05-07 03:52:02 +00:00
|
|
|
}
|
|
|
|
|
2018-03-21 14:43:56 +00:00
|
|
|
m_Fonts[i]->InitFontSizes();
|
|
|
|
}
|
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
IEngineTextRender *CreateEngineTextRender() { return new CTextRender; }
|