blob: 115047f467745607c1a1c99627231ff4f65bd4b6 (
plain)
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
|
#include "StdAfx.h"
#include "T2Archive.h"
#include "T2Tenant.h"
#include "T2TenantArray.h"
#include "T2TenantArrayList.h"
T2TenantArrayList::T2TenantArrayList() {
mCounter = 0;
T2TenantArray *tenantArray = new T2TenantArray;
Add(tenantArray);
}
/*virtual*/ T2TenantArrayList::~T2TenantArrayList() {
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray))
delete tenantArray;
}
void T2TenantArrayList::Add(T2TenantArray* tenantArray) {
InsertItemsAt(1, mItemCount + 1, &tenantArray);
}
unsigned int T2TenantArrayList::GetItemCount() {
return GetCount();
}
T2TenantArray* T2TenantArrayList::GetItemAt(int index) {
T2TenantArray *tenantArray = NULL;
FetchItemAt(index, &tenantArray);
return tenantArray;
}
T2Tenant* T2TenantArrayList::GetTenantByID(unsigned int tenantID) {
if (tenantID == 0)
return NULL;
int group = (tenantID - 1000) / T2TenantArray::kGroupSize;
int indexInGroup = (tenantID - 1000) % T2TenantArray::kGroupSize;
T2TenantArray *tenantArray = GetItemAt(group + 1);
if (tenantArray)
return tenantArray->GetIndexTenant(indexInGroup);
else
return NULL;
}
T2Tenant* T2TenantArrayList::GetTenantByPID(DWORD pluginID) {
T2Tenant *tenant = NULL;
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (!tenant && iterator.Next(&tenantArray)) {
tenant = tenantArray->GetTenantByPID(pluginID);
}
return tenant;
}
T2Tenant* T2TenantArrayList::FindUnusedTenant() {
T2Tenant *theUnusedTenant = NULL;
LArrayIterator iterator(*this);
T2TenantArray *theTenantArray = NULL;
while (!theUnusedTenant && iterator.Next(&theTenantArray)) {
theUnusedTenant = theTenantArray->FindUnusedTenant();
}
if (!theUnusedTenant) {
unsigned int newStartID = 1000;
if (theTenantArray)
newStartID = theTenantArray->GetStartID() + T2TenantArray::kGroupSize;
theTenantArray = new T2TenantArray(newStartID);
if (theTenantArray) {
Add(theTenantArray);
theUnusedTenant = theTenantArray->FindUnusedTenant();
}
}
return theUnusedTenant;
}
void T2TenantArrayList::DispatchIdle(T2TowerDoc* towerDoc) {
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray))
tenantArray->DispatchIdle(towerDoc, mCounter);
mCounter++;
if (mCounter >= 32)
mCounter = 0;
}
void T2TenantArrayList::TenantRemoved(unsigned int v) {
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray))
tenantArray->TenantRemoved(v);
}
void T2TenantArrayList::BreakoutEmergency(T2TowerDoc* towerDoc) {
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray))
tenantArray->BreakoutEmergency(towerDoc);
}
int T2TenantArrayList::CalcMentenanceCost(T2TowerDoc* towerDoc) const {
int theCost = 0;
LArrayIterator iterator(*this);
T2TenantArray *theTenantArray;
while (iterator.Next(&theTenantArray))
theCost += theTenantArray->CalcMentenanceCost(towerDoc);
return theCost;
}
LArray* T2TenantArrayList::MakeTenantList(int type) {
LArray *result = new LArray(sizeof(T2Tenant *));
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray)) {
for (int i = 0; i < T2TenantArray::kGroupSize; i++) {
T2Tenant *tenant = &tenantArray->mTenants[i];
if (tenant->IsUsed() && tenant->GetEquipType() == type)
result->Add(&tenant);
}
}
if (result->GetCount() > 0) {
return result;
} else {
delete result;
return NULL;
}
}
LArray* T2TenantArrayList::MakeTenantList(BOOL(*func) (const T2Tenant*)) {
LArray *result = new LArray(sizeof(T2Tenant *));
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray)) {
for (int i = 0; i < T2TenantArray::kGroupSize; i++) {
T2Tenant *tenant = &tenantArray->mTenants[i];
if (tenant->IsUsed() && func(tenant))
result->Add(&tenant);
}
}
if (result->GetCount() > 0) {
return result;
} else {
delete result;
return NULL;
}
}
void T2TenantArrayList::Read(T2Archive& archive, T2TowerDoc* towerDoc) {
archive >> mCounter;
int count;
archive >> count;
RemoveItemsAt(GetCount(), 1);
unsigned int startID = 1000;
for (int i = 0; i < count; i++) {
Add(new T2TenantArray(startID));
startID += T2TenantArray::kGroupSize;
}
LArrayIterator iter(*this);
T2TenantArray *theTenantArray;
while (iter.Next(&theTenantArray))
theTenantArray->Read(archive, towerDoc);
}
void T2TenantArrayList::Write(T2Archive& archive) {
archive << mCounter;
int count = GetItemCount();
archive << count;
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray))
tenantArray->Write(archive);
}
void T2TenantArrayList::RecoverRelatedTenantList(T2RegistedTenantDB* db) {
LArrayIterator iterator(*this);
T2TenantArray *tenantArray;
while (iterator.Next(&tenantArray))
tenantArray->RecoverRelatedTenantList(db);
}
|