summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2Mover.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2Mover.cpp')
-rw-r--r--src/T2DLL/T2Mover.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/T2DLL/T2Mover.cpp b/src/T2DLL/T2Mover.cpp
index 65120c1..7440364 100644
--- a/src/T2DLL/T2Mover.cpp
+++ b/src/T2DLL/T2Mover.cpp
@@ -193,7 +193,7 @@ void T2Mover::GetTypicalName(CString& outStr) const {
/*virtual*/ BOOL T2Mover::Destruct(T2TowerDoc* towerDoc, CRect& rect) {
GetEquipArea(rect);
- T2FloorInfo *theFloorInfo = towerDoc->towerDoc_vf12C();
+ T2FloorInfo *theFloorInfo = towerDoc->GetFloorInfo();
mModuleList->Destruct(towerDoc);
for (int p = 0; p < mLength; p++) {
@@ -208,7 +208,7 @@ void T2Mover::GetTypicalName(CString& outStr) const {
BOOL done = true;
- towerDoc->towerDoc_vf124()->MoverRemoved(this, 1);
+ towerDoc->GetRouteNavi()->MoverRemoved(this, 1);
return done;
}
@@ -231,7 +231,7 @@ int T2Mover::GetNumStop() const {
void T2Mover::AddStopBoth(T2TowerDoc* towerDoc, int position) {
BOOL ok = false;
- T2FloorInfo *theFloorInfo = towerDoc->towerDoc_vf12C();
+ T2FloorInfo *theFloorInfo = towerDoc->GetFloorInfo();
ok |= AddStop(theFloorInfo, position, ERequestUpDown_0);
ok |= AddStop(theFloorInfo, position, ERequestUpDown_1);
@@ -274,7 +274,7 @@ void T2Mover::RemoveStopBoth(T2TowerDoc* towerDoc, int position) {
RemoveStop(towerDoc, position, ERequestUpDown_0);
RemoveStop(towerDoc, position, ERequestUpDown_1);
- RemoveCrossEquipID(towerDoc->towerDoc_vf12C(), position);
+ RemoveCrossEquipID(towerDoc->GetFloorInfo(), position);
mReqIDArray->StopRemoved(towerDoc, PositionToUnit(position));
if (mModuleList)
@@ -308,7 +308,7 @@ void T2Mover::RemoveUnstoppable(T2TowerDoc* towerDoc) {
}
if (changed)
- towerDoc->GetTowerMainView()->tmv_vf128(mArea);
+ towerDoc->GetMainView()->InvalUnitRect(mArea);
}
void T2Mover::AddCrossEquipID(T2FloorInfo* floorInfo, int position) {
@@ -544,7 +544,7 @@ int T2Mover::CalcScore(int multiplier) const {
int T2Mover::ExpandArea(T2TowerDoc* inDoc, EEquipPos inEquipPos, int inCount) {
int result = 0;
- T2FloorInfo *theFloorInfo = inDoc->towerDoc_vf12C();
+ T2FloorInfo *theFloorInfo = inDoc->GetFloorInfo();
RECT theMoverArea = mArea;
@@ -638,7 +638,7 @@ int T2Mover::ExpandArea(T2TowerDoc* inDoc, EEquipPos inEquipPos, int inCount) {
}
if (inCount != 0)
- inDoc->GetTowerMainView()->tmv_vf128(theMoverArea, true);
+ inDoc->GetMainView()->InvalUnitRect(theMoverArea, true);
return result;
}
@@ -675,7 +675,7 @@ void T2Mover::ShowShaft() {
mShowShaft = true;
T2TowerDoc *theTowerDoc = GetCurrentT2TowerDoc();
- theTowerDoc->GetTowerMainView()->tmv_vf128(mArea);
+ theTowerDoc->GetMainView()->InvalUnitRect(mArea);
}
}
@@ -684,8 +684,8 @@ void T2Mover::HideShaft() {
mShowShaft = false;
T2TowerDoc *theTowerDoc = GetCurrentT2TowerDoc();
- theTowerDoc->GetTowerMainView()->tmv_vf128(mArea);
- theTowerDoc->towerDoc_vf12C()->SetTenantDrawModeByRect(mArea, DrawMode2);
+ theTowerDoc->GetMainView()->InvalUnitRect(mArea);
+ theTowerDoc->GetFloorInfo()->SetTenantDrawModeByRect(mArea, DrawMode2);
}
}