-
Notifications
You must be signed in to change notification settings - Fork 0
/
MwRandUniques.cpp
280 lines (239 loc) · 9.96 KB
/
MwRandUniques.cpp
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
/*===========================================================================
*
* File: Mwranduniques.CPP
* Author: Dave Humphrey ([email protected])
* Created On: Friday, May 23, 2003
*
* Description
*
*=========================================================================*/
/* Include Files */
#include "mwranduniques.h"
/*===========================================================================
*
* Begin Local Definitions
*
*=========================================================================*/
DEFINE_FILE("MwRandUniques.cpp");
/*===========================================================================
* End of Local Definitions
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Constructor
*
*=========================================================================*/
CMwRandUniques::CMwRandUniques () : m_UniqueArray(0) {
//DEFINE_FUNCTION("CMwRandUniques::CMwRandUniques()");
m_pEffects = NULL;
m_InputLine = 0;
}
/*===========================================================================
* End of Class CMwRandUniques Constructor
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Method - void Destroy (void);
*
*=========================================================================*/
void CMwRandUniques::Destroy (void) {
DEFINE_FUNCTION("CMwRandUniques::Destroy()");
mwru_unique_t* pUnique;
int Index;
/* Delete all unique records */
for (Index = 0; Index < (int)m_UniqueArray.GetNumElements(); Index++) {
pUnique = m_UniqueArray.GetAt(Index);
DestroyPointer(pUnique);
}
/* Clear the unique array */
m_UniqueArray.RemoveAll();
m_InputLine = 0;
}
/*===========================================================================
* End of Class Method CMwRandUniques::Destroy()
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Method - bool AddEffect (pNewUnique pEffectName);
*
* Attempt to add the given effect to the given unique object. Returns
* false on any error.
*
*=========================================================================*/
bool CMwRandUniques::AddEffect (mwru_unique_t* pNewUnique, const TCHAR* pEffectName) {
/* Don't exceed the effect array size */
if (pNewUnique->NumEffects >= MWRU_MAX_EFFECTS) {
ErrorHandler.AddError(ERR_MAXINDEX, _T("\t%5ld: Exceeded the maximum number of unique effects %d!"), m_InputLine, MWRU_MAX_EFFECTS);
return (false);
}
if (m_pEffects != NULL) {
pNewUnique->pEffects[pNewUnique->NumEffects] = m_pEffects->FindEffect(pEffectName);
if (pNewUnique->pEffects[pNewUnique->NumEffects] != NULL)
pNewUnique->NumEffects++;
else
SystemLog.Printf ("\t%5ld: Unknown effect '%s'!", m_InputLine, pEffectName);
}
return (true);
}
/*===========================================================================
* End of Class Method CMwRandUniques::AddEffect()
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Method - bool ReadUnique (File, pNewUnique);
*
* Protected class method which reads an unique section from the given file.
* Returns false on any error.
*
*=========================================================================*/
bool CMwRandUniques::ReadUnique (CGenFile& File, mwru_unique_t* pNewUnique) {
TCHAR LineBuffer[MWRI_MAX_LINELENGTH+1];
TCHAR* pVariable;
TCHAR* pValue;
bool IsReading = true;
bool ParseResult;
bool Result;
int ReadResult;
/* Input until end of file or end of effect */
while (!File.IsEOF() && IsReading) {
/* Input a single line of text from the file */
ReadResult = File.ReadLine(LineBuffer, MWRI_MAX_LINELENGTH);
if (ReadResult == READLINE_MSL) ReadResult = File.ReadLine();
if (ReadResult == READLINE_ERROR) return (false);
m_InputLine++;
/* Parse input, ignore comments, whitespace trim, etc... */
ParseResult = SeperateVarValueQ(&pVariable, &pValue, LineBuffer);
/* Determine input action */
if (TSTRICMP(pVariable, _T("End")) == 0) {
IsReading = false;
}
else if (ParseResult) {
Result = SetUniqueParam(pNewUnique, pVariable, pValue);
if (!Result) return (false);
}
}
return (true);
}
/*===========================================================================
* End of Class Method CMwRandUniques::ReadUnique()
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Method - bool ReadUnique (File);
*
* Protected class method which reads an unique section from the given file.
* Returns false on any error.
*
*=========================================================================*/
bool CMwRandUniques::ReadUnique (CGenFile& File) {
DEFINE_FUNCTION("CMwRandUniques::ReadUnique()");
mwru_unique_t* pNewUnique;
/* Create and initialize the new unique */
CreatePointer(pNewUnique, mwru_unique_t);
DefaultMwRandUnique (*pNewUnique);
m_UniqueArray.Add(pNewUnique);
return ReadUnique(File, pNewUnique);
}
/*===========================================================================
* End of Class Method CMwRandUniques::ReadUnique()
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Method - bool ReadUniqueFile (pFilename);
*
* Attempts to input unique data from the given file. Returns false on any error.
*
*=========================================================================*/
bool CMwRandUniques::ReadUniqueFile (const TCHAR* pFilename) {
TCHAR LineBuffer[MWRI_MAX_LINELENGTH+1];
TCHAR* pVariable;
TCHAR* pValue;
CGenFile File;
bool Result;
int ReadResult;
/* Attempt to open the file for reading */
Result = File.Open(pFilename, "rt");
if (!Result) return (false);
/* Input until end of file or end of effect */
while (!File.IsEOF()) {
/* Input a single line of text from the file */
ReadResult = File.ReadLine(LineBuffer, MWRI_MAX_LINELENGTH);
if (ReadResult == READLINE_MSL) ReadResult = File.ReadLine();
if (ReadResult == READLINE_ERROR) return (false);
m_InputLine++;
/* Parse input, ignore comments, whitespace trim, etc... */
SeperateVarValueQ(&pVariable, &pValue, LineBuffer);
/* Start of unique section */
if (TSTRICMP(pVariable, _T("Unique")) == 0) {
Result = ReadUnique(File);
if (!Result) return (false);
}
}
return (true);
}
/*===========================================================================
* End of Class Method CMwRandUniques::ReadUniqueFile()
*=========================================================================*/
/*===========================================================================
*
* Class CMwRandUniques Method - bool SetUniqueParam (pNewUnique, pVariable, pValue);
*
* Sets the given unique object values from the given string inputs. Returns
* false on any error. Protected class method.
*
*=========================================================================*/
bool CMwRandUniques::SetUniqueParam (mwru_unique_t* pNewUnique, const TCHAR* pVariable,
const TCHAR* pValue) {
if (TSTRICMP(pVariable, _T("Name")) == 0) {
strnncpy(pNewUnique->Name, pValue, MWRI_MAX_NAMESIZE);
}
else if (TSTRICMP(pVariable, _T("NameType")) == 0) {
if (TSTRICMP(pValue, "Exact") == 0)
pNewUnique->NameType = MWRU_NAMETYPE_EXACT;
else if (TSTRICMP(pValue, "Suffix") == 0)
pNewUnique->NameType = MWRU_NAMETYPE_SUFFIX;
else if (TSTRICMP(pValue, "Prefix") == 0)
pNewUnique->NameType = MWRU_NAMETYPE_PREFIX;
else
SystemLog.Printf ("\t%5ld: Unknown name type '%s'!", m_InputLine, pValue);
}
else if (TSTRICMP(pVariable, _T("Icon")) == 0) {
strnncpy(pNewUnique->Icon, pValue, MWRI_MAX_NAMESIZE);
}
else if (TSTRICMP(pVariable, _T("Model")) == 0) {
strnncpy(pNewUnique->Model, pValue, MWRI_MAX_NAMESIZE);
}
else if (TSTRICMP(pVariable, _T("ItemLevel")) == 0) {
pNewUnique->ItemLevel = atoi(pValue);
}
else if (TSTRICMP(pVariable, _T("ItemMask")) == 0) {
pNewUnique->ItemMask = ShortStringToMwRandItemMask(pValue);
}
else if (TSTRICMP(pVariable, _T("Effect")) == 0) {
return AddEffect(pNewUnique, pValue);
}
else {
SystemLog.Printf ("\t%5ld: Unknown unique parameter '%s'!", m_InputLine, pVariable);
}
return (true);
}
/*===========================================================================
* End of Class Method CMwRandUniques::SetUniqueParam()
*=========================================================================*/
/*===========================================================================
*
* Function - void DefaultMwRandUnique (UniqueItem);
*
*=========================================================================*/
void DefaultMwRandUnique (mwru_unique_t& UniqueItem) {
UniqueItem.ItemMask = MWRI_ITEMMASK_ALL;
UniqueItem.ItemLevel = 1;
UniqueItem.NumEffects = 0;
UniqueItem.Name[0] = NULL_CHAR;
UniqueItem.Model[0] = NULL_CHAR;
UniqueItem.Icon[0] = NULL_CHAR;
UniqueItem.NameType = MWRU_NAMETYPE_EXACT;
}
/*===========================================================================
* End of Function DefaultMwRandUnique()
*=========================================================================*/