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
|
|
|
#ifndef ENGINE_TEXTRENDER_H
|
|
|
|
#define ENGINE_TEXTRENDER_H
|
|
|
|
#include "kernel.h"
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TEXTFLAG_RENDER=1,
|
|
|
|
TEXTFLAG_ALLOW_NEWLINE=2,
|
|
|
|
TEXTFLAG_STOP_AT_END=4
|
|
|
|
};
|
|
|
|
|
|
|
|
class CFont;
|
|
|
|
|
|
|
|
class CTextCursor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int m_Flags;
|
|
|
|
int m_LineCount;
|
|
|
|
int m_CharCount;
|
2010-10-11 00:29:30 +00:00
|
|
|
int m_MaxLines;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
float m_StartX;
|
|
|
|
float m_StartY;
|
|
|
|
float m_LineWidth;
|
|
|
|
float m_X, m_Y;
|
2017-05-24 17:37:51 +00:00
|
|
|
float m_EmojiX;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-07-05 18:57:07 +00:00
|
|
|
CFont *m_pFont;
|
2010-05-29 07:25:38 +00:00
|
|
|
float m_FontSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ITextRender : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("textrender", 0)
|
|
|
|
public:
|
|
|
|
virtual void SetCursor(CTextCursor *pCursor, float x, float y, float FontSize, int Flags) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual CFont *LoadFont(const char *pFilename) = 0;
|
|
|
|
virtual void DestroyFont(CFont *pFont) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-07-05 18:57:07 +00:00
|
|
|
virtual void SetDefaultFont(CFont *pFont) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
virtual void TextEx(CTextCursor *pCursor, const char *pText, int Length) = 0;
|
2017-09-27 10:19:39 +00:00
|
|
|
virtual void UploadText(int TextureID, const char *pText, int Length, float x, float y, int Size, int MaxWidth, int MaxSize = -1, int MinSize = -1) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// old foolish interface
|
|
|
|
virtual void TextColor(float r, float g, float b, float a) = 0;
|
2011-03-13 11:55:00 +00:00
|
|
|
virtual void TextOutlineColor(float r, float g, float b, float a) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void Text(void *pFontSetV, float x, float y, float Size, const char *pText, int MaxWidth) = 0;
|
|
|
|
virtual float TextWidth(void *pFontSetV, float Size, const char *pText, int Length) = 0;
|
2010-08-16 00:21:18 +00:00
|
|
|
virtual int TextLineCount(void *pFontSetV, float Size, const char *pText, float LineWidth) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IEngineTextRender : public ITextRender
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("enginetextrender", 0)
|
|
|
|
public:
|
|
|
|
virtual void Init() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern IEngineTextRender *CreateEngineTextRender();
|
|
|
|
|
|
|
|
#endif
|