lltracker.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:5k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltracker.h
  3.  * @brief Container for objects user is tracking.
  4.  *
  5.  * $LicenseInfo:firstyear=2003&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2003-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. // A singleton class for tracking stuff.
  33. //
  34. // TODO -- LLAvatarTracker functionality should probably be moved
  35. // to the LLTracker class. 
  36. #ifndef LL_LLTRACKER_H
  37. #define LL_LLTRACKER_H
  38. #include "lldarray.h"
  39. #include "llpointer.h"
  40. #include "llstring.h"
  41. #include "lluuid.h"
  42. #include "v3dmath.h"
  43. class LLHUDText;
  44. class LLTracker
  45. {
  46. public:
  47. enum ETrackingStatus
  48. {
  49. TRACKING_NOTHING = 0,
  50. TRACKING_AVATAR = 1,
  51. TRACKING_LANDMARK = 2,
  52. TRACKING_LOCATION = 3,
  53. };
  54. enum ETrackingLocationType
  55. {
  56. LOCATION_NOTHING,
  57. LOCATION_EVENT,
  58. LOCATION_ITEM,
  59. };
  60. static LLTracker* instance() 
  61. if (!sTrackerp)
  62. {
  63. sTrackerp = new LLTracker();
  64. }
  65. return sTrackerp; 
  66. }
  67. static void cleanupInstance() { delete sTrackerp; sTrackerp = NULL; }
  68. //static void drawTrackerArrow(); 
  69. // these are static so that they can be used a callbacks
  70. static ETrackingStatus getTrackingStatus() { return instance()->mTrackingStatus; }
  71. static ETrackingLocationType getTrackedLocationType() { return instance()->mTrackingLocationType; }
  72. static BOOL isTracking(void*) { return (BOOL) instance()->mTrackingStatus; }
  73. static void stopTracking(void*);
  74. static void clearFocus();
  75. static const LLUUID& getTrackedLandmarkAssetID() { return instance()->mTrackedLandmarkAssetID; }
  76. static const LLUUID& getTrackedLandmarkItemID()  { return instance()->mTrackedLandmarkItemID; }
  77. static void trackAvatar( const LLUUID& avatar_id, const std::string& name );
  78. static void trackLandmark( const LLUUID& landmark_asset_id, const LLUUID& landmark_item_id , const std::string& name);
  79. static void trackLocation(const LLVector3d& pos, const std::string& full_name, const std::string& tooltip, ETrackingLocationType location_type = LOCATION_NOTHING);
  80. // returns global pos of tracked thing
  81. static LLVector3d  getTrackedPositionGlobal();
  82. static BOOL  hasLandmarkPosition();
  83. static const std::string& getTrackedLocationName();
  84. static void drawHUDArrow();
  85. // Draw in-world 3D tracking stuff
  86. static void render3D();
  87. static BOOL handleMouseDown(S32 x, S32 y);
  88. static LLTracker* sTrackerp;
  89. static BOOL sCheesyBeacon;
  90. static const std::string& getLabel() { return instance()->mLabel; }
  91. static const std::string& getToolTip() { return instance()->mToolTip; }
  92. protected:
  93. LLTracker();
  94. ~LLTracker();
  95. static void renderBeacon( LLVector3d pos_global, 
  96.  const LLColor4& color, 
  97.  LLHUDText* hud_textp, 
  98.  const std::string& label );
  99. void stopTrackingAll(BOOL clear_ui = FALSE);
  100. void stopTrackingAvatar(BOOL clear_ui = FALSE);
  101. void stopTrackingLocation(BOOL clear_ui = FALSE);
  102. void stopTrackingLandmark(BOOL clear_ui = FALSE);
  103. void drawMarker(const LLVector3d& pos_global, const LLColor4& color);
  104. void setLandmarkVisited();
  105. void cacheLandmarkPosition();
  106. void purgeBeaconText();
  107. protected:
  108. ETrackingStatus  mTrackingStatus;
  109. ETrackingLocationType mTrackingLocationType;
  110. LLPointer<LLHUDText> mBeaconText;
  111. S32 mHUDArrowCenterX;
  112. S32 mHUDArrowCenterY;
  113. LLVector3d mTrackedPositionGlobal;
  114. std::string mLabel;
  115. std::string mToolTip;
  116. std::string mTrackedLandmarkName;
  117. LLUUID mTrackedLandmarkAssetID;
  118. LLUUID mTrackedLandmarkItemID;
  119. LLDynamicArray<LLUUID> mLandmarkAssetIDList;
  120. LLDynamicArray<LLUUID> mLandmarkItemIDList;
  121. BOOL mHasReachedLandmark;
  122. BOOL  mHasLandmarkPosition;
  123. BOOL mLandmarkHasBeenVisited;
  124. std::string mTrackedLocationName;
  125. BOOL mIsTrackingLocation;
  126. BOOL mHasReachedLocation;
  127. };
  128. #endif