123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /**
- * @file llpathfindingmanager.h
- * @brief Header file for llpathfindingmanager
- *
- * $LicenseInfo:firstyear=2012&license=viewergpl$
- *
- * Copyright (c) 2012, Linden Research, Inc.
- *
- * Second Life Viewer Source Code
- * The source code in this file ("Source Code") is provided by Linden Lab
- * to you under the terms of the GNU General Public License, version 2.0
- * ("GPL"), unless you have obtained a separate licensing agreement
- * ("Other License"), formally executed by you and Linden Lab. Terms of
- * the GPL can be found in doc/GPL-license.txt in this distribution, or
- * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
- *
- * There are special exceptions to the terms and conditions of the GPL as
- * it is applied to this Source Code. View the full text of the exception
- * in the file doc/FLOSS-exception.txt in this software distribution, or
- * online at
- * http://secondlifegrid.net/programs/open_source/licensing/flossexception
- *
- * By copying, modifying or distributing this software, you acknowledge
- * that you have read and understood your obligations described above,
- * and agree to abide by those obligations.
- *
- * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
- * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
- * COMPLETENESS OR PERFORMANCE.
- * $/LicenseInfo$
- */
- #ifndef LL_LLPATHFINDINGMANAGER_H
- #define LL_LLPATHFINDINGMANAGER_H
- #include <string>
- #include "boost/function.hpp"
- #include "boost/signals2.hpp"
- #include "llcorehttpheaders.h"
- #include "llcorehttpoptions.h"
- #include "hbfastmap.h"
- #include "llsingleton.h"
- #include "llpathfindinglinkset.h"
- #include "llpathfindingnavmesh.h"
- #include "llpathfindingobjectlist.h"
- // We do not have access to the closed source Havok library for path-finding GL
- // drawing. *TODO: find an Open Source equivalent.
- #define HAVE_PATHINGLIB 0
- class LinksetsResponder;
- class LLPathfindingNavMeshStatus;
- class LLViewerRegion;
- class LLPathfindingManager : public LLSingleton<LLPathfindingManager>
- {
- friend class LLSingleton<LLPathfindingManager>;
- friend class LLNavMeshSimStateChangeNode;
- friend class NavMeshStatusResponder;
- friend class LLAgentStateChangeNode;
- friend class AgentStateResponder;
- protected:
- LOG_CLASS(LLPathfindingManager);
- public:
- typedef enum {
- kRequestStarted,
- kRequestCompleted,
- kRequestNotEnabled,
- kRequestError
- } ERequestStatus;
- LLPathfindingManager();
- virtual ~LLPathfindingManager();
- bool isPathfindingEnabledForCurrentRegion() const;
- bool isPathfindingEnabledForRegion(LLViewerRegion* region) const;
- #if HAVE_PATHINGLIB
- bool isPathfindingViewEnabled() const;
- #endif
- bool isAllowViewTerrainProperties() const;
- LLPathfindingNavMesh::navmesh_slot_t registerNavMeshListenerForRegion(LLViewerRegion* region,
- LLPathfindingNavMesh::navmesh_cb_t cb);
- void requestGetNavMeshForRegion(LLViewerRegion* region,
- bool get_status_only);
- typedef U32 request_id_t;
- typedef boost::function<void(request_id_t, ERequestStatus,
- LLPathfindingObjectList::ptr_t)> object_request_cb_t;
- void requestGetLinksets(request_id_t req_id, object_request_cb_t cb) const;
- void requestSetLinksets(request_id_t req_id,
- const LLPathfindingObjectList::ptr_t& pobjects,
- LLPathfindingLinkset::ELinksetUse use,
- S32 pA, S32 pB, S32 pC, S32 pD,
- object_request_cb_t cb) const;
- void requestGetCharacters(request_id_t req_id,
- object_request_cb_t cb) const;
- typedef boost::function<void(bool)> agent_state_cb_t;
- typedef boost::signals2::signal<void(bool)> agent_state_signal_t;
- typedef boost::signals2::connection agent_state_slot_t;
- agent_state_slot_t registerAgentStateListener(agent_state_cb_t cb);
- void requestGetAgentState();
- typedef boost::function<void (bool)> rebake_navmesh_cb_t;
- void requestRebakeNavMesh(rebake_navmesh_cb_t cb);
- private:
- void handleDeferredGetAgentStateForRegion(const LLUUID& region_id);
- void handleDeferredGetNavMeshForRegion(const LLUUID& region_id,
- bool get_status_only);
- void handleDeferredGetLinksetsForRegion(const LLUUID& region_id,
- request_id_t req_id,
- object_request_cb_t cb) const;
- void handleDeferredGetCharactersForRegion(const LLUUID& region_id,
- request_id_t req_id,
- object_request_cb_t cb) const;
- void navMeshStatusRequestCoro(const std::string& url, U64 region_handle,
- bool get_status_only);
- void navAgentStateRequestCoro(const std::string& url);
- void navMeshRebakeCoro(const std::string& url, rebake_navmesh_cb_t cb);
- void linksetObjectsCoro(const std::string& url,
- std::shared_ptr<LinksetsResponder> responder,
- LLSD put_data) const;
- void linksetTerrainCoro(const std::string& url,
- std::shared_ptr<LinksetsResponder> responder,
- LLSD put_data) const;
- void charactersCoro(const std::string& url, request_id_t req_id,
- object_request_cb_t cb) const;
- void handleNavMeshStatusUpdate(const LLPathfindingNavMeshStatus& status);
- void handleAgentState(bool can_rebake_region);
- LLPathfindingNavMesh::ptr_t getNavMeshForRegion(const LLUUID& region_id);
- LLPathfindingNavMesh::ptr_t getNavMeshForRegion(LLViewerRegion* region);
- const std::string getNavMeshStatusURLForCurrentRegion() const;
- const std::string getNavMeshStatusURLForRegion(LLViewerRegion* r) const;
- const std::string getRetrieveNavMeshURLForRegion(LLViewerRegion* r) const;
- const std::string getRetrieveObjectLinksetsURLForCurrentRegion() const;
- const std::string getChangeObjectLinksetsURLForCurrentRegion() const;
- const std::string getTerrainLinksetsURLForCurrentRegion() const;
- const std::string getCharactersURLForCurrentRegion() const;
- const std::string getAgentStateURLForRegion(LLViewerRegion* region) const;
- const std::string getRegionCapability(LLViewerRegion* region,
- const char* cap_name) const;
- private:
- LLCore::HttpOptions::ptr_t mHttpOptions;
- LLCore::HttpHeaders::ptr_t mHttpHeaders;
- typedef fast_hmap<LLUUID, LLPathfindingNavMesh::ptr_t> map_t;
- map_t mNavMeshMap;
- agent_state_signal_t mAgentStateSignal;
- };
- #endif // LL_LLPATHFINDINGMANAGER_H
|