diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
commit | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (patch) | |
tree | eaf6e857382eef16c2dd940eb4125536fbe068bd /src/T2DLL/T2Mover.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to 'src/T2DLL/T2Mover.cpp')
-rw-r--r-- | src/T2DLL/T2Mover.cpp | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/src/T2DLL/T2Mover.cpp b/src/T2DLL/T2Mover.cpp new file mode 100644 index 0000000..9472651 --- /dev/null +++ b/src/T2DLL/T2Mover.cpp @@ -0,0 +1,139 @@ +#include "T2Mover.h" + +T2Mover::T2Mover() { +} + +/*virtual*/ T2Mover::~T2Mover() { +} + +/*virtual*/ void T2Mover::SetUsed(int) { +} + +int T2Mover::InitMover(T2MoverDef*, const RECT&, unsigned int) { +} + +int T2Mover::InitStair(T2MoverDef*, const RECT&, unsigned int) { +} + +int T2Mover::InitElevator(T2MoverDef*, const RECT&, unsigned int) { +} + +void T2Mover::GetTypicalName(CString&) const { +} + +/*virtual*/ PROCCODE T2Mover::DoDestruct(T2TowerDoc*, POINT, RECT&) { +} + +/*virtual*/ int T2Mover::Destruct(T2TowerDoc*, CRect&) { +} + +/*virtual*/ void T2Mover::Draw(T2TowerDoc*, const RECT&) { +} + +int T2Mover::GetNumStop() const { +} + +void T2Mover::AddStopBoth(T2TowerDoc*, int) { +} + +int T2Mover::AddStop(T2FloorInfo*, int, ERequestUpDown) { +} + +void T2Mover::RemoveStopBoth(T2TowerDoc*, int) { +} + +void T2Mover::RemoveStop(T2TowerDoc*, int, ERequestUpDown) { +} + +void T2Mover::RemoveCrossEquipID(T2FloorInfo*, int) { +} + +void T2Mover::RemoveUnstoppable(T2TowerDoc*) { +} + +void T2Mover::AddCrossEquipID(T2FloorInfo*, int) { +} + +void T2Mover::AddCEFloorID(T2FloorInfo*, int) { +} + +void T2Mover::ReplaceID(T2FloorInfo*, unsigned int) { +} + +POINT T2Mover::PositionToStopPt(int, ERequestUpDown) { +} + +int T2Mover::UnitToPosition(int) const { +} + +int T2Mover::PositionToUnit(int) const { +} + +int T2Mover::IsStopPosition(int) const { +} + +int T2Mover::IsStopPosition(int, ERequestUpDown) { +} + +int T2Mover::AddModule(T2TowerDoc*, int) { +} + +void T2Mover::AddStairModule(T2TowerDoc*, const RECT&, int) { +} + +unsigned int T2Mover::GetRequestID(int, int) const { +} + +int T2Mover::GetModuleCount() const { +} + +int T2Mover::FindStairModule(T2TowerDoc*, POINT, T2MoverModule*&, T2MoverModule*&) { +} + +int T2Mover::CalcModuleRect(const T2MoverModule*, RECT&, int&) const { +} + +T2MoverModule* T2Mover::FindPeople(const T2People*) const { +} + +void T2Mover::CalcMachineArea(EEquipPos, RECT&) const { +} + +void T2Mover::AdjustLength() { +} + +T2Request* T2Mover::GetRequest(T2FloorInfo*, int, int) const { +} + +int T2Mover::CalcScore(int) const { +} + +int T2Mover::ExpandArea(T2TowerDoc*, EEquipPos, int) { +} + +int T2Mover::IsHomePosition(int) const { +} + +void T2Mover::CalcBodyArea(RECT&) const { +} + +int T2Mover::CalcModulePos(T2MoverModule*, ERequestUpDown) { +} + +void T2Mover::ShowShaft() { +} + +void T2Mover::HideShaft() { +} + +/*virtual*/ unsigned int T2Mover::Idle(T2TowerDoc*) { +} + +/*virtual*/ void T2Mover::LoadSelf(T2Archive&, T2TowerDoc*) { +} + +/*virtual*/ void T2Mover::SaveSelf(T2Archive&) { +} + +/*virtual*/ T2InfoDialog* T2Mover::ShowInfoDialog(T2TowerDoc*, CPoint) { +} |