blob: 9a2de6743566893e9d48e1ebe8f6452b591665f0 (
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
|
#include "T2RouteCEArray.h"
T2RouteCEArray::T2RouteCEArray() {
}
/*virtual*/ T2RouteCEArray::~T2RouteCEArray() {
}
void T2RouteCEArray::Insert(unsigned int a, unsigned int b) {
if (a != 0) {
int index = FetchIndexOf(&a);
if (index != 0)
InsertItemsAt(1, index + 1, &b);
else
InsertItemsAt(1, 1, &b);
} else {
InsertItemsAt(1, 1, &b);
}
}
unsigned int T2RouteCEArray::GetSameID(T2RouteCEArray* other) {
unsigned int result = 0;
LArrayIterator outer(*this);
unsigned int outerItem;
while (outer.Next(&outerItem)) {
LArrayIterator inner(*other);
unsigned int innerItem;
while (inner.Next(&innerItem)) {
if (outerItem == innerItem) {
result = outerItem;
break;
}
}
}
return result;
}
BOOL T2RouteCEArray::HasCrossEquip() const {
return GetCount() > 0;
}
|