summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2RouteNavigator.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2RouteNavigator.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/T2DLL/T2RouteNavigator.h b/src/T2DLL/T2RouteNavigator.h
new file mode 100644
index 0000000..eebe34d
--- /dev/null
+++ b/src/T2DLL/T2RouteNavigator.h
@@ -0,0 +1,25 @@
+#pragma once
+#include "common.h"
+
+class T2RouteNavigator {
+public:
+ T2RouteNavigator(T2FloorInfo*);
+ virtual ~T2RouteNavigator();
+ void FloorAdded(T2Tenant*, int);
+ void FloorRemoved(T2Tenant*, int);
+ void MoverAdded(T2Mover*, int);
+ void MoverRemoved(T2Mover*, int);
+ void MoverModified(T2Mover*, int);
+ void Update();
+ int CheckRoute(POINT, POINT, unsigned int, int) const;
+ int IsConnectRouteFromLobby(POINT) const;
+ int GetNextRoute(POINT, POINT&, int) const;
+ T2Tenant* SelectNearTenant(POINT, unsigned int) const;
+protected:
+ int GetNextRouteUsingEStair(POINT, POINT&) const;
+
+public:
+ T2RouteNavigator(const T2RouteNavigator&) {}
+ T2RouteNavigator& operator=(const T2RouteNavigator&) {}
+ T2FloorPtrList* GetFloorPtrList() const {}
+};