2019-05-30 21:00:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-28 20:23:55 +00:00
|
|
|
void AsciiToUnicode(const char *src, wchar *dst);
|
2019-07-10 11:42:48 +00:00
|
|
|
char *UnicodeToAscii(wchar *src);
|
|
|
|
char *UnicodeToAsciiForSaveLoad(wchar *src);
|
|
|
|
void UnicodeStrcpy(wchar *dst, const wchar *src);
|
|
|
|
int UnicodeStrlen(const wchar *str);
|
2019-06-28 20:23:55 +00:00
|
|
|
void TextCopy(wchar *dst, const wchar *src);
|
2019-06-01 21:17:39 +00:00
|
|
|
|
2019-05-30 21:00:00 +00:00
|
|
|
struct CKeyEntry
|
|
|
|
{
|
2020-05-16 10:51:54 +00:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
uint32 valueOffset;
|
|
|
|
#else
|
2019-06-01 21:17:39 +00:00
|
|
|
wchar *value;
|
2020-05-16 10:51:54 +00:00
|
|
|
#endif
|
2019-05-30 21:00:00 +00:00
|
|
|
char key[8];
|
|
|
|
};
|
2020-05-10 13:54:37 +00:00
|
|
|
|
2019-05-30 21:00:00 +00:00
|
|
|
// If this fails, CKeyArray::Load will have to be fixed
|
2020-05-10 15:49:33 +00:00
|
|
|
VALIDATE_SIZE(CKeyEntry, 12);
|
2019-05-30 21:00:00 +00:00
|
|
|
|
|
|
|
class CKeyArray
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CKeyEntry *entries;
|
|
|
|
int numEntries;
|
|
|
|
|
2019-10-20 17:31:59 +00:00
|
|
|
CKeyArray(void) : entries(nil), numEntries(0) {}
|
|
|
|
~CKeyArray(void) { Unload(); }
|
2019-05-30 21:00:00 +00:00
|
|
|
void Load(uint32 length, uint8 *data, int *offset);
|
|
|
|
void Unload(void);
|
2019-06-01 21:17:39 +00:00
|
|
|
void Update(wchar *chars);
|
2019-05-30 21:00:00 +00:00
|
|
|
CKeyEntry *BinarySearch(const char *key, CKeyEntry *entries, int16 low, int16 high);
|
2020-05-16 10:51:54 +00:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
wchar *Search(const char *key, wchar *data);
|
|
|
|
#else
|
2019-06-01 21:17:39 +00:00
|
|
|
wchar *Search(const char *key);
|
2020-05-16 10:51:54 +00:00
|
|
|
#endif
|
2019-05-30 21:00:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CData
|
|
|
|
{
|
|
|
|
public:
|
2019-06-01 21:17:39 +00:00
|
|
|
wchar *chars;
|
2019-05-30 21:00:00 +00:00
|
|
|
int numChars;
|
|
|
|
|
2019-10-20 17:31:59 +00:00
|
|
|
CData(void) : chars(nil), numChars(0) {}
|
|
|
|
~CData(void) { Unload(); }
|
2019-05-30 21:00:00 +00:00
|
|
|
void Load(uint32 length, uint8 *data, int *offset);
|
|
|
|
void Unload(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
class CText
|
|
|
|
{
|
|
|
|
CKeyArray keyArray;
|
|
|
|
CData data;
|
2019-10-20 17:31:59 +00:00
|
|
|
char encoding;
|
2019-05-30 21:00:00 +00:00
|
|
|
public:
|
|
|
|
CText(void);
|
|
|
|
void Load(void);
|
|
|
|
void Unload(void);
|
2019-06-01 21:17:39 +00:00
|
|
|
wchar *Get(const char *key);
|
2019-06-28 20:23:55 +00:00
|
|
|
wchar GetUpperCase(wchar c);
|
|
|
|
void UpperCase(wchar *s);
|
2019-05-30 21:00:00 +00:00
|
|
|
};
|
|
|
|
|
2020-04-16 08:50:45 +00:00
|
|
|
extern CText TheText;
|