1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-07-01 15:43:47 +00:00
re3/src/text/Text.h

100 lines
2.3 KiB
C
Raw Normal View History

2019-05-30 21:00:00 +00:00
#pragma once
char *UnicodeToAscii(wchar *src);
char *UnicodeToAsciiForSaveLoad(wchar *src);
2020-06-27 21:01:51 +00:00
char *UnicodeToAsciiForMemoryCard(wchar *src);
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
VALIDATE_SIZE(CKeyEntry, 12);
2019-05-30 21:00:00 +00:00
class CKeyArray
{
public:
CKeyEntry *entries;
2020-07-22 11:56:28 +00:00
int numEntries; // You can make this size_t if you want to exceed 32-bit boundaries, everything else should be ready.
2019-05-30 21:00:00 +00:00
2019-10-20 17:31:59 +00:00
CKeyArray(void) : entries(nil), numEntries(0) {}
~CKeyArray(void) { Unload(); }
2020-07-22 11:56:28 +00:00
void Load(size_t length, int file, size_t *offset);
2019-05-30 21:00:00 +00:00
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
2020-05-17 22:28:40 +00:00
wchar *Search(const char *key, wchar *data, uint8 *result);
2020-05-16 10:51:54 +00:00
#else
2020-05-17 22:28:40 +00:00
wchar *Search(const char *key, uint8* result);
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;
2020-07-22 11:56:28 +00:00
int numChars; // You can make this size_t if you want to exceed 32-bit boundaries, everything else should be ready.
2019-05-30 21:00:00 +00:00
2019-10-20 17:31:59 +00:00
CData(void) : chars(nil), numChars(0) {}
~CData(void) { Unload(); }
2020-07-22 11:56:28 +00:00
void Load(size_t length, int file, size_t* offset);
2019-05-30 21:00:00 +00:00
void Unload(void);
};
2020-05-17 22:28:40 +00:00
class CMissionTextOffsets
{
public:
struct Entry
{
char szMissionName[8];
uint32 offset;
};
enum {MAX_MISSION_TEXTS = 90}; // beware that LCS has more
Entry data[MAX_MISSION_TEXTS];
2020-07-22 11:56:28 +00:00
uint16 size; // You can make this size_t if you want to exceed 32-bit boundaries, everything else should be ready.
2020-05-17 22:28:40 +00:00
CMissionTextOffsets(void) : size(0) {}
2020-07-22 11:56:28 +00:00
void Load(size_t table_size, int file, size_t* bytes_read, int);
2020-05-17 22:28:40 +00:00
};
struct ChunkHeader
{
char magic[4];
int size;
};
2019-05-30 21:00:00 +00:00
class CText
{
CKeyArray keyArray;
CData data;
2020-05-17 22:28:40 +00:00
CKeyArray mission_keyArray;
CData mission_data;
2019-10-20 17:31:59 +00:00
char encoding;
2020-05-17 22:28:40 +00:00
bool bHasMissionTextOffsets;
bool bIsMissionTextLoaded;
char szMissionTableName[8];
CMissionTextOffsets MissionTextOffsets;
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);
2020-05-17 22:28:40 +00:00
void GetNameOfLoadedMissionText(char *outName);
2020-07-22 11:56:28 +00:00
void ReadChunkHeader(ChunkHeader *buf, int32 file, size_t *bytes_read);
2020-05-17 22:28:40 +00:00
void LoadMissionText(char *MissionTableName);
2019-05-30 21:00:00 +00:00
};
2020-04-16 08:50:45 +00:00
extern CText TheText;