summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2FInfoPtIterator.cpp
blob: 028c5a1c3edf31ede8048157782754daeb3fe09e (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
#include "StdAfx.h"
#include "GlobalFunc.h"
#include "T2FInfoPtIterator.h"
#include "T2FloorInfo.h"
#include "T2MoverArrayList.h"
#include "T2RequestArrayList.h"
#include "T2TenantArrayList.h"
#include "T2UnitInfo.h"

T2FInfoPtIterator::T2FInfoPtIterator(const T2FloorInfo& inFloorInfo, POINT inPt)
    : mFloorInfo(inFloorInfo)
    , mLeftBound(mFloorInfo.mBuildArea.left)
    , mRightBound(mFloorInfo.mBuildArea.right - 1)
{
    if (PtInRect(&mFloorInfo.mBuildArea, inPt)) {
        mCurrH = inPt.x;
        mCurrUnitInfo = mFloorInfo.GetUnitInfo(inPt.y, mCurrH);
        mLastIDSeen = 0;
    } else {
        mCurrH = -2;
    }
}

/*virtual*/ T2FInfoPtIterator::~T2FInfoPtIterator() {
}

BOOL T2FInfoPtIterator::CurrentH(int& outH) const {
    BOOL result = true;

    if (IsValidPosition())
        outH = mCurrH;
    else
        result = false;

    return result;
}

BOOL T2FInfoPtIterator::CalcRightUnitInfo() {
    BOOL result = true;

    if (mCurrH != -2) {
        if (mCurrH != -1) {
            if (mCurrH < mRightBound) {
                mCurrH++;
                mCurrUnitInfo++;
            } else {
                mCurrH = -2;
                result = false;
            }
        } else {
            mCurrH = mLeftBound;
        }
    } else {
        result = false;
    }

    return result;
}

BOOL T2FInfoPtIterator::CalcLeftUnitInfo() {
    BOOL result = true;

    if (mCurrH != -2) {
        if (mCurrH != -1) {
            if (mCurrH > mLeftBound) {
                mCurrH--;
                mCurrUnitInfo--;
            } else {
                result = false;
            }
        } else {
            mCurrH = mRightBound;
        }
    } else {
        result = false;
    }

    return result;
}

BOOL T2FInfoPtIterator::Current(T2UnitInfo*& outUnitInfo) {
    BOOL result = true;

    if (IsValidPosition())
        outUnitInfo = mCurrUnitInfo;
    else
        result = false;

    return result;
}

BOOL T2FInfoPtIterator::Right(T2UnitInfo*& outUnitInfo) {
    BOOL result = true;

    if (CalcRightUnitInfo())
        outUnitInfo = mCurrUnitInfo;
    else
        result = false;

    return result;
}

BOOL T2FInfoPtIterator::Left(T2UnitInfo*& outUnitInfo) {
    BOOL result = true;

    if (CalcLeftUnitInfo())
        outUnitInfo = mCurrUnitInfo;
    else
        result = false;

    return result;
}

BOOL T2FInfoPtIterator::RightTenant(T2Tenant*& outTenant) {
    BOOL found;
    T2UnitInfo *unitInfo;

    for (found = Right(unitInfo); found; found = Right(unitInfo)) {
        unsigned int tenantID = unitInfo->GetTenantID();
        if (tenantID != mLastIDSeen) {
            mLastIDSeen = tenantID;
            if (tenantID != 0) {
                outTenant = mFloorInfo.mTenantArrayList->GetTenantByID(tenantID);
                break;
            }
        }
    }

    return found;
}

BOOL T2FInfoPtIterator::LeftTenant(T2Tenant*& outTenant) {
    BOOL found;
    T2UnitInfo *unitInfo;

    for (found = Left(unitInfo); found; found = Left(unitInfo)) {
        unsigned int tenantID = unitInfo->GetTenantID();
        if (tenantID != mLastIDSeen) {
            mLastIDSeen = tenantID;
            if (tenantID != 0) {
                outTenant = mFloorInfo.mTenantArrayList->GetTenantByID(tenantID);
                break;
            }
        }
    }

    return found;
}