summaryrefslogtreecommitdiff
path: root/indra/newview/llpathfindingnavmeshzone.h
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-03-08 12:34:11 -0800
committerTodd Stinson <stinson@lindenlab.com>2012-03-08 12:34:11 -0800
commitf578181af9cbe3277374578c27487e2e72956079 (patch)
treeab7c041c277d708f805dc3bf9e80418616c19277 /indra/newview/llpathfindingnavmeshzone.h
parentdcf7ed021b11b2ec990625389aa185081eeab915 (diff)
PATH-304: Adding functionality to handle the reloading of out-of-date navmeshes.
Diffstat (limited to 'indra/newview/llpathfindingnavmeshzone.h')
-rw-r--r--indra/newview/llpathfindingnavmeshzone.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llpathfindingnavmeshzone.h b/indra/newview/llpathfindingnavmeshzone.h
index 8489b5899b..7084869b33 100644
--- a/indra/newview/llpathfindingnavmeshzone.h
+++ b/indra/newview/llpathfindingnavmeshzone.h
@@ -38,11 +38,14 @@
#include <boost/function.hpp>
#include <boost/signals2.hpp>
+#define XXX_STINSON_DEBUG_NAVMESH_ZONE
+
class LLPathfindingNavMeshZone
{
public:
typedef enum {
kNavMeshZoneRequestUnknown,
+ kNavMeshZoneRequestNeedsUpdate,
kNavMeshZoneRequestStarted,
kNavMeshZoneRequestCompleted,
kNavMeshZoneRequestNotEnabled,
@@ -78,6 +81,10 @@ private:
void disable();
LLPathfindingNavMesh::ENavMeshRequestStatus getRequestStatus() const;
+#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE
+ const LLUUID &getRegionUUID() const {return mRegionUUID;};
+ S32 getDirection() const {return mDirection;};
+#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE
protected: