-
Notifications
You must be signed in to change notification settings - Fork 42
/
CCINIClass.h
331 lines (253 loc) · 8.9 KB
/
CCINIClass.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#pragma once
#include <YRPPCore.h>
#include <GenericList.h>
#include <ArrayClasses.h>
#include <CCFileClass.h>
#include <Helpers/CompileTime.h>
struct ColorStruct;
class TechnoTypeClass;
//Basic INI class
class INIClass
{
public:
class INIEntry : public Node<INIEntry*>
{
public:
virtual ~INIEntry() {}
char* Key;
char* Value;
DWORD unknown_14;
DWORD unknown_18;
DWORD unknown_1C;
DWORD unknown_20;
DWORD unknown_24;
};
class INISection : public Node<INISection*>
{
public:
struct CheckedEntry
{
unsigned int Checksum; //CRC32 of Entry's vaue
INIEntry* Entry;
};
struct CheckedEntryList //instead of using another list class, WW decided to create this...
{
CheckedEntry* Entries;
int Count;
int Capacity;
unsigned char Unknown_0C;
unsigned int Unknown_10;
};
virtual ~INISection() {}
char* Name;
List<INIEntry*> Entries;
CheckedEntryList CheckedEntries;
unsigned int Unknown_40;
};
INIClass()
{ JMP_THIS(0x535AA0); }
protected:
INIClass(bool) { }
public:
virtual ~INIClass() RX;
void Reset()
{ JMP_THIS(0x526B00); }
void Clear(const char *s1, char *s2)
{ JMP_THIS(0x5257C0); }
INISection* GetSection(const char* pSection)
{ JMP_THIS(0x526810); }
int GetKeyCount(const char* pSection) //Get the amount of keys in a section.
{ JMP_THIS(0x526960); }
const char* GetKeyName(const char* pSection, int nKeyIndex) //Get the name of a key number in a section.
{ JMP_THIS(0x526CC0); }
//Reads an ANSI string. Returns the string's length.
int ReadString(const char* pSection, const char* pKey, const char* pDefault, char* pBuffer, size_t szBufferSize)
{ JMP_THIS(0x528A10); }
//Writes an ANSI string.
bool WriteString(const char* pSection, const char* pKey, const char* pString)
{ JMP_THIS(0x528660); }
//Reads an escaped Unicode string. Returns the string's length.
int ReadUnicodeString(const char* pSection, const char* pKey, const wchar_t* pDefault, wchar_t* pBuffer, size_t szBufferSize)
{ JMP_THIS(0x528F00); }
//Writes an escaped Unicode string.
bool WriteUnicodeString(const char* pSection, const char* pKey, const wchar_t* pString)
{ JMP_THIS(0x528E00); }
//Reads an boolean value.
bool ReadBool(const char* pSection, const char* pKey, bool bDefault)
{ JMP_THIS(0x5295F0); }
//Writes an boolean value.
bool WriteBool(const char* pSection, const char* pKey, bool bValue)
{ JMP_THIS(0x529560); }
//Reads an integer value.
int ReadInteger(const char* pSection, const char* pKey, int nDefault)
{ JMP_THIS(0x5276D0); }
//Writes an integer value.
bool WriteInteger(const char* pSection, const char* pKey, int nValue, bool bHex)
{ JMP_THIS(0x5276D0); }
//Reads a decimal value.
double ReadDouble(const char* pSection, const char* pKey, double dDefault)
{
double* pdDefault = &dDefault;
PUSH_VAR64(pdDefault); PUSH_VAR32(pKey); PUSH_VAR32(pSection); THISCALL(0x5283D0);
_asm {fstp dDefault};
return dDefault;
}
//Writes a decimal value.
bool WriteDouble(const char* pSection, const char* pKey, double dValue)
{
double* pdValue=&dValue;
PUSH_VAR64(pdValue); PUSH_VAR32(pKey); PUSH_VAR32(pSection); THISCALL(0x5285B0);
}
//Reads two integer values.
int* Read2Integers(int* pBuffer, const char* pSection, const char* pKey, int* pDefault)
{ JMP_THIS(0x529880); }
//Writes two integer values.
bool Write2Integers(const char* pSection, const char* pKey, int* pValues)
{ JMP_THIS(0x5297E0); }
//Reads three integer values.
int* Read3Integers(int* pBuffer, const char* pSection, const char* pKey, int* pDefault)
{ JMP_THIS(0x529CA0); }
//Reads three byte values.
byte* Read3Bytes(byte* pBuffer, const char* pSection, const char* pKey, byte* pDefault)
{ JMP_THIS(0x474B50); }
//Writes three byte values.
bool Write3Bytes(const char* pSection, const char* pKey, byte* pValues)
{ JMP_THIS(0x474C20); }
//Tests whether the given section and key exists. If key is NULL, only the section will be looked for.
bool Exists(const char* pSection, const char* pKey)
{ JMP_THIS(0x679F40); }
// C&C helpers
#define INI_READ(item, addr) \
int Read ## item(const char* pSection, const char* pKey, int pDefault) \
{ JMP_THIS(addr); }
// Pip= to idx ( pip strings with index < pDefault are not even scanned! )
INI_READ(Pip, 0x4748A0);
// PipScale= to idx
INI_READ(PipScale, 0x474940);
// Category= to idx
INI_READ(Category, 0x4749E0);
// Color=%s to idx
INI_READ(ColorString, 0x474A90);
// Foundation= to idx
INI_READ(Foundation, 0x474DA0);
// MovementZone= to idx
INI_READ(MovementZone, 0x474E40);
// SpeedType= to idx
INI_READ(SpeedType, 0x476FC0);
// [SW]Action= to idx
INI_READ(SWAction, 0x474EE0);
// [SW]Type= to idx
INI_READ(SWType, 0x474F50);
// EVA Event name to idx
INI_READ(VoxName, 0x474FA0);
// Factory= to idx
INI_READ(Factory, 0x474FF0);
INI_READ(BuildCat, 0x475060);
// Parses a list of Countries and returns a bitfield, i.e. Owner= or RequiredHouses=
INI_READ(HouseTypesList, 0x4750D0);
// Parses a list of Houses and returns a bitfield, i.e. Allies= in map
INI_READ(HousesList, 0x475260);
INI_READ(ArmorType, 0x4753F0);
INI_READ(LandType, 0x4754B0);
// supports MP names (<Player @ X>) too, wtf
// ALLOCATES if country name is not found
// returns idx of country it reads
INI_READ(HouseType, 0x475540);
// ALLOCATES if name is not found
INI_READ(Side, 0x4756F0);
// returns index of movie with this filename
INI_READ(Movie, 0x4757D0);
// map theater
INI_READ(Theater, 0x475870);
INI_READ(Theme, 0x4758F0);
INI_READ(Edge, 0x475980);
INI_READ(Powerup, 0x4759F0);
// [Anim]Layer= to idx
INI_READ(Layer, 0x477050);
INI_READ(VHPScan, 0x477590);
// Color=%d,%d,%d to idx , used to parse [Colors]
ColorStruct* ReadColor(ColorStruct* pBuffer, const char* pSection, const char* pKey, ColorStruct const& default)
{ JMP_THIS(0x474C70); }
ColorStruct ReadColor(const char* const pSection, const char* const pKey, ColorStruct const& default) {
ColorStruct outBuffer;
this->ReadColor(&outBuffer, pSection, pKey, default);
return outBuffer;
}
// 18 bytes
byte* ReadAbilities(byte* pBuffer, const char* pSection, const char* pKey, byte* pDefault)
{ JMP_THIS(0x477640); }
TechnoTypeClass* GetTechnoType(const char* pSection, const char* pKey)
{ JMP_THIS(0x476EB0); }
// safer and more convenient overload for string reading
template <size_t Size>
int ReadString(const char* pSection, const char* pKey, const char* pDefault, char(&pBuffer)[Size])
{
return this->ReadString(pSection, pKey, pDefault, pBuffer, Size);
}
// safer and more convenient overload for escaped unicode string reading
template <size_t Size>
int ReadUnicodeString(const char* pSection, const char* pKey, const wchar_t* pDefault, wchar_t(&pBuffer)[Size])
{
this->ReadUnicodeString(pSection, pKey, pDefault, Size);
}
// fsldargh who the fuck decided to pass structures by value here
static TypeList<int>* __fastcall GetPrerequisites(TypeList<int>* pBuffer, INIClass* pINI,
const char* pSection, const char* pKey, TypeList<int> Defaults)
{ JMP_STD(0x4770E0); }
static bool IsBlank(const char *pValue) {
return !_strcmpi(pValue, "<none>") || !_strcmpi(pValue, "none");
}
//Properties
public:
DWORD unknown_4;
DWORD unknown_8;
List<INISection> Sections;
DWORD unknown_28;
DWORD unknown_2C;
DWORD unknown_30;
bool unknown_bool_34;
DWORD unknown_38;
DWORD unknown_3C;
bool Digested;
byte Digest[20];
};
//Extended INI class specified for C&C use
class CCINIClass : public INIClass
{
public:
//STATIC
static constexpr reference<DWORD, 0xB77E00u> const RulesHash{};
static constexpr reference<DWORD, 0xB77E04u> const ArtHash{};
static constexpr reference<DWORD, 0xB77E08u> const AIHash{};
// westwood genius shines again
// this is a pointer in the class
static constexpr reference<CCINIClass*, 0x887048u> const INI_Rules{};
// these are static class variables, why the fuck did you differentiate them, WW?
static constexpr reference<CCINIClass, 0x887128u> const INI_AI{};
static constexpr reference<CCINIClass, 0x887180u> const INI_Art{};
static constexpr reference<CCINIClass, 0x887208u> const INI_UIMD{};
static constexpr reference<CCINIClass, 0x8870C0u> const INI_RA2MD{};
//non-static
CCINIClass() : INIClass(false)
{
THISCALL(0x535AA0);
Digested = false;
*reinterpret_cast<DWORD*>(this) = 0x7E1AF4;
}
virtual ~CCINIClass() RX;
//Parses an INI file from a CCFile
CCINIClass* ReadCCFile(FileClass* pCCFile, byte bUnk = 0, int iUnk = 0)
{ JMP_THIS(0x4741F0); }
void WriteCCFile(FileClass *pCCFile, bool bUnk)
{ JMP_THIS(0x474430); }
//Copies the string table entry pointed to by the INI value into pBuffer.
int ReadStringtableEntry(const char* pSection, const char* pKey, wchar_t* pBuffer, size_t szBufferSize)
{ JMP_THIS(0x0529160); }
template <size_t Size>
int ReadStringtableEntry(const char* pSection, const char* pKey, wchar_t(&pBuffer)[Size])
{
return this->ReadStringtableEntry(pSection, pKey, pBuffer, Size);
}
DWORD GetCRC()
{ JMP_THIS(0x476D80); }
};