mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 05:39:21 +00:00
Full Messages
This commit is contained in:
parent
c97a28b385
commit
e35780df43
7 changed files with 950 additions and 71 deletions
|
@ -4,9 +4,6 @@ struct tMessage
|
|||
{
|
||||
wchar *m_pText;
|
||||
uint16 m_nFlag;
|
||||
private:
|
||||
int8 _pad6[2];
|
||||
public:
|
||||
uint32 m_nTime;
|
||||
uint32 m_nStartTime;
|
||||
int32 m_nNumber[6];
|
||||
|
@ -15,8 +12,7 @@ public:
|
|||
|
||||
struct tBigMessage
|
||||
{
|
||||
tMessage m_Current;
|
||||
tMessage m_Stack[3];
|
||||
tMessage m_Stack[4];
|
||||
};
|
||||
|
||||
struct tPreviousBrief
|
||||
|
@ -26,31 +22,43 @@ struct tPreviousBrief
|
|||
wchar *m_pString;
|
||||
};
|
||||
|
||||
#define NUMBRIEFMESSAGES 8
|
||||
#define NUMBIGMESSAGES 6
|
||||
#define NUMPREVIOUSBRIEFS 5
|
||||
|
||||
class CMessages
|
||||
{
|
||||
public:
|
||||
static tPreviousBrief *PreviousBriefs;
|
||||
static tMessage *BriefMessages;
|
||||
static tBigMessage *BIGMessages;
|
||||
static tMessage(&BriefMessages)[NUMBRIEFMESSAGES];
|
||||
static tBigMessage(&BIGMessages)[NUMBIGMESSAGES];
|
||||
static tPreviousBrief(&PreviousBriefs)[NUMPREVIOUSBRIEFS];
|
||||
|
||||
public:
|
||||
static void Init(void);
|
||||
static uint16 GetWideStringLength(wchar *src);
|
||||
static void WideStringCopy(wchar *dst, wchar *src, uint16 size);
|
||||
static bool WideStringCompare(wchar *str1, wchar *str2, uint16 size);
|
||||
static void Process(void);
|
||||
static void Display(void);
|
||||
static void AddMessage(wchar *key, uint32 time, uint16 pos);
|
||||
static void AddMessageJumpQ(wchar *key, uint32 time, uint16 pos);
|
||||
static void AddMessageSoon(wchar *key, uint32 time, uint16 pos);
|
||||
static void ClearMessages(void);
|
||||
static void ClearSmallMessagesOnly(void);
|
||||
static void AddBigMessage(wchar *key, uint32 time, uint16 pos);
|
||||
static void AddBigMessageQ(wchar *key, uint32 time, uint16 pos);
|
||||
static void AddToPreviousBriefArray(wchar *text, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6, wchar *string);
|
||||
static void InsertNumberInString(wchar *src, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6, wchar *dst);
|
||||
static void InsertStringInString(wchar *str1, wchar *str2);
|
||||
static void InsertPlayerControlKeysInString(wchar *src);
|
||||
static void AddMessageWithNumber(wchar *key, uint32 time, uint16 pos, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6);
|
||||
static void AddMessageJumpQWithNumber(wchar *key, uint32 time, uint16 pos, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6);
|
||||
static void AddMessageSoonWithNumber(wchar *key, uint32 time, uint16 pos, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6);
|
||||
static void AddBigMessageWithNumber(wchar *key, uint32 time, uint16 pos, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6);
|
||||
static void AddBigMessageWithNumberQ(wchar *key, uint32 time, uint16 pos, int32 n1, int32 n2, int32 n3, int32 n4, int32 n5, int32 n6);
|
||||
static void AddMessageWithString(wchar *text, uint32 time, uint16 flag, wchar *str);
|
||||
static void AddMessageJumpQWithString(wchar *text, uint32 time, uint16 flag, wchar *str);
|
||||
static void ClearThisPrint(wchar *str);
|
||||
static void ClearThisBigPrint(wchar *str);
|
||||
static void ClearAllMessagesDisplayedByGame(void);
|
||||
static int WideStringCopy(wchar* dst, wchar* src, unsigned short size);
|
||||
static char WideStringCompare(wchar* str1, wchar* str2, unsigned short size);
|
||||
static void InsertNumberInString(wchar* src, int n1, int n2, int n3, int n4, int n5, int n6, wchar* dst);
|
||||
static void InsertPlayerControlKeysInString(wchar* src);
|
||||
static int GetWideStringLength(wchar *src);
|
||||
static void AddBigMessage(wchar* key, uint32 time, uint16 pos);
|
||||
static void AddBigMessageWithNumber(wchar* key, uint32 time, uint16 pos, int n1, int n2, int n3, int n4, int n5, int n6);
|
||||
static void AddBigMessageWithNumberQ(wchar* key, uint32 time, uint16 pos, int n1, int n2, int n3, int n4, int n5, int n6);
|
||||
static void AddMessage(wchar* key, uint32 time, uint16 pos);
|
||||
static void AddMessageJumpQ(wchar* key, uint32 time, uint16 pos);
|
||||
static void AddMessageSoon(wchar* key, uint32 time, uint16 pos);
|
||||
static void AddMessageWithNumber(wchar* key, uint32 time, uint16 pos, int n1, int n2, int n3, int n4, int n5, int n6);
|
||||
static void AddMessageJumpQWithNumber(wchar* key, uint32 time, uint16 pos, int n1, int n2, int n3, int n4, int n5, int n6);
|
||||
static void AddMessageSoonWithNumber(wchar* key, uint32 time, uint16 pos, int n1, int n2, int n3, int n4, int n5, int n6);
|
||||
static void ClearMessages();
|
||||
static void Init();
|
||||
static void Process();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue