prime/include/Kyoto/Text/CTextParser.hpp

33 lines
1011 B
C++
Raw Normal View History

#ifndef _CTEXTPARSER
#define _CTEXTPARSER
2022-09-30 04:24:13 +00:00
#include <rstl/string.hpp>
#include <types.h>
2022-09-30 04:24:13 +00:00
#include <Kyoto/Text/CTextColor.hpp>
class IObjectStore;
class CTextExecuteBuffer;
2022-09-30 04:24:13 +00:00
class CTextParser {
public:
CTextParser(IObjectStore& store);
void ParseText(CTextExecuteBuffer&, const wchar_t* str, int len);
uint GetAssetIdFromString(const rstl::string& str);
uint GetFont(const wchar_t* str, int len);
uint GetImage(const wchar_t* str, int len);
uint HandleUserTag(CTextExecuteBuffer& buffer, const wchar_t* str, int len);
void ParseTag(CTextExecuteBuffer&, const wchar_t* str, int len);
static bool BeginsWith(const wchar_t* str1, int len, const wchar_t* str2);
static bool Equals(const wchar_t* str1, int len, const wchar_t* str2);
static uint ParseInt(const wchar_t* str, int len, bool);
static uint FromHex(wchar_t c);
static uint GetColorValue(const wchar_t* str);
CTextColor ParseColor(const wchar_t* str, int len);
2022-09-30 04:24:13 +00:00
private:
IObjectStore& mObjectStore;
2022-09-30 04:24:13 +00:00
};
#endif // _CTEXTPARSER