2019-05-30 23:00:00 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-28 22:23:55 +02:00
|
|
|
void AsciiToUnicode(const char *src, wchar *dst);
|
|
|
|
void TextCopy(wchar *dst, const wchar *src);
|
2019-06-01 23:17:39 +02:00
|
|
|
|
2019-05-30 23:00:00 +02:00
|
|
|
struct CKeyEntry
|
|
|
|
{
|
2019-06-01 23:17:39 +02:00
|
|
|
wchar *value;
|
2019-05-30 23:00:00 +02:00
|
|
|
char key[8];
|
|
|
|
};
|
|
|
|
// If this fails, CKeyArray::Load will have to be fixed
|
|
|
|
static_assert(sizeof(CKeyEntry) == 12, "CKeyEntry: error");
|
|
|
|
|
|
|
|
class CKeyArray
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CKeyEntry *entries;
|
|
|
|
int numEntries;
|
|
|
|
|
|
|
|
void Load(uint32 length, uint8 *data, int *offset);
|
|
|
|
void Unload(void);
|
2019-06-01 23:17:39 +02:00
|
|
|
void Update(wchar *chars);
|
2019-05-30 23:00:00 +02:00
|
|
|
CKeyEntry *BinarySearch(const char *key, CKeyEntry *entries, int16 low, int16 high);
|
2019-06-01 23:17:39 +02:00
|
|
|
wchar *Search(const char *key);
|
2019-05-30 23:00:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class CData
|
|
|
|
{
|
|
|
|
public:
|
2019-06-01 23:17:39 +02:00
|
|
|
wchar *chars;
|
2019-05-30 23:00:00 +02:00
|
|
|
int numChars;
|
|
|
|
|
|
|
|
void Load(uint32 length, uint8 *data, int *offset);
|
|
|
|
void Unload(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
class CText
|
|
|
|
{
|
|
|
|
CKeyArray keyArray;
|
|
|
|
CData data;
|
2019-06-28 22:23:55 +02:00
|
|
|
int8 encoding;
|
2019-05-30 23:00:00 +02:00
|
|
|
public:
|
|
|
|
CText(void);
|
|
|
|
~CText(void);
|
|
|
|
void Load(void);
|
|
|
|
void Unload(void);
|
2019-06-01 23:17:39 +02:00
|
|
|
wchar *Get(const char *key);
|
2019-06-28 22:23:55 +02:00
|
|
|
wchar GetUpperCase(wchar c);
|
|
|
|
void UpperCase(wchar *s);
|
2019-05-30 23:00:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CText &TheText;
|