-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCDisplayAttributeDefinitions.cpp
284 lines (217 loc) · 6.79 KB
/
CDisplayAttributeDefinitions.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
281
282
283
284
// CDisplayAttributeDefinitions.cpp
//
// CDisplayAttributeDefinitions class
// Copyright (c) 2013 by Kronosaur Productions, LLC. All Rights Reserved.
#include "PreComp.h"
#define ITEM_ATTRIBUTE_TAG CONSTLIT("ItemAttribute")
#define LOCATION_ATTRIBUTE_TAG CONSTLIT("LocationAttribute")
#define ATTRIBUTE_ATTRIB CONSTLIT("attribute")
#define CRITERIA_ATTRIB CONSTLIT("criteria")
#define CRITERIA_LABEL_ATTRIB CONSTLIT("criteriaLabel")
#define ID_ATTRIB CONSTLIT("id")
#define PERCENT_LOCATIONS_ATTRIB CONSTLIT("percentLocations")
#define LABEL_ATTRIB CONSTLIT("label")
#define LABEL_TYPE_ATTRIB CONSTLIT("labelType")
#define TYPE_POSITIVE CONSTLIT("advantage")
#define TYPE_NEGATIVE CONSTLIT("disadvantage")
#define TYPE_NEUTRAL CONSTLIT("neutral")
const int DEFAULT_LOCATION_FREQUENCY = 20;
const CDisplayAttributeDefinitions CDisplayAttributeDefinitions::Null;
void CDisplayAttributeDefinitions::AccumulateAttributes (const CItem &Item, TArray<SDisplayAttribute> *retList) const
// AccumulateAttributes
//
// Adds display attributes possessed by Item to retList.
{
int i;
for (i = 0; i < m_ItemAttribs.GetCount(); i++)
{
if (Item.MatchesCriteria(m_ItemAttribs[i].Criteria))
retList->Insert(SDisplayAttribute(m_ItemAttribs[i].iType, m_ItemAttribs[i].sText, m_ItemAttribs[i].sID));
}
}
void CDisplayAttributeDefinitions::Append (const CDisplayAttributeDefinitions &Attribs)
// Append
//
// Appends definitions.
{
int i;
if (Attribs.IsEmpty())
return;
// Append item display attributes
int iDest = m_ItemAttribs.GetCount();
m_ItemAttribs.InsertEmpty(Attribs.m_ItemAttribs.GetCount());
for (i = 0; i < Attribs.m_ItemAttribs.GetCount(); i++)
m_ItemAttribs[iDest++] = Attribs.m_ItemAttribs[i];
// Append attribute definitions
m_Attribs.Merge(Attribs.m_Attribs);
}
const CDisplayAttributeDefinitions::SItemEntry *CDisplayAttributeDefinitions::FindByCriteria (const CString &sCriteria) const
// FindByCriteria
//
// Returns a pointer to the entry that matches the given criteria (or NULL if
// we cannot find a matching one).
{
int i;
for (i = 0; i < m_ItemAttribs.GetCount(); i++)
{
if (strEquals(sCriteria, CItem::GenerateCriteria(m_ItemAttribs[i].Criteria)))
return &m_ItemAttribs[i];
}
return NULL;
}
const CDisplayAttributeDefinitions::SItemEntry *CDisplayAttributeDefinitions::FindByID (const CString &sID) const
// FindByID
//
// Returns a pointer to the entry of the given ID (or NULL if not found).
{
int i;
for (i = 0; i < m_ItemAttribs.GetCount(); i++)
{
if (strEquals(sID, m_ItemAttribs[i].sID))
return &m_ItemAttribs[i];
}
return NULL;
}
const CItemCriteria *CDisplayAttributeDefinitions::FindCriteriaByID (const CString &sID) const
// FindCriteriaByID
//
// Finds the criteria for the given ID (NULL if not found).
{
const SItemEntry *pEntry = FindByID(sID);
if (pEntry == NULL)
return NULL;
return &pEntry->Criteria;
}
bool CDisplayAttributeDefinitions::FindCriteriaName (const CString &sCriteria, CString *retsName) const
// FindCriteriaName
//
// Looks for the given criteria and returns its name, if found.
{
const SItemEntry *pEntry = FindByCriteria(sCriteria);
if (pEntry == NULL || pEntry->sCriteriaName.IsBlank())
return false;
if (retsName)
*retsName = pEntry->sCriteriaName;
return true;
}
bool CDisplayAttributeDefinitions::FindCriteriaNameByID (const CString &sID, CString *retsName) const
// FindCriteriaNameByID
//
// Looks for the given criteria and returns its name, if found.
{
const SItemEntry *pEntry = FindByID(sID);
if (pEntry == NULL || pEntry->sCriteriaName.IsBlank())
return false;
if (retsName)
*retsName = pEntry->sCriteriaName;
return true;
}
int CDisplayAttributeDefinitions::GetLocationAttribFrequency (const CString &sAttrib) const
// GetLocationAttribFrequency
//
// Returns the percent of locations in the universe with the given attribute.
{
SAttribDesc *pEntry = m_Attribs.GetAt(sAttrib);
if (pEntry == NULL)
return DEFAULT_LOCATION_FREQUENCY;
return pEntry->iFrequency;
}
bool CDisplayAttributeDefinitions::InitFromCCItem (ICCItem *pEntry, SDisplayAttribute &Result)
// InitFromCCItem
//
// Initialize from a struct of the form:
//
// {
// label: ...
// labelType: ...
// }
{
CString sLabel;
EDisplayAttributeTypes iType;
// If this is a struct, then we expect certain fields.
if (pEntry->IsSymbolTable())
{
sLabel = pEntry->GetStringAt(LABEL_ATTRIB);
CString sType = pEntry->GetStringAt(LABEL_TYPE_ATTRIB);
if (sType.IsBlank() || strEquals(sType, TYPE_NEUTRAL))
iType = attribNeutral;
else if (strEquals(sType, TYPE_POSITIVE))
iType = attribPositive;
else if (strEquals(sType, TYPE_NEGATIVE))
iType = attribNegative;
else
return false;
}
// Otherwise, this is just a plain attribute
else
{
sLabel = pEntry->GetStringValue();
iType = attribNeutral;
}
// Done
if (sLabel.IsBlank())
return false;
Result = SDisplayAttribute(iType, sLabel);
return true;
}
ALERROR CDisplayAttributeDefinitions::InitFromXML (SDesignLoadCtx &Ctx, CXMLElement *pDesc)
// InitFromXML
//
// Initialize
{
int i;
for (i = 0; i < pDesc->GetContentElementCount(); i++)
{
CXMLElement *pDef = pDesc->GetContentElement(i);
if (strEquals(pDef->GetTag(), ITEM_ATTRIBUTE_TAG))
{
SItemEntry *pEntry = m_ItemAttribs.Insert();
pEntry->sID = pDef->GetAttribute(ID_ATTRIB);
pEntry->sText = pDef->GetAttribute(LABEL_ATTRIB);
pEntry->sCriteriaName = pDef->GetAttribute(CRITERIA_LABEL_ATTRIB);
// Criteria
CString sCriteria;
if (pDef->FindAttribute(CRITERIA_ATTRIB, &sCriteria))
CItem::ParseCriteria(sCriteria, &pEntry->Criteria);
else
CItem::InitCriteriaAll(&pEntry->Criteria);
// Type
CString sType;
if (pDef->FindAttribute(LABEL_TYPE_ATTRIB, &sType))
{
if (strEquals(sType, TYPE_POSITIVE))
pEntry->iType = attribPositive;
else if (strEquals(sType, TYPE_NEGATIVE))
pEntry->iType = attribNegative;
else if (strEquals(sType, TYPE_NEUTRAL))
pEntry->iType = attribNeutral;
else
{
Ctx.sError = strPatternSubst(CONSTLIT("Invalid label type: %s."), sType);
return ERR_FAIL;
}
}
else
pEntry->iType = attribNeutral;
}
else if (strEquals(pDef->GetTag(), LOCATION_ATTRIBUTE_TAG))
{
CString sAttrib = pDef->GetAttribute(ATTRIBUTE_ATTRIB);
if (sAttrib.IsBlank())
{
Ctx.sError = CONSTLIT("Must specify an attribute.");
return ERR_FAIL;
}
SAttribDesc *pEntry = m_Attribs.SetAt(sAttrib);
pEntry->iType = attribTypeLocation;
pEntry->sName = sAttrib;
pEntry->iFrequency = pDef->GetAttributeIntegerBounded(PERCENT_LOCATIONS_ATTRIB, 1, 99, DEFAULT_LOCATION_FREQUENCY);
}
else
{
Ctx.sError = strPatternSubst(CONSTLIT("Unknown display attribute definition: %s."), pDef->GetTag());
return ERR_FAIL;
}
}
return NOERROR;
}