-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCAniProperty.cpp
264 lines (188 loc) · 3.64 KB
/
CAniProperty.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
// CAniProperty.cpp
//
// CAniProperty class
#include <windows.h>
#include "Alchemy.h"
#include "DirectXUtil.h"
#include <math.h>
#include <stdio.h>
#include "Reanimator.h"
CAniProperty::CAniProperty (void) :
m_iType(typeNone)
// CAniProperty constructor
{
}
CAniProperty::CAniProperty (int iValue)
// CAniProperty constructor
{
m_iType = typeInteger;
m_Value.dwValue = iValue;
}
CAniProperty::CAniProperty (Metric rValue)
// CAniProperty constructor
{
m_iType = typeMetric;
m_Value.rValue = rValue;
}
CAniProperty::CAniProperty (const CVector &vValue)
// CAniProperty constructor
{
m_iType = typeVector;
CVector *pVector = (CVector *)&m_Value.vValue;
*pVector = vValue;
}
CAniProperty::~CAniProperty (void)
// CAniProperty destructor
{
Clear();
}
CAniProperty &CAniProperty::operator= (const CAniProperty &Obj)
// CAniProperty operator =
{
Clear();
m_iType = Obj.m_iType;
switch (m_iType)
{
case typeString:
m_Value.pValue = CString::INTGetStorage(Obj.GetString());
break;
default:
m_Value = Obj.m_Value;
break;
}
return *this;
}
void CAniProperty::Clear (void)
// Clear
//
// Clear value
{
switch (m_iType)
{
case typeString:
CString::INTFreeStorage(m_Value.pValue);
break;
}
m_iType = typeNone;
}
DWORD CAniProperty::GetOpacity (void) const
// GetOpacity
//
// Returns opacity value
{
switch (m_iType)
{
case typeColor:
return CG32bitPixel::FromDWORD(m_Value.dwValue).GetAlpha();
case typeInteger:
return Min(m_Value.dwValue, (DWORD)0xff);
case typeMetric:
return (DWORD)(Max(0.0, Min(m_Value.rValue, 1.0)) * 255.0);
case typeOpacity:
return m_Value.dwValue;
default:
return 0;
}
}
CString CAniProperty::GetString (void) const
// GetString
//
// Returns a string value
{
if (m_iType != typeString)
return NULL_STR;
CString sString;
CString::INTSetStorage(sString, m_Value.pValue);
return sString;
}
const CVector &CAniProperty::GetVector (void) const
// GetVector
//
// Returns a vector value
{
if (m_iType != typeVector)
return NullVector;
CVector *pVector = (CVector *)&m_Value.vValue;
return *pVector;
}
void CAniProperty::Set (Types iType, bool bValue)
// Set
//
// Set boolean value
{
Clear();
ASSERT(iType == typeBool);
m_iType = iType;
m_Value.dwValue = (bValue ? 1 : 0);
}
void CAniProperty::Set (Types iType, const CG16bitFont *pFont)
// Set
//
// Set font value
{
Clear();
ASSERT(iType == typeFont);
m_iType = iType;
m_Value.pValue = (void *)pFont;
}
void CAniProperty::Set (Types iType, int iValue)
// Set
//
// Set integer value
{
Clear();
ASSERT(iType == typeInteger);
m_iType = iType;
m_Value.dwValue = iValue;
}
void CAniProperty::Set (Types iType, DWORD dwValue)
// Set
//
// Set DWORD value
{
Clear();
ASSERT(iType == typeOpacity || iType == typeInteger);
m_iType = iType;
m_Value.dwValue = dwValue;
}
void CAniProperty::Set (Types iType, CG32bitPixel rgbValue)
// Set
//
// Set CG32bitPixel value
{
Clear();
ASSERT(iType == typeColor);
m_iType = iType;
m_Value.dwValue = rgbValue.AsDWORD();
}
void CAniProperty::Set (Types iType, Metric rValue)
// Set
//
// Set Metric value
{
Clear();
ASSERT(iType == typeMetric);
m_iType = iType;
m_Value.rValue = rValue;
}
void CAniProperty::Set (Types iType, const CString &sValue)
// Set
//
// Set string value
{
Clear();
ASSERT(iType == typeString);
m_iType = iType;
m_Value.pValue = CString::INTGetStorage(sValue);
}
void CAniProperty::Set (Types iType, const CVector &vValue)
// Set
//
// Set vector value
{
Clear();
ASSERT(iType == typeVector);
m_iType = iType;
CVector *pVector = (CVector *)&m_Value.vValue;
*pVector = vValue;
}