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/T2FloorInfo.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2FloorInfo.cpp | 187 |
1 files changed, 187 insertions, 0 deletions
diff --git a/src/T2DLL/T2FloorInfo.cpp b/src/T2DLL/T2FloorInfo.cpp new file mode 100644 index 0000000..cfbd45b --- /dev/null +++ b/src/T2DLL/T2FloorInfo.cpp @@ -0,0 +1,187 @@ +#include "T2FloorInfo.h" + +T2FloorInfo::T2FloorInfo(const T2WorldDef*) { +} + +/*virtual*/ T2FloorInfo::~T2FloorInfo() { +} + +int T2FloorInfo::UnitToFloor(int) const { +} + +void T2FloorInfo::InitMask(CResFile&) { +} + +void T2FloorInfo::Read(T2Archive&, T2TowerDoc*) { +} + +void T2FloorInfo::Write(T2Archive&) { +} + +int T2FloorInfo::IsValidRange(const RECT&) const { +} + +int T2FloorInfo::IsAreaBuildable(const RECT&) { +} + +int T2FloorInfo::IsAllTenant(const RECT&) { +} + +int T2FloorInfo::IsThereNoFloorTenant(const RECT&) { +} + +int T2FloorInfo::IsThereMover(const RECT&) { +} + +int T2FloorInfo::IsThereOtherKindMover(const RECT&, int) { +} + +int T2FloorInfo::IsEnoughSideSpace(const RECT&) { +} + +T2Tenant* T2FloorInfo::GetTenant(unsigned int) const { +} + +T2Tenant* T2FloorInfo::GetTenant(int, int) const { +} + +T2Tenant* T2FloorInfo::GetPoolTenant() const { +} + +T2Tenant* T2FloorInfo::GetFloor(int, int) const { +} + +T2Mover* T2FloorInfo::GetMover(unsigned int) { +} + +T2Mover* T2FloorInfo::GetMover(int, int) { +} + +T2MoverModule* T2FloorInfo::GetModule(unsigned int) const { +} + +T2Request* T2FloorInfo::GetRequest(unsigned int) const { +} + +T2Request* T2FloorInfo::GetRequest(int, int) const { +} + +T2People* T2FloorInfo::FindPeople(int, int) const { +} + +T2OutObj* T2FloorInfo::GetOutObj(int, int) const { +} + +T2OutObj* T2FloorInfo::GetIndOutObj(unsigned int) const { +} + +T2Tenant* T2FloorInfo::FindUnusedTenant() { +} + +T2Mover* T2FloorInfo::FindUnusedMover() { +} + +T2Request* T2FloorInfo::FindUnusedRequest() { +} + +T2OutObj* T2FloorInfo::FindUnusedOutObj() { +} + +unsigned int T2FloorInfo::GetTenantID(int, int) const { +} + +unsigned int T2FloorInfo::GetFloorID(int, int) { +} + +unsigned int T2FloorInfo::GetEntranceFloorID(unsigned int) { +} + +POINT T2FloorInfo::GetEntrancePt(unsigned int) { +} + +unsigned int T2FloorInfo::GetMoverID(int, int) { +} + +unsigned int T2FloorInfo::GetRequestID(int, int) const { +} + +unsigned int T2FloorInfo::GetOutObjID(int, int) const { +} + +T2UnitInfo* T2FloorInfo::GetUnitInfo(int, int) const { +} + +void T2FloorInfo::FillTenantID(const RECT&, unsigned int) { +} + +void T2FloorInfo::ReplaceFloorID(const RECT&, unsigned int, unsigned int) { +} + +void T2FloorInfo::FillMoverID(const RECT&, unsigned int) { +} + +void T2FloorInfo::FillRequestID(const RECT&, unsigned int) { +} + +int T2FloorInfo::FillRequestID(POINT, ERequestUpDown, unsigned int) { +} + +void T2FloorInfo::RemoveRequestID(ERequestUpDown, const RECT&) { +} + +void T2FloorInfo::FillOutObjID(const RECT&, unsigned int) { +} + +unsigned int T2FloorInfo::FindTenantID(int, int, int, int, unsigned int) { +} + +int T2FloorInfo::CalcRequestRightEnd(POINT, int) { +} + +int T2FloorInfo::CalcRequestLeftEnd(POINT, int) { +} + +int T2FloorInfo::GetLeftMoverID(POINT, int) const { +} + +void T2FloorInfo::UpdeteRequestByUnionFloor(T2Tenant*, POINT) { +} + +void T2FloorInfo::MoverAreaAdded(const RECT&, unsigned int) { +} + +void T2FloorInfo::MoverAreaRemoved(const RECT&) { +} + +void T2FloorInfo::UpdeteRequestByBuildMover(const RECT&) { +} + +void T2FloorInfo::UpdeteRequestByRemoveMover(const RECT&) { +} + +unsigned int T2FloorInfo::GetNextTenantNumber(int) { +} + +void T2FloorInfo::SetTenantNumber(int, unsigned int) { +} + +T2Tenant* T2FloorInfo::FindNumberredTenant(int, unsigned int) { +} + +void T2FloorInfo::FinishBuildFloor(T2TowerDoc*, const RECT&) { +} + +void T2FloorInfo::SetTenantDrawModeByRect(const RECT&, int) { +} + +void T2FloorInfo::UpdateFloorCEArray(const RECT&, unsigned int, unsigned int) { +} + +int T2FloorInfo::CalcMentenanceCost(T2TowerDoc*) const { +} + +T2Tenant* T2FloorInfo::GetTenantByPID(unsigned long) { +} + +int T2FloorInfo::BuildFinishForce(const RECT&) { +} |