diff options
| author | Todd Stinson <stinson@lindenlab.com> | 2012-06-22 18:15:56 -0700 | 
|---|---|---|
| committer | Todd Stinson <stinson@lindenlab.com> | 2012-06-22 18:15:56 -0700 | 
| commit | 7cc44fb7fe40706e2017343d76ed226f477dad8d (patch) | |
| tree | 4312f7d7f06aed85dd1481e39b2b146b119e48e8 | |
| parent | 51fdc40d6f2c35dea90b3b6e6a6e1c1fd633854f (diff) | |
PATH-759: Removing XXX_STINSON_DEBUG_NAVMESH_ZONE ifdefs.
| -rw-r--r-- | indra/newview/llpathfindingmanager.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llpathfindingnavmeshzone.cpp | 57 | ||||
| -rw-r--r-- | indra/newview/llpathfindingnavmeshzone.h | 6 | 
3 files changed, 0 insertions, 69 deletions
| diff --git a/indra/newview/llpathfindingmanager.cpp b/indra/newview/llpathfindingmanager.cpp index 44dab04583..a01874296d 100644 --- a/indra/newview/llpathfindingmanager.cpp +++ b/indra/newview/llpathfindingmanager.cpp @@ -737,9 +737,6 @@ LLViewerRegion *LLPathfindingManager::getCurrentRegion() const  void LLNavMeshSimStateChangeNode::post(ResponsePtr pResponse, const LLSD &pContext, const LLSD &pInput) const  { -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -	llinfos << "STINSON DEBUG: Received NavMeshStatusUpdate: " << pInput << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	llassert(pInput.has(SIM_MESSAGE_BODY_FIELD));  	llassert(pInput.get(SIM_MESSAGE_BODY_FIELD).isMap());  	LLPathfindingNavMeshStatus navMeshStatus(pInput.get(SIM_MESSAGE_BODY_FIELD)); @@ -784,9 +781,6 @@ NavMeshStatusResponder::~NavMeshStatusResponder()  void NavMeshStatusResponder::result(const LLSD &pContent)  { -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -	llinfos << "STINSON DEBUG: Received requested NavMeshStatus: " << pContent << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	LLPathfindingNavMeshStatus navMeshStatus(mRegionUUID, pContent);  	LLPathfindingManager::getInstance()->handleNavMeshStatusRequest(navMeshStatus, mRegion, mIsGetStatusOnly);  } diff --git a/indra/newview/llpathfindingnavmeshzone.cpp b/indra/newview/llpathfindingnavmeshzone.cpp index 69c76c9407..d8670062e9 100644 --- a/indra/newview/llpathfindingnavmeshzone.cpp +++ b/indra/newview/llpathfindingnavmeshzone.cpp @@ -68,24 +68,6 @@ void LLPathfindingNavMeshZone::initialize()  {  	mNavMeshLocationPtrs.clear(); -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -	LLViewerRegion *currentRegion = gAgent.getRegion(); -	if (currentRegion != NULL) -	{ -		llinfos << "STINSON DEBUG: currentRegion: '" << currentRegion->getName() << "' (" << currentRegion->getRegionID().asString() << ")" << llendl; -		std::vector<S32> availableRegions; -		currentRegion->getNeighboringRegionsStatus( availableRegions ); -		std::vector<LLViewerRegion*> neighborRegionsPtrs; -		currentRegion->getNeighboringRegions( neighborRegionsPtrs ); -		for (std::vector<S32>::const_iterator statusIter = availableRegions.begin(); -			statusIter != availableRegions.end(); ++statusIter) -		{ -			LLViewerRegion *region = neighborRegionsPtrs[statusIter - availableRegions.begin()]; -			llinfos << "STINSON DEBUG: region #" << *statusIter << ": '" << region->getName() << "' (" << region->getRegionID().asString() << ")" << llendl; -		} - 	} - -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	NavMeshLocationPtr centerNavMeshPtr(new NavMeshLocation(CENTER_REGION, boost::bind(&LLPathfindingNavMeshZone::handleNavMeshLocation, this)));  	mNavMeshLocationPtrs.push_back(centerNavMeshPtr); @@ -214,16 +196,10 @@ void LLPathfindingNavMeshZone::updateStatus()  	bool hasRequestNotEnabled = false;  	bool hasRequestError = false; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -	llinfos << "STINSON DEBUG: Navmesh zone update BEGIN" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	for (NavMeshLocationPtrs::const_iterator navMeshLocationPtrIter = mNavMeshLocationPtrs.begin();  		navMeshLocationPtrIter != mNavMeshLocationPtrs.end(); ++navMeshLocationPtrIter)  	{  		const NavMeshLocationPtr navMeshLocationPtr = *navMeshLocationPtrIter; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG:    region #" << navMeshLocationPtr->getDirection() << ": region(" << navMeshLocationPtr->getRegionUUID().asString() << ") status:" << navMeshLocationPtr->getRequestStatus() << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  		switch (navMeshLocationPtr->getRequestStatus())  		{  		case LLPathfindingNavMesh::kNavMeshRequestUnknown : @@ -261,82 +237,49 @@ void LLPathfindingNavMeshZone::updateStatus()  	if (hasRequestWaiting)  	{  		zoneRequestStatus = kNavMeshZoneRequestWaiting; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is WAITING" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestNeedsUpdate)  	{  		zoneRequestStatus = kNavMeshZoneRequestNeedsUpdate; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is NEEDS UPDATE" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestChecking)  	{  		zoneRequestStatus = kNavMeshZoneRequestChecking; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is CHECKING" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestStarted)  	{  		zoneRequestStatus = kNavMeshZoneRequestStarted; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is STARTED" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestError)  	{  		zoneRequestStatus = kNavMeshZoneRequestError; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is ERROR" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestUnknown)  	{  		zoneRequestStatus = kNavMeshZoneRequestUnknown; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is UNKNOWN" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestCompleted)  	{  		zoneRequestStatus = kNavMeshZoneRequestCompleted; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is COMPLETED" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else if (hasRequestNotEnabled)  	{  		zoneRequestStatus = kNavMeshZoneRequestNotEnabled; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is NOT ENABLED" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	else  	{  		zoneRequestStatus = kNavMeshZoneRequestError; -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is BAD ERROR" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  		llassert(0);  	}  	if ((mNavMeshZoneRequestStatus != kNavMeshZoneRequestCompleted) &&  		(zoneRequestStatus == kNavMeshZoneRequestCompleted))  	{ -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update is stitching" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  		llassert(LLPathingLib::getInstance() != NULL);  		if (LLPathingLib::getInstance() != NULL)  		{  			LLPathingLib::getInstance()->processNavMeshData();  		} -#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE -		llinfos << "STINSON DEBUG: Navmesh zone update stitching is done" << llendl; -#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE  	}  	mNavMeshZoneRequestStatus = zoneRequestStatus; diff --git a/indra/newview/llpathfindingnavmeshzone.h b/indra/newview/llpathfindingnavmeshzone.h index 679e72c978..d4e7a717b2 100644 --- a/indra/newview/llpathfindingnavmeshzone.h +++ b/indra/newview/llpathfindingnavmeshzone.h @@ -42,8 +42,6 @@  class LLPathfindingNavMeshStatus; -//#define XXX_STINSON_DEBUG_NAVMESH_ZONE -  class LLPathfindingNavMeshZone  {  public: @@ -99,10 +97,6 @@ private:  		LLPathfindingNavMesh::ENavMeshRequestStatus getRequestStatus() const;  		LLPathfindingNavMeshStatus::ENavMeshStatus  getNavMeshStatus() 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: | 
