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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llnetmap.h
  3.  * @brief A little map of the world with network information
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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. #ifndef LL_LLNETMAP_H
  33. #define LL_LLNETMAP_H
  34. #include "llmath.h"
  35. #include "lluictrl.h"
  36. #include "v3math.h"
  37. #include "v3dmath.h"
  38. #include "v4color.h"
  39. #include "llpointer.h"
  40. class LLColor4U;
  41. class LLCoordGL;
  42. class LLImageRaw;
  43. class LLTextBox;
  44. class LLViewerTexture;
  45. const F32 MAP_SCALE_MIN = 64.f;
  46. const F32 MAP_SCALE_MID = 172.f;
  47. const F32 MAP_SCALE_MAX = 512.f;
  48. class LLNetMap : public LLUICtrl
  49. {
  50. public:
  51. struct Params 
  52. : public LLInitParam::Block<Params, LLUICtrl::Params>
  53. {
  54. Optional<LLUIColor> bg_color;
  55. Params()
  56. : bg_color("bg_color") 
  57. {}
  58. };
  59. protected:
  60. LLNetMap (const Params & p);
  61. friend class LLUICtrlFactory;
  62. public:
  63. virtual ~LLNetMap();
  64. static const F32 MAP_SCALE_MIN;
  65. static const F32 MAP_SCALE_MID;
  66. static const F32 MAP_SCALE_MAX;
  67. /*virtual*/ void draw();
  68. /*virtual*/ BOOL handleScrollWheel(S32 x, S32 y, S32 clicks);
  69. /*virtual*/ BOOL handleToolTip( S32 x, S32 y, MASK mask);
  70. /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
  71. void setScale( F32 scale );
  72. void setToolTipMsg(const std::string& msg) { mToolTipMsg = msg; }
  73. void renderScaledPointGlobal( const LLVector3d& pos, const LLColor4U &color, F32 radius );
  74. private:
  75. void translatePan( F32 delta_x, F32 delta_y );
  76. void setPan( F32 x, F32 y ) { mTargetPanX = x; mTargetPanY = y; }
  77. const LLVector3d& getObjectImageCenterGlobal() { return mObjectImageCenterGlobal; }
  78. void  renderPoint(const LLVector3 &pos, const LLColor4U &color, 
  79. S32 diameter, S32 relative_height = 0);
  80. LLVector3 globalPosToView(const LLVector3d& global_pos);
  81. LLVector3d viewPosToGlobal(S32 x,S32 y);
  82. void drawTracking( const LLVector3d& pos_global, 
  83.   const LLColor4& color,
  84.   BOOL draw_arrow = TRUE);
  85. void createObjectImage();
  86. private:
  87. LLUIColor mBackgroundColor;
  88. F32 mScale; // Size of a region in pixels
  89. F32 mPixelsPerMeter; // world meters to map pixels
  90. F32 mObjectMapTPM; // texels per meter on map
  91. F32 mObjectMapPixels; // Width of object map in pixels
  92. F32 mDotRadius; // Size of avatar markers
  93. F32 mTargetPanX;
  94. F32 mTargetPanY;
  95. F32 mCurPanX;
  96. F32 mCurPanY;
  97. BOOL mUpdateNow;
  98. LLVector3d mObjectImageCenterGlobal;
  99. LLPointer<LLImageRaw> mObjectRawImagep;
  100. LLPointer<LLViewerTexture> mObjectImagep;
  101. LLUUID mClosestAgentToCursor;
  102. LLUUID mClosestAgentAtLastRightClick;
  103. std::string mToolTipMsg;
  104. };
  105. #endif