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/T2RoutingTable.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2RoutingTable.cpp | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/T2DLL/T2RoutingTable.cpp b/src/T2DLL/T2RoutingTable.cpp new file mode 100644 index 0000000..8380825 --- /dev/null +++ b/src/T2DLL/T2RoutingTable.cpp @@ -0,0 +1,82 @@ +#include "T2RoutingTable.h" + +T2RoutingTable::T2RoutingTable(T2FloorInfo*, T2FloorPtrList*, int) { +} + +/*virtual*/ T2RoutingTable::~T2RoutingTable() { +} + +void T2RoutingTable::FloorAdded() { +} + +void T2RoutingTable::FloorRemoved(int) { +} + +int T2RoutingTable::IsRelatedMover(T2Mover*) const { +} + +void T2RoutingTable::MoverAdded(T2Mover*, int) { +} + +void T2RoutingTable::MoverRemoved(T2Mover*, int) { +} + +void T2RoutingTable::MoverModified(T2Mover*, int) { +} + +void T2RoutingTable::AddItem(T2Mover*) { +} + +void T2RoutingTable::RemoveItem(T2Mover*) { +} + +T2MoverRoutingTable* T2RoutingTable::GetItem(T2Mover*) const { +} + +int T2RoutingTable::GetElem(T2Mover*, int, T2RoutingTableElem&) const { +} + +int T2RoutingTable::GetIndex(T2Mover*) const { +} + +void T2RoutingTable::Update() { +} + +void T2RoutingTable::FullUpdate() { +} + +void T2RoutingTable::ClearData() { +} + +int T2RoutingTable::CheckRoute(POINT, POINT, unsigned int) const { +} + +int T2RoutingTable::IsConnectRouteFromLobby(POINT) const { +} + +int T2RoutingTable::GetNextRoute(POINT, POINT&) const { +} + +T2Tenant* T2RoutingTable::SelectNearTenant(POINT, unsigned int) const { +} + +T2Tenant* T2RoutingTable::SelectNearTenant(T2Tenant*, int, unsigned int) const { +} + +T2RoutingTableElem::T2RoutingTableElem() { +} + +T2RoutingTableElem::~T2RoutingTableElem() { +} + +int T2RoutingTableElem::IsStopFloor() const { +} + +void T2RoutingTableElem::SetTable(unsigned int, int) { +} + +int T2RoutingTableElem::IsSetTable(unsigned int, unsigned int, int, int) { +} + +int T2RoutingTableElem::HasNextRoute(unsigned int) const { +} |